/* ============================================================
   TTG Roof Pro's — styles.css
   Palette pulled from the brand logo:
   blue #0A8DD1 · gold #F5B23E · orange #F08A1E · ink #15130E
   ============================================================ */

:root {
  --blue:        #0A8DD1;
  --blue-deep:   #0B5C9E;
  --blue-dark:   #0A3A60;
  --blue-night:  #08283f;
  --gold:        #F5B23E;
  --gold-bright: #FAC56B;
  --orange:      #F08A1E;
  --orange-deep: #E0760F;
  --orange-text: #B5540A; /* AA-contrast orange for small text on light bg */
  --ink:         #15130E;
  --ink-2:       #221E16;
  --tan:         #9D7747;
  --cream:       #FBF7EF;
  --cream-2:     #F2EBDD;
  --white:       #ffffff;
  --text:        #2A2620;
  --muted:       #6C655A;

  --maxw: 1200px;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow:    0 18px 50px -18px rgba(21,19,14,0.35);
  --shadow-lg: 0 30px 80px -24px rgba(10,58,96,0.45);
  --ease: cubic-bezier(.22,.61,.36,1);

  --font-display: 'Anton', 'Arial Narrow', sans-serif;
  --font-body: 'Barlow', system-ui, -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

/* overflow-x: hidden creates a scroll container that BREAKS position:sticky
   on the navbar — clip prevents horizontal scroll without doing that.
   (hidden kept first as a fallback for older browsers) */
html { scroll-behavior: smooth; scroll-padding-top: 84px; overflow-x: hidden; overflow-x: clip; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  overflow-x: clip;
  width: 100%;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

/* Respect the hidden attribute even when an element sets its own display
   (e.g. .success-message uses display:flex, which would otherwise win). */
[hidden] { display: none !important; }

/* Screen-reader-only text */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* Let grid/flex children shrink below their content so nothing overflows
   the viewport on small screens (otherwise tracks default to min-width:auto). */
.hero-inner > *, .why-inner > *, .area-inner > *, .contact-inner > *,
.services-grid > *, .oc-grid > *, .process-track > *, .footer-inner > *,
.cta-band-inner > *, .trust-inner > * { min-width: 0; }

/* Keyboard focus visibility */
a:focus-visible, button:focus-visible, .btn:focus-visible,
.nav-toggle:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Skip link */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ink); color: #fff; padding: 12px 20px;
  border-radius: 0 0 10px 0; font-weight: 700;
}
.skip-link:focus { left: 0; }

h1, h2, h3, h4 { line-height: 1.05; letter-spacing: .5px; }

/* ---------- Shared section bits ---------- */
.section { padding: clamp(64px, 9vw, 130px) 24px; }
.section-head { max-width: 760px; margin: 0 auto clamp(40px, 6vw, 70px); text-align: center; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 5.2vw, 3.6rem);
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 1px;
  overflow-wrap: break-word;
}
.section-title.light { color: var(--white); }
.section-lead { margin-top: 18px; font-size: 1.12rem; color: var(--muted); }
.section-lead.light { color: rgba(255,255,255,.82); }

.kicker {
  display: inline-block;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--orange-text);
  margin-bottom: 14px;
  position: relative;
  padding-left: 30px;
}
.kicker::before {
  content: ""; position: absolute; left: 0; top: 50%;
  width: 22px; height: 3px; background: var(--orange); transform: translateY(-50%); border-radius: 3px;
}
.kicker.light { color: var(--gold); }
.kicker.light::before { background: var(--gold); }
.section-head .kicker { padding-left: 0; }
.section-head .kicker::before { display: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-weight: 700;
  font-size: 1rem; letter-spacing: .4px;
  padding: 16px 30px; border-radius: 60px; border: 2px solid transparent;
  cursor: pointer; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s;
  text-transform: uppercase;
}
.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  color: var(--white);
  box-shadow: 0 12px 28px -8px rgba(224,118,15,.6);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 38px -10px rgba(224,118,15,.7); }
.btn-ghost {
  background: transparent; color: var(--ink); border-color: rgba(21,19,14,.25);
}
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-3px); }
.btn-ghost.light { color: var(--white); border-color: rgba(255,255,255,.45); }
.btn-ghost.light:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.btn-block { width: 100%; justify-content: center; }
.btn-arrow { transition: transform .25s var(--ease); }
.btn:hover .btn-arrow { transform: translateX(5px); }

/* ============================================================
   Topbar
   ============================================================ */
/* ============================================================
   Promo ticker
   ============================================================ */
