/* ============================================================
   ELiN Partners  Shared Stylesheet
   ============================================================ */

:root {
  /* ============== ESPRESSO PALETTE (back to v6 base) ============== */
  /* The dark base is our identity. Light sections used as accents only. */
  
  /* Primary dark surfaces */
  --ink: #1A130C;          /* page background: deep espresso */
  --abyss: #14100A;        /* deepest, for contrast boxes */
  --shadow: #28201A;       /* darker brown for borders/dividers */
  --smoke: #3A2F25;        /* mid brown */
  --dust: #5A4938;         /* warm taupe */
  
  /* Accents */
  --gold: #D4A857;         /* warm gold */
  --gold-light: #E8C176;   /* bright gold for highlights */
  --gold-pale: #F0D9A0;    /* soft gold */
  
  /* Text on dark */
  --bone: #F4E8D0;         /* warm off-white (main text on dark) */
  --cream: #EBDEC4;        /* slightly deeper cream */
  --warm-white: #FAF1E1;   /* near-white for headlines */
  --muted: #998F7D;        /* muted parchment */
  --soft: #C4B9A0;         /* soft beige for subtitles */
  
  /* Light (paper) surfaces: used for accent sections only */
  --paper: #F4E8D0;        /* warm cream surface */
  --paper-deep: #EBDEC4;   /* slightly deeper cream */
  --paper-ink: #1A130C;    /* text on cream = same espresso as bg */
  --paper-muted: #5A4938;  /* muted text on cream */

  --display: 'Newsreader', 'Iowan Old Style', Georgia, serif;
  --editorial: 'Cormorant Garamond', Georgia, serif;
  --body: 'Plus Jakarta Sans', system-ui, sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, monospace;
}

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

body {
  background: var(--ink);
  color: var(--bone);
  font-family: var(--body);
  font-weight: 400;
  overflow-x: hidden;
  cursor: none;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection { background: var(--gold); color: var(--ink); }
img, video { display: block; max-width: 100%; }

/* ===== Hero Video ===== */
.hero-wrap {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(26,19,12,0.4) 0%, transparent 20%, transparent 70%, rgba(26,19,12,0.9) 100%);
}

.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.moon {
  position: absolute;
  top: 13vh;
  right: 13vw;
  width: 14px;
  height: 14px;
  background: var(--gold-pale);
  border-radius: 50%;
  z-index: 3;
  box-shadow:
    0 0 28px var(--gold-pale),
    0 0 70px rgba(240, 217, 160, 0.5),
    0 0 130px rgba(240, 217, 160, 0.25);
  animation: moon-breathe 6s ease-in-out infinite;
}

@keyframes moon-breathe {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(0.92); }
}

/* Page grain overlay */
.grain {
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

section, footer, header.page-header { position: relative; z-index: 10; }

/* ===== Custom Cursor ===== */
.cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--bone);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
  transition: width 0.4s, height 0.4s, background 0.4s;
}

.cursor.expand {
  width: 56px;
  height: 56px;
  background: var(--gold-light);
  mix-blend-mode: normal;
  opacity: 0.4;
}

.cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(244, 232, 208, 0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
}

@media (hover: none) {
  body { cursor: auto; }
  .cursor, .cursor-ring { display: none; }
}

/* ===== Loader ===== */
.loader {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.loader.done { opacity: 0; visibility: hidden; }

.loader__horizon {
  width: 200px;
  height: 1px;
  background: var(--gold-light);
  transform: scaleX(0);
  transform-origin: center;
  animation: horizonDraw 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards 0s;
  box-shadow: 0 0 24px var(--gold-light);
}

.loader__brand {
  font-family: var(--display);
  font-size: 52px;
  font-weight: 500;
  font-variation-settings: "opsz" 72;
  letter-spacing: -0.025em;
  color: var(--bone);
  opacity: 0;
  animation: brandFade 0.4s ease forwards 0.15s;
  position: relative;
}

.loader__brand .moon-mark {
  position: absolute;
  width: 9px;
  height: 9px;
  background: var(--gold-pale);
  border-radius: 50%;
  top: 0.18em;
  left: 0.92em;
  box-shadow: 0 0 14px var(--gold-pale);
}

.loader__sub {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0;
  animation: brandFade 0.4s ease forwards 0.3s;
}

@keyframes horizonDraw { to { transform: scaleX(1); } }
@keyframes brandFade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== Navigation ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 28px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s, padding 0.4s;
}

.nav.scrolled {
  background: rgba(26, 19, 12, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 18px 48px;
}

.logo {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 600;
  font-variation-settings: "opsz" 72;
  letter-spacing: -0.02em;
  color: var(--bone);
  text-decoration: none;
  position: relative;
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
}

.logo__moon {
  position: absolute;
  width: 5px;
  height: 5px;
  background: var(--gold-pale);
  border-radius: 50%;
  top: 0.32em;
  left: 0.95em;
  box-shadow: 0 0 7px var(--gold-pale);
  animation: moon-breathe 4s ease-in-out infinite;
}

.logo__sub {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--soft);
}

.nav__menu {
  display: flex;
  gap: 32px;
  list-style: none;
}

/* Hide the mobile-only Contact item on desktop (nav__cta in corner handles it) */
.nav__link--cta-li {
  display: none;
}
@media (max-width: 900px) {
  .nav__link--cta-li {
    display: list-item;
  }
}

.nav__link {
  color: var(--bone);
  text-decoration: none;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
  transition: color 0.3s;
}

.nav__link.active { color: var(--gold-light); }
.nav__link.active::after,
.nav__link:hover::after { width: 100%; }

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold-light);
  transition: width 0.5s ease;
}

.nav__link:hover { color: var(--gold-light); }

.nav__cta {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--bone);
  padding: 14px 28px;
  text-decoration: none;
  border-radius: 100px;
  transition: all 0.4s;
}

.nav__cta:hover {
  background: var(--gold-light);
  letter-spacing: 0.26em;
}

