
:root {
  --cream: #F4EFE6;
  --cream-dark: #EAE3D6;
  --cream-mid: #EFE9DC;
  --brown: #3D2210;
  --brown-mid: #6B3A1F;
  --brown-light: #9B6B47;
  --gold: #C4963A;
  --gold-light: #D4AA5A;
  --text: #2A1508;
  --text-mid: #6B4530;
  --text-light: #9B7055;
  --white: #FAF7F2;
  color-scheme: light only;
}

@media (prefers-color-scheme: dark) {
  :root { --cream: #F4EFE6; --brown: #3D2210; --text: #2A1508; }
  body { background: #F4EFE6 !important; color: #2A1508 !important; }
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── NOISE TEXTURE OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.5;
}

/* ── NAVIGATION ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  background: var(--cream);
  border-bottom: 1px solid rgba(61,34,16,0.1);
  transition: all 0.4s;
}
nav.scrolled {
  background: rgba(244,239,230,0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(61,34,16,0.08);
}
nav::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
nav.scrolled::after { opacity: 1; }

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--brown);
  text-decoration: none;
  cursor: pointer;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.2s;
  cursor: pointer;
  font-weight: 400;
}
.nav-links a:hover { color: var(--brown); }
.nav-links .nav-li {
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  padding: 7px 18px;
  letter-spacing: 0.1em;
  transition: all 0.2s !important;
}
.nav-links .nav-li:hover { background: var(--gold); color: var(--cream) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.hamburger span {
  width: 22px; height: 1px;
  background: var(--brown);
  display: block;
  transition: all 0.3s;
}

/* ── PAGES ── */
.page { display: none; padding-top: 72px; min-height: 100vh; }
.page.active { display: block; }

/* ── HOME HERO ── */
.home-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 72px);
  background: var(--cream);
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 80px 72px;
  position: relative;
}
.hero-left::after {
  content: '';
  position: absolute;
  right: 0; top: 15%; bottom: 15%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}

.hero-kicker {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 400;
  white-space: nowrap;
  flex-wrap: nowrap;
}
.hero-kicker::before {
  content: '';
  display: block;
  width: 48px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.6rem, 5.5vw, 6.4rem);
  font-weight: 300;
  line-height: 0.95;
  color: var(--brown);
  margin-bottom: 40px;
  letter-spacing: -0.02em;
}
.hero-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--brown-mid);
}
.hero-title .line { display: block; }

.hero-sub {
  font-size: 0.95rem;
  color: var(--text-light);
  max-width: 440px;
  line-height: 1.85;
  margin-bottom: 52px;
  font-weight: 300;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  align-items: center;
}

.btn-primary {
  background: var(--brown);
  color: var(--cream);
  padding: 13px 32px;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid var(--brown);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.25s;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
}
.btn-primary:hover { background: transparent; color: var(--brown); }

.btn-ghost {
  border: 1px solid rgba(61,34,16,0.3);
  color: var(--text-mid);
  padding: 13px 32px;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.25s;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
}
.btn-ghost:hover { border-color: var(--brown); color: var(--brown); }

.hero-right {
  position: relative;
  overflow: hidden;
}
.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  filter: sepia(8%) saturate(90%);
}
.hero-right::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(244,239,230,0.15) 0%, transparent 30%),
              linear-gradient(to top, rgba(61,34,16,0.25) 0%, transparent 50%);
}

/* ── MARQUEE STATS ── */
.marquee-stats {
  border-top: 1px solid rgba(61,34,16,0.1);
  border-bottom: 1px solid rgba(61,34,16,0.1);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--cream);
}
.mstat {
  padding: 52px 48px;
  border-right: 1px solid rgba(61,34,16,0.1);
  cursor: pointer;
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
}
.mstat:last-child { border-right: none; }
.mstat::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.mstat:hover::before { transform: scaleX(1); }
.mstat:hover { background: var(--cream-dark); }
.mstat-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.8rem;
  font-weight: 300;
  color: var(--brown);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.mstat-l {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  font-weight: 400;
}
.mstat-d {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.6;
  max-width: 220px;
}

