:root {
  --black: #080808;
  --ink: #161513;
  --gold: #caa36a;
  --gold-light: #e2c89e;
  --cream: #f3eee5;
  --white: #fffdf8;
  --muted: #a9a397;
  --line: rgba(202, 163, 106, .28);
  --shell: min(1180px, calc(100% - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--white);
  background: var(--black);
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; }
img { display: block; max-width: 100%; }
.shell { width: var(--shell); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 100; left: 16px; top: -100px; background: var(--gold); color: var(--black); padding: 10px 16px; }
.skip-link:focus { top: 12px; }

.site-header {
  position: absolute;
  z-index: 20;
  inset: 0 0 auto;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.nav-wrap { height: 104px; display: flex; align-items: center; justify-content: space-between; }
.brand img { width: 142px; height: 82px; object-fit: contain; }
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a { text-decoration: none; font-size: 14px; letter-spacing: .05em; transition: color .2s; }
.main-nav a:hover, .main-nav a:focus-visible { color: var(--gold-light); }
.main-nav .nav-cta { padding: 11px 18px; border: 1px solid var(--gold); color: var(--gold-light); }
.menu-button { display: none; }

.hero {
  position: relative;
  min-height: 930px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 32%, rgba(202,163,106,.13), transparent 28%),
    linear-gradient(120deg, #050505 0%, #0d0c0b 64%, #161109 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent);
}
.hero-glow { position: absolute; width: 440px; height: 440px; border: 1px solid var(--line); border-radius: 50%; right: -160px; top: 210px; }
.hero-glow::after { content: ""; position: absolute; inset: 50px; border: 1px solid var(--line); border-radius: 50%; }
.hero-portrait {
  position: absolute;
  z-index: 0;
  width: min(48vw, 720px);
  right: -2vw;
  top: 118px;
  opacity: .6;
  filter: contrast(1.08) saturate(.7);
  mix-blend-mode: screen;
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.5) 24%, black 52%, transparent 100%);
  pointer-events: none;
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(290px, .65fr); gap: 90px; align-items: end; padding-top: 150px; }
.eyebrow { margin: 0 0 24px; color: var(--gold-light); font-size: 12px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; }
.eyebrow.dark { color: #805f36; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: "Playfair Display", Georgia, serif; font-weight: 600; letter-spacing: -.035em; line-height: 1.08; }
h1 { max-width: 840px; margin-bottom: 36px; font-size: clamp(54px, 7vw, 96px); }
h1 em, h2 em { color: var(--gold); font-weight: 600; }
.hero-copy > p:not(.eyebrow) { max-width: 680px; color: #d3d0ca; }
.hero-intro { margin-bottom: 2px; color: var(--white) !important; font-size: 20px; font-weight: 500; }
.hero-actions { display: flex; gap: 30px; align-items: center; margin-top: 42px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 18px; min-height: 54px; padding: 0 24px; text-decoration: none; font-weight: 600; font-size: 15px; transition: transform .2s, background .2s; }
.button:hover { transform: translateY(-2px); }
.button-gold { background: var(--gold); color: #16110b; }
.button-gold:hover { background: var(--gold-light); }
.text-link { color: #d4d0c8; text-decoration: none; font-size: 14px; border-bottom: 1px solid #676159; padding-bottom: 5px; }
.hero-statement { border-left: 1px solid var(--gold); padding-left: 30px; margin-bottom: 10px; }
.statement-number { display: block; margin-bottom: 22px; color: var(--gold); font-size: 12px; letter-spacing: .2em; }
.hero-statement p { font-family: "Playfair Display", Georgia, serif; font-size: 23px; line-height: 1.45; }
.hero-statement .small { font-family: "DM Sans", sans-serif; color: var(--muted); font-size: 14px; line-height: 1.65; }
.gold-line { width: 52px; height: 1px; margin: 24px 0; background: var(--gold); }
.scroll-cue { position: absolute; bottom: 30px; left: 50%; width: 1px; height: 44px; background: rgba(255,255,255,.18); }
.scroll-cue span { display: block; width: 1px; height: 16px; background: var(--gold); animation: travel 2s ease-in-out infinite; }
@keyframes travel { 0%,100% { transform: translateY(0); opacity: .35; } 50% { transform: translateY(28px); opacity: 1; } }

.section { padding: 130px 0; }
.section-light { background: var(--white); color: var(--ink); }
.section-cream { background: var(--cream); color: var(--ink); }
.section-black { background: #0d0c0b; color: var(--white); }
.two-col { display: grid; grid-template-columns: .88fr 1.12fr; gap: 110px; }
h2 { font-size: clamp(42px, 5vw, 68px); }
.body-large { font-size: 19px; }
.body-large > p:first-child { font-size: 24px; line-height: 1.55; }
.signal-list { list-style: none; padding: 14px 0 14px; margin: 0; }
.signal-list li { position: relative; padding: 11px 0 11px 32px; border-bottom: 1px solid #ded7cb; }
.signal-list li::before { content: ""; position: absolute; left: 3px; top: 24px; width: 5px; height: 5px; border-radius: 50%; background: #9b7441; }
.talent-panel { display: grid; grid-template-columns: .88fr 1.12fr; gap: 110px; margin-top: 82px; padding: 54px 58px 58px; background: var(--cream); border-top: 3px solid var(--gold); }
.talent-panel h3 { max-width: 430px; margin: 0; font-family: "Playfair Display", Georgia, serif; font-size: clamp(34px, 4vw, 56px); line-height: 1.04; }
.talent-copy p:first-child { margin-top: 0; }
.talent-copy p:last-child { margin-bottom: 0; }
.talent-copy strong { color: var(--ink); }

.question-split { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; border: 1px solid var(--line); background: var(--line); }
.question { min-height: 290px; padding: 36px 28px; display: flex; flex-direction: column; justify-content: space-between; background: #0d0c0b; }
.question:nth-child(2) { background: linear-gradient(135deg, #0d0c0b, #17130e); }
.question:nth-child(3) { background: linear-gradient(135deg, #12100d, #1e1811); }
.question:nth-child(4) { background: linear-gradient(135deg, #17130e, #2a2015); }
.question span { color: var(--gold); text-transform: uppercase; font-size: 12px; letter-spacing: .2em; }
.question p { margin: 0; font-family: "Playfair Display", Georgia, serif; font-size: clamp(25px, 2.35vw, 35px); line-height: 1.14; }
.question.muted { color: #77736e; }
blockquote { max-width: 930px; margin: 90px auto 0; text-align: center; font-family: "Playfair Display", Georgia, serif; font-size: clamp(26px, 3.3vw, 42px); line-height: 1.42; font-style: italic; color: var(--gold-light); }

.scan-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(125deg, #090908 0%, #12100d 60%, #241a0e 100%);
}
.scan-section::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -250px;
  top: -210px;
  border: 1px solid var(--line);
  border-radius: 50%;
}
.scan-grid { position: relative; display: grid; grid-template-columns: 1.08fr .92fr; gap: 100px; align-items: center; }
.scan-copy h2 { max-width: 720px; }
.scan-copy h2 em { display: block; }
.scan-lead { max-width: 720px; color: var(--white); font-size: 23px; line-height: 1.55; }
.scan-copy > p:not(.eyebrow):not(.scan-lead) { max-width: 690px; color: #bdb8b0; }
.scan-copy .button { margin-top: 24px; }
.scan-outcome { padding: 48px; border: 1px solid var(--gold); background: rgba(255,255,255,.035); box-shadow: 0 30px 80px rgba(0,0,0,.24); }
.scan-number { display: block; margin-bottom: 48px; color: var(--gold); font-size: 12px; letter-spacing: .2em; }
.scan-kicker { margin-bottom: 12px; color: var(--gold-light); font-size: 12px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
.scan-outcome h3 { margin-bottom: 28px; font-family: "Playfair Display", Georgia, serif; font-size: 31px; line-height: 1.25; }
.scan-list { list-style: none; padding: 0; margin: 0; }
.scan-list li { position: relative; padding: 16px 0 16px 30px; border-top: 1px solid var(--line); color: #d2cec7; font-size: 15px; line-height: 1.6; }
.scan-list li::before { content: ""; position: absolute; left: 3px; top: 25px; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }
.scan-note { margin: 24px 0 0; color: #8f8980; font-size: 13px; line-height: 1.6; }
.scan-price { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--gold); }
.scan-price > span { color: #aaa49b; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }
.scan-price strong { color: var(--gold-light); font-family: "Playfair Display", Georgia, serif; font-size: 34px; line-height: 1; font-weight: 600; white-space: nowrap; }
.scan-price small { color: #aaa49b; font-family: "DM Sans", sans-serif; font-size: 12px; font-weight: 500; }

.section-heading { max-width: 760px; margin-bottom: 64px; }
.section-heading > p:last-child { max-width: 650px; font-size: 19px; }
.section-heading.compact { margin-bottom: 54px; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid #cfc5b5; border-left: 1px solid #cfc5b5; }
.process-card { min-height: 360px; padding: 32px 28px; border-right: 1px solid #cfc5b5; border-bottom: 1px solid #cfc5b5; }
.process-card > span { display: block; color: #916d3d; font-size: 12px; letter-spacing: .15em; margin-bottom: 95px; }
.process-card h3 { font-family: "Playfair Display", Georgia, serif; font-size: 28px; line-height: 1.2; }
.process-card p { color: #5d574f; font-size: 15px; line-height: 1.65; }
.process-card.featured { background: var(--black); color: var(--white); border-color: var(--black); }
.process-card.featured p { color: #c5c0b8; }
.trajectory-offer { display: grid; grid-template-columns: 1.2fr .8fr; gap: 1px; margin-top: 48px; border: 1px solid #d4cab9; background: #d4cab9; }
.trajectory-deliverable { padding: 52px 54px; background: var(--white); }
.trajectory-deliverable h3 { max-width: 650px; margin: 0 0 30px; font-family: "Playfair Display", Georgia, serif; font-size: clamp(32px, 4vw, 48px); line-height: 1.12; }
.trajectory-list { list-style: none; margin: 0; padding: 0; }
.trajectory-list li { position: relative; padding: 13px 0 13px 30px; border-top: 1px solid #ded7cb; color: #554f47; }
.trajectory-list li::before { content: ""; position: absolute; left: 3px; top: 24px; width: 5px; height: 5px; border-radius: 50%; background: #9b7441; }
.trajectory-note { max-width: 720px; margin: 28px 0 0; color: #716a61; font-size: 14px; }
.trajectory-investment { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 52px 44px; color: var(--white); background: linear-gradient(140deg, #0c0b0a, #21180f); }
.offer-label { color: var(--gold); font-size: 12px; letter-spacing: .18em; text-transform: uppercase; }
.trajectory-investment > p:not(.investment-note) { margin: 38px 0 8px; color: #aaa49b; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }
.trajectory-investment strong { color: var(--gold-light); font-family: "Playfair Display", Georgia, serif; font-size: clamp(38px, 4vw, 52px); line-height: 1; font-weight: 600; white-space: nowrap; }
.trajectory-investment strong small { color: #aaa49b; font-family: "DM Sans", sans-serif; font-size: 12px; font-weight: 500; }
.investment-note { margin: 28px 0 34px; color: #a9a39a; font-size: 14px; line-height: 1.65; }
.trajectory-investment .button { width: 100%; text-align: center; }

.result-section { background: linear-gradient(120deg, #0b0a09, #171109); }
.result-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 110px; align-items: start; }
.results { border-top: 1px solid var(--line); }
.result { display: grid; grid-template-columns: 70px 1fr; gap: 12px; padding: 25px 0; border-bottom: 1px solid var(--line); align-items: center; }
.result span { color: var(--gold); font-size: 12px; letter-spacing: .12em; }
.result p { margin: 0; font-family: "Playfair Display", Georgia, serif; font-size: 24px; line-height: 1.35; }

.impact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: #d9d1c5; border: 1px solid #d9d1c5; }
.impact-item { min-height: 175px; padding: 34px; display: flex; flex-direction: column; justify-content: space-between; background: var(--white); }
.impact-item strong { color: #9b7441; font-size: 13px; letter-spacing: .15em; text-transform: uppercase; }
.impact-item span { font-family: "Playfair Display", Georgia, serif; font-size: 25px; line-height: 1.28; }
.nuance { max-width: 790px; margin: 40px 0 0 auto; color: #6e685f; font-size: 14px; }

.practice-section { color: var(--ink); background: #e9e1d5; }
.practice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; border: 1px solid #d3c8b7; background: #d3c8b7; }
.practice-card { min-height: 520px; padding: 38px 34px; background: var(--white); }
.practice-card > span { display: block; margin-bottom: 58px; color: #916d3d; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; }
.practice-card h3 { margin: 0 0 26px; font-family: "Playfair Display", Georgia, serif; font-size: 29px; line-height: 1.18; }
.practice-card p { color: #625c54; font-size: 15px; line-height: 1.65; }
.practice-card.featured { color: var(--white); background: linear-gradient(140deg, #0c0b0a, #21180f); }
.practice-card.featured h3 { color: var(--gold-light); }
.practice-card.featured p { color: #c2bdb5; }
.practice-closing { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: start; margin-top: 52px; padding-top: 46px; border-top: 1px solid #cbbda8; }
.practice-closing h3 { margin: 0; font-family: "Playfair Display", Georgia, serif; font-size: clamp(31px, 4vw, 48px); line-height: 1.1; }
.practice-closing p { margin: 0; color: #5f594f; font-size: 18px; }

.values-section { background: #10100f; }
.values-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 110px; }
.values-intro > p:not(.eyebrow) { color: #bbb6ae; max-width: 580px; }
.values-intro > p:nth-of-type(2) { color: var(--white); font-size: 20px; }
.value-list { border-top: 1px solid var(--line); }
.value-list > div { display: grid; grid-template-columns: 170px 1fr; gap: 28px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.value-list span { color: var(--gold-light); font-family: "Playfair Display", Georgia, serif; font-size: 24px; }
.value-list p { margin: 0; color: #aaa59d; font-size: 15px; }

.manifesto { padding: 150px 0; color: var(--ink); background: var(--gold); overflow: hidden; }
.manifesto-inner { position: relative; }
.manifesto p { position: relative; z-index: 1; margin: 0; font-family: "Playfair Display", Georgia, serif; font-size: clamp(28px, 4vw, 56px); line-height: 1.35; }
.manifesto p:not(:first-of-type) { color: rgba(22,21,19,.62); }
.lion-mark { position: absolute; right: -30px; top: -130px; font-family: Georgia, serif; font-size: 440px; line-height: 1; color: rgba(255,255,255,.12); }

.about-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; align-items: center; }
.portrait-wrap { position: relative; }
.portrait-wrap img { width: 100%; aspect-ratio: 4/5.2; object-fit: cover; object-position: 50% 38%; filter: saturate(.82) contrast(1.06); }
.portrait-wrap::after { content: ""; position: absolute; inset: 20px -20px -20px 20px; border: 1px solid #b18b57; z-index: 0; pointer-events: none; }
.portrait-label { position: absolute; z-index: 2; left: 20px; bottom: 20px; padding: 14px 18px; background: rgba(8,8,8,.9); color: var(--white); font-size: 15px; line-height: 1.35; }
.portrait-label span { color: var(--gold-light); font-size: 12px; }
.about-copy .lead { font-size: 23px; line-height: 1.55; }
.about-copy > p:not(.eyebrow):not(.lead):not(.signature) { color: #615c54; }
.signature { margin-top: 34px; color: #8a6536; font-family: "Playfair Display", Georgia, serif; font-size: 26px; font-style: italic; }

.contact-section { padding: 140px 0; background: #080808; text-align: center; }
.contact-inner { max-width: 900px; }
.contact-inner h2 { margin-bottom: 26px; }
.contact-inner > p:not(.eyebrow) { max-width: 690px; margin-inline: auto; color: #bbb6ae; font-size: 19px; }
.contact-inner .button { margin-top: 24px; }
.contact-inner small { display: block; margin-top: 20px; color: #78736c; font-size: 12px; }
.contact-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px 28px; margin-top: 28px; }
.contact-links a { color: #aaa49b; font-size: 15px; text-underline-offset: 5px; transition: color .2s ease; }
.contact-links a:hover, .contact-links a:focus-visible { color: var(--gold-light); }

footer { padding: 55px 0; border-top: 1px solid rgba(255,255,255,.1); background: #050505; }
.footer-grid { display: grid; grid-template-columns: 160px 1fr auto; gap: 50px; align-items: center; }
.footer-grid img { width: 140px; }
.footer-grid p { margin: 0; max-width: 470px; color: #8f8a82; font-size: 13px; }
.footer-copy { display: grid; gap: 12px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 8px 22px; }
.footer-links a, .footer-links span { color: #a9a397; font-size: 13px; text-decoration: none; }
.footer-links a { transition: color .2s ease; }
.footer-links a:hover, .footer-links a:focus-visible { color: var(--gold-light); }
.copyright { text-align: right; }

@media (max-width: 980px) {
  .hero { min-height: 980px; }
  .hero-portrait { width: min(70vw, 680px); right: -12vw; opacity: .45; }
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-statement { max-width: 620px; }
  .two-col, .talent-panel, .result-grid, .values-grid, .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .question-split { grid-template-columns: repeat(2, 1fr); }
  .talent-panel { padding: 48px; }
  .scan-grid { grid-template-columns: 1fr; gap: 60px; }
  .trajectory-offer { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .practice-grid { grid-template-columns: 1fr; }
  .practice-card { min-height: auto; }
  .practice-closing { grid-template-columns: 1fr; gap: 28px; }
  .about-grid { max-width: 760px; }
  .portrait-wrap { max-width: 520px; }
  .footer-grid { grid-template-columns: 140px 1fr; }
  .copyright { grid-column: 1 / -1; text-align: left; }
}

@media (max-width: 760px) {
  :root { --shell: min(100% - 32px, 1180px); }
  body { font-size: 16px; }
  .nav-wrap { height: 84px; }
  .brand img { width: 112px; height: 68px; }
  .menu-button { display: grid; gap: 5px; width: 44px; height: 44px; place-content: center; color: white; border: 0; background: transparent; }
  .menu-button span:not(.sr-only) { width: 23px; height: 1px; background: currentColor; transition: transform .2s, opacity .2s; }
  .menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .main-nav { position: fixed; inset: 84px 0 0; display: none; flex-direction: column; align-items: stretch; padding: 40px 24px; gap: 0; background: rgba(8,8,8,.98); }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 17px 0; border-bottom: 1px solid rgba(255,255,255,.12); font-size: 18px; }
  .main-nav .nav-cta { margin-top: 22px; padding: 14px; text-align: center; }
  .hero { min-height: auto; padding: 160px 0 110px; }
  .hero-portrait {
    width: 108vw;
    max-width: none;
    right: -30vw;
    top: 82px;
    opacity: .32;
    mask-image: linear-gradient(90deg, transparent 0%, black 44%, transparent 100%);
  }
  .hero-grid { padding-top: 0; gap: 54px; }
  h1 { font-size: clamp(44px, 13vw, 64px); }
  .hero-intro { font-size: 18px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 20px; }
  .button { width: 100%; }
  .text-link { align-self: flex-start; }
  .hero-statement p { font-size: 21px; }
  .scroll-cue { display: none; }
  .section { padding: 90px 0; }
  h2 { font-size: clamp(38px, 11vw, 52px); }
  .body-large > p:first-child { font-size: 21px; }
  .question-split { grid-template-columns: 1fr; }
  .talent-panel { margin-top: 60px; padding: 36px 24px; gap: 32px; }
  .question { min-height: 190px; padding: 34px 28px; }
  blockquote { margin-top: 60px; font-size: 27px; }
  .scan-lead { font-size: 20px; }
  .scan-outcome { padding: 34px 26px; }
  .scan-number { margin-bottom: 34px; }
  .scan-outcome h3 { font-size: 27px; }
  .scan-price { align-items: flex-start; flex-direction: column; gap: 10px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-card { min-height: auto; }
  .process-card > span { margin-bottom: 54px; }
  .trajectory-deliverable, .trajectory-investment { padding: 38px 26px; }
  .result { grid-template-columns: 45px 1fr; }
  .result p { font-size: 21px; }
  .impact-grid { grid-template-columns: 1fr; }
  .impact-item { min-height: 140px; }
  .value-list > div { grid-template-columns: 1fr; gap: 6px; }
  .manifesto { padding: 100px 0; }
  .manifesto p { font-size: 29px; margin-bottom: 10px; }
  .portrait-wrap::after { inset: 14px -8px -14px 14px; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
