:root {
  --navy: #0f2341;
  --gold: #c9a24a;
  --sand: #e8d9b5;
  --stone: #6e6a63;
  --off-white: #f7f4ed;
  --ink: #1e2430;
  --muted: #5c6472;
  --line: rgba(15, 35, 65, 0.12);
  --line-strong: rgba(15, 35, 65, 0.18);
  --surface: #ffffff;
  --surface-alt: #faf8f3;
  --surface-strong: #fffdf8;
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --shadow-sm: 0 12px 30px rgba(15, 35, 65, 0.08);
  --shadow-md: 0 24px 70px rgba(15, 35, 65, 0.12);
  --shadow-lg: 0 36px 90px rgba(15, 35, 65, 0.14);
  --container: min(1180px, calc(100vw - 2rem));
  --container-wide: min(1280px, calc(100vw - 2rem));
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(201, 162, 74, 0.16), transparent 24%),
    linear-gradient(180deg, #fffefd 0%, #fcfaf6 25%, #ffffff 100%);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }

a { color: var(--navy); text-decoration: none; }

a:hover { text-decoration: none; }

button,
input,
select,
textarea { font: inherit; }

button { cursor: pointer; }

.container { width: var(--container); margin: 0 auto; }

.container--wide { width: var(--container-wide); margin: 0 auto; }

.section { padding: 5rem 0; }

.section--tight { padding: 3.5rem 0; }

.section--alt {
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(10px);
}

.section--soft {
  background: linear-gradient(180deg, rgba(247,244,237,0.9), rgba(255,255,255,0.9));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(201,162,74,0.35);
  background: rgba(255,255,255,0.78);
  color: var(--navy);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: var(--gold);
}

.hero { padding: 2rem 0 4rem; }

.hero-shell {
  width: var(--container-wide);
  margin: 0 auto;
  padding: 1.25rem;
  border-radius: clamp(24px, 4vw, 44px);
  background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(247,244,237,0.92));
  border: 1px solid rgba(15,35,65,0.08);
  box-shadow: var(--shadow-md);
}

.hero-grid,
.grid-2,
.grid-3,
.grid-4,
.story-grid,
.stats-grid,
.contact-grid,
.staff-grid,
.gallery-grid,
.process-grid,
.card-grid,
.value-grid,
.path-grid,
.footer-grid,
.split-band,
.media-grid,
.pillars-grid,
.cta-grid {
  display: grid;
  gap: 1.5rem;
}

.hero-grid,
.story-grid,
.contact-grid,
.media-grid,
.split-band {
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
}

.grid-2,
.stats-grid,
.path-grid,
.cta-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3,
.gallery-grid,
.process-grid,
.card-grid,
.value-grid,
.pillars-grid,
.staff-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.hero-copy { padding: clamp(1.25rem, 2vw, 2.5rem); }

.hero-copy h1,
.page-hero h1 {
  margin: 1rem 0 1rem;
  font-size: clamp(2.45rem, 5vw, 4.8rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
  color: var(--navy);
}

.hero-copy p,
.page-hero p,
.intro {
  margin: 0;
  font-size: clamp(1.05rem, 1.25vw, 1.18rem);
  color: var(--muted);
  max-width: 62ch;
}

.hero-actions,
.inline-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.75rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3rem;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.button:hover { transform: translateY(-1px); }

.button:focus-visible,
.menu-toggle:focus-visible,
.faq-question:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(201,162,74,0.55);
  outline-offset: 3px;
}

.button--primary {
  background: linear-gradient(135deg, var(--navy), #17325d);
  color: #fff;
  box-shadow: 0 10px 24px rgba(15,35,65,0.22);
}

.button--primary:hover { box-shadow: 0 14px 28px rgba(15,35,65,0.28); }

.button--secondary {
  background: linear-gradient(135deg, #d7b363, var(--gold));
  color: #1b1710;
  box-shadow: 0 12px 26px rgba(201,162,74,0.22);
}

.button--ghost {
  background: rgba(255,255,255,0.88);
  border-color: var(--line-strong);
  color: var(--navy);
}

.button--text {
  padding-inline: 0;
  min-height: auto;
  border-radius: 0;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.75rem;
}

.badge {
  padding: 0.62rem 0.9rem;
  border-radius: 999px;
  background: rgba(15,35,65,0.05);
  border: 1px solid rgba(15,35,65,0.09);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.96rem;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: clamp(24px, 3vw, 38px);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,35,65,0.04), rgba(15,35,65,0.32));
}

.floating-note {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(15,35,65,0.1);
  border-radius: 18px;
  padding: 1rem 1rem 0.95rem;
  box-shadow: var(--shadow-sm);
}

