:root {
  --navy: #061A2F;
  --navy-dark: #03101F;
  --gold: #B88A3B;
  --gold-light: #D9B36D;
  --paper: #F6F0E6;
  --cream: #FBF7EF;
  --charcoal: #1F2933;
  --muted: #5D6874;
  --white: #FFFFFF;
  --line: rgba(184, 138, 59, 0.32);
  --shadow: 0 24px 70px rgba(3, 16, 31, 0.16);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--charcoal);
  background: var(--paper);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

.container {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px max(20px, calc((100vw - 1120px) / 2));
  background: rgba(6, 26, 47, 0.94);
  color: var(--white);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-light);
  font-size: 22px;
}
.brand strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.05rem;
  letter-spacing: .02em;
}
.brand small {
  display: block;
  color: rgba(255,255,255,.7);
  font-size: .76rem;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: .88rem;
}
.site-nav a {
  color: rgba(255,255,255,.82);
  text-decoration: none;
}
.site-nav a:hover { color: var(--gold-light); }
.nav-cta {
  border: 1px solid var(--gold);
  border-radius: 999px;
  padding: 10px 15px;
  color: var(--white) !important;
}
.nav-toggle {
  display: none;
  border: 1px solid rgba(255,255,255,.25);
  background: transparent;
  color: var(--white);
  border-radius: 999px;
  padding: 8px 12px;
}

section { padding: 92px 0; }
.section-paper { background: var(--paper); }
.section-cream { background: var(--cream); }
.section-navy {
  background: radial-gradient(circle at top right, rgba(184,138,59,.18), transparent 30%), var(--navy);
  color: rgba(255,255,255,.88);
}
.section-navy h2, .section-navy h3 { color: var(--white); }

.hero { padding: 96px 0 84px; }
.hero-grid {
  display: grid;
  grid-template-columns: 0.98fr 1.02fr;
  align-items: center;
  gap: 52px;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow-gold { color: var(--gold-light); }
h1, h2, h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.08;
  color: var(--navy);
}
h1 { font-size: clamp(3rem, 6vw, 5.9rem); letter-spacing: -.055em; }
h2 { font-size: clamp(2rem, 4vw, 3.75rem); letter-spacing: -.035em; }
h3 { font-size: 1.45rem; }
p { margin: 0 0 1rem; }
.lead {
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  color: #253746;
}
.gold-rule {
  width: 86px;
  height: 2px;
  background: var(--gold);
  margin: 26px 0;
}
.button-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
  font-size: .94rem;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--navy); color: var(--white); border-color: var(--gold); }
.button-secondary { background: transparent; color: var(--navy); border-color: var(--line); }
.button-gold { background: var(--gold); color: var(--navy-dark); border-color: var(--gold); width: 100%; }
.hero-card {
  border: 1px solid rgba(184,138,59,.45);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--navy);
  position: relative;
}
.hero-card::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 22px;
  pointer-events: none;
}

.section-heading { max-width: 760px; margin-bottom: 38px; }
.section-heading.narrow { max-width: 820px; text-align: center; margin-inline: auto; }
.card-grid, .phase-grid, .offer-grid {
  display: grid;
  gap: 22px;
}
.six-cards { grid-template-columns: repeat(3, 1fr); }
.info-card {
  padding: 28px;
  border: 1px solid rgba(184,138,59,.25);
  border-radius: 22px;
  background: rgba(255,255,255,.56);
  min-height: 158px;
}
.info-card span {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: .12em;
}
.info-card p { margin: 0; font-size: 1rem; }

.phase-grid { grid-template-columns: repeat(3, 1fr); margin-top: 42px; }
.phase-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(217,179,109,.34);
  border-radius: 24px;
  padding: 30px;
}
.phase-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 24px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-light);
  font-weight: 800;
}
.phase-card p { color: rgba(255,255,255,.76); }

.offer-grid { grid-template-columns: repeat(2, 1fr); }
.offer-card {
  padding: 36px;
  border: 1px solid rgba(184,138,59,.30);
  border-radius: 28px;
  background: rgba(255,255,255,.55);
  box-shadow: 0 16px 50px rgba(3,16,31,.06);
}
.offer-card.highlighted { background: var(--navy); color: rgba(255,255,255,.84); }
.offer-card.highlighted h3, .offer-card.highlighted .price { color: var(--white); }
.label {
  display: inline-block;
  margin-bottom: 18px;
  padding: 7px 12px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--gold-light);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.price {
  margin: 22px 0 0;
  color: var(--navy);
  font-weight: 800;
  font-size: 1.18rem;
}
.centered { text-align: center; margin-top: 34px; }

