/* Gio's Epoxy Flooring - site stylesheet (App_Themes/Theme1/site.css)
   Single file: base layout, theme refinements, quote form.
   Loaded automatically by ASP.NET theme="Theme1" in web.config. Fonts via master <link>, not @import. */

/* Gio's Epoxy Flooring — premium orange brand (HTML/CSS only) */
/* Fonts loaded via <link> in MasterPage.master (avoids render-blocking @import chain). */

:root {
  --orange: #df5700;
  --orange-bright: #e86a1a;
  --orange-deep: #c44e00;
  --orange-glow: rgba(223, 87, 0, 0.42);
  --orange-panel: linear-gradient(145deg, #4a3020 0%, #2a1a10 100%);
  --black: #0a0a0a;
  --charcoal: #141414;
  --card: #1c1c1c;
  --card-hover: #252525;
  --white: #ffffff;
  --grey: #a3a3a3;
  --border: rgba(255, 255, 255, 0.08);
  --font: "Montserrat", "Segoe UI", sans-serif;
  --max: 1140px;
  --nav-h: 76px;
  --section-y: clamp(2.75rem, 5vw, 4rem);
  --radius: 6px;
  --radius-btn: 8px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--white);
  background: var(--black);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--orange); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--orange-bright); }

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* Header — transparent over hero (like mockup) */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: transparent;
  border-bottom: none;
  backdrop-filter: none;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.site-header.is-scrolled,
.site-header:has(.nav-menu.open) {
  background: rgba(10, 10, 10, 0.94);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}
.header-row {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
@media (min-width: 992px) {
  .header-row {
    max-width: 1320px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }
  .logo { justify-self: start; }
  .site-header nav { justify-self: center; }
  .header-right { justify-self: end; }
}
.logo {
  display: block;
  line-height: 0;
  text-decoration: none;
  flex-shrink: 0;
  margin-top: 5px;
}
.logo:hover { opacity: 0.95; }
.logo-img {
  display: block;
  height: 56px;
  width: auto;
  max-width: min(220px, 46vw);
  object-fit: contain;
  object-position: left center;
}
@media (max-width: 480px) {
  .logo-img {
    height: 48px;
    max-width: min(190px, 52vw);
  }
}
.nav-menu {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  padding-bottom: 0.35rem;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.nav-menu a:hover,
.nav-menu a.is-active {
  color: var(--orange);
  border-bottom-color: var(--orange);
}
.header-right {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
/* Phone icon — images/phone.png (white handset on black; screen drops black on orange) */
.ico-phone {
  display: block;
  width: 1.15rem;
  height: auto;
  flex-shrink: 0;
  object-fit: contain;
  mix-blend-mode: screen;
}
.btn-phone-header .ico-phone {
  width: 1.35rem;
}
.btn-phone-header {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 1.4rem;
  background: var(--orange);
  color: var(--white) !important;
  font-weight: 500;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  border-radius: var(--radius-btn);
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-phone-header:hover {
  background: var(--orange-bright);
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px var(--orange-glow);
}
.nav-toggle {
  display: none;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 0.4rem 0.55rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1.1rem;
}
@media (max-width: 991px) {
  .header-row {
    gap: 0.4rem;
    padding: 0 0.65rem;
  }
  .logo {
    flex: 1 1 auto;
    min-width: 0;
  }
  .site-header nav {
    flex: 0 0 auto;
  }
  .header-right {
    flex: 0 0 auto;
  }
  .btn-phone-header {
    font-size: 0.88rem;
    padding: 0.5rem 0.7rem;
    gap: 0.35rem;
    letter-spacing: 0.02em;
  }
  .btn-phone-header .ico-phone {
    width: 1.1rem;
  }
  .nav-toggle { display: block; }
  .nav-menu {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    padding: 0.75rem 1.25rem 1rem;
    background: var(--charcoal);
    border-bottom: 1px solid var(--border);
  }
  .nav-menu.open { display: flex; }
  .nav-menu li { padding: 0.5rem 0; }
}
@media (max-width: 520px) {
  .btn-phone-header {
    font-size: 0.8rem;
    padding: 0.48rem 0.55rem;
  }
}
@media (max-width: 400px) {
  .phone-header-num {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  .btn-phone-header {
    padding: 0.5rem 0.58rem;
    gap: 0;
  }
  .btn-phone-header .ico-phone {
    width: 1.25rem;
  }
}
@media (max-width: 380px) {
  .btn-phone-header {
    font-size: 0.82rem;
    padding: 0.5rem 0.55rem;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem 1.5rem;
  font-family: var(--font);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-btn);
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-orange {
  background: var(--orange);
  color: var(--white) !important;
  box-shadow: 0 4px 14px var(--orange-glow);
}
.btn-orange:hover {
  background: var(--orange-bright);
  color: var(--white) !important;
  box-shadow: 0 6px 22px var(--orange-glow);
}
.btn-orange .ico-phone {
  width: 1.15rem;
  height: 1.15rem;
}
.btn-outline,
.btn-outline-orange {
  background: rgba(0, 0, 0, 0.72);
  color: var(--white) !important;
  border: 2px solid var(--orange);
}
.btn-outline:hover,
.btn-outline-orange:hover {
  background: rgba(223, 87, 0, 0.15);
  color: var(--white) !important;
}
.btn-outline-orange .btn-ico { color: var(--orange); }
.btn-outline-white {
  background: rgba(0, 0, 0, 0.72);
  color: var(--white) !important;
  border: 2px solid rgba(255, 255, 255, 0.88);
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white) !important;
}
.btn-outline-white .btn-ico { color: var(--white); }
.btn-block { width: 100%; }
.btn-lg { padding: 1rem 1.75rem; font-size: 0.82rem; }
.btn-ico { font-size: 0.95rem; line-height: 1; }

/* Hero — cinematic, one photo only */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow: hidden;
  background: #000;
}
/* Side + corner fade so wide screens never show a hard photo edge */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      #000 0%,
      rgba(0, 0, 0, 0.92) 6%,
      rgba(0, 0, 0, 0.55) 14%,
      transparent 26%,
      transparent 74%,
      rgba(0, 0, 0, 0.55) 86%,
      rgba(0, 0, 0, 0.92) 94%,
      #000 100%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, transparent 22%, transparent 78%, rgba(0, 0, 0, 0.35) 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #000;
  background-repeat: no-repeat;
  filter: brightness(1.08) contrast(1.04) saturate(1.05);
  /* Mobile: herogiomobel.webp only */
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.45) 38%, rgba(0, 0, 0, 0.12) 62%, transparent 100%),
    url("/images/herogiomobel.webp?v=20260603b");
  background-position: 0 0, center bottom;
  background-size: auto, contain;
}
/* Homepage LCP: real <img> instead of CSS background (better paint + fetchpriority). */
.hero-bg:has(.hero-bg-img) {
  background-image: none;
  filter: none;
  overflow: hidden;
}
.hero-bg picture {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
}
.hero-bg .hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: center bottom;
  filter: brightness(1.08) contrast(1.04) saturate(1.05);
}
.hero-bg .hero-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.45) 38%, rgba(0, 0, 0, 0.12) 62%, transparent 100%);
}
/* Tablet+ : desktop hero */
@media (min-width: 768px) {
  .hero-bg {
    background-image:
      linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.45) 38%, rgba(0, 0, 0, 0.12) 62%, transparent 100%),
      url("/images/herogio2.webp?v=20260602b"),
      url("/images/heroGio.webp?v=20260602b"),
      url("/images/hero-garage.jpg?v=20260602b");
    background-position: 0 0, center bottom, center bottom, center bottom;
    background-size: auto, contain, contain, contain;
  }
}
.hero-inner {
  position: relative;
  z-index: 2;
  flex: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: calc(var(--nav-h) + 2.85rem) 0.15rem 1.5rem;
  width: 100%;
}

/* Mockup: DURABLE / EPOXY FLOORS / BUILT TO LAST — 3 equal lines */
.hero-headline {
  margin: 0 0 0.65rem;
  font-family: "Bebas Neue", "Oswald", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.88;
  letter-spacing: 0.035em;
}
.hero-headline .hero-line {
  display: block;
  color: var(--white);
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.75);
}
.hero-headline .hero-line-accent,
.hero-headline .hero-line--accent {
  color: var(--orange);
}
.hero-sub {
  font-family: var(--font);
  font-size: clamp(1.12rem, 1.7vw, 1.28rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
  max-width: 34rem;
  margin: 0 0 0.45rem;
  line-height: 1.45;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.75);
}
/* Hero features + CTAs — match reference mockup */
.hero-features {
  max-width: 52rem;
}
.hero-icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  width: 100%;
  max-width: 38rem;
  margin: 0 0 2rem;
  padding: 0.35rem 0 1.5rem;
}
@media (max-width: 720px) {
  .hero-icons {
    grid-template-columns: repeat(2, 1fr);
    max-width: 32rem;
    gap: 0.65rem;
    margin-bottom: 1.25rem;
  }
  .hi-line {
    white-space: normal;
    text-wrap: balance;
  }
}
.hero-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.4rem 0.35rem 0.3rem;
  position: relative;
  min-width: 0;
}
.hero-icon:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 6%;
  height: 88%;
  width: 1px;
  background: rgba(255, 255, 255, 0.42);
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.12);
}
@media (max-width: 720px) {
  .hero-icon {
    padding: 0.5rem 0.35rem;
  }
  .hero-icon::after { display: none; }
}
.hi-ico {
  width: 3.65rem;
  height: 3.65rem;
  display: grid;
  place-items: center;
}
.hi-ico-img {
  display: block;
  width: 52px;
  height: auto;
  max-height: 52px;
  object-fit: contain;
}
.hi-copy {
  margin: 0.55rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
}
.hi-line {
  display: block;
  font-family: "Roboto Condensed", var(--font);
  font-size: clamp(0.88rem, 2.1vw, 1rem);
  line-height: 1.2;
  color: var(--white);
  white-space: nowrap;
}
.hi-line-strong {
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hi-line-soft {
  font-weight: 400;
  font-size: clamp(0.82rem, 1.9vw, 0.92rem);
  letter-spacing: 0.04em;
  text-transform: none;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: stretch;
}
.hero-btns .btn {
  min-height: 3.25rem;
  padding: 0.95rem 1.5rem;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: 7px;
}
.btn-hero-call {
  background: var(--orange);
  color: var(--white) !important;
  border: 2px solid var(--orange);
  box-shadow: 0 4px 16px rgba(223, 87, 0, 0.35);
}
.btn-hero-call:hover {
  background: var(--orange-bright);
  border-color: var(--orange-bright);
  color: var(--white) !important;
}
.btn-hero-call .ico-phone {
  width: 1.05rem;
  height: 1.05rem;
}
.btn-hero-text {
  background: rgba(0, 0, 0, 0.82);
  color: var(--white) !important;
  border: 2px solid var(--orange);
}
.btn-hero-text:hover {
  background: rgba(223, 87, 0, 0.12);
  color: var(--white) !important;
}
.btn-hero-estimate {
  background: rgba(0, 0, 0, 0.55);
  color: var(--white) !important;
  border: 2px solid rgba(255, 255, 255, 0.9);
}
.btn-hero-estimate:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white) !important;
}
/* Mobile: header phone + bottom bar already have CTAs; icon grid adds clutter */
@media (max-width: 991px) {
  .hero-btns {
    display: none;
  }
  .hero-icons {
    display: none;
  }
  .hero-inner {
    padding-bottom: 2rem;
  }
}
.ico-chat,
.ico-calendar {
  display: inline-block;
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
  background-color: currentColor;
  -webkit-mask: center / contain no-repeat;
  mask: center / contain no-repeat;
}
.ico-chat {
  color: var(--orange);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M20 2H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h3l4 4 4-4h5a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2zm-8 9H6V9h6v2zm4-3H6V6h10v2z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M20 2H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h3l4 4 4-4h5a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2zm-8 9H6V9h6v2zm4-3H6V6h10v2z'/%3E%3C/svg%3E");
}
.ico-calendar {
  color: var(--white);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M19 4h-1V2h-2v2H8V2H6v2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2zm0 16H5V10h14v10zM7 12h2v2H7v-2zm4 0h2v2h-2v-2zm4 0h2v2h-2v-2z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M19 4h-1V2h-2v2H8V2H6v2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2zm0 16H5V10h14v10zM7 12h2v2H7v-2zm4 0h2v2h-2v-2zm4 0h2v2h-2v-2z'/%3E%3C/svg%3E");
}

