@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=EB+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --gold: #C9A84C;
  --gold-faint: rgba(201,168,76,0.07);
  --blk: #1A1A1A;
  --g1: #2A2A2A;
  --g2: #555555;
  --g3: #888888;
  --g4: #BBBBBB;
  --border: #E8E4DE;
  --warm: #FAF7F2;
  --cream: #FDFAF4;
  --white: #FFFFFF;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'EB Garamond', Georgia, serif;
  background: var(--white);
  color: var(--blk);
  -webkit-font-smoothing: antialiased;
  line-height: 1.7;
}

/* ── NAV ───────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 0.5px solid var(--border);
}
.nav-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  position: relative;
}
.nav-eim {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--g4);
  font-weight: 400;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
}
.nav-brand {
  font-size: 24px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-brand .brand-in {
  font-weight: 300;
}
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  font-size: 15px;
  letter-spacing: 0.3px;
  color: var(--g3);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--blk); }
.nav-links a.active {
  color: var(--blk);
  border-bottom: 0.5px solid var(--blk);
  padding-bottom: 1px;
}

/* ── HAMBURGER ─────────────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 300;
}
.nav-hamburger span {
  display: block;
  width: 26px;
  height: 1px;
  background: var(--blk);
  transition: all 0.3s ease;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── MOBILE DRAWER ─────────────────────────────── */
.nav-drawer {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 48px;
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  font-size: 32px;
  letter-spacing: 0.5px;
  color: var(--blk);
  text-decoration: none;
  font-family: 'EB Garamond', serif;
  font-weight: 400;
  transition: color 0.2s;
}
.nav-drawer a:hover { color: var(--gold); }
.nav-drawer .drawer-tagline {
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--g4);
  font-style: normal;
  text-align: center;
  padding: 16px 24px;
  border-bottom: 0.5px solid var(--border);
  width: 100%;
  box-sizing: border-box;
}

/* ── TAGLINE ────────────────────────────────────── */
.tagline-section {
  text-align: center;
  font-style: italic;
  color: var(--gold);
  border-bottom: 0.5px solid var(--border);
  letter-spacing: 0.5px;
  line-height: 1.5;
}
.tagline-section.tagline-hero {
  font-size: clamp(20px, 4vw, 38px);
  padding: 44px 40px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.5px;
  color: var(--g3);
}
.tagline-section.tagline-sub {
  font-size: clamp(11px, 1.5vw, 14px);
  padding: 10px 40px;
  color: var(--g4);
  letter-spacing: 1.5px;
  font-style: normal;
}

/* ── LAYOUT ─────────────────────────────────────── */
.wrap { max-width: 640px; margin: 0 auto; padding: 0 36px; }
.section { padding: 80px 0; }
.section.warm { background: var(--warm); }
.section.cream { background: var(--cream); }

/* ── TYPE ───────────────────────────────────────── */
h1 {
  font-size: clamp(46px, 9vw, 68px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.5px;
  color: var(--blk);
}
h2 {
  font-size: clamp(24px, 4.5vw, 34px);
  font-weight: 500;
  line-height: 1.25;
  color: var(--blk);
  margin-bottom: 8px;
}
p {
  font-size: clamp(17px, 2.6vw, 19px);
  color: var(--g2);
  line-height: 1.85;
  margin-bottom: 20px;
}
p:last-child { margin-bottom: 0; }
em { font-style: italic; }

/* ── COMPONENTS ─────────────────────────────────── */
.s-label {
  display: block;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blk);
  font-weight: 700;
  margin-bottom: 24px;
  padding-left: 14px;
  border-left: 2px solid var(--gold);
}
.gold { color: var(--gold); }
.rule { width: 36px; height: 1px; background: var(--gold); margin: 32px 0; }
sup.eim {
  font-size: 8px;
  letter-spacing: 1px;
  color: var(--gold);
  font-weight: 700;
  vertical-align: super;
}

/* ── HERO BEATS ─────────────────────────────────── */
.hero-section {
  padding: 140px 0 110px;
  border-bottom: 0.5px solid var(--border);
}
.hero-section h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: clamp(62px, 13vw, 112px);
  line-height: 1.12;
  letter-spacing: -1px;
}
.hero-section h1 .bold-line {
  font-weight: 600;
  display: block;
}
.hero-beat {
  margin-top: 72px;
}
.hero-beat.beat-first {
  margin-top: 120px;
}
.beat-2 {
  font-size: clamp(19px, 3vw, 23px);
  color: var(--g2);
  line-height: 2.1;
  font-style: normal;
  margin: 0;
}
.beat-3 {
  font-size: clamp(19px, 3vw, 23px);
  color: var(--g1);
  line-height: 1.75;
  margin: 0;
}
.hero-bridge {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 0.5px solid var(--border);
}
.hero-bridge p {
  font-size: clamp(19px, 3vw, 23px);
  color: var(--blk);
  font-style: normal;
  margin: 0;
  font-weight: 500;
}

