:root {
  /* Dark luxury base — matches the deep navy beneath the logo */
  --bg-dark:        #0B0F1A;
  --bg-dark-card:   #141929;
  --bg-dark-lift:   #1C2236;
  --bg-dark-border: rgba(255, 255, 255, 0.08);

  /* Warm light base */
  --bg:             #FAF6EE;
  --surface:        #FFFFFF;
  --surface-tint:   #F2EBE0;

  /* Logo-matched gold — pulled directly from the SVG gradient */
  --accent:         #D7861B;   /* logo stop 0.26 */
  --accent-bright:  #F4AD35;   /* logo stop 0.52 */
  --accent-muted:   #9C5107;   /* logo stop 0 */
  --accent-cream:   #F5D89E;   /* pale cream for subtle backgrounds */

  /* Text — light sections */
  --ink:            #0E1220;
  --ink-soft:       #4A3D2E;
  --ink-muted:      #7A6E62;

  /* Text — dark sections */
  --ink-light:      #F0EAE0;
  --ink-light-soft: #C8BFB2;
  --ink-light-muted:#857D74;

  /* Structure */
  --line:           #E4D9CC;
  --line-dark:      rgba(255, 255, 255, 0.08);

  --radius-xl:      28px;
  --radius-lg:      18px;
  --radius-md:      12px;

  --shadow-lg:      0 24px 54px rgba(10, 14, 28, 0.18);
  --shadow-md:      0 10px 28px rgba(10, 14, 28, 0.10);
  --shadow-gold:    0 8px 32px rgba(215, 134, 27, 0.22);

  --container:      1420px;

  --step--1: clamp(0.82rem, 0.80rem + 0.09vw, 0.90rem);
  --step-0:  clamp(1rem, 0.97rem + 0.15vw, 1.12rem);
  --step-1:  clamp(1.22rem, 1.12rem + 0.38vw, 1.48rem);
  --step-2:  clamp(1.56rem, 1.32rem + 0.84vw, 2.08rem);
  --step-3:  clamp(2.0rem, 1.60rem + 1.42vw, 3.0rem);
  --step-4:  clamp(2.6rem, 2.0rem + 2.2vw, 4.2rem);
  --step-5:  clamp(3.4rem, 2.6rem + 3.2vw, 6.0rem);
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: var(--step-0);
  line-height: 1.64;
  color: var(--ink);
  background: var(--bg);
}

h1, h2, h3, h4, h5 {
  margin: 0;
  line-height: 1.12;
  letter-spacing: -0.018em;
  font-family: "Fraunces", Georgia, serif;
  color: inherit;
}

p { margin: 0; }

a { color: inherit; text-decoration: none; }

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

ul { margin: 0; padding: 0; }

/* ─── Layout ─────────────────────────────────────────────── */

.container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

/* ─── Header ─────────────────────────────────────────────── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  border-bottom: 1px solid rgba(14, 18, 32, 0.12);
  background: rgba(250, 246, 238, 0.94);
  backdrop-filter: blur(12px);
  transition: box-shadow 220ms ease;
}

.nav-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: 70px;
  height: 22px;
  object-fit: contain;
  filter: drop-shadow(0 1px 3px rgba(156, 81, 7, 0.28));
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.brand-mark {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  color: var(--ink);
}

.brand-sub {
  font-size: 0.62rem;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-links a {
  font-size: 0.78rem;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-weight: 700;
  transition: color 160ms ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--ink);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--accent);
  color: #1A0F06;
  background: linear-gradient(90deg, var(--accent-bright), var(--accent));
  padding: 10px 18px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-weight: 800;
  transition: filter 180ms ease, box-shadow 180ms ease;
}

.nav-cta:hover {
  filter: brightness(1.06);
  box-shadow: var(--shadow-gold);
}

.mobile-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-size: 1rem;
  cursor: pointer;
}

.mobile-panel {
  display: none;
  border-top: 1px solid var(--line);
  background: rgba(250, 246, 238, 0.98);
}

.mobile-panel[data-open="true"] { display: block; }

.mobile-panel .container {
  display: grid;
  gap: 6px;
  padding: 14px 0 18px;
}

.mobile-panel a {
  padding: 11px 12px;
  border-radius: 9px;
  border: 1px solid transparent;
  color: var(--ink-muted);
  font-weight: 600;
}

.mobile-panel a:hover {
  border-color: var(--line);
  color: var(--ink);
}

/* ─── Sections ───────────────────────────────────────────── */

