/* ==========================================================================
   Hormuud Group — corporate website
   Palette is taken from the company logo: deep navy + orange on light neutral.
   ========================================================================== */

:root {
  /* Logo colours */
  --navy:        #1D3B5E;
  --navy-dark:   #142B45;
  --navy-deep:   #0E1F33;
  --navy-soft:   #35577E;
  --orange:      #E97B25;
  --orange-dark: #CE6714;
  --orange-soft: #FCEEE1;

  /* Neutrals */
  --ink:         #16212E;
  --body:        #4A5A6B;
  --muted:       #7B8899;
  --line:        #E1E6EC;
  --surface:     #FFFFFF;
  --surface-alt: #F5F7FA;

  --radius:    12px;
  --radius-lg: 18px;
  --shadow-sm: 0 1px 2px rgba(16, 33, 51, .06), 0 2px 6px rgba(16, 33, 51, .05);
  --shadow-md: 0 4px 12px rgba(16, 33, 51, .07), 0 12px 28px rgba(16, 33, 51, .07);
  --shadow-lg: 0 18px 48px rgba(16, 33, 51, .14);

  --header-h: 84px;

  --font: "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.7;
  color: var(--body);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
}

img, svg, iframe { display: block; max-width: 100%; }
h1, h2, h3, h4 { color: var(--ink); line-height: 1.25; margin: 0 0 .6em; font-weight: 700; }
p { margin: 0 0 1.1em; }
a { color: var(--navy); text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--navy); color: #fff; padding: 12px 20px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }
.section-alt { background: var(--surface-alt); }

.eyebrow {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 .8em;
}

.section-title { font-size: clamp(1.7rem, 3.4vw, 2.5rem); letter-spacing: -.015em; }

.section-head {
  max-width: 680px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head .section-sub { font-size: 1.06rem; margin: 0; color: var(--body); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border: 2px solid transparent;
  border-radius: 8px;
  font: inherit;
  font-size: .97rem;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease,
              transform .18s ease, box-shadow .18s ease;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  box-shadow: 0 4px 14px rgba(233, 123, 37, .28);
}
.btn-primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); }

.btn-outline-light {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .6);
  color: #fff;
  backdrop-filter: blur(2px);
}
.btn-outline-light:hover { background: #fff; border-color: #fff; color: var(--navy); }

.btn-sm  { padding: 9px 18px; font-size: .9rem; }
.btn-lg  { padding: 15px 32px; font-size: 1.02rem; }
.btn-block { width: 100%; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--line);
  transition: box-shadow .2s ease;
}
.site-header.is-stuck { box-shadow: var(--shadow-sm); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--header-h);
}

/* Logo is rendered at its natural aspect ratio — height is constrained, width follows. */
.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand-logo {
  height: 62px;
  width: auto;
  object-fit: contain;
}

.primary-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  display: block;
  position: relative;
  padding: 10px 14px;
  font-size: .96rem;
  font-weight: 600;
  color: var(--navy);
  border-radius: 6px;
  transition: color .18s ease, background-color .18s ease;
}
.nav-link:hover { color: var(--orange); background: var(--surface-alt); }

.nav-link.is-active { color: var(--orange); }
.nav-link.is-active::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 2px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.nav-cta-item { margin-left: 12px; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 0 11px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .22s ease, opacity .22s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--navy-deep);
  color: #fff;
  padding: 132px 0 140px;
}

.hero-media { position: absolute; inset: 0; }
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Navy scrim keeps the headline legible over the photograph and ties it to the palette. */
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(14, 31, 51, .95) 0%, rgba(20, 43, 69, .84) 46%, rgba(20, 43, 69, .52) 100%),
    radial-gradient(900px 520px at 88% 10%, rgba(233, 123, 37, .34), transparent 62%);
}
.hero-scrim::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    115deg,
    rgba(255, 255, 255, .04) 0 1px,
    transparent 1px 58px
  );
}

.hero-inner { position: relative; max-width: 760px; }

.hero-eyebrow {
  display: inline-block;
  margin: 0 0 22px;
  padding: 7px 16px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 999px;
  background: rgba(255, 255, 255, .1);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
}

.hero-title {
  color: #fff;
  font-size: clamp(2.6rem, 6.4vw, 4.3rem);
  letter-spacing: -.03em;
  margin: 0 0 .1em;
  text-shadow: 0 2px 24px rgba(0, 0, 0, .3);
}