/* ── FEATURE SECTION ── */
.feature-section {
  padding: 120px 72px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}
.feature-header {}
.feature-kicker {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 400;
}
.feature-kicker::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--gold);
  display: block;
}
.feature-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 3vw, 3.4rem);
  font-weight: 400;
  color: var(--brown);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.feature-title em { font-style: italic; color: var(--brown-mid); }

.feature-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(61,34,16,0.08);
}
.fcard {
  background: var(--cream);
  padding: 40px 48px;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 32px;
  align-items: start;
  cursor: pointer;
  transition: all 0.3s;
  border-left: 2px solid transparent;
}
.fcard:hover {
  background: var(--white);
  border-left-color: var(--gold);
}
.fcard-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--gold);
  font-weight: 300;
  line-height: 1;
  opacity: 0.5;
  padding-top: 4px;
}
.fcard-content {}
.fcard-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  color: var(--brown);
  margin-bottom: 10px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.fcard-text {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}
.fcard-link {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brown-mid);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
  transition: gap 0.2s;
}
.fcard:hover .fcard-link { gap: 14px; color: var(--gold); }
.fcard-link::after { content: '→'; }

.feature-forward {
  grid-column: 1 / -1;
  text-align: center;
  padding-top: 16px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-light);
  letter-spacing: 0.02em;
}

/* ── FIELD NOTES PREVIEW ── */
.notes-section {
  padding: 100px 72px;
  background: var(--brown);
  position: relative;
  overflow: hidden;
}
.notes-section::before {
  content: 'FIELD NOTES';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 18vw;
  font-weight: 600;
  color: rgba(255,255,255,0.03);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 0.1em;
}
.notes-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
}
.notes-header-left {}
.notes-kicker {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 400;
}
.notes-kicker::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--gold);
  display: block;
}
.notes-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.notes-title em { font-style: italic; color: rgba(244,239,230,0.6); }

.notes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(244,239,230,0.08);
}
.note-card {
  background: rgba(61,34,16,0.3);
  padding: 40px 36px;
  cursor: pointer;
  transition: background 0.3s;
  border-top: 1px solid rgba(244,239,230,0.08);
}
.note-card:hover { background: rgba(61,34,16,0.5); }
.note-img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  display: block;
  margin-bottom: 28px;
  filter: sepia(20%) saturate(70%) brightness(0.85);
}
.note-cat {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 400;
}
.note-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--cream);
  line-height: 1.35;
  margin-bottom: 14px;
  font-weight: 400;
}
.note-excerpt {
  font-size: 0.8rem;
  color: rgba(244,239,230,0.55);
  line-height: 1.75;
  margin-bottom: 20px;
}
.note-date {
  font-size: 0.65rem;
  color: rgba(244,239,230,0.35);
  letter-spacing: 0.08em;
}
.notes-cta {
  text-align: center;
  margin-top: 64px;
}
.btn-outline-light {
  border: 1px solid rgba(244,239,230,0.3);
  color: rgba(244,239,230,0.7);
  padding: 13px 36px;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.25s;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
}
.btn-outline-light:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ── PAGE HERO ── */
.page-hero {
  padding: 80px 72px 64px;
  border-bottom: 1px solid rgba(61,34,16,0.1);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 72px; right: 72px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.ph-kicker {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 400;
}
.ph-kicker::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--gold);
  display: block;
}
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 300;
  color: var(--brown);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  max-width: 800px;
}
.page-hero h1 em { font-style: italic; color: var(--brown-mid); }
.page-hero p {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 640px;
  line-height: 1.85;
}

/* ── ABOUT ── */
.about-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  min-height: calc(100vh - 72px);
}
.about-sidebar {
  background: var(--cream-dark);
  padding: 64px 48px;
  border-right: 1px solid rgba(61,34,16,0.08);
  position: sticky;
  top: 72px;
  height: calc(100vh - 72px);
  overflow-y: auto;
}
.about-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center 25%;
  display: block;
  margin-bottom: 36px;
  filter: sepia(5%) saturate(90%);
}
.about-meta {
  list-style: none;
  border-top: 1px solid rgba(61,34,16,0.12);
}
.about-meta li {
  padding: 16px 0;
  border-bottom: 1px solid rgba(61,34,16,0.08);
}
.about-meta .ml {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
  font-weight: 400;
}
.about-meta .mv {
  font-size: 0.88rem;
  color: var(--brown);
  line-height: 1.5;
}

