/* =========================================================================
   IRONCLAD ROOFING CO. — the customer front door  (Nashville roofing)
   Iron-charcoal with a copper-ember brand and a steel slate-blue secondary
   (rust + steel = the roof-against-sky pairing, a sturdy, premium feel). The
   owner control room is one click away at /app. (Accent var names kept as
   --green* per the template system — design-reskin token swap; values are
   copper-ember.)

   SHOWCASE-GRADE BASELINE (the bar every demo holds):
     · REAL photography, never a CSS "drawing" — the hero + every proof surface
       is a real licensed photo; flat blocks are a regression
     · frozen-safe scroll reveals — content visible by default; JS *arms* the
       hide only when it can reveal again, so a missed frame is never blank
     · transparent header that frosts once the hero is behind you
     · <em> is upright (never italic) — semantic spotlight, not a slant
     · depth on the proof tile (scan, corner brackets, GPS chip, coord stamp)
     · section-rhythm washes + a steel secondary hue so it never reads mono
     · phone-first: safe-area insets, centered on mobile / left at md, real targets
   ========================================================================= */
:root {
  --cream:   #F7F4F1;
  --surface: #FFFFFF;
  --warm:    #F3EDE7;
  --ink:     #1E232A;     /* iron charcoal */
  --body:    #4E545C;
  --muted:   #79808A;
  --line:    #E7E1DA;
  --green:        #C8521E; /* primary brand — copper ember */
  --green-deep:   #A8431A;
  --green-bright: #E2702E;
  --green-soft:   #FBEADE;
  --gold:    #E0913B;
  /* steel slate-blue secondary — the cool sky counterweight to the copper,
     woven through alternating tiles, section washes, and the proof band */
  --steel:      #3E6B8C;
  --steel-deep: #2C4F69;
  --steel-soft: #E6EDF3;
  --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,30,48,.14);
  --shadow-sm: 0 8px 24px rgba(20,30,48,.10);
  --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: #f6d3bd; color: #54230b; }
: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(--green); }

.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(210,105,30,.32); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(210,105,30,.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,.28); }
.btn-on-dark:hover { transform: translateY(-2px); box-shadow: 0 20px 44px rgba(0,0,0,.36); }
.btn-outline-light { color: #fff; border: 1px solid rgba(255,255,255,.5); }
.btn-outline-light:hover { background: rgba(255,255,255,.12); }

/* frozen-safe reveal: visible by default; JS adds .rv-armed 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 ----------------------------------------------------------- */
.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(20,24,30,.68); -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 .container { display: flex; align-items: center; gap: 1.2rem; padding-top: .8rem; padding-bottom: .8rem; }
.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); }
}
.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: normal; font-weight: 700; }
.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 ------------------------------------------------------------- */
/* iron-charcoal, lit from the upper right with a copper glow and a steel
   sheen; a REAL roofing photo sits softly behind the floating proof card
   (rack-focus on ::before so only the photo dims, never the copy). */
.hero { position: relative; overflow: hidden; color: #fff; padding: calc(clamp(3rem, 8vw, 6rem) + 76px + env(safe-area-inset-top, 0px)) 0 clamp(5rem, 10vw, 8rem);
  background-color: #161A20;
  background-image:
    linear-gradient(95deg, rgba(18,22,28,.82) 0%, rgba(22,26,32,.58) 44%, rgba(22,26,32,.40) 72%, rgba(22,26,32,.5) 100%),
      url('assets/photos/hero-soft.jpg');
  background-position: center, 60% 38%;
  background-size: cover, cover;
  background-repeat: no-repeat; }
.hero::before { content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    radial-gradient(120% 130% at 88% 8%, rgba(226,112,46,.22), transparent 46%),
      radial-gradient(100% 120% at 12% 92%, rgba(62,107,140,.18), transparent 52%); }