/* Hero bottom strip — mockup bar at fold */
.hero-strip {
  position: relative;
  z-index: 2;
  width: 100%;
  margin-top: auto;
  background: #000;
  border-top: 1px solid #000;
  display: flex;
  justify-content: center;
  padding: 0 1.25rem;
  box-sizing: border-box;
}
.strip-grid-wrap {
  width: 100%;
  max-width: 1290px;
  margin: 0 auto;
  padding-left: 2rem;
  box-sizing: border-box;
}
@media (min-width: 900px) {
  .strip-grid-wrap {
    transform: translateX(1.35rem);
  }
}
.strip-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
}
@media (min-width: 900px) {
  .strip-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.1rem 1.15rem;
  min-height: 5.5rem;
  position: relative;
}
.strip-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 18%;
  height: 64%;
  width: 1px;
  background: rgba(255, 255, 255, 0.22);
}
@media (max-width: 899px) {
  .strip-item:nth-child(odd)::after {
    display: none;
  }
  .strip-item:nth-child(1),
  .strip-item:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
  .strip-item:nth-child(1)::after,
  .strip-item:nth-child(3)::after {
    display: block;
  }
}
.si-ico {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.si-ico svg,
.si-ico-img {
  display: block;
  width: 40px;
  height: auto;
  max-height: 40px;
  object-fit: contain;
}
.si-text {
  min-width: 0;
}
.si-top {
  margin: 0;
  font-family: "Roboto Condensed", var(--font);
  font-size: clamp(0.78rem, 1.75vw, 0.95rem);
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--white);
}
.si-sub {
  margin: 0.2rem 0 0;
  font-family: var(--font);
  font-size: clamp(0.72rem, 1.35vw, 0.82rem);
  font-weight: 400;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.78);
}
@media (max-width: 480px) {
  .strip-item {
    padding: 0.95rem 0.75rem;
    gap: 0.65rem;
  }
  .si-ico svg,
  .si-ico-img {
    width: 34px;
    max-height: 34px;
  }
}

/* Sections */
.section {
  padding: var(--section-y) 1.25rem;
}
.section-dark { background: var(--charcoal); }
.wrap {
  max-width: var(--max);
  margin: 0 auto;
}
.wrap-narrow { max-width: 680px; }
.section-head {
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  text-align: center;
  margin: 0 0 0.75rem;
}
.section-lead {
  text-align: center;
  color: var(--grey);
  max-width: 36rem;
  margin: 0 auto 1.75rem;
  font-size: 0.92rem;
}
.section-cta { text-align: center; margin-top: 0.5rem; }

/* Reviews */
.reviews-card {
  margin: 1rem auto 0;
  padding: 1.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
}
.reviews-text {
  margin: 0.6rem 0 0;
  color: var(--grey);
  font-size: 0.92rem;
}

/* Services — mockup: Built for Every Space */
.wrap-wide {
  max-width: 1290px;
}
.section-services {
  background: #000;
  padding: clamp(3rem, 6vw, 4.5rem) 0 0;
  overflow-x: hidden;
}
.services-intro-wrap {
  max-width: 1290px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.services-kicker,
.about-kicker {
  margin: 0 0 0.85rem;
  text-align: center;
  font-size: clamp(0.88rem, 1.4vw, 1.05rem);
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--orange);
}
.services-title,
.about-title {
  margin: 0 0 1rem;
  text-align: center;
  font-family: "Bebas Neue", "Oswald", sans-serif;
  font-size: clamp(3.25rem, 7.5vw, 5.5rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  color: var(--white);
}
.services-intro {
  margin: 0 auto 2.5rem;
  max-width: 38rem;
  text-align: center;
  font-size: clamp(1rem, 1.75vw, 1.15rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}
.services-stack {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  margin-top: 0.5rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 1290px;
}
.svc-row {
  display: grid;
  grid-template-columns: 1fr;
  background: #000;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  overflow: hidden;
}
@media (min-width: 900px) {
  .svc-row {
    grid-template-columns: minmax(300px, 38%) 1fr;
    min-height: 300px;
  }
  .svc-row--flip {
    grid-template-columns: 1fr minmax(300px, 38%);
  }
  .svc-row--flip .svc-row-content {
    order: 2;
  }
  .svc-row--flip .svc-row-media {
    order: 1;
  }
}
.svc-row-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(1.5rem, 3vw, 2.25rem) clamp(1.35rem, 4vw, 3.5rem);
  background: #000;
  position: relative;
  z-index: 2;
}
.svc-row-icon {
  display: block;
  margin-bottom: 0.85rem;
}
.svc-row-icon svg,
.svc-row-icon-img {
  display: block;
  width: 42px;
  height: auto;
  max-height: 42px;
  object-fit: contain;
}
.svc-row-title {
  margin: 0 0 0.45rem;
  font-family: "Bebas Neue", "Oswald", sans-serif;
  font-size: clamp(2rem, 4vw, 2.65rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
}
.svc-row-tag {
  margin: 0 0 0.85rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
}
.svc-row-desc {
  margin: 0 0 1.35rem;
  max-width: 26rem;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
}
.svc-learn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 1.15rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  border: 2px solid var(--orange);
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
.svc-learn:hover {
  background: rgba(223, 87, 0, 0.12);
  color: var(--white);
}
.svc-learn span {
  font-size: 0.85rem;
  line-height: 1;
}
.svc-row-media {
  position: relative;
  min-height: 240px;
  background: #000;
  overflow: hidden;
}
.svc-row-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  object-position: center;
}
/* Fade image on both ends into black */
.svc-row-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    #000 0%,
    rgba(0, 0, 0, 0.55) 8%,
    transparent 22%,
    transparent 78%,
    rgba(0, 0, 0, 0.55) 92%,
    #000 100%
  );
}
@media (min-width: 900px) {
  .svc-row-media {
    min-height: 100%;
  }
  .svc-row-media img {
    min-height: 300px;
  }
  /* Stronger fade into text column on inner edge */
  .svc-row:not(.svc-row--flip) .svc-row-media::after {
    background: linear-gradient(
      90deg,
      #000 0%,
      rgba(0, 0, 0, 0.4) 6%,
      transparent 18%,
      transparent 88%,
      rgba(0, 0, 0, 0.75) 96%,
      #000 100%
    );
  }
  .svc-row--flip .svc-row-media::after {
    background: linear-gradient(
      90deg,
      #000 0%,
      rgba(0, 0, 0, 0.75) 4%,
      transparent 12%,
      transparent 82%,
      rgba(0, 0, 0, 0.4) 94%,
      #000 100%
    );
  }
}

/* About — mockup */
.section-about {
  background: #000;
  padding: clamp(3rem, 6vw, 4.5rem) 1.25rem;
  overflow-x: hidden;
}
.about-intro-wrap {
  max-width: 1290px;
  margin: 0 auto 2.75rem;
  text-align: center;
}
.about-title-accent,
.services-title-accent {
  color: var(--orange);
}
.about-lead {
  margin: 0 auto;
  max-width: 52rem;
  font-family: var(--font);
  font-size: clamp(0.85rem, 1.25vw, 0.95rem);
  font-weight: 300;
  line-height: 1.75;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.9);
}
.about-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1290px;
  margin: 0 auto 2.5rem;
  align-items: center;
}
@media (min-width: 900px) {
  .about-split {
    grid-template-columns: minmax(240px, 30%) minmax(0, 1fr);
    gap: 2.5rem;
    align-items: start;
  }
}
.about-copy {
  min-width: 0;
}
.about-block {
  margin-bottom: 2rem;
}
.about-block:last-child {
  margin-bottom: 0;
}
.about-block-head {
  margin: 0 0 0.5rem;
  display: flex;
  align-items: center;
  gap: 1.15rem;
  font-family: var(--font);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
}
.about-block-head span {
  flex-shrink: 0;
  white-space: nowrap;
}
.about-block-head::after {
  content: "";
  flex: 1;
  min-width: 3rem;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--orange) 0%,
    rgba(223, 87, 0, 0.65) 28%,
    rgba(223, 87, 0, 0.2) 55%,
    transparent 100%
  );
}
.about-block p {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  line-height: 1.65;
  font-weight: 400;
  color: var(--white);
}
.about-block p:last-child {
  margin-bottom: 0;
}
.about-block p:has(+ .about-highlight-line) {
  margin-bottom: 0.2rem;
}
.about-highlight-line {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  line-height: 1.5;
}
.about-highlight {
  font-weight: 700;
  color: var(--orange);
}
.about-media {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}
.about-media img {
  display: block;
  width: 100%;
  aspect-ratio: 780 / 347;
  height: auto;
  object-fit: cover;
  object-position: center 45%;
}
.about-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, #000 0%, transparent 12%, transparent 88%, #000 100%);
}
.about-values {
  max-width: 1290px;
  margin: 0 auto 1.25rem;
  padding: 0;
}
.about-values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .about-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1100px) {
  .about-values-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.about-value {
  padding: 2rem 1.35rem 2.15rem;
  text-align: center;
  position: relative;
}
@media (min-width: 1100px) {
  .about-value:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 18%;
    height: 64%;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
  }
}
@media (max-width: 1099px) and (min-width: 768px) {
  .about-value:nth-child(1),
  .about-value:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .about-value:nth-child(1)::after,
  .about-value:nth-child(3)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 18%;
    height: 64%;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
  }
}
@media (max-width: 767px) {
  .about-value:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
}
.about-value-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 4rem;
  margin-bottom: 1rem;
}
.about-value-icon svg,
.about-value-icon-img {
  display: block;
  width: auto;
  height: auto;
  max-width: 56px;
  max-height: 56px;
  object-fit: contain;
}
/* Handshake artwork is shorter — scale up inside the fixed icon slot */
.about-value:nth-child(3) .about-value-icon-img {
  max-height: 56px;
  transform: scale(1.22);
  transform-origin: center center;
}
.about-value-title {
  margin: 0 0 0.4rem;
  font-size: clamp(0.72rem, 1.1vw, 0.8rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
}
.about-value-desc {
  margin: 0 auto;
  max-width: 13.5rem;
  font-size: 0.74rem;
  font-weight: 300;
  line-height: 1.65;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.88);
}
.about-cta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  max-width: 700px;
  margin: 0 auto;
  align-items: stretch;
}
@media (min-width: 900px) {
  .about-cta {
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
  }
}
.about-cta-box {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3.5rem;
  padding: 0.7rem 1rem;
  border: none;
  border-radius: 10px;
  background: #000;
  text-align: center;
}
.about-cta-phone {
  display: none;
}
.about-cta-text {
  min-width: 0;
}
.about-cta-head {
  margin: 0 0 0.15rem;
  font-size: clamp(0.8rem, 1.2vw, 0.92rem);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.25;
}
.about-cta-sub {
  margin: 0;
  font-size: clamp(0.78rem, 1.05vw, 0.86rem);
  font-weight: 400;
  line-height: 1.4;
  color: var(--grey);
}
.about-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  min-height: 3.5rem;
  padding: 0.7rem 1rem;
  background: var(--orange);
  color: var(--white) !important;
  font-family: var(--font);
  font-size: clamp(0.74rem, 1.1vw, 0.84rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 10px;
  white-space: nowrap;
  transition: background 0.2s;
}
.about-cta-btn span {
  font-size: 1.35em;
  line-height: 1;
}
.about-cta-btn:hover {
  background: var(--orange-bright);
  color: var(--white) !important;
}

/* Before / after slider */
.ba-slider {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
  user-select: none;
  touch-action: none;
}
.ba-after,
.ba-before {
  position: absolute;
  inset: 0;
}
.ba-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ba-before {
  width: 50%;
  overflow: hidden;
  z-index: 2;
  border-right: 2px solid var(--orange);
}
.ba-concrete {
  width: 100%;
  max-width: 920px;
  height: 100%;
  background:
    repeating-linear-gradient(45deg, transparent, transparent 8px, rgba(0,0,0,0.04) 8px, rgba(0,0,0,0.04) 16px),
    linear-gradient(160deg, #8a8580 0%, #6b6762 35%, #7a7570 60%, #5c5854 100%);
}
.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 44px;
  margin-left: -22px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: ew-resize;
}
.ba-handle::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  margin-left: -1.5px;
  background: var(--orange);
  box-shadow: 0 0 12px var(--orange-glow);
}
.ba-arrow {
  position: relative;
  z-index: 1;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--orange);
  color: var(--black);
  font-size: 0.65rem;
  font-weight: 900;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  letter-spacing: -0.15em;
}
.ba-label {
  position: absolute;
  bottom: 0.75rem;
  z-index: 4;
  padding: 0.3rem 0.65rem;
  background: rgba(0, 0, 0, 0.7);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 3px;
}
.ba-label-before { left: 0.75rem; }
.ba-label-after { right: 0.75rem; }

/* Premium before/after slider (garage, basement, patio inner pages) */
.ba-slider--premium,
.garage-ba.ba-slider,
.basement-ba.ba-slider,
.patio-ba.ba-slider {
  max-width: 1180px;
  border-radius: 12px;
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow:
    0 28px 72px rgba(0, 0, 0, 0.62),
    0 0 0 1px rgba(255, 255, 255, 0.04);
}

.ba-slider--premium::after,
.garage-ba.ba-slider::after,
.basement-ba.ba-slider::after,
.patio-ba.ba-slider::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  border-radius: inherit;
  background: radial-gradient(
    ellipse 92% 88% at 50% 50%,
    transparent 42%,
    rgba(0, 0, 0, 0.18) 72%,
    rgba(0, 0, 0, 0.38) 100%
  );
}

.ba-slider--premium .ba-after img,
.ba-slider--premium .ba-before img,
.garage-ba .ba-after img,
.garage-ba .ba-before img,
.basement-ba .ba-after img,
.basement-ba .ba-before img,
.patio-ba .ba-after img,
.patio-ba .ba-before img {
  object-fit: cover;
  filter: contrast(1.06) saturate(1.04) brightness(1.02);
}