.photo-caption {
  position: relative;
  margin-top: -3.35rem;
  max-width: calc(100% - 2rem);
  margin-left: 1rem;
  z-index: 1;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(15,35,65,0.1);
  border-radius: 18px;
  padding: 1rem 1rem 0.95rem;
  box-shadow: var(--shadow-sm);
}

.floating-note strong,
.photo-caption strong {
  color: var(--navy);
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

.floating-note p,
.photo-caption p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.metric-card,
.info-card,
.surface-card,
.value-card,
.staff-card,
.process-card,
.path-card,
.faq-card,
.quote-card,
.contact-card,
.disclosure-card,
.stat-card,
.panel {
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.metric-card,
.info-card,
.surface-card,
.value-card,
.staff-card,
.process-card,
.path-card,
.contact-card,
.disclosure-card,
.stat-card,
.panel {
  padding: 1.4rem;
}

.metric-card strong,
.stat-card strong {
  display: block;
  font-size: clamp(1.55rem, 2vw, 2.3rem);
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 0.55rem;
}

.metric-card p,
.stat-card p,
.info-card p,
.surface-card p,
.value-card p,
.process-card p,
.path-card p,
.contact-card p,
.disclosure-card p,
.panel p,
.story-copy p,
.section-copy p,
li {
  color: var(--muted);
  margin: 0;
}

.info-card h3,
.surface-card h3,
.value-card h3,
.process-card h3,
.path-card h3,
.staff-card h3,
.contact-card h3,
.panel h3,
.page-card h3,
.faq-question span,
.footer-title {
  margin: 0 0 0.5rem;
  color: var(--navy);
  font-size: 1.15rem;
  line-height: 1.25;
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  max-width: 68ch;
  margin-bottom: 2rem;
}

.section-heading h2,
.story-copy h2,
.page-card h2,
.contact-card h2,
.panel h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--navy);
}

.section-heading p,
.story-copy p,
.page-card p { margin: 0; }

.story-media,
.media-card {
  overflow: hidden;
  border-radius: clamp(20px, 3vw, 32px);
  min-height: 480px;
  box-shadow: var(--shadow-md);
  background: var(--surface);
  position: relative;
}

.story-media img,
.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-copy,
.section-copy { padding-right: 1rem; }

.list-clean,
.footer-links,
.contact-list,
.feature-list,
.check-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.contact-list li,
.footer-links li {
  position: relative;
  padding-left: 1.35rem;
  margin: 0.65rem 0;
}

.check-list li::before,
.contact-list li::before,
.footer-links li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--gold);
}

.feature-list {
  display: grid;
  gap: 0.8rem;
}

.feature-list li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: rgba(15,35,65,0.04);
  border: 1px solid rgba(15,35,65,0.08);
}

.feature-list strong {
  color: var(--navy);
  display: block;
}

.feature-list svg,
.icon {
  flex: 0 0 1.15rem;
  width: 1.15rem;
  height: 1.15rem;
  color: var(--gold);
  margin-top: 0.2rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 0.8rem 0;
  background: rgba(247,244,237,0.76);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(15,35,65,0.08);
}

.header-shell {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 1rem;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.brand img {
  width: 4rem;
  height: 4rem;
  object-fit: contain;
  border-radius: 16px;
  background: radial-gradient(circle at center, rgba(255,255,255,0.9), rgba(247,244,237,0.65));
}

.brand-copy {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 1.08rem;
  color: var(--navy);
  letter-spacing: 0.06em;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.96rem;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.25rem;
}

.site-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  color: var(--navy);
  font-weight: 600;
}

.site-nav a:hover,
.site-nav a.active {
  background: rgba(15,35,65,0.07);
}

.nav-cta {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 0.28rem;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  border: 1px solid rgba(15,35,65,0.1);
  background: rgba(255,255,255,0.86);
}

.menu-toggle__line {
  width: 1.15rem;
  height: 2px;
  background: var(--navy);
  border-radius: 999px;
}

.page-hero { padding: 3rem 0 1.75rem; }

.page-hero__shell {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: center;
  padding: clamp(1.4rem, 2vw, 2rem);
  border-radius: clamp(24px, 4vw, 40px);
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(15,35,65,0.08);
  box-shadow: var(--shadow-sm);
}

.page-hero__media {
  overflow: hidden;
  border-radius: clamp(20px, 3vw, 32px);
  min-height: 400px;
  position: relative;
}

.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kicker-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.kicker-list span {
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(15,35,65,0.06);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.96rem;
}

.quote-card { padding: 2rem; }

.quote-card blockquote {
  margin: 0;
  font-size: clamp(1.12rem, 1.8vw, 1.35rem);
  color: var(--navy);
  line-height: 1.5;
}

