/* ============================================================
   Debut — site chrome + home/page layouts (loaded after styles.css)
   ============================================================ */

/* ---------------- SITE NAV ---------------- */
.snav { position: sticky; top: 0; z-index: 80; backdrop-filter: saturate(1.2) blur(10px); background: rgba(236,227,207,0.82); border-bottom: 1px solid var(--line); }
.snav-in { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.snav-brand { display: inline-flex; align-items: baseline; }
.snav-mark { font-family: var(--serif); font-size: 27px; font-weight: 600; color: var(--ink); letter-spacing: -0.02em; }
.snav-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--camel); display: inline-block; margin-left: 5px; transform: translateY(-1px); }
.snav-links { display: flex; align-items: center; gap: 28px; }
.snav-link { font-size: 15px; font-weight: 600; color: var(--text-soft); transition: color .18s; }
.snav-link:hover { color: var(--ink); }
.snav-link.active { color: var(--ink); }
.snav-cta { padding: 11px 20px; font-size: 14px; }
.snav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 8px; }
.snav-burger span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; }
@media (max-width: 820px) {
  .snav-burger { display: flex; }
  .snav-links { position: absolute; top: 74px; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0; background: var(--paper); border-bottom: 1px solid var(--line); padding: 8px 0; box-shadow: var(--shadow-md); max-height: 0; overflow: hidden; transition: max-height .3s ease; }
  .snav-links.open { max-height: 380px; }
  .snav-link { padding: 14px 28px; border-bottom: 1px solid var(--line); }
  .snav-cta { margin: 12px 28px; text-align: center; }
}

/* ---------------- SITE FOOTER ---------------- */
.sfoot { background: var(--ink); color: var(--text-on-dark); margin-top: 0; }
.sfoot-grid { display: grid; grid-template-columns: 1.2fr 2fr; gap: 48px; padding: 64px 28px 36px; }
.sfoot-brand { font-family: var(--serif); font-size: 30px; font-weight: 600; color: var(--paper); display: inline-flex; align-items: baseline; }
.sfoot-tag { font-size: 15px; color: var(--text-on-dark-soft); margin-top: 12px; max-width: 280px; line-height: 1.5; }
.sfoot-cta { margin-top: 22px; }
.sfoot-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.sfoot-col { display: flex; flex-direction: column; gap: 11px; }
.sfoot-col h4 { font-family: var(--sans); font-size: 12.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--brass); margin-bottom: 4px; }
.sfoot-col a { font-size: 14.5px; color: var(--text-on-dark-soft); transition: color .18s; }
.sfoot-col a:hover { color: var(--paper); }
.sfoot-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 22px 28px; border-top: 1px solid var(--line-on-dark); font-size: 13px; color: var(--text-on-dark-soft); flex-wrap: wrap; }
.sfoot-pre { display: inline-flex; align-items: center; gap: 8px; }
.sfoot-live { width: 8px; height: 8px; border-radius: 50%; background: #3FA46A; box-shadow: 0 0 0 0 rgba(63,164,106,.55); animation: pulse 2s infinite; }
@media (max-width: 760px) {
  .sfoot-grid { grid-template-columns: 1fr; gap: 36px; padding: 48px 24px 28px; }
  .sfoot-cols { grid-template-columns: 1fr 1fr; }
}

/* ---------------- HOME HERO (extends .hero from styles.css) ---------------- */
.home-hero { padding-top: 56px; }
.hero-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 24px; }
.hero-badge { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 600; color: var(--walnut); background: rgba(255,255,255,.55); border: 1px solid var(--line); padding: 8px 13px; border-radius: 999px; }
.hero-badge svg { color: var(--camel-deep); }
.hero-cta-row { display: flex; gap: 12px; align-items: center; margin-top: 28px; flex-wrap: wrap; }
.hero-microcopy { font-size: 13px; color: var(--text-soft); margin-top: 14px; display: inline-flex; align-items: center; gap: 7px; }
.hero-microcopy svg { color: var(--camel-deep); }

