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

:root {
  --ink: #1a1a18;
  --ink-muted: #4a4a46;
  --ink-faint: #8a8a84;
  --surface: #f4f2ed;
  --white: #fdfcf9;
  --rule: rgba(26,26,24,0.10);
  --gold: #b8972a;
  --gold-light: #e8d99a;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--surface);
  color: var(--ink);
  font-weight: 300;
  line-height: 1.6;
  font-size: 15px;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--rule);
  padding: 0 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--ink);
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}

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

.nav-cta {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  padding: 8px 20px;
  cursor: pointer;
  background: transparent;
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  transition: all 0.2s;
  text-decoration: none;
}

.nav-cta:hover { background: var(--ink); color: var(--white); }

.nav-legal {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-legal:hover { color: var(--ink); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* ── HERO ── */
.hero {
  min-height: 90vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
}

.hero-left {
  padding: 9rem 5rem 8rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--rule);
}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2.5rem;
}

.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 5vw, 68px);
  font-weight: 300;
  line-height: 1.08;
  color: var(--ink);
  margin-bottom: 2.75rem;
  letter-spacing: -0.01em;
}

.hero-headline em { font-style: italic; color: var(--ink-muted); }

.hero-sub {
  font-size: 15px;
  color: var(--ink-muted);
  line-height: 1.85;
  max-width: 440px;
  margin-bottom: 3.5rem;
  font-weight: 300;
}

.hero-ctas { display: flex; gap: 1.25rem; align-items: center; flex-wrap: wrap; }

.btn-primary {
  background: var(--ink);
  color: var(--white);
  border: none;
  padding: 14px 32px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  cursor: pointer;
  transition: opacity 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover { opacity: 0.8; }

.btn-ghost {
  background: transparent;
  color: var(--ink-muted);
  border: none;
  padding: 14px 0;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
  text-decoration: none;
}

.btn-ghost:hover { color: var(--ink); }

.hero-right {
  padding: 9rem 3rem 8rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-stat-item {
  padding: 2.25rem 0;
  border-bottom: 1px solid var(--rule);
}

.hero-stat-item:first-child { border-top: 1px solid var(--rule); }

.hero-stat-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 0.6rem;
}

.hero-stat-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.3;
}

/* ── SHARED ── */
.section { padding: 8rem 4rem; }

.section-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

/* ── INSIGHT ── */
.insight-section {
  background: var(--ink);
  color: var(--white);
  padding: 9rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
}

.insight-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 3.5vw, 54px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--white);
}

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

.insight-body {
  font-size: 15px;
  color: rgba(253,252,249,0.65);
  line-height: 2.0;
  font-weight: 300;
}

/* ── SERVICES ── */
.services-section {
  padding: 8rem 4rem;
  border-top: 1px solid var(--rule);
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 3.5rem;
}

.service-item {
  padding: 2.25rem 3rem 2.25rem 0;
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 2rem;
  align-items: start;
}

.service-item:nth-child(odd) {
  padding-right: 4rem;
  padding-left: 0;
}

.service-item:nth-child(even) {
  padding-left: 4rem;
  padding-right: 0;
  border-left: 1px solid var(--rule);
}

.service-num { display: none; }

.service-title {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--ink);
  line-height: 1.4;
  padding-top: 0.1rem;
}

.service-desc {
  font-size: 13px;
  color: var(--ink-muted);
  line-height: 1.8;
  font-weight: 300;
}

/* ── PROCESS ── */
.process-section {
  background: var(--surface);
  padding: 8rem 4rem;
  border-top: 1px solid var(--rule);
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 3.5rem;
}

.step {
  padding: 2.25rem 4rem 2.25rem 0;
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 1.5rem;
  align-items: start;
}

.step:nth-child(even) {
  padding-left: 4rem;
  padding-right: 0;
  border-left: 1px solid var(--rule);
}

.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  color: var(--gold);
  font-weight: 400;
  padding-top: 0.1rem;
  line-height: 1.4;
}

.step-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.step-body {
  font-size: 13px;
  color: var(--ink-muted);
  line-height: 1.8;
  font-weight: 300;
}

.step-content { /* wrapper for title+body inside step grid */ }

/* ── TRACK RECORD ── */
.track-section {
  background: var(--white);
  padding: 8rem 4rem;
  border-top: 1px solid var(--rule);
}

.track-intro {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 8rem;
  align-items: start;
  margin-bottom: 5rem;
}

.track-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 300;
  line-height: 1.2;
  margin-top: 1.5rem;
  color: var(--ink);
}

.track-subtext {
  font-size: 15px;
  color: var(--ink-muted);
  line-height: 2.0;
  font-weight: 300;
  margin-top: 2.75rem;
}

.cases-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--rule);
}

.case-card {
  background: var(--white);
  padding: 3rem;
  transition: background 0.2s;
}

.case-card:hover { background: var(--surface); }

.case-tag {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.case-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 1.25rem;
}

.case-body {
  font-size: 13px;
  color: var(--ink-muted);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.case-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.case-bullets li {
  font-size: 12px;
  color: var(--ink-muted);
  font-weight: 300;
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.7;
}

.case-bullets li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 11px;
}

.track-proof {
  display: none;
}

.track-footnote {
  margin-top: 3rem;
  font-size: 12px;
  color: var(--ink-faint);
  line-height: 1.8;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
}

/* ── ENGAGEMENT MODEL ── */
.model-section {
  padding: 8rem 4rem;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 8rem;
  align-items: start;
  border-top: 1px solid var(--rule);
  background: var(--surface);
}

.model-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 300;
  line-height: 1.2;
  margin-top: 1.5rem;
  color: var(--ink);
}

.model-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: transparent;
  border: none;
}