@media (max-width: 720px) {
  .hero { background-image:
      linear-gradient(180deg, rgba(18,22,28,.78) 0%, rgba(22,26,32,.56) 46%, rgba(18,22,28,.72) 100%),
      url('assets/photos/hero-soft.jpg');
    background-position: center, center 34%;  background-size: cover, cover; }
}
.hero::after { content: ""; position: absolute; right: -10%; top: -20%; width: 60%; height: 120%; pointer-events: none; background: radial-gradient(circle at center, rgba(226,112,46,.16), transparent 60%); }
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: clamp(2rem, 5vw, 3.4rem); align-items: center; }
.hero-inner > * { min-width: 0; }
.hero-kicker { display: inline-flex; align-items: center; gap: .55rem; font-size: .74rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #F6D9BE; margin-bottom: 1.3rem; padding: .4rem .8rem .4rem .55rem; border: 1px solid rgba(246,217,190,.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.15rem, 6vw, 4.3rem); line-height: 1.04; letter-spacing: -.02em; text-wrap: balance; overflow-wrap: break-word; text-shadow: 0 2px 26px rgba(0,0,0,.5); }
.hero h1 em { font-style: normal; color: var(--green-bright); text-decoration: underline; text-decoration-color: var(--steel); text-decoration-thickness: .07em; text-underline-offset: .14em; }
.hero-lead { margin-top: 1.3rem; font-size: clamp(1.04rem, 1.4vw, 1.14rem); color: #E7DDD0; max-width: 46ch; text-wrap: pretty; text-shadow: 0 1px 16px rgba(0,0,0,.55); }
.hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.hero-rating { display: flex; flex-wrap: wrap; align-items: center; gap: .6rem; margin-top: 1.6rem; font-size: .9rem; color: #DACFC0; }
.stars { color: var(--gold); letter-spacing: .1em; }
.hero-rating .stars { font-size: 1.02rem; letter-spacing: .12em; }

/* hero proof card — a REAL roofing photo with the verification chrome on top */
.hero-card { position: relative; z-index: 1; background: #fff; border-radius: var(--r-xl); padding: 1rem; box-shadow: 0 44px 90px rgba(0,0,0,.5); color: var(--ink); transform: rotate(1.2deg); will-change: transform; }
.hero-photo { position: relative; aspect-ratio: 4/3; border-radius: 21px; overflow: hidden;
  background: linear-gradient(160deg, rgba(226,112,46,.32), rgba(43,47,54,.55)); }
.hero-photo img, .ps-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
/* bottom scrim so a light/washed photo never reads blank and the chrome stays legible */
.hero-photo::after { content: ''; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(to top, rgba(0,0,0,.3), transparent 55%); }
.scan { position: absolute; left: 0; right: 0; top: 0; height: 38%; z-index: 4; background: linear-gradient(180deg, rgba(226,112,46,0), rgba(226,112,46,.26) 60%, rgba(226,112,46,.46)); 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; z-index: 4; }
.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; z-index: 5; display: inline-flex; align-items: center; gap: .34rem; font-size: .68rem; font-weight: 700; letter-spacing: .01em; color: #fff; background: linear-gradient(180deg, var(--green-bright), var(--green)); padding: .34rem .64rem; border-radius: 999px; box-shadow: 0 4px 14px rgba(168,67,26,.42), inset 0 1px 0 rgba(255,255,255,.28); white-space: nowrap; }
.hero-photo .gps svg { width: 13px; height: 13px; }
.hero-photo .coord { position: absolute; left: 12px; bottom: 12px; z-index: 5; font-family: var(--mono); font-size: .66rem; font-weight: 600; letter-spacing: .02em; color: #fff; background: rgba(18,22,28,.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: .7rem; padding: .85rem .6rem .4rem; }
.hc-check { width: 36px; height: 36px; 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.05rem; 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.2deg) translateY(0); } 50%{ transform: rotate(1.2deg) translateY(-12px); } }

/* ---- trust strip ------------------------------------------------------ */
.trust { position: relative; z-index: 2; margin-top: -3rem; }
.trust-bar { background: #fff; border-top: 3px solid var(--green); border-radius: var(--r-lg); box-shadow: var(--shadow); display: grid; grid-template-columns: repeat(4, 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: 1.9rem; color: var(--green); line-height: 1; }
.trust-bar .l { font-size: .76rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); margin-top: .4rem; }

/* ---- sections --------------------------------------------------------- */
.section { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.section-head { text-align: center; max-width: 40ch; margin: 0 auto 3rem; }
.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: normal; color: var(--green); }
.section-head .embar { display: block; width: 64px; height: 4px; border-radius: 999px; margin: 1rem auto 0; background: linear-gradient(90deg, var(--green), var(--steel)); }
.section-head p { margin-top: .9rem; font-size: 1.05rem; }

/* services */
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.svc { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.8rem 1.5rem; box-shadow: var(--shadow-sm); 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: 64px; height: 64px; border-radius: 17px; background: var(--green-soft); color: var(--green); display: grid; place-items: center; margin-bottom: 1.1rem; transition: transform .3s var(--ease); }
.svc-ic svg { width: 34px; height: 34px; }
.svc:hover .svc-ic { transform: rotate(-6deg) scale(1.08); }
.svc h3 { font-family: var(--serif); font-weight: 600; font-size: 1.25rem; color: var(--ink); }
.svc p { font-size: .92rem; margin-top: .5rem; }
.svc .from { display: inline-block; margin-top: .9rem; font-size: .82rem; font-weight: 700; color: var(--green); background: var(--green-soft); padding: .34rem .8rem; border-radius: 999px; }

/* proof band */
.proof { position: relative; overflow: hidden; background: linear-gradient(160deg, #1E232A, #2A323C); color: #fff; }
.proof::before { content: ""; position: absolute; inset: 0; opacity: .5; background: repeating-linear-gradient(108deg, rgba(62,107,140,.03) 0 70px, rgba(62,107,140,.09) 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: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.proof .eyebrow { color: var(--green-bright); }
.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; text-wrap: balance; }
.proof h2 em { font-style: normal; color: var(--green-bright); text-decoration: underline; text-decoration-color: var(--steel); text-decoration-thickness: .07em; text-underline-offset: .14em; }
.proof p.lead { margin-top: 1.1rem; font-size: 1.08rem; color: #E7DDD0; max-width: 46ch; text-wrap: pretty; }
.proof-list { margin-top: 1.8rem; display: flex; flex-direction: column; gap: 1rem; }
.proof-list li { display: flex; gap: .8rem; align-items: flex-start; list-style: none; }
.proof-list .tick { width: 26px; height: 26px; border-radius: 50%; background: rgba(226,112,46,.18); color: var(--green-bright); display: grid; place-items: center; flex: none; margin-top: 2px; }
.proof-list .tick svg { width: 15px; height: 15px; }
.proof-list b { color: #fff; } .proof-list span { color: #D6CBBC; font-size: .94rem; }
.proof-visual { position: relative; }
.phone-shot { position: relative; width: min(280px, 80%); margin: 0 auto; background: #14181e; border: 9px solid #090c10; border-radius: 38px; padding: .8rem; box-shadow: 0 40px 80px rgba(0,0,0,.55); }
.phone-shot .ps-notch { position: absolute; left: 50%; top: 14px; transform: translateX(-50%); width: 72px; height: 6px; border-radius: 999px; background: #232a33; z-index: 3; }
.phone-shot .ps-photo { aspect-ratio: 3/4; border-radius: 22px; overflow: hidden; position: relative; background: linear-gradient(160deg, rgba(226,112,46,.32), rgba(43,47,54,.55)); }
.phone-shot .ps-photo::after { content: ''; position: absolute; inset: 0; z-index: 2; pointer-events: none; background: linear-gradient(to top, rgba(0,0,0,.3), transparent 55%); }
.phone-shot .ps-photo .scan { height: 34%; }
.phone-shot .ps-gps { position: absolute; right: 10px; top: 10px; z-index: 5; font-size: .62rem; font-weight: 700; color: #fff; background: linear-gradient(180deg, var(--green-bright), var(--green)); padding: .22rem .52rem; border-radius: 999px; box-shadow: 0 3px 10px rgba(168,67,26,.4), inset 0 1px 0 rgba(255,255,255,.25); }
.phone-shot .ps-stamp { position: absolute; left: 10px; bottom: 10px; z-index: 5; font-family: var(--mono); font-size: .6rem; font-weight: 600; color: #fff; background: rgba(18,22,28,.6); padding: .22rem .45rem; border-radius: 7px; }
.phone-shot .ps-foot { color: #fff; padding: .8rem .4rem .2rem; }
.phone-shot .ps-foot strong { display: block; font-family: var(--serif); }
.phone-shot .ps-foot span { font-size: .78rem; color: #95A1AE; }

/* areas */
.areas { text-align: center; }
.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(--steel); box-shadow: 0 4px 14px rgba(62,107,140,.2); }

/* reviews */
.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 .grev-name { font-weight: 600; color: var(--ink); }
.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(3, 1fr); gap: 1.2rem; }
.rev { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.8rem; box-shadow: var(--shadow-sm); }
.rev .stars { font-size: 1rem; }
.rev p { margin-top: .8rem; color: var(--ink); font-size: 1rem; text-wrap: pretty; }
.rev .who { margin-top: 1.2rem; display: flex; align-items: center; gap: .7rem; }
.rev .av { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(150deg, var(--ink), var(--green-deep)); color: #fff; display: grid; place-items: center; font-weight: 700; flex: none; }
.rev .who b { display: block; color: var(--ink); font-size: .92rem; }
.rev .who span { font-size: .8rem; color: var(--muted); }
.rev-note { text-align: center; margin-top: 1.5rem; 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: .9fr 1.1fr; overflow: hidden; }
.quote-aside { background: linear-gradient(160deg, #2A323C, #A8431A); color: #fff; padding: clamp(2rem, 4vw, 2.6rem); display: flex; flex-direction: column; justify-content: center; }
.quote-aside h2 { font-family: var(--serif); font-weight: 600; font-size: clamp(1.6rem, 2.9vw, 2rem); line-height: 1.1; }
.quote-aside p { margin-top: .9rem; color: #EAE0D2; }
.quote-aside .qa-li { display: flex; align-items: center; gap: .6rem; margin-top: 1rem; font-size: .92rem; color: #F6ECDF; }
.quote-aside .qa-li svg { width: 18px; height: 18px; color: var(--green-bright); }
.quote-form { padding: clamp(2rem, 4vw, 2.6rem); }
.qf-row { display: grid; grid-template-columns: 1fr 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: #1B2027; color: #D9CFC2; padding: 3rem 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 .logo em { color: var(--green-bright); font-style: normal; font-weight: 700; }
.foot-brand p { margin-top: .8rem; font-size: .9rem; color: #9A9387; }
.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: #8A8276; margin-bottom: .8rem; }
.foot-col a { display: block; font-size: .9rem; padding: .25rem 0; color: #D9CFC2; }
.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: #8A8276; }
.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) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-kicker { margin-left: auto; margin-right: auto; }
  .hero-cta, .hero-rating { justify-content: center; }
  .hero-lead { margin-left: auto; margin-right: auto; }
  .hero-card { max-width: 380px; margin: 1rem auto 0; text-align: left; }
  .proof-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .quote-card { grid-template-columns: 1fr; } .quote-aside { padding: 2rem; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .rev-grid { grid-template-columns: 1fr; }
  .trust-bar { grid-template-columns: repeat(2, 1fr); }
  .trust-bar > div:nth-child(2n) { border-right: none; }
  .trust-bar > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .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) {
  .svc-grid { grid-template-columns: 1fr; } .qf-row { grid-template-columns: 1fr; }
  .container { padding: 0 1.1rem; }
}
@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; } }

/* ===== Steel slate-blue secondary accent — showcase elevation (pop alongside copper)
   Additive overrides only; copper stays dominant, real photos untouched. Alternates
   a cool hue by index so the page reads with rhythm, not single-hue. */
.svc:nth-child(even) .svc-ic { background: var(--steel-soft) !important; color: var(--steel-deep) !important; }
.svc:nth-child(even) .from { color: var(--steel-deep) !important; background: rgba(62,107,140,.13) !important; }
.areas { background: linear-gradient(180deg, #fff, var(--steel-soft)) !important; }
.areas .section-head .embar { background: linear-gradient(90deg, var(--steel), var(--green)) !important; }


/* ─── real-photo proof + elevated icon tiles (showcase pass) ─── */
img.turf { width: 100%; height: 100%; object-fit: cover; display: block; }
/* raised chip: hairline border + crisp inset top-light + soft drop shadow, and a
   faint inner top-light gradient on the tile bg so the dimensional icons sit on depth */
.svc-ic { border: 1px solid rgba(20,40,60,.08); box-shadow: inset 0 1.5px 0 rgba(255,255,255,.9), inset 0 -2px 6px rgba(20,45,70,.08), 0 14px 26px -14px rgba(20,45,70,.55); }
.svc-ic, .svc:nth-child(even) .svc-ic { background-image: linear-gradient(160deg, rgba(255,255,255,.7), rgba(255,255,255,0) 62%) !important; }
.svc:hover .svc-ic { box-shadow: inset 0 1.5px 0 rgba(255,255,255,.96), inset 0 -2px 6px rgba(20,45,70,.1), 0 18px 32px -12px rgba(20,45,70,.66); }

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