/* Mobile menu toggle */
.nav__toggle {
  display: none;
  background: none;
  border: none;
  color: var(--bone);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  cursor: pointer;
}

/* ===== Hero Content (over video) ===== */
.hero {
  min-height: 100vh;
  padding: 120px 48px 80px;
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero__tag {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--bone);
  margin-bottom: 60px;
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 0;
  animation: fadeIn 0.8s ease forwards 1.1s;
}

.hero__tag::before {
  content: '';
  width: 56px;
  height: 1px;
  background: var(--gold-light);
}

.hero__title {
  font-family: var(--display);
  font-size: clamp(58px, 11vw, 178px);
  font-weight: 500;
  font-variation-settings: "opsz" 72;
  line-height: 0.96;
  letter-spacing: -0.035em;
  color: var(--warm-white);
  max-width: 1400px;
  text-shadow: 0 2px 30px rgba(0,0,0,0.4);
}

.hero__title-line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.05em;
}

.hero__title-line span {
  display: inline-block;
  transform: translateY(110%);
  animation: revealUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero__title-line:nth-child(1) span { animation-delay: 0.5s; }
.hero__title-line:nth-child(2) span { animation-delay: 0.65s; }

.hero__title em {
  font-family: var(--editorial);
  font-weight: 500;
  font-style: italic;
  color: var(--gold-light);
}

@keyframes revealUp { to { transform: translateY(0); } }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero__bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  opacity: 0;
  animation: fadeIn 0.7s ease forwards 0.9s;
}

.hero__intro-text {
  font-family: var(--editorial);
  font-size: clamp(22px, 1.9vw, 28px);
  font-weight: 500;
  line-height: 1.45;
  color: var(--cream);
  max-width: 560px;
  text-shadow: 0 1px 20px rgba(0,0,0,0.4);
}

.hero__intro-text em {
  font-style: italic;
  color: var(--gold-light);
}

.hero__designed {
  text-align: right;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bone);
  line-height: 1.9;
  text-shadow: 0 1px 15px rgba(0,0,0,0.5);
}

.hero__designed strong {
  color: var(--warm-white);
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

/* ===== Page Header (for non-home pages) ===== */
.page-header {
  padding: 200px 48px 120px;
  max-width: 1600px;
  margin: 0 auto;
}

.page-header__label {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.page-header__label::before {
  content: '';
  width: 56px;
  height: 1px;
  background: var(--gold-light);
}

.page-header__title {
  font-family: var(--display);
  font-size: clamp(54px, 9vw, 152px);
  font-weight: 500;
  font-variation-settings: "opsz" 72;
  line-height: 0.96;
  letter-spacing: -0.035em;
  color: var(--warm-white);
  margin-bottom: 36px;
  max-width: 1400px;
}

.page-header__title em {
  font-family: var(--editorial);
  font-style: italic;
  font-weight: 500;
  color: var(--gold-light);
}

.page-header__lede {
  font-family: var(--editorial);
  font-size: clamp(22px, 2vw, 28px);
  font-style: italic;
  font-weight: 500;
  line-height: 1.45;
  color: var(--cream);
  max-width: 820px;
}

/* ===== Marquee ===== */
.marquee {
  border-top: 1px solid rgba(244, 232, 208, 0.08);
  border-bottom: 1px solid rgba(244, 232, 208, 0.08);
  padding: 28px 0;
  overflow: hidden;
  white-space: nowrap;
  background: var(--ink);
  position: relative;
  z-index: 12;
}

.marquee__track {
  display: inline-block;
  animation: marquee 60s linear infinite;
}

.marquee__item {
  display: inline-block;
  margin: 0 56px;
  font-family: var(--display);
  font-size: 38px;
  font-weight: 500;
  font-variation-settings: "opsz" 72;
  letter-spacing: -0.015em;
  color: var(--bone);
  vertical-align: middle;
}

.marquee__item--accent {
  color: var(--gold-light);
  font-family: var(--editorial);
  font-style: italic;
  font-weight: 500;
}

.marquee__dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  background: var(--soft);
  border-radius: 50%;
  margin: 0 56px;
  vertical-align: middle;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== Hero Eyebrow (top tag line above title) ===== */
.hero__eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--bone);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 80px;
  opacity: 0;
  animation: fadeIn 1.2s ease forwards 2.4s;
  flex-wrap: wrap;
}

.hero__eyebrow-dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  background: var(--gold-light);
  border-radius: 50%;
}

.hero__eyebrow-divider {
  font-family: var(--display);
  color: var(--gold-light);
}

/* ===== Sparkles (twinkling sky) ===== */
.sparkle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--bone);
  border-radius: 50%;
  z-index: 3;
  pointer-events: none;
}

.sparkle::after {
  content: '';
  position: absolute;
  inset: -3px;
  background: radial-gradient(circle, rgba(240, 217, 160, 0.6) 0%, transparent 70%);
  border-radius: 50%;
}

/* ===== Scroll indicator ===== */
.scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--soft);
  opacity: 0;
  animation: fadeIn 1.2s ease forwards 4.5s, scrollBob 2.4s ease-in-out infinite 4.5s;
  z-index: 10;
}

@keyframes scrollBob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ===== Meaning section (ELiN = shining light) ===== */
.meaning {
  padding: 200px 48px;
  max-width: 1300px;
  margin: 0 auto;
  text-align: center;
}

.meaning__word {
  font-family: var(--display);
  font-size: clamp(120px, 22vw, 320px);
  font-weight: 200;
  font-variation-settings: "opsz" 72;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--warm-white);
  position: relative;
  display: inline-block;
}

.meaning__moon-mark {
  position: absolute;
  width: 18px;
  height: 18px;
  background: var(--gold-pale);
  border-radius: 50%;
  top: 0.17em;
  left: 0.4em;
  box-shadow:
    0 0 20px var(--gold-pale),
    0 0 50px rgba(240, 217, 160, 0.5);
  animation: moon-breathe 5s ease-in-out infinite;
}