.ba-slider--premium .ba-before,
.garage-ba .ba-before,
.basement-ba .ba-before,
.patio-ba .ba-before {
  border-right: none;
}

.ba-slider--premium .ba-handle::before,
.garage-ba .ba-handle::before,
.basement-ba .ba-handle::before,
.patio-ba .ba-handle::before {
  background: linear-gradient(
    180deg,
    rgba(223, 87, 0, 0.35) 0%,
    rgba(255, 255, 255, 0.95) 45%,
    rgba(255, 255, 255, 0.95) 55%,
    rgba(223, 87, 0, 0.35) 100%
  );
  box-shadow:
    0 0 10px rgba(223, 87, 0, 0.65),
    0 0 22px rgba(223, 87, 0, 0.28),
    0 0 6px rgba(0, 0, 0, 0.5);
}

.ba-slider--premium .ba-handle,
.garage-ba .ba-handle,
.basement-ba .ba-handle,
.patio-ba .ba-handle {
  width: 52px;
  margin-left: -26px;
}

.ba-slider--premium.is-dragging .ba-before,
.ba-slider--premium.is-dragging .ba-handle,
.garage-ba.is-dragging .ba-before,
.garage-ba.is-dragging .ba-handle,
.basement-ba.is-dragging .ba-before,
.basement-ba.is-dragging .ba-handle,
.patio-ba.is-dragging .ba-before,
.patio-ba.is-dragging .ba-handle {
  transition: none;
}

.ba-slider--premium .ba-arrow,
.garage-ba .ba-arrow,
.basement-ba .ba-arrow,
.patio-ba .ba-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(145deg, #141414 0%, #050505 100%);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  box-shadow:
    0 10px 32px rgba(0, 0, 0, 0.72),
    0 4px 12px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 0 24px rgba(223, 87, 0, 0.12);
  letter-spacing: 0;
  font-size: 0;
  gap: 0.15rem;
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.ba-slider--premium.is-dragging .ba-arrow,
.garage-ba.is-dragging .ba-arrow,
.basement-ba.is-dragging .ba-arrow,
.patio-ba.is-dragging .ba-arrow {
  transform: scale(1.04);
  box-shadow:
    0 14px 40px rgba(0, 0, 0, 0.78),
    0 6px 16px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.12),
    0 0 32px rgba(223, 87, 0, 0.22);
}

.ba-slider--premium .ba-arrow-l,
.ba-slider--premium .ba-arrow-r,
.garage-ba .ba-arrow-l,
.garage-ba .ba-arrow-r,
.basement-ba .ba-arrow-l,
.basement-ba .ba-arrow-r,
.patio-ba .ba-arrow-l,
.patio-ba .ba-arrow-r {
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

.ba-slider--premium .ba-arrow-l,
.garage-ba .ba-arrow-l,
.basement-ba .ba-arrow-l,
.patio-ba .ba-arrow-l {
  border-right: 6px solid var(--white);
  margin-right: 1px;
}

.ba-slider--premium .ba-arrow-r,
.garage-ba .ba-arrow-r,
.basement-ba .ba-arrow-r,
.patio-ba .ba-arrow-r {
  border-left: 6px solid var(--white);
  margin-left: 1px;
}

.ba-slider--premium .ba-label,
.garage-ba .ba-label,
.basement-ba .ba-label,
.patio-ba .ba-label {
  bottom: 1rem;
  padding: 0.45rem 0.85rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  border-radius: 4px;
}

.ba-slider--premium .ba-label-before,
.garage-ba .ba-label-before,
.basement-ba .ba-label-before,
.patio-ba .ba-label-before {
  left: 1rem;
  background: rgba(28, 28, 28, 0.92);
  color: var(--white);
}

.ba-slider--premium .ba-label-after,
.garage-ba .ba-label-after,
.basement-ba .ba-label-after,
.patio-ba .ba-label-after {
  right: 1rem;
  background: var(--orange);
  color: var(--white);
}

/* Photo-stack layout (garage + patio sliders) */
.ba-slider--premium .ba-after,
.ba-slider--premium .ba-before,
.garage-ba .ba-after,
.garage-ba .ba-before,
.patio-ba .ba-after,
.patio-ba .ba-before {
  position: absolute;
  inset: 0;
}

.ba-slider--premium .ba-after,
.garage-ba .ba-after,
.patio-ba .ba-after {
  z-index: 1;
}

.ba-slider--premium .ba-after img,
.garage-ba .ba-after img,
.patio-ba .ba-after img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  max-width: none;
  object-position: center center;
  pointer-events: none;
}

.ba-slider--premium .ba-after img,
.garage-ba .ba-after img,
.patio-ba .ba-after img {
  width: 100%;
  height: 100%;
}

.ba-slider--premium .ba-before,
.garage-ba .ba-before,
.patio-ba .ba-before {
  z-index: 2;
}

.ba-slider--premium .ba-before img,
.garage-ba .ba-before img,
.patio-ba .ba-before img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  max-width: none;
  object-position: center center;
  pointer-events: none;
}

@media (max-width: 640px) {
  .ba-slider--premium .ba-label,
  .garage-ba .ba-label,
  .basement-ba .ba-label,
  .patio-ba .ba-label {
    bottom: 0.65rem;
    padding: 0.35rem 0.6rem;
    font-size: 0.6rem;
  }

  .ba-slider--premium .ba-label-before,
  .garage-ba .ba-label-before,
  .basement-ba .ba-label-before,
  .patio-ba .ba-label-before {
    left: 0.65rem;
  }

  .ba-slider--premium .ba-label-after,
  .garage-ba .ba-label-after,
  .basement-ba .ba-label-after,
  .patio-ba .ba-label-after {
    right: 0.65rem;
  }

  .ba-slider--premium .ba-handle,
  .garage-ba .ba-handle,
  .basement-ba .ba-handle,
  .patio-ba .ba-handle {
    width: 46px;
    margin-left: -23px;
  }

  .ba-slider--premium .ba-arrow,
  .garage-ba .ba-arrow,
  .basement-ba .ba-arrow,
  .patio-ba .ba-arrow {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .ba-slider--premium .ba-handle,
  .patio-ba .ba-handle {
    width: 44px;
    margin-left: -22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ba-slider--premium .ba-before,
  .ba-slider--premium .ba-handle,
  .ba-slider--premium .ba-after img,
  .ba-slider--premium .ba-before img,
  .ba-slider--premium .ba-arrow,
  .garage-ba .ba-before,
  .garage-ba .ba-handle,
  .garage-ba .ba-after img,
  .garage-ba .ba-before img,
  .garage-ba .ba-arrow,
  .basement-ba .ba-before,
  .basement-ba .ba-handle,
  .basement-ba .ba-after img,
  .basement-ba .ba-before img,
  .basement-ba .ba-arrow,
  .patio-ba .ba-handle,
  .patio-ba .ba-arrow {
    transition: none;
  }

  .ba-slider--premium.is-dragging .ba-arrow,
  .garage-ba.is-dragging .ba-arrow,
  .basement-ba.is-dragging .ba-arrow,
  .patio-ba.is-dragging .ba-arrow {
    transform: none;
  }
}

/* Transform-section benefit cards (garage, basement, patio) */
.garage-benefit,
.basement-benefit,
.patio-benefit {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 1.15rem 0.9rem 1.2rem;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
  text-align: center;
}

.gb-ico,
.bb-ico,
.pb-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  margin: 0 auto 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(223, 87, 0, 0.35);
  background: radial-gradient(circle at 50% 45%, rgba(20, 20, 20, 0.55) 0%, rgba(0, 0, 0, 0.78) 100%);
  box-shadow: 0 0 18px rgba(223, 87, 0, 0.1);
}

.gb-ico img,
.bb-ico img,
.pb-ico img {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
  filter: brightness(1.15) drop-shadow(0 0 10px rgba(223, 87, 0, 0.22));
}

.gb-title,
.bb-title,
.pb-title {
  margin: 0 0 0.55rem;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.25;
}

.gb-rule,
.bb-rule,
.pb-rule {
  display: block;
  width: 1.7rem;
  height: 2px;
  margin: 0 auto 0.65rem;
  border-radius: 2px;
  background: var(--orange);
  box-shadow: 0 0 10px rgba(223, 87, 0, 0.28);
}

.gb-copy,
.bb-copy,
.pb-copy {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.62);
}

@media (max-width: 1100px) {
  .garage-benefit-grid,
  .basement-benefit-grid,
  .patio-benefit-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .garage-benefit-grid,
  .basement-benefit-grid,
  .patio-benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .garage-benefit-grid,
  .basement-benefit-grid,
  .patio-benefit-grid {
    grid-template-columns: 1fr;
    max-width: 22rem;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Finishes section — shared (basement + patio) */
.basement-finish-benefits,
.patio-finish-benefits {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(0.85rem, 1.6vw, 1.2rem);
  align-items: stretch;
  grid-auto-rows: 1fr;
  margin: 0 auto clamp(1.85rem, 3.6vw, 2.6rem);
}

.bfb-item,
.pfb-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 0.8rem;
  text-align: left;
  padding: 0.9rem 0.95rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.5);
  height: 100%;
}

.bfb-ico,
.pfb-ico {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(223, 87, 0, 0.3);
  background: radial-gradient(circle at 50% 45%, rgba(20, 20, 20, 0.55) 0%, rgba(0, 0, 0, 0.85) 100%);
}

.bfb-ico img,
.pfb-ico img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  filter: brightness(1.1) drop-shadow(0 0 10px rgba(223, 87, 0, 0.18));
}

.bfb-title,
.pfb-title {
  margin: 0 0 0.2rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}

.bfb-sub,
.pfb-sub {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.62);
  min-height: 2.9em;
}

.basement-finishes-kicker,
.patio-finishes-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 0 auto clamp(1.35rem, 2.8vw, 1.75rem);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.basement-finishes-kicker-line,
.patio-finishes-kicker-line {
  flex: 1;
  max-width: 9.5rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
}

.basement-flake-grid,
.patio-flake-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(0.85rem, 1.6vw, 1.2rem);
  margin: 0 auto clamp(1.85rem, 3.6vw, 2.6rem);
}

.flake-card,
.patio-flake-card {
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.56);
  text-align: left;
}

.flake-img,
.patio-flake-img {
  position: relative;
  aspect-ratio: 4 / 3;
  background: rgba(0, 0, 0, 0.35);
}

.flake-img img,
.patio-flake-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.05) saturate(1.02);
  transform: scale(1.03);
}

.flake-card .flake-title,
.patio-flake-title {
  margin: 0;
  padding: 0.95rem 1rem 0.35rem;
  font-family: var(--font);
  font-size: 0.86rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}

.flake-rule,
.patio-flake-rule {
  display: block;
  width: 1.7rem;
  height: 2px;
  margin: 0 1rem 0.65rem;
  border-radius: 2px;
  background: var(--orange);
  box-shadow: 0 0 10px rgba(223, 87, 0, 0.22);
}

.flake-copy,
.patio-flake-copy {
  margin: 0;
  padding: 0 1rem 1.05rem;
  font-size: 0.82rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.62);
}

.basement-finishes-cta,
.patio-finishes-cta {
  margin: clamp(1.65rem, 3.2vw, 2.2rem) auto 0;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(110% 140% at 0% 50%, rgba(223, 87, 0, 0.14) 0%, transparent 55%),
    linear-gradient(145deg, rgba(18, 18, 18, 0.92) 0%, rgba(6, 6, 6, 0.92) 100%);
  box-shadow:
    0 26px 66px rgba(0, 0, 0, 0.62),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

@media (max-width: 1100px) {
  .basement-finish-benefits,
  .patio-finish-benefits {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .basement-flake-grid,
  .patio-flake-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .basement-finish-benefits,
  .patio-finish-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .basement-flake-grid,
  .patio-flake-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .basement-flake-grid,
  .patio-flake-grid {
    grid-template-columns: 1fr;
    max-width: 24rem;
  }

  .patio-flake-grid {
    margin-left: auto;
    margin-right: auto;
  }
}

/* Process steps — shared (basement + patio) */
.bproc-step,
.pproc-step {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: left;
  padding: 1.1rem 0.95rem 1.15rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.025);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.38);
  height: 100%;
}

.bproc-head,
.pproc-head {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 0.65rem;
}

.bproc-num,
.pproc-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 1.85rem;
  height: 1.85rem;
  margin: 0;
  border-radius: 999px;
  background: transparent;
  border: 2px solid var(--orange);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1;
  box-shadow: none;
}

.bproc-title,
.pproc-title {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.15;
}

.pproc-title {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  line-height: 1.2;
}

.bproc-img,
.pproc-img {
  aspect-ratio: 4 / 3;
  margin: 0 0 0.7rem;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.3);
}

.bproc-img img,
.pproc-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.03) saturate(1.01) brightness(1.02);
}

.bproc-rule,
.pproc-rule {
  display: block;
  width: 1.7rem;
  height: 2px;
  margin: 0 0 0.65rem;
  border-radius: 2px;
  background: rgba(223, 87, 0, 0.88);
  box-shadow: none;
}

