:root {
  --ink: #17131c;
  --plum-950: #0f0c18;
  --plum-900: #15121e;
  --plum-850: #1d1925;
  --plum-800: #25202e;
  --gold: #f0bf5c;
  --gold-deep: #c89b3c;
  --gold-soft: #f6e8bd;
  --cream: #faf7ef;
  --paper: #f4efe4;
  --sand: #d0c7a3;
  --muted: #a49a80;
  --line: rgba(240, 191, 92, 0.22);
  --shadow: 0 28px 80px rgba(5, 3, 10, 0.42);
  --serif: "Noto Serif", Georgia, serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  background: var(--plum-950);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 5%, rgba(240, 191, 92, 0.09), transparent 32rem),
    radial-gradient(circle at 86% 19%, rgba(132, 94, 163, 0.08), transparent 28rem),
    linear-gradient(180deg, var(--plum-900), var(--plum-950) 45%);
}
a { color: inherit; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.7rem 1rem;
  color: var(--ink);
  background: var(--gold);
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.shell { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: 112px 0; }
.section-compact { padding: 78px 0; }
.eyebrow {
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1.4;
  text-transform: uppercase;
}
.eyebrow-dark { color: #765923; }
.display {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 6.35rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.98;
}
.display em { color: var(--gold); font-weight: 400; }
.section-title {
  max-width: 780px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.25rem, 4vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.08;
}
.section-title-dark { color: var(--ink); }
.lede { max-width: 720px; color: var(--sand); font-size: clamp(1.08rem, 1.6vw, 1.3rem); font-weight: 300; }
.lede-dark { color: #625a4d; }
.gold-rule { width: 82px; height: 2px; margin: 1.7rem 0; background: var(--gold-deep); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(240, 191, 92, 0.13);
  background: rgba(15, 12, 24, 0.88);
  backdrop-filter: blur(18px);
}
.nav { display: flex; min-height: 76px; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { width: 42px; height: 42px; object-fit: contain; }
.brand span { color: var(--gold); font-family: var(--serif); font-size: 1.02rem; letter-spacing: 0.15em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links > a:not(.button) { color: var(--sand); font-family: var(--serif); font-size: 0.94rem; font-style: italic; text-decoration: none; }
.nav-links > a:not(.button):hover { color: var(--gold); }
.menu-button {
  display: none;
  width: 46px;
  height: 42px;
  padding: 10px;
  border: 1px solid var(--line);
  color: var(--gold);
  background: transparent;
  cursor: pointer;
}
.menu-button span, .menu-button::before, .menu-button::after {
  display: block;
  width: 100%;
  height: 1px;
  content: "";
  background: currentColor;
}
.menu-button span { margin: 6px 0; }
.mobile-menu { border-top: 1px solid var(--line); background: var(--plum-950); }
.mobile-menu[hidden] { display: none; }
.mobile-menu .shell { display: grid; gap: 2px; padding: 18px 0 24px; }
.mobile-menu a { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.05); color: var(--sand); text-decoration: none; }

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0.85rem 1.35rem;
  border: 1px solid var(--gold);
  color: #2b1f08;
  background: var(--gold);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.button:hover { background: #f6cb75; box-shadow: 0 14px 35px rgba(240, 191, 92, 0.18); transform: translateY(-2px); }
.button-small { min-height: 42px; padding: 0.62rem 1rem; font-size: 0.68rem; }
.button-ghost { color: var(--gold); background: transparent; }
.button-ghost:hover { color: var(--ink); background: var(--gold); }
.button-dark { border-color: var(--ink); color: var(--cream); background: var(--ink); }
.button-dark:hover { color: var(--ink); background: var(--gold); border-color: var(--gold); }
.button-stack { display: flex; flex-wrap: wrap; gap: 12px; align-items: stretch; }

.hero { position: relative; overflow: hidden; padding: 88px 0 104px; }
.hero::after {
  position: absolute;
  right: -130px;
  bottom: -160px;
  width: 540px;
  height: 540px;
  border: 1px solid rgba(240,191,92,.12);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 58px rgba(240,191,92,.025), 0 0 0 116px rgba(240,191,92,.018);
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.02fr 0.98fr; gap: clamp(50px, 8vw, 112px); align-items: center; }
.hero-copy { max-width: 670px; }
.hero-lede { max-width: 630px; margin: 1.8rem 0; color: var(--sand); font-size: clamp(1.05rem, 1.7vw, 1.28rem); font-weight: 300; }
.hero-note { margin: 14px 0 0; color: var(--muted); font-size: 0.78rem; }
.trust-row { display: flex; flex-wrap: wrap; gap: 9px 18px; margin: 30px 0 0; padding: 0; list-style: none; }
.trust-row li { position: relative; padding-left: 15px; color: var(--sand); font-size: 0.76rem; letter-spacing: 0.045em; text-transform: uppercase; }
.trust-row li::before { position: absolute; top: 0.56em; left: 0; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); content: ""; }
.product-visual { position: relative; max-width: 585px; margin-inline: auto; }
.product-visual::before {
  position: absolute;
  inset: 8% 7% -5% 15%;
  z-index: -1;
  border: 1px solid rgba(240,191,92,.28);
  content: "";
  transform: rotate(4deg);
}
.product-visual img {
  width: 100%;
  height: auto;
  border: 1px solid rgba(240,191,92,.3);
  box-shadow: var(--shadow);
}
.price-medallion {
  position: absolute;
  right: -30px;
  bottom: -35px;
  display: grid;
  width: 132px;
  height: 132px;
  place-items: center;
  border: 1px solid #f6d892;
  border-radius: 50%;
  color: var(--ink);
  background: var(--gold);
  box-shadow: 0 16px 45px rgba(4,2,8,.45);
  text-align: center;
  transform: rotate(-5deg);
}
.price-medallion strong { display: block; font-family: var(--serif); font-size: 2.1rem; line-height: 1; }
.price-medallion span { display: block; margin-top: 5px; font-size: 0.62rem; font-weight: 800; letter-spacing: .12em; line-height: 1.3; text-transform: uppercase; }

.promise-bar { border-block: 1px solid var(--line); background: rgba(29,25,37,.72); }
.promise-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.promise { padding: 30px 35px; border-right: 1px solid var(--line); }
.promise:last-child { border-right: 0; }
.promise span { display: block; margin-bottom: 8px; color: var(--gold); font-family: var(--serif); font-size: 1.15rem; }
.promise p { margin: 0; color: var(--muted); font-size: 0.87rem; }

.paper { color: var(--ink); background: var(--cream); }
.paper-texture { background-image: radial-gradient(rgba(49,35,17,.05) .7px, transparent .7px); background-size: 9px 9px; }
.routes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 54px; }
.route { min-height: 330px; padding: 34px; border: 1px solid #dbd1bd; background: rgba(255,255,255,.55); }
.route-number { display: flex; width: 48px; height: 48px; align-items: center; justify-content: center; border: 1px solid #8c6a2e; border-radius: 50%; color: #765923; font-family: var(--serif); }
.route h3 { margin: 52px 0 13px; font-family: var(--serif); font-size: 1.45rem; line-height: 1.25; }
.route p { margin: 0; color: #665e50; font-size: 0.92rem; }
.route strong { color: var(--ink); }
.pastoral-note { margin-top: 24px; padding: 22px 26px; border-left: 3px solid var(--gold-deep); color: #594f40; background: #eee5d4; }

.steps-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(50px, 8vw, 100px); align-items: start; }
.steps-intro { position: sticky; top: 115px; }
.steps { border-top: 1px solid var(--line); }
.step { display: grid; grid-template-columns: 70px 1fr; gap: 18px; padding: 30px 0; border-bottom: 1px solid var(--line); }
.step-number { color: var(--gold); font-family: var(--serif); font-size: 1.1rem; }
.step h3 { margin: 0 0 8px; font-family: var(--serif); font-size: 1.45rem; font-weight: 400; line-height: 1.25; }
.step p { margin: 0; color: var(--muted); font-size: .93rem; }

.inside-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-top: 52px; }
.format-card { padding: 36px; border: 1px solid var(--line); color: var(--cream); background: var(--plum-850); }
.format-card .metric { display: block; color: var(--gold); font-family: var(--serif); font-size: 3.8rem; line-height: 1; }
.format-card h3 { margin: 18px 0 10px; font-family: var(--serif); font-size: 1.6rem; font-weight: 400; }
.format-card p { margin: 0; color: var(--muted); }
.deliverables { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 34px; margin: 36px 0 0; padding: 0; list-style: none; }
.deliverables li { padding: 14px 0 14px 24px; border-bottom: 1px solid #ddd2bd; color: #625a4d; position: relative; }
.deliverables li::before { position: absolute; top: 1.28rem; left: 0; width: 7px; height: 7px; border: 1px solid var(--gold); content: ""; transform: rotate(45deg); }

.beauty-section { position: relative; overflow: hidden; background: var(--plum-850); }
.beauty-section::after { position: absolute; right: -190px; bottom: -360px; width: 690px; height: 690px; border: 1px solid rgba(240,191,92,.12); border-radius: 50%; content: ""; box-shadow: 0 0 0 68px rgba(240,191,92,.025), 0 0 0 136px rgba(240,191,92,.018); pointer-events: none; }
.beauty-intro { position: relative; z-index: 1; max-width: 780px; }
.beauty-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.08fr .92fr; gap: 18px; margin-top: 54px; }
.beauty-card { display: flex; min-width: 0; flex-direction: column; margin: 0; border: 1px solid var(--line); background: var(--plum-950); box-shadow: 0 18px 46px rgba(4,2,8,.22); }
.beauty-card-annunciation { grid-row: span 2; align-self: start; }
.beauty-image { overflow: hidden; background: #0c0a12; }
.beauty-image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.92) contrast(1.03); transition: transform 450ms ease; }
.beauty-image-art { aspect-ratio: 4 / 5; }
.beauty-image-art img { object-position: center 46%; }
.beauty-card:not(.beauty-card-annunciation) .beauty-image { aspect-ratio: 16 / 9; }
.beauty-card:hover .beauty-image img { transform: scale(1.018); }
.beauty-card figcaption { display: flex; flex: 1; flex-direction: column; padding: 24px 26px 25px; }
.beauty-kicker { margin: 0 0 9px; color: var(--gold); font-size: .67rem; font-weight: 800; letter-spacing: .19em; text-transform: uppercase; }
.beauty-card h3 { margin: 0 0 10px; color: var(--cream); font-family: var(--serif); font-size: clamp(1.32rem, 2vw, 1.75rem); font-weight: 400; line-height: 1.15; }
.beauty-card figcaption > p:not(.beauty-kicker) { margin: 0; color: var(--sand); font-size: .9rem; line-height: 1.55; }
.beauty-card small { display: block; margin-top: 18px; color: var(--muted); font-size: .66rem; line-height: 1.5; }
.beauty-card small a { color: var(--gold-soft); text-underline-offset: 2px; }
.beauty-card small a:hover { color: var(--gold); }
.beauty-disclosure { position: relative; z-index: 1; max-width: 760px; margin: 24px 0 0; color: var(--muted); font-size: .72rem; }

.gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 56px; }
.gallery figure { margin: 0; border: 1px solid var(--line); background: var(--plum-850); overflow: hidden; }
.gallery img { width: 100%; height: auto; transition: transform 450ms ease; }
.gallery figure:hover img { transform: scale(1.012); }
.gallery figcaption { padding: 15px 18px; color: var(--muted); font-size: .79rem; }

.decision-section { position: relative; overflow: hidden; }
.decision-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(45px, 8vw, 100px); align-items: center; }
.decision-grid img {
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.decision-copy blockquote { margin: 28px 0; padding: 0 0 0 24px; border-left: 2px solid var(--gold); color: var(--gold-soft); font-family: var(--serif); font-size: clamp(1.35rem, 2.5vw, 2rem); font-style: italic; line-height: 1.45; }
.decision-copy p { color: var(--sand); }

.sample-section { color: var(--ink); background: var(--gold); }
.sample-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(50px, 8vw, 110px); align-items: center; }
.sample-art { position: relative; }
.sample-art img {
  width: 100%;
  height: auto;
  border: 1px solid rgba(23,19,28,.35);
  box-shadow: 0 25px 65px rgba(55,34,5,.22);
  /* The v4 spread already contains the page angles; keep the frame level so
     the two-page sample reads as an intentional object, not a tilted card. */
  transform: none;
}
.sample-copy p { max-width: 600px; color: #4c3b20; font-size: 1.05rem; }
.sample-list { display: grid; gap: 10px; margin: 28px 0; padding: 0; list-style: none; }
.sample-list li { padding-left: 22px; position: relative; }
.sample-list li::before { position: absolute; left: 0; content: "✓"; font-weight: 800; }

.accountability-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(50px, 8vw, 100px); }
.standards { display: grid; gap: 16px; }
.standard { padding: 25px 28px; border: 1px solid var(--line); background: var(--plum-850); }
.standard h3 { margin: 0 0 6px; color: var(--gold); font-family: var(--serif); font-size: 1.12rem; font-weight: 400; }
.standard p { margin: 0; color: var(--muted); font-size: .88rem; }
.authority-path { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; margin: 18px 0 16px; padding: 0; list-style: none; }
.authority-path li { position: relative; min-width: 0; padding-right: 8px; }
.authority-path li:not(:last-child)::after { position: absolute; top: 17px; right: -4px; color: var(--gold-deep); content: "→"; font-family: var(--serif); font-size: .95rem; }
.authority-path span { display: block; color: var(--gold); font-size: .63rem; font-weight: 700; letter-spacing: .16em; }
.authority-path strong { display: block; margin-top: 5px; color: var(--cream); font-family: var(--serif); font-size: .88rem; font-weight: 400; line-height: 1.18; }
.authority-path small { display: block; margin-top: 4px; color: var(--muted); font-size: .67rem; line-height: 1.35; }
.standard-order > p { max-width: 760px; font-size: .84rem; }
.source-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.source-links a { padding: 8px 11px; border: 1px solid var(--line); color: var(--sand); font-size: .72rem; text-decoration: none; }
.source-links a:hover { border-color: var(--gold); color: var(--gold); }

.faq-list { max-width: 850px; margin: 52px auto 0; border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 25px 45px 25px 0; cursor: pointer; color: var(--cream); font-family: var(--serif); font-size: 1.15rem; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { position: absolute; right: 5px; content: "+"; color: var(--gold); font-family: var(--sans); font-weight: 300; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 760px; margin: 0; padding: 0 0 28px; color: var(--muted); }
.faq-list details a { color: var(--gold); }

.offer-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 50px;
  align-items: center;
  padding: clamp(40px, 7vw, 82px);
  border: 1px solid var(--line);
  background: linear-gradient(145deg, var(--plum-800), var(--plum-950));
  box-shadow: var(--shadow);
  overflow: hidden;
}
.offer-card::after { position: absolute; right: -120px; top: -170px; width: 390px; height: 390px; border: 1px solid var(--line); border-radius: 50%; content: ""; }
.offer-card h2 { margin: 0 0 14px; font-family: var(--serif); font-size: clamp(2.2rem, 4.5vw, 4.4rem); font-weight: 400; letter-spacing: -.04em; line-height: 1.05; }
.offer-card p { max-width: 640px; color: var(--sand); }
.offer-price { position: relative; z-index: 1; text-align: center; }
.offer-price strong { display: block; color: var(--gold); font-family: var(--serif); font-size: 5rem; font-weight: 400; line-height: 1; }
.offer-price span { color: var(--muted); font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.offer-price .button { width: 100%; margin-top: 22px; }
.offer-price small { display: block; margin-top: 10px; color: var(--muted); font-size: .72rem; }

.site-footer { padding: 64px 0 110px; border-top: 1px solid var(--line); background: #0b0910; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .6fr .7fr; gap: 50px; }
.footer-copy { max-width: 480px; color: var(--muted); font-family: var(--serif); font-style: italic; }
.footer-heading { color: var(--gold-deep); font-size: .68rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.footer-links { display: grid; gap: 9px; }
.footer-links a { color: var(--muted); font-size: .8rem; text-decoration: none; }
.footer-links a:hover { color: var(--gold); }
.copyright { margin-top: 44px; color: #6f6654; font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; }

.mobile-offer { display: none; }

@media (max-width: 960px) {
  .nav-links > a:not(.button) { display: none; }
  .hero-grid, .decision-grid, .sample-grid, .accountability-grid, .offer-card { grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; }
  .product-visual { max-width: 660px; }
  .steps-layout { grid-template-columns: 1fr; }
  .steps-intro { position: static; }
  .routes { grid-template-columns: 1fr; }
  .route { min-height: 0; }
  .route h3 { margin-top: 28px; }
  .offer-price { max-width: 420px; text-align: left; }
  .offer-price .button { width: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  html { scroll-padding-top: 74px; }
  body { padding-bottom: 76px; }
  .shell { width: min(100% - 28px, 1180px); }
  .section { padding: 78px 0; }
  .section-compact { padding: 58px 0; }
  .nav { min-height: 68px; }
  .brand img { width: 36px; height: 36px; }
  .brand span { font-size: .84rem; letter-spacing: .11em; }
  .nav-links { display: none; }
  .menu-button { display: block; }
  .hero { padding: 62px 0 86px; }
  .hero-grid { gap: 58px; }
  .display { font-size: clamp(2.8rem, 14vw, 4.5rem); }
  .button-stack { flex-direction: column; }
  .button-stack .button { width: 100%; }
  .price-medallion { right: -5px; bottom: -40px; width: 108px; height: 108px; }
  .price-medallion strong { font-size: 1.7rem; }
  .promise-grid { grid-template-columns: 1fr; }
  .promise { padding: 22px 5px; border-right: 0; border-bottom: 1px solid var(--line); }
  .promise:last-child { border-bottom: 0; }
  .routes, .inside-grid, .gallery, .deliverables, .beauty-grid { grid-template-columns: 1fr; }
  .beauty-card-annunciation { grid-row: auto; }
  .authority-path { grid-template-columns: 1fr 1fr; gap: 14px 18px; }
  .authority-path li::after { display: none !important; }
  .route, .format-card { padding: 27px; }
  .step { grid-template-columns: 46px 1fr; }
  .gallery { gap: 12px; }
  .sample-grid { gap: 45px; }
  .offer-card { padding: 34px 24px; gap: 30px; }
  .offer-price { width: 100%; }
  .offer-price .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .mobile-offer {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 60;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    align-items: center;
    min-height: 76px;
    padding: 10px 14px;
    border-top: 1px solid var(--line);
    background: rgba(15,12,24,.96);
    backdrop-filter: blur(14px);
  }
  .mobile-offer strong { display: block; color: var(--cream); font-family: var(--serif); font-size: .95rem; }
  .mobile-offer > div span { display: block; color: var(--muted); font-size: .67rem; }
  .mobile-offer .button { min-height: 46px; padding: .65rem .8rem; font-size: .62rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}

@media print {
  .site-header, .mobile-offer, .button, .site-footer { display: none !important; }
  body { color: #111; background: #fff; padding: 0; }
  body::before { display: none; }
  .paper, .sample-section { color: #111; background: #fff; }
  .section, .section-compact { padding: 28px 0; }
}