.ticker {
  background: linear-gradient(90deg, var(--gold), var(--orange));
  color: var(--ink); overflow: hidden; white-space: nowrap;
}
.ticker-track {
  display: flex; width: max-content;
  animation: ticker 34s linear infinite; will-change: transform;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-group { display: flex; align-items: center; gap: 38px; padding: 9px 38px 9px 0; }
.ticker-group span { font-weight: 800; font-size: .82rem; letter-spacing: .6px; text-transform: uppercase; white-space: nowrap; }
.ticker-dot { color: rgba(21,19,14,.5); }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.topbar {
  background: var(--ink); color: var(--cream-2);
  font-size: .85rem; font-weight: 500;
}
.topbar-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 9px 24px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.topbar-right { display: flex; align-items: center; gap: 22px; }
.topbar-phone { font-weight: 700; color: var(--gold-bright); }
.topbar-phone:hover { color: var(--white); }

/* ============================================================
   Navbar
   ============================================================ */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251,247,239,.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(21,19,14,.08);
  transition: background .3s, box-shadow .3s, padding .3s, transform .3s var(--ease);
}
.navbar.scrolled { box-shadow: 0 8px 30px -12px rgba(21,19,14,.25); background: rgba(251,247,239,.97); }
.nav-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 12px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { height: 44px; width: auto; }
.nav-logo-text {
  font-family: var(--font-display); font-size: 1.15rem; letter-spacing: .5px;
  color: var(--ink); line-height: 1; text-transform: uppercase;
}
.nav-logo-text strong { color: var(--blue-deep); font-weight: 400; }

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-weight: 600; font-size: .96rem; color: var(--ink); transition: color .2s; position: relative; }
.nav-links a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--orange); transition: width .25s var(--ease);
}
.nav-links a:not(.nav-cta):hover { color: var(--orange); }
.nav-links a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  color: var(--white) !important; padding: 11px 22px; border-radius: 50px;
  box-shadow: 0 10px 22px -8px rgba(224,118,15,.6); transition: transform .2s;
}
.nav-cta:hover { transform: translateY(-2px); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 26px; height: 3px; background: var(--ink); border-radius: 3px; transition: .3s var(--ease); }
.nav-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  min-height: calc(100vh - 128px);
  display: flex; align-items: center;
  color: var(--white);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-sky {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 75% 8%, rgba(10,141,209,.35), transparent 55%),
    linear-gradient(165deg, var(--blue-night) 0%, var(--blue-dark) 45%, #0e4a76 100%);
  background-size: 200% 200%;
  animation: skyShift 18s ease-in-out infinite;
}
@keyframes skyShift { 0%,100% { background-position: 0% 0%; } 50% { background-position: 100% 60%; } }
.hero-sun {
  position: absolute; left: 50%; top: 62%; transform: translate(-50%,-50%);
  width: 900px; height: 900px; max-width: 130vw; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,178,62,.55) 0%, rgba(240,138,30,.18) 35%, transparent 65%);
  filter: blur(8px);
  animation: sunPulse 7s ease-in-out infinite;
}
@keyframes sunPulse { 0%,100% { opacity: .8; transform: translate(-50%,-50%) scale(1); } 50% { opacity: 1; transform: translate(-50%,-50%) scale(1.06); } }
.hero-roofline { position: absolute; left: 0; right: 0; bottom: 0; width: 100%; height: 44%; }
.hero-roofline .roof-far { fill: rgba(8,40,63,.55); animation: roofFar 24s ease-in-out infinite alternate; }
.hero-roofline .roof-near { fill: var(--ink); }
@keyframes roofFar { from { transform: translateX(-12px); } to { transform: translateX(12px); } }
.hero-grain {
  position: absolute; inset: 0; opacity: .4; mix-blend-mode: overlay; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 4px 4px;
}

.hero-inner {
  position: relative; z-index: 2;
  max-width: var(--maxw); margin: 0 auto; padding: 60px 24px 90px;
  width: 100%;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center;
}
.hero-kicker {
  display: inline-block; font-weight: 700; font-size: .82rem; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold-bright);
  background: rgba(10,141,209,.22); border: 1px solid rgba(250,197,107,.35);
  padding: 8px 16px; border-radius: 40px; margin-bottom: 22px;
  opacity: 0; animation: fadeUp .7s var(--ease) .1s forwards;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8.5vw, 6.6rem);
  line-height: .92; text-transform: uppercase; letter-spacing: 1px;
  text-shadow: 0 6px 30px rgba(0,0,0,.35);
  overflow-wrap: break-word; max-width: 100%;
}
.hero-title .word { display: inline-block; opacity: 0; transform: translateY(40px); animation: fadeUp .8s var(--ease) forwards; }
.hero-title .word:nth-child(1) { animation-delay: .25s; }
.hero-title .word:nth-child(2) { animation-delay: .4s; }
.hero-title .word.accent {
  animation-delay: .55s;
  background: linear-gradient(180deg, var(--gold-bright), var(--orange));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  /* text-shadow bleeds through the transparent (gradient-clipped) glyphs as a
     dark blotch — drop it here and use a soft drop-shadow filter instead */
  text-shadow: none;
  filter: drop-shadow(0 4px 16px rgba(224,118,15,.35));
}
.hero-sub {
  margin: 26px 0 32px; max-width: 560px; font-size: 1.18rem; color: rgba(255,255,255,.88);
  opacity: 0; animation: fadeUp .8s var(--ease) .7s forwards;
}
.hero-sub strong { color: var(--gold-bright); }
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 16px;
  opacity: 0; animation: fadeUp .8s var(--ease) .85s forwards;
}
.hero .btn-ghost { color: var(--white); border-color: rgba(255,255,255,.4); }
.hero .btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,.1); }
.hero-trust {
  list-style: none; display: flex; flex-wrap: wrap; gap: 8px 24px; margin-top: 30px;
  font-weight: 600; font-size: .95rem; color: rgba(255,255,255,.85);
  opacity: 0; animation: fadeUp .8s var(--ease) 1s forwards;
}
.hero-trust li { color: var(--gold-bright); }