.meaning__equals {
  font-family: var(--editorial);
  font-style: italic;
  font-size: clamp(40px, 5vw, 84px);
  color: var(--soft);
  margin: 24px 0;
  font-weight: 400;
}

.meaning__definition {
  font-family: var(--editorial);
  font-size: clamp(80px, 14vw, 220px);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--gold-light);
  font-style: italic;
}

.meaning__explainer {
  margin-top: 80px;
  font-family: var(--editorial);
  font-size: clamp(22px, 2vw, 28px);
  font-style: italic;
  font-weight: 500;
  line-height: 1.5;
  color: var(--cream);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.meaning__explainer strong {
  font-family: var(--display);
  font-style: normal;
  font-weight: 600;
  color: var(--warm-white);
}

/* ===== Manifesto attribution ===== */
.manifesto__attribution {
  margin-top: 64px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--soft);
  display: flex;
  align-items: center;
  gap: 18px;
}

.manifesto__attribution::before {
  content: '';
  width: 44px;
  height: 1px;
  background: var(--gold-light);
}

/* ===== Service title gold-foil shimmer on hover ===== */
.service__title {
  background-image: linear-gradient(90deg, var(--warm-white) 0%, var(--warm-white) 40%, var(--gold-light) 50%, var(--warm-white) 60%, var(--warm-white) 100%);
  background-size: 200% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  background-clip: text;
}

.service:hover .service__title {
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: shimmer 1.4s ease forwards;
}

@keyframes shimmer {
  to { background-position: 0% 0; }
}

.service__title-sub {
  -webkit-text-fill-color: var(--soft);
  color: var(--soft) !important;
}

/* ===== Hero overlay tweaked for espresso ===== */
.hero-overlay {
  background: linear-gradient(180deg, rgba(26, 19, 12, 0.45) 0%, transparent 20%, transparent 70%, rgba(26, 19, 12, 0.95) 100%),
              radial-gradient(circle at 80% 18%, rgba(232, 193, 118, 0.10) 0%, transparent 35%);
}

/* ===== Nav scrolled tone uses espresso ===== */
.nav.scrolled {
  background: rgba(26, 19, 12, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 18px 48px;
}

@media (max-width: 900px) {
  .meaning { padding: 100px 24px; }
  .meaning__word, .meaning__definition { font-size: clamp(80px, 18vw, 140px); }
  .hero__eyebrow { font-size: 10px; gap: 8px; margin-bottom: 48px; }
}

/* ===== Section Label (used throughout) ===== */
.section-label {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--soft);
  margin-bottom: 56px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.section-label::before {
  content: '';
  width: 44px;
  height: 1px;
  background: var(--gold-light);
}

/* ===== Display titles & body text utility ===== */
.display-title {
  font-family: var(--display);
  font-size: clamp(38px, 5vw, 92px);
  font-weight: 500;
  font-variation-settings: "opsz" 72;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--warm-white);
}

.display-title em {
  font-family: var(--editorial);
  font-style: italic;
  font-weight: 500;
  color: var(--gold-light);
}

.section-title {
  font-family: var(--display);
  font-size: clamp(44px, 5.8vw, 92px);
  font-weight: 500;
  font-variation-settings: "opsz" 72;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--warm-white);
  margin-bottom: 28px;
}

.section-title em {
  font-family: var(--editorial);
  font-style: italic;
  font-weight: 500;
  color: var(--gold-light);
}

.section-lede {
  font-family: var(--editorial);
  font-size: clamp(20px, 1.7vw, 25px);
  font-style: italic;
  line-height: 1.55;
  font-weight: 500;
  line-height: 1.5;
  color: var(--cream);
  max-width: 800px;
}

.prose {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--cream);
  max-width: 720px;
}

.prose p { margin-bottom: 24px; }
.prose em {
  font-family: var(--editorial);
  font-style: italic;
  color: var(--bone);
}

/* ===== Sections (general padding/layout) ===== */
.section {
  padding: 180px 48px;
  max-width: 1600px;
  margin: 0 auto;
}

.section--narrow {
  max-width: 1100px;
}

.section--center {
  text-align: center;
}

/* ===== Manifesto ===== */
.manifesto {
  padding: 200px 48px;
  max-width: 1600px;
  margin: 0 auto;
}

.manifesto__text {
  font-family: var(--display);
  font-size: clamp(38px, 5vw, 92px);
  font-weight: 500;
  font-variation-settings: "opsz" 72;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--warm-white);
  max-width: 1400px;
}

.manifesto__text em {
  font-family: var(--editorial);
  font-style: italic;
  font-weight: 500;
  color: var(--gold-light);
}

.manifesto__text .dim { color: var(--smoke); }

/* ===== Services list ===== */
.services {
  padding: 120px 48px 200px;
  max-width: 1600px;
  margin: 0 auto;
}

.services__intro {
  font-family: var(--editorial);
  font-size: clamp(28px, 3vw, 46px);
  font-weight: 500;
  font-style: italic;
  line-height: 1.3;
  color: var(--cream);
  max-width: 1000px;
  margin-bottom: 100px;
}

.services__intro strong {
  font-style: normal;
  font-family: var(--display);
  font-weight: 600;
  color: var(--warm-white);
}

.service {
  border-top: 1px solid rgba(244, 232, 208, 0.1);
  padding: 52px 0;
  display: grid;
  grid-template-columns: 80px 1fr 1.2fr 60px;
  gap: 40px;
  align-items: start;
  position: relative;
  cursor: none;
  transition: padding 0.5s ease;
  text-decoration: none;
  color: inherit;
}

.service:last-child { border-bottom: 1px solid rgba(244, 232, 208, 0.1); }