/* ── WHAT I DO ──────────────────────────────────── */
.what-i-do {
  padding: 88px 0;
  border-bottom: 0.5px solid var(--border);
}
.what-i-do p {
  font-size: clamp(20px, 3.5vw, 26px);
  color: var(--blk);
  line-height: 1.6;
  margin-bottom: 0;
}
.what-i-do p + p {
  margin-top: 44px;
}
.what-i-do p.shift {
  color: var(--blk);
  font-style: normal;
  font-weight: 600;
  margin-top: 64px;
  font-size: clamp(20px, 3.5vw, 28px);
}
.sr-lead {
  font-size: clamp(22px, 4vw, 30px);
  color: var(--blk);
  font-weight: 500;
  line-height: 1.35;
  margin-bottom: 14px;
}
.sr-rrr {
  font-size: 11px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0;
}

/* ── TERMS ──────────────────────────────────────── */
.term { padding: 24px 0; border-bottom: 0.5px solid var(--border); }
.term:first-child { border-top: 0.5px solid var(--border); }
.t-name { font-size: clamp(26px, 4vw, 36px); font-weight: 500; color: var(--blk); margin-bottom: 12px; }
.t-sub {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 12px; display: block;
}
.t-def { font-size: clamp(17px, 2.6vw, 20px); color: var(--g2); line-height: 1.8; margin: 0; }
sup.tm {
  font-size: 9px;
  color: var(--g3);
  font-weight: 400;
  vertical-align: super;
  letter-spacing: 0;
}

/* ── PATHS ──────────────────────────────────────── */
a.path {
  display: block;
  padding: 28px 0;
  border-bottom: 0.5px solid var(--border);
  text-decoration: none;
  transition: background 0.15s;
}
a.path:first-of-type { border-top: 0.5px solid var(--border); }
.path-label {
  font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold); font-weight: 700; margin-bottom: 6px; display: block;
}
.path-name {
  font-size: clamp(18px, 3vw, 22px); font-weight: 500; color: var(--blk);
  margin-bottom: 6px; display: block; transition: color 0.2s;
}
.path-desc {
  font-size: clamp(15px, 2.2vw, 17px); color: var(--g3); line-height: 1.6; display: block;
}
.path-arrow { display: inline-block; margin-top: 10px; font-size: 13px; color: var(--gold); }
a.path:hover .path-name { color: var(--gold); }

/* Path card variant (homepage applications) */
a.path.path-card {
  border: 0.5px solid var(--border);
  border-top: 2px solid rgba(201,168,76,0.25);
  padding: 24px;
  margin-bottom: 10px;
}
a.path.path-card:first-of-type {
  border-top: 2px solid rgba(201,168,76,0.25);
}

/* Path large variant (SR gateway — no desc) */
a.path.path-lg .path-name {
  font-size: clamp(22px, 4vw, 30px);
}
a.path.path-lg { padding: 36px 0; }

/* ── STATS ──────────────────────────────────────── */
.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 28px 0; }
.stat-box { border: 0.5px solid var(--border); padding: 18px 16px; background: var(--white); }
.stat-n { font-size: clamp(28px, 5vw, 36px); font-weight: 500; color: var(--gold); line-height: 1; margin-bottom: 6px; }
.stat-t { font-size: 13px; color: var(--g2); line-height: 1.5; }


.closing-section { padding: 100px 0; }
.closing-cta {
  display: block;
  text-align: center;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 0.5px solid var(--gold);
  padding-bottom: 2px;
  width: fit-content;
  margin: 0 auto;
}
.closing-cta:hover { color: var(--blk); border-color: var(--blk); }

/* ── CONTACT ────────────────────────────────────── */
.contact-section { padding: 100px 0; }
.contact-instruction {
  font-size: clamp(20px, 3.5vw, 26px);
  color: var(--g1);
  line-height: 1.65;
  margin-bottom: 48px;
  max-width: 480px;
}
.contact-email {
  display: block;
  font-size: clamp(26px, 5vw, 42px);
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  margin-bottom: 32px;
  transition: color 0.2s;
  letter-spacing: -0.3px;
}
.contact-email:hover { color: var(--blk); }
.contact-linkedin {
  font-size: 14px;
  color: var(--g4);
  margin-bottom: 0;
}
.contact-linkedin a {
  color: var(--g3);
  text-decoration: none;
  transition: color 0.2s;
}
.contact-linkedin a:hover { color: var(--gold); }

