:root {
  --ivory: #f3ebdd;
  --ivory-soft: #faf6ee;
  --navy: #172a46;
  --navy-deep: #0d1b2f;
  --gold: #aa7f37;
  --gold-light: #cfad71;
  --ink: #1b2638;
  --line: rgba(23, 42, 70, .22);
  --serif-display: Georgia, "Times New Roman", serif;
  --serif-body: Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--serif-body);
  line-height: 1.75;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 8px;
  border: 1px solid rgba(170, 127, 55, .34);
  pointer-events: none;
  z-index: 100;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 200; background: var(--navy); color: white; padding: .65rem 1rem; }
.skip-link:focus { top: 1rem; }

.site-header {
  width: min(1180px, calc(100% - 3rem));
  margin: 0 auto;
  min-height: 104px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
  gap: 2rem;
}
.brand { display: inline-flex; align-items: center; gap: .7rem; text-decoration: none; width: max-content; }
.brand-mark { font-size: 2rem; color: var(--gold); transform: rotate(-7deg); }
.brand strong { display: block; font: 600 1.55rem/1 var(--serif-display); letter-spacing: .08em; text-transform: uppercase; }
.brand small { display: block; margin-top: .2rem; color: var(--gold); font-size: .62rem; letter-spacing: .22em; text-transform: uppercase; }
nav { display: flex; align-items: center; gap: 2rem; }
nav a { font-size: .68rem; letter-spacing: .13em; text-decoration: none; text-transform: uppercase; }
nav a:hover { color: var(--gold); }
.site-header > .button { justify-self: end; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: .85rem 1.4rem;
  background: var(--navy);
  color: var(--ivory-soft);
  border: 1px solid var(--navy);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}
