/* =========================================================================
   HEARTH HOME CARE — the family-facing front door  (example.com)
   Warm, reassuring, airy. White + warm charcoal with a signature mustard-gold→
   orange accent, aimed at the adult child. The owner control room is one click
   away at /app. (The --green* tokens keep their NAMES but now carry the GOLD
   ramp — design-reskin token swap, so every usage repoints without edits.)
   ========================================================================= */
:root {
  --cream:   #FBF7EF;
  --surface: #FFFFFF;
  --warm:    #F4ECDD;
  --ink:     #241D14;
  --body:    #6E665B;
  --muted:   #9C9283;
  --line:    #EBE2D2;
  --green:        #D49A33;
  --green-deep:   #B97F23;
  --green-bright: #ECB54A;
  --green-soft:   #FBEFD6;
  --gold:    #E6A94C;
  --gold-deep: #B97F23;
  --gold-soft: rgba(230,169,76,.16);
  --orange:      #E07B2C;
  --orange-deep: #C2661F;
  --serif: "Fraunces", "Playfair Display", Georgia, serif;
  --sans:  "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --mono:  "Roboto Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --r: 16px; --r-lg: 24px; --r-xl: 32px;
  --shadow: 0 20px 50px rgba(70,48,18,.14);
  --shadow-sm: 0 8px 24px rgba(70,48,18,.09);
  --ease: cubic-bezier(.22,.61,.36,1);
  --maxw: 1160px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; overflow-x: clip; }
