/* ============================================================
   GEET CONSULT — Design System
   Primary rose #b66f79 · Secondary teal #53c3be · Accent navy #161746
   Type: Spectral (display serif) · Hanken Grotesk (UI/body)
         Spline Sans Mono (technical labels)
   ============================================================ */

:root {
  /* Deep TEAL structure (brand secondary #53c3be) — dominant: dark bg, buttons, interactive */
  --forest-950: #07302d;
  --forest-900: #0b3b36;
  --forest-850: #0f463f;
  --forest-800: #13534a;
  --forest-700: #1a6b60;
  --forest-600: #1f7d71;
  --forest-500: #53c3be;
  --sage-400:  #53c3be;
  --sage-300:  #8ad6d1;
  --sage-200:  #c2e9e5;

  /* Navy — second: headings, contrast bands */
  --navy-950: #0c0d28;
  --navy-900: #161746;
  --navy-800: #232563;
  --navy-700: #2c2e74;

  /* Brand brights — dominant teal */
  --brand-teal: #53c3be;
  --brand-teal-bright: #53c3be;
  --brand-rose: #b66f79;

  /* Warm neutrals */
  --cream:     #f5f1ea;
  --paper:     #fbf8f3;
  --sand-100:  #ece6db;
  --sand-200:  #e3dccd;
  --sand-300:  #d3c8b6;

  /* Ink */
  --ink-900:   #16201f;
  --ink-700:   #2f3a38;
  --ink-600:   #424b48;
  --ink-500:   #59635f;
  --ink-400:   #818a86;

  /* Accent — primary dusty rose */
  --gold-600:  #a25c66;
  --gold-500:  #b66f79;
  --gold-300:  #d8a9af;

  /* Tokens */
  --maxw: 1280px;
  --gutter: clamp(20px, 5vw, 72px);
  --radius-s: 6px;
  --radius-m: 14px;
  --radius-l: 26px;
  --shadow-s: 0 1px 2px rgba(12,13,40,.05), 0 4px 14px rgba(12,13,40,.06);
  --shadow-m: 0 8px 24px rgba(12,13,40,.1), 0 2px 6px rgba(12,13,40,.06);
  --shadow-l: 0 30px 70px rgba(12,13,40,.18), 0 8px 22px rgba(12,13,40,.1);
  --ease: cubic-bezier(.22,.61,.36,1);

  --ff-serif: "Spectral", Georgia, serif;
  --ff-sans: "Hanken Grotesk", system-ui, -apple-system, sans-serif;
  --ff-mono: "Spline Sans Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body {
  margin: 0;
  font-family: var(--ff-sans);
  color: var(--ink-900);
  background: var(--cream);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--forest-700); color: var(--paper); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--ff-serif); font-weight: 500; letter-spacing: -.01em; line-height: 1.06; margin: 0; color: var(--navy-900); }
.display {
  font-size: clamp(2.4rem, 8vw, 6.4rem);
  font-weight: 500;
  letter-spacing: -.025em;
  line-height: 1.05;
}
.h2 { font-size: clamp(1.9rem, 5vw, 3.4rem); letter-spacing: -.02em; }
.h3 { font-size: clamp(1.3rem, 3vw, 1.9rem); }
.lead { font-size: clamp(1.12rem, 1.5vw, 1.34rem); line-height: 1.55; color: var(--ink-700); font-weight: 400; }
p { text-wrap: pretty; }

.eyebrow {
  font-family: var(--ff-mono);
  font-size: .72rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--forest-600);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: .7em;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--forest-600);
  display: inline-block;
}
.eyebrow.no-rule::before { display: none; }
.serif-accent { font-family: var(--ff-serif); font-style: italic; font-weight: 400; }

