:root {
  --white: #ffffff;
  --ivory: #f7f4ef;
  --soft: #efe7dc;
  --navy: #061c38;
  --navy-2: #0b2d59;
  --blue: #123f73;
  --gold: #c7a35a;
  --gold-2: #e8d39c;
  --ink: #152033;
  --muted: #6f7480;
  --shadow: 0 26px 80px rgba(6, 28, 56, .14);
  --radius: 26px;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(199, 163, 90, .18), transparent 32rem),
    linear-gradient(180deg, #fff 0%, var(--ivory) 58%, #fff 100%);
  font-family: var(--sans);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { line-height: 1.72; }

.page-glow {
  position: fixed;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(10px);
  opacity: .38;
  z-index: -1;
}
.page-glow-one { width: 420px; height: 420px; background: rgba(199, 163, 90, .2); top: 14%; left: -170px; }
.page-glow-two { width: 520px; height: 520px; background: rgba(18, 63, 115, .10); right: -220px; bottom: 8%; }

.site-header {
  width: min(1180px, calc(100% - 34px));
  margin: 18px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border: 1px solid rgba(199, 163, 90, .28);
  background: rgba(255, 255, 255, .78);
  backdrop-filter: blur(18px);
  border-radius: 999px;
  position: sticky;
  top: 14px;
  z-index: 50;
  box-shadow: 0 14px 40px rgba(6, 28, 56, .08);
}

.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 700; color: var(--navy); }
.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  font-family: var(--serif);
  font-size: 20px;
  letter-spacing: .04em;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  box-shadow: inset 0 0 0 2px rgba(232, 211, 156, .35);
}
.brand-text { font-size: 14px; letter-spacing: .02em; }

.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  padding: 11px 14px;
  border-radius: 999px;
  font-size: 13px;
  color: rgba(6, 28, 56, .78);
  transition: .25s ease;
}
.main-nav a:hover { color: var(--navy); background: rgba(199, 163, 90, .12); }
.main-nav .nav-cta { background: var(--navy); color: var(--white); box-shadow: 0 12px 28px rgba(6, 28, 56, .22); }
.main-nav .nav-cta:hover { background: var(--blue); color: var(--white); }
.menu-toggle { display: none; }

.section-padding { width: min(1180px, calc(100% - 34px)); margin: 0 auto; padding: 90px 0; }

.hero {
  min-height: calc(100vh - 88px);
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 56px;
  padding-top: 70px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  font-weight: 700;
}

h1, h2, h3 {
  font-family: var(--serif);
  color: var(--navy);
  margin: 0;
  line-height: .95;
  font-weight: 700;
}
h1 { font-size: clamp(52px, 7vw, 96px); letter-spacing: -.04em; }
h2 { font-size: clamp(36px, 5vw, 62px); letter-spacing: -.03em; }
h3 { font-size: 31px; }

.hero-copy {
  font-size: 18px;
  max-width: 590px;
  margin: 24px 0 0;
  color: #455162;
}

.hero-quote {
  margin: 30px 0;
  padding: 22px 24px;
  border-left: 3px solid var(--gold);
  background: linear-gradient(90deg, rgba(199, 163, 90, .14), rgba(255,255,255,.2));
  border-radius: 0 18px 18px 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.15;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-actions.centered { justify-content: center; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 15px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .02em;
  transition: .25s ease;
  border: 1px solid transparent;
}
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  box-shadow: 0 18px 45px rgba(6, 28, 56, .24);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 24px 55px rgba(6, 28, 56, .28); }
.btn-secondary {
  color: var(--navy);
  border-color: rgba(199, 163, 90, .5);
  background: rgba(255,255,255,.66);
}
.btn-secondary:hover { background: rgba(199, 163, 90, .12); transform: translateY(-2px); }
.btn.full { width: 100%; }

.cover-frame {
  position: relative;
  width: min(480px, 100%);
  margin-inline: auto;
  padding: 16px;
  border: 1px solid rgba(199, 163, 90, .34);
  border-radius: 32px;
  background: rgba(255,255,255,.58);
  box-shadow: var(--shadow);
}
.cover-frame::before {
  content: '';
  position: absolute;
  inset: -16px;
  border-radius: 42px;
  background: linear-gradient(135deg, rgba(199, 163, 90, .28), rgba(6, 28, 56, .06));
  z-index: -1;
}
.cover-frame img { border-radius: 22px; box-shadow: 0 26px 70px rgba(0,0,0,.22); }