/* ---------------- COMPARISON ---------------- */
.compare { background: var(--ink); color: var(--text-on-dark); border-radius: 26px; padding: 52px 48px; position: relative; overflow: hidden; }
.compare::after { content:""; position:absolute; left:-60px; bottom:-80px; width:320px; height:320px; border-radius:50%; background: radial-gradient(circle, rgba(194,138,69,.22), transparent 65%); }
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; position: relative; z-index: 1; margin-top: 36px; }
.compare-card { border-radius: 18px; padding: 28px; }
.compare-old { background: rgba(236,227,207,.06); border: 1px solid var(--line-on-dark); }
.compare-new { background: var(--paper); color: var(--text); }
.compare-card h3 { font-family: var(--serif); font-size: 22px; font-weight: 500; margin-bottom: 18px; }
.compare-old h3 { color: var(--text-on-dark); }
.compare-new h3 { color: var(--ink); }
.compare-row { display: flex; align-items: flex-start; gap: 12px; padding: 11px 0; font-size: 15.5px; line-height: 1.45; border-top: 1px solid rgba(128,128,128,.14); }
.compare-row:first-of-type { border-top: none; }
.compare-old .compare-row { color: var(--text-on-dark-soft); }
.compare-ic { flex: none; width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; margin-top: 1px; }
.compare-old .compare-ic { background: rgba(214,90,70,.18); color: #E08A78; }
.compare-new .compare-ic { background: rgba(63,164,106,.16); color: #2F7D52; }
.compare-cost { margin-top: 20px; padding-top: 16px; border-top: 1px solid rgba(128,128,128,.14); font-family: var(--serif); font-size: 19px; }
.compare-old .compare-cost { color: var(--text-on-dark); }
.compare-new .compare-cost { color: var(--camel-deep); }
@media (max-width: 760px){ .compare { padding: 36px 24px; } .compare-grid { grid-template-columns: 1fr; } }

/* ---------------- SUBPAGE HERO ---------------- */
.page-hero { padding: 72px 0 8px; }
.page-hero .wrap { max-width: 820px; }
.page-hero h1 { font-family: var(--serif); font-weight: 500; letter-spacing: -0.025em; font-size: clamp(40px, 5vw, 62px); line-height: 1.04; color: var(--ink); margin-top: 18px; }
.page-hero .lead { font-size: clamp(17px, 1.6vw, 20px); line-height: 1.55; color: var(--text-soft); margin-top: 20px; }
.page-hero.center .wrap { text-align: center; margin: 0 auto; }
.page-hero.center .kicker { display: inline-flex; }

/* ---------------- BIG CTA BAND ---------------- */
.cta-band { text-align: center; padding: 90px 0; }
.cta-band .wrap { max-width: 720px; }
.cta-band h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(34px, 4.6vw, 52px); line-height: 1.06; color: var(--ink); }
.cta-band .section-lead { margin: 16px auto 0; }
.cta-band .hero-form { max-width: 520px; margin: 30px auto 0; }
.cta-band .final-note { font-size: 13.5px; color: var(--text-soft); margin-top: 16px; }

/* ---------------- VALUE PILLARS (about/how) ---------------- */
.pillars { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 50px; }
.pillar { background: var(--paper); border: 1px solid var(--line); border-radius: 16px; padding: 28px 24px; box-shadow: var(--shadow-sm); }
.pillar-ic { width: 46px; height: 46px; border-radius: 12px; background: var(--ink); color: var(--paper); display: grid; place-items: center; margin-bottom: 16px; }
.pillar h3 { font-family: var(--serif); font-size: 21px; font-weight: 500; color: var(--ink); }
.pillar p { font-size: 14.5px; line-height: 1.55; color: var(--text-soft); margin-top: 9px; }
@media (max-width: 820px){ .pillars { grid-template-columns: 1fr; } }

/* ---------------- BIG NUMBERED STEPS (how it works) ---------------- */
.bigsteps { display: flex; flex-direction: column; gap: 4px; margin-top: 48px; }
.bigstep { display: grid; grid-template-columns: 110px 1fr; gap: 32px; padding: 36px 0; border-top: 1px solid var(--line); align-items: start; }
.bigstep:last-child { border-bottom: 1px solid var(--line); }
.bigstep-n { font-family: var(--serif); font-size: 64px; line-height: 1; color: var(--camel); font-weight: 500; }
.bigstep h3 { font-family: var(--serif); font-size: 28px; font-weight: 500; color: var(--ink); }
.bigstep p { font-size: 16.5px; line-height: 1.6; color: var(--text-soft); margin-top: 10px; max-width: 620px; }
.bigstep-tag { display: inline-block; margin-top: 14px; font-size: 13px; font-weight: 700; color: var(--camel-deep); letter-spacing: .03em; }
@media (max-width: 680px){ .bigstep { grid-template-columns: 1fr; gap: 8px; padding: 28px 0; } .bigstep-n { font-size: 46px; } }

/* page intro spacing on subpages with snav */
.page-top-pad { padding-top: 8px; }

/* ---------------- CONTACT FORM ---------------- */
.cf-card { background: var(--paper); border: 1px solid var(--line); border-radius: 18px; padding: 30px; box-shadow: var(--shadow-sm); }
.cf-field { margin-bottom: 16px; }
.cf-field label { display: block; font-size: 12.5px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--text-soft); margin-bottom: 8px; }
.cf-input { width: 100%; font-family: inherit; font-size: 16px; padding: 14px 16px; border-radius: 12px; border: 1.5px solid var(--line); background: #fff; color: var(--text); }
.cf-input:focus { outline: none; border-color: var(--camel); box-shadow: 0 0 0 4px rgba(194,138,69,.18); }
.cf-area { resize: vertical; min-height: 120px; line-height: 1.5; }
.cf-submit { width: 100%; justify-content: center; margin-top: 4px; }
.cf-submit:disabled { opacity: .55; cursor: not-allowed; }
.cf-err { font-size: 13.5px; color: #B4452F; margin-bottom: 12px; }
.cf-alt { display: flex; align-items: center; justify-content: center; gap: 7px; font-size: 13.5px; color: var(--text-soft); margin-top: 16px; }
.cf-alt a { color: var(--camel-deep); text-decoration: underline; }
.cf-done { text-align: center; padding: 18px 6px; }
.cf-done-check { width: 60px; height: 60px; border-radius: 50%; background: rgba(63,164,106,.14); color: #2F7D52; display: grid; place-items: center; margin: 0 auto 16px; }
.cf-done h3 { font-family: var(--serif); font-size: 27px; font-weight: 500; color: var(--ink); }
.cf-done p { font-size: 15px; line-height: 1.6; color: var(--text-soft); margin: 10px auto 0; max-width: 360px; }
