/* ============================================================
   EDGE GARAGE DOORS — Homepage  (v2 — intent-router restructure)
   Warm-premium "Fixora" base + industrial Archivo Expanded edge.
   Espresso/steel grounds · cream cards · Edge orange CTA.
   Static. No build step. Fonts via Google Fonts.
   ============================================================ */

:root {
  /* palette */
  --espresso:      #1E0F0C;
  --maroon:        #2C1712;
  --steel:         #20262E;   /* industrial steel — router band */
  --steel-2:       #2B333D;
  --cream:         #F5ECDD;
  --cream-card:    #FBF5EA;
  --cream-2:       #ECE0CB;
  --ink:           #1F1310;
  --ink-soft:      #6A574E;
  --orange:        #ED5A22;   /* bright — decorative accents only */
  --orange-deep:   #C8481A;
  --orange-cta:    #C24618;    /* white text on this passes AA */
  --orange-text:   #A8390F;    /* orange text on light bg passes AA (incl. alt cream) */
  --orange-tint:   #F6C9AE;
  --gold:          #E8A23C;
  --navy:          #22334A;   /* logo brand color — accents */
  --line-dark:     rgba(245,236,221,.14);
  --line-light:    rgba(31,19,16,.10);
  --on-dark:       #F5ECDD;
  --on-dark-soft:  rgba(245,236,221,.70);

  --radius:        22px;
  --radius-sm:     14px;
  --radius-lg:     30px;
  --pill:          999px;
  --shadow:        0 24px 50px -28px rgba(15,5,2,.6);
  --shadow-card:   0 18px 40px -26px rgba(15,5,2,.42);
  --container:     1200px;
  --gutter:        clamp(20px, 5vw, 56px);

  --display:  "Archivo Expanded", "Archivo", system-ui, sans-serif; /* wide industrial */
  --display2: "Archivo", system-ui, sans-serif;
  --body:     "Hanken Grotesque", system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body); background: var(--espresso); color: var(--ink);
  line-height: 1.6; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
h1,h2,h3,h4 { font-family: var(--display); font-weight: 800; line-height: 1.04; letter-spacing: -.02em; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding: clamp(56px, 8vw, 110px) 0; }
.section--cream { background: var(--cream); color: var(--ink); }
.section--alt   { background: var(--cream-2); color: var(--ink); }
.section--dark  { background: var(--espresso); color: var(--on-dark); }
.section--compact { padding: clamp(44px, 5vw, 68px) 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--display2); font-weight: 700;
  font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; color: var(--orange-text);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--orange); }
.eyebrow--ondark { color: var(--orange-tint); }
.eyebrow--ondark::before { background: var(--orange-tint); }

.section-head { max-width: 660px; margin-bottom: clamp(34px, 4vw, 54px); }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); margin-top: 16px; }
.section-head .lead { margin-top: 16px; color: var(--ink-soft); font-size: 1.08rem; }
.section--dark .section-head .lead { color: var(--on-dark-soft); }

/* buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--display2); font-weight: 700; font-size: 1rem;
  padding: 15px 26px; border-radius: var(--pill); border: 2px solid transparent;
  cursor: pointer; transition: transform .18s, background .2s, box-shadow .2s, color .2s; white-space: nowrap;
}
.btn-orange { background: var(--orange-cta); color: #fff; box-shadow: 0 12px 26px -12px var(--orange-deep); }
.btn-orange:hover { background: #A8390F; transform: translateY(-2px); }
.btn-ghost-dark { border-color: var(--line-dark); color: var(--on-dark); }
.btn-ghost-dark:hover { background: rgba(245,236,221,.08); transform: translateY(-2px); }
.btn-outline { border-color: var(--ink); color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--cream); transform: translateY(-2px); }
.link-arrow { font-family: var(--display2); font-weight: 700; color: var(--orange-text); display: inline-flex; gap: 7px; align-items: center; }
.link-arrow:hover { gap: 12px; }
.stars { color: var(--gold); letter-spacing: 2px; }

/* ===================== HEADER ===================== */
.header {
  position: sticky; top: 0; z-index: 60; background: #fff;
  border-bottom: 1px solid rgba(34,51,74,.12); box-shadow: 0 6px 20px -16px rgba(15,5,2,.4);
}
.header .container { display: flex; align-items: center; gap: 28px; min-height: 78px; }
.brand { display: flex; align-items: center; margin-right: auto; }
.brand img { height: 46px; width: auto; }
.nav { display: flex; gap: 26px; }
.nav a { font-family: var(--display2); color: #2A3B52; font-weight: 600; font-size: .95rem; transition: color .2s; }
.nav a:hover { color: var(--orange-text); }
.header-right { display: flex; align-items: center; gap: 18px; }
.header-phone { font-family: var(--display2); color: var(--navy); font-weight: 700; }
.header-phone:hover { color: var(--orange-text); }

.callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70; display: none;
  align-items: center; justify-content: center; gap: 8px;
  background: var(--orange-cta); color: #fff; font-family: var(--display2); font-weight: 800;
  padding: 15px; box-shadow: 0 -8px 24px -10px rgba(15,5,2,.5);
}