.statement-band {
  width: min(1180px, calc(100% - 34px));
  margin: 0 auto;
  padding: 54px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(6, 28, 56, .95), rgba(18, 63, 115, .92)),
    var(--navy);
  color: #fff;
  box-shadow: 0 26px 70px rgba(6, 28, 56, .22);
  overflow: hidden;
  position: relative;
}
.statement-band::after {
  content: '';
  position: absolute;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(232,211,156,.22);
  border-radius: 50%;
  right: -120px;
  top: -160px;
}
.statement-inner { max-width: 850px; position: relative; z-index: 2; }
.statement-inner p { margin: 0 0 12px; color: var(--gold-2); font-weight: 700; }
.statement-inner h2 { color: #fff; font-size: clamp(34px, 5vw, 58px); }

.two-column, .feature-split, .author-section {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 64px;
  align-items: center;
}
.feature-split { grid-template-columns: 1fr .9fr; }
.author-section { grid-template-columns: .85fr 1.15fr; }

.image-card {
  border-radius: var(--radius);
  background: linear-gradient(135deg, #fff, #efe7dc);
  box-shadow: var(--shadow);
  padding: 22px;
  border: 1px solid rgba(199, 163, 90, .26);
}
.image-card img { margin: auto; }
.content-block p { color: #4a5566; font-size: 17px; }
.text-link { color: var(--blue); font-weight: 800; border-bottom: 1px solid rgba(199,163,90,.55); }

.section-heading { max-width: 850px; text-align: center; margin: 0 auto 44px; }
.section-heading h2 { margin-inline: auto; }

.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pain-card, .price-card, .faq-list details {
  border: 1px solid rgba(199, 163, 90, .26);
  background: rgba(255,255,255,.75);
  backdrop-filter: blur(12px);
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(6, 28, 56, .08);
}
.pain-card { padding: 30px; }
.pain-card span {
  display: inline-flex;
  width: 42px; height: 42px;
  align-items: center; justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: var(--navy);
  font-family: var(--serif);
  font-size: 20px;
  margin-bottom: 24px;
}
.pain-card h3 { font-size: 31px; line-height: 1.04; }
.pain-card p { color: #5d6675; margin-bottom: 0; }

.check-list { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 14px; }
.check-list li {
  position: relative;
  padding-left: 34px;
  color: #39465a;
  line-height: 1.55;
  font-weight: 500;
}
.check-list li::before {
  content: '✦';
  position: absolute;
  left: 0; top: 0;
  color: var(--gold);
}

.portrait-stack { position: relative; min-height: 610px; }
.portrait-stack img {
  position: absolute;
  border-radius: 26px;
  box-shadow: var(--shadow);
  border: 10px solid rgba(255,255,255,.9);
  object-fit: cover;
}
.portrait-one { width: 68%; right: 0; top: 0; }
.portrait-two { width: 62%; left: 0; bottom: 0; }

.quote-panel {
  width: min(1050px, calc(100% - 34px));
  margin: 20px auto 0;
  border-radius: 38px;
  padding: 70px 44px;
  text-align: center;
  background: linear-gradient(135deg, rgba(255,255,255,.95), rgba(239,231,220,.82));
  border: 1px solid rgba(199, 163, 90, .28);
  box-shadow: var(--shadow);
}
.quote-panel h2 { font-size: clamp(42px, 6vw, 74px); }
.quote-panel p:last-child { max-width: 620px; margin: 22px auto 0; color: #596473; }

.pricing-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; align-items: stretch; }
.price-card {
  padding: 34px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.price-card.featured {
  background: linear-gradient(180deg, var(--navy), var(--blue));
  color: #fff;
  border-color: rgba(232,211,156,.5);
  transform: translateY(-10px);
}
.price-card.featured h3, .price-card.featured .plan-label { color: var(--gold-2); }
.price-card.featured p, .price-card.featured li { color: rgba(255,255,255,.83); }
.featured-badge {
  position: absolute;
  top: 20px; right: 20px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(232, 211, 156, .16);
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.plan-label { margin: 0 0 12px; color: var(--gold); text-transform: uppercase; letter-spacing: .14em; font-size: 12px; font-weight: 800; }
.price-card h3 { font-size: 82px; line-height: .85; color: var(--navy); }
.price-card ul { padding-left: 20px; margin: 26px 0 30px; display: grid; gap: 10px; flex: 1; }
.price-card li { color: #4d5868; line-height: 1.55; }
.payment-note { text-align: center; color: #6a7280; font-size: 13px; margin: 24px 0 0; }

.author-image img {
  border-radius: 34px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(199,163,90,.26);
}

.gallery-grid { display: grid; grid-template-columns: .8fr 1.4fr .8fr; gap: 20px; align-items: stretch; }
.gallery-grid img {
  height: 430px;
  width: 100%;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 18px 44px rgba(6, 28, 56, .12);
  border: 1px solid rgba(199, 163, 90, .24);
}

.faq-list { width: min(900px, 100%); margin: 0 auto; display: grid; gap: 14px; }
.faq-list details { padding: 0 24px; }
.faq-list summary {
  cursor: pointer;
  padding: 22px 0;
  color: var(--navy);
  font-weight: 800;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: '+'; float: right; color: var(--gold); font-size: 24px; line-height: 18px; }
.faq-list details[open] summary::after { content: '–'; }
.faq-list details p { margin: 0 0 22px; color: #5c6676; }

.final-cta {
  width: min(1040px, calc(100% - 34px));
  margin: 40px auto 90px;
  padding: 80px 40px;
  text-align: center;
  border-radius: 38px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(6, 28, 56, .95), rgba(18, 63, 115, .92)),
    url('../img/cover.jpg') center/cover;
  box-shadow: 0 34px 90px rgba(6, 28, 56, .26);
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(232,211,156,.22), transparent 36rem);
}
.final-cta > * { position: relative; z-index: 2; }
.final-cta h2 { color: #fff; }
.final-cta p:not(.eyebrow) { max-width: 720px; margin: 22px auto 30px; color: rgba(255,255,255,.82); }
.final-cta .btn-secondary { color: #fff; background: rgba(255,255,255,.12); }

.site-footer {
  width: min(1180px, calc(100% - 34px));
  margin: 0 auto 24px;
  padding: 28px 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  color: #6a7280;
  font-size: 13px;
  border-top: 1px solid rgba(199, 163, 90, .25);
}
.site-footer p { margin: 0; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

@media (max-width: 920px) {
  .menu-toggle {
    display: inline-flex;
    border: 0;
    border-radius: 999px;
    padding: 11px 15px;
    background: var(--navy);
    color: #fff;
    font-weight: 800;
  }
  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border-radius: 24px;
    background: rgba(255,255,255,.96);
    box-shadow: var(--shadow);
    border: 1px solid rgba(199,163,90,.28);
    display: none;
  }
  .main-nav.open { display: flex; }
  .hero, .two-column, .feature-split, .author-section { grid-template-columns: 1fr; }
  .hero { padding-top: 54px; gap: 44px; }
  .pain-grid, .pricing-grid, .gallery-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .portrait-stack { min-height: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .portrait-stack img { position: static; width: 100%; height: 420px; }
  .statement-band { padding: 38px 26px; }
}

@media (max-width: 560px) {
  .brand-text { display: none; }
  .section-padding { padding: 64px 0; }
  .hero { min-height: auto; }
  h1 { font-size: 48px; }
  h2 { font-size: 36px; }
  .hero-copy { font-size: 16px; }
  .hero-quote { font-size: 21px; }
  .btn { width: 100%; }
  .statement-band { border-radius: 26px; }
  .price-card { padding: 26px; }
  .featured-badge { position: static; width: fit-content; margin-bottom: 16px; }
  .portrait-stack { grid-template-columns: 1fr; }
  .portrait-stack img { height: auto; }
  .gallery-grid img { height: auto; }
  .final-cta { padding: 62px 24px; }
}