.service::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(212, 168, 87, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.service:hover::before { opacity: 1; }
.service:hover { padding: 64px 0; }

.service__number {
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 500;
  color: var(--soft);
  letter-spacing: 0.15em;
  padding-top: 12px;
}

.service__title {
  font-family: var(--display);
  font-size: clamp(34px, 4.2vw, 60px);
  font-weight: 500;
  font-variation-settings: "opsz" 72;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--warm-white);
  transition: transform 0.6s ease, color 0.6s ease;
}

.service:hover .service__title {
  color: var(--gold-light);
  transform: translateX(10px);
}

.service__title-sub {
  display: block;
  font-family: var(--editorial);
  font-style: italic;
  font-weight: 500;
  font-size: 0.55em;
  color: var(--soft);
  margin-top: 8px;
}

.service__copy {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--cream);
  max-width: 480px;
}

.service__copy em {
  font-family: var(--editorial);
  font-style: italic;
  font-weight: 500;
  color: var(--warm-white);
}

.service__arrow {
  font-family: var(--display);
  font-size: 30px;
  color: var(--soft);
  text-align: right;
  padding-top: 12px;
  transition: transform 0.6s ease, color 0.6s ease;
}

.service:hover .service__arrow {
  color: var(--gold-light);
  transform: translateX(10px);
}

/* ===== Service Detail (on what-we-do page) ===== */
.service-detail {
  border-top: 1px solid rgba(244, 232, 208, 0.1);
  padding: 100px 0;
  scroll-margin-top: 100px;
}

.service-detail__head {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 40px;
  align-items: baseline;
  margin-bottom: 64px;
}

.service-detail__number {
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 500;
  color: var(--gold-light);
  letter-spacing: 0.15em;
}

.service-detail__title {
  font-family: var(--display);
  font-size: clamp(42px, 5.5vw, 88px);
  font-weight: 500;
  font-variation-settings: "opsz" 72;
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--warm-white);
}

.service-detail__title em {
  font-family: var(--editorial);
  font-style: italic;
  font-weight: 500;
  color: var(--gold-light);
}

.service-detail__body {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 40px;
}

.service-detail__body > .prose { grid-column: 2; }

.service-detail h4 {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 600;
  color: var(--warm-white);
  margin: 40px 0 16px;
  letter-spacing: -0.015em;
}

.service-detail ul {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.service-detail ul li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 14px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--cream);
}

.service-detail ul li::before {
  content: '';
  position: absolute;
  left: 0;
  color: var(--gold-light);
}

.service-detail__cta {
  margin-top: 48px;
}

/* ===== Duo / Partners ===== */
.duo {
  padding: 180px 48px;
  max-width: 1600px;
  margin: 0 auto;
}

.duo__header { margin-bottom: 100px; max-width: 1100px; }

.duo__intro {
  font-family: var(--editorial);
  font-size: 24px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.5;
  color: var(--cream);
  max-width: 780px;
}

.duo__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.partner { position: relative; }

.partner__portrait {
  aspect-ratio: 4/5;
  background: var(--shadow);
  margin-bottom: 36px;
  position: relative;
  overflow: hidden;
}

.partner__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease, filter 0.8s ease;
  filter: brightness(0.92) contrast(1.05);
}

.partner:hover .partner__portrait img {
  transform: scale(1.03);
  filter: brightness(1) contrast(1.05);
}

.partner__portrait::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(26,19,12,0.6) 100%);
  pointer-events: none;
}

.partner__label {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--soft);
  margin-bottom: 18px;
}

.partner__name {
  font-family: var(--display);
  font-size: clamp(42px, 4.5vw, 64px);
  font-weight: 500;
  font-variation-settings: "opsz" 72;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--warm-white);
  margin-bottom: 22px;
}

.partner__role {
  font-family: var(--editorial);
  font-style: italic;
  font-weight: 600;
  font-size: 25px;
  color: var(--gold-light);
  margin-bottom: 26px;
}

.partner__bio {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--cream);
  max-width: 460px;
  margin-bottom: 28px;
}

.partner__bio p { margin-bottom: 16px; }

.partner__signature {
  display: inline-block;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone);
  border: 1px solid rgba(244, 232, 208, 0.22);
  padding: 10px 18px;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.4s;
}

.partner__signature:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
  letter-spacing: 0.28em;
}

/* ===== Voice cards (Ideas previews on home) ===== */
.voices {
  padding: 180px 48px;
  max-width: 1600px;
  margin: 0 auto;
}

.voices__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 80px;
}

.voice-card {
  border: 1px solid rgba(244, 232, 208, 0.1);
  padding: 52px 44px;
  position: relative;
  background: var(--abyss);
  transition: all 0.7s ease;
  overflow: hidden;
  cursor: none;
  text-decoration: none;
  color: inherit;
  display: block;
}

.voice-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 60%;
  height: 100%;
  background: radial-gradient(circle, var(--gold-light) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.7s ease;
  pointer-events: none;
  mix-blend-mode: screen;
}

.voice-card:hover::before { opacity: 0.15; }
.voice-card:hover { border-color: rgba(232, 193, 118, 0.4); }

.voice-card__author {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--soft);
  margin-bottom: 36px;
}

.voice-card__title {
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 46px);
  font-weight: 500;
  font-variation-settings: "opsz" 72;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--warm-white);
  margin-bottom: 32px;
}

.voice-card__title em {
  font-family: var(--editorial);
  font-style: italic;
  font-weight: 500;
  color: var(--gold-light);
}

.voice-card__copy {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--cream);
  margin-bottom: 44px;
}

.voice-card__feature {
  border-top: 1px solid rgba(244, 232, 208, 0.1);
  padding-top: 28px;
  font-family: var(--editorial);
  font-style: italic;
  font-weight: 500;
  font-size: 16px;
  color: var(--soft);
  line-height: 1.55;
}

.voice-card__feature strong {
  font-family: var(--mono);
  font-style: normal;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: block;
  margin-bottom: 8px;
}

.voice-card__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone);
  margin-top: 32px;
  transition: gap 0.4s, color 0.4s;
}