.bproc-copy,
.pproc-copy {
  margin: 0;
  flex: 1;
  font-size: 0.78rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.62);
}

/* Orange-glow promo bar shell (about, garage flake, finishes CTA pattern) */
.gio-promo-bar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
  padding: clamp(1.25rem, 2.5vw, 1.75rem) clamp(1.25rem, 3vw, 2rem);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition:
    border-color 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.gio-promo-bar--glow {
  border-radius: 16px;
  background:
    radial-gradient(110% 140% at 0% 50%, rgba(223, 87, 0, 0.14) 0%, transparent 55%),
    linear-gradient(145deg, rgba(18, 18, 18, 0.92) 0%, rgba(6, 6, 6, 0.92) 100%);
  box-shadow:
    0 26px 66px rgba(0, 0, 0, 0.62),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.gio-promo-bar--glow:hover {
  border-color: rgba(223, 87, 0, 0.16);
  box-shadow:
    0 26px 66px rgba(0, 0, 0, 0.62),
    0 0 24px rgba(223, 87, 0, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.gio-promo-bar-stats {
  list-style: none;
  margin: 0;
  padding: 0.35rem 0 0.35rem clamp(1rem, 2.2vw, 1.5rem);
  display: flex;
  align-items: stretch;
  flex-shrink: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.gio-promo-bar-stats li {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-width: 4.75rem;
  padding: 0.15rem clamp(0.65rem, 1.6vw, 1rem);
  text-align: center;
}

.gio-promo-bar-stats li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.gio-promo-bar-stat-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  border: 1px solid rgba(223, 87, 0, 0.28);
  background: radial-gradient(circle at 50% 45%, rgba(20, 20, 20, 0.5) 0%, rgba(0, 0, 0, 0.72) 100%);
  box-shadow: 0 0 12px rgba(223, 87, 0, 0.08);
}

.gio-promo-bar-stat-ico img {
  width: 1.35rem;
  height: 1.35rem;
  object-fit: contain;
  filter: brightness(1.12) drop-shadow(0 0 8px rgba(223, 87, 0, 0.18));
}

.gio-promo-bar-stat-label {
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.58);
}

/* Promo bar — shared typography + shield (about + garage legacy classes) */
.gio-promo-bar-title,
.about-bar-title,
.garage-bar-title {
  margin: 0 0 0.35rem;
  font-family: "Bebas Neue", "Oswald", sans-serif;
  font-size: clamp(1.5rem, 2.8vw, 1.85rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
}

.gio-promo-bar-accent,
.about-bar-accent,
.garage-why-accent,
.garage-flake-accent {
  color: var(--orange);
}

.gio-promo-bar-lead,
.about-bar-lead,
.garage-bar-lead {
  margin: 0;
  max-width: 28rem;
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.62);
}

.gio-promo-bar-shield,
.about-bar-shield,
.garage-bar-shield {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 999px;
  border: 1px solid rgba(223, 87, 0, 0.35);
  background: radial-gradient(circle at 50% 45%, rgba(20, 20, 20, 0.55) 0%, rgba(0, 0, 0, 0.78) 100%);
  box-shadow: 0 0 18px rgba(223, 87, 0, 0.1);
}

.gio-promo-bar-shield img,
.about-bar-shield img {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
  filter: brightness(1.12) drop-shadow(0 0 10px rgba(223, 87, 0, 0.22));
}

.gio-promo-bar-shield--lg,
.garage-why-bottom .garage-bar-shield {
  width: 5.75rem;
  height: 5.75rem;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0.65));
  box-shadow:
    0 0 0 1px rgba(223, 87, 0, 0.08),
    0 0 32px rgba(223, 87, 0, 0.18);
}

.garage-why-bottom .garage-bar-shield img {
  width: 3.35rem;
  height: 3.35rem;
  filter: brightness(1.12) drop-shadow(0 0 12px rgba(223, 87, 0, 0.35));
}

.garage-flake-bottom .garage-bar-shield {
  width: 3.25rem;
  height: 3.25rem;
}

.garage-flake-bottom .garage-bar-shield img {
  width: 1.65rem;
  height: 1.65rem;
}

.gio-promo-bar-stats,
.about-bar-stats,
.garage-bar-stats {
  list-style: none;
  margin: 0;
  padding: 0.35rem 0 0.35rem clamp(1rem, 2.2vw, 1.5rem);
  display: flex;
  align-items: stretch;
  flex-shrink: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.garage-bar-stats {
  border-left-color: rgba(255, 255, 255, 0.14);
}

.gio-promo-bar-stats li,
.about-bar-stats li,
.garage-bar-stats li {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-width: 4.75rem;
  padding: 0.15rem clamp(0.65rem, 1.6vw, 1rem);
  text-align: center;
}

.gio-promo-bar-stats li:not(:last-child)::after,
.about-bar-stats li:not(:last-child)::after,
.garage-bar-stats li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.garage-bar-stats li:not(:last-child)::after {
  background: rgba(255, 255, 255, 0.14);
}

.gio-promo-bar-stat-ico,
.about-bar-stat-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  border: 1px solid rgba(223, 87, 0, 0.28);
  background: radial-gradient(circle at 50% 45%, rgba(20, 20, 20, 0.5) 0%, rgba(0, 0, 0, 0.72) 100%);
  box-shadow: 0 0 12px rgba(223, 87, 0, 0.08);
}

.garage-bar-stat-ico {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.35rem;
  height: 3.35rem;
}

.garage-bar-stat-ico::before {
  content: "";
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(223, 87, 0, 0.2) 0%, transparent 72%);
  filter: blur(6px);
  opacity: 0.85;
}

.garage-flake-bottom .garage-bar-stat-ico {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  border: 1px solid rgba(223, 87, 0, 0.28);
  background: radial-gradient(circle at 50% 45%, rgba(20, 20, 20, 0.5) 0%, rgba(0, 0, 0, 0.72) 100%);
  box-shadow: 0 0 12px rgba(223, 87, 0, 0.08);
}

.garage-flake-bottom .garage-bar-stat-ico::before {
  display: none;
}

.gio-promo-bar-stat-ico img,
.about-bar-stat-ico img {
  width: 1.35rem;
  height: 1.35rem;
  object-fit: contain;
  filter: brightness(1.12) drop-shadow(0 0 8px rgba(223, 87, 0, 0.18));
}

.garage-bar-stat-ico img {
  position: relative;
  z-index: 1;
  width: 2.35rem;
  height: 2.35rem;
  object-fit: contain;
  filter: brightness(1.15) drop-shadow(0 0 10px rgba(223, 87, 0, 0.4));
}

.garage-flake-bottom .garage-bar-stat-ico img {
  width: 1.35rem;
  height: 1.35rem;
  filter: brightness(1.12) drop-shadow(0 0 8px rgba(223, 87, 0, 0.18));
}

.gio-promo-bar-stat-label,
.about-bar-stat-label,
.garage-bar-stat-label {
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.58);
}

/* Legacy bar shells map to gio-promo-bar modifiers */
.about-choose-bar,
.garage-flake-bottom {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
  padding: clamp(1.25rem, 2.5vw, 1.75rem) clamp(1.25rem, 3vw, 2rem);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(110% 140% at 0% 50%, rgba(223, 87, 0, 0.14) 0%, transparent 55%),
    linear-gradient(145deg, rgba(18, 18, 18, 0.92) 0%, rgba(6, 6, 6, 0.92) 100%);
  box-shadow:
    0 26px 66px rgba(0, 0, 0, 0.62),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  overflow: hidden;
  transition:
    border-color 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-choose-bar:hover,
.garage-flake-bottom:hover {
  border-color: rgba(223, 87, 0, 0.16);
  box-shadow:
    0 26px 66px rgba(0, 0, 0, 0.62),
    0 0 24px rgba(223, 87, 0, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.garage-flake-bottom {
  margin-bottom: 0;
}

.garage-why-bottom {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
  padding: clamp(1.25rem, 2.5vw, 1.75rem) clamp(1.25rem, 3vw, 2rem);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, rgba(22, 22, 22, 0.95) 0%, rgba(10, 10, 10, 0.98) 100%);
  border-radius: 10px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
  transition:
    border-color 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.garage-why-bottom:hover {
  border-color: rgba(223, 87, 0, 0.18);
  box-shadow:
    0 14px 38px rgba(0, 0, 0, 0.42),
    0 0 28px rgba(223, 87, 0, 0.07);
}

@media (max-width: 1024px) {
  .gio-promo-bar,
  .about-choose-bar,
  .garage-why-bottom,
  .garage-flake-bottom {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .gio-promo-bar-copy,
  .about-bar-copy,
  .garage-bar-copy {
    margin-left: auto;
    margin-right: auto;
  }

  .gio-promo-bar-shield,
  .about-bar-shield,
  .garage-bar-shield {
    margin: 0 auto;
  }

  .gio-promo-bar-stats,
  .about-bar-stats,
  .garage-bar-stats {
    border-left: none;
    padding-left: 0;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
  }

  .about-bar-stats li:not(:last-child)::after {
    display: none;
  }

  .garage-bar-stats li:not(:last-child)::after {
    display: block;
  }
}

@media (max-width: 560px) {
  .about-bar-stats li {
    min-width: 4.25rem;
    padding-left: 0.45rem;
    padding-right: 0.45rem;
  }

  .garage-bar-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }

  .garage-bar-stats li {
    min-width: 0;
    padding: 0.75rem 0.5rem;
  }

  .garage-bar-stats li:nth-child(2)::after {
    display: none;
  }

  .garage-bar-stats li:nth-child(1),
  .garage-bar-stats li:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}

/* Process promise panel — shared (basement + patio) */
.bpromise-left,
.ppromise-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
  padding-right: clamp(0.85rem, 2vw, 1.25rem);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.ppromise-left {
  border-right-color: rgba(255, 255, 255, 0.08);
}

.bpromise-head,
.ppromise-head {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.bpromise-ico,
.ppromise-ico {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
}

.ppromise-ico {
  border-radius: 999px;
  border: 1px solid rgba(223, 87, 0, 0.35);
  background: radial-gradient(circle at 50% 45%, rgba(20, 20, 20, 0.55) 0%, rgba(0, 0, 0, 0.78) 100%);
  box-shadow: 0 0 18px rgba(223, 87, 0, 0.1);
}

.bpromise-ico img {
  width: 2.5rem;
  height: 2.5rem;
  object-fit: contain;
  filter: brightness(1.06);
}

.ppromise-ico img {
  width: 1.65rem;
  height: 1.65rem;
  object-fit: contain;
  filter: brightness(1.12) drop-shadow(0 0 10px rgba(223, 87, 0, 0.22));
}

.bpromise-title,
.ppromise-title {
  margin: 0;
  font-family: "Bebas Neue", "Oswald", sans-serif;
  font-weight: 400;
  font-size: clamp(1.2rem, 2.1vw, 1.55rem);
  letter-spacing: 0.04em;
  line-height: 1.05;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}

.bpromise-lead,
.ppromise-lead {
  margin: 0;
  max-width: 22rem;
  font-size: 0.84rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.66);
}

.bpromise-benefits,
.ppromise-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  align-items: stretch;
}

.bpromise-item,
.ppromise-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  padding: 0.15rem clamp(0.65rem, 1.4vw, 0.95rem);
  position: relative;
}

.bpromise-item:not(:last-child)::after,
.ppromise-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 6%;
  height: 88%;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.bpromise-item-ico {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.1rem;
}

.bpromise-item-ico img {
  width: 1.5rem;
  height: 1.5rem;
  object-fit: contain;
  filter: brightness(1.05);
}

.ppromise-item-ico {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  margin-bottom: 0.1rem;
  border-radius: 999px;
  border: 1px solid rgba(223, 87, 0, 0.28);
  background: radial-gradient(circle at 50% 45%, rgba(20, 20, 20, 0.5) 0%, rgba(0, 0, 0, 0.72) 100%);
  box-shadow: 0 0 12px rgba(223, 87, 0, 0.08);
}

.ppromise-item-ico img {
  width: 1.35rem;
  height: 1.35rem;
  object-fit: contain;
  filter: brightness(1.12) drop-shadow(0 0 8px rgba(223, 87, 0, 0.18));
}

.bpromise-item-text,
.ppromise-item-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.bpromise-item-title,
.ppromise-item-title {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.25;
}

.bpromise-item-sub,
.ppromise-item-sub {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.58);
}

@media (max-width: 1100px) {
  .bpromise-left,
  .ppromise-left {
    padding-right: 0;
    padding-bottom: 1rem;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .bpromise-benefits,
  .ppromise-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem 0;
  }

  .bpromise-item:nth-child(2)::after,
  .ppromise-item:nth-child(2)::after {
    display: none;
  }

  .bpromise-item:nth-child(odd):not(:last-child)::after,
  .ppromise-item:nth-child(odd):not(:last-child)::after {
    display: block;
  }
}

@media (max-width: 720px) {
  .bpromise-benefits,
  .ppromise-benefits {
    grid-template-columns: 1fr;
  }

  .bpromise-item::after,
  .ppromise-item::after {
    display: none;
  }
}

