:root {
  --black: #0a0a0a;
  --black-soft: #1a1a1a;
  --black-deep: #050505;
  --gold: #c9a961;
  --gold-bright: #e0c074;
  --gold-deep: #a88845;
  --cream: #f5f1e8;
  --cream-warm: #ebe5d4;
  --line: rgba(201, 169, 97, 0.15);
  --line-strong: rgba(201, 169, 97, 0.3);
  --muted: rgba(245,241,232,0.55);
  --muted-soft: rgba(245,241,232,0.72);
  --red-soft: #d98b6f;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--black);
  color: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===== ALERT BAR + NAV ===== */
.alert-bar {
  background: var(--gold);
  color: var(--black);
  padding: 8px 0;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
}
nav {
  background: var(--black);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.logo-mark { width: 38px; height: 38px; }
.logo-text {
  font-family: 'Fraunces', serif;
  font-weight: 900;
  font-size: 1.35rem;
  color: var(--cream);
  letter-spacing: -0.5px;
  line-height: 1;
}
.logo-text span { color: var(--gold); }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  color: var(--muted-soft);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--gold); }
.nav-right { display: flex; align-items: center; gap: 28px; }
.nav-phone {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s ease;
  white-space: nowrap;
}
.nav-phone:hover { color: var(--gold-bright); }
.nav-cta {
  background: var(--gold);
  color: var(--black);
  padding: 13px 24px;
  border: none;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--gold-bright); }

/* ===== HERO ===== */
.hero {
  background: var(--black);
  padding: 76px 0 96px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 75% 50%, rgba(201,169,97,0.18) 0%, transparent 65%),
    radial-gradient(ellipse at bottom left, rgba(201,169,97,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  min-height: 600px;
}
.hero-right { width: 100%; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}
.eyebrow::before { content: ''; width: 48px; height: 2px; background: var(--gold); }
.hero h1 {
  font-family: 'Fraunces', serif;
  font-weight: 900;
  font-size: 4rem;
  line-height: 1;
  letter-spacing: -2.5px;
  color: var(--cream);
  margin-bottom: 26px;
}
.hero h1 em { font-style: italic; font-weight: 400; color: var(--gold); }
.hero-sub {
  font-size: 1.15rem;
  color: var(--muted-soft);
  margin-bottom: 38px;
  max-width: 540px;
}
.trust-row {
  display: flex;
  gap: 30px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.trust-item { font-size: 0.85rem; color: var(--muted); display: flex; align-items: center; gap: 10px; }
.trust-item::before { content: ''; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }
.trust-item strong { color: var(--cream); font-weight: 600; }

/* ===== HERO LEFT (slim copy block) ===== */
.hero-subline {
  font-size: 1.05rem;
  color: var(--muted-soft);
  margin-top: 18px;
  margin-bottom: 12px;
  line-height: 1.5;
  max-width: 540px;
}
.hero-cta-line {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: -0.3px;
  margin-bottom: 4px;
}

/* ===== FORM (SMHW pattern — the main event) ===== */
.form-card {
  background: var(--cream);
  padding: 36px 32px 40px;
  box-shadow:
    0 30px 80px rgba(0,0,0,0.5),
    0 0 0 1px rgba(201,169,97,0.15),
    0 0 60px rgba(201,169,97,0.12);
  position: relative;
  border-top: 4px solid var(--gold);
  overflow: visible;
  z-index: 2;
  animation: cardFloat 6s ease-in-out infinite;
}
@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.form-viewport { position: relative; overflow: hidden; }
.form-track { display: flex; transition: transform 0.45s cubic-bezier(0.7,0,0.3,1); width: 200%; }
.form-step { width: 50%; padding-right: 4px; flex-shrink: 0; }

.form-field, .form-select {
  width: 100%;
  padding: 15px 18px;
  border: 1.5px solid #d4d0c8;
  background: #fff;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  color: var(--black);
  margin-bottom: 14px;
  transition: border-color 0.2s ease;
  border-radius: 0;
}
.form-field:focus, .form-select:focus { outline: none; border-color: var(--gold); }
.form-field-lg {
  padding: 20px 22px;
  font-size: 1.05rem;
}
.form-select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c9a961' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat; background-position: right 16px center; background-size: 16px;
  padding-right: 44px; cursor: pointer;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.form-row .form-field, .form-row .form-select { margin-bottom: 14px; }

.form-submit {
  width: 100%;
  background: var(--black);
  color: var(--gold);
  padding: 17px;
  border: none;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
}
.form-submit-lg {
  padding: 22px;
  font-size: 1rem;
  letter-spacing: 2.5px;
}
.form-submit:hover { background: var(--black-soft); color: var(--gold-bright); }

.form-micro {
  text-align: center;
  font-size: 0.78rem;
  color: #6b6b65;
  letter-spacing: 0.5px;
  margin-top: 14px;
  margin-bottom: 24px;
}

.form-trust-list {
  list-style: none;
  margin: 0;
  padding: 22px 0 0 0;
  border-top: 1px solid #e4e0d8;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 18px;
}
.form-trust-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--black);
  font-weight: 500;
}
.form-trust-list svg {
  width: 18px;
  height: 18px;
  color: #2d8659;
  flex-shrink: 0;
}