.voice-card:hover .voice-card__link { gap: 18px; color: var(--gold-light); }

/* ===== Article cards (Ideas list, Bright Leaders) ===== */
.article-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(244, 232, 208, 0.1);
  border: 1px solid rgba(244, 232, 208, 0.1);
  margin-top: 64px;
}

.article-card {
  background: var(--ink);
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  position: relative;
  text-decoration: none;
  color: inherit;
  cursor: none;
  transition: background 0.5s;
  min-height: 380px;
}

.article-card:hover { background: var(--abyss); }

.article-card__category {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.article-card__title {
  font-family: var(--display);
  font-size: clamp(26px, 2.6vw, 38px);
  font-weight: 500;
  font-variation-settings: "opsz" 72;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--warm-white);
  margin-bottom: 18px;
  transition: color 0.4s;
}

.article-card:hover .article-card__title { color: var(--gold-light); }

.article-card__title em {
  font-family: var(--editorial);
  font-style: italic;
  font-weight: 500;
  color: var(--gold-light);
}

.article-card__excerpt {
  font-family: var(--editorial);
  font-style: italic;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--cream);
  margin-bottom: 32px;
}

.article-card__meta {
  margin-top: auto;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.article-card__arrow {
  font-family: var(--display);
  font-size: 22px;
  color: var(--soft);
  transition: transform 0.4s, color 0.4s;
}

.article-card:hover .article-card__arrow {
  color: var(--gold-light);
  transform: translate(4px, -4px);
}

/* ===== Featured Interview (Bright Leaders) ===== */
.featured-interview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 60px 0;
}

.featured-interview__visual {
  aspect-ratio: 4/5;
  background: var(--shadow);
  border: 1px solid rgba(244, 232, 208, 0.08);
  position: relative;
  overflow: hidden;
}

.featured-interview__visual-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px;
}

.featured-interview__num {
  font-family: var(--display);
  font-size: 220px;
  font-weight: 200;
  font-variation-settings: "opsz" 72;
  color: rgba(244, 232, 208, 0.06);
  line-height: 1;
  margin-bottom: 12px;
}

.featured-interview__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, var(--gold-light) 0%, transparent 60%);
  opacity: 0.12;
  mix-blend-mode: screen;
}

.featured-interview__category {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 24px;
}

.featured-interview__title {
  font-family: var(--display);
  font-size: clamp(36px, 4vw, 64px);
  font-weight: 500;
  font-variation-settings: "opsz" 72;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--warm-white);
  margin-bottom: 28px;
}

.featured-interview__title em {
  font-family: var(--editorial);
  font-style: italic;
  font-weight: 500;
  color: var(--gold-light);
}

.featured-interview__person {
  font-family: var(--editorial);
  font-style: italic;
  font-size: 22px;
  font-weight: 500;
  color: var(--gold-light);
  margin-bottom: 28px;
}

.featured-interview__copy {
  font-size: 16px;
  line-height: 1.7;
  color: var(--cream);
  margin-bottom: 36px;
  max-width: 480px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 16px 32px;
  text-decoration: none;
  border-radius: 100px;
  transition: all 0.4s;
}

.btn--primary {
  background: var(--gold-light);
  color: var(--ink);
}

.btn--primary:hover {
  background: var(--gold);
  letter-spacing: 0.28em;
}

.btn--ghost {
  background: transparent;
  color: var(--bone);
  border: 1px solid rgba(244, 232, 208, 0.25);
}

.btn--ghost:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
}

/* ===== CTA section ===== */
.cta {
  padding: 200px 48px;
  text-align: center;
  max-width: 1500px;
  margin: 0 auto;
}

.cta .section-label { justify-content: center; }

.cta__title {
  font-family: var(--display);
  font-size: clamp(48px, 8vw, 140px);
  font-weight: 500;
  font-variation-settings: "opsz" 72;
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: var(--warm-white);
  margin-bottom: 80px;
}

.cta__title em {
  font-family: var(--editorial);
  font-style: italic;
  font-weight: 500;
  color: var(--gold-light);
}

.cta__routes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 920px;
  margin: 0 auto;
}

.cta__route {
  text-align: left;
  border: 1px solid rgba(244, 232, 208, 0.12);
  padding: 44px;
  transition: all 0.5s;
  text-decoration: none;
  display: block;
  position: relative;
  cursor: none;
  background: var(--abyss);
}

.cta__route:hover {
  border-color: var(--gold-light);
  background: rgba(212, 168, 87, 0.05);
}

.cta__route-label {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--soft);
  margin-bottom: 20px;
  display: block;
}

.cta__route-title {
  font-family: var(--display);
  font-size: 36px;
  font-weight: 500;
  font-variation-settings: "opsz" 72;
  color: var(--warm-white);
  letter-spacing: -0.025em;
  margin-bottom: 14px;
  line-height: 1.1;
}

.cta__route-copy {
  font-size: 14px;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.6;
}

.cta__route-arrow {
  position: absolute;
  top: 44px;
  right: 44px;
  font-family: var(--display);
  font-size: 24px;
  color: var(--soft);
  transition: all 0.5s;
}

.cta__route:hover .cta__route-arrow {
  color: var(--gold-light);
  transform: translate(6px, -6px);
}

/* ===== Forms ===== */
.form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 640px;
  margin-top: 56px;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form__label {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.form__input,
.form__textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(244, 232, 208, 0.25);
  padding: 12px 0;
  color: var(--bone);
  font-family: var(--body);
  font-size: 17px;
  font-weight: 400;
  outline: none;
  transition: border-color 0.3s;
}

.form__input:focus,
.form__textarea:focus { border-color: var(--gold-light); }

.form__textarea {
  resize: vertical;
  min-height: 120px;
}

.form__file {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--cream);
}

/* ===== Footer ===== */
.footer {
  padding: 100px 48px 56px;
  border-top: 1px solid rgba(244, 232, 208, 0.08);
  background: var(--abyss);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  max-width: 1600px;
  margin: 0 auto 80px;
}