/* Recent projects grid — shared (basement + patio + garage) */
.basement-projects-grid,
.patio-projects-grid,
.garage-projects-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.35rem);
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
}

.bproj-card,
.pproj-card,
.gproj-card {
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

.bproj-img,
.pproj-img,
.gproj-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.35);
}

.bproj-img img,
.pproj-img img,
.gproj-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.04) saturate(1.02) brightness(1.02);
}

.bproj-caption,
.pproj-caption,
.gproj-caption {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 0.75rem;
  align-items: start;
  padding: 0.95rem 1rem 1.05rem;
  background: linear-gradient(180deg, rgba(14, 14, 14, 0.96) 0%, rgba(8, 8, 8, 0.98) 100%);
}

.bproj-ico,
.pproj-ico,
.gproj-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(223, 87, 0, 0.35);
  background: rgba(255, 255, 255, 0.03);
}

.bproj-ico img,
.pproj-ico img,
.gproj-ico img {
  width: 1.35rem;
  height: 1.35rem;
  object-fit: contain;
  filter: brightness(1.06);
}

.bproj-title,
.pproj-title,
.gproj-title {
  margin: 0 0 0.25rem;
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}

.bproj-copy,
.pproj-copy,
.gproj-copy {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.62);
}

.bproj-cta-copy,
.pproj-cta-copy,
.gproj-cta-copy {
  text-align: left;
  min-width: 0;
}

.bproj-cta-eyebrow,
.pproj-cta-eyebrow,
.gproj-cta-eyebrow {
  margin: 0 0 0.2rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
}

.bproj-cta-title,
.pproj-cta-title,
.gproj-cta-title {
  margin: 0 0 0.2rem;
  font-family: "Bebas Neue", "Oswald", sans-serif;
  font-weight: 400;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  letter-spacing: 0.04em;
  line-height: 1.05;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}

.bproj-cta-lead,
.pproj-cta-lead,
.gproj-cta-lead {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.66);
}

@media (max-width: 1100px) {
  .basement-projects-grid,
  .patio-projects-grid,
  .garage-projects-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .basement-projects-grid,
  .patio-projects-grid,
  .garage-projects-grid {
    grid-template-columns: 1fr;
    max-width: 24rem;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Feature cards — garage "Why Upgrade" grid */
.why-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  overflow: hidden;
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.4s ease;
}

.why-card:hover {
  transform: translateY(-3px);
  border-color: rgba(223, 87, 0, 0.26);
  box-shadow:
    0 0 0 1px rgba(223, 87, 0, 0.14),
    0 0 22px rgba(223, 87, 0, 0.1),
    0 16px 40px rgba(0, 0, 0, 0.48);
}

.why-card-photo {
  position: relative;
  overflow: hidden;
  background: #0a0a0a;
}

.why-card-photo > img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
  transform: scale(1);
  transform-origin: center center;
  filter: contrast(1.08) saturate(1.06);
  transition:
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.5s ease;
}

.why-card:hover .why-card-photo > img {
  transform: scale(1.03);
  filter: contrast(1.1) saturate(1.08);
}

.why-card-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.38) 0%, transparent 20%),
    linear-gradient(180deg, transparent 72%, rgba(0, 0, 0, 0.22) 100%);
}

.why-card-body {
  flex: 1;
  padding: 1.15rem 1rem 1.25rem;
  text-align: center;
  background: linear-gradient(180deg, rgba(12, 12, 12, 0.6) 0%, rgba(6, 6, 6, 0.95) 100%);
}

.why-card-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 0.65rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.55);
}

.why-card-ico img {
  width: 1.65rem;
  height: 1.65rem;
  object-fit: contain;
  filter: brightness(1.15);
}

.why-card-title {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.25;
}

.why-card-copy {
  margin: 0 auto;
  max-width: 13.25rem;
  font-size: 0.78rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.62);
}

@media (prefers-reduced-motion: reduce) {
  .why-card,
  .why-card-photo > img {
    transition: none;
  }

  .why-card:hover {
    transform: none;
  }

  .why-card:hover .why-card-photo > img {
    transform: none;
  }
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
}
.gal-item {
  margin: 0;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--card);
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}
.gal-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}
.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gal-item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.45rem 0.6rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.gal-soon .gal-ph {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  text-align: center;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--grey);
  background: linear-gradient(145deg, #222 0%, #181818 100%);
}