.about-main {
  padding: 80px 80px 80px 72px;
}
.about-main h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 4vw, 5rem);
  font-weight: 300;
  color: var(--brown);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 52px;
}
.about-main h1 em { font-style: italic; color: var(--brown-mid); }
.about-main p {
  font-size: 0.98rem;
  color: var(--text);
  line-height: 1.95;
  margin-bottom: 28px;
  max-width: 640px;
}
.about-main h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--brown);
  font-weight: 400;
  margin: 52px 0 20px;
  letter-spacing: 0.01em;
}
.about-ctas {
  display: flex;
  gap: 14px;
  margin-top: 52px;
  flex-wrap: wrap;
}

/* ── GLOBAL MARKETING ── */
.pills {
  padding: 32px 72px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border-bottom: 1px solid rgba(61,34,16,0.08);
  background: var(--cream-mid);
}
.pill {
  border: 1px solid rgba(61,34,16,0.2);
  padding: 6px 16px;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--text-mid);
  border-radius: 100px;
  font-weight: 400;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  border-bottom: 1px solid rgba(61,34,16,0.1);
}
.stat-cell {
  padding: 48px 40px;
  border-right: 1px solid rgba(61,34,16,0.08);
  position: relative;
}
.stat-cell:last-child { border-right: none; }
.stat-cell::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.stat-cell:hover::after { transform: scaleX(1); }
.stat-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  color: var(--brown);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.stat-l {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 400;
}

.exp-section { padding: 0 72px 80px; }
.exp-entry {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 0;
  border-bottom: 1px solid rgba(61,34,16,0.08);
  padding: 72px 0;
}
.exp-meta {
  padding-right: 48px;
  border-right: 1px solid rgba(61,34,16,0.08);
  padding-top: 4px;
}
.exp-org {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--brown);
  font-weight: 500;
  margin-bottom: 6px;
}
.exp-role {
  font-size: 0.68rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
  font-weight: 400;
}
.exp-dates {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 20px;
}
.exp-scope {
  font-size: 0.75rem;
  color: var(--text-light);
  line-height: 1.7;
  font-style: italic;
}
.exp-body { padding-left: 64px; }
.exp-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--brown);
  margin-bottom: 20px;
  font-weight: 400;
  letter-spacing: 0.01em;
}
.exp-body p {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.9;
  margin-bottom: 20px;
  max-width: 640px;
}
.exp-highlights { list-style: none; margin-top: 28px; }
.exp-highlights li {
  font-size: 0.86rem;
  color: var(--text);
  padding: 12px 0;
  border-top: 1px solid rgba(61,34,16,0.06);
  display: flex;
  gap: 16px;
  line-height: 1.65;
  align-items: baseline;
}
.exp-highlights li::before {
  content: '—';
  color: var(--gold);
  flex-shrink: 0;
  font-family: 'Cormorant Garamond', serif;
}

/* ── PARTNERSHIPS ── */
.partnership-intro {
  padding: 80px 72px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: start;
  border-bottom: 1px solid rgba(61,34,16,0.1);
}
.partnership-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 300;
  font-style: italic;
  color: var(--brown);
  line-height: 1.45;
  position: relative;
  padding-left: 36px;
  margin-bottom: 28px;
}
.partnership-quote::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
.partnership-body {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.9;
}
.partnership-body p + p { margin-top: 16px; }

.pstats {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: rgba(61,34,16,0.08);
}
.pstat {
  background: var(--cream);
  padding: 32px 36px;
  border-left: 2px solid transparent;
  transition: all 0.3s;
}
.pstat:hover { border-left-color: var(--gold); background: var(--cream-dark); }
.pstat-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  color: var(--brown);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.pstat-l {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 400;
}

