/* ── FONTS ── */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/cormorant-garamond-latin-ext.woff2') format('woff2');
  unicode-range:
    U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304,
    U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/cormorant-garamond-latin.woff2') format('woff2');
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 300 500;
  font-display: swap;
  src: url('../fonts/dm-sans-latin-ext.woff2') format('woff2');
  unicode-range:
    U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304,
    U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 300 500;
  font-display: swap;
  src: url('../fonts/dm-sans-latin.woff2') format('woff2');
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'DM Sans';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/dm-sans-italic-latin-ext.woff2') format('woff2');
  unicode-range:
    U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304,
    U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'DM Sans';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/dm-sans-italic-latin.woff2') format('woff2');
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}

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

/* ── FOCUS ── */
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ── TOKENS ── */
:root {
  --navy: #0b1928;
  --navy-2: #162840;
  --navy-3: #1e3550;
  --gold: #c8903f;
  --gold-light: #dfa85c;
  --gold-pale: rgba(200, 144, 63, 0.08);
  --gold-border: rgba(200, 144, 63, 0.25);
  --cream: #f8f4ef;
  --cream-2: #ede7dc;
  --cream-3: #e0d8cd;
  --text: #1c1c1c;
  --muted: #5a5a5a;
  --white: #ffffff;
}

/* ── BASE ── */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── UTILITY ── */
.serif {
  font-family: 'Cormorant Garamond', serif;
}

.label {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-body {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 520px;
}

.inner {
  max-width: 840px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.inner--narrow {
  max-width: 680px;
}

/* ── NAV ── */
nav {
  background: var(--navy);
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 200;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.01em;
}

.nav-brand span {
  color: var(--gold-light);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gold-light);
  text-decoration: none;
  transition: opacity 0.15s;
}

.nav-link:hover {
  opacity: 0.75;
}

.nav-link--phone {
  font-size: 0.8rem;
  opacity: 0.7;
}

/* ── HERO ── */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: 5.5rem 1.5rem 6rem;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 80% at 90% 50%,
    rgba(200, 144, 63, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.hero-text {
  max-width: 540px;
}

.hero-form {
  position: relative;
}

.hero-form .form-header {
  margin-bottom: 1rem;
}

.hero-form .form-wrap {
  margin-top: 0;
  border-color: rgba(255, 255, 255, 0.12);
}

.hero-form .form-q {
  color: var(--navy);
}

.label--light {
  color: var(--gold-light);
  border-color: var(--gold-border);
  background: rgba(200, 144, 63, 0.12);
}

.form-sub--light {
  color: rgba(255, 255, 255, 0.5) !important;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(200, 144, 63, 0.12);
  border: 1px solid var(--gold-border);
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 2px;
  margin-bottom: 1.75rem;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.3rem, 5.5vw, 3.7rem);
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 1.5rem;
}

.hero h1 em {
  color: var(--gold-light);
  font-style: normal;
  position: relative;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.68);
  max-width: 580px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  padding: 0.95rem 2rem;
  border-radius: 3px;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: none;
  font-family: 'DM Sans', sans-serif;
  transition:
    background 0.2s,
    transform 0.15s;
  letter-spacing: 0.01em;
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.hero-note {
  margin-top: 1rem;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.35);
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-proof-stars {
  color: var(--gold-light);
  font-size: 0.9rem;
  letter-spacing: 3px;
}

.hero-proof-text {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}

.hero-proof-text strong {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

a.hero-proof {
  text-decoration: none;
  color: inherit;
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--cream);
  border-bottom: 1px solid var(--cream-2);
  padding: 2.25rem 1.5rem;
}

.stats-grid {
  max-width: 840px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-lbl {
  font-size: 0.78rem;
  color: var(--muted);
}

.stats-source {
  text-align: center;
  margin-top: 1.25rem;
  font-size: 0.7rem;
  color: var(--muted);
}

.stats-source a {
  color: var(--gold);
  text-decoration: none;
}

.stats-source a:hover {
  text-decoration: underline;
}

.stat-div {
  width: 1px;
  background: var(--cream-3);
  align-self: center;
  height: 40px;
}

/* ── TRUST RIBBON ── */
.trust-ribbon {
  background: #f0ebe3;
  border-bottom: 1px solid #ddd4c7;
  padding: 0.85rem 1.5rem;
  text-align: center;
}

.trust-ribbon p {
  font-size: 0.78rem;
  color: #6b5e52;
  letter-spacing: 0.03em;
}

.trust-ribbon a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── SECTIONS ── */
section {
  padding: 5.5rem 1.5rem;
}
section.alt {
  background: var(--cream);
}
section.dark {
  background: var(--navy);
}

/* ── PROBLEM CARDS ── */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.problem-card {
  background: var(--white);
  border: 1px solid var(--cream-2);
  border-top: 3px solid var(--gold);
  border-radius: 0 0 4px 4px;
  padding: 1.5rem 1.4rem;
}

.problem-card--green {
  border-top-color: #2d6a4f;
}

.problem-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.65rem;
}

.problem-card p {
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── STEPS ── */
.dark .label {
  color: rgba(200, 144, 63, 0.65);
}
.dark .section-title {
  color: var(--white);
}
.dark .section-body {
  color: rgba(255, 255, 255, 0.55);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
  position: relative;
}

.step-card {
  position: relative;
  padding-top: 0.5rem;
}

.step-dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--gold-border);
  background: rgba(200, 144, 63, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.step-num-inner {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold-light);
}

.step-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.step-card p {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
}

/* ── FORM ── */
.form-header {
  text-align: center;
}

.form-sub {
  font-size: 0.85rem;
  color: var(--muted);
}

.form-wrap {
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--cream-2);
  box-shadow: 0 2px 40px rgba(11, 25, 40, 0.07);
  padding: 2.5rem 2.25rem;
  max-width: 600px;
  margin: 2rem auto 0;
}