/* Flake swatches — CSS only */
.flake-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  max-width: 640px;
  margin: 0 auto;
}
@media (min-width: 600px) {
  .flake-row { grid-template-columns: repeat(6, 1fr); max-width: none; }
}
.flake-pick {
  text-align: center;
  padding: 0.65rem 0.35rem;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.flake-pick:hover,
.flake-pick.on {
  border-color: var(--orange);
  background: rgba(223, 87, 0, 0.06);
}
.flake-swatch {
  display: block;
  width: 72px;
  height: 72px;
  margin: 0 auto 0.45rem;
  border-radius: 50%;
  border: 2px solid #444;
}
.flake-pick.on .flake-swatch {
  border-color: var(--orange);
  box-shadow: 0 0 14px var(--orange-glow);
}
.f-midnight { background: radial-gradient(circle at 30% 30%, #888 0%, #222 40%, #111 100%); }
.f-storm { background: radial-gradient(circle at 40% 40%, #bbb 0%, #777 50%, #444 100%); }
.f-granite { background: radial-gradient(circle at 35% 35%, #ddd 0%, #999 45%, #555 100%); }
.f-tuxedo { background: radial-gradient(circle at 30% 30%, #fff 0%, #666 35%, #111 100%); }
.f-saddle { background: radial-gradient(circle at 35% 35%, #d4a574 0%, #8b5a2b 50%, #4a3020 100%); }
.f-desert { background: radial-gradient(circle at 35% 35%, #e8d5b0 0%, #c4a574 50%, #8b7355 100%); }
.flake-pick small {
  font-weight: 800;
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Process */
.process-three {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .process-three { grid-template-columns: repeat(3, 1fr); }
}
.step-card {
  padding: 1.75rem 1.25rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  position: relative;
}
.step-num {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  width: 1.75rem;
  height: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--orange);
  color: var(--black);
  font-weight: 900;
  font-size: 0.8rem;
  border-radius: 50%;
}
.step-ico {
  display: block;
  font-size: 2rem;
  margin-bottom: 0.75rem;
}
.step-card h3 {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.step-card p {
  margin: 0;
  color: var(--grey);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* Why Gio's */
.value-four {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
@media (min-width: 600px) {
  .value-four { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 992px) {
  .value-four { grid-template-columns: repeat(4, 1fr); }
}
.value-card {
  padding: 1.5rem 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
}
.value-card .v-ico {
  font-size: 1.75rem;
  color: var(--orange);
  margin-bottom: 0.5rem;
  display: block;
}
.value-card h3 {
  margin: 0 0 0.4rem;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.value-card p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--grey);
  line-height: 1.55;
}

/* Service area */
.area-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: stretch;
}
@media (min-width: 900px) {
  .area-row { grid-template-columns: 1.15fr 0.85fr; }
}
.area-map-block {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.map-illust {
  flex-shrink: 0;
  width: 100px;
  height: 130px;
  background: linear-gradient(180deg, #2a2a2a, #1a1a1a);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-pin {
  width: 20px;
  height: 20px;
  background: var(--orange);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 4px 10px var(--orange-glow);
}
.area-text h3 {
  margin: 0 0 0.65rem;
  font-size: 1.1rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.area-note {
  color: var(--grey);
  margin: 0 0 0.75rem;
  font-size: 0.88rem;
}
.area-note strong { color: var(--white); }
.city-list {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--grey);
  line-height: 1.85;
}
.social-block {
  text-align: center;
  padding: 1.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.social-block h3 {
  margin: 0 0 0.4rem;
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.social-block .stars {
  color: var(--orange);
  font-size: 1.35rem;
  letter-spacing: 0.12em;
  margin-bottom: 0.4rem;
}
.social-block p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--grey);
}

/* Quote */
.convert-two {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 900px) {
  .convert-two { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
}
.panel-left,
.quote-box {
  padding: 2rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.panel-left h3 {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--orange);
}
.panel-left p {
  margin: 0 0 1.25rem;
  color: var(--grey);
  font-size: 0.9rem;
  line-height: 1.65;
}
.panel-left .ico-big {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: block;
}
.panel-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.quote-box h3 {
  margin: 0 0 0.25rem;
  font-size: 1.25rem;
  font-weight: 900;
  text-transform: uppercase;
}
.quote-box .sub {
  margin: 0 0 1.25rem;
  font-size: 0.85rem;
  color: var(--grey);
}
.field { margin-bottom: 0.9rem; }
.field label {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey);
}
.field input,
.field select {
  width: 100%;
  padding: 0.7rem 0.85rem;
  font-family: var(--font);
  font-size: 0.92rem;
  color: var(--white);
  background: var(--black);
  border: 1px solid #333;
  border-radius: var(--radius);
}
.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--orange);
}
.form-note {
  margin-top: 0.65rem;
  font-size: 0.78rem;
  color: var(--grey);
  text-align: center;
}
.form-ok {
  display: none;
  margin-top: 0.65rem;
  padding: 0.65rem;
  text-align: center;
  background: rgba(223, 87, 0, 0.12);
  border: 1px solid var(--orange);
  border-radius: var(--radius);
  font-size: 0.82rem;
}
.form-ok.show { display: block; }

/* Test / placeholder — full viewport white to the fold (header overlays top) */
.fold-white {
  min-height: 100vh;
  min-height: 100dvh;
  background: #fff;
}

/* Footer accent line above footer */
.footer-accent-line {
  height: 2px;
  width: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--orange) 20%,
    var(--orange) 80%,
    transparent 100%
  );
}

/* Footer */
.footer {
  padding: 1.5rem 1.25rem;
  text-align: center;
  background: var(--charcoal);
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--grey);
}
.footer a { color: var(--white); }
.footer strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}
.footer-copy { margin-top: 0.75rem; font-size: 0.75rem; }

/* Mobile bar — outside <form> in master so iOS fixed positioning stays on viewport */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 10000;
  padding: 0.4rem 0.45rem calc(0.4rem + env(safe-area-inset-bottom, 0px));
  gap: 0.35rem;
  background: rgba(10, 10, 10, 0.98);
  border-top: 1px solid var(--border);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.mobile-bar .btn {
  flex: 1;
  font-size: 0.72rem;
  padding: 0.58rem 0.35rem;
  min-height: 2.65rem;
}
@media (max-width: 991px) {
  .mobile-bar { display: flex; }
  body {
    padding-bottom: calc(60px + env(safe-area-inset-bottom, 0px));
    overflow-x: hidden;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .btn:hover, .gal-item:hover { transform: none; }
}

/* -- Theme1 refinements (merged from former site.css) -- */

/* —— Flagship homepage refinements —— */

/* 1. Hero — taller cinematic feel, especially on large screens */
.hero.hero--scroll {
  min-height: 100vh;
  min-height: 100dvh;
}

@media (min-width: 992px) {
  #home.hero.hero--scroll {
    min-height: max(100vh, 920px);
    min-height: max(100dvh, 920px);
  }
}

.hero.hero--scroll .hero-inner {
  padding-top: calc(var(--nav-h) + clamp(2.75rem, 5vw, 4.25rem));
  padding-bottom: clamp(2rem, 4vw, 3rem);
}

/* 2. Hero feature icons — spacing + subtle icon tone */
.hero.hero--scroll .hero-icons {
  max-width: 42rem;
  gap: 0.5rem;
  padding: 0.5rem 0.35rem 1.75rem;
}

.hero.hero--scroll .hero-icon {
  padding: 0.5rem 0.75rem 0.35rem;
  justify-content: flex-start;
}

.hero.hero--scroll .hi-ico-img {
  opacity: 0.9;
  filter: brightness(0.9) saturate(0.92);
}

/* 3. Header — more presence */
.site-header .logo {
  margin-top: 0;
  padding-right: 0.85rem;
}

.site-header .logo-img {
  height: 58px;
}

@media (max-width: 991px) {
  .site-header .logo {
    padding-right: 0.35rem;
  }

  .site-header .logo-img {
    height: 46px;
    max-width: min(168px, 40vw);
  }

  .site-header .btn-phone-header {
    padding: 0.5rem 0.7rem;
    font-size: 0.88rem;
  }
}

@media (max-width: 400px) {
  .site-header .logo-img {
    height: 42px;
    max-width: min(148px, 46vw);
  }
}

.site-header .nav-menu {
  gap: 1.85rem;
}

.site-header .header-right {
  gap: 0.85rem;
}

.site-header .btn-phone-header {
  padding: 0.75rem 1.55rem;
  gap: 0.65rem;
}

/* Scroll background hero — use scroll (not fixed); fixed breaks iOS position:fixed mobile bar */
.hero.hero--scroll .hero-bg {
  background-attachment: scroll;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  filter: none;
}
.hero.hero--scroll .hero-bg:has(.hero-bg-img) .hero-bg-img {
  object-fit: cover;
  object-position: center bottom;
  filter: none;
}

/* Stable hero layout while LCP image + webfonts load (reduces CLS). */
.hero.hero--scroll:has(.hero-bg-img) .hero-bg {
  height: 100%;
  min-height: 100%;
  overflow: hidden;
}

.hero.hero--scroll:has(.hero-bg-img) .hero-bg picture {
  width: 100%;
  height: 100%;
  min-height: 100%;
}

.hero.hero--scroll:has(.hero-bg-img) .hero-headline {
  min-height: clamp(10rem, 22vw, 12.5rem);
}

.hero.hero--scroll:has(.hero-bg-img) .hero-sub {
  min-height: 3.25em;
}

@media (pointer: coarse) {
  .hero.hero--scroll .hero-bg {
    background-attachment: scroll;
    background-position: center bottom;
  }
}

/* Header darkens on scroll — slower fade over hero */
.site-header {
  /* Keep a constant border to avoid a “flash” line */
  border-bottom: 1px solid transparent !important;
  transition:
    background 0.9s ease-in-out,
    border-color 0.9s ease-in-out 0.18s,
    backdrop-filter 0.9s ease-in-out,
    -webkit-backdrop-filter 0.9s ease-in-out;
}

/* Fade border in slightly after background begins */
.site-header.is-scrolled,
.site-header:has(.nav-menu.open) {
  border-bottom-color: rgba(255, 255, 255, 0.08) !important;
}

/* —— Site footer — balanced premium —— */
.site-footer {
  background: #000;
  color: rgba(255, 255, 255, 0.6);
}

.site-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(3rem, 5vw, 4.25rem) clamp(1.5rem, 3vw, 2.5rem) clamp(2rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .site-footer-inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr) minmax(0, 0.9fr);
    gap: clamp(2.5rem, 4vw, 3.5rem);
    align-items: start;
  }
}

.footer-col {
  min-width: 0;
}

.footer-logo {
  display: inline-block;
  line-height: 0;
  margin-bottom: 1.15rem;
}

.footer-logo-img {
  width: min(260px, 72vw);
  height: auto;
}

.footer-tagline {
  margin: 0 0 1.75rem;
  max-width: 20rem;
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
}

.footer-contact-block {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 18rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease;
}

.footer-contact-item:hover {
  opacity: 0.88;
  color: inherit;
}

.footer-contact-item--cta {
  padding-top: 1.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-contact-ico {
  flex-shrink: 0;
  width: 1.35rem;
  height: auto;
  opacity: 0.95;
}

.footer-contact-ico-cal {
  width: 1.25rem;
  height: 1.25rem;
  background-color: var(--orange);
  -webkit-mask: center / contain no-repeat;
  mask: center / contain no-repeat;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M19 4h-1V2h-2v2H8V2H6v2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2zm0 16H5V10h14v10z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M19 4h-1V2h-2v2H8V2H6v2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2zm0 16H5V10h14v10z'/%3E%3C/svg%3E");
}

.footer-contact-copy {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.footer-contact-copy strong {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.3;
}

.footer-contact-copy em {
  font-style: normal;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
}

.footer-contact-item--cta .footer-contact-copy em {
  color: rgba(255, 255, 255, 0.45);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: none;
}

.footer-heading {
  margin: 0 0 1.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
}

.footer-heading::after {
  content: "";
  display: block;
  width: 2.25rem;
  height: 2px;
  margin-top: 0.55rem;
  background: var(--orange);
}

.footer-services-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-service-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.85rem 0;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: opacity 0.2s ease;
}

.footer-services-list li:last-child .footer-service-item {
  border-bottom: none;
  padding-bottom: 0;
}

.footer-services-list li:first-child .footer-service-item {
  padding-top: 0;
}

.footer-service-item:hover {
  opacity: 0.9;
  color: inherit;
}

.footer-service-ico {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  object-fit: contain;
  border-radius: 3px;
}

.footer-service-copy {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.footer-service-copy strong {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.35;
}

.footer-service-copy span {
  font-size: 0.8rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.55);
}

.footer-hours-heading {
  margin-top: clamp(1.5rem, 3vw, 2rem);
}

.footer-hours-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.footer-hours-ico {
  flex-shrink: 0;
  width: 1.35rem;
  height: 1.35rem;
  background-color: var(--orange);
  -webkit-mask: center / contain no-repeat;
  mask: center / contain no-repeat;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 2a10 10 0 1 0 10 10A10.01 10.01 0 0 0 12 2zm0 18a8 8 0 1 1 8-8 8.01 8.01 0 0 1-8 8zm.5-11H11v5.2l4.5 2.7.8-1.3-3.8-2.25z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 2a10 10 0 1 0 10 10A10.01 10.01 0 0 0 12 2zm0 18a8 8 0 1 1 8-8 8.01 8.01 0 0 1-8 8zm.5-11H11v5.2l4.5 2.7.8-1.3-3.8-2.25z'/%3E%3C/svg%3E");
}

.footer-hours-copy {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.35;
  color: var(--white);
}

.footer-map {
  margin-bottom: 1rem;
  line-height: 0;
  border-radius: 4px;
  overflow: hidden;
}

.footer-map-img {
  display: block;
  width: 100%;
  max-height: 11rem;
  object-fit: cover;
  object-position: center;
}

.footer-area-copy {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.55);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: clamp(1.5rem, 3vw, 2rem) clamp(1.75rem, 4vw, 3rem) clamp(1.75rem, 3vw, 2.25rem);
  text-align: center;
}

.footer-bottom .footer-copy {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.38);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom a:hover {
  color: var(--orange);
}

/* —— Fast quote section —— */
#quote.section-dark {
  background:
    radial-gradient(ellipse 70% 50% at 20% 50%, rgba(26, 22, 18, 0.4) 0%, transparent 55%),
    linear-gradient(180deg, #121212 0%, #0d0d0d 50%, #0a0a0a 100%);
}

#quote .wrap {
  max-width: 1180px;
}

.quote-convert {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  min-width: 0;
  max-width: 100%;
}

.quote-convert > * {
  min-width: 0;
}

@media (min-width: 900px) {
  .quote-convert {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 1.35rem;
    align-items: stretch;
  }
}

.quote-panel--promo {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  min-height: 28rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.quote-panel-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.68) 0%, rgba(0, 0, 0, 0.48) 45%, rgba(0, 0, 0, 0.34) 100%),
    url("/App_Themes/Theme1/images/free-estimates.jpg?v=20260534b") center 35% / cover no-repeat;
}

.quote-panel-inner {
  position: relative;
  z-index: 1;
  padding: clamp(1.75rem, 3vw, 2.35rem);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.quote-panel-title {
  margin: 0 0 1rem;
  font-family: "Bebas Neue", "Oswald", sans-serif;
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.quote-title-line {
  display: block;
  font-size: clamp(2rem, 4.2vw, 2.65rem);
  color: var(--white);
}

.quote-title-line--accent {
  color: var(--orange);
}

.quote-panel-lead {
  margin: 0 0 1.5rem;
  max-width: 22rem;
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
}

.quote-trust {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.quote-trust li {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.quote-trust li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.quote-trust-text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding-right: 0;
}

.quote-trust-text strong {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.25;
}

.quote-trust-text span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.45;
}

.quote-trust-ico {
  flex-shrink: 0;
  display: block;
  line-height: 0;
}

.quote-trust-ico img {
  width: 3.5rem;
  height: 3.5rem;
  object-fit: contain;
  filter: brightness(1.12) saturate(1.1);
}

.quote-panel-btns {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.btn-quote-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.15rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--orange);
  color: var(--white) !important;
  border: 2px solid var(--orange);
  border-radius: 7px;
  text-decoration: none;
}

.btn-quote-call:hover {
  background: var(--orange-bright);
  border-color: var(--orange-bright);
  color: var(--white) !important;
}

.btn-quote-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.15rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.65);
  color: var(--white) !important;
  border: 2px solid var(--orange);
  border-radius: 7px;
  text-decoration: none;
}

.btn-quote-text:hover {
  background: rgba(223, 87, 0, 0.12);
  color: var(--white) !important;
}

.quote-form-panel {
  padding: clamp(1.75rem, 3vw, 2.25rem);
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  min-width: 0;
  max-width: 100%;
  overflow-x: hidden;
}

.quote-form-title {
  margin: 0 0 0.35rem;
  font-size: clamp(1.35rem, 2.5vw, 1.55rem);
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
}

.quote-form-fast {
  color: var(--orange);
}

.quote-form-sub {
  margin: 0 0 1.35rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

#quote .field {
  margin-bottom: 0.85rem;
}

#quote .field label {
  margin-bottom: 0.35rem;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.55);
}

#quote .field input,
#quote .field select,
#quote .field textarea,
#quote .quote-input {
  width: 100%;
  padding: 0.75rem 0.9rem;
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--white);
  background: #0a0a0a;
  border: 1px solid #333;
  border-radius: 6px;
  box-sizing: border-box;
}

#quote .field textarea {
  resize: vertical;
  min-height: 5rem;
}

#quote .field input::placeholder,
#quote .field textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

#quote .field input:focus,
#quote .field select:focus,
#quote .field textarea:focus {
  outline: none;
  border-color: var(--orange);
}

#quote .field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23df5700' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2rem;
}

.btn-quote-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  margin-top: 0.35rem;
  padding: 1rem 1.25rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--orange);
  border: 2px solid var(--orange);
  border-radius: 7px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.btn-quote-submit:hover {
  background: var(--orange-bright);
  border-color: var(--orange-bright);
}

.quote-submit-arrow {
  font-size: 1.1rem;
  line-height: 1;
}

#quote .form-note {
  margin-top: 0.75rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
}

#quote .quote-captcha-error {
  display: block;
  margin: 0.35rem 0 0.75rem;
}

#quote .field-error,
#quote .quote-validation-summary {
  color: #ff8a65;
  font-size: 0.78rem;
  margin-top: 0.35rem;
}

#quote .quote-validation-summary {
  margin-bottom: 0.85rem;
  padding: 0.65rem 0.75rem;
  background: rgba(255, 138, 101, 0.08);
  border: 1px solid rgba(255, 138, 101, 0.35);
  border-radius: 6px;
}

#quote .quote-turnstile-wrap {
  margin-top: 0.25rem;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
}

#quote .quote-turnstile-wrap .gio-turnstile-widget,
#quote .quote-turnstile-wrap .cf-turnstile {
  max-width: 100%;
  min-width: 0;
}

@media (max-width: 991px) {
  #quote .quote-turnstile-wrap {
    max-width: 100%;
    overflow: hidden;
  }

  #quote .quote-turnstile-wrap > div {
    max-width: min(300px, 100%) !important;
    width: fit-content !important;
    min-width: 0 !important;
    margin-inline: auto;
  }

  #quote .quote-turnstile-wrap .gio-turnstile-widget,
  #quote .quote-turnstile-wrap .cf-turnstile {
    max-width: 100%;
  }
}

#quote .quote-turnstile-wrap iframe {
  max-width: 100%;
}

#quote .quote-form-success {
  display: block;
  text-align: center;
  line-height: 1.5;
}

/* Quote section — mobile width (must follow base quote rules above) */
@media (max-width: 991px) {
  #quote.section {
    width: 100%;
    max-width: 100vw;
    padding: var(--section-y) 1rem;
    padding-bottom: calc(4.5rem + env(safe-area-inset-bottom, 0px));
    overflow-x: hidden;
    box-sizing: border-box;
  }

  #quote .wrap {
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
    padding-inline: 0;
    box-sizing: border-box;
  }

  #quote .quote-convert {
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
  }

  #quote .wrap,
  #quote .quote-convert,
  #quote .quote-convert > *,
  #quote .quote-panel--promo,
  #quote .quote-form-panel,
  #quote .quote-panel-inner {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  #quote .quote-panel--promo {
    min-height: 0;
  }

  #quote .quote-panel-bg {
    background:
      linear-gradient(160deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.52) 40%, rgba(0, 0, 0, 0.38) 100%),
      url("/App_Themes/Theme1/images/free-estimates.jpg?v=20260534b") center 18% / cover no-repeat;
  }

  #quote .quote-panel-inner {
    padding: 1.35rem 1rem 1.15rem;
  }

  #quote .quote-form-panel {
    padding: 1.35rem 1rem;
  }

  #quote .quote-title-line {
    font-size: clamp(1.65rem, 6.5vw, 2rem);
    overflow-wrap: anywhere;
  }

  #quote .quote-panel-lead {
    max-width: 100%;
  }

  #quote .quote-trust {
    gap: 0.75rem;
    margin-bottom: 0.5rem;
  }

  #quote .quote-trust li {
    padding: 0.45rem 0;
    align-items: flex-start;
  }

  #quote .quote-trust-text span {
    overflow-wrap: anywhere;
  }

  #quote .quote-trust-ico img {
    width: 3rem;
    height: 3rem;
  }

  #quote .quote-panel--promo,
  #quote .quote-form-panel {
    box-shadow: none;
  }

  #quote .quote-panel--promo:hover,
  #quote .quote-form-panel:hover {
    transform: none;
    box-shadow: none;
  }

  #quote .quote-panel-btns {
    display: none;
  }

  #quote .quote-turnstile-wrap,
  #quote .quote-validation-summary,
  #quote .field,
  #quote .btn-quote-submit {
    max-width: 100%;
    min-width: 0;
  }
}