.section {
  padding: 92px 0;
}

.section-light {
  background: var(--surface-tint);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

/* True dark section — navy background */
.section-deep {
  background: var(--bg-dark);
  color: var(--ink-light);
}

.section-deep .section-head h2,
.section-deep h2,
.section-deep h3 {
  color: var(--ink-light);
}

.section-deep .section-head p,
.section-deep .section-head .kicker {
  color: var(--ink-light-soft);
}

.section-head {
  max-width: 840px;
  margin-bottom: 32px;
}

.section-head h2 {
  margin-top: 12px;
  font-size: var(--step-3);
}

.section-head p {
  margin-top: 14px;
  color: var(--ink-soft);
  max-width: 68ch;
}

/* ─── Typography utilities ───────────────────────────────── */

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.66rem;
  font-weight: 800;
}

.kicker::before {
  content: "";
  width: 36px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  flex-shrink: 0;
}

.kicker-light {
  color: var(--accent-cream);
}

.kicker-light::before {
  background: linear-gradient(90deg, var(--accent-bright), transparent);
}

.tag {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(215, 134, 27, 0.35);
  background: rgba(245, 216, 158, 0.18);
  color: var(--accent-muted);
  padding: 4px 10px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

/* ─── Buttons ────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 12px 22px;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  transition: filter 160ms ease, box-shadow 160ms ease;
  cursor: pointer;
}

.btn-primary {
  border-color: var(--accent);
  background: linear-gradient(90deg, var(--accent-bright), var(--accent));
  color: #1A0F06;
}

.btn-primary:hover {
  filter: brightness(1.06);
  box-shadow: var(--shadow-gold);
}

.btn-secondary {
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent-muted);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.07);
  color: var(--ink-light);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.32);
}

/* ─── Hero — Dark luxury ─────────────────────────────────── */

.page-hero-dark {
  background: var(--bg-dark);
  color: var(--ink-light);
  padding: 90px 0 60px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
}

.hero-main {
  padding: 44px;
  border-radius: var(--radius-xl);
  background: var(--bg-dark-card);
  border: 1px solid var(--bg-dark-border);
}

.hero-side {
  padding: 30px;
  border-radius: var(--radius-xl);
  background: var(--bg-dark-card);
  border: 1px solid var(--bg-dark-border);
}

.hero-title {
  margin-top: 20px;
  font-size: var(--step-4);
  max-width: 14ch;
  color: var(--ink-light);
}

.hero-copy {
  margin-top: 18px;
  max-width: 58ch;
  color: var(--ink-light-soft);
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-note {
  margin-top: 24px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(215, 134, 27, 0.28);
  background: rgba(156, 81, 7, 0.14);
  padding: 12px 14px;
  font-size: var(--step--1);
  color: var(--accent-cream);
}

.hero-side h3 {
  font-size: var(--step-1);
  color: var(--ink-light);
}

.hero-side > p {
  margin-top: 8px;
  color: var(--ink-light-soft);
}

.hero-insights {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.hero-insights article {
  border-radius: 12px;
  border: 1px solid var(--bg-dark-border);
  background: var(--bg-dark-lift);
  padding: 14px;
}

.hero-insights h4 {
  font-family: "Manrope", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--ink-light);
}

.hero-insights span {
  display: block;
  margin-top: 4px;
  font-size: 0.76rem;
  color: var(--ink-light-muted);
}

/* Light page-hero for inner pages */
.page-hero {
  padding: 68px 0 32px;
  background: var(--bg-dark);
  color: var(--ink-light);
}

.page-hero .section-head {
  margin-bottom: 0;
}

.page-hero .section-head h1 {
  font-size: var(--step-4);
  color: var(--ink-light);
}

.page-hero .section-head p {
  color: var(--ink-light-soft);
}

/* ─── Impact Bar ─────────────────────────────────────────── */

.impact-bar {
  background: linear-gradient(90deg, var(--accent-muted), var(--accent), var(--accent-bright), var(--accent));
  padding: 0;
}

.impact-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  divide-style: solid;
}

.impact-stat {
  padding: 28px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  text-align: center;
}

.impact-stat:last-child {
  border-right: none;
}

.impact-num {
  display: block;
  font-family: "Fraunces", Georgia, serif;
  font-size: var(--step-4);
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  line-height: 1;
}

.impact-label {
  display: block;
  margin-top: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: rgba(255, 255, 255, 0.82);
}

/* ─── Carousel ───────────────────────────────────────────── */

.hero-carousel-shell {
  padding: 0 0 40px;
  background: var(--bg-dark);
}

.hero-carousel {
  position: relative;
  min-height: 640px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 28px 64px rgba(10, 14, 28, 0.36);
  background: var(--bg-dark);
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 700ms ease, transform 900ms ease;
}

.carousel-slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 15, 26, 0.78) 0%, rgba(11, 15, 26, 0.38) 55%, rgba(11, 15, 26, 0.16) 100%);
}