.model-item {
  background: transparent;
  padding: 2.5rem 3rem 2.5rem 0;
  border-top: 1px solid var(--rule);
}

.model-item:nth-child(even) {
  padding-left: 3rem;
  padding-right: 0;
}

.model-item-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 0.75rem;
}

.model-item-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.model-item-desc {
  font-size: 13px;
  color: var(--ink-muted);
  line-height: 1.8;
  font-weight: 300;
}

.model-note {
  display: none;
}

/* ── ABOUT ── */
.about-section {
  background: var(--ink);
  color: var(--white);
  padding: 8rem 4rem;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 8rem;
  align-items: start;
}

.about-label { color: var(--gold-light) !important; }

.about-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 300;
  line-height: 1.15;
  margin-top: 1.5rem;
  color: var(--white);
}

.about-body {
  font-size: 15px;
  color: rgba(253,252,249,0.65);
  line-height: 2.0;
  font-weight: 300;
}

.about-body p + p { margin-top: 1.75rem; }

/* ── CTA ── */
.cta-section {
  padding: 10rem 4rem;
  text-align: center;
  border-top: 1px solid var(--rule);
  background: var(--white);
}

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

.cta-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 300;
  line-height: 1.15;
  max-width: 720px;
  margin: 1.75rem auto 2.75rem;
  color: var(--ink);
}

.cta-sub {
  font-size: 15px;
  color: var(--ink-muted);
  max-width: 520px;
  margin: 0 auto 3.5rem;
  line-height: 1.9;
}

.contact-form {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
}

.contact-field {
  border: 1px solid var(--rule);
  background: var(--surface);
  padding: 14px 22px;
  font-size: 14px;
  color: var(--ink-muted);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  min-width: 200px;
  outline: none;
  transition: border-color 0.2s;
  flex: 1 1 200px;
}

textarea.contact-field {
  width: 100%;
  flex: 1 1 100%;
  min-width: 0;
  resize: vertical;
  min-height: 120px;
}

.contact-field:focus { border-color: var(--gold); }
.contact-field::placeholder { color: var(--ink-faint); }

.cta-meta {
  margin-top: 2.5rem;
  font-size: 12px;
  color: var(--ink-faint);
  letter-spacing: 0.04em;
}

/* ── FOOTER ── */
footer {
  background: var(--ink);
  border-top: 1px solid rgba(253,252,249,0.08);
  padding: 3rem 4rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
}

.footer-brand { display: flex; flex-direction: column; gap: 0.35rem; }

.footer-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 400;
  color: rgba(253,252,249,0.85);
  letter-spacing: 0.03em;
}

.footer-tagline {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(253,252,249,0.3);
}

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  justify-content: center;
}

.footer-links a {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(253,252,249,0.4);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: rgba(253,252,249,0.8); }

.footer-right {
  text-align: right;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(253,252,249,0.3);
  line-height: 1.7;
}

/* ── DISCLAIMER ── */
.disclaimer {
  background: #111110;
  color: rgba(253,252,249,0.25);
  padding: 1rem 4rem;
  font-size: 11px;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

/* ── ANIMATIONS ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.85s cubic-bezier(0.22,1,0.36,1),
              transform 0.85s cubic-bezier(0.22,1,0.36,1);
}

[data-reveal="slide"] {
  transform: translateX(-20px);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translate(0, 0);
}

/* hero loads immediately — no scroll needed */
.hero-eyebrow, .hero-headline, .hero-sub, .hero-ctas {
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.8s cubic-bezier(0.22,1,0.36,1) forwards;
}
.hero-eyebrow  { animation-delay: 0.1s; }
.hero-headline { animation-delay: 0.25s; }
.hero-sub      { animation-delay: 0.4s; }
.hero-ctas     { animation-delay: 0.55s; }

.hero-stat-item {
  opacity: 0;
  animation: heroFadeUp 0.7s cubic-bezier(0.22,1,0.36,1) forwards;
}
.hero-stat-item:nth-child(1) { animation-delay: 0.35s; }
.hero-stat-item:nth-child(2) { animation-delay: 0.48s; }
.hero-stat-item:nth-child(3) { animation-delay: 0.61s; }
.hero-stat-item:nth-child(4) { animation-delay: 0.74s; }

@keyframes heroFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 0 1.5rem; }
  .nav-links { display: none; }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 5rem 1.5rem 3.5rem; border-right: none; border-bottom: 1px solid var(--rule); }
  .hero-right { padding: 3.5rem 1.5rem 5rem; }

  .insight-section { grid-template-columns: 1fr; gap: 3rem; padding: 5rem 1.5rem; }

  .services-section { padding: 5rem 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .service-item { padding: 2rem 0 !important; border-left: none !important; grid-template-columns: 1fr; gap: 0.5rem; }

  .process-section { padding: 5rem 1.5rem; }
  .process-steps { grid-template-columns: 1fr; }
  .step { padding: 2rem 0 !important; border-left: none !important; }

  .track-section { padding: 5rem 1.5rem; }
  .track-intro { grid-template-columns: 1fr; gap: 1rem; }
  .track-subtext { margin-top: 0; }
  .cases-grid { grid-template-columns: 1fr; }
  .case-card { padding: 2rem 1.5rem; }

  .model-section { grid-template-columns: 1fr; gap: 2.5rem; padding: 5rem 1.5rem; }
  .model-items { grid-template-columns: 1fr; }
  .model-item { padding: 2rem 0 !important; }

  .about-section { grid-template-columns: 1fr; gap: 2.5rem; padding: 5rem 1.5rem; }

  .cta-section { padding: 6rem 1.5rem; }

  footer {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 2.5rem 1.5rem;
    gap: 1.5rem;
  }
  .footer-brand { align-items: center; }
  .footer-right { text-align: center; }
  .disclaimer { padding: 1rem 1.5rem; }
}