.form-header-lg {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.45rem;
  color: var(--black);
  margin-bottom: 22px;
  line-height: 1.2;
  letter-spacing: -0.4px;
  text-align: center;
}

.form-thanks { text-align: center; padding: 36px 0; }
.form-thanks .checkmark {
  width: 60px; height: 60px; margin: 0 auto 18px;
  border: 2px solid var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.8rem; font-weight: 700;
}
.form-thanks h3 { font-family: 'Fraunces', serif; font-size: 1.7rem; color: var(--black); margin-bottom: 12px; letter-spacing: -0.5px; }
.form-thanks p { color: #6b6b65; font-size: 0.95rem; }
.form-thanks .call-now {
  display: inline-block; margin-top: 20px;
  font-family: 'Fraunces', serif; font-weight: 700; font-size: 1.35rem;
  color: var(--gold-deep); text-decoration: none;
  padding: 11px 26px; border: 2px solid var(--gold-deep);
  transition: all 0.2s ease;
}
.form-thanks .call-now:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }

/* ===== STORY STRIP ===== */
.story-strip {
  background: var(--black-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 48px 0;
}
.story-strip-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 40px;
  display: flex; justify-content: space-between; align-items: flex-start; gap: 60px;
}
.story-quote {
  font-family: 'Fraunces', serif; font-style: italic; font-size: 1.2rem;
  color: var(--cream); letter-spacing: -0.3px; max-width: 860px; line-height: 1.6;
}
.story-quote::before {
  content: '"'; color: var(--gold); font-size: 2.2rem; margin-right: 4px;
  font-weight: 700; font-style: normal; line-height: 0; vertical-align: -0.25em;
}
.story-attribution {
  font-size: 0.82rem; color: var(--gold); letter-spacing: 2px;
  text-transform: uppercase; font-weight: 700; white-space: nowrap; padding-top: 8px;
}

/* ===== SECTION DEFAULTS ===== */
section { position: relative; }
.section-inner { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.section-eyebrow {
  display: flex; align-items: center; gap: 16px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 4px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 24px; justify-content: center;
}
.section-eyebrow::before, .section-eyebrow::after { content: ''; width: 48px; height: 2px; background: var(--gold); }
.section-title {
  font-family: 'Fraunces', serif; font-weight: 900; font-size: 3rem;
  line-height: 1.05; letter-spacing: -1.5px; color: var(--cream);
  text-align: center; margin-bottom: 20px;
}
.section-title em { font-style: italic; font-weight: 400; color: var(--gold); }
.section-sub { font-size: 1.1rem; color: var(--muted-soft); text-align: center; max-width: 680px; margin: 0 auto 60px; }

/* ===== PAIN PANELS (situation-specific) ===== */
.pain {
  padding: 100px 0;
  background: var(--black-soft);
  position: relative;
}
.pain::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, var(--line-strong), transparent);
}
.pain-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; max-width: 1100px; margin: 0 auto; }
.pain-block h3 {
  font-family: 'Fraunces', serif; font-weight: 700; font-size: 1.5rem;
  color: var(--cream); margin-bottom: 14px; letter-spacing: -0.4px;
}
.pain-block h3 em { font-style: italic; color: var(--gold); }
.pain-block p { color: var(--muted-soft); font-size: 1rem; line-height: 1.75; margin-bottom: 16px; }
.pain-list { list-style: none; }
.pain-list li {
  padding: 14px 0 14px 32px; border-bottom: 1px solid var(--line);
  position: relative; color: var(--muted-soft); font-size: 0.98rem;
}
.pain-list li::before {
  content: ''; position: absolute; left: 0; top: 21px;
  width: 14px; height: 14px; border: 2px solid var(--gold); border-radius: 50%;
}
.pain-list li:last-child { border-bottom: none; }
.pain-list li strong { color: var(--cream); font-weight: 600; }