/* ---------- Layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(56px, 11vw, 150px); }
.section-sm { padding-block: clamp(40px, 7vw, 96px); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .6em;
  font-family: var(--ff-sans); font-weight: 600; font-size: .95rem;
  padding: 1em 1.6em; border-radius: 100px; border: 1px solid transparent;
  cursor: pointer; transition: all .35s var(--ease); letter-spacing: .005em;
  position: relative;
}
.btn .arrow { transition: transform .35s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }
.btn-primary { background: var(--forest-700); color: var(--paper); }
.btn-primary:hover { background: var(--forest-900); box-shadow: var(--shadow-m); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--forest-900); border-color: var(--sand-300); }
.btn-ghost:hover { border-color: var(--forest-700); background: rgba(44,46,116,.05); }
.btn-light { background: var(--paper); color: var(--forest-900); }
.btn-light:hover { background: var(--cream); transform: translateY(-1px); box-shadow: var(--shadow-m); }
.btn-on-dark { background: transparent; color: var(--cream); border-color: rgba(246,241,232,.28); }
.btn-on-dark:hover { border-color: var(--sage-300); background: rgba(246,241,232,.07); }

.link-arrow { display: inline-flex; align-items: center; gap: .5em; font-weight: 600; color: var(--forest-700); }
.link-arrow .arrow { transition: transform .35s var(--ease); }
.link-arrow:hover .arrow { transform: translateX(4px); }
.link-arrow::after { content: ""; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--gutter);
  transition: background .4s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(251,248,241,.86);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  padding-block: 12px;
  border-bottom-color: var(--sand-200);
}
.brand { display: flex; align-items: center; gap: 13px; z-index: 2; }
.brand .mark {
  width: 70px; height: 58px; border-radius: 14px; flex: none;
  background: var(--paper); padding: 6px 8px;
  display: grid; place-items: center; overflow: hidden;
  box-shadow: 0 1px 3px rgba(6,35,34,.12), 0 0 0 1px rgba(6,35,34,.04);
  transition: transform .4s var(--ease);
}
.brand .mark img { width: 100%; height: 100%; object-fit: contain; display: block; }
.brand:hover .mark { transform: rotate(-5deg) scale(1.04); }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text b { font-family: var(--ff-serif); font-weight: 600; font-size: 1.18rem; color: var(--forest-900); letter-spacing: .01em; }
.brand-text span { font-family: var(--ff-mono); font-size: .56rem; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-500); margin-top: 2px; }
.site-header:not(.scrolled).on-dark .brand-text b { color: var(--paper); }
.site-header:not(.scrolled).on-dark .brand-text span { color: var(--sage-300); }
.site-header:not(.scrolled).on-dark .nav a { color: rgba(246,241,232,.82); }
.site-header:not(.scrolled).on-dark .nav a:hover { color: var(--paper); }
.site-header:not(.scrolled).on-dark .nav-cta { color: var(--paper); border-color: rgba(246,241,232,.3); }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  font-size: .92rem; font-weight: 500; color: var(--ink-700);
  padding: 9px 15px; border-radius: 100px; position: relative;
  transition: color .25s var(--ease), background .25s var(--ease);
}
.nav a:hover { color: var(--forest-800); background: rgba(44,46,116,.07); }
.nav a.active { color: var(--forest-800); }
.nav a.active::after {
  content: ""; position: absolute; left: 15px; right: 15px; bottom: 3px;
  height: 2px; border-radius: 2px; background: var(--forest-600);
}
.nav-cta {
  margin-left: 10px; padding: 10px 20px; border: 1px solid var(--forest-700);
  border-radius: 100px; color: var(--forest-800); font-weight: 600; font-size: .9rem; white-space: nowrap;
  transition: all .3s var(--ease);
}
.nav-cta:hover { background: var(--forest-700); color: var(--paper) !important; }

.burger { display: none; background: none; border: 0; cursor: pointer; width: 42px; height: 42px; border-radius: 10px; }
.burger span { display: block; width: 22px; height: 2px; background: currentColor; margin: 5px auto; transition: transform .3s var(--ease), opacity .3s var(--ease); }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 940px) {
  .nav { position: fixed; inset: 0; flex-direction: column; justify-content: center; gap: 6px;
    background: var(--forest-900); transform: translateY(-100%); transition: transform .5s var(--ease); z-index: 1; }
  .nav.open { transform: translateY(0); }
  .nav a { color: var(--cream); font-family: var(--ff-serif); font-size: 1.8rem; padding: 12px 24px; }
  .nav a:hover { background: transparent; color: var(--sage-300); }
  .nav .nav-cta { margin-top: 18px; border-color: var(--sage-300); color: var(--cream); }
  .burger { display: block; z-index: 2; color: var(--forest-900); }
  .site-header:not(.scrolled).on-dark .burger { color: var(--paper); }
  .nav.open ~ .burger { color: var(--cream); position: fixed; right: var(--gutter); }
}

/* ---------- Footer ---------- */
.site-footer { background: var(--forest-950); color: var(--sage-200); padding-block: 0 36px; position: relative; }
.site-footer > .wrap { padding-top: clamp(64px, 9vw, 110px); }

