/* New Day Marriage
   Palette and type scale live here. Swap the tokens when branding lands. */
:root {
  /* Deep navy = trust and permanence. Clay = warmth and every CTA. */
  --navy:         #0f2739;
  --navy-deep:    #081b29;
  --navy-soft:    #1b3d54;
  --clay:         #c25e3a;
  --clay-dark:    #a54c2c;
  --cream:        #fbf8f3;
  --sand:         #f2ece2;
  --sand-deep:    #e8dbc9;
  --ink:          #17222b;
  --ink-soft:     #55636e;
  --line:         #ddd3c4;
  --white:        #ffffff;

  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
  --sans:  -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --radius:   4px;
  --radius-lg:8px;
  --wrap:     1180px;
  --shadow:   0 1px 2px rgba(15,39,57,.05), 0 8px 24px rgba(15,39,57,.06);
  --shadow-lg:0 2px 4px rgba(15,39,57,.06), 0 18px 48px rgba(15,39,57,.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  font: 17px/1.7 var(--sans);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
p { margin: 0 0 1.1em; }
a { color: var(--navy); }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -.015em;
  color: var(--navy);
  margin: 0 0 .45em;
}
h1 { font-size: clamp(2.3rem, 4.6vw, 3.6rem); letter-spacing: -.025em; }
h2 { font-size: clamp(1.85rem, 3.2vw, 2.6rem); letter-spacing: -.02em; }
h3 { font-size: 1.3rem; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 28px; }
.narrow { max-width: 780px; }
.center { text-align: center; }
section { padding: 104px 0; }

.section-head { margin-bottom: 52px; }
.section-sub { max-width: 60ch; color: var(--ink-soft); font-size: 1.1rem; margin-bottom: 0; }
.center-sub { margin-left: auto; margin-right: auto; }
.lead-para { font-size: 1.12rem; }
.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase; letter-spacing: .16em;
  font-size: .76rem; font-weight: 700; color: var(--clay);
  margin: 0 0 1.1em;
}
.micro { font-size: .88rem; color: var(--ink-soft); line-height: 1.6; }
.sr-only, .skip:not(:focus) {
  position: absolute; width: 1px; height: 1px; padding: 0;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip:focus { position: fixed; top: 10px; left: 10px; z-index: 100; background: var(--white); padding: 12px 18px; border-radius: var(--radius); }

/* ---------- Buttons: every CTA is an anchor ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 26px; min-height: 50px;
  border-radius: var(--radius); border: 1.5px solid transparent;
  font-family: var(--sans); font-size: .97rem; font-weight: 600; letter-spacing: .005em;
  text-decoration: none; text-align: center; cursor: pointer;
  transition: background .15s ease, border-color .15s ease, transform .15s ease;
}
.btn:active { transform: translateY(1px); }
.btn-lg { padding: 17px 34px; min-height: 58px; font-size: 1.04rem; }
.btn-block { width: 100%; }
.btn-primary, .btn-accent { background: var(--clay); color: var(--white); border-color: var(--clay); }
.btn-primary:hover, .btn-accent:hover { background: var(--clay-dark); border-color: var(--clay-dark); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0 20px; }
.center .cta-row { justify-content: center; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 30; padding: 0;
  background: rgba(251,248,243,.93);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; gap: 34px; height: 84px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--navy); color: var(--sand-deep);
  display: grid; place-items: center;
  font-family: var(--serif); font-size: .92rem; letter-spacing: .04em;
}
.brand-name { font-family: var(--serif); font-size: 1.22rem; font-weight: 600; color: var(--navy); letter-spacing: -.01em; }
.nav-links { display: flex; gap: 30px; margin-left: auto; }
.nav-links a { text-decoration: none; color: var(--ink-soft); font-size: .95rem; font-weight: 500; }
.nav-links a:hover { color: var(--clay); }
.nav-actions { display: flex; align-items: center; gap: 20px; }
.nav-phone { text-decoration: none; font-weight: 600; font-size: .95rem; color: var(--navy); white-space: nowrap; }
.nav-phone:hover { color: var(--clay); }

/* ---------- Hero ---------- */
.hero { background: var(--sand); padding: 108px 0 116px; }
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 72px; align-items: center; }
.hero .sub { font-size: 1.22rem; line-height: 1.6; color: var(--ink-soft); max-width: 33em; }
.hero-media { position: relative; }
.hero-media img { border-radius: var(--radius-lg); width: 100%; box-shadow: var(--shadow-lg); }
.hero-badge {
  position: absolute; left: -26px; bottom: 34px;
  background: var(--white); border-radius: var(--radius-lg);
  padding: 18px 24px; box-shadow: var(--shadow-lg); border-top: 3px solid var(--clay);
}
.hero-badge p { margin: 0; }
.hero-badge-line1 { font-size: .72rem; text-transform: uppercase; letter-spacing: .14em; color: var(--ink-soft); font-weight: 600; }
.hero-badge-line2 { font-family: var(--serif); font-size: 1.32rem; color: var(--navy); line-height: 1.25; }
.hero-badge-line3 { font-size: .8rem; color: var(--ink-soft); }