#quote .form-security-trap-wrap {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.quote-bot-trap,
#quote .form-security-trap-wrap .form-security-trap,
.form-security-trap {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
  opacity: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

#quote .form-ok {
  display: none;
  margin-top: 0.75rem;
  padding: 0.75rem;
  text-align: center;
  background: rgba(223, 87, 0, 0.12);
  border: 1px solid rgba(223, 87, 0, 0.45);
  border-radius: 6px;
  font-size: 0.82rem;
  color: var(--white);
}

#quote .form-ok.show {
  display: block;
}

/* —— Premium FAQ (reusable) —— */
.faq-premium {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(30, 30, 30, 0.65) 0%, transparent 70%),
    #0a0a0a;
  padding: clamp(3.25rem, 6vw, 4.75rem) 0;
}

.faq-eyebrow {
  margin: 0 0 0.85rem;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
}

.faq-premium .faq-lead {
  margin-bottom: clamp(2.25rem, 4.2vw, 2.85rem);
}

.faq-title {
  margin: 0 auto 1rem;
  max-width: 60rem;
  text-align: center;
  font-family: "Bebas Neue", "Oswald", sans-serif;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 0.95;
  font-size: clamp(2.2rem, 4vw, 3rem);
  color: var(--white);
}

.faq-lead {
  margin: 0 auto 1.25rem;
  max-width: 42rem;
  text-align: center;
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
}

.faq-header-rule {
  width: 3.5rem;
  height: 3px;
  margin: 0 auto 2rem;
  background: var(--orange);
  border-radius: 2px;
}

.faq-accordion {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
  transition:
    transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.32s ease,
    background 0.32s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.32),
    0 0 0 1px rgba(223, 87, 0, 0.07);
}

.faq-item.is-open {
  border-left: 4px solid var(--orange);
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.28),
    0 0 32px rgba(223, 87, 0, 0.05);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  background: transparent;
  border: 0;
  color: var(--white);
  cursor: pointer;
  text-align: left;
  transition: background 0.25s ease;
}

.faq-q:hover {
  background: rgba(255, 255, 255, 0.03);
}

.faq-q-text {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.faq-icon {
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  position: relative;
  border-radius: 999px;
  border: 1px solid rgba(223, 87, 0, 0.45);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item.is-open .faq-icon {
  border-color: rgba(223, 87, 0, 0.75);
  box-shadow: 0 0 12px rgba(223, 87, 0, 0.18);
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 2px;
  background: var(--orange);
  transform: translate(-50%, -50%);
  transition: opacity 0.28s ease, transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-icon::after {
  width: 2px;
  height: 10px;
}

.faq-item.is-open .faq-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scale(0.6);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.48s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-a-inner {
  padding: 0 1.25rem 1.15rem;
  opacity: 0;
  transform: translateY(-6px);
  transition:
    opacity 0.34s ease 0.06s,
    transform 0.34s cubic-bezier(0.22, 1, 0.36, 1) 0.06s;
}

.faq-item.is-open .faq-a-inner {
  opacity: 1;
  transform: none;
}

.faq-a p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
}

.faq-cta {
  max-width: 980px;
  margin: clamp(1.85rem, 3.2vw, 2.25rem) auto 0;
  padding: clamp(1.15rem, 2.2vw, 1.55rem);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(110% 140% at 0% 50%, rgba(223, 87, 0, 0.14) 0%, transparent 55%),
    linear-gradient(145deg, rgba(18, 18, 18, 0.92) 0%, rgba(6, 6, 6, 0.92) 100%);
  box-shadow:
    0 26px 66px rgba(0, 0, 0, 0.62),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition:
    box-shadow 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.32s ease;
}

.faq-cta:hover {
  transform: none;
  border-color: rgba(223, 87, 0, 0.16);
  box-shadow:
    0 26px 66px rgba(0, 0, 0, 0.62),
    0 0 24px rgba(223, 87, 0, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.faq-cta-left h3 {
  margin: 0 0 0.15rem;
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
}

.faq-cta-left p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
}

.faq-cta-right {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

@media (max-width: 720px) {
  .faq-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* —— Subtle motion system —— */
:root {
  --motion-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --motion-duration: 0.65s;
}

.reveal {
  transition:
    opacity var(--motion-duration) var(--motion-ease),
    transform var(--motion-duration) var(--motion-ease);
}

.reveal.reveal-stagger {
  opacity: 1;
  transform: none;
}

.reveal.reveal-stagger:not(.visible) > * {
  opacity: 0;
  transform: translateY(14px);
}

.reveal.reveal-stagger.visible > * {
  opacity: 1;
  transform: none;
  transition:
    opacity 0.62s var(--motion-ease),
    transform 0.62s var(--motion-ease);
}

.reveal.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0.04s; }
.reveal.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.1s; }
.reveal.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.16s; }
.reveal.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.22s; }
.reveal.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.28s; }
.reveal.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.34s; }
.reveal.reveal-stagger.visible > *:nth-child(7) { transition-delay: 0.4s; }
.reveal.reveal-stagger.visible > *:nth-child(8) { transition-delay: 0.46s; }

.reveal.reveal-stagger:not(.visible) .faq-item {
  opacity: 0;
  transform: translateY(12px);
}

.reveal.reveal-stagger.visible .faq-item {
  opacity: 1;
  transform: none;
  transition:
    opacity 0.52s var(--motion-ease),
    transform 0.52s var(--motion-ease),
    box-shadow 0.38s var(--motion-ease),
    border-color 0.32s ease,
    background 0.32s ease;
}

.reveal.reveal-stagger.visible .faq-item:nth-child(1) { transition-delay: 0.24s; }
.reveal.reveal-stagger.visible .faq-item:nth-child(2) { transition-delay: 0.3s; }
.reveal.reveal-stagger.visible .faq-item:nth-child(3) { transition-delay: 0.36s; }
.reveal.reveal-stagger.visible .faq-item:nth-child(4) { transition-delay: 0.42s; }
.reveal.reveal-stagger.visible .faq-item:nth-child(5) { transition-delay: 0.48s; }
.reveal.reveal-stagger.visible .faq-item:nth-child(6) { transition-delay: 0.54s; }

.reveal.reveal-stagger.visible .quote-panel--promo { transition-delay: 0.08s; }
.reveal.reveal-stagger.visible .quote-form-panel { transition-delay: 0.18s; }

#quote .wrap.reveal-stagger:not(.visible) .quote-panel--promo,
#quote .wrap.reveal-stagger:not(.visible) .quote-form-panel {
  opacity: 0;
  transform: translateY(14px);
}

#quote .wrap.reveal-stagger.visible .quote-panel--promo,
#quote .wrap.reveal-stagger.visible .quote-form-panel {
  opacity: 1;
  transform: none;
  transition:
    opacity 0.62s var(--motion-ease),
    transform 0.62s var(--motion-ease),
    box-shadow 0.4s var(--motion-ease),
    border-color 0.32s ease;
}

/* Hero — slow ambient light drift */
.hero.hero--scroll::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 45% at 22% 58%, rgba(223, 87, 0, 0.075) 0%, transparent 58%),
    radial-gradient(ellipse 42% 36% at 78% 38%, rgba(255, 255, 255, 0.035) 0%, transparent 52%);
  animation: gio-hero-light 18s ease-in-out infinite alternate;
}

@keyframes gio-hero-light {
  0% { opacity: 0.5; }
  100% { opacity: 1; }
}

.hero.hero--scroll .hero-icon {
  transition: transform 0.35s var(--motion-ease);
}

.hero.hero--scroll .hero-icon:hover {
  transform: translateY(-3px);
}

.hero.hero--scroll .strip-item {
  opacity: 0;
  transform: translateY(8px);
  animation: gio-rise-in 0.62s var(--motion-ease) forwards;
  transition:
    transform 0.35s var(--motion-ease),
    box-shadow 0.35s var(--motion-ease),
    background 0.35s ease;
}

.hero.hero--scroll .strip-item:nth-child(1) { animation-delay: 0.42s; }
.hero.hero--scroll .strip-item:nth-child(2) { animation-delay: 0.5s; }
.hero.hero--scroll .strip-item:nth-child(3) { animation-delay: 0.58s; }
.hero.hero--scroll .strip-item:nth-child(4) { animation-delay: 0.66s; }

@keyframes gio-rise-in {
  to {
    opacity: 1;
    transform: none;
  }
}

.hero.hero--scroll .strip-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.28);
}

.quote-panel--promo,
.quote-form-panel {
  transition:
    transform 0.4s var(--motion-ease),
    box-shadow 0.4s var(--motion-ease),
    border-color 0.32s ease;
}

.quote-panel--promo:hover,
.quote-form-panel:hover {
  transform: translateY(-3px);
  box-shadow:
    0 14px 36px rgba(0, 0, 0, 0.38),
    0 0 40px rgba(223, 87, 0, 0.07);
}

.btn-quote-call,
.btn-quote-text,
.btn-hero-call,
.btn-hero-text,
.btn-hero-estimate,
.btn-phone-header {
  transition:
    transform 0.28s var(--motion-ease),
    box-shadow 0.28s var(--motion-ease),
    background 0.25s ease,
    border-color 0.25s ease;
}

.btn-quote-call:hover,
.btn-hero-call:hover {
  box-shadow:
    0 6px 20px rgba(223, 87, 0, 0.38),
    0 0 24px rgba(223, 87, 0, 0.14);
}

.btn-quote-text:hover,
.btn-hero-text:hover {
  box-shadow:
    0 6px 18px rgba(0, 0, 0, 0.35),
    0 0 20px rgba(223, 87, 0, 0.1);
}

.footer-service-item,
.footer-contact-item {
  transition:
    transform 0.32s var(--motion-ease),
    opacity 0.25s ease;
}

.footer-service-item:hover,
.footer-contact-item:hover {
  transform: translateX(3px);
}

.faq-header-rule {
  transform: scaleX(0.35);
  transform-origin: center;
  transition: transform 0.55s var(--motion-ease);
}

.reveal.reveal-stagger.visible .faq-header-rule {
  transform: scaleX(1);
}

@media (prefers-reduced-motion: reduce) {
  .hero.hero--scroll::before,
  .hero.hero--scroll .strip-item {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .reveal,
  .reveal.reveal-stagger:not(.visible) > *,
  .reveal.reveal-stagger:not(.visible) .faq-item {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .faq-item:hover,
  .faq-cta:hover,
  .quote-panel--promo:hover,
  .quote-form-panel:hover,
  .hero.hero--scroll .hero-icon:hover,
  .hero.hero--scroll .strip-item:hover,
  .footer-service-item:hover,
  .footer-contact-item:hover {
    transform: none;
    box-shadow: none;
  }

  .faq-a,
  .faq-a-inner,
  .faq-icon::before,
  .faq-icon::after {
    transition: none;
  }

  .faq-a-inner {
    opacity: 1;
    transform: none;
  }

  .faq-header-rule {
    transform: none;
  }
}

/* —— Inner pages (MasterPageContent) —— */
.content-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  background: #000;
}

.content-hero--blank {
  display: flex;
  flex-direction: column;
}

.content-hero--blank > .hero {
  flex: 1 1 auto;
}

/* Inner-page fold strip — dark glass bar (about, garage, gallery) */
.content-hero--blank .hero.hero--about .hero-strip,
.content-hero--blank .hero.hero--garage .hero-strip,
.content-hero--blank .hero.hero--gallery .hero-strip {
  background: rgba(0, 0, 0, 0.72);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.content-page-body {
  background: #0a0a0a;
}

/* Section dividers — same full-width orange fade as below hero on every page */
.footer-accent-line {
  display: block;
  flex-shrink: 0;
  width: 100%;
  height: 2px;
  margin: 0;
  padding: 0;
  border: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--orange) 20%,
    var(--orange) 80%,
    transparent 100%
  );
}

.content-page-body > .footer-accent-line {
  position: relative;
  z-index: 2;
}

/* Section intro eyebrow — orange label with fade lines (Transform your basement pattern) */
.section-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 0 0 1rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
}

.section-eyebrow-line {
  flex: 1;
  max-width: 6rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(223, 87, 0, 0.85), transparent);
}