.progress-track {
  height: 3px;
  background: var(--cream-2);
  border-radius: 2px;
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 2px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-ind {
  font-size: 0.73rem;
  color: var(--muted);
  margin-bottom: 1.75rem;
}

.form-q {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 1.5rem;
}

.opts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
}

.opts.single {
  grid-template-columns: 1fr;
}

.opt {
  background: var(--white);
  border: 1.5px solid var(--cream-2);
  border-radius: 4px;
  padding: 0.9rem 1.1rem;
  text-align: left;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  color: var(--text);
  transition:
    border-color 0.15s,
    background 0.15s;
  line-height: 1.45;
}

.opt:hover {
  border-color: var(--gold);
  background: var(--gold-pale);
}
.opt.sel {
  border-color: var(--gold);
  background: var(--gold-pale);
  color: var(--navy);
  font-weight: 500;
}

.fields {
  display: grid;
  gap: 0.85rem;
}
.frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}
.fg {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.fg label {
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--muted);
}

.fg input {
  border: 1.5px solid var(--cream-2);
  border-radius: 4px;
  padding: 0.7rem 0.9rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.15s;
  background: var(--white);
}

.fg input:focus {
  border-color: var(--gold);
}
.fg input::placeholder {
  color: #b0a89e;
}

.phone-hint {
  font-weight: 300;
  color: #999;
}

.submit-btn {
  width: 100%;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 4px;
  padding: 1.05rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  margin-top: 1.25rem;
  transition: background 0.2s;
  letter-spacing: 0.01em;
}

.submit-btn:hover {
  background: var(--navy-3);
}

.disclaimer {
  font-size: 0.72rem;
  color: var(--muted);
  text-align: center;
  margin-top: 1rem;
  line-height: 1.6;
}

.err {
  color: #c0392b;
  font-size: 0.78rem;
  margin-top: 0.25rem;
  display: none;
}

/* ── THANK YOU ── */
.ty {
  text-align: center;
  padding: 1.5rem 0 0.5rem;
}

.ty-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(45, 106, 79, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.6rem;
}

.ty h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.ty p {
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 360px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ── FAQ ── */
.faq-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-top: 1px solid var(--cream-3);
  padding: 1.1rem 0;
}

.faq-item:last-child {
  border-bottom: 1px solid var(--cream-3);
}

.faq-summary {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.faq-toggle {
  color: var(--gold);
  font-size: 1.2rem;
  font-weight: 300;
  margin-left: 1rem;
  flex-shrink: 0;
}

.faq-answer {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.75;
  margin-top: 0.75rem;
}

/* ── TESTIMONIALS ── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.testi {
  background: var(--cream);
  border-radius: 4px;
  padding: 1.5rem 1.4rem;
  border: 1px solid var(--cream-2);
}

.stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}

.testi-text {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 1rem;
}

.testi-author {
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--muted);
}

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 3rem;
  align-items: start;
}

.about-photo {
  aspect-ratio: 3/4;
  border-radius: 4px;
  overflow: hidden;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.about-role {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.about-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.25rem;
  line-height: 1.1;
}

.about-text {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.8;
}
.about-text + .about-text {
  margin-top: 1rem;
}

/* ── BOTTOM CTA ── */
.bottom-cta {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 5rem 1.5rem;
}

.bottom-cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.bottom-cta p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 460px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

/* ── FOOTER ── */
footer {
  background: #060f18;
  color: rgba(255, 255, 255, 0.3);
  padding: 2rem 1.5rem;
  font-size: 0.76rem;
  text-align: center;
  line-height: 1.9;
}

footer a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
}
footer a:hover {
  color: rgba(255, 255, 255, 0.6);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-text {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: left;
  }
  .stat-div {
    display: none;
  }
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .steps-grid::before {
    display: none;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-photo {
    aspect-ratio: 3/4;
    max-width: 240px;
    margin: 0 auto;
  }
  .frow {
    grid-template-columns: 1fr;
  }
  .opts {
    grid-template-columns: 1fr;
  }
  .form-wrap {
    padding: 1.75rem 1.25rem;
  }
}