.carousel-content {
  position: absolute;
  left: 62px;
  bottom: 60px;
  max-width: 680px;
  color: var(--ink-light);
  z-index: 3;
}

.carousel-kicker {
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 800;
  color: var(--accent-bright);
}

.carousel-title {
  margin-top: 12px;
  font-size: clamp(2.0rem, 1.5rem + 2vw, 3.6rem);
  line-height: 1.05;
  max-width: 16ch;
  color: #FFFFFF;
}

.carousel-copy {
  margin-top: 14px;
  max-width: 56ch;
  color: rgba(240, 234, 224, 0.88);
}

.carousel-controls {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  padding: 7px;
  backdrop-filter: blur(4px);
}

.carousel-btn {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: none;
  background: #ffffff;
  color: #172134;
  font-size: 1rem;
  cursor: pointer;
}

.carousel-dots {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 4px;
}

.carousel-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: none;
  background: #99a4b5;
  padding: 0;
  cursor: pointer;
  transition: width 200ms ease, background 200ms ease;
}

.carousel-dot[aria-current="true"] {
  width: 18px;
  border-radius: 999px;
  background: var(--accent);
}

/* ─── Story stream ───────────────────────────────────────── */

.story-stream {
  display: grid;
  gap: 24px;
}

.story-row {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 20px;
  align-items: center;
}

.story-row.reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.story-copy {
  padding: 12px 6px;
}

.story-copy h3 {
  margin-top: 10px;
  font-size: var(--step-2);
}

.story-copy p {
  margin-top: 12px;
  color: var(--ink-soft);
}

.story-media {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-height: 380px;
}

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

/* ─── Service cards ──────────────────────────────────────── */

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }

.service-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--bg-dark-border);
  background: var(--bg-dark-card);
  padding: 26px 22px;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.service-card:hover {
  border-color: rgba(215, 134, 27, 0.4);
  box-shadow: 0 0 0 1px rgba(215, 134, 27, 0.15), var(--shadow-md);
}

.service-card-icon {
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-bright), var(--accent));
  border-radius: 99px;
  margin-bottom: 18px;
}

.service-card h3 {
  font-size: var(--step-1);
  color: var(--ink-light);
}

.service-card p {
  margin-top: 10px;
  color: var(--ink-light-soft);
  font-size: 0.9rem;
}

