/* =========================================================================
   FRESH CUTS — the customer front door  (freshcuts.today)
   Bright, premium, sunlit-lawn. The public face of the business; the owner
   control room lives one click away at /app.
   ========================================================================= */
:root {
  --cream:   #F2F7FC;
  --surface: #FFFFFF;
  --warm:    #E9F1FA;
  --ink:     #0B2A4A;
  --body:    #45566A;
  --muted:   #6E7E92;
  --line:    #DCE6F0;
  /* "--green" keeps its name but now carries the brand blue (proven) */
  --green:        #155FAA;
  --green-deep:   #0B2A4A;
  --green-bright: #2E8FE0;
  --green-soft:   #E3EFF9;
  /* "--gold" keeps its name but now carries the American red (accent/urgency) */
  --gold:    #E23B43;
  --gold-deep: #B5232B;
  --gold-soft: rgba(226,59,67,.14);
  --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(20,50,30,.12);
  --shadow-sm: 0 8px 24px rgba(20,50,30,.08);
  --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: #cfe6fb; color: #0B2A4A; }
: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(--green-bright), var(--green)); box-shadow: 0 10px 26px rgba(20, 95, 170,.32); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(20, 95, 170,.42); }
.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(9,22,40,.55); -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; }
.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 ------------------------------------------------------------- */
/* full-bleed "the tech arrives at your door" photo behind the hero — a DIFFERENT
   image from the rooftop-gauge proof card in the foreground, so the section
   tells two beats (we show up → we prove it) instead of echoing one photo.
   Layered cinematic scrims keep the white copy crisp over the bright interior. */
.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:
  linear-gradient(100deg, rgba(7,20,36,.93) 0%, rgba(9,26,46,.78) 30%, rgba(11,34,58,.40) 58%, rgba(7,22,40,.52) 100%),
  linear-gradient(180deg, rgba(7,18,34,.46) 0%, rgba(8,22,38,.04) 38%, rgba(6,16,30,.62) 100%),
  url("assets/photos/proof-card.jpg") center 32% / cover no-repeat #0B2236; }
/* on phones the photo can't cover the tall stacked hero without smearing, so
   it becomes a near-native-scale band behind the headline that fades into the
   deep navy; px stops keep the fade pinned to the band on any screen height */