.quote-card cite {
  display: block;
  margin-top: 1rem;
  color: var(--muted);
  font-style: normal;
}

.gallery-card,
.media-frame {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(15,35,65,0.09);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.gallery-card img,
.media-frame img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.gallery-card__body { padding: 1rem 1rem 1.15rem; }

.gallery-card__body h3 {
  margin: 0 0 0.35rem;
  color: var(--navy);
}

.small-note,
.microcopy {
  font-size: 0.94rem;
  color: var(--muted);
}

.disclosure-band {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(201,162,74,0.25);
  box-shadow: var(--shadow-sm);
}

.disclosure-band strong { color: var(--navy); }

.page-card {
  padding: clamp(1.3rem, 2vw, 1.8rem);
  border-radius: 28px;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(15,35,65,0.08);
  box-shadow: var(--shadow-sm);
}

.staff-card img {
  width: 100%;
  aspect-ratio: 4 / 4.7;
  object-fit: cover;
  border-radius: 22px;
  margin-bottom: 1rem;
  background: linear-gradient(180deg, rgba(15,35,65,0.1), rgba(15,35,65,0.04));
}

.placeholder-portrait {
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 4.7;
  border-radius: 22px;
  margin-bottom: 1rem;
  background: linear-gradient(180deg, rgba(15,35,65,0.12), rgba(201,162,74,0.14));
  color: var(--navy);
  border: 1px dashed rgba(15,35,65,0.18);
}

.placeholder-portrait span {
  display: inline-grid;
  place-items: center;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  font-weight: 800;
  font-size: 1.45rem;
  background: rgba(255,255,255,0.75);
  box-shadow: var(--shadow-sm);
}

.role {
  display: inline-flex;
  margin-bottom: 0.85rem;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(201,162,74,0.18);
  color: #5e4714;
  font-weight: 700;
  font-size: 0.88rem;
}

.staff-card address {
  margin-top: 1rem;
  font-style: normal;
  color: var(--muted);
}

.staff-grid--two { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.leadership-section { padding-top: 2.5rem; }

.leadership-intro {
  margin-bottom: 2rem;
  text-align: center;
}

.leadership-intro h2 { margin-bottom: 0.85rem; }

.leadership-list {
  display: grid;
  gap: 1.4rem;
}

.leadership-card {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: 1.35rem;
  align-items: stretch;
  padding: clamp(1.15rem, 2vw, 1.5rem);
  border-radius: 28px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(15,35,65,0.08);
  box-shadow: var(--shadow-sm);
}

.leadership-card__media {
  margin: 0;
  display: flex;
}

.leadership-card__media img {
  width: 100%;
  max-width: 280px;
  height: 100%;
  min-height: 320px;
  max-height: 380px;
  object-fit: cover;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(15,35,65,0.1), rgba(15,35,65,0.04));
}

.leadership-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.leadership-card__body h2 { margin: 0 0 0.75rem; }

.leadership-card__body p { margin: 0 0 0.9rem; }

.leadership-card__contact {
  margin-top: 0.4rem;
  display: grid;
  gap: 0.4rem;
  font-style: normal;
  color: var(--muted);
}

.leadership-card__contact a { width: fit-content; }

.brand-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  min-height: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(15, 35, 65, 0.08);
  background: linear-gradient(180deg, rgba(247,244,237,0.98), rgba(255,255,255,1));
  box-shadow: var(--shadow-md);
}

.brand-panel__logo {
  width: min(280px, 74%);
  height: auto;
  object-fit: contain !important;
  filter: drop-shadow(0 18px 40px rgba(15,35,65,0.10));
}

.brand-panel__copy {
  margin: 1rem 0 0;
  text-align: center;
  max-width: 26rem;
  color: var(--muted);
  font-weight: 600;
}

.faq-group {
  display: grid;
  gap: 0.85rem;
}

.faq-item {
  border-radius: 22px;
  border: 1px solid rgba(15,35,65,0.1);
  background: rgba(255,255,255,0.9);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 1.1rem 1.2rem;
  border: 0;
  background: none;
  text-align: left;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 180ms ease;
}

.faq-answer > div { overflow: hidden; }

.faq-answer p {
  padding: 0 1.2rem 1.2rem;
  margin: 0;
}

.faq-item[data-open="true"] .faq-answer { grid-template-rows: 1fr; }

.faq-item[data-open="true"] .faq-icon { transform: rotate(45deg); }

.faq-icon {
  font-size: 1.5rem;
  line-height: 1;
  color: var(--gold);
  transition: transform 180ms ease;
}