/* Wavy top divider */
.footer-wave { position: absolute; top: 0; left: 0; width: 100%; height: clamp(40px,6vw,90px); transform: translateY(-99%); display: block; line-height: 0; }
.footer-wave svg { width: 100%; height: 100%; display: block; }
.footer-wave svg path { fill: var(--forest-950); }

/* Footer hero button must override generic .site-footer a color */
.footer-hero-actions .btn-light { color: var(--forest-900); }
.footer-hero-actions .btn-light:hover { color: var(--forest-900); }

/* Hero footer — brand sign-off band */
.footer-hero { position: relative; overflow: hidden; padding-bottom: clamp(8px,2vw,20px); }
.footer-hero-inner { position: relative; z-index: 1; }
.footer-hero .eyebrow { color: var(--sage-300); }
.footer-hero-title { font-family: var(--ff-serif); font-weight: 500; font-size: clamp(2.6rem,7vw,5.4rem);
  line-height: .98; letter-spacing: -.025em; color: var(--paper); margin: 22px 0 0; max-width: 15ch; }
.footer-hero-title .accent { color: var(--sage-300); font-style: italic; font-weight: 400; }
.footer-hero-actions { display: flex; align-items: center; gap: clamp(18px,3vw,32px); margin-top: clamp(28px,4vw,40px); flex-wrap: wrap; }
.footer-hero-email { font-family: var(--ff-serif); font-size: clamp(1.05rem,1.6vw,1.32rem); color: var(--sage-200);
  border-bottom: 1px solid rgba(194,211,200,.32); padding-bottom: 3px; transition: color .25s, border-color .25s; }
.footer-hero-email:hover { color: var(--paper); border-color: var(--paper); }
.footer-hero-watermark { position: absolute; right: -3%; top: 50%; transform: translateY(-50%);
  width: min(38vw,460px); opacity: .08; z-index: 0; pointer-events: none; }
.footer-hero-rule { border: 0; height: 1px; background: rgba(194,211,200,.16); margin: clamp(40px,5vw,64px) 0; }
@media (max-width: 600px) { .footer-hero-watermark { display: none; } }
.footer-logo { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.footer-logo .mark { width: 150px; height: 124px; border-radius: 22px; flex: none; background: var(--paper); padding: 13px; display: grid; place-items: center; overflow: hidden; }
.footer-logo .mark img { width: 100%; height: 100%; object-fit: contain; }
.footer-logo b { font-family: var(--ff-serif); color: var(--paper); font-size: 1.5rem; font-weight: 600; }
.site-footer a { color: var(--sage-200); transition: color .25s; }
.site-footer a:hover { color: var(--paper); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 48px; }
.footer-grid h5 { font-family: var(--ff-mono); font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--sage-400); margin: 0 0 20px; font-weight: 500; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.footer-grid .lead { color: var(--sage-200); max-width: 32ch; }
.footer-brand b { font-family: var(--ff-serif); color: var(--paper); font-size: 1.5rem; font-weight: 600; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap;
  margin-top: 64px; padding-top: 28px; border-top: 1px solid rgba(194,211,200,.16); font-size: .85rem; color: var(--sage-400); }
.footer-contact-line { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; color: var(--sage-200); }
.footer-contact-line svg { flex: none; margin-top: 3px; opacity: .7; }
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
.reveal[data-delay="5"] { transition-delay: .40s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Reusable bits ---------- */
.tag {
  display: inline-flex; align-items: center; gap: .5em;
  font-family: var(--ff-mono); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--forest-600); background: rgba(44,46,116,.07);
  padding: .5em .85em; border-radius: 100px;
}
.divider { height: 1px; background: var(--sand-200); border: 0; margin: 0; }

/* Striped placeholder for imagery the user supplies later */
.ph {
  position: relative; overflow: hidden; background: var(--sand-100);
  background-image: repeating-linear-gradient(135deg, transparent 0 11px, rgba(44,46,116,.06) 11px 12px);
  display: grid; place-items: center; color: var(--forest-600);
}
.ph .ph-label { font-family: var(--ff-mono); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; opacity: .75; }

/* image-slot theming */
image-slot { --is-bg: var(--sand-100); border-radius: var(--radius-m); }

/* ---------- Inner page hero ---------- */
.page-hero {
  position: relative; overflow: hidden; isolation: isolate;
  background: radial-gradient(120% 130% at 78% -10%, var(--forest-800), var(--forest-900) 48%, var(--forest-950));
  color: var(--cream); padding: clamp(120px, 16vh, 230px) 0 clamp(48px, 9vw, 110px);
}
.page-hero .eyebrow { color: var(--sage-300); }
.page-hero h1 { color: var(--cream); margin-top: 22px; }
.page-hero .lead { color: rgba(246,241,232,.74); max-width: 56ch; margin-top: 24px; }
.page-hero-topo { position: absolute; inset: 0; z-index: -1; opacity: .1; }
.page-hero-aurora { position: absolute; border-radius: 50%; filter: blur(80px); z-index: -1; opacity: .4; mix-blend-mode: screen; }
.page-hero-aurora.p1 { width: 40vw; height: 40vw; right: -6%; top: -18%; background: radial-gradient(circle, var(--forest-500), transparent 68%); }
.page-hero-aurora.p2 { width: 26vw; height: 26vw; left: 12%; bottom: -20%; background: radial-gradient(circle, var(--sage-400), transparent 70%); opacity: .26; }
.crumb { font-family: var(--ff-mono); font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--sage-400); display: flex; gap: .6em; align-items: center; }
.crumb a:hover { color: var(--paper); }
.crumb .sep { opacity: .5; }