.footer__brand {
  font-family: var(--display);
  font-size: 36px;
  font-weight: 600;
  font-variation-settings: "opsz" 72;
  letter-spacing: -0.025em;
  color: var(--warm-white);
  position: relative;
  display: inline-block;
  text-decoration: none;
}

.footer__brand .logo__moon {
  width: 6px;
  height: 6px;
  top: 0.3em;
  left: 0.95em;
}

.footer__brand-sub {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.35em;
  vertical-align: middle;
  color: var(--soft);
  margin-left: 12px;
}

.footer__tagline {
  font-family: var(--editorial);
  font-style: italic;
  font-weight: 500;
  font-size: 18px;
  color: var(--soft);
  margin-top: 16px;
  max-width: 320px;
  line-height: 1.5;
}

.footer__col-title {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--soft);
  margin-bottom: 28px;
}

.footer__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__list a {
  color: var(--bone);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer__list a:hover { color: var(--gold-light); }

.footer__bottom {
  max-width: 1600px;
  margin: 0 auto;
  padding-top: 36px;
  border-top: 1px solid rgba(244, 232, 208, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.12em;
}

.footer__list-muted {
  color: var(--muted);
  font-family: var(--editorial);
  font-style: italic;
  font-size: 14px;
}

/* ===== Reveal animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 1.1s cubic-bezier(0.22, 1, 0.36, 1), transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Article (Single blog post) ===== */
.article {
  padding: 200px 48px 120px;
  max-width: 900px;
  margin: 0 auto;
}

.article__meta {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 32px;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.article__meta span { color: var(--soft); }

.article__title {
  font-family: var(--display);
  font-size: clamp(40px, 5.5vw, 80px);
  font-weight: 500;
  font-variation-settings: "opsz" 72;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--warm-white);
  margin-bottom: 28px;
}

.article__title em {
  font-family: var(--editorial);
  font-style: italic;
  font-weight: 500;
  color: var(--gold-light);
}

.article__lede {
  font-family: var(--editorial);
  font-size: clamp(20px, 1.9vw, 26px);
  font-style: italic;
  font-weight: 500;
  line-height: 1.5;
  color: var(--cream);
  margin-bottom: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(244, 232, 208, 0.1);
}

.article__body {
  font-size: 18px;
  line-height: 1.8;
  color: var(--cream);
}

.article__body p { margin-bottom: 28px; }

.article__body h2 {
  font-family: var(--display);
  font-size: 36px;
  font-weight: 500;
  color: var(--warm-white);
  margin: 56px 0 24px;
  letter-spacing: -0.02em;
}

.article__body em {
  font-family: var(--editorial);
  font-style: italic;
  color: var(--bone);
}

.article__body blockquote {
  font-family: var(--editorial);
  font-style: italic;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--gold-light);
  border-left: 2px solid var(--gold-light);
  padding-left: 32px;
  margin: 48px 0;
}

.article__share {
  margin-top: 80px;
  padding-top: 48px;
  border-top: 1px solid rgba(244, 232, 208, 0.1);
  display: flex;
  gap: 16px;
  align-items: center;
}

.article__share-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--soft);
  margin-right: 16px;
}

.article__share a {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bone);
  text-decoration: none;
  border: 1px solid rgba(244, 232, 208, 0.2);
  padding: 10px 18px;
  border-radius: 100px;
  transition: all 0.3s;
}

.article__share a:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
}

.article__back {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--soft);
  text-decoration: none;
  margin-bottom: 40px;
  transition: color 0.3s, gap 0.3s;
}

.article__back:hover { color: var(--gold-light); gap: 18px; }

/* ===== Opportunities listing ===== */
.opportunity {
  border-top: 1px solid rgba(244, 232, 208, 0.1);
  padding: 48px 0;
  display: grid;
  grid-template-columns: 1fr 1.2fr auto;
  gap: 40px;
  align-items: center;
  text-decoration: none;
  color: inherit;
  transition: padding 0.4s;
  cursor: none;
}

.opportunity:last-child { border-bottom: 1px solid rgba(244, 232, 208, 0.1); }
.opportunity:hover { padding: 60px 0; }

.opportunity__role {
  font-family: var(--display);
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 500;
  font-variation-settings: "opsz" 72;
  color: var(--warm-white);
  letter-spacing: -0.025em;
  line-height: 1.1;
  transition: color 0.4s, transform 0.4s;
}

.opportunity:hover .opportunity__role {
  color: var(--gold-light);
  transform: translateX(8px);
}

.opportunity__meta {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--soft);
  line-height: 1.8;
}

.opportunity__arrow {
  font-family: var(--display);
  font-size: 28px;
  color: var(--soft);
  transition: color 0.4s, transform 0.4s;
}

.opportunity:hover .opportunity__arrow {
  color: var(--gold-light);
  transform: translate(6px, -6px);
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .nav { padding: 20px 24px; }
  .nav.scrolled { padding: 14px 24px; }
  .nav__menu { display: none; }
  .nav__toggle { display: block; }

  .hero { padding: 100px 24px 60px; }
  .hero__bottom { grid-template-columns: 1fr; gap: 40px; }
  .hero__designed { text-align: left; }

  .page-header { padding: 140px 24px 80px; }

  .manifesto, .services, .duo, .voices, .cta { padding: 120px 24px; }
  .section { padding: 100px 24px; }
  .article { padding: 140px 24px 80px; }

  .service { grid-template-columns: 40px 1fr; gap: 16px; padding: 32px 0; }
  .service:hover { padding: 32px 0; }
  .service__copy, .service__arrow { grid-column: 2; }

  .service-detail__head { grid-template-columns: 1fr; gap: 16px; }
  .service-detail__body { grid-template-columns: 1fr; }
  .service-detail__body > .prose { grid-column: 1; }

  .duo__grid, .voices__grid, .cta__routes,
  .article-grid, .featured-interview { grid-template-columns: 1fr; gap: 32px; }

  .opportunity { grid-template-columns: 1fr; gap: 16px; padding: 32px 0; }
  .opportunity:hover { padding: 32px 0; }
  .opportunity__arrow { display: none; }

  .footer { padding: 60px 24px 40px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 600px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 16px; text-align: center; }
}