/* —— Homepage mobile polish —— */
@media (max-width: 991px) {
  #home.hero.hero--scroll {
    min-height: 100vh;
    min-height: 100dvh;
    min-height: 100svh;
  }

  #home.hero.hero--scroll .hero-inner {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: calc(var(--nav-h) + 1.15rem);
    padding-left: 0.85rem;
    padding-right: 0.85rem;
    padding-bottom: 0;
  }

  #home .hero-features {
    flex: 1 1 auto;
    min-height: clamp(8rem, 28vh, 14rem);
  }

  #home .hero-strip {
    margin-top: auto;
    flex-shrink: 0;
    padding: 0 0.65rem;
  }

  #home .hero-bg .hero-bg-img {
    object-fit: cover;
    object-position: center bottom;
  }

  /* Softer left fade; stronger right-edge fade */
  #home.hero.hero--scroll::after {
    background:
      linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.28) 14%,
        transparent 32%,
        transparent 58%,
        rgba(0, 0, 0, 0.38) 72%,
        rgba(0, 0, 0, 0.65) 84%,
        rgba(0, 0, 0, 0.88) 100%
      ),
      linear-gradient(180deg, rgba(0, 0, 0, 0.22) 0%, transparent 16%, transparent 88%, rgba(0, 0, 0, 0.15) 100%);
  }

  #home .hero-bg .hero-bg-overlay {
    background: linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.52) 0%,
      rgba(0, 0, 0, 0.22) 32%,
      rgba(0, 0, 0, 0.06) 52%,
      transparent 68%
    );
  }

  #home.hero.hero--scroll:has(.hero-bg-img) .hero-headline {
    min-height: clamp(6.75rem, 22vw, 8rem);
    margin-bottom: 0.5rem;
  }

  #home .hero-headline .hero-line {
    line-height: 0.92;
  }

  #home .hero-sub {
    font-size: 0.98rem;
    line-height: 1.5;
    margin-bottom: 0.85rem;
    min-height: 0;
  }

  #home .hero-icons {
    background: rgba(0, 0, 0, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 0.85rem 0.55rem 0.75rem;
    gap: 0.85rem 0.4rem;
    margin-bottom: 0.65rem;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }

  #home .hero-icon {
    padding: 0.35rem 0.25rem;
  }

  #home .hi-ico {
    width: 2.85rem;
    height: 2.85rem;
  }

  #home .hi-ico-img {
    width: 42px;
    max-height: 42px;
  }

  #home .hi-copy {
    margin-top: 0.5rem;
    gap: 0.05rem;
  }

  #home .hi-line {
    font-size: 0.78rem;
    line-height: 1.25;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.95);
  }

  #home .strip-grid-wrap {
    padding-left: 0;
  }

  #home .strip-item {
    padding: 0.85rem 0.65rem;
    min-height: 4.75rem;
  }

  #home .si-top {
    font-size: 0.72rem;
    letter-spacing: 0.06em;
  }

  #home .si-sub {
    font-size: 0.68rem;
    line-height: 1.35;
  }
}

/* Inner pages — text over photo; darken left band only so image stays visible */
@media (max-width: 991px) {
  .content-hero--blank .hero-copy-panel {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    max-width: 92%;
    margin: 0;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
  }

  .content-hero--blank .hero-copy-panel :is(
      [class$="-eyebrow"],
      .hero-headline .hero-line,
      .hero-sub,
      .about-hero-tagline
    ) {
    text-shadow:
      0 2px 14px rgba(0, 0, 0, 1),
      0 4px 28px rgba(0, 0, 0, 0.88);
  }

  .content-hero--blank .hero-headline .hero-line--accent,
  .content-hero--blank .hero-headline .hero-line-accent {
    color: var(--orange);
  }

  .content-hero--blank .hero-copy-panel .hero-sub {
    max-width: none;
    color: rgba(255, 255, 255, 0.96);
  }

  .content-hero--blank .hero-copy-panel .about-hero-tagline {
    margin-bottom: 0;
  }

  /* Scrim on the photo under text only — right side and floor stay clear */
  .content-hero--blank .hero.hero--scroll::after {
    background:
      linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.84) 0%,
        rgba(0, 0, 0, 0.58) 24%,
        rgba(0, 0, 0, 0.22) 42%,
        transparent 54%
      ),
      linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.16) 0%,
        transparent 12%,
        transparent 78%,
        rgba(0, 0, 0, 0.08) 100%
      );
  }

  /* Home, basements, about, gallery — stronger left + right fade on mobile */
  .content-hero--blank .hero.hero--basement.hero--scroll::after,
  .content-hero--blank .hero.hero--about.hero--scroll::after,
  .content-hero--blank .hero.hero--gallery.hero--scroll::after {
    background:
      linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.84) 0%,
        rgba(0, 0, 0, 0.58) 24%,
        rgba(0, 0, 0, 0.22) 42%,
        transparent 52%,
        rgba(0, 0, 0, 0.32) 68%,
        rgba(0, 0, 0, 0.58) 82%,
        rgba(0, 0, 0, 0.85) 100%
      ),
      linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.16) 0%,
        transparent 12%,
        transparent 78%,
        rgba(0, 0, 0, 0.08) 100%
      );
  }
}

@media (max-width: 991px) {
  .faq-premium {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .faq-title {
    font-size: clamp(1.35rem, 5.5vw, 1.75rem);
  }

  .faq-lead {
    font-size: 0.92rem;
  }
}

/* Inner pages — shared mobile hero scaffold (page CSS keeps bg image + typography) */
@media (max-width: 991px) {
  .content-hero--blank > .hero.hero--scroll {
    min-height: 100vh;
    min-height: 100dvh;
    min-height: 100svh;
  }

  .content-hero--blank > .hero.hero--scroll .hero-inner {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: calc(var(--nav-h) + 1rem);
    padding-left: 0.85rem;
    padding-right: 0.85rem;
    padding-bottom: 0;
  }

  .content-hero--blank > .hero.hero--scroll .hero-strip {
    margin-top: auto;
    flex-shrink: 0;
    background: #000;
    border-top-color: #000;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .content-hero--blank > .hero.hero--basement .hero-inner,
  .content-hero--blank > .hero.hero--garage .hero-inner {
    padding-top: calc(var(--nav-h) + 1.15rem);
  }

  .content-hero--blank > .hero.hero--garage .hero-strip,
  .content-hero--blank > .hero.hero--basement .hero-strip,
  .content-hero--blank > .hero.hero--gallery .hero-strip {
    padding: 0 0.65rem;
  }

  .content-hero--blank > .hero.hero--about .hero-strip {
    padding: 0 0.5rem;
  }

  .content-hero--blank > .hero.hero--patio .hero-strip {
    padding: 0 0.5rem;
  }

  .content-hero--blank > .hero.hero--scroll .strip-grid-wrap {
    padding-left: 0;
    padding-right: 0;
  }
}

/* Home, basements, about, gallery — stronger left + right hero fade */
#home.hero::after,
.hero.hero--basement::after,
.hero.hero--about::after,
.hero.hero--gallery::after {
  background:
    linear-gradient(
      90deg,
      #000 0%,
      rgba(0, 0, 0, 0.92) 6%,
      rgba(0, 0, 0, 0.55) 14%,
      transparent 28%,
      transparent 62%,
      rgba(0, 0, 0, 0.38) 72%,
      rgba(0, 0, 0, 0.65) 82%,
      rgba(0, 0, 0, 0.9) 92%,
      #000 100%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, transparent 22%, transparent 78%, rgba(0, 0, 0, 0.35) 100%);
}

/* Inner-page heroes — full-bleed photo (match patio; gallery + about use custom sizing) */
.content-hero--blank .hero.hero--scroll:not(.hero--gallery):not(.hero--about) .hero-bg {
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  filter: none;
}

/* All heroes — unified title size (desktop 4.35rem) */
@media (min-width: 992px) {
  #home .hero-headline .hero-line,
  .content-hero--blank .hero-headline[class*="hero-headline--"] .hero-line {
    font-size: 4.35rem;
  }
}

@media (max-width: 991px) {
  #home .hero-headline .hero-line,
  .content-hero--blank .hero-headline[class*="hero-headline--"] .hero-line {
    font-size: clamp(1.95rem, 8.5vw, 2.75rem);
  }
}

/* FAQ — softer canvas tone (basement + patio) */
.faq-premium--canvas {
  position: relative;
  background: transparent;
  padding: clamp(4rem, 7.5vw, 5.75rem) 1.25rem clamp(4.25rem, 8vw, 6rem);
}

.faq-premium--canvas .wrap {
  position: relative;
  z-index: 1;
  max-width: 1180px;
}

.faq-premium--canvas .faq-accordion {
  gap: clamp(1.05rem, 2vw, 1.35rem);
}

.faq-premium--canvas .faq-item {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  transition:
    box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.45s ease,
    background 0.45s ease;
}

.faq-premium--canvas .faq-item:hover {
  transform: none;
  border-color: rgba(223, 87, 0, 0.16);
  background: rgba(255, 255, 255, 0.04);
  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(223, 87, 0, 0.06),
    0 0 18px rgba(223, 87, 0, 0.08);
}

.faq-premium--canvas .faq-item.is-open {
  border-left-width: 3px;
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.3),
    0 0 22px rgba(223, 87, 0, 0.06);
}

.faq-premium--canvas .faq-q {
  padding: clamp(1.15rem, 2.3vw, 1.35rem) clamp(1.15rem, 2.5vw, 1.4rem);
}

.faq-premium--canvas .faq-q-text {
  font-size: clamp(0.9rem, 1.55vw, 0.96rem);
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.4;
  text-transform: none;
}

.faq-premium--canvas .faq-icon {
  border-color: rgba(223, 87, 0, 0.35);
}

.faq-premium--canvas .faq-item.is-open .faq-icon {
  border-color: rgba(223, 87, 0, 0.55);
  box-shadow: 0 0 8px rgba(223, 87, 0, 0.12);
}

.faq-premium--canvas .faq-a {
  transition: max-height 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-premium--canvas .faq-a-inner {
  padding: 0 clamp(1.15rem, 2.5vw, 1.4rem) clamp(1.1rem, 2.3vw, 1.35rem);
}

.faq-premium--canvas .faq-a p {
  font-size: clamp(0.88rem, 1.5vw, 0.93rem);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.76);
}

.faq-premium--canvas .faq-cta-left h3 {
  font-weight: 700;
}

@media (max-width: 720px) {
  .faq-premium--canvas .faq-cta {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
  }

  .faq-premium--canvas .faq-cta-right {
    flex-direction: column;
  }

  .faq-premium--canvas .faq-cta-right .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .faq-premium--canvas {
    padding-top: 3.5rem;
    padding-bottom: 4rem;
  }

  .faq-premium--canvas .faq-q {
    padding: 1.1rem 1rem;
    gap: 0.8rem;
  }

  .faq-premium--canvas .faq-q-text {
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .faq-premium--canvas .faq-a-inner {
    padding: 0 1rem 1.1rem;
  }

  .faq-premium--canvas .faq-a p {
    font-size: 0.9rem;
    line-height: 1.72;
  }

  .faq-premium--canvas .faq-icon {
    width: 1.55rem;
    height: 1.55rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .faq-premium--canvas .faq-item:hover,
  .faq-premium--canvas .faq-cta:hover {
    box-shadow: none;
  }
}

/* Premium FAQ — garage page (canvas-style inner pages) */
.faq-premium--garage {
  position: relative;
  background: transparent;
  padding: clamp(3.5rem, 7vw, 5rem) 1.25rem clamp(3.75rem, 7.5vw, 5.25rem);
}

.faq-premium--garage .wrap {
  position: relative;
  z-index: 1;
}

.faq-premium--garage .faq-accordion {
  gap: clamp(1rem, 1.85vw, 1.25rem);
}

.faq-premium--garage .faq-item {
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  transition:
    box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.45s ease,
    background 0.45s ease;
}

.faq-premium--garage .faq-item:hover {
  transform: none;
  border-color: rgba(223, 87, 0, 0.22);
  background: rgba(255, 255, 255, 0.045);
  box-shadow:
    0 8px 22px rgba(0, 0, 0, 0.32),
    0 0 0 1px rgba(223, 87, 0, 0.1),
    0 0 26px rgba(223, 87, 0, 0.14),
    0 0 48px rgba(223, 87, 0, 0.06);
}

.faq-premium--garage .faq-item.is-open {
  border-left-width: 3px;
  box-shadow:
    0 10px 26px rgba(0, 0, 0, 0.34),
    0 0 36px rgba(223, 87, 0, 0.09);
}

.faq-premium--garage .faq-q {
  padding: clamp(1.1rem, 2.2vw, 1.3rem) clamp(1.1rem, 2.5vw, 1.35rem);
}

.faq-premium--garage .faq-q-text {
  font-size: clamp(0.9rem, 1.6vw, 0.97rem);
  line-height: 1.35;
}

.faq-premium--garage .faq-a {
  transition: max-height 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-premium--garage .faq-a-inner {
  padding: 0 clamp(1.1rem, 2.5vw, 1.35rem) clamp(1.05rem, 2.2vw, 1.3rem);
  transition:
    opacity 0.42s ease 0.05s,
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1) 0.05s;
}

.faq-premium--garage .faq-a p {
  font-size: clamp(0.88rem, 1.5vw, 0.92rem);
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.74);
}

@media (max-width: 560px) {
  .faq-premium--garage .faq-q {
    padding: 1.05rem 1rem;
    gap: 0.75rem;
  }

  .faq-premium--garage .faq-q-text {
    font-size: 0.88rem;
    letter-spacing: 0.03em;
  }

  .faq-premium--garage .faq-a-inner {
    padding: 0 1rem 1.05rem;
  }

  .faq-premium--garage .faq-a p {
    font-size: 0.88rem;
    line-height: 1.68;
  }

  .faq-premium--garage .faq-icon {
    width: 1.55rem;
    height: 1.55rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .faq-premium--garage .faq-item:hover {
    box-shadow: none;
  }
}