/* ---------- Process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 56px; counter-reset: step; }
.step { position: relative; padding: 34px 28px 30px 0; border-top: 2px solid var(--sand-300); }
.step::before {
  counter-increment: step; content: "0" counter(step);
  font-family: var(--ff-mono); font-size: .8rem; letter-spacing: .1em; color: var(--gold-600);
  position: absolute; top: -2px; left: 0; padding-top: 16px;
}
.step::after { content: ""; position: absolute; top: -2px; left: 0; width: 38px; height: 2px; background: var(--forest-700); }
.step h3 { font-size: 1.25rem; margin: 40px 0 10px; }
.step p { color: var(--ink-500); font-size: .92rem; margin: 0; }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr 1fr; gap: 8px 26px; } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }

/* ---------- Detailed service rows ---------- */
.svc-row { display: grid; grid-template-columns: 64px 1fr 1.1fr; gap: clamp(20px,4vw,56px); align-items: start; padding: clamp(34px,5vw,56px) 0; border-top: 1px solid var(--sand-200); }
.svc-row:last-child { border-bottom: 1px solid var(--sand-200); }
.svc-row .num { font-family: var(--ff-mono); font-size: .9rem; color: var(--gold-600); padding-top: 8px; letter-spacing: .08em; }
.svc-row h3 { font-size: clamp(1.5rem, 2.4vw, 2.1rem); }
.svc-row .svc-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.svc-row p { color: var(--ink-600); margin: 0; }
.svc-row ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.svc-row li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink-700); font-size: .98rem; }
.svc-row li::before { content: ""; flex: none; width: 7px; height: 7px; margin-top: 8px; border-radius: 2px; background: var(--forest-600); transform: rotate(45deg); }
@media (max-width: 820px) { .svc-row { grid-template-columns: 1fr; gap: 18px; } .svc-row .num { padding-top: 0; } }

/* ---------- Project rows (portfolio) ---------- */
.proj { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px,5vw,72px); align-items: center; padding: clamp(40px,7vw,90px) 0; }
.proj:nth-child(even) .proj-media { order: 2; }
.proj-media { position: relative; border-radius: var(--radius-l); overflow: hidden; box-shadow: var(--shadow-m); aspect-ratio: 4/3; background: var(--sand-100); }
.proj-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.proj-media:hover img { transform: scale(1.05); }
.proj-media .stamp { position: absolute; left: 18px; top: 18px; z-index: 2; }
.proj-yr { font-family: var(--ff-mono); font-size: .74rem; letter-spacing: .14em; color: var(--gold-600); text-transform: uppercase; }
.proj h2 { font-size: clamp(1.8rem,3.2vw,2.7rem); margin: 14px 0 0; }
.proj .lead { margin-top: 18px; }
.proj-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.proj-stats { display: flex; gap: 38px; margin-top: 30px; flex-wrap: wrap; }
.proj-stats .stat-num { font-size: 2rem; }
@media (max-width: 800px) { .proj { grid-template-columns: 1fr; } .proj:nth-child(even) .proj-media { order: 0; } }

