:root {
  --night: #0a1210;
  --night-2: #12201c;
  --pine: #1a3d38;
  --pine-mid: #24544c;
  --gold: #c4a05a;
  --gold-soft: #e8d3b0;
  --paper: #f3efe6;
  --cream: #fbf8f2;
  --ink: #1a1916;
  --muted: #5c5850;
  --line: #ddd6c8;
  --card: #fffdf8;
  --shadow: 0 22px 50px rgba(10, 18, 16, 0.12);
  --radius: 1.15rem;
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: Outfit, system-ui, sans-serif;
  --article: 42rem;
  --wide: 72rem;
}

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

html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: clip;
}

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--pine);
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: 1rem;
  top: -5rem;
  z-index: 90;
  background: var(--cream);
  padding: 0.6rem 1rem;
  border-radius: 0.5rem;
  font-weight: 600;
}

.skip:focus {
  top: 1rem;
}

.wrap {
  width: min(100% - 2.5rem, var(--wide));
  margin-inline: auto;
}

.article-wrap {
  width: min(100% - 2.5rem, var(--article));
  margin-inline: auto;
}

.progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  z-index: 80;
  background: linear-gradient(90deg, var(--gold), #ead7a8);
  pointer-events: none;
}

header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 18, 16, 0.9);
  backdrop-filter: blur(16px);
  color: var(--cream);
  border-bottom: 1px solid rgba(232, 211, 176, 0.12);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: inherit;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.logo:hover {
  color: inherit;
}

.logo-mark {
  width: 2rem;
  height: 2rem;
}

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

.nav-links a {
  color: rgba(251, 248, 242, 0.72);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
}

.nav-links a:hover {
  color: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  text-decoration: none;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.85rem 1.35rem;
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
  letter-spacing: -0.01em;
}

.btn:hover {
  transform: translateY(-1px);
  color: inherit;
}

.btn-gold {
  background: var(--gold);
  color: var(--night);
  box-shadow: 0 10px 24px rgba(196, 160, 90, 0.28);
}

.btn-gold:hover {
  background: #d4b36a;
  color: var(--night);
}

.btn-ghost {
  background: transparent;
  color: inherit;
  border: 1px solid currentColor;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.nav .btn {
  display: none;
  padding: 0.55rem 1rem;
  font-size: 0.86rem;
}

.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  align-items: end;
  color: var(--cream);
  isolation: isolate;
  overflow: hidden;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(10, 18, 16, 0.18) 0%, rgba(10, 18, 16, 0.35) 38%, rgba(10, 18, 16, 0.92) 100%);
}

.hero-inner {
  padding: 7.5rem 0 3.2rem;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 1rem;
}

.kicker::before {
  content: "";
  width: 1.6rem;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3,
.serif {
  font-family: var(--serif);
  letter-spacing: -0.03em;
  line-height: 1.12;
}

h1 {
  font-size: clamp(2.15rem, 6vw, 4.4rem);
  font-weight: 600;
  max-width: 16ch;
  margin-bottom: 1rem;
}

.lede {
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  max-width: 38rem;
  color: rgba(251, 248, 242, 0.82);
  margin-bottom: 1.6rem;
  font-weight: 400;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1.2rem;
  font-size: 0.88rem;
  color: rgba(251, 248, 242, 0.58);
  margin-bottom: 1.6rem;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.hero-actions .btn {
  width: 100%;
}

.bar {
  background: var(--night);
  color: #d4cdc0;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  text-align: center;
  padding: 0.7rem 1rem;
}

.bar a {
  color: var(--gold-soft);
}

.layout {
  display: grid;
  gap: 2.5rem;
  padding: 3.5rem 0 5rem;
}

.toc {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.3rem 1.35rem 1.45rem;
}

.toc p {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.7rem;
}

.toc ol {
  margin: 0;
  padding-left: 1.15rem;
  display: grid;
  gap: 0.45rem;
  color: var(--muted);
}

.toc a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
}

.toc a:hover {
  color: var(--pine);
}

.prose h2 {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  margin: 2.6rem 0 0.9rem;
  max-width: 18ch;
}

.prose h3 {
  font-size: 1.35rem;
  margin: 1.8rem 0 0.55rem;
}

.prose p,
.prose li {
  color: #2c2a26;
}

.prose p {
  margin-bottom: 1.15rem;
}

.prose > p:first-of-type::first-letter {
  font-family: var(--serif);
  float: left;
  font-size: 4.4rem;
  line-height: 0.72;
  padding-right: 0.5rem;
  padding-top: 0.18rem;
  color: var(--pine);
  font-weight: 600;
}

.prose ul,
.prose ol {
  margin: 0 0 1.2rem 1.2rem;
  display: grid;
  gap: 0.4rem;
}

.pull {
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.6vw, 1.85rem);
  line-height: 1.25;
  color: var(--pine);
  border-left: 3px solid var(--gold);
  padding: 0.2rem 0 0.2rem 1.15rem;
  margin: 2rem 0;
  font-style: italic;
  font-weight: 500;
}