/* ── CASE STUDIES ── */
.case-studies { padding: 80px 72px; }
.case-study {
  margin-bottom: 100px;
  padding-bottom: 100px;
  border-bottom: 1px solid rgba(61,34,16,0.08);
}
.case-study:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.cs-eyebrow {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 400;
}
.cs-eyebrow::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--gold);
  display: block;
}

.cs-layout {
  display: block;
  margin-bottom: 48px;
}
.cs-results {
  display: none;
}
.cs-outcomes {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-top: 1px solid rgba(61,34,16,0.1);
  margin-top: 32px;
  padding-top: 28px;
}
.cs-outcome-item {
  padding: 0 40px 0 0;
  margin-right: 40px;
  border-right: 1px solid rgba(61,34,16,0.1);
}
.cs-outcome-item:last-child { border-right: none; padding-right: 0; margin-right: 0; }
.cs-outcome-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--brown);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.cs-outcome-l {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 400;
}
.cs-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 3.5vw, 3.6rem);
  color: var(--brown);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.cs-desc {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.9;
}
.cs-desc + .cs-desc { margin-top: 16px; }

.cs-results {
  background: var(--brown);
  padding: 36px;
}
.cs-results h4 {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  font-weight: 400;
}
.cs-metric {
  padding: 16px 0;
  border-bottom: 1px solid rgba(244,239,230,0.1);
}
.cs-metric:last-of-type { border-bottom: none; }
.cs-metric-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  color: var(--cream);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.01em;
}
.cs-metric-l {
  font-size: 0.72rem;
  color: rgba(244,239,230,0.6);
  margin-top: 4px;
  font-weight: 300;
}
.cs-yt-link {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(244,239,230,0.12);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: gap 0.2s;
  font-weight: 400;
}
.cs-yt-link:hover { gap: 16px; }

.cs-images {
  display: grid;
  gap: 2px;
  background: rgba(61,34,16,0.1);
}
.cs-images img {
  width: 100%;
  object-fit: cover;
  display: block;
  filter: sepia(5%) saturate(90%);
  transition: filter 0.3s;
}
.cs-images img:hover { filter: sepia(0%) saturate(100%); }

/* ── PARTNERS ── */
.partners-dark {
  background: var(--brown);
  padding: 80px 72px;
}
.partners-dark h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: var(--cream);
  font-weight: 300;
  font-style: italic;
  margin-bottom: 48px;
  max-width: 480px;
  line-height: 1.4;
}
.partners-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.ptag {
  border: 1px solid rgba(244,239,230,0.2);
  padding: 8px 20px;
  font-size: 0.72rem;
  color: rgba(244,239,230,0.75);
  letter-spacing: 0.08em;
  transition: all 0.2s;
  font-weight: 300;
}
.ptag:hover { border-color: var(--gold); color: var(--gold); }

.celeb-section {
  padding: 80px 72px;
  background: var(--cream-mid);
}
.celeb-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1px;
  background: rgba(61,34,16,0.08);
  margin-top: 48px;
}
.ctag {
  background: var(--cream);
  padding: 24px 28px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: var(--brown);
  font-weight: 400;
  transition: background 0.2s;
}
.ctag:hover { background: var(--cream-dark); }

/* ── INSIGHTS ── */
.insights-top {
  padding: 80px 72px 64px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-bottom: 1px solid rgba(61,34,16,0.1);
  gap: 32px;
  flex-wrap: wrap;
}
.filter-row { display: flex; gap: 4px; }
.ftab {
  padding: 8px 20px;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(61,34,16,0.18);
  background: transparent;
  color: var(--text-light);
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
}
.ftab.active, .ftab:hover {
  background: var(--brown);
  color: var(--cream);
  border-color: var(--brown);
}