/* ---------- Gallery masonry ---------- */
.gal-filters { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 36px; }
.gal-filter { font-family: var(--ff-sans); font-size: .88rem; font-weight: 500; padding: 9px 18px; border-radius: 100px; border: 1px solid var(--sand-300); background: transparent; color: var(--ink-700); cursor: pointer; transition: all .25s var(--ease); }
.gal-filter:hover { border-color: var(--forest-600); }
.gal-filter.active { background: var(--forest-700); color: var(--paper); border-color: var(--forest-700); }
.masonry { columns: 3; column-gap: 18px; margin-top: 44px; }
.masonry .cell { break-inside: avoid; margin-bottom: 18px; border-radius: var(--radius-m); overflow: hidden; position: relative; background: var(--sand-100); box-shadow: var(--shadow-s); transition: transform .4s var(--ease); display: block; }
.masonry .cell img { width: 100%; display: block; transition: transform .8s var(--ease), filter .5s; filter: saturate(.95); }
.masonry .cell:hover { transform: translateY(-3px); }
.masonry .cell:hover img { transform: scale(1.05); filter: saturate(1.08); }
.masonry .cell .cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 16px 16px 14px; color: var(--paper); font-size: .82rem; font-weight: 500;
  background: linear-gradient(180deg, transparent, rgba(12,13,40,.82)); opacity: 0; transform: translateY(8px); transition: .35s var(--ease); }
.masonry .cell:hover .cap { opacity: 1; transform: none; }
.masonry .cell .cap small { display: block; font-family: var(--ff-mono); font-size: .64rem; letter-spacing: .12em; text-transform: uppercase; color: var(--sage-300); margin-bottom: 3px; }
.cell.hide { display: none; }
@media (max-width: 900px) { .masonry { columns: 2; } }
@media (max-width: 560px) { .masonry { columns: 1; } }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,6vw,80px); align-items: start; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; gap: 48px; } }
.field { margin-bottom: 22px; }
.field label { display: block; font-family: var(--ff-mono); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-500); margin-bottom: 9px; }
.field input, .field textarea, .field select {
  width: 100%; font-family: var(--ff-sans); font-size: 1rem; color: var(--ink-900);
  padding: 14px 16px; border: 1px solid var(--sand-300); border-radius: var(--radius-s);
  background: var(--paper); transition: border-color .25s, box-shadow .25s; resize: vertical;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--forest-600); box-shadow: 0 0 0 3px rgba(44,46,116,.12); }
.field.invalid input, .field.invalid textarea { border-color: #b3261e; box-shadow: 0 0 0 3px rgba(179,38,30,.08); }
.field .err-msg { display: none; color: #b3261e; font-size: .82rem; margin-top: 6px; }
.field.invalid .err-msg { display: block; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }
.contact-card { background: var(--forest-900); color: var(--sage-200); border-radius: var(--radius-l); padding: clamp(28px,4vw,42px); }
.contact-card h3 { color: var(--cream); }
.contact-item { display: flex; gap: 16px; align-items: flex-start; padding: 20px 0; border-top: 1px solid rgba(194,211,200,.16); }
.contact-item:first-of-type { border-top: 0; }
.contact-item .ic { flex: none; width: 42px; height: 42px; border-radius: 11px; background: rgba(194,211,200,.1); display: grid; place-items: center; color: var(--sage-300); }
.contact-item .lbl { font-family: var(--ff-mono); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--sage-400); margin-bottom: 4px; }
.contact-item .val { color: var(--cream); font-size: 1.02rem; }
.form-success { display: none; padding: 18px 20px; border-radius: var(--radius-m); background: rgba(83,195,190,.12); border: 1px solid var(--forest-500); color: var(--forest-800); font-weight: 500; margin-top: 8px; }
.form-success.show { display: block; }

/* ---------- Values / acronym ---------- */
.acro { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--sand-200); border: 1px solid var(--sand-200); border-radius: var(--radius-l); overflow: hidden; margin-top: 54px; }
.acro-cell { background: var(--paper); padding: 36px 30px 32px; transition: background .4s var(--ease); }
.acro-cell:hover { background: var(--cream); }
.acro-cell .big { font-family: var(--ff-serif); font-size: 3.4rem; line-height: 1; color: var(--forest-700); font-weight: 600; }
.acro-cell h3 { font-size: 1.2rem; margin: 16px 0 8px; }
.acro-cell p { color: var(--ink-500); font-size: .92rem; margin: 0; }
@media (max-width: 760px) { .acro { grid-template-columns: 1fr 1fr; } }
@media (max-width: 420px) { .acro { grid-template-columns: 1fr; } }