/* ── FOOTER ─────────────────────────────────────── */
footer { padding: 40px 0; border-top: 0.5px solid var(--border); }
.foot-inner {
  max-width: 640px; margin: 0 auto; padding: 0 36px;
  display: flex; justify-content: space-between; align-items: center;
}
.foot-email { font-size: 14px; color: var(--g3); text-decoration: none; }
.foot-right { font-size: 12px; color: var(--g4); }

/* ── HOMEPAGE — DOCUMENT STYLE ──────────────────── */

/* Hero */
.page-hero {
  padding: 120px 0 100px;
}
.hero-h1-wrap {
  min-height: 100svh;
  display: flex;
  align-items: center;
}
.home-h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  line-height: 1.08;
  letter-spacing: -0.5px;
  color: var(--blk);
}
.h1-bold {
  display: block;
  font-size: clamp(44px, 7.5vw, 68px);
  font-weight: 300;
}
.h1-thin {
  display: block;
  font-size: clamp(44px, 7.5vw, 68px);
  font-weight: 300;
}
.home-beat { }
.home-beat-1 { margin-top: 88px; }
.home-beat-2 { margin-top: 60px; }
.beat-mid {
  font-size: clamp(18px, 2.8vw, 21px);
  color: var(--g2);
  line-height: 2;
  margin: 0;
}

/* Document sections — one surface, separated by border + space */
.doc-section {
  padding: 100px 0;
  border-top: 0.5px solid var(--border);
}

/* Instrument lines */
.instrument { }
.inst-line {
  font-size: clamp(19px, 3vw, 24px);
  color: var(--blk);
  line-height: 1.6;
  margin-bottom: 0;
}
.inst-line + .inst-line {
  margin-top: 40px;
}
.inst-close {
  font-size: clamp(19px, 3vw, 24px);
  color: var(--blk);
  font-weight: 600;
  line-height: 1.5;
  margin-top: 56px;
  margin-bottom: 0;
}

/* Paths grouped below instrument */
.paths-group {
  margin-top: 60px;
}
.path-name-gold {
  color: var(--gold) !important;
}
a.path:hover .path-name-gold {
  color: var(--blk) !important;
}


/* Bio brand marks — gold + bold, synced */
.eim-mark {
  color: var(--gold);
  font-weight: 600;
}

/* Gold only — no bold */
.gold-mark { color: var(--gold); }

/* ── FOR PEOPLE ─────────────────────────────────── */
.recognition-line {
  font-size: clamp(18px, 2.8vw, 22px);
  color: var(--g3);
  line-height: 1.7;
  margin-bottom: 0;
}
.recognition-line + .recognition-line { margin-top: 22px; }
.recognition-close {
  font-size: clamp(19px, 3vw, 24px);
  font-weight: 500;
  color: var(--g2);
  line-height: 1.5;
  margin-top: 36px;
  margin-bottom: 0;
}
.service-sub {
  font-size: clamp(18px, 2.8vw, 24px);
  color: var(--g2);
  margin-top: 36px;
  line-height: 1.6;
}

/* ── BACK NAV ────────────────────────────────────── */
.back-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 0;
  border-top: 0.5px solid var(--border);
  font-size: 14px;
  letter-spacing: 0.5px;
}
.back-nav a {
  color: var(--g3);
  text-decoration: none;
  transition: color 0.2s;
}
.back-nav a:hover { color: var(--gold); }

/* ── PAGE TRAIL (top of sub-pages) ─────────────── */
.page-trail {
  padding: 10px 0;
  border-bottom: 0.5px solid var(--border);
}
.page-trail a {
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--g3);
  text-decoration: none;
  padding: 0 32px;
  display: inline-block;
}
.page-trail a:hover { color: var(--gold); }

/* ── SIGNAL RESTORED ────────────────────────────── */
.signal-restored {
  font-size: clamp(17px, 2.6vw, 20px);
  color: var(--gold);
  font-weight: 500;
  margin-top: 32px;
  letter-spacing: 0.5px;
}

/* ── NEED / BRING (naming) ──────────────────────── */
.nb-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 0.5px solid var(--border);
  align-items: baseline;
}
.nb-row:first-child { border-top: 0.5px solid var(--border); }
.nb-label {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  padding-top: 4px;
}
.nb-text {
  font-size: clamp(16px, 2.4vw, 18px);
  color: var(--g2);
  line-height: 1.65;
}
@media (max-width: 480px) {
  .nb-row { grid-template-columns: 1fr; gap: 6px; }
}