/* Light variant card */
.card {
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 22px;
  box-shadow: var(--shadow-md);
}

.card h3, .card h4 {
  font-size: var(--step-1);
}

.card p {
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

/* ─── Outcome strip ──────────────────────────────────────── */

.outcome-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--bg-dark-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.outcome-item {
  background: var(--bg-dark-card);
  padding: 36px 28px;
  text-align: center;
}

.outcome-num {
  display: block;
  font-family: "Fraunces", Georgia, serif;
  font-size: var(--step-5);
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, var(--accent-bright), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.outcome-label {
  display: block;
  margin-top: 10px;
  font-size: 0.86rem;
  color: var(--ink-light-soft);
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
}

/* ─── Stat line (light sections) ────────────────────────── */

.stat-line {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.stat-item {
  padding: 20px 14px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--line);
  text-align: center;
}

.stat-item strong {
  display: block;
  font-family: "Fraunces", Georgia, serif;
  font-size: var(--step-3);
  color: var(--accent-muted);
  line-height: 1;
}

.stat-item span {
  display: block;
  margin-top: 6px;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

/* ─── Process steps ──────────────────────────────────────── */

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  counter-reset: step;
}

.process-step {
  border-radius: var(--radius-lg);
  border: 1px solid var(--bg-dark-border);
  background: var(--bg-dark-card);
  padding: 24px 18px;
  counter-increment: step;
  position: relative;
}

.process-step::before {
  content: "0" counter(step);
  display: block;
  font-family: "Fraunces", Georgia, serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: rgba(215, 134, 27, 0.28);
  line-height: 1;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.process-step h4 {
  font-size: var(--step-0);
  color: var(--ink-light);
  font-weight: 700;
  font-family: "Manrope", sans-serif;
  letter-spacing: 0;
}

.process-step p {
  margin-top: 8px;
  font-size: 0.84rem;
  color: var(--ink-light-soft);
}

/* ─── Leader quote ───────────────────────────────────────── */

.leader-quote {
  border-left: 3px solid var(--accent);
  padding: 20px 24px;
  background: rgba(215, 134, 27, 0.06);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.leader-quote blockquote {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: var(--step-2);
  color: var(--ink-light);
  line-height: 1.3;
}

.leader-quote cite {
  display: block;
  margin-top: 12px;
  font-style: normal;
  font-size: 0.82rem;
  color: var(--ink-light-muted);
}

/* ─── Tabs ───────────────────────────────────────────────── */

.tab-suite {
  border-radius: var(--radius-xl);
  background: var(--bg-dark-card);
  border: 1px solid var(--bg-dark-border);
  padding: 18px;
}

.tab-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 18px;
}

.tab-list {
  display: grid;
  gap: 6px;
  align-content: start;
}

.tab-btn {
  width: 100%;
  text-align: left;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  padding: 13px 16px;
  background: transparent;
  color: var(--ink-light-soft);
  font: inherit;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.tab-btn:hover {
  background: var(--bg-dark-lift);
  color: var(--ink-light);
}

.tab-btn.is-active {
  background: linear-gradient(90deg, rgba(244, 173, 53, 0.18), rgba(215, 134, 27, 0.10));
  border-color: rgba(215, 134, 27, 0.3);
  color: var(--accent-cream);
}

.tab-panels { position: relative; }

.tab-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: stretch;
}

.tab-panel.is-active { display: grid; }

.tab-copy { padding: 8px 4px; }

.tab-copy h3 {
  font-size: var(--step-2);
  color: var(--ink-light);
}

.tab-copy p {
  margin-top: 12px;
  color: var(--ink-light-soft);
}

.tab-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 280px;
  box-shadow: var(--shadow-md);
}

.tab-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ─── Learn list ─────────────────────────────────────────── */

.learn-list {
  list-style: none;
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.learn-list li {
  position: relative;
  padding-left: 18px;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.learn-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.learn-list-light li { color: var(--ink-light-soft); }
.learn-list-light li::before { background: var(--accent-bright); }

/* ─── CTA band ───────────────────────────────────────────── */

.cta-band {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(215, 134, 27, 0.24);
  background: linear-gradient(120deg, rgba(156, 81, 7, 0.12), rgba(244, 173, 53, 0.06));
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cta-band h3 { font-size: var(--step-2); color: var(--ink-light); }
.cta-band p  { margin-top: 8px; color: var(--ink-light-soft); }

/* ─── Quote panel ────────────────────────────────────────── */

.quote-panel {
  border-radius: var(--radius-xl);
  background: var(--bg-dark-card);
  border: 1px solid var(--bg-dark-border);
  padding: 28px;
}

.quote-panel blockquote {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: var(--step-2);
  color: var(--ink-light);
  max-width: 28ch;
}

.quote-panel cite {
  display: block;
  margin-top: 14px;
  font-style: normal;
  font-size: 0.82rem;
  color: var(--ink-light-muted);
}

/* ─── Split band ─────────────────────────────────────────── */

.split-band {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
}

/* ─── Contact form ───────────────────────────────────────── */

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  gap: 16px;
}

.form-card {
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 28px;
  box-shadow: var(--shadow-md);
}

.side-card {
  border-radius: var(--radius-lg);
  background: var(--bg-dark-card);
  border: 1px solid var(--bg-dark-border);
  color: var(--ink-light);
  padding: 26px;
}

.side-card h3 { font-size: var(--step-1); color: var(--ink-light); }
.side-card p  { margin-top: 8px; color: var(--ink-light-soft); }

.side-list {
  list-style: none;
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.side-list li {
  font-size: 0.86rem;
  color: var(--ink-light-soft);
  padding-left: 16px;
  position: relative;
}

.side-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.field { display: grid; gap: 6px; }

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

.field label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: var(--ink-muted);
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg);
  color: var(--ink);
  font: inherit;
  padding: 11px 12px;
  transition: border-color 160ms ease, outline 160ms ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid rgba(215, 134, 27, 0.22);
  border-color: var(--accent);
}

.form-status {
  margin-top: 14px;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 0.84rem;
  display: none;
}

.form-status[data-state="success"] {
  display: block;
  background: #ecf8ef;
  border: 1px solid #b7dfc1;
  color: #245731;
}

.form-status[data-state="error"] {
  display: block;
  background: #fff1f1;
  border: 1px solid #f0bcbc;
  color: #7e1f1f;
}

/* ─── Media / misc ───────────────────────────────────────── */

.media-wall {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  background: var(--bg-dark);
}

.media-wall img {
  width: 100%;
  min-height: 430px;
  max-height: 680px;
  object-fit: cover;
}

.matrix {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow-md);
}

.matrix th, .matrix td {
  border: 1px solid var(--line);
  padding: 12px;
  vertical-align: top;
  text-align: left;
}

.matrix th {
  background: var(--surface-tint);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-muted);
}

.matrix td {
  font-size: 0.88rem;
  color: var(--ink);
}

/* ─── Footer ─────────────────────────────────────────────── */

.site-footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--bg-dark-border);
  padding: 40px 0 48px;
  color: var(--ink-light-soft);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-brand strong {
  letter-spacing: 0.13em;
  color: var(--ink-light);
}