/* ========================================
   INVERSE SECTIONS (cream on dark site)
   ======================================== */
.section--paper {
  background: var(--paper);
  color: var(--paper-ink);
  position: relative;
  isolation: isolate;
}

.section--paper .section-label {
  color: var(--paper-muted);
}

.section--paper .section-label::before {
  background: var(--gold);
}

.section--paper h1,
.section--paper h2,
.section--paper h3,
.section--paper .section-title {
  color: var(--paper-ink);
}

.section--paper p,
.section--paper .section-lede {
  color: var(--paper-muted);
}

.section--paper em {
  color: var(--gold);
}

.section--paper strong {
  color: var(--paper-ink);
}

/* Crème decorative grain overlay */
.section--paper::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(26, 19, 12, 0.03) 1px, transparent 1.5px);
  background-size: 4px 4px;
  z-index: 0;
}

.section--paper > * {
  position: relative;
  z-index: 1;
}

/* Goud accent shimmer for grand display moments */
.gold-shimmer {
  background: linear-gradient(
    100deg,
    #C99729 0%,
    #E5B048 30%,
    #F4D78E 50%,
    #E5B048 70%,
    #C99729 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: goldShimmer 8s ease-in-out infinite;
}

@keyframes goldShimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}


/* ========================================
   MOBILE MENU
   ======================================== */
.nav__toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(244, 232, 208, 0.2);
  width: 44px;
  height: 44px;
  cursor: none;
  position: relative;
  z-index: 1001;
  padding: 0;
  border-radius: 100px;
  transition: border-color 0.3s, background 0.3s;
}

.nav__toggle:hover {
  border-color: var(--gold-light);
}

.nav__toggle-bar {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 1px;
  background: var(--bone);
  transition: transform 0.4s, opacity 0.3s, top 0.4s;
}

.nav__toggle-bar:nth-child(1) { top: 16px; }
.nav__toggle-bar:nth-child(2) { top: 22px; }
.nav__toggle-bar:nth-child(3) { top: 28px; }

.nav__toggle--open .nav__toggle-bar:nth-child(1) {
  top: 22px;
  transform: rotate(45deg);
  background: var(--gold-light);
}
.nav__toggle--open .nav__toggle-bar:nth-child(2) {
  opacity: 0;
}
.nav__toggle--open .nav__toggle-bar:nth-child(3) {
  top: 22px;
  transform: rotate(-45deg);
  background: var(--gold-light);
}

@media (max-width: 900px) {
  .nav__toggle { display: block; z-index: 1001; }
  
  body.menu-open { overflow: hidden; }
  
  .nav__menu {
    position: fixed;
    inset: 0;
    background: var(--ink);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
    z-index: 999;
    padding: 80px 24px;
    list-style: none;
    display: flex !important;
  }
  
  .nav__menu--open {
    transform: translateX(0);
  }
  
  .nav__link {
    font-family: var(--display);
    font-size: 32px;
    font-weight: 400;
    font-variation-settings: "opsz" 72;
    letter-spacing: -0.02em;
    color: var(--bone);
  }

  /* Mobile-only: show language switcher inside the open menu */
  .nav__menu--open .lang-switcher-mobile {
    display: flex;
    gap: 14px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--shadow);
  }
  
  /* Hide the corner CTA on mobile (Contact link is inside the menu) */
  .nav__cta {
    display: none;
  }
  
  /* The Contact link inside the mobile menu gets a CTA look */
  .nav__menu .nav__link--cta {
    margin-top: 24px;
    padding: 16px 36px;
    background: var(--gold-light);
    color: var(--ink) !important;
    border-radius: 100px;
    font-family: var(--mono);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
  }
}


/* ========================================
   MEANING LUMINOUS - The Name section with light effect
   ======================================== */
.meaning--luminous {
  background: var(--ink);
  position: relative;
  overflow: hidden;
}

/* Radial glow behind the words - giving real light */
.meaning--luminous::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(
    circle at center,
    rgba(229, 176, 72, 0.18) 0%,
    rgba(229, 176, 72, 0.08) 25%,
    rgba(229, 176, 72, 0.02) 50%,
    transparent 70%
  );
  filter: blur(40px);
  pointer-events: none;
  animation: glowPulse 8s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

.meaning--luminous .section-label {
  color: var(--gold-light);
  position: relative;
  z-index: 2;
}

.meaning--luminous .meaning__word {
  color: var(--bone);
  position: relative;
  z-index: 2;
  text-shadow: 0 0 30px rgba(229, 176, 72, 0.15);
}

.meaning--luminous .meaning__equals {
  color: var(--soft);
  position: relative;
  z-index: 2;
}

.meaning__definition--glow {
  font-family: var(--editorial);
  font-style: italic;
  font-size: clamp(72px, 10vw, 144px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #F4D78E;
  text-shadow:
    0 0 20px rgba(229, 176, 72, 0.5),
    0 0 40px rgba(229, 176, 72, 0.3),
    0 0 80px rgba(229, 176, 72, 0.2),
    0 0 120px rgba(229, 176, 72, 0.1);
  position: relative;
  z-index: 2;
  margin: 32px 0 56px;
}

/* The light spills onto the page */
.meaning__definition--glow::after {
  content: '';
  position: absolute;
  inset: -100px -200px;
  background: radial-gradient(
    ellipse at center,
    rgba(244, 215, 142, 0.12) 0%,
    transparent 60%
  );
  pointer-events: none;
  z-index: -1;
}

.meaning--luminous .meaning__explainer {
  color: var(--cream);
  position: relative;
  z-index: 2;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.4);
}