@media (max-width: 720px) {
  .hero { background:
    linear-gradient(180deg, rgba(7,18,34,.80) 0, rgba(7,18,34,.52) 120px, rgba(8,22,38,.46) 250px, rgba(9,26,46,.86) 318px, #0B2236 372px, #0B2236 100%),
    url("assets/photos/proof-card.jpg") center 30% / 760px auto no-repeat #0B2236; }
}
.hero::after { content: ""; position: absolute; right: -12%; top: -22%; width: 62%; height: 130%; background: radial-gradient(circle at center, rgba(110,190,250,.14), 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: #cfe6fb; margin-bottom: 1.3rem; padding: .4rem .8rem .4rem .55rem; border: 1px solid rgba(191,243,211,.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: 600; font-size: clamp(2.7rem, 6vw, 4.4rem); line-height: 1.02; letter-spacing: -.022em; text-wrap: balance; text-shadow: 0 2px 24px rgba(8,22,38,.5); }
.hero h1 em { font-style: italic; color: var(--green-bright); text-decoration: underline; text-decoration-color: var(--gold); text-decoration-thickness: .07em; text-underline-offset: .14em; }
.hero-lead { margin-top: 1.4rem; font-size: clamp(1.04rem, 1.4vw, 1.16rem); color: #dcefe2; max-width: 46ch; text-wrap: pretty; text-shadow: 0 1px 14px rgba(8,22,38,.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: #cdeed6; }
.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 380px; min-width: min(290px, 100%); background: #fff; border-radius: 30px; padding: 1rem; box-shadow: 0 44px 90px rgba(0,0,0,.42); color: var(--ink); transform: rotate(1.3deg); 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; }
.scan { position: absolute; left: 0; right: 0; top: 0; height: 38%; background: linear-gradient(180deg, rgba(110,190,250,0), rgba(110,190,250,.32) 60%, rgba(110,190,250,.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: #06210f; background: var(--green-bright); padding: .32rem .6rem; border-radius: 999px; box-shadow: 0 4px 12px rgba(0,0,0,.18); white-space: nowrap; }
.hero-photo .coord { position: absolute; left: 12px; bottom: 12px; font-family: var(--mono); font-size: .66rem; font-weight: 600; letter-spacing: .02em; color: #fff; background: rgba(7,18,11,.62); padding: .28rem .55rem; border-radius: 8px; -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.hero-card .hc-foot { display: flex; align-items: center; gap: .75rem; padding: .95rem .6rem .45rem; }
.hc-check { width: 40px; height: 40px; border-radius: 50%; background: var(--green-soft); color: var(--green); display: grid; place-items: center; flex: none; }
.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: 600; font-size: clamp(2rem, 4.5vw, 2.9rem); line-height: 1.08; color: var(--ink); margin-top: .6rem; letter-spacing: -.01em; text-wrap: balance; }
.section-head h2 em { font-style: italic; color: var(--green); }
.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, #EAF3FC, #D4E8F8); border: 1px solid #CFE4F6; color: var(--green); 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, #0B2236, #16466E); color: #fff; }
.proof::before { content: ""; position: absolute; inset: 0; opacity: .4; background: repeating-linear-gradient(108deg, rgba(110,190,250,.018) 0 70px, rgba(110,190,250,.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: 600; font-size: clamp(2rem, 4.5vw, 2.9rem); line-height: 1.08; margin-top: .6rem; letter-spacing: -.01em; }
.proof h2 em { font-style: italic; color: var(--green-bright); text-decoration: underline; text-decoration-color: var(--gold); text-decoration-thickness: .07em; text-underline-offset: .14em; }
.proof p.lead { margin-top: 1.1rem; font-size: 1.08rem; color: #d6ecdd; 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(110,190,250,.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: #c5e3cd; 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: #0a130d; border: 9px solid #050d08; 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: #1a2a20; 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(110,190,250,0), rgba(110,190,250,.3) 60%, rgba(110,190,250,.5)); }
.phone-shot .ps-gps { position: absolute; right: 11px; top: 11px; font-size: .62rem; font-weight: 700; color: #06210f; 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(7,18,11,.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: #9bb6a4; }

/* 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(226,59,67,.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, #16466E, #155FAA); 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: 600; font-size: clamp(1.7rem, 3vw, 2.1rem); line-height: 1.12; }
.quote-aside p { margin-top: .9rem; color: #d6ecdd; }
.quote-aside .qa-li { display: flex; align-items: center; gap: .6rem; margin-top: 1rem; font-size: .92rem; color: #eafff0; }
.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: #0B2236; color: #cfe3d6; 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: #9bb6a4; }
.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: #C9A35C; margin-bottom: .8rem; }
.foot-col a { display: block; font-size: .9rem; padding: .25rem 0; color: #cfe3d6; }
.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: #7fa48b; }
.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; } }


/* ─── real-photo proof + elevated icon tiles (showcase pass) ─── */
img.turf { width: 100%; height: 100%; object-fit: cover; display: block; }
.svc-ic { border: 1px solid rgba(20,40,60,.07); box-shadow: inset 0 1px 0 rgba(255,255,255,.82), 0 12px 24px -14px rgba(20,45,70,.5); }
.svc-ic, .svc:nth-child(even) .svc-ic { background-image: linear-gradient(155deg, rgba(255,255,255,.62), rgba(255,255,255,0)) !important; }
.svc:hover .svc-ic { box-shadow: inset 0 1px 0 rgba(255,255,255,.92), 0 16px 30px -12px rgba(20,45,70,.62); }

/* ── 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; }