.hero-art { position: relative; display: flex; justify-content: center; }
.hero-art-glow {
  position: absolute; width: 90%; aspect-ratio: 1; border-radius: 50%; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  background: radial-gradient(circle, rgba(10,141,209,.5), transparent 62%);
  filter: blur(20px);
  animation: sunPulse 6s ease-in-out infinite;
}
.hero-mascot {
  position: relative; z-index: 1; width: min(100%, 520px);
  filter: drop-shadow(0 30px 40px rgba(0,0,0,.45));
  opacity: 0; transform: scale(.8) translateY(20px);
  animation: mascotIn 1s var(--ease) .35s forwards, float 6s ease-in-out 1.4s infinite;
}
@keyframes mascotIn { to { opacity: 1; transform: scale(1) translateY(0); } }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

.hero-scroll {
  position: absolute; bottom: 84px; left: 50%; transform: translateX(-50%); z-index: 5;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: .72rem; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.7);
  opacity: 0; animation: fadeUp 1s var(--ease) 1.3s forwards;
}
.hero-scroll-mouse {
  width: 24px; height: 38px; border: 2px solid rgba(255,255,255,.6); border-radius: 14px; position: relative;
}
.hero-scroll-mouse::after {
  content: ""; position: absolute; left: 50%; top: 7px; width: 4px; height: 7px; border-radius: 3px;
  background: var(--gold-bright); transform: translateX(-50%); animation: wheel 1.6s infinite;
}
@keyframes wheel { 0% { opacity: 0; top: 7px; } 30% { opacity: 1; } 100% { opacity: 0; top: 20px; } }

/* ============================================================
   Trust strip
   ============================================================ */
.trust { background: var(--ink); padding: 8px 24px 0; }
.trust-inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px;
  transform: translateY(-44px);
}
.trust-item {
  background: var(--white); border-radius: var(--radius-sm);
  padding: 22px 24px; display: flex; align-items: center; gap: 16px;
  box-shadow: var(--shadow); border-bottom: 3px solid var(--orange);
}
.trust-icon { font-size: 1.9rem; line-height: 1; }
.trust-item strong { display: block; font-size: 1.02rem; color: var(--ink); }
.trust-item span { font-size: .86rem; color: var(--muted); }

/* ============================================================
   Services
   ============================================================ */
.services { background: var(--cream); padding-top: clamp(30px,5vw,60px); }
.services-grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px;
}
.service-card {
  background: var(--white); border-radius: var(--radius); padding: 36px 30px;
  box-shadow: var(--shadow); border: 1px solid rgba(21,19,14,.05);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ""; position: absolute; left: 0; top: 0; height: 4px; width: 100%;
  background: linear-gradient(90deg, var(--blue), var(--gold)); transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 64px; height: 64px; border-radius: 16px;
  display: grid; place-items: center; margin-bottom: 22px;
  background: linear-gradient(135deg, rgba(10,141,209,.12), rgba(245,178,62,.18));
  color: var(--blue-deep);
}
.service-icon svg { width: 34px; height: 34px; }
.service-card h3 { font-size: 1.3rem; color: var(--ink); margin-bottom: 10px; letter-spacing: .3px; }
.service-card p { color: var(--muted); font-size: .98rem; }

/* ============================================================
   Why TTG
   ============================================================ */
.why { background: var(--cream-2); }
.why-inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(36px, 6vw, 72px); align-items: center;
}
.why-art { position: relative; }
.why-art-frame {
  background: linear-gradient(160deg, var(--blue-dark), var(--blue-night));
  border-radius: 24px; padding: 40px; box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
}
.why-art-frame::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(10,141,209,.45), transparent 60%);
}
.why-art-frame img { position: relative; z-index: 1; filter: drop-shadow(0 16px 24px rgba(0,0,0,.4)); }
.why-badge {
  position: absolute; bottom: -18px; right: 18px;
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: 1px;
  background: linear-gradient(135deg, var(--gold), var(--orange)); color: var(--ink);
  padding: 14px 24px; border-radius: 50px; box-shadow: var(--shadow);
  font-size: 1.05rem; transform: rotate(-3deg);
}
.why-copy p { margin-bottom: 16px; color: var(--text); font-size: 1.06rem; }
.why-copy .section-title { margin-bottom: 18px; }
.why-list { list-style: none; margin: 24px 0 30px; display: grid; gap: 14px; }
.why-list li { display: flex; align-items: center; gap: 14px; font-weight: 600; color: var(--ink); }
.why-list li span { font-size: 1.3rem; }

/* ============================================================
   Owens Corning
   ============================================================ */