.button:hover { background: transparent; color: var(--navy); transform: translateY(-2px); }
.button-small { min-height: 40px; padding: .55rem 1rem; font-size: .62rem; }
.text-link { color: var(--navy); font-size: .72rem; font-weight: 700; letter-spacing: .04em; text-underline-offset: 5px; }
.text-link:hover { color: var(--gold); }
.eyebrow { margin: 0 0 1.1rem; color: var(--gold); font-size: .65rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
h1, h2, h3 { margin-top: 0; color: var(--navy-deep); font-family: var(--serif-display); font-weight: 500; line-height: .98; }
h1 { margin-bottom: 1.7rem; font-size: clamp(3.5rem, 6.6vw, 6.7rem); letter-spacing: -.045em; }
h2 { margin-bottom: 1.4rem; font-size: clamp(2.8rem, 5vw, 5.3rem); letter-spacing: -.035em; }
h3 { margin-bottom: .9rem; font-size: 2.2rem; }

.hero {
  width: min(1180px, calc(100% - 3rem));
  min-height: 780px;
  margin: 0 auto;
  padding: 5.5rem 0 7rem;
  display: grid;
  grid-template-columns: 1.05fr .8fr;
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}
.lead { max-width: 690px; margin: 0 0 2rem; font-size: clamp(1rem, 1.4vw, 1.18rem); }
.offer { max-width: 600px; margin: 2rem 0; padding: 1.35rem 1.5rem; border-top: 1px solid var(--gold); border-bottom: 1px solid var(--gold); }
.offer-kicker { color: var(--navy); font-size: .65rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.price-row { display: flex; align-items: baseline; gap: 1rem; margin: .25rem 0; }
.price-row strong { color: var(--navy); font: 600 3.3rem/1 var(--serif-display); }
.price-row span { font-size: .82rem; }
.offer p { margin: .45rem 0 0; font-size: .78rem; line-height: 1.55; }
.experience-line { display: block; margin-top: .75rem; color: var(--gold); font-size: .68rem; font-weight: 700; letter-spacing: .04em; }
.hero-actions { display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; }
.contact-note { max-width: 270px; color: var(--navy); font-size: .68rem; font-weight: 700; line-height: 1.5; }
.hero-visual { position: relative; margin: 0; padding: 1rem 1rem 3.2rem; border: 1px solid var(--gold); }
.hero-visual::before { content: ""; position: absolute; inset: 7px; border: 1px solid rgba(243,235,221,.58); z-index: 1; pointer-events: none; }
.hero-visual img { width: 100%; aspect-ratio: 4/5; object-fit: cover; filter: saturate(.82) contrast(1.04); }
.hero-visual figcaption { position: absolute; inset: auto 1rem .8rem; z-index: 2; color: var(--navy); font-size: .68rem; font-style: italic; text-align: center; }
.orbit { position: absolute; border: 1px solid rgba(170,127,55,.34); border-radius: 50%; pointer-events: none; }
.orbit-one { width: 180px; height: 72px; right: -70px; top: 10%; transform: rotate(-18deg); }
.orbit-two { width: 100px; height: 38px; left: -58px; bottom: 18%; transform: rotate(22deg); }

.intro-section { padding: 8rem max(1.5rem, calc((100vw - 1180px)/2)); background: var(--ivory-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-heading { max-width: 850px; margin-bottom: 4.5rem; }
.section-heading > p:last-child { max-width: 670px; }
.method-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.method-card { min-height: 365px; padding: 2.5rem; border: 1px solid var(--line); border-right: 0; display: flex; flex-direction: column; justify-content: flex-end; }
.method-card:last-child { border-right: 1px solid var(--line); }
.card-number { margin-bottom: auto; color: var(--gold); font: 500 1.2rem var(--serif-display); }
.method-card p { margin: 0; font-size: .82rem; }
.method-card-dark { background: var(--navy); color: var(--ivory); border-color: var(--navy); }
.method-card-dark h3 { color: var(--ivory-soft); }
.method-card-dark .card-number { color: var(--gold-light); }

.process-section { width: min(1180px, calc(100% - 3rem)); margin: 0 auto; padding: 9rem 0; display: grid; grid-template-columns: .7fr 1.1fr; gap: clamp(4rem, 10vw, 11rem); align-items: center; }
.process-note { position: relative; padding: 4.5rem 3.2rem; border: 1px solid var(--gold); text-align: center; }
.process-note::before, .process-note::after { content: ""; position: absolute; width: 48px; height: 48px; border-color: var(--gold); }
.process-note::before { left: -8px; top: -8px; border-left: 1px solid; border-top: 1px solid; }
.process-note::after { right: -8px; bottom: -8px; border-right: 1px solid; border-bottom: 1px solid; }
.process-note span { display: block; margin-bottom: 1rem; color: var(--gold); }
.process-note p { margin: 0; font: italic 1.45rem/1.7 var(--serif-display); }
.process-content ol { margin: 2.5rem 0 0; padding: 0; list-style: none; counter-reset: steps; }
.process-content li { padding: 1.4rem 0; display: grid; grid-template-columns: 130px 1fr; gap: 1rem; border-top: 1px solid var(--line); }
.process-content li:last-child { border-bottom: 1px solid var(--line); }
.process-content strong { color: var(--navy); font-family: var(--serif-display); font-size: 1.35rem; font-weight: 600; }
.process-content span { font-size: .8rem; }

.consult-section { padding: 0 max(1.5rem, calc((100vw - 1280px)/2)) 9rem; }
.consult-card { min-height: 510px; padding: clamp(3rem, 7vw, 7rem); background: var(--navy); color: var(--ivory); display: grid; grid-template-columns: 1.4fr .6fr; align-items: center; gap: 4rem; position: relative; overflow: hidden; }
.consult-card::before { content: ""; position: absolute; width: 450px; height: 160px; border: 1px solid rgba(207,173,113,.25); border-radius: 50%; right: -150px; top: -50px; transform: rotate(-15deg); }
.consult-card h2 { color: var(--ivory-soft); }
.consult-card p { max-width: 680px; }
.eyebrow-light { color: var(--gold-light); }
.consult-action { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 1.1rem; }
.saturn { color: var(--gold-light); font-size: 5rem; font-family: var(--serif-display); line-height: 1; }
.button-light { background: var(--ivory); color: var(--navy); border-color: var(--ivory); }
.button-light:hover { background: transparent; color: var(--ivory); }
.consult-action small { max-width: 220px; font-size: .65rem; opacity: .75; }

.about-section { width: min(1020px, calc(100% - 3rem)); margin: 0 auto; padding: 2rem 0 9rem; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(4rem, 10vw, 9rem); }
.about-copy p { font-size: .9rem; }
.about-copy .dropcap::first-letter { float: left; color: var(--gold); font: 600 4.7rem/.74 var(--serif-display); padding: .12rem .45rem 0 0; }
.about-copy .text-link { display: inline-block; margin-top: 1.2rem; }

.faq-section { padding: 8rem max(1.5rem, calc((100vw - 1020px)/2)); background: var(--ivory-soft); border-top: 1px solid var(--line); }
.section-heading.compact { margin-bottom: 2.5rem; }
.faq-list { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary { padding: 1.6rem 2.6rem 1.6rem 0; cursor: pointer; color: var(--navy); font: 500 1.55rem var(--serif-display); list-style: none; position: relative; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: .4rem; color: var(--gold); font-size: 1.7rem; }
details[open] summary::after { content: "−"; }
details p { max-width: 760px; margin: 0; padding: 0 0 1.7rem; font-size: .82rem; }

.closing-section { width: min(900px, calc(100% - 3rem)); margin: 0 auto; padding: 9rem 0; text-align: center; }
.closing-symbol { display: block; margin-bottom: 1.5rem; color: var(--gold); font-size: 2.4rem; }
.closing-section h2 { margin-bottom: 1rem; }
.closing-section p:not(.eyebrow) { margin-bottom: 2rem; }

footer { padding: 3.5rem max(1.5rem, calc((100vw - 1180px)/2)); background: var(--navy-deep); color: rgba(250,246,238,.72); display: grid; grid-template-columns: 1fr auto; gap: 1rem 3rem; align-items: end; font-size: .7rem; }
footer a { text-underline-offset: 4px; }
.footer-brand strong { display: block; color: var(--ivory-soft); font: 500 2rem/1 var(--serif-display); }
.footer-brand span { color: var(--gold-light); font-size: .58rem; letter-spacing: .18em; text-transform: uppercase; }
footer p { grid-column: 1/-1; margin: 1rem 0 0; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.12); }
.footer-legal { margin-top: 0; padding-top: 0; border-top: 0; }
.mobile-cta { display: none; }

.legal-header { grid-template-columns: 1fr auto; }
.legal-page { width: min(820px, calc(100% - 3rem)); min-height: 65vh; margin: 0 auto; padding: 7rem 0 9rem; }
.legal-page h1 { margin-bottom: 2.5rem; }
.legal-page h2 { margin: 3.5rem 0 1rem; font-size: clamp(2rem, 4vw, 3rem); }
.legal-page p { max-width: 760px; }
.legal-date { margin-top: 4rem; color: var(--gold); font-size: .75rem; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .button { transition: none; }
}

@media (max-width: 900px) {
  body::before { inset: 5px; }
  .site-header { min-height: 88px; grid-template-columns: 1fr auto; }
  nav { display: none; }
  .hero { min-height: auto; padding: 4rem 0 6rem; grid-template-columns: 1fr; gap: 4rem; }
  h1 { font-size: clamp(3.4rem, 13vw, 5.5rem); }
  .hero-visual { max-width: 560px; justify-self: center; }
  .method-grid { grid-template-columns: 1fr; }
  .method-card { min-height: 290px; border-right: 1px solid var(--line); border-bottom: 0; }
  .method-card:last-child { border-bottom: 1px solid var(--line); }
  .process-section, .about-section { grid-template-columns: 1fr; }
  .process-note { max-width: 530px; }
  .consult-card { grid-template-columns: 1fr; }
  .consult-action { align-items: flex-start; text-align: left; }
}

@media (max-width: 560px) {
  .site-header { width: calc(100% - 2rem); }
  .brand-mark { font-size: 1.55rem; }
  .brand strong { font-size: 1.25rem; }
  .brand small { font-size: .53rem; }
  .site-header > .button { display: none; }
  .hero, .process-section, .about-section, .closing-section { width: calc(100% - 2rem); }
  .hero { padding-top: 3.2rem; }
  h1 { font-size: 3.35rem; }
  h2 { font-size: 2.9rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .price-row strong { font-size: 3rem; }
  .intro-section, .faq-section { padding-left: 1rem; padding-right: 1rem; }
  .method-card { padding: 2rem; }
  .process-section { padding: 6rem 0; gap: 4rem; }
  .process-note { padding: 3rem 2rem; }
  .process-content li { grid-template-columns: 1fr; gap: .2rem; }
  .consult-section { padding-left: .55rem; padding-right: .55rem; padding-bottom: 6rem; }
  .consult-card { min-height: auto; padding: 3.2rem 1.5rem; gap: 2.5rem; }
  .about-section { padding-bottom: 6rem; gap: 2.5rem; }
  .faq-section { padding-top: 6rem; padding-bottom: 6rem; }
  footer { padding-bottom: 7rem; grid-template-columns: 1fr; }
  .mobile-cta { display: flex; align-items: center; justify-content: center; position: fixed; z-index: 90; left: 1rem; right: 1rem; bottom: 1rem; min-height: 48px; background: var(--navy); color: var(--ivory-soft); border: 1px solid var(--gold-light); box-shadow: 0 8px 30px rgba(13,27,47,.28); font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-decoration: none; text-transform: uppercase; }
  .legal-page { width: calc(100% - 2rem); padding: 5rem 0 6rem; }
}