.contact-grid { align-items: start; }

.form-shell {
  padding: 1.5rem;
  border-radius: 28px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(15,35,65,0.08);
  box-shadow: var(--shadow-md);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.field,
.field--full {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.field--full { grid-column: 1 / -1; }

label {
  color: var(--navy);
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.92rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(15,35,65,0.16);
  background: rgba(255,255,255,0.98);
  color: var(--ink);
}

textarea {
  min-height: 10rem;
  resize: vertical;
}

.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.2rem;
}

.form-status {
  font-size: 0.95rem;
  color: var(--muted);
}

.form-status.is-success { color: #0f6b3e; }

.form-status.is-error { color: #973030; }

.honeypot {
  position: absolute !important;
  left: -9999px !important;
}

.contact-card address {
  font-style: normal;
  color: var(--muted);
}

.band {
  padding: 1.2rem 1.4rem;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(15,35,65,0.96), rgba(20,50,94,0.92));
  color: rgba(255,255,255,0.92);
  box-shadow: var(--shadow-md);
}

.band h2,
.band h3,
.band p,
.band li,
.band a { color: inherit; }

.band .button--ghost {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: rgba(255,255,255,0.18);
}

.split-band {
  padding: 1.75rem;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(15,35,65,0.96), rgba(20,50,94,0.92));
  color: rgba(255,255,255,0.94);
  box-shadow: var(--shadow-md);
}

.split-band h2,
.split-band h3,
.split-band p,
.split-band li,
.split-band a { color: inherit; }

.site-footer {
  margin-top: 2rem;
  padding: 3.4rem 0 2rem;
  background: linear-gradient(180deg, rgba(15,35,65,0.98), rgba(11,26,48,1));
  color: rgba(255,255,255,0.88);
}

.site-footer a { color: #fff; }

.footer-grid {
  grid-template-columns: 1.3fr 0.8fr 0.9fr;
  align-items: start;
}

.footer-copy,
.footer-disclosure,
.footer-bottom p { color: rgba(255,255,255,0.78); }

.brand--footer .brand-copy strong,
.brand--footer .brand-copy span,
.footer-title { color: #fff; }

.footer-links { list-style: none; }

.footer-links li::before { background: rgba(201,162,74,0.9); }

.footer-bottom {
  margin-top: 2.2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  z-index: 100;
}

.skip-link:focus { top: 1rem; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1080px) {
  .hero-grid,
  .story-grid,
  .contact-grid,
  .media-grid,
  .page-hero__shell,
  .split-band,
  .footer-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .gallery-grid,
  .process-grid,
  .card-grid,
  .value-grid,
  .path-grid,
  .stats-grid,
  .cta-grid,
  .pillars-grid,
  .staff-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }

  .hero-visual,
  .story-media,
  .page-hero__media {
    min-height: 380px;
  }

  .site-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.6rem);
    padding: 1rem;
    border-radius: 24px;
    background: rgba(255,255,255,0.98);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(15,35,65,0.08);
    flex-direction: column;
    align-items: stretch;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav a { justify-content: flex-start; }

  .nav-cta {
    justify-content: flex-start;
    align-items: stretch;
  }

  .nav-cta .button { width: 100%; }

  .menu-toggle { display: inline-flex; }

  .header-shell { grid-template-columns: auto 1fr auto; }
}

@media (max-width: 860px) {
  .leadership-card { grid-template-columns: 1fr; }

  .leadership-card__media { justify-content: center; }

  .leadership-card__media img {
    max-width: min(100%, 340px);
    height: auto;
    min-height: 0;
    max-height: 360px;
  }
}

@media (max-width: 720px) {
  .section { padding: 4rem 0; }

  .hero { padding: 1.2rem 0 3rem; }

  .hero-shell { padding: 0.9rem; }

  .hero-grid,
  .story-grid,
  .contact-grid,
  .media-grid,
  .page-hero__shell,
  .split-band,
  .footer-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .gallery-grid,
  .process-grid,
  .card-grid,
  .value-grid,
  .path-grid,
  .stats-grid,
  .cta-grid,
  .pillars-grid,
  .staff-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .story-copy,
  .section-copy { padding-right: 0; }

  .button { width: 100%; }

  .hero-actions,
  .inline-actions,
  .contact-actions,
  .nav-cta,
  .form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .brand img {
    width: 3.55rem;
    height: 3.55rem;
  }

  .brand-copy strong { font-size: 1rem; }

  .brand-copy span { font-size: 0.88rem; }

  .floating-note,
  .photo-caption {
    left: 0.8rem;
    right: 0.8rem;
    bottom: 0.8rem;
  }

  .footer-bottom { flex-direction: column; }
}