.hero-tagline {
  position: relative;
  display: inline-block;
  margin: 0 0 26px;
  padding-bottom: 16px;
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  font-weight: 600;
  color: #fff;
}
.hero-tagline::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 84px; height: 4px;
  background: var(--orange);
  border-radius: 2px;
}

.hero-text {
  max-width: 640px;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, .9);
  margin-bottom: 36px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Capability strip ---------- */
.strip {
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.strip-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 26px 20px;
  font-weight: 600;
  font-size: .95rem;
  color: var(--navy);
  border-right: 1px solid var(--line);
}
.strip-item:first-child { padding-left: 0; }
.strip-item:last-child  { border-right: 0; padding-right: 0; }
.strip-item svg {
  width: 26px; height: 26px; flex-shrink: 0;
  fill: none; stroke: var(--orange); stroke-width: 1.7;
  stroke-linecap: round; stroke-linejoin: round;
}

/* ==========================================================================
   About
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 72px;
}

.about-media { position: relative; }
.about-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* Location badge overlapping the photograph. */
.about-badge {
  position: absolute;
  right: -22px;
  bottom: 32px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 16px 22px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.about-badge-ico {
  display: grid; place-items: center;
  width: 40px; height: 40px;
  flex-shrink: 0;
  background: var(--orange);
  border-radius: 10px;
}
.about-badge-ico svg {
  width: 20px; height: 20px;
  fill: none; stroke: #fff; stroke-width: 1.8;
  stroke-linecap: round; stroke-linejoin: round;
}
.about-badge > span:last-child {
  display: flex;
  flex-direction: column;
  font-size: .84rem;
  color: var(--muted);
  line-height: 1.45;
}
.about-badge strong { color: var(--ink); font-size: .97rem; }

.about-copy .section-title { margin-bottom: .7em; }
.about-copy .btn { margin-top: 12px; }

/* ---------- Mission / Vision ---------- */
.mv-band {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-bottom: 56px;
  background: var(--navy);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.mv-card {
  flex: 1 1 0;
  padding: 32px 40px;
}
.mv-label {
  display: block;
  margin-bottom: 10px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
}
.mv-card p {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.55;
  color: #fff;
}
.mv-divider {
  flex: 0 0 1px;
  background: rgba(255, 255, 255, .16);
  margin: 28px 0;
}

.values-heading {
  margin: 0 0 22px;
  font-size: 1.3rem;
  text-align: center;
}

.value-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.value-list li {
  display: flex;
  gap: 16px;
  padding: 22px 24px;
  background: var(--surface-alt);
  border: 1px solid var(--line);
  border-left: 3px solid var(--orange);
  border-radius: var(--radius);
}
.value-list h3 { font-size: 1.02rem; margin: 0 0 .25em; }
.value-list p  { margin: 0; font-size: .93rem; line-height: 1.6; }

.value-ico {
  flex-shrink: 0;
  width: 42px; height: 42px;
  display: grid; place-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
}
.value-ico svg {
  width: 21px; height: 21px;
  fill: none; stroke: var(--navy); stroke-width: 1.7;
  stroke-linecap: round; stroke-linejoin: round;
}

/* ==========================================================================
   Services
   ========================================================================== */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
/* Five service lines share the same card component at a narrower column width. */
.cards-5 { grid-template-columns: repeat(5, 1fr); }

.card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: #CFD9E4;
}

.card-media { overflow: hidden; background: var(--surface-alt); }
.card-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform .45s ease;
}
.card:hover .card-media img { transform: scale(1.06); }

.card-body { position: relative; padding: 0 26px 28px; }
.card h3 { font-size: 1.12rem; margin-bottom: .5em; }
.card p  { margin: 0 0 16px; font-size: .94rem; line-height: 1.65; }

/* "What's included" chip list — compact detail without turning each card into
   a wall of text. */
.card-tags { display: flex; flex-wrap: wrap; gap: 6px; margin: 0; }
.card-tags li {
  padding: 5px 10px;
  background: var(--surface-alt);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 600;
  color: var(--navy-soft);
  line-height: 1.3;
}

/* Icon straddles the image edge so each card reads as one unit. */
.card-ico {
  width: 54px; height: 54px;
  display: grid; place-items: center;
  margin: -27px 0 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
}
.card-ico svg {
  width: 26px; height: 26px;
  fill: none; stroke: var(--orange-dark); stroke-width: 1.7;
  stroke-linecap: round; stroke-linejoin: round;
}

/* ==========================================================================
   Showcase
   ========================================================================== */
.showcase { background: #fff; padding: 96px 0; }

.showcase-inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 64px;
  align-items: center;
}