.oc { background: linear-gradient(165deg, var(--blue-dark), var(--blue-night)); position: relative; overflow: hidden; }
.oc::before {
  content: ""; position: absolute; top: -120px; right: -80px; width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,178,62,.22), transparent 65%);
}
.oc-inner { max-width: var(--maxw); margin: 0 auto; position: relative; z-index: 1; }
.oc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.oc-item {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius); padding: 30px 26px; backdrop-filter: blur(4px);
  transition: transform .3s var(--ease), background .3s;
}
.oc-item:hover { transform: translateY(-6px); background: rgba(255,255,255,.1); }
.oc-num { font-family: var(--font-display); font-size: 2rem; color: var(--gold); display: block; margin-bottom: 10px; }
.oc-item h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 8px; letter-spacing: .3px; }
.oc-item p { color: rgba(255,255,255,.78); font-size: .94rem; }
.oc-cta { display: flex; justify-content: center; align-items: center; gap: 14px; flex-wrap: wrap; margin-top: 50px; }

/* ============================================================
   Process
   ============================================================ */
.process { background: var(--cream); }
.process-track {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative;
}
/* faint base rail */
.process-track::before {
  content: ""; position: absolute; top: 32px; left: 12%; right: 12%; height: 3px;
  background: rgba(21,19,14,.10); border-radius: 3px; z-index: 0;
}
/* animated colored fill that draws across the rail on reveal */
.process-progress {
  position: absolute; top: 32px; left: 12%; height: 3px; width: 0; z-index: 1; border-radius: 3px;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  transition: width 1.8s var(--ease) .25s;
}
.process-track.in-view .process-progress { width: 76%; }

.process-step {
  text-align: center; position: relative; z-index: 2;
  opacity: 0; transform: translateY(40px) scale(.96);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.process-track.in-view .process-step { opacity: 1; transform: none; }

.process-num {
  width: 66px; height: 66px; border-radius: 50%; margin: 0 auto 20px;
  display: grid; place-items: center; font-family: var(--font-display); font-size: 1.7rem;
  color: var(--white); background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  box-shadow: 0 12px 26px -8px rgba(10,92,158,.6); border: 4px solid var(--cream);
  position: relative; transition: transform .3s var(--ease);
}
.process-step:hover .process-num { transform: translateY(-4px) scale(1.06); }
/* expanding ring "ping" as each step is revealed */
.process-num::after {
  content: ""; position: absolute; inset: -4px; border-radius: 50%;
  border: 3px solid var(--gold); opacity: 0;
}
.process-track.in-view .process-num::after { animation: ping 1s var(--ease) forwards; }
.process-track.in-view .process-step:nth-child(2) .process-num::after { animation-delay: .15s; }
.process-track.in-view .process-step:nth-child(3) .process-num::after { animation-delay: .30s; }
.process-track.in-view .process-step:nth-child(4) .process-num::after { animation-delay: .45s; }
@keyframes ping { 0% { opacity: .85; transform: scale(.8); } 100% { opacity: 0; transform: scale(1.55); } }

.process-step h3 { color: var(--ink); font-size: 1.25rem; margin-bottom: 8px; }
.process-step p { color: var(--muted); font-size: .96rem; padding: 0 6px; }

/* ============================================================
   Service Area
   ============================================================ */
.area { background: var(--cream-2); }
.area-inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 70px); align-items: center;
}
.area-copy p { color: var(--text); font-size: 1.06rem; margin-bottom: 14px; }
.area-list {
  list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin: 26px 0 20px;
}
.area-list li {
  font-weight: 600; color: var(--ink); padding-left: 26px; position: relative;
}
.area-list li::before {
  content: "📍"; position: absolute; left: 0; font-size: .9rem;
}
.area-note { font-size: .98rem; color: var(--muted); }
.area-note a { color: var(--orange-text); font-weight: 700; }
.area-map {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg);
  border: 6px solid var(--white); min-height: 380px;
}
.area-map iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; }

/* ============================================================
   Reviews
   ============================================================ */
.reviews { background: var(--ink); text-align: center; position: relative; overflow: hidden; }
.reviews::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(10,141,209,.25), transparent 60%);
}
.reviews-inner { max-width: 760px; margin: 0 auto; position: relative; z-index: 1; }
.reviews-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin: 32px 0 28px; }
.reviews-badges { display: flex; gap: 14px 28px; justify-content: center; flex-wrap: wrap; color: var(--gold-bright); font-weight: 600; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--cream); }
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item {
  background: var(--white); border: 1px solid rgba(21,19,14,.08); border-radius: var(--radius-sm);
  box-shadow: var(--shadow); overflow: hidden; transition: box-shadow .25s var(--ease);
}
.faq-item[open] { box-shadow: var(--shadow-lg); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 20px 24px; font-weight: 700; color: var(--ink);
  font-size: 1.06rem; display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-weight: 700; font-size: 1.7rem; line-height: 1; color: var(--orange);
  transition: transform .3s var(--ease); flex: none;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer { padding: 0 24px 22px; }
.faq-answer p { color: var(--muted); }
.faq-answer a { color: var(--orange-text); font-weight: 700; }
.faq-item[open] .faq-answer { animation: faqOpen .35s var(--ease); }
@keyframes faqOpen { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }

/* ============================================================
   CTA band
   ============================================================ */
.cta-band {
  background: linear-gradient(120deg, var(--blue-deep), var(--blue-dark));
  padding: clamp(40px, 6vw, 66px) 24px; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 88% 18%, rgba(245,178,62,.28), transparent 55%);
}
.cta-band-inner {
  max-width: var(--maxw); margin: 0 auto; position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
}
.cta-band-inner h2 {
  font-family: var(--font-display); text-transform: uppercase; color: var(--white);
  font-size: clamp(1.7rem, 4vw, 2.6rem); letter-spacing: .5px;
}
.cta-band-copy p { color: rgba(255,255,255,.85); margin-top: 8px; font-size: 1.05rem; }
.cta-band-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   Gallery (filmstrip carousel + lightbox)
   ============================================================ */