figure {
  margin: 2rem calc(50% - 50vw) ;
  width: 100vw;
}

figure img {
  width: 100%;
  height: min(62vh, 520px);
  object-fit: cover;
}

figcaption {
  width: min(100% - 2.5rem, var(--article));
  margin: 0.7rem auto 0;
  font-size: 0.86rem;
  color: var(--muted);
}

.callout {
  background: var(--night);
  color: var(--cream);
  border-radius: 1.25rem;
  padding: 1.5rem 1.35rem 1.6rem;
  margin: 2.1rem 0;
}

.callout h3 {
  font-family: var(--serif);
  font-size: 1.55rem;
  margin-bottom: 0.45rem;
  color: var(--gold-soft);
}

.callout p {
  color: rgba(251, 248, 242, 0.78);
  margin-bottom: 1rem;
}

.callout .btn {
  width: 100%;
}

.stats {
  display: grid;
  gap: 0.75rem;
  margin: 1.6rem 0 2rem;
}

.stat {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1.05rem 1.15rem;
}

.stat b {
  display: block;
  font-family: var(--serif);
  font-size: 1.7rem;
  letter-spacing: -0.03em;
  color: var(--pine);
}

.stat span {
  color: var(--muted);
  font-size: 0.9rem;
}

.grid-2 {
  display: grid;
  gap: 0.85rem;
  margin: 1.2rem 0 1.6rem;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem 1.2rem 1.3rem;
}

.card .num {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--gold);
}

.card h3 {
  margin: 0.35rem 0 0.4rem;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.split {
  display: grid;
  gap: 0.85rem;
}

.yes {
  border-top: 3px solid var(--pine);
}

.no {
  border-top: 3px solid #8a4a3a;
}

.list {
  list-style: none;
  margin: 0.7rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.list li {
  padding-left: 1.2rem;
  position: relative;
}

.yes .list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--pine);
}

.no .list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #8a4a3a;
}

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 0.95rem 0;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  float: right;
  color: var(--gold);
  font-weight: 500;
}

.faq details[open] summary::after {
  content: "–";
}

.faq details p {
  margin: 0.7rem 0 0.2rem;
  color: var(--muted);
}

.aside {
  display: none;
}

.offer {
  background: var(--night);
  color: var(--cream);
  border-radius: 1.35rem;
  padding: 1.4rem 1.3rem 1.5rem;
  position: sticky;
  top: 5.2rem;
}

.offer .label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

.offer h2 {
  font-size: 1.7rem;
  margin: 0.4rem 0 0.4rem;
}

.offer .price {
  font-family: var(--serif);
  font-size: 2.4rem;
  margin: 0.4rem 0 0.15rem;
}

.offer .muted {
  color: rgba(251, 248, 242, 0.58);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.offer .btn {
  width: 100%;
  margin-top: 0.35rem;
}

.cta-final {
  background:
    radial-gradient(circle at 88% 12%, rgba(196, 160, 90, 0.22), transparent 40%),
    linear-gradient(160deg, var(--night) 0%, var(--pine) 100%);
  color: var(--cream);
  padding: 4.2rem 0;
  text-align: center;
}

.cta-final h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.7rem);
  max-width: 16ch;
  margin: 0 auto 0.8rem;
}

.cta-final p {
  max-width: 36rem;
  margin: 0 auto 1.4rem;
  color: rgba(251, 248, 242, 0.72);
}

footer {
  background: var(--night);
  color: rgba(251, 248, 242, 0.55);
  padding: 1.7rem 0 5.6rem;
  font-size: 0.88rem;
}

footer a {
  color: var(--gold-soft);
}

.foot {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
}

.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
  background: rgba(243, 239, 230, 0.94);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
}

.mobile-cta .btn {
  width: 100%;
}

@media (min-width: 720px) {
  .nav-links,
  .nav .btn {
    display: flex;
  }

  .hero-actions {
    flex-direction: row;
  }

  .hero-actions .btn {
    width: auto;
  }

  .stats,
  .grid-2,
  .split {
    grid-template-columns: 1fr 1fr;
  }

  .stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .callout .btn {
    width: auto;
  }

  .mobile-cta {
    display: none;
  }

  footer {
    padding-bottom: 1.7rem;
  }

  figure {
    margin: 2.2rem 0;
    width: auto;
  }

  figure img {
    border-radius: 1.1rem;
    height: 420px;
  }

  figcaption {
    width: auto;
    margin: 0.7rem 0 0;
  }
}

@media (min-width: 1080px) {
  .layout {
    grid-template-columns: minmax(0, 42rem) 19rem;
    justify-content: center;
    align-items: start;
    gap: 3.5rem;
  }

  .aside {
    display: block;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn {
    transition: none;
  }
}