.showcase-media img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.showcase-copy .section-title { margin-bottom: .7em; }

.showcase-list { display: grid; gap: 11px; margin: 0 0 28px; }
.showcase-list li {
  position: relative;
  padding-left: 32px;
  font-size: .97rem;
  color: var(--ink);
  font-weight: 500;
}
.showcase-list li::before {
  content: "";
  position: absolute;
  left: 0; top: .42em;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--orange-soft);
}
.showcase-list li::after {
  content: "";
  position: absolute;
  left: 6px; top: .72em;
  width: 6px; height: 3px;
  border-left: 2px solid var(--orange-dark);
  border-bottom: 2px solid var(--orange-dark);
  transform: rotate(-45deg);
}

/* ==========================================================================
   Organizations
   ========================================================================== */
.org-group-heading {
  margin: 0 0 20px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
}
.org-group-heading:not(:first-of-type) { margin-top: 48px; }

.org-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.org-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding: 30px 20px 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.org-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

/* Fixed circular slot so logos and text monograms share one baseline and size. */
.org-logo-wrap {
  display: grid;
  place-items: center;
  width: 116px;
  height: 116px;
  margin: 0 auto 18px;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.org-mark {
  display: grid;
  place-items: center;
  width: 76px; height: 76px;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .02em;
}

/* Most of these marks are circular seals, so no drawn frame is added — a ring
   around a ring reads as a mistake. The slot just centres whatever it is given
   and lets each logo keep its own shape. */
.org-card.has-logo .org-logo-wrap { padding: 4px; }
.org-card.has-logo:hover .org-logo { transform: scale(1.05); }

/* Hidden until the real logo file loads — see script.js. Text is the default so a
   missing file never shows a broken image. */
.org-logo {
  display: none;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform .2s ease;
}
.org-card.has-logo .org-mark { display: none; }
.org-card.has-logo .org-logo { display: block; }

.org-card h3 { font-size: .99rem; line-height: 1.4; margin: 0 0 .35em; }
.org-card p  { margin: 0; font-size: .82rem; color: var(--muted); }

.org-note {
  margin: 34px 0 0;
  text-align: center;
  font-size: .85rem;
  color: var(--muted);
}

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band {
  background:
    radial-gradient(700px 300px at 82% 20%, rgba(233, 123, 37, .26), transparent 60%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: #fff;
  padding: 64px 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  flex-wrap: wrap;
}
.cta-inner p {
  flex: 1 1 460px;
  margin: 0;
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  font-weight: 600;
  line-height: 1.45;
  color: #fff;
}

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 44px;
  align-items: start;
}

.contact-info { display: grid; gap: 12px; align-content: start; }

.info-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: inherit;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
a.info-row:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-sm);
  transform: translateX(3px);
}

.info-ico {
  flex-shrink: 0;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: var(--navy);
  border-radius: 10px;
}
.info-ico svg {
  width: 21px; height: 21px;
  fill: none; stroke: #fff; stroke-width: 1.7;
  stroke-linecap: round; stroke-linejoin: round;
}

.info-body { display: flex; flex-direction: column; min-width: 0; }
.info-body strong {
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
.info-body span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  overflow-wrap: anywhere;
}

/* ---------- Form ---------- */
.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-sm);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field { margin-bottom: 18px; }
.field-row .field { margin-bottom: 18px; }

.field label {
  display: block;
  margin-bottom: 7px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--ink);
}
.field label span { color: var(--orange); }

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  font: inherit;
  font-size: .96rem;
  color: var(--ink);
  background: var(--surface-alt);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: border-color .18s ease, background-color .18s ease, box-shadow .18s ease;
}
.field textarea { resize: vertical; min-height: 130px; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--navy-soft);
  box-shadow: 0 0 0 3px rgba(53, 87, 126, .14);
}
.field input.has-error,
.field textarea.has-error {
  border-color: #C64B3C;
  box-shadow: 0 0 0 3px rgba(198, 75, 60, .12);
}
.field ::placeholder { color: var(--muted); }