.gallery { background: var(--cream); }
.carousel { position: relative; max-width: var(--maxw); margin: 0 auto; }
.carousel-track {
  display: flex; gap: 14px; overflow-x: auto;
  scroll-snap-type: x mandatory; scroll-behavior: smooth;
  padding: 4px 4px 8px;
  scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-track:focus-visible { outline: 3px solid var(--orange); outline-offset: 4px; border-radius: var(--radius-sm); }
.carousel-slide {
  position: relative; flex: 0 0 auto; height: 420px; max-width: min(92vw, 680px);
  padding: 0; border: 0; cursor: pointer;
  border-radius: var(--radius-sm); overflow: hidden; background: var(--ink);
  box-shadow: var(--shadow); scroll-snap-align: start;
}
.carousel-slide img {
  height: 100%; width: auto; max-width: 100%; object-fit: cover; display: block;
  transition: transform .55s var(--ease);
}
.carousel-slide::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,58,96,.5), transparent 55%);
  opacity: 0; transition: opacity .3s;
}
.carousel-slide::before {
  content: "🔍"; position: absolute; right: 12px; bottom: 10px; z-index: 1;
  font-size: 1.1rem; opacity: 0; transform: translateY(6px); transition: .3s var(--ease);
}
.carousel-slide:hover img, .carousel-slide:focus-visible img { transform: scale(1.05); }
.carousel-slide:hover::after, .carousel-slide:focus-visible::after { opacity: 1; }
.carousel-slide:hover::before, .carousel-slide:focus-visible::before { opacity: 1; transform: translateY(0); }
.carousel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 52px; height: 52px; border-radius: 50%; border: 0; cursor: pointer;
  background: #fff; color: var(--ink); font-size: 1.9rem; line-height: 1;
  box-shadow: 0 6px 24px rgba(0,0,0,.22);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, color .2s, opacity .2s;
}
.carousel-arrow:hover:not(:disabled) { background: var(--orange); color: #fff; }
.carousel-arrow:disabled { opacity: .3; cursor: default; }
.carousel-prev { left: -8px; }
.carousel-next { right: -8px; }
.carousel-count { text-align: center; margin-top: 14px; color: var(--muted); font-weight: 700; letter-spacing: .04em; }
.gallery-note { text-align: center; margin-top: 10px; color: var(--muted); }
.gallery-note a { color: var(--orange-text); font-weight: 700; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200; padding: 28px;
  background: rgba(8,12,16,.92); display: flex; align-items: center; justify-content: center;
}
.lightbox[hidden] { display: none; }
.lightbox img { max-width: 92vw; max-height: 88vh; border-radius: 8px; box-shadow: 0 30px 90px rgba(0,0,0,.6); animation: lbIn .3s var(--ease); }
@keyframes lbIn { from { opacity: 0; transform: scale(.96); } to { opacity: 1; transform: none; } }
.lightbox-close {
  position: absolute; top: 16px; right: 20px; width: 48px; height: 48px; border-radius: 50%;
  border: 0; background: rgba(255,255,255,.14); color: #fff; font-size: 1.9rem; line-height: 1; cursor: pointer;
  transition: background .2s;
}
.lightbox-close:hover { background: rgba(255,255,255,.28); }
.lightbox-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 1;
  width: 54px; height: 54px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(255,255,255,.14); color: #fff; font-size: 2rem; line-height: 1;
  display: flex; align-items: center; justify-content: center; transition: background .2s;
}
.lightbox-arrow:hover { background: rgba(255,255,255,.28); }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-count {
  position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.85); font-weight: 700; letter-spacing: .06em; font-size: .95rem;
}

/* ============================================================
   Landing pages (community + Owens Corning)
   ============================================================ */
.page-hero {
  background: linear-gradient(165deg, var(--blue-night), var(--blue-dark));
  color: #fff; padding: clamp(64px, 10vw, 120px) 24px clamp(50px, 7vw, 84px);
  text-align: center; position: relative; overflow: hidden;
}
.page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 72% 0%, rgba(245,178,62,.18), transparent 55%); }
.page-hero-inner { max-width: 840px; margin: 0 auto; position: relative; z-index: 1; }
.page-hero .kicker { color: var(--gold); }
.page-hero .kicker::before { background: var(--gold); }
.page-hero h1 {
  font-family: var(--font-display); text-transform: uppercase;
  font-size: clamp(2.1rem, 6vw, 4rem); letter-spacing: 1px; line-height: 1;
  margin-bottom: 18px; overflow-wrap: break-word;
}
.page-hero h1 .accent { color: var(--gold-bright); }
.page-hero p { color: rgba(255,255,255,.86); font-size: 1.12rem; max-width: 640px; margin: 0 auto 28px; }
.page-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.page-hero .btn-ghost { color: #fff; border-color: rgba(255,255,255,.45); }
.page-hero .btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.1); }