.insights-grid {
  padding: 72px;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 56px 40px;
}
.icard { cursor: pointer; position: relative; }
.icard-img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  display: block;
  margin-bottom: 24px;
  filter: sepia(8%) saturate(85%);
  transition: filter 0.3s;
}
.icard:hover .icard-img { filter: sepia(0%) saturate(100%); }
.icard-cat {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  font-weight: 400;
}
.icard-title {
  position: relative;
  z-index: 2;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  color: var(--brown);
  line-height: 1.3;
  margin-bottom: 12px;
  font-weight: 400;
  text-decoration: none;
  display: block;
}
.icard-title:hover { color: var(--brown-mid); }
.icard-excerpt {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 14px;
}
.icard-date {
  font-size: 0.65rem;
  color: var(--brown-light);
  letter-spacing: 0.08em;
}
.insights-cta-wrap {
  padding: 60px 72px;
  text-align: center;
  border-top: 1px solid rgba(61,34,16,0.08);
}
.insights-cta-wrap p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 24px;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
}

/* ── FOOTER ── */
footer {
  background: var(--text);
  padding: 80px 72px 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 80px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(244,239,230,0.08);
  margin-bottom: 32px;
}
.footer-brand h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--cream);
  margin-bottom: 14px;
  font-weight: 400;
  letter-spacing: 0.04em;
}
.footer-brand p {
  font-size: 0.82rem;
  color: rgba(244,239,230,0.6);
  line-height: 1.75;
  max-width: 280px;
}
.footer-col h4 {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  font-weight: 400;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul a {
  font-size: 0.84rem;
  color: rgba(244,239,230,0.6);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--cream); }