.footer-brand small {
  display: block;
  margin-top: 4px;
  color: var(--ink-light-muted);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--ink-light-muted);
  font-size: 0.8rem;
  font-weight: 600;
  transition: color 160ms ease;
}

.footer-links a:hover { color: var(--ink-light); }

/* ─── Reveal animation ───────────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(14px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 400ms ease, transform 400ms ease;
}

/* ─── Responsive ─────────────────────────────────────────── */

@media (max-width: 1120px) {
  .hero-grid,
  .grid-4,
  .grid-3,
  .grid-2,
  .split-band,
  .contact-wrap,
  .field-grid,
  .story-row,
  .story-row.reverse,
  .stat-line,
  .tab-layout,
  .tab-panel,
  .outcome-strip,
  .process-steps {
    grid-template-columns: 1fr;
  }

  .impact-bar-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .impact-stat {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .impact-stat:nth-child(2n) { border-right: none; }
  .impact-stat:nth-child(3),
  .impact-stat:nth-child(4) { border-bottom: none; }

  .nav-links, .nav-cta { display: none; }
  .mobile-toggle { display: inline-flex; }

  .hero-main, .hero-side { padding: 24px; }

  .hero-title { max-width: 20ch; }

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-carousel { min-height: 580px; }

  .carousel-content {
    left: 28px;
    right: 28px;
    bottom: 72px;
    max-width: 100%;
  }

  .process-steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .page-hero-dark { padding: 72px 0 48px; }
  .page-hero      { padding: 60px 0 28px; }

  .brand-sub { display: none; }
  .brand-logo { width: 60px; height: 20px; }

  .section { padding: 64px 0; }

  .impact-bar-inner { grid-template-columns: repeat(2, 1fr); }

  .hero-carousel {
    min-height: 520px;
    border-radius: 20px;
  }

  .carousel-controls {
    right: 14px;
    bottom: 14px;
    padding: 5px;
  }

  .carousel-btn { width: 30px; height: 30px; }

  .story-media { min-height: 280px; }

  .process-steps { grid-template-columns: 1fr; }

  .outcome-strip { border-radius: var(--radius-lg); }
}

/* ─── Newsletter modal ───────────────────────────────────── */

.nl-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(11, 15, 26, 0.72);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 320ms ease;
}