.page-body { max-width: 860px; margin: 0 auto; }
.page-body p { font-size: 1.06rem; color: var(--text); margin-bottom: 16px; }
.page-body h2 {
  font-family: var(--font-display); text-transform: uppercase; color: var(--ink);
  font-size: clamp(1.5rem, 3.6vw, 2.2rem); letter-spacing: .5px; margin: 34px 0 16px;
}
.page-body .why-list { margin: 20px 0 26px; }
.page-note { font-size: .96rem; color: var(--muted); background: var(--cream-2); border-left: 4px solid var(--gold); padding: 14px 18px; border-radius: 8px; }
/* Toolsey renders a fixed-width card; stack + center so it reads as intentional */
.quote-embed { display: flex; flex-direction: column; align-items: center; gap: 14px; margin: 22px 0 34px; min-height: 120px; }
.quote-embed #toolsey-quote-widget { width: 100%; max-width: 640px; }
.quote-embed .page-note { max-width: 640px; }

/* Owens Corning widgets (Design EyeQ visualizer + Build Your Roof) — full width */
.widget-embed { margin: 22px 0 34px; min-height: 160px; }
.widget-embed #visualizer, .widget-embed #build-your-roof-embed { width: 100%; }
.widget-embed .page-note { margin-top: 14px; }

/* ============================================================
   Financing band
   ============================================================ */
.financing { background: linear-gradient(120deg, var(--cream-2), #F7EDD8); padding: clamp(44px, 6vw, 70px) 24px; }
.financing-inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.6fr 1fr; gap: clamp(28px, 5vw, 60px); align-items: center;
}
.financing-copy .section-title { text-align: left; margin: 8px 0 14px; }
.financing-copy p { color: var(--text); font-size: 1.06rem; margin-bottom: 18px; }
.financing-badges { display: flex; flex-wrap: wrap; gap: 10px; }
.financing-badges span {
  background: var(--white); border: 1px solid rgba(21,19,14,.12); border-radius: 999px;
  padding: 7px 16px; font-weight: 700; font-size: .88rem; color: var(--ink);
}
.financing-cta { text-align: center; }
.financing-note { margin-top: 12px; color: var(--muted); font-size: .88rem; }
@media (max-width: 900px) {
  .financing-inner { grid-template-columns: 1fr; }
  .financing-cta { text-align: left; }
}

/* Mini cross-CTAs between the OC tools (Instant Quote = primary) */
.tools-cta {
  display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap;
  margin: 36px 0 6px; padding-top: 28px; border-top: 1px solid var(--cream-2);
}
.tools-cta-label { font-weight: 700; color: var(--muted); font-size: .95rem; width: 100%; text-align: center; margin-bottom: 4px; }

/* Discreet footer SEO links */
.footer-seo {
  max-width: var(--maxw); margin: 0 auto; padding: 6px 0 24px;
  border-top: 1px solid rgba(255,255,255,.07);
}
.footer-seo h4 { color: rgba(255,255,255,.62); font-size: .72rem; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 700; margin: 16px 0 6px; }
.footer-seo a { display: inline-block; color: rgba(255,255,255,.64); font-size: .74rem; margin-right: 14px; line-height: 1.9; transition: color .2s; }
.footer-seo a:hover { color: var(--gold-bright); }

/* ============================================================
   Contact
   ============================================================ */
.contact { background: var(--cream); }
.contact-inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(36px, 6vw, 70px); align-items: start;
}
.contact-info p { color: var(--muted); margin-bottom: 26px; font-size: 1.06rem; }
.contact-details { list-style: none; display: grid; gap: 20px; margin-bottom: 30px; }
.contact-details li { display: flex; gap: 16px; align-items: flex-start; }
.ci-icon {
  font-size: 1.2rem; width: 48px; height: 48px; flex: none; border-radius: 12px; display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(10,141,209,.12), rgba(245,178,62,.18));
}
.ci-label { display: block; font-size: .78rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--muted); font-weight: 700; }
.contact-details a { font-weight: 700; color: var(--ink); }
.contact-details a:hover { color: var(--orange); }
.contact-social { display: flex; gap: 20px; flex-wrap: wrap; }
.contact-social a {
  font-weight: 600; font-size: .92rem; color: var(--blue-deep); position: relative;
}
.contact-social a:hover { color: var(--orange); }

.contact-form-wrap {
  background: var(--white); border-radius: var(--radius); padding: clamp(26px, 4vw, 42px);
  box-shadow: var(--shadow-lg); border-top: 5px solid var(--orange);
}
.contact-form { display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 7px; }
.field label { font-weight: 700; font-size: .82rem; text-transform: uppercase; letter-spacing: 1px; color: var(--ink); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--text);
  padding: 13px 15px; border: 1.5px solid rgba(21,19,14,.16); border-radius: var(--radius-sm);
  background: var(--cream); transition: border-color .2s, box-shadow .2s; width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(10,141,209,.16); background: var(--white);
}
.field textarea { resize: vertical; }
.hp-field { position: absolute; left: -9999px; opacity: 0; }
.form-fineprint { font-size: .82rem; color: var(--muted); text-align: center; margin-top: 2px; }
.btn-loading { font-weight: 700; }