/* ===== HOW IT WORKS ===== */
.how { padding: 100px 0; background: var(--black); position: relative; }
.how::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, var(--line-strong), transparent);
}
.steps { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.step { padding: 44px 34px; border-right: 1px solid var(--line); }
.step:last-child { border-right: none; }
.step-num { font-family: 'Fraunces', serif; font-weight: 900; font-size: 4.2rem; line-height: 1; color: var(--gold); margin-bottom: 22px; letter-spacing: -3px; }
.step h3 { font-family: 'Fraunces', serif; font-weight: 700; font-size: 1.45rem; color: var(--cream); margin-bottom: 13px; letter-spacing: -0.5px; }
.step p { font-size: 0.96rem; color: var(--muted-soft); line-height: 1.65; }

/* ===== WHO WE HELP ===== */
.who { padding: 100px 0; background: var(--black-soft); position: relative; }
.who::before {
  content: ''; position: absolute; top: -1px; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, var(--line-strong), transparent);
}
.situations { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.situation { background: var(--black); padding: 38px 30px; transition: background 0.25s ease; text-decoration: none; display: block; }
.situation:hover { background: var(--black-deep); }
.situation-icon { width: 32px; height: 32px; margin-bottom: 18px; color: var(--gold); }
.situation h4 { font-family: 'Fraunces', serif; font-weight: 700; font-size: 1.2rem; color: var(--cream); margin-bottom: 10px; letter-spacing: -0.3px; }
.situation p { font-size: 0.92rem; color: var(--muted); line-height: 1.6; }
.situation .situation-link { margin-top: 14px; font-size: 0.78rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); display: inline-flex; align-items: center; gap: 6px; }

/* ===== TRUST BLOCK ===== */
.trust-section { padding: 100px 0; background: var(--black); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-pillar { padding: 52px 34px; text-align: center; border-right: 1px solid var(--line); }
.trust-pillar:last-child { border-right: none; }
.trust-pillar-icon { width: 46px; height: 46px; margin: 0 auto 22px; color: var(--gold); }
.trust-pillar-num { font-family: 'Fraunces', serif; font-weight: 900; font-size: 3.2rem; color: var(--cream); line-height: 1; margin-bottom: 8px; letter-spacing: -2px; }
.trust-pillar-num em { font-style: italic; color: var(--gold); font-weight: 400; }
.trust-pillar-label { font-size: 0.78rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.trust-pillar p { font-size: 0.95rem; color: var(--muted-soft); line-height: 1.6; max-width: 280px; margin: 0 auto; }

/* ===== FAQ ===== */
.faq { padding: 100px 0; background: var(--black-soft); position: relative; }
.faq::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, var(--line-strong), transparent);
}
.faq-list { max-width: 860px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-question {
  width: 100%; background: none; border: none; padding: 26px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  cursor: pointer; text-align: left; color: var(--cream);
  font-family: 'Fraunces', serif; font-weight: 600; font-size: 1.22rem;
  letter-spacing: -0.3px; transition: color 0.2s ease;
}
.faq-question:hover { color: var(--gold); }
.faq-toggle {
  flex-shrink: 0; width: 28px; height: 28px; border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center; color: var(--gold);
  font-size: 1.1rem; transition: all 0.3s ease;
}
.faq-item.open .faq-toggle { background: var(--gold); color: var(--black); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1); }
.faq-answer-inner { padding: 0 0 26px; color: var(--muted-soft); font-size: 1rem; line-height: 1.7; max-width: 760px; }