.footer-col p {
  font-size: 0.84rem;
  color: rgba(244,239,230,0.6);
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-links-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-link-btn {
  border: 1px solid rgba(244,239,230,0.2);
  color: rgba(244,239,230,0.7);
  padding: 9px 20px;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s;
  font-weight: 400;
}
.footer-link-btn:hover { border-color: var(--gold); color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  color: rgba(244,239,230,0.3);
}

/* ── SECTION LABEL ── */
.sec-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 400;
}
.sec-label::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--gold);
  display: block;
}
.sec-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 3rem);
  color: var(--brown);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes drawLine {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

/* Hero staggered lines */
.hero-title .line {
  display: block;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.hero-kicker,
.hero-sub,
.hero-ctas {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Optional entrance animation on initial page load */
body.loaded .hero-title .line {
  opacity: 0;
  transform: translateY(28px);
  animation: fadeUp 0.6s ease forwards;
}
body.loaded .hero-title .line:nth-child(1) { animation-delay: 0.05s; }
body.loaded .hero-title .line:nth-child(2) { animation-delay: 0.15s; }
body.loaded .hero-title .line:nth-child(3) { animation-delay: 0.25s; }
body.loaded .hero-title .line:nth-child(4) { animation-delay: 0.35s; }
body.loaded .hero-kicker { opacity: 0; transform: translateY(12px); animation: fadeUp 0.5s ease forwards; animation-delay: 0s; }
body.loaded .hero-sub { opacity: 0; transform: translateY(12px); animation: fadeUp 0.5s ease forwards; animation-delay: 0.45s; }
body.loaded .hero-ctas { opacity: 0; transform: translateY(12px); animation: fadeUp 0.5s ease forwards; animation-delay: 0.55s; }

/* Page hero h1 stagger */
body.loaded .page-hero h1 { animation: fadeUp 0.65s ease forwards; }
body.loaded .about-main h1 { animation: fadeUp 0.65s ease forwards; }

/* Nav gold line draw on scroll */
nav::after {
  transform-origin: left;
  transition: opacity 0.3s, transform 0.6s ease;
  transform: scaleX(0);
}
nav.scrolled::after { opacity: 1; transform: scaleX(1); }

/* Scroll-triggered reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Image zoom on hover */
.cs-images img,
.note-img,
.icard-img {
  transition: transform 0.5s ease, filter 0.4s ease !important;
  overflow: hidden;
}
.cs-images { overflow: hidden; }
.cs-images img:hover { transform: scale(1.03) !important; }
.note-card { overflow: hidden; }
.note-card:hover .note-img { transform: scale(1.03); }
.icard { overflow: hidden; }
.icard:hover .icard-img { transform: scale(1.03); filter: sepia(0%) saturate(100%) !important; }

/* Stat counter – numbers start invisible, JS will animate */
.mstat-n, .stat-n { transition: opacity 0.3s; }

/* Parallax container */
.hero-right { will-change: transform; }

/* ── TABLET (iPad) ── */
@media (max-width: 1100px) and (min-width: 901px) {
  .hero-left { padding: 48px 40px 48px 48px; justify-content: center; }
  .hero-kicker { font-size: 0.58rem; letter-spacing: 0.16em; white-space: nowrap; }
  .hero-title { font-size: clamp(2.8rem, 4.5vw, 4rem); }
  .hero-sub { font-size: 0.88rem; }
  nav { padding: 0 32px; }
  .nav-links { gap: 24px; }
  .nav-links a { font-size: 0.68rem; }
  .feature-section { padding: 80px 40px; gap: 48px; }
  .case-studies { padding: 60px 40px; }
  .exp-section { padding: 0 40px 60px; }
  .page-hero { padding: 60px 40px 48px; }
  .about-main { padding: 60px 48px; }
  .insights-grid { padding: 48px 40px; }
}

/* ── MOBILE ── */
@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--cream); padding: 24px; gap: 20px; border-bottom: 1px solid rgba(61,34,16,0.1); z-index: 400; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }

  .home-hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 52px 24px; }
  .hero-left::after { display: none; }
  .hero-right { height: 320px; }
  .hero-title { font-size: 3.2rem; }

  .marquee-stats { grid-template-columns: 1fr; }
  .mstat { border-right: none; border-bottom: 1px solid rgba(61,34,16,0.1); padding: 36px 24px; }
  .mstat:last-child { border-bottom: none; }

  .feature-section { grid-template-columns: 1fr; padding: 60px 24px; gap: 40px; }
  .fcard { padding: 28px 24px; }

  .notes-section { padding: 60px 24px; }
  .notes-grid { grid-template-columns: 1fr; }
  .notes-header { flex-direction: column; gap: 24px; align-items: flex-start; }

  .page-hero { padding: 48px 24px 40px; }
  .page-hero::after { left: 24px; right: 24px; }
  .page-hero h1 { font-size: 2.8rem; }

  .about-layout { grid-template-columns: 1fr; }
  .about-sidebar { position: static; height: auto; padding: 40px 24px; border-right: none; border-bottom: 1px solid rgba(61,34,16,0.1); }
  .about-img { aspect-ratio: 4/3; }
  .about-main { padding: 48px 24px; }
  .about-main h1 { font-size: 2.8rem; }

  .pills { padding: 24px; }
  .stat-row { grid-template-columns: 1fr 1fr; }
  .stat-cell { padding: 32px 20px; border-right: none; border-bottom: 1px solid rgba(61,34,16,0.08); }
  .exp-section { padding: 0 24px 60px; }
  .exp-entry { grid-template-columns: 1fr; gap: 0; padding: 48px 0; }
  .exp-meta { border-right: none; border-bottom: 1px solid rgba(61,34,16,0.08); padding-right: 0; padding-bottom: 28px; margin-bottom: 28px; }
  .exp-body { padding-left: 0; }

  .partnership-intro { grid-template-columns: 1fr; padding: 48px 24px; }
  .case-studies { padding: 48px 24px; }
  .cs-layout { grid-template-columns: 1fr; gap: 40px; }
  .partners-dark { padding: 60px 24px; }
  .celeb-section { padding: 60px 24px; }
  .celeb-grid { grid-template-columns: 1fr 1fr; }

  .insights-top { padding: 48px 24px 40px; }
  .insights-grid { padding: 40px 24px; grid-template-columns: 1fr; gap: 48px; }
  .insights-cta-wrap { padding: 40px 24px; }

  footer { padding: 60px 24px 32px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}


/* multipage overrides */
.site-page { display:block; padding-top:72px; min-height:100vh; }
.nav-links a.active { color: var(--brown); }
.footer-col ul a.active { color: var(--cream); }
a.mstat, a.fcard { text-decoration:none; color:inherit; display:block; }
a.nav-logo { text-decoration:none; }
@media (max-width: 900px) { .site-page { padding-top:72px; } }