.nl-overlay.nl-visible {
  opacity: 1;
}

.nl-overlay[hidden] {
  display: none;
}

.nl-card {
  position: relative;
  background: var(--bg-dark-card);
  border: 1px solid var(--bg-dark-border);
  border-top: 2px solid var(--accent);
  border-radius: var(--radius-xl);
  padding: 40px 36px 32px;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 32px 80px rgba(10, 14, 28, 0.5);
  transform: translateY(16px);
  transition: transform 320ms ease;
}

.nl-overlay.nl-visible .nl-card {
  transform: translateY(0);
}

.nl-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--bg-dark-border);
  background: transparent;
  color: var(--ink-light-muted);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 160ms ease, border-color 160ms ease;
}

.nl-close:hover {
  color: var(--ink-light);
  border-color: rgba(255, 255, 255, 0.2);
}

.nl-heading {
  margin-top: 12px;
  font-size: var(--step-2);
  color: var(--ink-light);
}

.nl-sub {
  margin-top: 10px;
  color: var(--ink-light-soft);
  font-size: 0.9rem;
  line-height: 1.6;
}

.nl-fields {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.nl-fields input {
  width: 100%;
  border: 1px solid var(--bg-dark-border);
  border-radius: var(--radius-md);
  background: var(--bg-dark-lift);
  color: var(--ink-light);
  font: inherit;
  font-size: 0.95rem;
  padding: 11px 14px;
  transition: border-color 160ms ease;
}

.nl-fields input::placeholder {
  color: var(--ink-light-muted);
}

.nl-fields input:focus {
  outline: 2px solid rgba(215, 134, 27, 0.3);
  border-color: var(--accent);
}

.nl-btn {
  width: 100%;
  margin-top: 12px;
  padding: 14px;
  font-size: 0.8rem;
}

.nl-status {
  margin-top: 10px;
  font-size: 0.82rem;
  min-height: 20px;
  color: var(--ink-light-soft);
}

.nl-status.nl-ok  { color: #6fcf97; }
.nl-status.nl-err { color: #eb5757; }

.nl-note {
  margin-top: 14px;
  font-size: 0.72rem;
  color: var(--ink-light-muted);
  text-align: center;
}

@media (max-width: 760px) {
  .nl-card {
    padding: 32px 22px 24px;
  }
}