/* ---------- Trust bar ---------- */
.trustbar { background: var(--navy); padding: 34px 0; color: var(--sand-deep); }
.trustbar ul { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.trustbar li { border-left: 1px solid rgba(232,219,201,.2); padding: 0 12px; }
.trustbar li:first-child { border-left: 0; }
.trustbar strong { display: block; font-family: var(--serif); font-size: 1.5rem; color: var(--white); font-weight: 600; }
.trustbar span { font-size: .84rem; text-transform: uppercase; letter-spacing: .1em; opacity: .75; }

/* ---------- Cards ---------- */
.cards-3, .cards-4 { display: grid; gap: 26px; list-style: none; padding: 0; margin: 0 0 56px; }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.cards-4 { grid-template-columns: repeat(4, 1fr); }
.card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px 30px; }
.card p { color: var(--ink-soft); margin-bottom: 0; }
.card.plain { background: transparent; border: 0; border-top: 2px solid var(--clay); border-radius: 0; padding: 26px 0 0; }
.num { font-family: var(--serif); font-size: 1.05rem; color: var(--clay); margin-bottom: 16px; letter-spacing: .06em; }

.stakes { background: var(--cream); }
.value { background: var(--sand); }
.value .cards-4 { margin-bottom: 0; }

/* ---------- Guide ---------- */
.guide { background: var(--cream); }
.guide-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 76px; align-items: center; }
.guide-media img { border-radius: var(--radius-lg); width: 100%; box-shadow: var(--shadow-lg); }
.guide-copy p { color: var(--ink-soft); }
.proof-list { list-style: none; padding: 0; margin: 26px 0 0; }
.proof-list li { padding-left: 30px; position: relative; margin-bottom: 11px; color: var(--ink); font-size: 1rem; }
.proof-list li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: 14px; height: 8px; border-left: 2px solid var(--clay); border-bottom: 2px solid var(--clay);
  transform: rotate(-45deg);
}

/* ---------- Services / pricing ---------- */
.services { background: var(--sand-deep); }
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; list-style: none; padding: 0; margin: 0 0 34px; align-items: start; }
.tier {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 38px 32px; display: flex; flex-direction: column; box-shadow: var(--shadow);
}
.tier.featured {
  border: 2px solid var(--navy); box-shadow: var(--shadow-lg);
  padding-top: 30px; margin-top: -20px; padding-bottom: 44px;
}
.badge {
  align-self: flex-start; background: var(--clay); color: var(--white);
  font-size: .69rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
  padding: 7px 13px; border-radius: 999px; margin: 0 0 20px;
}
.tier-head { border-bottom: 1px solid var(--line); padding-bottom: 26px; margin-bottom: 26px; }
.tier h3 { font-size: 1.5rem; }
.tier-desc { color: var(--ink-soft); font-size: .98rem; margin-bottom: 22px; }
.price { margin: 0; display: flex; flex-direction: column; }
.price-num { font-family: var(--serif); font-size: 2.5rem; color: var(--navy); line-height: 1.1; }
.price-unit { font-size: .85rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .08em; margin-top: 6px; }
.tier-features { list-style: none; padding: 0; margin: 0 0 32px; }
.tier-features li { padding-left: 28px; position: relative; margin-bottom: 12px; font-size: .97rem; color: var(--ink-soft); line-height: 1.5; }
.tier-features li::before {
  content: ""; position: absolute; left: 2px; top: .5em;
  width: 12px; height: 7px; border-left: 2px solid var(--clay); border-bottom: 2px solid var(--clay);
  transform: rotate(-45deg);
}
.tier .btn { margin-top: auto; width: 100%; }
.services-note { color: var(--ink-soft); font-size: 1.02rem; max-width: 52ch; margin: 0 auto; }