.success-message {
  text-align: center; padding: 40px 24px;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.success-check {
  width: 64px; height: 64px; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--blue), var(--gold)); color: var(--white); font-size: 2rem; font-weight: 700;
}
.success-message h3 { font-size: 1.5rem; color: var(--ink); }
.success-message p { color: var(--muted); }
.success-message a { color: var(--orange); font-weight: 700; }

/* ============================================================
   Footer
   ============================================================ */
.footer { background: var(--ink); color: rgba(255,255,255,.72); padding: 70px 24px 0; }
.footer-inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px;
}
.footer-brand img { height: 56px; width: auto; margin-bottom: 14px; }
.footer-tag { font-family: var(--font-display); text-transform: uppercase; color: var(--gold); font-size: 1.2rem; letter-spacing: .5px; margin-bottom: 10px; }
.footer-desc { font-size: .94rem; max-width: 320px; }
.footer-col h3 { color: var(--white); font-size: 1rem; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; }
.footer-col a, .footer-col span { display: block; font-size: .94rem; color: rgba(255,255,255,.7); margin-bottom: 10px; transition: color .2s; }
.footer-col a:hover { color: var(--gold-bright); }
.footer-bottom {
  max-width: var(--maxw); margin: 0 auto; border-top: 1px solid rgba(255,255,255,.12);
  padding: 22px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  font-size: .86rem;
}
.footer-bottom-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-bottom-links a { color: rgba(255,255,255,.7); }
.footer-bottom-links a:hover { color: var(--gold-bright); }

/* ============================================================
   Floating call button (mobile)
   ============================================================ */
.fab-call {
  position: fixed; bottom: 22px; right: 22px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%; display: none; place-items: center;
  background: linear-gradient(135deg, var(--orange), var(--orange-deep)); color: var(--white); font-size: 1.5rem;
  box-shadow: 0 14px 30px -8px rgba(224,118,15,.7);
  animation: fabPulse 2.4s ease-in-out infinite;
}
@keyframes fabPulse { 0%,100% { box-shadow: 0 14px 30px -8px rgba(224,118,15,.7); } 50% { box-shadow: 0 14px 30px -4px rgba(224,118,15,.95); } }

/* ============================================================
   Scroll reveal
   ============================================================ */
.fade-in-up, .slide-in-left, .slide-in-right, .scale-in {
  opacity: 0; transition: opacity .7s var(--ease), transform .7s var(--ease);
  will-change: opacity, transform;
}
.fade-in-up { transform: translateY(44px); }
.slide-in-left { transform: translateX(-50px); }
.slide-in-right { transform: translateX(50px); }
.scale-in { transform: scale(.9); }
.visible { opacity: 1 !important; transform: none !important; }