/* ===== FINAL CTA ===== */
.final-cta { padding: 120px 0; background: var(--black-deep); position: relative; overflow: hidden; }
.final-cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(201,169,97,0.10) 0%, transparent 60%); pointer-events: none; }
.final-cta-inner { max-width: 880px; margin: 0 auto; padding: 0 40px; text-align: center; position: relative; }
.final-cta h2 { font-family: 'Fraunces', serif; font-weight: 900; font-size: 3.4rem; line-height: 1.05; letter-spacing: -1.8px; color: var(--cream); margin-bottom: 24px; }
.final-cta h2 em { font-style: italic; font-weight: 400; color: var(--gold); }
.final-cta p { font-size: 1.15rem; color: var(--muted-soft); margin-bottom: 46px; max-width: 620px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-primary { background: var(--gold); color: var(--black); padding: 19px 38px; border: none; font-weight: 700; font-size: 0.88rem; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; text-decoration: none; display: inline-block; transition: all 0.2s ease; }
.cta-primary:hover { background: var(--gold-bright); }
.cta-secondary { background: transparent; color: var(--cream); padding: 19px 38px; border: 1.5px solid var(--gold); font-weight: 700; font-size: 0.88rem; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; text-decoration: none; display: inline-block; transition: all 0.2s ease; }
.cta-secondary:hover { background: var(--gold); color: var(--black); }

/* ===== FOOTER ===== */
footer { background: var(--black); border-top: 1px solid var(--line); padding: 58px 0 30px; }
.footer-inner { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 46px; border-bottom: 1px solid var(--line); }
.footer-brand .logo { margin-bottom: 18px; }
.footer-brand p { font-size: 0.92rem; color: var(--muted); line-height: 1.7; max-width: 340px; }
.footer-col h5 { font-size: 0.72rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 11px; }
.footer-col a { color: var(--muted-soft); text-decoration: none; font-size: 0.92rem; transition: color 0.2s ease; }
.footer-col a:hover { color: var(--gold); }
.footer-col p { color: var(--muted-soft); font-size: 0.92rem; margin-bottom: 8px; }
.footer-bottom { padding-top: 30px; display: flex; justify-content: space-between; align-items: center; font-size: 0.82rem; color: var(--muted); flex-wrap: wrap; gap: 16px; }
.footer-bottom a { color: var(--muted); text-decoration: none; transition: color 0.2s ease; }
.footer-bottom a:hover { color: var(--gold); }

/* ===== RESPONSIVE ===== */
@media (max-width: 980px) {
  .nav-links { display: none; }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 0 24px; }
  .hero h1 { font-size: 2.6rem; }
  .nav-right .nav-phone { display: none; }
  .story-strip-inner { flex-direction: column; padding: 0 24px; text-align: center; gap: 20px; }
  .story-attribution { white-space: normal; }
  .section-inner { padding: 0 24px; }
  .section-title { font-size: 2.1rem; }
  .steps, .trust-grid { grid-template-columns: 1fr; }
  .step, .trust-pillar { border-right: none; border-bottom: 1px solid var(--line); }
  .step:last-child, .trust-pillar:last-child { border-bottom: none; }
  .situations { grid-template-columns: 1fr; }
  .pain-grid { grid-template-columns: 1fr; gap: 32px; }
  .final-cta h2 { font-size: 2.2rem; }
  .final-cta-inner { padding: 0 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .pain, .how, .who, .trust-section, .faq { padding: 70px 0; }
  .form-card { padding: 30px 24px; }
}
@media (max-width: 600px) {
  .hero { padding: 48px 0 64px; }
  .hero h1 { font-size: 2.1rem; letter-spacing: -1px; }
  .nav-inner { padding: 0 20px; }
  .nav-cta { padding: 11px 18px; font-size: 0.7rem; }
  .step-num { font-size: 3.4rem; }
  .trust-pillar-num { font-size: 2.5rem; }
  .faq-question { font-size: 1.02rem; padding: 20px 0; }
  .footer-grid { grid-template-columns: 1fr; }
}