.form-note {
  margin: 14px 0 0;
  font-size: .88rem;
  text-align: center;
  color: var(--muted);
  min-height: 1.4em;
}
.form-note.is-error   { color: #C64B3C; }
.form-note.is-success { color: #1F7A4D; }

/* ---------- Map ---------- */
.map-wrap {
  margin-top: 76px;
  border-top: 1px solid var(--line);
  line-height: 0;
}
.map-wrap iframe {
  width: 100%;
  height: 420px;
  border: 0;
  filter: grayscale(.28) contrast(1.03);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, .68);
  padding: 72px 0 0;
  font-size: .93rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1.1fr;
  gap: 48px;
  padding-bottom: 52px;
}

/* The logo sits on a white panel so the original artwork is shown unaltered. */
.footer-logo-chip {
  display: inline-block;
  padding: 14px 20px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: var(--radius);
}
.footer-logo-chip img { height: 74px; width: auto; object-fit: contain; }

.footer-brand p { margin: 0; max-width: 380px; line-height: 1.7; }

.footer-col h4 {
  margin: 0 0 18px;
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.footer-col li { margin-bottom: 11px; }
.footer-col a { color: rgba(255, 255, 255, .68); transition: color .18s ease; }
.footer-col a:hover { color: var(--orange); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 24px;
  padding-bottom: 28px;
  border-top: 1px solid rgba(255, 255, 255, .11);
  font-size: .85rem;
}
.footer-bottom p { margin: 0; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .about-grid    { grid-template-columns: 1fr; gap: 44px; margin-bottom: 56px; }
  .about-media img { aspect-ratio: 16 / 10; }
  .about-badge   { right: 20px; bottom: 20px; }
  .value-list    { grid-template-columns: repeat(2, 1fr); }
  .cards         { grid-template-columns: repeat(2, 1fr); }
  .showcase-inner{ grid-template-columns: 1fr; gap: 44px; }
  .showcase-media img { aspect-ratio: 16 / 9; }
  .org-grid      { grid-template-columns: repeat(3, 1fr); }
  .contact-grid  { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 40px; }
  .strip-inner   { grid-template-columns: repeat(3, 1fr); }
  .strip-item    { border-right: 0; padding: 20px 0; }
}

@media (max-width: 860px) {
  :root { --header-h: 74px; }

  .brand-logo { height: 52px; }

  .nav-toggle { display: flex; }

  .primary-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    max-height: 0;
    overflow: hidden;
    background: #fff;
    border-bottom: 1px solid transparent;
    transition: max-height .3s ease, border-color .3s ease;
  }
  .primary-nav.is-open {
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
    border-bottom-color: var(--line);
    box-shadow: var(--shadow-lg);
  }
  .primary-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 24px 26px;
  }
  .primary-nav li { border-bottom: 1px solid var(--line); }
  .primary-nav .nav-cta-item { border-bottom: 0; margin: 18px 0 0; }
  .nav-link { padding: 15px 4px; font-size: 1rem; }
  .nav-link:hover { background: transparent; }
  .nav-link.is-active::after { left: 4px; right: auto; width: 26px; bottom: 8px; }
  .nav-cta-item .btn { width: 100%; padding: 14px 22px; font-size: 1rem; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }

  .section  { padding: 68px 0; }
  .showcase { padding: 68px 0; }
  .section-head { margin-bottom: 40px; }

  .hero { padding: 88px 0 92px; }
  .hero-actions .btn { flex: 1 1 100%; }

  .about-media img { aspect-ratio: 3 / 2; }
  .about-badge {
    position: static;
    margin-top: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--line);
  }

  .value-list { grid-template-columns: 1fr; }
  .cards      { grid-template-columns: 1fr; gap: 18px; }
  .org-grid   { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  .mv-band    { flex-direction: column; }
  .mv-divider { flex: none; width: auto; height: 1px; margin: 0 32px; }
  .mv-card    { padding: 26px 28px; }

  .cta-band  { padding: 52px 0; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .cta-inner .btn { width: 100%; }

  .contact-form { padding: 26px 22px; }
  .field-row    { grid-template-columns: 1fr; gap: 0; }

  .map-wrap { margin-top: 56px; }
  .map-wrap iframe { height: 320px; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; padding-bottom: 40px; }
  .footer-logo-chip img { height: 66px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 400px) {
  .container { padding: 0 18px; }
  .brand-logo { height: 46px; }
  .org-grid { grid-template-columns: 1fr; }
}

/* ---------- Motion / print ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

@media print {
  .site-header, .nav-toggle, .cta-band, .map-wrap, .hero-actions,
  .hero-media, .card-media, .about-media, .showcase-media { display: none !important; }
  body { color: #000; font-size: 12pt; }
  .hero, .site-footer, .mv-band { background: #fff !important; color: #000 !important; }
  .hero-title, .hero-tagline, .hero-text,
  .footer-col a, .mv-card p { color: #000 !important; }
  .about-grid, .showcase-inner { grid-template-columns: 1fr !important; }
}