/* ---------- Team ---------- */
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; margin-top: 50px; }
.team-card { background: var(--paper); border: 1px solid var(--sand-200); border-radius: var(--radius-l); overflow: hidden; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-m); }
.team-card .photo { aspect-ratio: 1/1; background: var(--sand-100); position: relative; overflow: hidden; }
.team-card .photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card .photo image-slot { width: 100%; height: 100%; display: block; }
.team-card .bio { padding: 22px 24px 26px; }
.team-card .nm { font-family: var(--ff-serif); font-size: 1.2rem; font-weight: 600; color: var(--forest-900); }
.team-card .rl { font-family: var(--ff-mono); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-600); margin-top: 4px; }
.team-card p { color: var(--ink-500); font-size: .92rem; margin: 14px 0 0; }
@media (max-width: 820px) { .team-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .team-grid { grid-template-columns: 1fr; } }

/* ---------- Split feature (about) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,6vw,84px); align-items: center; }
.split-media { border-radius: var(--radius-l); overflow: hidden; box-shadow: var(--shadow-m); aspect-ratio: 5/4; }
.split-media img, .split-media image-slot { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 820px) { .split { grid-template-columns: 1fr; gap: 40px; } }

/* Number ticker */
.stat-num { font-family: var(--ff-serif); font-weight: 500; font-size: clamp(2.6rem, 4.5vw, 4rem); line-height: 1; color: var(--forest-800); letter-spacing: -.02em; }
.stat-label { font-family: var(--ff-mono); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-500); margin-top: 10px; }

/* ============================================================
   INSIGHTS — listing + article
   ============================================================ */

/* Featured insight */
.ins-featured { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px,4vw,56px); align-items: center;
  background: var(--paper); border: 1px solid var(--sand-200); border-radius: var(--radius-l); overflow: hidden; box-shadow: var(--shadow-m); }
.ins-featured .media { position: relative; min-height: 340px; overflow: hidden; background: var(--sand-100); }
.ins-featured .media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.ins-featured:hover .media img { transform: scale(1.04); }
.ins-featured .media .flag { position: absolute; left: 18px; top: 18px; z-index: 2; }
.ins-featured .body { padding: clamp(28px,3.5vw,52px) clamp(28px,3.5vw,52px) clamp(28px,3.5vw,52px) 0; }
.ins-featured h2 { font-size: clamp(1.7rem,2.8vw,2.5rem); margin: 16px 0 0; letter-spacing: -.015em; }
.ins-featured p { color: var(--ink-600); margin: 16px 0 0; max-width: 50ch; }
@media (max-width: 820px) { .ins-featured { grid-template-columns: 1fr; } .ins-featured .body { padding: 0 28px 32px; } .ins-featured .media { min-height: 0; aspect-ratio: 16/10; } }

/* Insight meta row */
.ins-meta { display: flex; align-items: center; gap: 14px; font-family: var(--ff-mono); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-400); flex-wrap: wrap; }
.ins-meta > span { white-space: nowrap; }
.ins-meta .cat { color: var(--forest-600); font-weight: 500; }
.ins-meta .sep { width: 4px; height: 4px; border-radius: 50%; background: var(--sand-300); }

/* Grid */
.ins-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 44px; }
.ins-card { display: flex; flex-direction: column; background: var(--paper); border: 1px solid var(--sand-200);
  border-radius: var(--radius-l); overflow: hidden; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.ins-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-m); }
.ins-card .media { aspect-ratio: 16/10; overflow: hidden; background: var(--sand-100); position: relative; }
.ins-card .media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.ins-card:hover .media img { transform: scale(1.05); }
.ins-card .body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.ins-card h3 { font-size: 1.28rem; margin: 14px 0 0; line-height: 1.2; }
.ins-card p { color: var(--ink-500); font-size: .92rem; margin: 12px 0 0; }
.ins-card .read { margin-top: auto; padding-top: 20px; display: inline-flex; align-items: center; gap: .5em; font-weight: 600; font-size: .9rem; color: var(--forest-600); }
.ins-card .read .arrow { transition: transform .35s var(--ease); }
.ins-card:hover .read .arrow { transform: translateX(4px); }
.ins-card.hide { display: none; }
@media (max-width: 900px) { .ins-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .ins-grid { grid-template-columns: 1fr; } }