section[id], div[id] { scroll-margin-top: 84px; }
body { font-family: var(--sans); background: var(--cream); color: var(--body); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; overflow-x: clip; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; }
::selection { background: #f7e3b8; color: #4a3611; }
:focus-visible { outline: 2px solid var(--green); outline-offset: 2px; border-radius: 4px; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
.serif { font-family: var(--serif); }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem; }
.eyebrow { font-size: .74rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-deep); }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; font-weight: 650; font-size: .95rem; padding: .85rem 1.5rem; border-radius: 999px; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s; white-space: nowrap; }
.btn svg { width: 18px; height: 18px; }
.btn:active { transform: translateY(1px); }
.btn-primary { color: #fff; background: linear-gradient(180deg, var(--orange), var(--orange-deep)); box-shadow: 0 10px 26px rgba(224,123,44,.34); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(224,123,44,.44); }
.btn-light { color: var(--ink); background: #fff; box-shadow: var(--shadow-sm); }
.btn-light:hover { transform: translateY(-2px); }
.btn-ghost { color: var(--ink); border: 1px solid var(--line); background: #fff; }
.btn-ghost:hover { border-color: var(--green); color: var(--green); }
.btn-on-dark { color: var(--ink); background: #fff; box-shadow: 0 14px 34px rgba(0,0,0,.22); }
.btn-on-dark:hover { transform: translateY(-2px); box-shadow: 0 20px 44px rgba(0,0,0,.3); }
.btn-outline-light { color: #fff; border: 1px solid rgba(255,255,255,.5); }
.btn-outline-light:hover { background: rgba(255,255,255,.12); }

/* visible by default; JS arms the hide-state only when it can reveal again,
   so content below the fold can never get stuck hidden */
[data-reveal] { opacity: 1; }
body.rv-armed [data-reveal] { opacity: 0; animation: rvFail .01s linear 2.6s forwards; }
body.rv-armed [data-reveal].in { opacity: 1; animation: rise .72s var(--ease) both; }
.svc-grid [data-reveal].in:nth-child(2), .rev-grid [data-reveal].in:nth-child(2) { animation-delay: .06s; }
.svc-grid [data-reveal].in:nth-child(3), .rev-grid [data-reveal].in:nth-child(3) { animation-delay: .12s; }
.svc-grid [data-reveal].in:nth-child(4) { animation-delay: .18s; }
@keyframes rise { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; }
}
@keyframes rvFail { to { opacity: 1; } }

/* ---- header ----------------------------------------------------------- */
/* transparent over the hero; frosts once the page scrolls */
/* out of flow so the hero runs underneath; stays transparent — scrolling adds
   dark glass, never an opaque bar. safe-area keeps it clear of the notch when
   launched from the Home Screen. */
.site-header { position: fixed; left: 0; right: 0; top: 0; z-index: 40; padding-top: env(safe-area-inset-top, 0px); background: transparent; border-bottom: 1px solid transparent; transition: background .3s, border-color .3s; }
.site-header.scrolled { background: rgba(36,29,20,.62); -webkit-backdrop-filter: blur(16px) saturate(1.3); backdrop-filter: blur(16px) saturate(1.3); border-bottom-color: rgba(255,255,255,.08); }
.site-header .logo { color: #fff; }
.site-header .logo em { color: var(--green-bright); }
.site-header .hdr-toggle { color: #fff; border-color: rgba(255,255,255,.35); background: rgba(255,255,255,.08); }
@media (min-width: 901px) {
  .site-header .site-nav a:not(.btn) { color: rgba(255,255,255,.88); }
  .site-header .site-nav a:not(.btn):hover { color: var(--green-bright); }
  .site-header .btn-ghost { color: #fff; background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.35); }
  .site-header .btn-ghost:hover { border-color: var(--green-bright); color: var(--green-bright); }
}
.site-header .container { display: flex; align-items: center; gap: 1.2rem; padding-top: .8rem; padding-bottom: .8rem; }
.logo { display: flex; align-items: center; gap: .6rem; font-family: var(--serif); font-weight: 600; font-size: 1.2rem; color: var(--ink); }
.logo .mk { width: 36px; height: 36px; }
.logo em { color: var(--green); font-style: italic; }
/* real Hearth Home Care logo lockup — on a white chip so it reads cleanly on the dark
   header + footer */
.logo-chip { display: inline-flex; align-items: center; justify-content: center; background: #fff; border-radius: 14px; padding: 5px 11px; box-shadow: 0 6px 18px rgba(0,0,0,.18); }
.logo-img { height: 42px; width: auto; display: block; }
.foot-brand .logo-img { height: 50px; }
.site-nav { display: flex; align-items: center; gap: 1.6rem; margin-left: auto; }
.site-nav a { font-size: .9rem; font-weight: 550; color: var(--body); transition: color .2s; }
.site-nav a:hover { color: var(--green); }
.site-nav .btn { padding: .6rem 1.1rem; font-size: .86rem; }
.hdr-toggle { display: none; }

/* ---- hero ------------------------------------------------------------- */
/* warm charcoal-brown, lit from the upper right with a mustard-gold glow and a
   soft orange sheen — a reassuring, image-free backdrop for the headline */
.hero { position: relative; overflow: hidden; color: #fff; padding: calc(clamp(3rem, 7vw, 5.5rem) + 76px + env(safe-area-inset-top, 0px)) 0 clamp(5.5rem, 11vw, 9rem);
  background-color: #1E170E;
  background-image:
    linear-gradient(95deg, rgba(22,16,9,.74) 0%, rgba(26,19,11,.52) 42%, rgba(28,21,13,.40) 72%, rgba(28,21,13,.42) 100%),
      url('assets/photos/hero-caregiver.jpg');
  background-position: center, center 30%;
  background-size: cover, cover;
  background-repeat: no-repeat; }
/* a warm caregiving moment behind the floating card — softly shaded + a touch
   out of focus (rack-focus) so the card stays the hero. On ::before so only the
   photo blurs, never the copy. */
.hero::before { content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    radial-gradient(120% 130% at 88% 8%, rgba(236,181,74,.20), transparent 46%),
      radial-gradient(100% 120% at 12% 92%, rgba(224,123,44,.16), transparent 52%); }
@media (max-width: 720px) {
  .hero { background-image:
      linear-gradient(180deg, rgba(22,16,9,.72) 0%, rgba(26,19,11,.5) 46%, rgba(20,14,8,.66) 100%),
      url('assets/photos/hero-caregiver.jpg');
    background-position: center, center 28%;
    background-size: auto, cover;  background-size: cover, cover; }
}
.hero::after { content: ""; position: absolute; right: -12%; top: -22%; width: 62%; height: 130%; background: radial-gradient(circle at center, rgba(244,182,62,.16), transparent 60%); pointer-events: none; }
.hero-inner { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: clamp(2rem, 5vw, 3.4rem); align-items: center; justify-content: center; }
.hero-copy { flex: 1 1 380px; min-width: min(300px, 100%); max-width: 600px; }
.hero-kicker { display: inline-flex; align-items: center; gap: .55rem; font-size: .74rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #f3e2bd; margin-bottom: 1.3rem; padding: .4rem .8rem .4rem .55rem; border: 1px solid rgba(243,226,189,.28); border-radius: 999px; background: rgba(255,255,255,.04); white-space: nowrap; }
.hero-kicker .dot { position: relative; width: 8px; height: 8px; border-radius: 50%; background: var(--green-bright); }
.hero-kicker .ping { position: absolute; inset: 0; border-radius: 50%; background: var(--green-bright); animation: ping 2.4s var(--ease) infinite; }
@keyframes ping { 0% { transform: scale(.5); opacity: .85; } 100% { transform: scale(2.1); opacity: 0; } }
.hero h1 { font-family: var(--serif); font-weight: 700; font-size: clamp(2.5rem, 5.6vw, 4rem); line-height: 1.05; letter-spacing: .015em; text-transform: uppercase; text-wrap: balance; text-shadow: 0 2px 24px rgba(20,12,4,.45); }
.hero h1 em { font-style: normal; color: var(--green-bright); text-decoration: underline; text-decoration-color: var(--orange); text-decoration-thickness: .07em; text-underline-offset: .14em; }
.hero-lead { margin-top: 1.4rem; font-size: clamp(1.04rem, 1.4vw, 1.16rem); color: #efe7d8; max-width: 46ch; text-wrap: pretty; text-shadow: 0 1px 14px rgba(20,12,4,.5); }
.hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.hero-rating { display: flex; flex-wrap: wrap; align-items: center; gap: .9rem; margin-top: 1.7rem; font-size: .9rem; color: #e4dac8; }
.stars { color: var(--gold); letter-spacing: .1em; }
.hero-rating .stars { font-size: 1.02rem; letter-spacing: .12em; }

/* hero proof card — the verification tech is the star */
.hero-card { position: relative; z-index: 1; flex: 0 1 430px; min-width: min(300px, 100%); background: #fff; border-radius: 30px; padding: 1rem; box-shadow: 0 44px 90px rgba(0,0,0,.42); color: var(--ink); transform: rotate(0.8deg); will-change: transform; }
.hero-photo { position: relative; aspect-ratio: 4/3; border-radius: 21px; overflow: hidden; }
.hero-photo img, .ps-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
/* the care-scene — a warm, image-free "home + comfort" tile: a window of light,
   a shelf, and a steaming gold mug. Stands in for the proof thumbnail; no face. */
.care-scene { position: absolute; inset: 0; overflow: hidden;
  background:
    radial-gradient(120% 90% at 76% 16%, rgba(230,169,76,.34), transparent 56%),
    linear-gradient(180deg, #F6ECDA 0%, #EFE1CC 56%, #E2D1B4 56%, #DAC6A6 100%); }
.care-scene .cs-window { position: absolute; left: 13%; top: 12%; width: 30%; height: 44%; border-radius: 10px 10px 5px 5px;
  background: linear-gradient(180deg, #FBF4E6, #F2E4CD);
  box-shadow: 0 5px 16px rgba(120,90,40,.18), inset 0 0 0 2px rgba(190,150,90,.4);
  background-image: linear-gradient(90deg, transparent 48%, rgba(190,150,90,.45) 48% 52%, transparent 52%), linear-gradient(0deg, transparent 48%, rgba(190,150,90,.45) 48% 52%, transparent 52%); }
.care-scene .cs-shelf { position: absolute; left: 0; right: 0; bottom: 42%; height: 9px; background: linear-gradient(180deg, #CBAF82, #B5996B); box-shadow: 0 4px 9px rgba(90,60,20,.22); }
.care-scene .cs-mug { position: absolute; right: 24%; bottom: 44%; width: 24%; aspect-ratio: 1.15/1; background: linear-gradient(180deg, #ECB54A, #C2661F); border-radius: 6px 6px 11px 11px; box-shadow: inset 0 2px 0 rgba(255,255,255,.5), 0 6px 14px rgba(120,70,20,.3); }
.care-scene .cs-mug::after { content: ""; position: absolute; right: -26%; top: 22%; width: 30%; height: 46%; border: 5px solid #C2661F; border-left: none; border-radius: 0 14px 14px 0; }
.care-scene .cs-steam { position: absolute; right: 30%; bottom: 60%; width: 16%; height: 28%; opacity: .85; }
.care-scene .cs-steam i { position: absolute; bottom: 0; width: 3px; height: 100%; border-radius: 3px; background: linear-gradient(0deg, rgba(255,255,255,0), rgba(255,255,255,.9)); animation: steam 3.2s ease-in-out infinite; }
.care-scene .cs-steam i:nth-child(1) { left: 8%; animation-delay: 0s; }
.care-scene .cs-steam i:nth-child(2) { left: 48%; height: 84%; animation-delay: .5s; }
.care-scene .cs-steam i:nth-child(3) { left: 86%; height: 70%; animation-delay: 1s; }
@keyframes steam { 0%,100% { transform: translateY(4px) scaleY(.9); opacity: .35; } 50% { transform: translateY(-4px) scaleY(1.05); opacity: .85; } }
.scan { position: absolute; left: 0; right: 0; top: 0; height: 38%; background: linear-gradient(180deg, rgba(244,200,121,0), rgba(244,200,121,.32) 60%, rgba(244,200,121,.55)); mix-blend-mode: screen; animation: scan 3.6s var(--ease) infinite; pointer-events: none; }
@keyframes scan { 0% { transform: translateY(-130%); opacity: 0; } 12% { opacity: 1; } 64% { transform: translateY(380%); opacity: 1; } 70% { opacity: 0; } 100% { transform: translateY(380%); opacity: 0; } }
.br { position: absolute; width: 18px; height: 18px; }
.br.tl { left: 11px; top: 11px; border-top: 2px solid rgba(255,255,255,.85); border-left: 2px solid rgba(255,255,255,.85); border-radius: 3px 0 0 0; }
.br.rb { right: 11px; bottom: 11px; border-bottom: 2px solid rgba(255,255,255,.85); border-right: 2px solid rgba(255,255,255,.85); border-radius: 0 0 3px 0; }
.hero-photo .gps { position: absolute; right: 12px; top: 12px; display: inline-flex; align-items: center; gap: .32rem; font-size: .66rem; font-weight: 700; color: #3a2a08; background: var(--green-bright); padding: .32rem .6rem; border-radius: 999px; box-shadow: 0 4px 12px rgba(0,0,0,.18); white-space: nowrap; z-index: 2; }
.hero-photo .coord { position: absolute; left: 12px; bottom: 12px; z-index: 2; font-family: var(--mono); font-size: .66rem; font-weight: 600; letter-spacing: .02em; color: #fff; background: rgba(36,24,10,.62); padding: .28rem .55rem; border-radius: 8px; -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.hc-check { width: 42px; height: 42px; border-radius: 50%; background: var(--green-soft); color: var(--green); display: grid; place-items: center; flex: none; }
/* a soft gradient + stamp at the foot of the photo — over the lower frame, never the faces */
.hero-photo .hp-grad { position: absolute; left: 0; right: 0; bottom: 0; height: 48%; background: linear-gradient(180deg, rgba(18,11,4,0), rgba(18,11,4,.62)); pointer-events: none; }
.hero-photo .hp-stamp { position: absolute; left: 12px; bottom: 11px; z-index: 2; display: inline-flex; align-items: center; gap: .4rem; font-family: var(--mono); font-size: .66rem; font-weight: 600; letter-spacing: .02em; color: #fff; }
.hero-photo .hp-stamp b { color: var(--green-bright); font-weight: 700; }
.hero-card .hc-foot { display: flex; align-items: center; gap: .8rem; padding: .95rem .6rem .45rem; }
.hc-thumb { position: relative; width: 48px; height: 48px; border-radius: 13px; overflow: hidden; flex: none; box-shadow: 0 5px 14px rgba(0,0,0,.18); }
.hc-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hc-thumb .hc-badge { position: absolute; right: -5px; bottom: -5px; width: 21px; height: 21px; border-radius: 50%; background: var(--green-bright); color: #0a3a22; display: grid; place-items: center; box-shadow: 0 2px 6px rgba(0,0,0,.3); border: 2px solid #fff; }
.hc-foot strong { font-family: var(--serif); font-size: 1.06rem; display: block; color: var(--ink); line-height: 1.2; }
.hc-foot span { font-size: .8rem; color: var(--muted); }
@media (prefers-reduced-motion: no-preference) { .hero-card { animation: floaty 7s var(--ease) infinite; } }
@keyframes floaty { 0%,100%{ transform: rotate(1.3deg) translateY(0); } 50%{ transform: rotate(1.3deg) translateY(-12px); } }

/* ---- trust strip ------------------------------------------------------ */
.trust { position: relative; z-index: 2; margin-top: -3.4rem; }
.trust-bar { background: #fff; border-top: 3px solid var(--gold); border-radius: var(--r-lg); box-shadow: var(--shadow); display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); overflow: hidden; }
.trust-bar > div { padding: 1.55rem 1rem; text-align: center; border-right: 1px solid var(--line); }
.trust-bar > div:last-child { border-right: none; }
.trust-bar .n { font-family: var(--serif); font-weight: 600; font-size: 2rem; color: var(--green); line-height: 1; }
.trust-bar .l { font-size: .74rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; color: var(--muted); margin-top: .45rem; }

/* ---- sections --------------------------------------------------------- */
.section { padding: clamp(3.5rem, 7vw, 5.75rem) 0; }
.section-head { text-align: center; max-width: 40ch; margin: 0 auto 2.2rem; }
.section-head h2 { font-family: var(--serif); font-weight: 700; font-size: clamp(1.9rem, 4.3vw, 2.7rem); line-height: 1.1; color: var(--ink); margin-top: .6rem; letter-spacing: .02em; text-transform: uppercase; text-wrap: balance; }
.section-head h2 em { font-style: normal; color: var(--green-deep); }
.section-head p { margin-top: .9rem; font-size: 1.05rem; }

/* services */
.svc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 1fr)); gap: 1.1rem; }
/* centered icon + title crown the card; the description stays left-read;
   the price pill anchors the base so every card composes symmetrically */
.svc { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 2rem 1.5rem 1.7rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: transform .3s var(--ease), box-shadow .3s, border-color .3s; }
.svc:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.svc-ic { width: 88px; height: 88px; border-radius: 24px; background: linear-gradient(160deg, #FBEFD6, #F4E4C0); border: 1px solid #ECDAB4; color: var(--green-deep); display: grid; place-items: center; margin: 0 auto 1.25rem; transition: transform .3s var(--ease); }
.svc-ic svg { width: 56px; height: 56px; }
.svc:hover .svc-ic { transform: rotate(-5deg) scale(1.08); }
.svc h3 { font-family: var(--serif); font-weight: 600; font-size: 1.3rem; color: var(--ink); text-align: center; }
.svc p { font-size: .92rem; margin-top: .7rem; flex: 1; }
.svc .from { display: inline-block; align-self: center; margin-top: 1.2rem; font-size: .8rem; font-weight: 700; color: var(--gold-deep); background: var(--gold-soft); padding: .38rem .9rem; border-radius: 999px; }

/* proof band */
.proof { position: relative; overflow: hidden; background: linear-gradient(160deg, #241D14, #3A2E1C); color: #fff; }
.proof::before { content: ""; position: absolute; inset: 0; opacity: .4; background: repeating-linear-gradient(108deg, rgba(236,181,74,.018) 0 70px, rgba(236,181,74,.05) 70px 140px); -webkit-mask-image: radial-gradient(110% 90% at 30% 30%, #000, transparent 72%); mask-image: radial-gradient(110% 90% at 30% 30%, #000, transparent 72%); }
.proof-inner { position: relative; display: flex; flex-wrap: wrap; gap: clamp(2.4rem, 5vw, 4rem); align-items: center; justify-content: center; }
.proof-copy { flex: 1 1 380px; min-width: min(300px, 100%); max-width: 560px; }
.proof .eyebrow { color: var(--gold); }
.proof h2 { font-family: var(--serif); font-weight: 700; font-size: clamp(1.9rem, 4.3vw, 2.7rem); line-height: 1.1; margin-top: .6rem; letter-spacing: .02em; text-transform: uppercase; }
.proof h2 em { font-style: normal; color: var(--green-bright); text-decoration: underline; text-decoration-color: var(--orange); text-decoration-thickness: .07em; text-underline-offset: .14em; }
.proof p.lead { margin-top: 1.1rem; font-size: 1.08rem; color: #ece3d4; max-width: 46ch; }
.proof-list { margin-top: 1.8rem; display: flex; flex-direction: column; gap: 1.05rem; }
.proof-list li { display: flex; gap: .85rem; align-items: flex-start; list-style: none; }
.proof-list .tick { width: 27px; height: 27px; border-radius: 50%; background: rgba(236,181,74,.18); color: var(--green-bright); display: grid; place-items: center; flex: none; margin-top: 1px; }
.proof-list .tick svg { width: 15px; height: 15px; }
.proof-list b { color: #fff; } .proof-list span { color: #e2d8c8; font-size: .96rem; }
.proof-visual { flex: 0 1 300px; min-width: 240px; display: flex; justify-content: center; }
.phone-shot { position: relative; width: min(290px, 86vw); background: #211a11; border: 9px solid #18120a; border-radius: 42px; padding: .85rem; box-shadow: 0 44px 90px rgba(0,0,0,.5); }
.phone-shot .ps-notch { position: absolute; left: 50%; top: 14px; transform: translateX(-50%); width: 78px; height: 6px; border-radius: 999px; background: #3a3020; z-index: 3; }
.phone-shot .ps-photo { aspect-ratio: 3/4; border-radius: 26px; overflow: hidden; position: relative; }
.phone-shot .ps-photo .scan { height: 34%; background: linear-gradient(180deg, rgba(244,200,121,0), rgba(244,200,121,.3) 60%, rgba(244,200,121,.5)); }
.phone-shot .ps-gps { position: absolute; right: 11px; top: 11px; font-size: .62rem; font-weight: 700; color: #3a2a08; background: var(--green-bright); padding: .26rem .5rem; border-radius: 999px; }
.phone-shot .ps-stamp { position: absolute; left: 11px; bottom: 11px; font-family: var(--mono); font-size: .6rem; font-weight: 600; color: #fff; background: rgba(36,24,10,.6); padding: .24rem .45rem; border-radius: 7px; }
.phone-shot .ps-foot { color: #fff; padding: .85rem .45rem .25rem; }
.phone-shot .ps-foot strong { display: block; font-family: var(--serif); font-weight: 600; font-size: 1rem; }
.phone-shot .ps-foot span { font-size: .78rem; color: #b6a98f; }

/* areas */
.areas { text-align: center; padding: clamp(3.5rem, 7vw, 5.5rem) 0; }
.area-pills { display: flex; flex-wrap: wrap; gap: .7rem; justify-content: center; margin-top: 1.5rem; }
.area-pills span { background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: .6rem 1.2rem; font-weight: 600; font-size: .92rem; color: var(--ink); transition: border-color .2s, box-shadow .2s; }
.area-pills span:hover { border-color: var(--gold); box-shadow: 0 4px 14px rgba(230,169,76,.18); }

/* reviews */
/* reviews — sourced from Google, and dressed like it */
.grev-badge { display: inline-flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: .35rem .55rem; margin-top: 1.2rem; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: .55rem 1.15rem; box-shadow: var(--shadow-sm); font-size: .9rem; color: var(--body); }
.grev-badge .g-mark svg { width: 19px; height: 19px; display: block; }
.grev-badge .grev-name { font-weight: 600; color: var(--ink); }
.grev-badge .grev-name b { font-weight: 700; }
.grev-badge .grev-score { font-weight: 600; color: var(--muted); font-size: .84rem; }
.grev-badge .grev-score .stars { font-size: .8rem; }
.rev-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(290px, 100%), 1fr)); gap: 1.2rem; }
.rev { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.9rem; }
.rev .stars { font-size: 1rem; }
.rev p { margin-top: .8rem; color: var(--ink); font-size: 1rem; text-wrap: pretty; }
.rev .who { margin-top: 1.3rem; display: flex; align-items: center; gap: .75rem; }
.rev .g-av { width: 42px; height: 42px; border-radius: 50%; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); display: grid; place-items: center; flex: none; }
.rev .g-av svg { width: 20px; height: 20px; }
.rev .who span .ongoogle { color: var(--gold-deep); font-weight: 700; }
.grev-cta { display: flex; align-items: center; justify-content: center; gap: .45rem; margin-top: 1.7rem; font-weight: 650; font-size: .94rem; color: var(--green-deep); }
.grev-cta svg { width: 17px; height: 17px; transition: transform .2s var(--ease); }
.grev-cta:hover { color: var(--green); }
.grev-cta:hover svg { transform: translateX(3px); }
.rev .who b { display: block; color: var(--ink); font-size: .92rem; }
.rev .who span { font-size: .8rem; color: var(--muted); }

/* quote */
.quote { background: var(--warm); }
.quote-card { background: #fff; border-radius: var(--r-xl); box-shadow: var(--shadow); display: grid; grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)); overflow: hidden; }
.quote-aside { background: linear-gradient(160deg, #2E2417, #B97F23); color: #fff; padding: clamp(2rem, 4vw, 2.8rem); display: flex; flex-direction: column; justify-content: center; }
.quote-aside h2 { font-family: var(--serif); font-weight: 700; font-size: clamp(1.6rem, 2.9vw, 2rem); line-height: 1.14; text-transform: uppercase; letter-spacing: .02em; }
.quote-aside p { margin-top: .9rem; color: #f3e8d5; }
.quote-aside .qa-li { display: flex; align-items: center; gap: .6rem; margin-top: 1rem; font-size: .92rem; color: #faf2e3; }
.quote-aside .qa-li svg { width: 18px; height: 18px; color: var(--gold); }
.quote-form { padding: clamp(2rem, 4vw, 2.8rem); }
.qf-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1rem; }
.qf-field { margin-bottom: 1rem; }
.qf-field label { display: block; font-size: .74rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin-bottom: .4rem; }
.qf-field input, .qf-field select { width: 100%; padding: .8rem .9rem; border: 1px solid var(--line); border-radius: 12px; font-size: .95rem; color: var(--ink); background: #fff; transition: border-color .2s, box-shadow .2s; }
.qf-field input:focus, .qf-field select:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 4px var(--green-soft); }
.quote-form .btn { width: 100%; margin-top: .4rem; }
.qf-note { text-align: center; margin-top: .9rem; font-size: .8rem; color: var(--muted); }
.qf-success { text-align: center; padding: 1rem; }
.qf-success .big { width: 70px; height: 70px; border-radius: 50%; background: var(--green-soft); color: var(--green); display: grid; place-items: center; margin: 0 auto 1rem; }
.qf-success .big svg { width: 34px; height: 34px; }
.qf-success h3 { font-family: var(--serif); font-size: 1.6rem; color: var(--ink); }
.qf-success p { margin-top: .5rem; }

/* footer */
.site-footer { background: #241D14; color: #e0d6c6; padding: 3.2rem 0 2rem; }
.foot-grid { display: flex; flex-wrap: wrap; gap: 2rem; justify-content: space-between; align-items: flex-start; }
.foot-brand { max-width: 30ch; }
.foot-brand .logo { color: #fff; }
.foot-brand p { margin-top: .8rem; font-size: .9rem; color: #b6a98f; }
.foot-cols { display: flex; gap: 3.5rem; flex-wrap: wrap; }
.foot-col h4 { font-size: .76rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #D9B36A; margin-bottom: .8rem; }
.foot-col a { display: block; font-size: .9rem; padding: .25rem 0; color: #e0d6c6; }
.foot-col a:hover { color: var(--green-bright); }
.foot-bottom { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.1); display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; font-size: .82rem; color: #a3957f; }
.foot-bottom a { color: var(--green-bright); font-weight: 600; }

.toast-wrap { position: fixed; left: 50%; bottom: 28px; transform: translateX(-50%); z-index: 80; display: flex; flex-direction: column; gap: .6rem; align-items: center; pointer-events: none; }
.toast { display: flex; align-items: center; gap: .6rem; padding: .85rem 1.2rem; border-radius: 999px; background: var(--ink); color: #fff; font-size: .9rem; font-weight: 600; box-shadow: var(--shadow); animation: tin .4s var(--ease) both; }
.toast svg { width: 18px; height: 18px; color: var(--green-bright); }
@keyframes tin { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

/* ---- responsive ------------------------------------------------------- */
@media (max-width: 900px) {
  /* fully off-screen when closed (incl. notch inset) and invisible after the
     slide-out, so its tail can never peek into the standalone status bar */
  .site-nav { position: fixed; inset: calc(64px + env(safe-area-inset-top, 0px)) 1rem auto 1rem; flex-direction: column; align-items: stretch; gap: .3rem; background: #fff; border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--shadow); padding: 1rem; transform: translateY(calc(-100% - 64px - env(safe-area-inset-top, 0px) - 40px)); visibility: hidden; transition: transform .3s var(--ease), visibility 0s .3s; }
  .site-nav.open { transform: none; visibility: visible; transition: transform .3s var(--ease); }
  .site-nav a { padding: .7rem .5rem; }
  .hdr-toggle { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 10px; border: 1px solid var(--line); margin-left: auto; color: var(--ink); }
}
@media (max-width: 540px) {
  .container { padding: 0 1.1rem; }
}
/* trust bar wraps 2x2 on narrow screens — keep the cell borders coherent */
@media (max-width: 660px) {
  .trust-bar > div:nth-child(2n) { border-right: none; }
  .trust-bar > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { animation-duration: .001ms !important; transition: none !important; } [data-reveal], body.rv-armed [data-reveal] { opacity: 1; transform: none; animation: none; } }

/* ── Mobile overflow hardening (responsive QA pass) ─────────────────────
   Keep the hero and every section inside the phone viewport: let the eyebrow
   wrap, let grid items shrink below their intrinsic content width (the long
   nowrap eyebrow was forcing the hero column ~500px wide and clipping it),
   and never allow a horizontal scroll. */
@media (max-width: 720px) {
  .hero-inner, .hero-copy, .hero-text, .proof-inner, .proof-copy,
  .quote-card, .quote-grid, .cta-inner { min-width: 0; }
  .hero-inner > *, .proof-inner > * { min-width: 0; max-width: 100%; }
  .hero-kicker, .eyebrow, .hero-rating { white-space: normal; }
  .hero-cta { width: 100%; }
  .hero-cta .btn { white-space: normal; max-width: 100%; }
}
html, body { overflow-x: hidden; overflow-x: clip; }