/* ---------- Plan ---------- */
.plan { background: var(--cream); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 44px; list-style: none; padding: 0; margin: 0 0 58px; counter-reset: none; }
.step { text-align: center; }
.step-num {
  display: grid; place-items: center; width: 62px; height: 62px; margin: 0 auto 22px;
  border-radius: 50%; background: var(--navy); color: var(--sand-deep);
  font-family: var(--serif); font-size: 1.5rem;
}
.step p { color: var(--ink-soft); margin-bottom: 0; }
.plan .micro { margin-top: 18px; }

/* ---------- Testimonials ---------- */
.testimonials { background: var(--sand); }
.quote { display: flex; flex-direction: column; }
.quote-body { font-family: var(--serif); font-size: 1.12rem; line-height: 1.6; color: var(--ink); margin-bottom: 26px; flex: 1; }
.quote-by { display: flex; align-items: center; gap: 14px; border-top: 1px solid var(--line); padding-top: 20px; }
.quote-by img { width: 52px; height: 52px; border-radius: 50%; flex: none; }
.quote cite { font-style: normal; display: flex; flex-direction: column; }
.quote cite span { font-weight: 600; font-size: .96rem; color: var(--navy); }
.quote cite small { font-size: .84rem; color: var(--ink-soft); }
.testimonials .cards-3 { margin-bottom: 0; }

/* ---------- Lead generator ---------- */
.lead { background: var(--navy); color: var(--sand-deep); }
.lead-grid { display: grid; grid-template-columns: .5fr 1fr; gap: 72px; align-items: center; }
.lead h2 { color: var(--white); }
.lead .eyebrow { color: var(--sand-deep); opacity: .8; }
.lead p { color: rgba(251,248,243,.82); }
.lead-media img { border-radius: var(--radius-lg); width: 100%; box-shadow: var(--shadow-lg); }
.lead-form { display: grid; gap: 12px; max-width: 480px; margin: 28px 0 14px; }
.lead-form input {
  padding: 15px 17px; border-radius: var(--radius); border: 1.5px solid transparent;
  font-size: 1rem; font-family: inherit; background: var(--white); color: var(--ink);
}
.lead-form input:focus { outline: 2px solid var(--clay); outline-offset: 1px; }
.lead .micro { color: rgba(251,248,243,.6); }

/* ---------- Explanatory ---------- */
.explain { background: var(--cream); }
.explain p { color: var(--ink-soft); font-size: 1.06rem; }

/* ---------- FAQ ---------- */
.faq { background: var(--sand); }
.faq h2 { margin-bottom: 34px; }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
  cursor: pointer; list-style: none; padding: 22px 40px 22px 0; position: relative;
  font-family: var(--serif); font-size: 1.18rem; font-weight: 600; color: var(--navy);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+"; position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  font-family: var(--sans); font-size: 1.5rem; font-weight: 300; color: var(--clay);
}
.faq-list details[open] summary::after { content: "–"; }
.faq-list p { margin: 0 0 24px; color: var(--ink-soft); max-width: 66ch; }
.faq-cta { margin-top: 52px; }
.faq-cta p { color: var(--ink-soft); }