.split-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.long-copy p { color: #2B3948; }
.quote-box {
  margin-top: 26px;
  border-left: 4px solid var(--gold);
  padding: 18px 22px;
  background: rgba(255,255,255,.58);
  color: var(--navy);
  font-weight: 700;
}
.about-grid { align-items: center; }
.portrait-card {
  min-height: 440px;
  display: grid;
  place-content: center;
  gap: 18px;
  text-align: center;
  border-radius: var(--radius);
  background: radial-gradient(circle at center, rgba(184,138,59,.16), transparent 45%), var(--navy);
  color: var(--white);
  box-shadow: var(--shadow);
}
.tree-symbol { color: var(--gold-light); font-size: 5rem; line-height: 1; }
.portrait-card p { color: rgba(255,255,255,.78); }
.text-link { color: var(--navy); font-weight: 800; text-decoration-color: var(--gold); text-underline-offset: 5px; }

.newsletter-grid, .contact-grid {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 60px;
  align-items: start;
}
.topic-list, .steps { padding-left: 1.2rem; margin: 24px 0 0; }
.topic-list li, .steps li { margin-bottom: 9px; }
.form-card {
  border: 1px solid rgba(217,179,109,.36);
  border-radius: 24px;
  padding: 28px;
  background: rgba(255,255,255,.08);
  box-shadow: 0 16px 50px rgba(3,16,31,.18);
}
.form-card.light { background: var(--cream); border-color: rgba(184,138,59,.30); color: var(--charcoal); }
label { display: block; margin: 14px 0 7px; font-weight: 700; }
input, textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid rgba(184,138,59,.35);
  border-radius: 12px;
  background: rgba(255,255,255,.92);
  color: var(--charcoal);
  font: inherit;
}
textarea { resize: vertical; }
.form-card .button { margin-top: 18px; }
.form-note { margin: 16px 0 0; font-size: .88rem; color: rgba(255,255,255,.70); }
.form-note.dark { color: var(--muted); }
.form-note a { color: var(--gold-light); font-weight: 700; }
.form-note.dark a { color: var(--navy); }
.hidden { display: none; }
.contact-links { display: grid; gap: 10px; margin: 24px 0 30px; }
.contact-links a { color: var(--navy); font-weight: 800; text-decoration-color: var(--gold); text-underline-offset: 5px; }

.footer {
  padding: 46px 0;
  background: var(--navy-dark);
  color: rgba(255,255,255,.72);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 26px;
  align-items: start;
}
.footer-brand {
  color: var(--white);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
  margin: 0 0 6px;
}
.footer a { display: block; color: rgba(255,255,255,.75); text-decoration: none; margin-bottom: 7px; }
.footer a:hover { color: var(--gold-light); }
.footer-line {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(184,138,59,.28);
  padding-top: 22px;
  margin: 6px 0 0;
  color: var(--gold-light);
}

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

.thank-you-page { min-height: 100vh; background: var(--paper); }
.success-wrap { min-height: 100vh; display: grid; place-items: center; padding: 24px; }
.success-card {
  max-width: 620px;
  padding: 48px;
  background: var(--cream);
  border: 1px solid rgba(184,138,59,.3);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.success-card h1 { font-size: clamp(2.6rem, 5vw, 4.8rem); }

@media (max-width: 940px) {
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: absolute;
    top: 75px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 22px;
    background: var(--navy-dark);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 20px;
  }
  .site-nav.open { display: flex; }
  .hero-grid, .split-grid, .newsletter-grid, .contact-grid { grid-template-columns: 1fr; }
  .six-cards, .phase-grid { grid-template-columns: repeat(2, 1fr); }
  .offer-grid { grid-template-columns: 1fr; }
  .portrait-card { min-height: 300px; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, 1120px); }
  .site-header { padding: 12px 14px; }
  .brand small { display: none; }
  section { padding: 68px 0; }
  .hero { padding-top: 70px; }
  .six-cards, .phase-grid { grid-template-columns: 1fr; }
  h1 { font-size: clamp(2.7rem, 13vw, 4rem); }
  h2 { font-size: clamp(2rem, 10vw, 3rem); }
  .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .success-card { padding: 32px 24px; }
}