/* ---------- Article ---------- */
.article-hero { position: relative; background: var(--paper); padding: clamp(150px,19vh,220px) 0 clamp(36px,5vw,60px); border-bottom: 1px solid var(--sand-200); }
.article-hero .wrap { max-width: 880px; }
.article-hero h1 { font-size: clamp(2.1rem,4.4vw,3.7rem); margin: 18px 0 0; letter-spacing: -.02em; line-height: 1.04; }
.article-hero .standfirst { font-family: var(--ff-serif); font-size: clamp(1.2rem,1.8vw,1.5rem); line-height: 1.45; color: var(--ink-600); margin: 24px 0 0; font-style: italic; }
.article-byline { display: flex; align-items: center; gap: 14px; margin-top: 30px; }
.article-byline .av { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; background: var(--sand-200); flex: none; }
.article-byline .nm { font-weight: 600; color: var(--navy-900); font-size: .98rem; }
.article-byline .rl { font-family: var(--ff-mono); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-400); margin-top: 2px; }
.article-cover { max-width: 1080px; margin: clamp(32px,4vw,52px) auto 0; padding-inline: var(--gutter); }
.article-cover .frame { border-radius: var(--radius-l); overflow: hidden; box-shadow: var(--shadow-m); aspect-ratio: 16/8; background: var(--sand-100); }
.article-cover img { width: 100%; height: 100%; object-fit: cover; }

.prose { max-width: 720px; margin: 0 auto; padding-inline: var(--gutter); }
.prose > * + * { margin-top: 26px; }
.prose p { font-size: 1.14rem; line-height: 1.7; color: var(--ink-700); }
.prose p .lead-in { font-family: var(--ff-serif); }
.prose h2 { font-size: clamp(1.5rem,2.4vw,2rem); margin-top: 52px; color: var(--navy-900); }
.prose h3 { font-size: 1.3rem; margin-top: 40px; color: var(--navy-900); }
.prose a { color: var(--forest-600); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--sage-300); }
.prose a:hover { text-decoration-color: var(--forest-600); }
.prose ul, .prose ol { padding-left: 0; list-style: none; display: grid; gap: 14px; }
.prose ul li { display: flex; gap: 14px; align-items: flex-start; font-size: 1.1rem; line-height: 1.6; color: var(--ink-700); }
.prose ul li::before { content: ""; flex: none; width: 8px; height: 8px; margin-top: 9px; border-radius: 2px; background: var(--forest-500); transform: rotate(45deg); }
.prose ol { counter-reset: li; }
.prose ol li { counter-increment: li; display: flex; gap: 16px; font-size: 1.1rem; line-height: 1.6; color: var(--ink-700); }
.prose ol li::before { content: counter(li,decimal-leading-zero); font-family: var(--ff-mono); font-size: .8rem; color: var(--forest-600); padding-top: 5px; }
.pullquote { margin: 48px auto; padding: 8px 0 8px 30px; border-left: 3px solid var(--brand-rose);
  font-family: var(--ff-serif); font-size: clamp(1.4rem,2.2vw,1.85rem); line-height: 1.32; color: var(--navy-900); font-style: italic; }
.prose figure { margin: 44px 0; }
.prose figure img { border-radius: var(--radius-m); width: 100%; box-shadow: var(--shadow-s); }
.prose figcaption { font-family: var(--ff-mono); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-400); margin-top: 12px; text-align: center; }
.article-divider { max-width: 720px; margin: 56px auto 0; padding-inline: var(--gutter); }
.article-divider hr { border: 0; height: 1px; background: var(--sand-200); }

/* Author card */
.author-card { max-width: 720px; margin: 44px auto 0; padding: 28px; padding-inline: clamp(28px,4vw,32px); display: flex; gap: 22px; align-items: center;
  background: var(--cream); border: 1px solid var(--sand-200); border-radius: var(--radius-l); }
.author-card .av { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; flex: none; background: var(--sand-200); }
.author-card .nm { font-family: var(--ff-serif); font-size: 1.2rem; font-weight: 600; color: var(--navy-900); }
.author-card .rl { font-family: var(--ff-mono); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--forest-600); margin-top: 3px; }
.author-card p { color: var(--ink-500); font-size: .92rem; margin-top: 10px; }
@media (max-width: 520px) { .author-card { flex-direction: column; text-align: center; align-items: center; } }