/* ---------- Booking ---------- */
.book { background: var(--sand-deep); }
.book-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.book-copy p { color: var(--ink-soft); }
.contact-details { list-style: none; padding: 0; margin: 26px 0 30px; }
.contact-details li { margin-bottom: 10px; color: var(--ink-soft); font-size: 1.02rem; }
.contact-details a { color: var(--navy); font-weight: 600; text-decoration: none; }
.contact-details a:hover { color: var(--clay); }
.map { width: 100%; height: 260px; border: 1px solid var(--line); border-radius: var(--radius-lg); }
.book-form { background: var(--white); border-radius: var(--radius-lg); padding: 38px; box-shadow: var(--shadow-lg); }
.book-form h3 { margin-bottom: 22px; }
.field { margin-bottom: 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.book-form label { display: block; font-weight: 600; font-size: .89rem; margin-bottom: 6px; color: var(--navy); }
.book-form input, .book-form select, .book-form textarea {
  padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--radius);
  font-size: 1rem; font-family: inherit; width: 100%; background: var(--white); color: var(--ink);
}
.book-form input:focus, .book-form select:focus, .book-form textarea:focus { outline: none; border-color: var(--clay); }
.book-form .btn { margin: 22px 0 14px; }

/* ---------- Footer ---------- */
.footer { background: var(--navy-deep); color: rgba(251,248,243,.7); padding: 78px 0 34px; }
.footer h2, .footer .footer-brand { color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 46px; }
.footer-brand { font-size: 1.3rem; margin-bottom: .5em; }
.footer-brand-col .micro { margin-bottom: 24px; max-width: 34ch; }
.footer-head { font-weight: 700; font-size: .78rem; text-transform: uppercase; letter-spacing: .13em; color: var(--sand-deep); margin-bottom: 18px; }
.footer nav { display: grid; gap: 12px; align-content: start; }
.footer a { color: rgba(251,248,243,.7); text-decoration: none; font-size: .94rem; }
.footer a:hover { color: var(--white); }
.footer .micro { color: rgba(251,248,243,.5); }
.footer-bottom { border-top: 1px solid rgba(251,248,243,.13); padding-top: 26px; }
.crisis { max-width: 88ch; margin-bottom: 20px; }
.footer-legal { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-legal nav { display: flex; gap: 22px; }
.footer-legal p { margin: 0; }

/* ---------- Sticky mobile CTA ---------- */
.mobile-cta { display: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1040px) {
  .nav-links { gap: 22px; }
  .nav-phone { display: none; }
  .hero-grid, .guide-grid, .lead-grid, .book-grid { gap: 48px; }
  .hero-badge { left: 0; }
  .cards-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 880px) {
  section { padding: 68px 0; }
  html { scroll-padding-top: 80px; }
  .nav-inner { height: 72px; gap: 16px; }
  .nav-links { display: none; }
  .nav-actions { margin-left: auto; }
  .nav-actions .btn { padding: 11px 18px; min-height: 44px; font-size: .9rem; }
  .hero { padding: 60px 0 72px; }
  .hero-grid, .guide-grid, .lead-grid, .book-grid, .cards-3, .cards-4, .steps, .tiers { grid-template-columns: 1fr; }
  .hero-copy { order: 1; }
  .hero-media { order: 2; }
  .guide-media { order: 2; }
  .lead-media { max-width: 300px; }
  .hero-badge { position: static; margin-top: -34px; margin-left: 20px; margin-right: 20px; }
  .trustbar ul { grid-template-columns: repeat(2, 1fr); gap: 26px 12px; }
  .trustbar li:nth-child(odd) { border-left: 0; }
  .tier.featured { margin-top: 0; }
  .steps { gap: 40px; }
  .cta-row .btn, .center .btn-lg { width: 100%; }
  .field-row { grid-template-columns: 1fr; }
  .book-form { padding: 28px 22px; }
  .footer { padding-bottom: 110px; }

  /* Persistent CTA within thumb reach */
  .mobile-cta {
    display: grid; grid-template-columns: auto 1fr; gap: 10px;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    background: rgba(251,248,243,.96); border-top: 1px solid var(--line);
    backdrop-filter: blur(10px);
  }
  .mobile-cta .btn { min-height: 52px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