.meaning--luminous .meaning__explainer strong {
  color: var(--warm-white);
}

/* ========================================
   LANGUAGE SWITCHER
   ======================================== */
.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-right: 24px;
}
.lang-switcher a {
  color: var(--soft);
  text-decoration: none;
  padding: 4px 8px;
  transition: color 0.3s;
  border-bottom: 1px solid transparent;
}
.lang-switcher a:hover { color: var(--gold-light); }
.lang-switcher a.active {
  color: var(--gold-light);
  border-bottom-color: var(--gold-light);
}
.lang-switcher__sep {
  color: var(--soft);
  opacity: 0.4;
}
@media (max-width: 900px) {
  .lang-switcher { display: none; }
}

/* ========================================
   PARTNER INSIGHTS LINK (people page)
   ======================================== */
.partner__insights {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 40px;
  padding: 24px 28px;
  background: transparent;
  border: 1px solid var(--shadow);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.76, 0, 0.24, 1);
  position: relative;
  overflow: hidden;
}
.partner__insights::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--paper-deep);
  transform: translateX(-100%);
  transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
  z-index: 0;
}
.partner__insights:hover::before { transform: translateX(0); }
.partner__insights:hover {
  border-color: var(--paper-deep);
}
.partner__insights > * { position: relative; z-index: 1; transition: color 0.3s; }
.partner__insights:hover .partner__insights-label,
.partner__insights:hover .partner__insights-tagline,
.partner__insights:hover .partner__insights-arrow {
  color: var(--paper-ink);
}
.partner__insights-label {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  font-variation-settings: "opsz" 72;
  color: var(--bone);
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.partner__insights-tagline {
  font-family: var(--editorial);
  font-style: italic;
  font-size: 15px;
  color: var(--muted);
  flex: 1;
  line-height: 1.4;
}
.partner__insights-arrow {
  font-family: var(--mono);
  font-size: 20px;
  color: var(--gold-light);
  transition: transform 0.4s, color 0.3s;
}
.partner__insights:hover .partner__insights-arrow {
  transform: translateX(8px);
  color: var(--gold-pale);
}
@media (max-width: 600px) {
  .partner__insights {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .partner__insights-arrow {
    align-self: flex-end;
  }
}

/* ========================================
   MOBILE QUALITY UPGRADES (v10)
   ======================================== */
@media (max-width: 700px) {
  /* Hero needs more breathing room on small viewports */
  .hero {
    padding: 100px 20px 60px;
    min-height: 90vh;
  }
  .hero__eyebrow {
    font-size: 9px;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 32px;
  }
  .hero__title {
    font-size: clamp(46px, 13vw, 84px);
    line-height: 0.98;
  }
  .hero__intro-text {
    font-size: 17px;
  }
  
  /* Section titles slightly smaller for mobile rhythm */
  .section-title {
    font-size: clamp(36px, 10vw, 56px);
    line-height: 1.05;
  }
  
  /* Manifesto text */
  .manifesto__text {
    font-size: clamp(40px, 12vw, 64px);
  }
  
  /* Visual break quote */
  .visual-break__quote {
    font-size: clamp(28px, 9vw, 48px);
    padding: 0 24px;
  }
  
  /* Buttons more tappable */
  .btn, .btn--primary, .btn--ghost {
    padding: 16px 24px;
    font-size: 12px;
  }
  
  /* Marquee text size */
  .marquee__item {
    font-size: clamp(28px, 8vw, 42px);
  }
}

@media (max-width: 400px) {
  /* Very narrow viewports: extra protection */
  .hero, .section, .manifesto, .services, .duo, .voices, .cta {
    padding-left: 16px;
    padding-right: 16px;
  }
  .nav { padding: 20px 16px; }
  .hero__title { font-size: clamp(42px, 14vw, 68px); }
}

/* ========================================
   PEOPLE: LIGHT PARTNER SECTION
   ======================================== */
.duo--light {
  background: var(--paper);
  color: var(--paper-ink);
  position: relative;
  padding-top: 200px;
  padding-bottom: 200px;
}
.duo--light::before,
.duo--light::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(180deg, var(--ink) 0%, var(--paper) 100%);
}
.duo--light::before {
  top: -1px;
  background: linear-gradient(180deg, var(--ink) 0%, var(--paper) 100%);
}
.duo--light::after {
  bottom: -1px;
  background: linear-gradient(180deg, var(--paper) 0%, var(--ink) 100%);
}
.duo--light .section-label { color: var(--gold); }
.duo--light .section-label::before { background: var(--gold); }
.duo--light .section-title { color: var(--paper-ink); }
.duo--light .section-title em { color: var(--gold); }
.duo--light .partner__label { color: var(--gold); }
.duo--light .partner__name { color: var(--paper-ink); }
.duo--light .partner__role {
  color: var(--gold);
  font-family: var(--editorial);
  font-style: italic;
}
.duo--light .partner__bio p { color: var(--paper-muted); }
.duo--light .partner__bio p strong { color: var(--paper-ink); }
.duo--light .partner__bio p em { color: var(--paper-ink); }

/* Insights link on light background */
.duo--light .partner__insights {
  background: var(--paper-deep);
  border-color: rgba(26, 19, 12, 0.12);
}
.duo--light .partner__insights::before {
  background: var(--paper-ink);
}
.duo--light .partner__insights:hover {
  border-color: var(--paper-ink);
}
.duo--light .partner__insights:hover .partner__insights-label,
.duo--light .partner__insights:hover .partner__insights-tagline,
.duo--light .partner__insights:hover .partner__insights-arrow {
  color: var(--paper);
}
.duo--light .partner__insights-label { color: var(--paper-ink); }
.duo--light .partner__insights-tagline { color: var(--paper-muted); }
.duo--light .partner__insights-arrow { color: var(--gold); }

/* Portrait frame on light bg */
.duo--light .partner__portrait {
  border: 1px solid rgba(26, 19, 12, 0.15);
}