/* ── SIGNAL GOLD ─────────────────────────────────── */
.signal-gold {
  font-size: clamp(17px, 2.6vw, 20px);
  font-weight: 600;
  color: var(--gold);
  margin-top: 32px;
  letter-spacing: 0.5px;
}

/* ── CARDS ──────────────────────────────────────── */
.card {
  border: 0.5px solid var(--border);
  border-top: 2px solid rgba(201,168,76,0.25);
  padding: 22px 24px;
  margin-bottom: 10px;
  background: var(--white);
}
.card:last-child { margin-bottom: 0; }
.card-lbl {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 8px;
}
.card-body {
  font-size: clamp(16px, 2.4vw, 18px);
  color: var(--g2);
  line-height: 1.65;
  margin: 0;
}

.card-title {
  font-size: clamp(19px, 3vw, 23px);
  font-weight: 500;
  color: var(--blk);
  margin-bottom: 8px;
  line-height: 1.3;
}

/* ── GET LIST ───────────────────────────────────── */
.get-list { list-style: none; }
.get-list li {
  padding: 20px 0;
  border-bottom: 0.5px solid var(--border);
  font-size: clamp(16px, 2.4vw, 18px);
  color: var(--g2);
  line-height: 1.65;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.get-list li:first-child { border-top: 0.5px solid var(--border); }
.get-list li::before {
  content: '—';
  color: var(--gold);
  flex-shrink: 0;
  font-weight: 500;
}

/* ── EIM NOTE ───────────────────────────────────── */
.eim-note {
  font-size: 13px;
  color: var(--g4);
  margin-top: 16px;
  padding-top: 16px;
  border-top: 0.5px solid var(--border);
}
.eim-note sup { font-size: 8px; color: var(--gold); font-weight: 700; vertical-align: super; }

/* ── RRR / HOW IT WORKS ─────────────────────────── */
.rrr-row {
  display: grid;
  grid-template-columns: 44px 110px 1fr;
  gap: 20px;
  padding: 32px 0;
  border-bottom: 0.5px solid var(--border);
  align-items: start;
}
.rrr-row:first-child { border-top: 0.5px solid var(--border); }
.rrr-n {
  font-size: 20px;
  color: var(--gold);
  font-weight: 600;
  line-height: 1;
  padding-top: 2px;
}
.rrr-lbl {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  padding-top: 5px;
}
.rrr-txt {
  font-size: clamp(16px, 2.4vw, 18px);
  color: var(--g2);
  line-height: 1.75;
}

/* ── SERVICE PAGES ──────────────────────────────── */
.service-hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  border-bottom: 0.5px solid var(--border);
}
.service-h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: clamp(40px, 7vw, 60px);
  line-height: 1.1;
  letter-spacing: -0.3px;
  color: var(--blk);
  margin-bottom: 28px;
}

.naming-lead {
  font-size: clamp(19px, 3vw, 22px);
  color: var(--blk);
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 28px;
}
.cta-instruction {
  font-size: clamp(20px, 3.5vw, 26px);
  color: var(--g1);
  line-height: 1.65;
  margin-bottom: 16px;
}
.cta-detail {
  font-size: clamp(17px, 2.4vw, 20px);
  color: var(--g2);
  line-height: 1.75;
  margin-bottom: 8px;
}
.cta-note {
  font-size: clamp(14px, 1.8vw, 16px);
  color: var(--g3);
  margin-bottom: 44px;
}

/* ── MEDIA QUERIES ──────────────────────────────── */
@media (max-width: 640px) {
  .nav-inner { padding: 0 24px; }
  .wrap { padding: 0 24px; }
  .section { padding: 60px 0; }
  .doc-section { padding: 60px 0; }
  .page-hero { padding: 0; }
  .hero-h1-wrap {
    min-height: auto;
    padding: 80px 0 60px;
  }
  .service-hero { min-height: 100svh; }
  .home-hero { min-height: calc(100svh + 80px); }
  .closing-section { padding: 72px 0; }
  .contact-section { padding: 72px 0; }
  .foot-inner { padding: 0 24px; }
  .tagline-section.tagline-hero { padding: 28px 24px; }
  .tagline-section.tagline-sub { padding: 10px 16px; font-size: 9.5px; letter-spacing: 1px; }
  .home-beat-1 { margin-top: 52px; }
  .home-beat-2 { margin-top: 40px; }
  .nav-eim { display: none; }
  .rrr-row { grid-template-columns: 32px 90px 1fr; gap: 14px; padding: 24px 0; }
  .rrr-n { font-size: 16px; }
}

@media (max-width: 480px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .stat-grid { grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .nav-drawer .drawer-tagline { font-size: 9.5px; letter-spacing: 0.8px; padding: 16px 16px; }
}
