/* =========================================================
   A State Glass Service LLC — stylesheet
   Brand (from real shop sign & truck): Red / Near-Black / Warm Paper
   ========================================================= */

:root {
  /* Colors */
  --color-ink:        #1C1A18;  /* Warm near-black — headings, footer */
  --color-night:      #211A16;  /* Warm dark base for hero/footer gradients */
  --color-red:        #D83C14;  /* Brand red — warm vermilion (business-card ink) */
  --color-red-700:    #AE2E0C;  /* Darker warm red — hover / text on light (AA) */
  --color-red-300:    #FB7A45;  /* Warm coral-orange — text/accents on dark */
  --color-bg:         #F8F4EF;  /* Warm paper (lighter) */
  --color-bg-2:       #F1EAE1;  /* Tinted paper */
  --color-text:       #221F1C;  /* Body copy */
  --color-muted:      #6E6962;  /* Secondary text */
  --color-white:      #FFFFFF;
  --color-border:     #E8E0D5;
  --color-gold:       #E6A817;  /* Review stars */

  /* Gradients */
  --grad-red:    linear-gradient(135deg, #F0571F 0%, #D83C14 55%, #BE2F0C 100%);
  --grad-red-soft: linear-gradient(135deg, #FFF3EC 0%, #FDE9DF 100%);
  --grad-paper:  linear-gradient(160deg, #FCF7F2 0%, #F4EBE2 100%);
  --grad-night:  linear-gradient(150deg, #2A201A 0%, #1A1714 60%, #17120F 100%);

  /* Type */
  --font-display: 'Barlow Condensed', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-accent:  'Barlow', system-ui, sans-serif;

  /* Layout */
  --max-width: 1140px;
  --section-pad: clamp(3.5rem, 8vw, 6.5rem);
  --radius-card: 8px;
  --radius-btn: 4px;

  --shadow-sm: 0 1px 3px rgba(23,25,28,.07), 0 1px 2px rgba(23,25,28,.05);
  --shadow-md: 0 14px 34px -14px rgba(23,25,28,.28);
  --shadow-lg: 0 28px 60px -22px rgba(23,25,28,.42);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0; font-family: var(--font-body); font-size: 1rem; line-height: 1.65;
  color: var(--color-text); background: var(--color-bg);
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
body.nav-open { overflow: hidden; }

img, svg { display: block; max-width: 100%; }
a { color: var(--color-red-700); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.04; margin: 0; letter-spacing: .005em; }
h2 { font-size: clamp(2rem, 4.4vw, 3.1rem); color: var(--color-ink); text-transform: uppercase; letter-spacing: .01em; }
h3 { font-size: 1.32rem; font-weight: 700; color: var(--color-ink); text-transform: uppercase; letter-spacing: .01em; }

.container { width: 100%; max-width: var(--max-width); margin-inline: auto; padding-inline: 1.5rem; }

.skip-link { position: absolute; left: -999px; top: 0; z-index: 300; background: var(--color-ink); color: #fff; padding: .65rem 1rem; border-radius: 0 0 6px 0; }
.skip-link:focus { left: 0; }
:focus-visible { outline: 3px solid var(--color-red); outline-offset: 2px; border-radius: 3px; }

/* ---------- Buttons ---------- */
.btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-accent); font-weight: 600; font-size: 1rem; letter-spacing: .02em;
  text-transform: uppercase; padding: .82rem 1.5rem; border-radius: var(--radius-btn);
  border: 2px solid transparent; cursor: pointer; white-space: nowrap;
  transition: transform .15s ease, box-shadow .2s ease, color .2s ease;
}
.btn:hover { text-decoration: none; }
.btn-ic { width: 1.05em; height: 1.05em; fill: currentColor; position: relative; z-index: 1; }
.btn > * { position: relative; z-index: 1; }
.btn-lg { padding: 1rem 1.8rem; font-size: 1.05rem; }
.btn-block { width: 100%; }
/* looping sheen sweep (matches the stat band shimmer) */
.btn-primary::after {
  content: ""; position: absolute; top: 0; left: -130%; width: 55%; height: 100%; z-index: 0;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,.45), transparent); transform: skewX(-18deg);
}
.btn-primary { background: var(--grad-red); color: #fff; box-shadow: 0 10px 22px -10px rgba(216,60,20,.75); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -12px rgba(216,60,20,.85); }
@media (prefers-reduced-motion: no-preference) {
  .btn-primary::after { animation: btnsheen 5s ease-in-out infinite; }
  .btn-primary:hover::after { animation-duration: 1.6s; }
}
@keyframes btnsheen { 0% { left: -130%; } 18% { left: 135%; } 100% { left: 135%; } }
.btn-ghost { background: rgba(255,255,255,.06); color: #fff; border-color: rgba(255,255,255,.6); }
.btn-ghost:hover { background: #fff; color: var(--color-ink); border-color: #fff; transform: translateY(-2px); }
.btn-ghost .btn-ic { fill: currentColor; }

/* ---------- Utility bar ---------- */
.util-bar { background: var(--color-ink); color: rgba(255,255,255,.82); font-family: var(--font-accent); position: relative; z-index: 101; }
.util-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 38px; font-size: .86rem; font-weight: 500; letter-spacing: .01em; }
.util-phone { display: inline-flex; align-items: center; gap: .4rem; color: #fff; }
.util-phone svg { width: 15px; height: 15px; fill: var(--color-red-300); }
.util-phone strong { letter-spacing: .03em; }
.util-phone:hover { text-decoration: none; color: var(--color-red-300); }
.util-meta { color: rgba(255,255,255,.7); }
@media (max-width: 620px) { .util-meta { display: none; } .util-inner { justify-content: center; } }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--color-ink); border-bottom: 3px solid var(--color-red);
  transition: box-shadow .3s ease, padding .25s ease; padding: .55rem 0;
}
.site-header.scrolled { box-shadow: 0 8px 26px -14px rgba(0,0,0,.6); padding: .35rem 0; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }

.wordmark { display: inline-flex; align-items: center; gap: .6rem; color: #fff; }
.wordmark:hover { text-decoration: none; }
.wordmark-icon { color: var(--color-red); display: grid; place-items: center; }
.wordmark-text { display: flex; flex-direction: column; line-height: 1; }
.wordmark-main { font-family: var(--font-display); font-weight: 700; font-size: 1.32rem; letter-spacing: .04em; color: #fff; }
.wordmark-sub { font-family: var(--font-accent); font-weight: 600; font-size: .6rem; letter-spacing: .2em; color: var(--color-red-300); margin-top: 3px; }

.nav-links { display: flex; align-items: center; gap: 1.7rem; }
.nav-links a { font-family: var(--font-accent); font-weight: 600; font-size: .94rem; text-transform: uppercase; letter-spacing: .04em; color: rgba(255,255,255,.85); position: relative; padding: .25rem 0; }
.nav-links a:hover { color: #fff; text-decoration: none; }
.nav-links a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 0; bottom: -4px; height: 2px; background: var(--color-red); transform: scaleX(0); transform-origin: left; transition: transform .25s ease; }
.nav-links a:not(.nav-cta):hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: #fff; }
.nav-cta { background: var(--color-red); color: #fff !important; padding: .55rem 1.1rem !important; border-radius: var(--radius-btn); }
.nav-cta:hover { background: var(--color-red-700); }
.nav-cta::after { display: none; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; z-index: 120; }
.nav-toggle span { width: 26px; height: 2.5px; background: #fff; border-radius: 2px; transition: transform .3s ease, opacity .3s ease; }
.nav-scrim { position: fixed; inset: 0; background: rgba(10,11,13,.6); z-index: 90; opacity: 0; transition: opacity .3s ease; }

/* ---------- Hero (real photo) ---------- */
.hero {
  position: relative; min-height: clamp(560px, 86svh, 820px); display: flex; align-items: center;
  background:
    radial-gradient(120% 95% at 100% 0%, rgba(216,60,20,.26), transparent 55%),
    linear-gradient(100deg, rgba(26,17,12,.93) 0%, rgba(26,17,12,.74) 44%, rgba(30,18,12,.4) 78%, rgba(30,18,12,.26) 100%),
    var(--color-night) url('/img/hero.jpg') center 30% / cover no-repeat;
  overflow: hidden; isolation: isolate;
}
.hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 6px; background: var(--grad-red); z-index: 5; }

/* floating glass shapes */
.hero-shapes { position: absolute; inset: 0; z-index: 2; pointer-events: none; overflow: hidden; }
.hshape { position: absolute; border-radius: 16px; }
.hshape.s1 { width: clamp(140px, 16vw, 230px); aspect-ratio: 3/4; right: 7%; top: 13%; background: linear-gradient(135deg, rgba(255,255,255,.12), rgba(216,60,20,.12)); border: 1px solid rgba(255,255,255,.14); transform: rotate(10deg); }
.hshape.s3 { width: clamp(60px, 8vw, 100px); aspect-ratio: 5/9; right: 4%; bottom: 9%; background: linear-gradient(135deg, rgba(255,255,255,.1), transparent); border: 1px solid rgba(255,255,255,.1); transform: rotate(-8deg); }
@media (prefers-reduced-motion: no-preference) {
  .hshape.s1 { animation: floatA 11s ease-in-out infinite; }
  .hshape.s3 { animation: floatA 14s ease-in-out infinite reverse; }
}
@keyframes floatA { 0%,100% { transform: translateY(0) rotate(10deg); } 50% { transform: translateY(-22px) rotate(13deg); } }
@keyframes floatB { 0%,100% { transform: translateY(0); } 50% { transform: translateY(20px); } }
@media (max-width: 720px) { .hero-shapes { display: none; } }

/* floating orb (moved out of the hero into Services) */
#services { position: relative; overflow: hidden; }
#services > .container, #services > .services-head { position: relative; z-index: 1; }
.float-orb { position: absolute; z-index: 0; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle at 34% 30%, rgba(251,122,69,.32), rgba(216,60,20,.06)); filter: blur(3px); }
.float-orb.o1 { width: clamp(150px, 20vw, 280px); aspect-ratio: 1; left: -60px; top: 46%; }
@media (prefers-reduced-motion: no-preference) { .float-orb.o1 { animation: floatB 12s ease-in-out infinite; } }
@media (max-width: 720px) { .float-orb { display: none; } }
.hero-inner { position: relative; z-index: 3; padding-top: 3.5rem; padding-bottom: 4rem; max-width: 760px; }
.hero-eyebrow { font-family: var(--font-accent); font-weight: 600; letter-spacing: .2em; text-transform: uppercase; font-size: .8rem; color: var(--color-red-300); margin: 0 0 1.1rem; }
.hero h1 { font-size: clamp(2.7rem, 7.2vw, 5rem); color: #fff; margin-bottom: 1.1rem; text-transform: uppercase; text-shadow: 0 2px 30px rgba(0,0,0,.4); }
.accent-text { color: var(--color-red-300); }
.hero-sub { font-size: clamp(1.05rem, 2vw, 1.25rem); color: rgba(255,255,255,.9); max-width: 40rem; margin: 0 0 2rem; text-shadow: 0 1px 12px rgba(0,0,0,.5); }
.hero-cta { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 2.2rem; }

.trust-strip { list-style: none; display: flex; flex-wrap: wrap; gap: .8rem 1.7rem; margin: 0; padding: 0; }
.trust-strip li { display: inline-flex; align-items: center; gap: .45rem; font-family: var(--font-accent); font-weight: 600; font-size: .92rem; color: #fff; text-transform: uppercase; letter-spacing: .02em; }
.check { width: 1.05rem; height: 1.05rem; flex: 0 0 auto; fill: none; stroke: var(--color-red-300); stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; }

.scroll-cue { position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%); z-index: 4; width: 40px; height: 40px; display: grid; place-items: center; color: rgba(255,255,255,.6); }
.scroll-cue svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
@media (prefers-reduced-motion: no-preference) { .scroll-cue { animation: bob 2.2s ease-in-out infinite; } }
@keyframes bob { 0%,100% { transform: translate(-50%,0); } 50% { transform: translate(-50%,7px); } }

/* ---------- Sections ---------- */
.section { padding-block: var(--section-pad); }
.kicker { display: flex; align-items: center; gap: .7rem; font-family: var(--font-accent); font-weight: 600; letter-spacing: .16em; text-transform: uppercase; font-size: .82rem; color: var(--color-red-700); margin: 0 0 .85rem; }
.kicker-rule { width: 30px; height: 3px; background: var(--color-red); border-radius: 2px; }
.kicker-light { color: var(--color-red-300); }
.section-lede { font-size: 1.12rem; color: var(--color-muted); max-width: 44rem; margin: .9rem 0 0; }
.section h2 { max-width: 18ch; }

/* ---------- Services ---------- */
.services-head { display: grid; grid-template-columns: 1.4fr .9fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; }
.sign-photo { margin: 0; border-radius: 10px; overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--color-border); transform: rotate(-1.2deg); }
.sign-photo img { width: 100%; height: auto; display: block; }
@media (max-width: 820px) { .services-head { grid-template-columns: 1fr; } .sign-photo { max-height: 340px; transform: none; } }
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 1.3rem; margin-top: 2.6rem; }
.card { position: relative; display: flex; flex-direction: column; background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-card); box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; overflow: hidden; }
.card::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; z-index: 3; background: var(--color-red); transform: scaleY(0); transform-origin: top; transition: transform .25s ease; }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: #D8CFC2; }
.card:hover::before { transform: scaleY(1); }
.card-media { display: block; position: relative; aspect-ratio: 16 / 11; overflow: hidden; background: #eee; }
.card-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.card:hover .card-media img { transform: scale(1.06); }
a.card-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 60%, rgba(28,26,24,.35)); opacity: 0; transition: opacity .25s ease; }
a.card-media:hover::after { opacity: 1; }
a.card-media::before { content: "⤢ View"; position: absolute; right: .6rem; bottom: .6rem; z-index: 2; font-family: var(--font-accent); font-weight: 600; font-size: .72rem; text-transform: uppercase; letter-spacing: .05em; color: #fff; background: rgba(28,26,24,.6); padding: .25rem .5rem; border-radius: 3px; opacity: 0; transform: translateY(4px); transition: opacity .25s ease, transform .25s ease; }
a.card-media:hover::before { opacity: 1; transform: none; }
.card-media--icon { display: grid; place-items: center; background: var(--grad-red-soft); }
.card-media--icon .card-icon { display: grid; place-items: center; width: 68px; height: 68px; border-radius: 14px; background: #fff; color: var(--color-red); box-shadow: var(--shadow-sm); }
.card-media--icon .card-icon svg { width: 34px; height: 34px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.card-body { padding: 1.4rem 1.5rem 1.6rem; }
.card h3 { margin-bottom: .5rem; }
.card p { margin: 0; color: var(--color-muted); font-size: .97rem; }
.tag-local { display: inline-block; margin-top: .5rem; font-family: var(--font-accent); font-weight: 600; font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: var(--color-red-700); background: rgba(216,60,20,.1); padding: .2rem .55rem; border-radius: 3px; }

/* ---------- Specialty band (Tough Jobs) ---------- */
.section-spec { background: var(--grad-night); color: rgba(255,255,255,.82); position: relative; overflow: hidden; }
.section-spec::before {
  content: ""; position: absolute; left: -90px; top: -60px; width: 360px; height: 360px; z-index: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120'%3E%3Cpath d='M14,16 L80,16 L80,26 L104,26 C100,46 98,64 96,80 C95,90 94,99 92,104 L24,106 L16,16 Z' fill='%23D83C14'/%3E%3C/svg%3E") center/contain no-repeat;
  opacity: .08; pointer-events: none;
}
.section-spec > .container { position: relative; z-index: 1; }
.section-spec h2 { color: #fff; }
.spec-head { max-width: 46rem; }
.spec-lede { color: rgba(255,255,255,.78); }
.spec-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: 2.6rem; }
.spec-card { margin: 0; }
.spec-media { display: block; position: relative; aspect-ratio: 4 / 5; border-radius: 10px; overflow: hidden; box-shadow: var(--shadow-lg); }
.spec-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.spec-card:hover .spec-media img { transform: scale(1.07); }
.spec-media::after { content: "⤢"; position: absolute; right: .55rem; top: .5rem; width: 26px; height: 26px; display: grid; place-items: center; border-radius: 6px; background: rgba(0,0,0,.45); color: #fff; font-size: .85rem; opacity: 0; transition: opacity .25s ease; }
.spec-media:hover::after { opacity: 1; }
.spec-card figcaption { margin-top: .8rem; font-family: var(--font-accent); font-size: .9rem; color: rgba(255,255,255,.72); line-height: 1.35; }
.spec-card figcaption strong { display: block; font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; text-transform: uppercase; letter-spacing: .02em; color: #fff; }

/* ---------- Before / After slider ---------- */
.ba-wrap { margin-top: 2.4rem; }
.ba-slider { container-type: inline-size; position: relative; width: 100%; max-width: 900px; margin-inline: auto; aspect-ratio: 3 / 2; border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-lg); user-select: none; touch-action: pan-y; }
.ba-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.ba-before { position: absolute; inset: 0; width: var(--pos, 50%); overflow: hidden; }
.ba-before .ba-img { width: 100cqw; max-width: none; }
.ba-line { position: absolute; top: 0; bottom: 0; left: var(--pos, 50%); width: 3px; background: #fff; transform: translateX(-1.5px); box-shadow: 0 0 0 1px rgba(0,0,0,.15); pointer-events: none; z-index: 3; }
.ba-grip { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 44px; height: 44px; border-radius: 50%; background: var(--grad-red); display: grid; place-items: center; box-shadow: 0 6px 16px -4px rgba(0,0,0,.5); }
.ba-grip svg { width: 22px; height: 22px; fill: none; stroke: #fff; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.ba-tag { position: absolute; bottom: .8rem; z-index: 2; font-family: var(--font-accent); font-weight: 700; font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; color: #fff; background: rgba(28,26,24,.62); padding: .3rem .65rem; border-radius: 4px; pointer-events: none; }
.ba-tag-before { left: .8rem; }
.ba-tag-after { right: .8rem; }
.ba-range { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: ew-resize; z-index: 4; }
.ba-range::-webkit-slider-thumb { -webkit-appearance: none; width: 48px; height: 100%; cursor: ew-resize; }
.ba-range::-moz-range-thumb { width: 48px; height: 100%; border: 0; background: transparent; cursor: ew-resize; }
.ba-range:focus-visible { outline: 3px solid var(--color-red); outline-offset: 3px; }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 300; display: grid; place-items: center; padding: 4vmin; background: rgba(18,16,14,.92); opacity: 0; transition: opacity .25s ease; }
.lightbox[hidden] { display: none; }
.lightbox.open { opacity: 1; }
.lightbox-fig { margin: 0; max-width: 92vw; max-height: 88vh; display: flex; flex-direction: column; align-items: center; gap: .8rem; }
.lightbox-fig img { max-width: 92vw; max-height: 80vh; width: auto; height: auto; border-radius: 8px; box-shadow: 0 30px 80px -20px rgba(0,0,0,.7); }
.lightbox-fig figcaption { font-family: var(--font-accent); font-weight: 500; color: rgba(255,255,255,.9); font-size: .95rem; text-align: center; }
.lightbox-close { position: absolute; top: 1.1rem; right: 1.3rem; width: 46px; height: 46px; border: 0; border-radius: 50%; background: rgba(255,255,255,.12); color: #fff; font-size: 1.8rem; line-height: 1; cursor: pointer; transition: background .2s ease; }
.lightbox-close:hover { background: var(--color-red); }

@media (max-width: 820px) {
  .spec-grid { grid-template-columns: 1fr 1fr; gap: .9rem; }
}
@media (max-width: 480px) {
  .spec-grid { grid-template-columns: 1fr 1fr; }
  .ba-slider { aspect-ratio: 4 / 3; }
}

/* ---------- Dark section (footer reuse) ---------- */
.section-dark { background: var(--grad-night); color: rgba(255,255,255,.82); }
.section-dark h2 { color: #fff; }

/* ---------- Why Us — mobile crew (warm light) ---------- */
.section-warm { background: var(--grad-paper); position: relative; overflow: hidden; }
.section-warm::before {
  content: ""; position: absolute; right: -70px; bottom: -90px; width: 380px; height: 380px; z-index: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120'%3E%3Cpath d='M14,16 L80,16 L80,26 L104,26 C100,46 98,64 96,80 C95,90 94,99 92,104 L24,106 L16,16 Z' fill='%23D83C14'/%3E%3C/svg%3E") center/contain no-repeat;
  opacity: .055; pointer-events: none;
}
.section-warm > .container { position: relative; z-index: 1; }
.whyus-head { max-width: 50rem; }
.whyus-banner { margin: 2.4rem 0 0; position: relative; border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-lg); }
.whyus-banner img { display: block; width: 100%; height: auto; }
.whyus-banner figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 2rem 1.2rem .85rem; font-family: var(--font-accent); font-weight: 600; font-size: .85rem; letter-spacing: .04em; text-transform: uppercase; color: #fff; background: linear-gradient(transparent, rgba(0,0,0,.78)); }
.whyus-points { list-style: none; padding: 0; margin: 2.2rem 0 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.whyus-points li { display: flex; gap: .9rem; align-items: flex-start; }
.whyus-points strong { display: block; color: var(--color-ink); }
.whyus-points div { color: var(--color-text); }
.whyus-quote { max-width: 46rem; }
.pt-ic { flex: 0 0 auto; width: 30px; height: 30px; border-radius: 6px; display: grid; place-items: center; background: var(--grad-red); box-shadow: 0 4px 10px -3px rgba(216,60,20,.5); }
.pt-ic svg { width: 18px; height: 18px; fill: none; stroke: #fff; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.pull-quote { margin: 2rem 0 0; border-left: 4px solid var(--color-red); padding: .3rem 0 .3rem 1.3rem; }
.pull-quote blockquote { margin: 0 0 .5rem; font-size: 1.15rem; font-style: italic; line-height: 1.5; color: var(--color-ink); }
.pull-quote figcaption { font-family: var(--font-accent); font-weight: 600; color: var(--color-muted); font-size: .88rem; }

/* ---------- Reviews ---------- */
.reviews-track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: 2.6rem; }
.review-card { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-card); padding: 1.7rem 1.6rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: .7rem; }
.review-card p { margin: 0; }
.review-card > p:nth-child(2) { color: var(--color-text); }
.review-by { font-family: var(--font-accent); font-weight: 700; text-transform: uppercase; letter-spacing: .03em; color: var(--color-ink); margin-top: auto !important; }
.stars { color: var(--color-gold); letter-spacing: .12em; font-size: 1.05rem; }

/* ---------- Stat band (angled gradient + shine) ---------- */
.stat-band { position: relative; background: var(--grad-red); color: #fff; overflow: hidden; clip-path: polygon(0 16px, 100% 0, 100% 100%, 0 calc(100% - 16px)); margin-block: -1px; }
.stat-band::before { content: ""; position: absolute; inset: 0; background: linear-gradient(105deg, transparent 42%, rgba(255,255,255,.14) 50%, transparent 58%); background-size: 250% 100%; pointer-events: none; }
@media (prefers-reduced-motion: no-preference) { .stat-band::before { animation: bandshine 7s linear infinite; } }
@keyframes bandshine { from { background-position: 130% 0; } to { background-position: -130% 0; } }
.stat-inner { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; padding-block: clamp(2.4rem, 4.5vw, 3.2rem); text-align: center; }
.stat { display: flex; flex-direction: column; gap: .2rem; }
.stat-num { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.1rem, 5.2vw, 3.1rem); line-height: 1; font-variant-numeric: tabular-nums; text-shadow: 0 2px 14px rgba(0,0,0,.18); }
.stat-label { font-family: var(--font-accent); font-weight: 600; font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.92); }
.stat + .stat { position: relative; }
.stat + .stat::before { content: ""; position: absolute; left: 0; top: 15%; bottom: 15%; width: 1px; background: rgba(255,255,255,.28); }

/* ---------- Service area ---------- */
.section-tint { background: linear-gradient(180deg, var(--color-bg-2), var(--color-bg)); }
.area-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: center; }
.pill-list { list-style: none; padding: 0; margin: 2rem 0 0; display: flex; flex-wrap: wrap; gap: .6rem; }
.pill-list li { font-family: var(--font-accent); font-weight: 600; font-size: .92rem; text-transform: uppercase; letter-spacing: .03em; color: var(--color-red-700); border: 1.5px solid rgba(216,60,20,.35); background: rgba(216,60,20,.05); padding: .45rem 1rem; border-radius: 4px; }
.area-call { margin-top: 1.6rem; font-family: var(--font-accent); font-weight: 500; color: var(--color-text); }
.area-map { position: relative; display: grid; place-items: center; }
.area-map::before { content: ""; position: absolute; width: 78%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(216,60,20,.2), transparent 68%); z-index: 0; }
.ar-shape { position: relative; z-index: 1; width: min(320px, 80%); height: auto; filter: drop-shadow(0 14px 24px rgba(23,25,28,.18)); }
.ar-shape path { fill: var(--color-ink); }
.ar-dot { fill: var(--color-red); }
.ar-pulse { fill: none; stroke: var(--color-red); stroke-width: 2; transform-origin: 50px 64px; }
@media (prefers-reduced-motion: no-preference) { .ar-pulse { animation: pulse 2.4s ease-out infinite; } }
@keyframes pulse { 0% { transform: scale(1); opacity: .8; } 100% { transform: scale(3.2); opacity: 0; } }
.ar-label { position: absolute; left: 50%; top: 50%; z-index: 2; transform: translate(14px, 6px); font-family: var(--font-accent); font-weight: 700; font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; color: #fff; background: var(--color-red); padding: .15rem .5rem; border-radius: 3px; box-shadow: 0 4px 12px -3px rgba(216,60,20,.6); }

/* ---------- Estimate / form ---------- */
.estimate-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: start; }
.estimate-points { list-style: none; padding: 0; margin: 1.6rem 0 0; display: grid; gap: .7rem; }
.estimate-points li { display: flex; align-items: center; gap: .6rem; color: var(--color-text); font-weight: 500; }
.estimate-points .check { stroke: var(--color-red); width: 1.2rem; height: 1.2rem; }
.call-line { margin-top: 2rem; font-family: var(--font-accent); font-size: 1.05rem; color: var(--color-text); }
.call-number { font-family: var(--font-display); font-weight: 700; font-size: 1.7rem; color: var(--color-red-700); display: block; margin-top: .2rem; letter-spacing: .02em; }
.hours { display: block; color: var(--color-muted); font-size: .92rem; margin-top: .15rem; }

.form-wrap { background: #fff; border: 1px solid var(--color-border); border-top: 4px solid var(--color-red); border-radius: 12px; padding: clamp(1.5rem, 3vw, 2.2rem); box-shadow: var(--shadow-md); }
.field { margin-bottom: 1.05rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
label { display: block; font-family: var(--font-accent); font-weight: 600; font-size: .82rem; text-transform: uppercase; letter-spacing: .04em; color: var(--color-ink); margin-bottom: .35rem; }
input, select, textarea { width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--color-text); padding: .72rem .85rem; border: 1.5px solid #D6D0C6; border-radius: var(--radius-btn); background: #FCFBF9; transition: border-color .15s ease, box-shadow .15s ease; }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--color-red); box-shadow: 0 0 0 3px rgba(216,60,20,.16); }
textarea { resize: vertical; min-height: 84px; }
.form-status { margin: .9rem 0 0; font-weight: 500; font-size: .95rem; min-height: 1.2em; }
.form-status.ok { color: #2E7D52; }
.form-status.err { color: var(--color-red-700); }
.hp-field { position: absolute; left: -9999px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--grad-night); color: rgba(255,255,255,.72); border-top: 3px solid var(--color-red); }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1.2fr; gap: 2rem; padding-block: clamp(2.5rem, 5vw, 3.5rem); }
.footer-wordmark { display: inline-flex; align-items: center; gap: .6rem; color: #fff; }
.footer-wordmark:hover { text-decoration: none; }
.footer-wordmark .wordmark-icon { color: var(--color-red); }
.footer-wordmark .wordmark-main { font-size: 1.55rem; }
.footer-wordmark .wordmark-sub { font-size: .62rem; }
.footer-tag { font-style: italic; color: rgba(255,255,255,.6); margin: 1rem 0 0; line-height: 1.5; }
.footer-tag span { font-style: normal; font-family: var(--font-accent); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; font-size: .82rem; color: var(--color-red-300); }
.footer-nav { display: flex; flex-direction: column; gap: .55rem; }
.footer-nav a { color: rgba(255,255,255,.78); font-family: var(--font-accent); font-weight: 600; text-transform: uppercase; letter-spacing: .03em; font-size: .92rem; }
.footer-nav a:hover { color: #fff; }
.footer-contact { display: flex; flex-direction: column; gap: .85rem; }
.footer-phone { display: inline-flex; align-items: center; gap: .5rem; color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 1.35rem; letter-spacing: .02em; }
.footer-phone svg { width: 20px; height: 20px; fill: var(--color-red-300); }
.footer-phone:hover { text-decoration: none; color: var(--color-red-300); }
.fb-link, .footer-email { display: inline-flex; align-items: center; gap: .5rem; color: rgba(255,255,255,.85); font-family: var(--font-accent); font-weight: 500; }
.fb-link svg { width: 22px; height: 22px; fill: currentColor; }
.footer-email svg { width: 20px; height: 20px; fill: none; stroke: var(--color-red-300); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.fb-link:hover, .footer-email:hover { color: #fff; text-decoration: none; }
.footer-addr { margin: 0; font-size: .92rem; line-height: 1.6; color: rgba(255,255,255,.58); }
.footer-bar { border-top: 1px solid rgba(255,255,255,.1); }
.footer-bar-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .5rem; padding-block: 1.1rem; font-size: .85rem; font-family: var(--font-accent); }
.footer-bar a { color: var(--color-red-300); }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .area-grid, .estimate-grid { grid-template-columns: 1fr; }
  .area-map { order: -1; }
}
@media (max-width: 760px) {
  .whyus-points { grid-template-columns: 1fr; gap: 1.2rem; }
}
@media (max-width: 820px) {
  .reviews-track { grid-template-columns: none; display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 1rem; margin-inline: -1.5rem; padding: .5rem 1.5rem 1.2rem; scrollbar-width: thin; }
  .review-card { flex: 0 0 84%; scroll-snap-align: start; }
}
@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .nav-links { position: fixed; top: 0; right: 0; height: 100dvh; width: min(80vw, 320px); flex-direction: column; align-items: flex-start; justify-content: center; gap: 1.6rem; background: var(--color-ink); padding: 2rem; z-index: 110; transform: translateX(100%); transition: transform .32s cubic-bezier(.4,0,.2,1); box-shadow: -16px 0 40px -20px rgba(0,0,0,.7); }
  body.nav-open .nav-links { transform: translateX(0); }
  body.nav-open .nav-scrim { opacity: 1; }
  body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
  .nav-links a { font-size: 1.2rem; }
  .nav-cta { align-self: stretch; text-align: center; }
}
@media (max-width: 560px) {
  .stat-inner { grid-template-columns: 1fr 1fr; gap: 1.4rem 1rem; }
  .stat:nth-child(3)::before, .stat + .stat::before { display: none; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.6rem; }
  .footer-bar-inner { flex-direction: column; }
  .hero-cta .btn { flex: 1 1 100%; }
}