/* ===================== HERO ===================== */
.hero { position: relative; background: var(--maroon); color: var(--on-dark); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 90% at 88% 8%, rgba(237,90,34,.22), transparent 55%); pointer-events: none;
}
.hero .container {
  position: relative; display: grid; grid-template-columns: 1.08fr .92fr;
  gap: clamp(32px, 5vw, 70px); align-items: center;
  padding-top: clamp(54px, 7vw, 96px); padding-bottom: clamp(84px, 11vw, 156px);
}
.hero-eyebrow { color: var(--orange-tint); }
.hero h1 {
  font-family: var(--display); font-weight: 900;
  font-size: clamp(2.5rem, 5.6vw, 4.5rem); margin: 18px 0 0; letter-spacing: -.03em; text-transform: none;
}
.hero h1 em { font-style: normal; color: var(--orange); }
.hero .sub { margin-top: 22px; max-width: 32em; color: var(--on-dark-soft); font-size: 1.12rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-trust { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 16px; margin-top: 28px; font-size: .92rem; color: var(--on-dark-soft); }
.hero-trust .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--on-dark-soft); }
.hero-media { position: relative; }
.hero-media .photo { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/5; border: 1px solid var(--line-dark); }
.hero-media .photo img { width: 100%; height: 100%; object-fit: cover; }
.rating-badge {
  position: absolute; left: -22px; bottom: 30px; background: var(--cream-card); color: var(--ink);
  border-radius: var(--radius); padding: 16px 20px; box-shadow: var(--shadow); display: flex; align-items: center; gap: 14px;
}
.rating-badge .num { font-family: var(--display); font-weight: 900; font-size: 2rem; line-height: 1; }
.rating-badge .meta { font-size: .8rem; color: var(--ink-soft); }
.rating-badge .meta .stars { font-size: .85rem; }

/* ===================== INTENT ROUTER ===================== */
.router { position: relative; z-index: 5; background: transparent; }
.router .container { transform: translateY(-56px); margin-bottom: -36px; }
.router-head { text-align: center; margin-bottom: 22px; }
.router-head h2 { font-family: var(--display); color: var(--on-dark); font-size: clamp(1.4rem,2.6vw,2rem); }
.router-head p { color: var(--on-dark-soft); margin-top: 6px; font-weight: 600; }
.router-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.router-card {
  position: relative; display: flex; flex-direction: column; gap: 12px;
  background: var(--cream-card); border: 1px solid var(--line-light); border-radius: var(--radius);
  padding: 26px 24px 22px; box-shadow: var(--shadow); overflow: hidden;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.router-card::after {
  content: ""; position: absolute; left: 0; top: 0; height: 4px; width: 100%;
  background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform .25s;
}
.router-card:hover { transform: translateY(-6px); box-shadow: 0 30px 54px -26px rgba(15,5,2,.5); border-color: rgba(237,90,34,.4); }
.router-card:hover::after { transform: scaleX(1); }
.router-ico {
  width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(150deg, #2C1712, #20262E); color: var(--orange-tint);
}
.router-ico svg { width: 28px; height: 28px; stroke: currentColor; fill: none; stroke-width: 2; }
.router-card h3 { font-family: var(--display2); font-weight: 800; font-size: 1.18rem; letter-spacing: -.01em; }
.router-card p { color: var(--ink-soft); font-size: .92rem; flex: 1; }
.router-card .go { display: inline-flex; align-items: center; gap: 7px; font-family: var(--display2); font-weight: 700; color: var(--orange-text); font-size: .92rem; }
.router-card:hover .go { gap: 12px; }

/* ===================== TRUST STRIP ===================== */
.trust-strip { background: var(--espresso); color: var(--on-dark); border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.trust-strip ul { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 30px; padding: 20px 0; font-weight: 600; font-size: .94rem; }
.trust-strip li { display: flex; align-items: center; gap: 10px; color: var(--on-dark-soft); }
.trust-strip li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }
.trust-strip li.is-rating { color: var(--on-dark); }

/* ===================== SOLUTION PANELS ===================== */
.panel { scroll-margin-top: 92px; }
.panel .container { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px,5vw,64px); align-items: center; }
.panel--flip .panel-media { order: 2; }
.panel-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/3; border: 1px solid var(--line-light); }
.panel-media img { width: 100%; height: 100%; object-fit: cover; }
.section--dark .panel-media { border-color: var(--line-dark); }
.panel-tag {
  position: absolute; top: 16px; left: 16px; background: var(--orange-cta); color: #fff;
  font-family: var(--display2); font-weight: 700; font-size: .78rem; letter-spacing: .04em;
  padding: 7px 14px; border-radius: var(--pill);
}
.panel h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); margin-top: 14px; }
.panel .panel-lead { margin-top: 16px; font-size: 1.06rem; }
.section--cream .panel .panel-lead, .section--alt .panel .panel-lead { color: var(--ink-soft); }
.section--dark .panel .panel-lead { color: var(--on-dark-soft); }
.panel-list { margin-top: 22px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 22px; }
.panel-list li { display: flex; align-items: flex-start; gap: 10px; font-size: .98rem; font-weight: 500; }
.panel-list li::before {
  content: ""; flex: none; margin-top: 4px; width: 16px; height: 16px; border-radius: 50%;
  background: var(--orange); -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/14px no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/14px no-repeat;
}
.panel-cta { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.panel-note { margin-top: 14px; font-size: .9rem; color: var(--ink-soft); }
.section--dark .panel-note { color: var(--on-dark-soft); }

/* ===================== WHY CHOOSE ===================== */
.why .container { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(30px,5vw,64px); align-items: center; }
.why-reasons { display: flex; flex-direction: column; gap: 24px; }
.why-reason { padding-left: 22px; border-left: 3px solid var(--orange); }
.why-reason h3 { font-family: var(--display2); font-weight: 800; font-size: 1.28rem; color: var(--on-dark); }
.why-reason p { margin-top: 8px; color: var(--on-dark-soft); }
.why-photo { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/3; border: 1px solid var(--line-dark); }
.why-photo img { width: 100%; height: 100%; object-fit: cover; }

/* ===================== CONVERSION (before/after) ===================== */
.conversion-intro { max-width: 60ch; color: var(--ink-soft); font-size: 1.06rem; margin-bottom: 30px; }
.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.ba-item { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-card); aspect-ratio: 4/3; border: 1px solid var(--line-light); }
.ba-item img { width: 100%; height: 100%; object-fit: cover; }
.ba-label { position: absolute; top: 16px; left: 16px; background: rgba(30,15,12,.82); color: var(--on-dark); backdrop-filter: blur(6px); font-family: var(--display2); font-weight: 700; font-size: .82rem; padding: 8px 14px; border-radius: var(--pill); }
.ba-label--after { background: var(--orange-cta); color: #fff; }
.conversion-cta { margin-top: 30px; display: flex; flex-wrap: wrap; align-items: center; gap: 10px 22px; padding: 22px 26px; background: var(--cream-2); border-radius: var(--radius); }
.conversion-cta .phone { font-family: var(--display); font-weight: 900; font-size: 1.6rem; color: var(--ink); }
.conversion-cta .phone:hover { color: var(--orange); }
.conversion-cta .note { color: var(--ink-soft); }
.conversion-caption { margin-top: 14px; color: var(--ink-soft); font-size: .9rem; font-style: italic; }

/* ===================== STATS / ABOUT ===================== */
.about .container { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px,5vw,64px); align-items: center; }
.about-text p { margin-top: 18px; color: var(--ink-soft); font-size: 1.06rem; }
.about-text .btn { margin-top: 26px; }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat { background: var(--cream-card); border-radius: var(--radius); padding: 28px 24px; border-top: 4px solid var(--orange); box-shadow: var(--shadow-card); }
.stat .num { font-family: var(--display); font-weight: 900; font-size: 2.4rem; line-height: 1; color: var(--ink); }
.stat .label { margin-top: 8px; color: var(--ink-soft); font-size: .92rem; font-weight: 600; }