/* staggered children */
.services-grid .service-card:nth-child(2), .trust-item:nth-child(2), .oc-item:nth-child(2), .process-step:nth-child(2) { transition-delay: .08s; }
.services-grid .service-card:nth-child(3), .trust-item:nth-child(3), .oc-item:nth-child(3), .process-step:nth-child(3) { transition-delay: .16s; }
.services-grid .service-card:nth-child(4), .trust-item:nth-child(4), .oc-item:nth-child(4), .process-step:nth-child(4) { transition-delay: .24s; }
.services-grid .service-card:nth-child(5) { transition-delay: .32s; }
.services-grid .service-card:nth-child(6) { transition-delay: .40s; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .hero { min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; padding-bottom: 64px; }
  .hero-art { order: -1; }
  .hero-mascot { width: min(72%, 340px); }
  .hero-kicker, .hero-actions, .hero-trust { justify-content: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-scroll { display: none; } /* avoid overlapping the hero trust list on small screens */
  .why-inner, .area-inner, .contact-inner { grid-template-columns: 1fr; }
  .why-art { max-width: 480px; margin: 0 auto; }
  .services-grid, .oc-grid { grid-template-columns: repeat(2, 1fr); }
  .carousel-slide { height: 360px; }
  .trust-inner { grid-template-columns: repeat(2, 1fr); transform: translateY(-30px); }
  .process-track { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
  .process-track::before, .process-progress { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .topbar-area { display: none; }
  .topbar-inner { justify-content: center; }
  .nav-logo-text { display: none; }
  .nav-links {
    position: fixed; top: 0; right: 0; height: 100vh; width: min(80vw, 320px);
    background: var(--cream); flex-direction: column; align-items: flex-start; justify-content: center;
    gap: 24px; padding: 40px; transform: translateX(100%); transition: transform .35s var(--ease);
    box-shadow: -20px 0 50px -20px rgba(0,0,0,.4); z-index: 120; overflow-y: auto;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.15rem; }
  .nav-toggle { display: flex; z-index: 130; }
  /* Hide-on-scroll-down, reveal-on-scroll-up (mobile only; JS toggles .nav-hidden) */
  .navbar.nav-hidden { transform: translateY(-100%); }
  .fab-call { display: grid; }
  .cta-band-inner { flex-direction: column; text-align: center; align-items: center; }
  .cta-band-actions { justify-content: center; width: 100%; }
}

@media (max-width: 560px) {
  .services-grid, .oc-grid, .area-list { grid-template-columns: 1fr; }
  .carousel-slide { height: 290px; max-width: 88vw; }
  .carousel-track { gap: 10px; }
  .carousel-arrow { width: 42px; height: 42px; font-size: 1.5rem; }
  .carousel-prev { left: 4px; }
  .carousel-next { right: 4px; }
  .lightbox-arrow { width: 44px; height: 44px; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .trust-inner { grid-template-columns: 1fr; }
  .process-track { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .btn { width: 100%; justify-content: center; }
  .hero-actions { flex-direction: column; }
}

/* ============================================================
   Drone inspection callout
   ============================================================ */
.inspect {
  background: linear-gradient(135deg, var(--ink), var(--ink-2));
  padding: clamp(48px, 7vw, 84px) 24px; position: relative; overflow: hidden;
}
.inspect::before {
  content: ""; position: absolute; top: -100px; left: -60px; width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(10,141,209,.28), transparent 65%);
}
.inspect-inner {
  max-width: var(--maxw); margin: 0 auto; position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(30px, 5vw, 60px); align-items: center;
}
.inspect-copy .section-title { text-align: left; margin-bottom: 16px; }
.inspect-copy .section-lead { text-align: left; margin: 0 0 22px; }
.inspect-points { list-style: none; display: grid; gap: 14px; }
.inspect-points li { display: flex; align-items: center; gap: 14px; color: rgba(255,255,255,.9); font-weight: 600; }
.inspect-points li span { font-size: 1.3rem; }
.inspect-price {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius); padding: 34px 30px; text-align: center; backdrop-filter: blur(4px);
}
.inspect-amt { font-family: var(--font-display); font-size: clamp(3rem, 8vw, 4.4rem); color: var(--gold); line-height: 1; display: block; }
.inspect-price > p { color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: 2px; font-size: .8rem; margin-top: 6px; }
.inspect-credit { color: var(--white); font-weight: 700; margin: 18px 0 22px; font-size: .98rem; }

/* ============================================================
   Owens Corning — badge + options
   ============================================================ */
.oc-badge {
  display: inline-block; background: rgba(245,178,62,.16); border: 1px solid rgba(245,178,62,.5);
  color: var(--gold-bright); font-weight: 700; font-size: .8rem; letter-spacing: 1px; text-transform: uppercase;
  padding: 8px 16px; border-radius: 999px; margin-bottom: 18px;
}
.oc-options { margin-top: 50px; }
.oc-options-title { text-align: center; color: var(--white); font-family: var(--font-display); text-transform: uppercase; letter-spacing: .5px; font-size: clamp(1.3rem, 3vw, 1.8rem); margin-bottom: 26px; }
.oc-options-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.oc-option {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius); padding: 26px 24px; text-align: center;
}
.oc-option-icon { font-size: 1.9rem; display: block; margin-bottom: 12px; }
.oc-option h4 { color: var(--white); font-size: 1.1rem; margin-bottom: 8px; }
.oc-option p { color: rgba(255,255,255,.78); font-size: .92rem; }

/* ============================================================
   Service area — City of Pittsburgh callout
   ============================================================ */
.area-city {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--cream-2); border-left: 4px solid var(--orange);
  border-radius: var(--radius-sm); padding: 20px 22px; margin: 4px 0 22px;
}
.area-city-icon { font-size: 1.7rem; line-height: 1; }
.area-city strong { display: block; color: var(--ink); font-size: 1.05rem; margin-bottom: 4px; }
.area-city p { color: var(--muted); font-size: .96rem; margin: 0; }

/* ============================================================
   Blog
   ============================================================ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 8px 0 30px; text-align: left; }
.blog-card {
  display: flex; flex-direction: column; background: var(--white);
  border: 1px solid var(--cream-2); border-radius: var(--radius); padding: 28px 26px;
  box-shadow: var(--shadow); transition: transform .3s var(--ease), box-shadow .3s;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-card-cat {
  align-self: flex-start; background: var(--blue); color: var(--white);
  font-size: .68rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px; margin-bottom: 14px;
}
.blog-card h3 { font-size: 1.25rem; color: var(--ink); line-height: 1.25; margin-bottom: 8px; }
.blog-card-date { color: var(--muted); font-size: .85rem; margin-bottom: 12px; }
.blog-card-excerpt { color: var(--text); font-size: .96rem; flex-grow: 1; }
.blog-card-more { color: var(--orange-text); font-weight: 700; margin-top: 16px; font-size: .95rem; }
.blog-meta { color: var(--muted); text-transform: uppercase; letter-spacing: 1.5px; font-size: .78rem; font-weight: 700; margin-bottom: 18px; }
.blog-back { margin-top: 30px; }
.blog-back a { color: var(--orange-text); font-weight: 700; }

@media (max-width: 900px) {
  .inspect-inner { grid-template-columns: 1fr; }
  .oc-options-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .ticker-track { animation: none !important; }
  .hero-kicker, .hero-title .word, .hero-sub, .hero-actions, .hero-trust, .hero-scroll, .hero-mascot,
  .fade-in-up, .slide-in-left, .slide-in-right, .scale-in, .process-step { opacity: 1 !important; transform: none !important; }
  .process-progress { width: 76% !important; }
  html { scroll-behavior: auto; }
}