/* ===================== REVIEWS ===================== */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review-card { background: var(--cream-card); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-card); display: flex; flex-direction: column; gap: 14px; border: 1px solid var(--line-light); }
.review-card blockquote { font-size: 1.04rem; color: var(--ink); line-height: 1.55; }
.review-card cite { font-style: normal; font-family: var(--display2); font-weight: 700; color: var(--ink); }
.review-card cite small { display: block; font-family: var(--body); font-weight: 500; color: var(--ink-soft); font-size: .82rem; margin-top: 2px; }
.reviews-foot { margin-top: 28px; text-align: center; }

/* ===================== AREAS ===================== */
.areas-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 12px; }
.area-cell { background: var(--cream-card); border: 1px solid var(--line-light); border-radius: var(--radius-sm); padding: 16px 12px; text-align: center; font-weight: 600; font-size: .96rem; color: var(--ink); transition: background .2s, color .2s, transform .2s; }
.area-cell:hover { background: var(--orange-cta); color: #fff; transform: translateY(-3px); }

/* ===================== FAQ ===================== */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 860px; }
.faq-item { background: var(--cream-card); border: 1px solid var(--line-light); border-radius: var(--radius-sm); overflow: hidden; }
.faq-item summary { list-style: none; cursor: pointer; padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-family: var(--display2); font-weight: 800; font-size: 1.08rem; color: var(--ink); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .icon { position: relative; width: 18px; height: 18px; flex: none; }
.faq-item .icon::before, .faq-item .icon::after { content: ""; position: absolute; background: var(--orange); border-radius: 2px; transition: transform .25s; }
.faq-item .icon::before { top: 8px; left: 0; width: 18px; height: 2px; }
.faq-item .icon::after { top: 0; left: 8px; width: 2px; height: 18px; }
.faq-item[open] .icon::after { transform: scaleY(0); }
.faq-item .answer { padding: 0 24px 22px; color: var(--ink-soft); }
.faq-item .answer a { color: var(--orange-text); font-weight: 700; }

/* ===================== FINAL CTA ===================== */
.final-cta { background: var(--orange-cta); color: #fff; scroll-margin-top: 80px; }
.final-cta .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 26px; padding: clamp(44px,6vw,72px) var(--gutter); }
.final-cta h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); color: #fff; }
.final-cta p { margin-top: 12px; color: #fff; max-width: 42ch; }
.final-cta-actions { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.final-cta .phone { font-family: var(--display); font-weight: 900; font-size: 2rem; color: #fff; background: rgba(0,0,0,.18); padding: 14px 28px; border-radius: var(--pill); }
.final-cta .phone:hover { background: rgba(0,0,0,.3); }
.final-cta .est { color: #fff; font-family: var(--display2); font-weight: 700; }

/* ===================== FOOTER ===================== */
.footer { background: var(--espresso); color: var(--on-dark); padding: clamp(48px,6vw,76px) 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; }
.footer .brand { display: block; }
.footer .brand img { height: 40px; margin-bottom: 14px; background: #fff; padding: 8px 10px; border-radius: 10px; }
.footer-name { font-family: var(--display2); font-weight: 700; font-size: 1.1rem; }
.footer address { font-style: normal; margin-top: 10px; color: var(--on-dark-soft); line-height: 1.8; }
.footer address a:hover { color: var(--orange-tint); }
.footer-col h4 { font-family: var(--display2); font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--orange-tint); margin-bottom: 14px; }
.footer-col li { margin-bottom: 9px; }
.footer-col a { color: var(--on-dark-soft); }
.footer-col a:hover { color: var(--on-dark); }
.footer-bottom { margin-top: 48px; border-top: 1px solid var(--line-dark); padding: 22px 0; color: var(--on-dark-soft); font-size: .86rem; text-align: center; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .router-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .nav, .header-phone { display: none; }
  .hero .container { grid-template-columns: 1fr; padding-bottom: clamp(90px,16vw,130px); }
  .hero-media { order: -1; max-width: 440px; }
  .rating-badge { left: auto; right: 18px; }
  .router .container { transform: translateY(-40px); }
  .panel .container, .why .container, .about .container { grid-template-columns: 1fr; }
  .panel--flip .panel-media { order: -1; }
  .reviews-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  body { padding-bottom: 56px; }
  .callbar { display: flex; }
  .router-grid { grid-template-columns: 1fr; }
  .ba-grid { grid-template-columns: 1fr; }
  .panel-list { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .final-cta .container { flex-direction: column; align-items: flex-start; }
}
/* ============================================================
   HOMEPAGE v3 — hero pills, service image cards, by-numbers band
   ============================================================ */
.hero-pills { margin-top: 28px; }
.hero-pills .label { display: block; font-family: var(--display2); font-weight: 700; font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; color: var(--orange-tint); margin-bottom: 13px; }
.hero-pills .wrap { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-pill { display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px; border-radius: var(--pill); border: 1px solid rgba(245,236,221,.24); color: var(--on-dark); font-family: var(--display2); font-weight: 600; font-size: .92rem; transition: border-color .18s, background .18s, transform .18s, color .18s; }
.hero-pill:hover { border-color: var(--orange); background: rgba(237,90,34,.14); transform: translateY(-2px); color: #fff; }
.hero-pill svg { width: 15px; height: 15px; stroke: var(--orange-tint); fill: none; stroke-width: 2; flex: none; }
.hero-pill:hover svg { stroke: #fff; }

.home-services-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.hsvc { display: flex; flex-direction: column; background: var(--cream-card); border: 1px solid var(--line-light); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-card); transition: transform .2s, box-shadow .2s; }
.hsvc:hover { transform: translateY(-6px); box-shadow: 0 28px 50px -26px rgba(15,5,2,.45); }
.hsvc .ph { aspect-ratio: 4/3; overflow: hidden; position: relative; }
.hsvc .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.hsvc:hover .ph img { transform: scale(1.06); }
.hsvc .ph .tag { position: absolute; top: 12px; left: 12px; background: rgba(30,15,12,.82); color: #fff; backdrop-filter: blur(6px); font-family: var(--display2); font-weight: 700; font-size: .72rem; letter-spacing: .03em; padding: 6px 11px; border-radius: var(--pill); display: inline-flex; align-items: center; gap: 6px; }
.hsvc .ph .tag svg { width: 13px; height: 13px; stroke: var(--orange-tint); fill: none; stroke-width: 2; }
.hsvc .bd { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.hsvc h3 { font-family: var(--display2); font-weight: 800; font-size: 1.08rem; }
.hsvc p { color: var(--ink-soft); font-size: .9rem; flex: 1; }
.hsvc .go { font-family: var(--display2); font-weight: 700; color: var(--orange-text); font-size: .9rem; display: inline-flex; gap: 6px; align-items: center; }
.hsvc:hover .go { gap: 11px; }
@media (max-width: 1100px){ .home-services-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 680px){ .home-services-grid { grid-template-columns: 1fr; } }

.bynumbers { position: relative; color: var(--on-dark); overflow: hidden; background: var(--espresso); }
.bynumbers-bg { position: absolute; inset: 0; }
.bynumbers-bg img { width: 100%; height: 100%; object-fit: cover; }
.bynumbers-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,9,6,.85), rgba(20,9,6,.93)); }
.bynumbers .container { position: relative; padding-top: clamp(54px,7vw,92px); padding-bottom: clamp(54px,7vw,92px); }
.bynumbers .section-head h2 { color: var(--on-dark); }
.bynumbers .section-head .lead { color: var(--on-dark-soft); }
.bynumbers-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 30px; }
.bynum { background: rgba(245,236,221,.06); border: 1px solid var(--line-dark); border-top: 4px solid var(--orange); border-radius: var(--radius); padding: 28px 22px; text-align: center; }
.bynum .n { font-family: var(--display); font-weight: 900; font-size: 2.5rem; line-height: 1; color: #fff; }
.bynum .l { margin-top: 8px; color: var(--on-dark-soft); font-weight: 600; font-size: .92rem; }
.bynumbers .bn-cta { position: relative; margin-top: 32px; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
@media (max-width: 640px){ .bynumbers-grid { grid-template-columns: 1fr 1fr; } }

/* ---- homepage hero as bg image ---- */
.hero { position: relative; overflow: hidden; background: var(--maroon); color: var(--on-dark); }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(20,9,6,.93), rgba(20,9,6,.74) 48%, rgba(20,9,6,.42)); }
.hero .container { position: relative; display: block; padding-top: clamp(60px,8vw,118px); padding-bottom: clamp(60px,8vw,118px); }
.hero-text { max-width: 640px; }

/* ---- intent band (centered, highlight bg, pop pills) ---- */
.intent-band { background: var(--cream-2); border-bottom: 1px solid var(--line-light); }
.intent-band .container { padding-top: clamp(28px,4vw,46px); padding-bottom: clamp(28px,4vw,46px); text-align: center; }
.intent-band h2 { font-family: var(--display); font-weight: 900; font-size: clamp(1.3rem,2.6vw,1.9rem); color: var(--ink); }
.intent-band .sub { margin-top: 6px; color: var(--ink-soft); font-weight: 600; }
.intent-pills { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.intent-pill { display: inline-flex; align-items: center; gap: 9px; padding: 13px 24px; border-radius: var(--pill); background: #fff; border: 2px solid var(--line-light); color: var(--ink); font-family: var(--display2); font-weight: 700; font-size: 1rem; box-shadow: 0 8px 18px -10px rgba(20,8,4,.3); transition: transform .16s, box-shadow .2s, border-color .2s, background .2s; }
.intent-pill:hover, .intent-pill:focus-visible { transform: translateY(-4px) scale(1.05); box-shadow: 0 16px 30px -10px rgba(232,91,38,.55); border-color: var(--orange); background: #FFF3EC; outline: none; }
.intent-pill svg { width: 18px; height: 18px; stroke: var(--orange); fill: none; stroke-width: 2; }
@media (max-width: 640px){ .intent-pills { flex-direction: column; gap: 10px; } .intent-pill { justify-content: center; } }

/* ---- white section + google reviews badge ---- */
.section--white { background: #fff; color: var(--ink); }
.rev-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: clamp(28px,4vw,44px); }
.rev-head .section-head { margin-bottom: 0; }
.greviews { display: inline-flex; align-items: center; gap: 11px; background: #fff; border: 1px solid var(--line-light); border-radius: var(--radius); padding: 11px 17px; box-shadow: var(--shadow-card); color: var(--ink); transition: transform .18s, box-shadow .2s; white-space: nowrap; }
.greviews:hover { transform: translateY(-2px); box-shadow: 0 18px 34px -18px rgba(20,8,4,.4); }
.greviews .g { flex: none; }
.greviews .gr-txt b { font-family: var(--display); font-weight: 900; font-size: 1.25rem; line-height: 1; }
.greviews .gr-txt .stars { color: var(--gold); font-size: .82rem; margin-left: 4px; }
.greviews .gr-txt small { display: block; color: var(--ink-soft); font-size: .76rem; font-weight: 600; margin-top: 2px; }

/* ---- thin review marquee strips ---- */
.rstrip { overflow: hidden; -webkit-mask: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.rstrip-track { display: flex; gap: 16px; width: max-content; animation: rmarquee 70s linear infinite; }
.rstrip:hover .rstrip-track { animation-play-state: paused; }
.rstrip--rev .rstrip-track { animation-direction: reverse; }
.rcard { flex: none; width: 330px; background: var(--cream-card); border: 1px solid var(--line-light); border-radius: var(--radius); padding: 18px 20px; box-shadow: var(--shadow-card); }
.rcard .stars { font-size: .85rem; }
.rcard blockquote { font-size: .92rem; color: var(--ink); margin-top: 8px; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }
.rcard cite { display: block; margin-top: 10px; font-family: var(--display2); font-weight: 700; font-size: .85rem; color: var(--ink); font-style: normal; }
.rcard cite small { font-weight: 500; color: var(--ink-soft); }
@keyframes rmarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce){ .rstrip-track { animation: none; flex-wrap: wrap; width: auto; } }

/* ---- why-choose bg band ---- */
.why { position: relative; overflow: hidden; }
.why-bg { position: absolute; inset: 0; }
.why-bg img { width: 100%; height: 100%; object-fit: cover; }
.why-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(20,9,6,.95), rgba(20,9,6,.84) 58%, rgba(20,9,6,.62)); }
.why .container { position: relative; display: block; }
.why-reasons { max-width: 680px; }

/* ---- before/after schematic diagram ---- */
.diagram { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(18px,3vw,30px); margin-top: 8px; }
.dg { background: var(--cream-card); border: 1px solid var(--line-light); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-card); }
.dg .dg-label { font-family: var(--display2); font-weight: 800; font-size: .92rem; color: var(--ink); margin-bottom: 14px; display: flex; align-items: center; gap: 9px; }
.dg .dg-label .dot { width: 9px; height: 9px; border-radius: 50%; }
.dg--before .dot { background: #B0210F; }
.dg--after .dot { background: #0E7C3A; }
.dg-vis { display: flex; gap: 6px; align-items: stretch; height: 92px; }
.dg-door { flex: 1; background: repeating-linear-gradient(180deg,#d3c5ad,#d3c5ad 9px,#c6b79a 9px,#c6b79a 11px); border: 2px solid var(--ink); border-radius: 6px; display: grid; place-items: center; font-family: var(--display2); font-weight: 700; font-size: .8rem; color: var(--ink); }
.dg-post { width: 22px; background: var(--orange-cta); border-radius: 4px; display: grid; place-items: center; color: #fff; font-size: .58rem; writing-mode: vertical-rl; font-weight: 800; letter-spacing: .05em; }
.dg-wide { flex: 1; background: repeating-linear-gradient(180deg,#e7d9c1,#e7d9c1 9px,#dccdb0 9px,#dccdb0 11px); border: 2px solid #0E7C3A; border-radius: 6px; display: grid; place-items: center; font-family: var(--display2); font-weight: 800; font-size: .9rem; color: var(--ink); }
.dg-cap { margin-top: 12px; font-size: .86rem; color: var(--ink-soft); }
@media (max-width: 640px){ .diagram { grid-template-columns: 1fr; } }

/* ---- checklist ---- */
.checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 26px; max-width: 900px; }
.checklist li { display: flex; gap: 11px; align-items: flex-start; font-size: 1rem; }
.checklist li::before { content: ""; flex: none; margin-top: 3px; width: 20px; height: 20px; border-radius: 50%; background: #0E7C3A;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/15px no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/15px no-repeat; }
@media (max-width: 640px){ .checklist { grid-template-columns: 1fr; } }

/* ---- fit calculator verdict ---- */
.fit-verdict { font-family: var(--display); font-weight: 900; font-size: clamp(1.5rem,3vw,2.1rem); line-height: 1.05; color: #fff; }
.fit-verdict.tight { color: #FF7A4D; }
.fit-verdict.ok { color: #F0B450; }
.fit-verdict.good { color: #6BE58A; }
.fit-sub { margin-top: 8px; color: var(--on-dark-soft); font-size: .92rem; }
.fit-rec { margin-top: 14px; color: var(--on-dark); font-weight: 600; }

/* ---- conversion process sketch + estimator ---- */
.cv-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 32px; }
.cv-step { position: relative; background: var(--cream-card); border: 1px solid var(--line-light); border-radius: var(--radius); padding: 24px 22px; opacity: 0; transform: translateY(18px); }
.cv-step.in { animation: cvin .55s cubic-bezier(.2,.7,.3,1) forwards; }
.cv-step:nth-child(1).in { animation-delay: .05s; }
.cv-step:nth-child(2).in { animation-delay: .2s; }
.cv-step:nth-child(3).in { animation-delay: .35s; }
.cv-step:nth-child(4).in { animation-delay: .5s; }
@keyframes cvin { to { opacity: 1; transform: none; } }
.cv-step .ico { width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; background: linear-gradient(150deg,#2C1712,#20262E); color: var(--orange-tint); margin-bottom: 14px; }
.cv-step .ico svg { width: 28px; height: 28px; stroke: currentColor; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.cv-step .n { position: absolute; top: 14px; right: 18px; font-family: var(--display); font-weight: 900; font-size: 1.7rem; color: rgba(31,19,16,.12); }
.cv-step h3 { font-family: var(--display2); font-weight: 800; font-size: 1.04rem; }
.cv-step p { margin-top: 6px; color: var(--ink-soft); font-size: .9rem; }
@media (max-width: 900px){ .cv-steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .cv-steps { grid-template-columns: 1fr; } }

.cv-est { margin-top: 36px; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(22px,3vw,44px); background: linear-gradient(150deg, var(--maroon), var(--steel)); border-radius: var(--radius-lg); padding: clamp(26px,4vw,44px); color: var(--on-dark); box-shadow: var(--shadow); }
.cv-est h3 { font-family: var(--display); font-weight: 900; font-size: clamp(1.3rem,2.4vw,1.8rem); color: var(--on-dark); }
.cv-est .cv-intro { color: var(--on-dark-soft); margin: 8px 0 18px; font-size: .96rem; }
.cv-field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 15px; }
.cv-field label { font-family: var(--display2); font-weight: 700; font-size: .88rem; color: var(--on-dark); }
.cv-field select { padding: 13px 14px; border-radius: var(--radius-sm); border: 2px solid var(--line-dark); background: rgba(255,255,255,.07); color: var(--on-dark); font-family: var(--body); font-size: 1rem; }
.cv-field select:focus { outline: none; border-color: var(--orange); }
.cv-field select option { color: #1A1110; }
.cv-result { background: rgba(245,236,221,.07); border: 1px solid var(--line-dark); border-radius: var(--radius); padding: 28px 26px; display: flex; flex-direction: column; justify-content: center; }
.cv-result .badge0 { align-self: flex-start; margin-bottom: 14px; }
.cv-result .mo { font-family: var(--display); font-weight: 900; font-size: clamp(2.4rem,5vw,3.2rem); color: #fff; line-height: 1; }
.cv-result .mo span { font-family: var(--body); font-weight: 600; font-size: 1rem; color: var(--on-dark-soft); }
.cv-result .moNote { margin-top: 8px; color: var(--on-dark-soft); font-size: .9rem; }
.cv-result .one { margin-top: 14px; color: var(--on-dark); font-weight: 700; }
.cv-result .one b { font-family: var(--display2); }
.cv-result .one span { display: block; font-weight: 500; color: var(--on-dark-soft); font-size: .82rem; margin-top: 2px; }
.cv-result .cv-cta { margin-top: 22px; }
.cv-result .disc { margin-top: 14px; font-size: .76rem; color: var(--on-dark-soft); line-height: 1.5; }
@media (max-width: 820px){ .cv-est { grid-template-columns: 1fr; } }

/* ============================================================
   FINANCING BANNER (site-wide strip, under header)
   ============================================================ */
.finbar { background: linear-gradient(90deg, var(--steel), var(--maroon)); color: var(--on-dark); border-bottom: 1px solid var(--line-dark); }
.finbar .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 8px 16px; padding: 11px var(--gutter); text-align: center; }
.finbar .ico { color: var(--orange-tint); display: inline-flex; }
.finbar .ico svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; vertical-align: middle; }
.finbar b { font-family: var(--display2); font-weight: 800; }
.finbar span { color: var(--on-dark-soft); }
.finbar a { color: var(--orange-tint); font-family: var(--display2); font-weight: 700; white-space: nowrap; }
.finbar a:hover { color: #fff; }
@media (max-width: 520px){ .finbar .hide-sm { display:none; } }

/* ============================================================
   FINANCING — bg band, calculator, unique apply button
   ============================================================ */
.finband { position: relative; color: var(--on-dark); overflow: hidden; background: var(--maroon); }
.finband-bg { position: absolute; inset: 0; }
.finband-bg img { width: 100%; height: 100%; object-fit: cover; }
.finband-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(20,9,6,.95), rgba(20,9,6,.78) 52%, rgba(20,9,6,.5)); }
.finband .container { position: relative; padding-top: clamp(48px,6vw,84px); padding-bottom: clamp(48px,6vw,84px); }
.finband-inner { max-width: 680px; }
.finband h2 { font-family: var(--display); font-weight: 900; font-size: clamp(1.7rem,3.4vw,2.6rem); margin-top: 14px; }
.finband .lead { margin-top: 16px; color: var(--on-dark-soft); font-size: 1.06rem; max-width: 54ch; }
.finband .leadblock-grid { margin-top: 24px; }
.finband .panel-cta { margin-top: 26px; }

/* unique apply button */
.btn-finance { display: inline-flex; align-items: center; gap: 11px; font-family: var(--display2); font-weight: 800; font-size: 1.02rem;
  padding: 16px 30px; border-radius: var(--pill); color: #fff; background: linear-gradient(135deg, #ED5A22, #C8481A);
  box-shadow: 0 14px 30px -12px rgba(200,72,26,.7); border: none; cursor: pointer; transition: transform .18s, box-shadow .2s; white-space: nowrap; }
.btn-finance:hover { transform: translateY(-2px); box-shadow: 0 18px 38px -12px rgba(200,72,26,.85); }
.btn-finance .pulse { width: 9px; height: 9px; border-radius: 50%; background: #6BE58A; animation: fpulse 1.8s infinite; }
@keyframes fpulse { 0% { box-shadow: 0 0 0 0 rgba(107,229,138,.6);} 70% { box-shadow: 0 0 0 9px rgba(107,229,138,0);} 100% { box-shadow: 0 0 0 0 rgba(107,229,138,0);} }

/* calculator + reasons */
.calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,4vw,56px); align-items: start; }
.calc-reasons h3.calc-h { font-family: var(--display); font-weight: 900; font-size: clamp(1.4rem,2.4vw,1.9rem); margin-bottom: 18px; }
.reason-list { display: flex; flex-direction: column; gap: 16px; }
.reason { display: flex; gap: 14px; align-items: flex-start; }
.reason .rn { flex: none; width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; background: var(--orange-cta); color: #fff; font-family: var(--display); font-weight: 900; font-size: .95rem; }
.reason h4 { font-family: var(--display2); font-weight: 800; font-size: 1.06rem; }
.reason p { color: var(--ink-soft); font-size: .95rem; margin-top: 2px; }
.calc-cta { margin-top: 26px; }
.calc-widget { position: sticky; top: 96px; margin: 0 auto; width: 100%; max-width: 460px; background: var(--cream-card); border: 1px solid var(--line-light); border-radius: var(--radius); box-shadow: var(--shadow-card); padding: 14px; }
.calc-widget iframe { width: 100%; min-height: 540px; border: 0; display: block; border-radius: var(--radius-sm); }
@media (max-width: 900px){ .calc-grid { grid-template-columns: 1fr; } .calc-widget { position: static; max-width: 100%; } }

/* 0% APR highlight */
.badge0 { display: inline-flex; align-items: center; gap: 8px; background: #0E7C3A; color: #fff;
  font-family: var(--display2); font-weight: 800; font-size: .82rem; letter-spacing: .03em;
  padding: 7px 15px; border-radius: var(--pill); box-shadow: 0 8px 20px -10px rgba(14,124,58,.7); }
.badge0::before { content: "%"; display: grid; place-items: center; width: 18px; height: 18px; border-radius: 50%; background: #fff; color: #0E7C3A; font-size: .72rem; font-weight: 900; }
.zero-callout { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 18px; background: linear-gradient(135deg, #0E7C3A, #0B5E2C);
  color: #fff; border-radius: var(--radius); padding: 18px 22px; box-shadow: var(--shadow-card); }
.zero-callout .zc-big { font-family: var(--display); font-weight: 900; font-size: 1.5rem; line-height: 1; }
.zero-callout .zc-txt { font-weight: 600; flex: 1; min-width: 220px; }
.zero-callout .zc-txt small { display: block; font-weight: 500; opacity: .85; font-size: .82rem; margin-top: 3px; }

/* ============================================================
   SERVICE PAGES
   ============================================================ */
/* breadcrumb */
.crumb { background: var(--espresso); color: var(--on-dark-soft); }
.crumb .container { padding-top: 14px; padding-bottom: 14px; font-size: .86rem; }
.crumb a { color: var(--on-dark-soft); }
.crumb a:hover { color: var(--orange-tint); }
.crumb span { color: var(--orange-tint); }

/* full-bleed service hero */
.svc-hero { position: relative; color: var(--on-dark); overflow: hidden; background: var(--maroon); }
.svc-hero-bg { position: absolute; inset: 0; }
.svc-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.svc-hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(20,9,6,.92) 0%, rgba(20,9,6,.78) 45%, rgba(20,9,6,.45) 100%); }
.svc-hero .container { position: relative; padding-top: clamp(56px,8vw,104px); padding-bottom: clamp(56px,8vw,104px); }
.svc-hero-inner { max-width: 660px; }
.svc-hero h1 { font-family: var(--display); font-weight: 900; font-size: clamp(2.2rem,5vw,3.8rem); margin-top: 16px; }
.svc-hero .sub { margin-top: 18px; color: var(--on-dark-soft); font-size: 1.12rem; max-width: 40em; }
.svc-hero-ctas { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 14px; }
.svc-hero-trust { margin-top: 26px; display: flex; flex-wrap: wrap; align-items: center; gap: 8px 16px; font-size: .92rem; color: var(--on-dark-soft); }
.svc-hero-trust .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--on-dark-soft); }

/* value strip (icon row) */
.valuestrip { background: var(--cream); color: var(--ink); border-bottom: 1px solid var(--line-light); }
.valuestrip ul { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; padding: 26px 0; }
.valuestrip li { display: flex; align-items: center; gap: 12px; font-weight: 600; font-size: .96rem; }
.valuestrip .vi { width: 40px; height: 40px; border-radius: 11px; flex: none; display: grid; place-items: center; background: linear-gradient(150deg,#2C1712,#20262E); color: var(--orange-tint); }
.valuestrip .vi svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; }

/* lead block — free estimate */
.leadblock { background: var(--cream); }
.leadblock .wrap { background: linear-gradient(150deg, var(--maroon), var(--steel)); color: var(--on-dark); border-radius: var(--radius-lg); padding: clamp(28px,4vw,48px); box-shadow: var(--shadow); }
.leadblock h2 { color: var(--on-dark); font-size: clamp(1.6rem,3vw,2.3rem); }
.leadblock .lead { color: var(--on-dark-soft); margin-top: 12px; max-width: 54ch; }
.leadblock-grid { margin-top: 26px; display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.leadblock-grid li { display: flex; gap: 12px; align-items: flex-start; color: var(--on-dark-soft); font-size: .96rem; }
.leadblock-grid li b { color: var(--on-dark); display: block; font-family: var(--display2); font-weight: 700; margin-bottom: 2px; }
.leadblock .panel-cta { margin-top: 28px; }

/* option cards (expandable) */
.opts { display: grid; gap: 16px; }
.opt { background: var(--cream-card); border: 1px solid var(--line-light); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-card); }
.opt summary { list-style: none; cursor: pointer; display: grid; grid-template-columns: auto 1fr auto; gap: 18px; align-items: center; padding: 22px 24px; }
.opt summary::-webkit-details-marker { display: none; }
.opt .oi { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: linear-gradient(150deg,#2C1712,#20262E); color: var(--orange-tint); }
.opt .oi svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 2; }
.opt summary h3 { font-family: var(--display2); font-weight: 800; font-size: 1.2rem; }
.opt summary h3 small { display: block; font-family: var(--body); font-weight: 500; font-size: .86rem; color: var(--ink-soft); margin-top: 2px; }
.opt .chev { position: relative; width: 16px; height: 16px; }
.opt .chev::before, .opt .chev::after { content: ""; position: absolute; background: var(--orange); border-radius: 2px; transition: transform .25s; }
.opt .chev::before { top: 7px; left: 0; width: 16px; height: 2px; }
.opt .chev::after { top: 0; left: 7px; width: 2px; height: 16px; }
.opt[open] .chev::after { transform: scaleY(0); }
.opt .opt-body { padding: 0 24px 24px; }
.opt .opt-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 22px; margin-bottom: 18px; }
.opt .opt-list li { display: flex; gap: 10px; align-items: flex-start; font-size: .98rem; }
.opt .opt-list li::before { content: ""; flex: none; margin-top: 4px; width: 16px; height: 16px; border-radius: 50%; background: var(--orange);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/14px no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/14px no-repeat; }
.opt .opt-cta { display: flex; flex-wrap: wrap; gap: 12px; }

/* warning signs / info grid */
.info-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.info-card { background: var(--cream-card); border: 1px solid var(--line-light); border-radius: var(--radius); padding: 26px 24px; box-shadow: var(--shadow-card); }
.section--dark .info-card { background: var(--maroon-2, #3A2019); border-color: var(--line-dark); color: var(--on-dark); }
.info-card .ic { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: var(--orange-cta); color: #fff; margin-bottom: 14px; }
.info-card .ic svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 2; }
.info-card h3 { font-family: var(--display2); font-weight: 800; font-size: 1.14rem; }
.info-card p { margin-top: 8px; font-size: .96rem; color: var(--ink-soft); }
.section--dark .info-card p { color: var(--on-dark-soft); }

/* safety/urgency band */
.urgent { background: var(--orange-cta); color: #fff; }
.urgent .container { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 28px; padding: 26px var(--gutter); }
.urgent .big { font-family: var(--display2); font-weight: 800; font-size: 1.15rem; flex: 1; min-width: 260px; }
.urgent .phone { font-family: var(--display); font-weight: 900; font-size: 1.6rem; color: #fff; background: rgba(0,0,0,.18); padding: 12px 24px; border-radius: var(--pill); }
.urgent .phone:hover { background: rgba(0,0,0,.3); }

/* process steps */
.steps { display: grid; grid-template-columns: repeat(5,1fr); gap: 16px; counter-reset: step; }
.step { background: var(--cream-card); border: 1px solid var(--line-light); border-radius: var(--radius); padding: 26px 22px; box-shadow: var(--shadow-card); }
.step .n { font-family: var(--display); font-weight: 900; font-size: 1.6rem; color: var(--orange-text); }
.step h3 { font-family: var(--display2); font-weight: 800; font-size: 1.05rem; margin-top: 8px; }
.step p { margin-top: 6px; font-size: .9rem; color: var(--ink-soft); }

/* gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.gallery-grid a { border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--shadow-card); border: 1px solid var(--line-light); }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.gallery-grid a:hover img { transform: scale(1.06); }
.gallery-grid .tall { grid-row: span 2; aspect-ratio: 4/5; }

@media (max-width: 1024px) {
  .valuestrip ul { grid-template-columns: repeat(2,1fr); }
  .info-grid { grid-template-columns: repeat(2,1fr); }
  .steps { grid-template-columns: repeat(2,1fr); }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .leadblock-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .valuestrip ul { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .opt .opt-list { grid-template-columns: 1fr; }
  .opt summary { grid-template-columns: auto 1fr auto; gap: 12px; }
}

@media (prefers-reduced-motion: reduce) { * { transition: none !important; scroll-behavior: auto; } }
