/* ============================================================
   ALABAMA ROOFING BROKERS — Stylesheet
   Design: "Architectural & Airy"
   Ink: steel charcoal-blue | Accent: logo gold | Base: warm off-white
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  /* Color */
  --ink:        #1a2332;   /* deep steel charcoal-blue */
  --ink-soft:   #2c3a4f;
  --slate:      #5a6b80;
  --slate-lite: #8a98a8;
  --line:       #e3e6ea;
  --base:       #fafaf8;   /* warm off-white */
  --surface:    #ffffff;
  --surface-2:  #f3f4f2;
  --gold:       #f2a91b;   /* logo gold */
  --gold-deep:  #d4900c;
  --gold-soft:  #fdf3dc;
  --white:      #ffffff;

  /* Type */
  --font-display: 'Archivo', system-ui, sans-serif;
  --font-body: 'Source Sans 3', system-ui, sans-serif;

  /* Spacing scale (8px base) */
  --s-1: 0.5rem;
  --s-2: 1rem;
  --s-3: 1.5rem;
  --s-4: 2rem;
  --s-5: 3rem;
  --s-6: 4rem;
  --s-7: 6rem;
  --s-8: 8rem;

  /* Other */
  --radius: 4px;
  --radius-lg: 10px;
  --maxw: 1280px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-sm: 0 2px 8px rgba(26, 35, 50, 0.06);
  --shadow-md: 0 12px 32px rgba(26, 35, 50, 0.10);
  --shadow-lg: 0 24px 60px rgba(26, 35, 50, 0.16);
  --header-h: 84px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--base);
  line-height: 1.65;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 2px;
  background: var(--gold);
  display: inline-block;
}

/* ---------- Layout helpers ---------- */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--s-4); }
.section { padding: var(--s-8) 0; }
.section-sm { padding: var(--s-7) 0; }
@media (max-width: 768px) {
  .section { padding: var(--s-7) 0; }
  .section-sm { padding: var(--s-6) 0; }
}

/* Ridge-line divider — the signature motif (an abstract roof peak) */
.ridge {
  width: 100%; height: 22px;
  display: block;
  color: var(--gold);
}
.ridge svg { width: 100%; height: 100%; display: block; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 0.95rem 1.6rem;
  border-radius: var(--radius);
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease), color 0.25s var(--ease);
  white-space: nowrap;
  min-height: 48px;
}
.btn-primary {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 6px 18px rgba(242, 169, 27, 0.35);
}
.btn-primary:hover { background: var(--gold-deep); transform: translateY(-2px); box-shadow: 0 10px 26px rgba(242, 169, 27, 0.45); }
.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark:hover { background: var(--ink-soft); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn-light { background: var(--white); color: var(--ink); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn svg { width: 18px; height: 18px; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.topbar {
  background: var(--ink);
  color: var(--white);
  font-size: 0.84rem;
  letter-spacing: 0.02em;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  gap: var(--s-2);
}
.topbar a { color: var(--gold); font-weight: 700; }
.topbar .tagline { color: rgba(255,255,255,0.82); font-weight: 600; }
.topbar .callout { display: inline-flex; align-items: center; gap: 0.5rem; }
.topbar .callout svg { width: 15px; height: 15px; color: var(--gold); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s var(--ease), padding 0.3s var(--ease);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  transition: height 0.3s var(--ease);
}
.site-header.scrolled .nav { height: 68px; }
.brand img { height: 52px; width: auto; transition: height 0.3s var(--ease); }
.site-header.scrolled .brand img { height: 42px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.nav-links > li > a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.6rem 0.85rem;
  border-radius: var(--radius);
  color: var(--ink-soft);
  transition: color 0.2s, background 0.2s;
  position: relative;
}
.nav-links > li > a:hover { color: var(--ink); background: var(--surface-2); }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown-toggle { display: inline-flex; align-items: center; gap: 0.3rem; }
.dropdown-toggle svg { width: 14px; height: 14px; transition: transform 0.25s; }
.has-dropdown:hover .dropdown-toggle svg { transform: rotate(180deg); }
.dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 210px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0.22s;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: block;
  padding: 0.6rem 0.85rem;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: background 0.18s, color 0.18s;
}
.dropdown a:hover { background: var(--gold-soft); color: var(--ink); }

.nav-cta { display: flex; align-items: center; gap: 0.75rem; }

/* Mobile nav: swap desktop links for hamburger */
/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 48px; height: 48px;
  padding: 12px;
}
.hamburger span {
  display: block;
  height: 2.5px;
  width: 100%;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile nav: swap desktop links for hamburger (placed AFTER base rules so it wins) */
@media (max-width: 1040px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(86vw, 380px);
  background: var(--white);
  z-index: 200;
  padding: calc(var(--header-h) + 1rem) var(--s-4) var(--s-4);
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}
.mobile-menu .submenu a { font-size: 1rem; font-weight: 500; padding-left: 1rem; color: var(--slate); border: none; }
.mobile-menu .mobile-cta { margin-top: var(--s-3); display: grid; gap: 0.75rem; }
.mobile-menu .mobile-cta .btn { width: 100%; }
.mobile-close {
  position: absolute;
  top: 1.4rem; right: 1.4rem;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
}
.mobile-close svg { width: 26px; height: 26px; }
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 35, 50, 0.5);
  backdrop-filter: blur(2px);
  z-index: 150;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s;
}
.overlay.show { opacity: 1; visibility: visible; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(15, 21, 32, 0.92) 0%, rgba(15, 21, 32, 0.7) 42%, rgba(15, 21, 32, 0.25) 100%);
}
.hero-inner { padding: var(--s-7) 0; max-width: 760px; }
.hero h1 {
  color: var(--white);
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin: var(--s-3) 0 var(--s-3);
}
.hero h1 .gold { color: var(--gold); }
.hero .lede {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.88);
  max-width: 560px;
  margin-bottom: var(--s-4);
}
.hero .eyebrow { color: var(--gold); }
.hero .eyebrow::before { background: var(--gold); }
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--s-2); }

/* Hero promise strip */
.hero-promises {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(15, 21, 32, 0.55);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,255,255,0.12);
  z-index: 1;
}
.hero-promises .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-2);
  padding-top: 1.1rem; padding-bottom: 1.1rem;
}
.promise { display: flex; align-items: center; gap: 0.75rem; color: var(--white); }
.promise svg { width: 26px; height: 26px; color: var(--gold); flex-shrink: 0; }
.promise b { font-family: var(--font-display); font-weight: 700; font-size: 1rem; display: block; line-height: 1.2; }
.promise span { font-size: 0.82rem; color: rgba(255,255,255,0.7); }
@media (max-width: 768px) {
  .hero { min-height: auto; flex-direction: column; align-items: stretch; }
  .hero > .container { width: 100%; }
  .hero-promises { position: static; background: var(--ink); width: 100%; order: 2; }
  .hero-promises .container { grid-template-columns: 1fr; gap: 0.9rem; }
}

/* ============================================================
   SECTION HEADINGS
   ============================================================ */
.sec-head { max-width: 760px; margin-bottom: var(--s-5); }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head.center .eyebrow { justify-content: center; }
.sec-head h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  margin: var(--s-2) 0 var(--s-2);
}
.sec-head p { color: var(--slate); font-size: 1.1rem; }

/* ============================================================
   INTRO / VALUE
   ============================================================ */
.intro { background: var(--surface); }
.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--s-6);
  align-items: center;
}
.intro-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
}
.intro-media img { width: 100%; height: 100%; object-fit: cover; }
.intro-badge {
  position: absolute;
  bottom: var(--s-3); left: var(--s-3);
  background: var(--gold);
  color: var(--ink);
  padding: 0.85rem 1.2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.intro-badge .num { font-family: var(--font-display); font-weight: 900; font-size: 1.9rem; line-height: 1; }
.intro-badge .lbl { font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.intro-body p { margin-bottom: var(--s-3); color: var(--ink-soft); }
.intro-body p strong { color: var(--ink); }
@media (max-width: 880px) {
  .intro-grid { grid-template-columns: 1fr; gap: var(--s-4); }
}

/* Stat row */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-3);
  margin-top: var(--s-5);
  padding-top: var(--s-5);
  border-top: 1px solid var(--line);
}
.stat .n { font-family: var(--font-display); font-weight: 900; font-size: clamp(2rem, 4vw, 2.8rem); color: var(--ink); line-height: 1; letter-spacing: -0.02em; }
.stat .n .gold { color: var(--gold-deep); }
.stat .l { font-size: 0.9rem; color: var(--slate); margin-top: 0.4rem; }
@media (max-width: 768px) { .stats { grid-template-columns: repeat(2, 1fr); gap: var(--s-4) var(--s-3); } }

/* ============================================================
   MISSION
   ============================================================ */
.mission { background: var(--ink); color: var(--white); position: relative; overflow: hidden; }
.mission h2 { color: var(--white); }
.mission .sec-head p { color: rgba(255,255,255,0.7); }
.mission .eyebrow { color: var(--gold); }
.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-3);
  margin-top: var(--s-5);
}
.mission-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: var(--s-4);
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), border-color 0.3s;
}
.mission-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.07); border-color: rgba(242,169,27,0.4); }
.mission-card .ic {
  width: 48px; height: 48px;
  border-radius: var(--radius);
  background: rgba(242,169,27,0.15);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--s-2);
}
.mission-card .ic svg { width: 24px; height: 24px; color: var(--gold); }
.mission-card h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 0.5rem; }
.mission-card p { color: rgba(255,255,255,0.72); font-size: 0.98rem; }
@media (max-width: 768px) { .mission-grid { grid-template-columns: 1fr; } }

/* ============================================================
   PRODUCTS
   ============================================================ */
.products { background: var(--base); }
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-3);
}
.product-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.product-media { aspect-ratio: 16 / 11; overflow: hidden; position: relative; }
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.product-card:hover .product-media img { transform: scale(1.06); }
.product-tag {
  position: absolute; top: 0.85rem; left: 0.85rem;
  background: rgba(255,255,255,0.95);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
  border-radius: 100px;
}
.product-body { padding: var(--s-3); display: flex; flex-direction: column; flex-grow: 1; }
.product-body h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.product-body p { color: var(--slate); font-size: 0.96rem; flex-grow: 1; }
.product-link {
  margin-top: var(--s-2);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--gold-deep);
  display: inline-flex; align-items: center; gap: 0.4rem;
  transition: gap 0.25s var(--ease);
}
.product-card:hover .product-link { gap: 0.7rem; }
.product-link svg { width: 16px; height: 16px; }
@media (max-width: 980px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .product-grid { grid-template-columns: 1fr; } }

/* ============================================================
   COLOR CHART
   ============================================================ */
.colors { background: var(--surface); }
.color-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-3);
  margin-bottom: var(--s-5);
}
.swatch {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.swatch:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.swatch-img { aspect-ratio: 3 / 2; overflow: hidden; }
.swatch-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.swatch:hover .swatch-img img { transform: scale(1.05); }
.swatch-name { padding: 0.7rem 0.9rem; font-family: var(--font-display); font-weight: 600; font-size: 0.92rem; }
.swatch-name .dot { display: inline-block; width: 11px; height: 11px; border-radius: 50%; margin-right: 0.5rem; vertical-align: middle; border: 1px solid rgba(0,0,0,0.1); }
@media (max-width: 880px) { .color-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .color-grid { grid-template-columns: repeat(2, 1fr); } }

.color-note {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: var(--s-3);
  background: var(--gold-soft);
  border: 1px solid #f3e2bd;
  border-radius: var(--radius-lg);
  padding: var(--s-4);
}
.color-note p { font-size: 1.05rem; color: var(--ink-soft); max-width: 560px; }
.color-note strong { color: var(--ink); }

/* ============================================================
   WHY CHOOSE
   ============================================================ */
.why { background: var(--base); }
.why-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: var(--s-6);
  align-items: center;
}
.why-list { display: grid; gap: 0.4rem; }
.why-item {
  display: flex;
  gap: var(--s-2);
  align-items: flex-start;
  padding: var(--s-2) 0;
  border-bottom: 1px solid var(--line);
}
.why-item:last-child { border-bottom: none; }
.why-check {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--gold-soft);
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.why-check svg { width: 17px; height: 17px; color: var(--gold-deep); }
.why-item h3 { font-size: 1.08rem; margin-bottom: 0.1rem; }
.why-item p { font-size: 0.94rem; color: var(--slate); }
.why-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 3 / 4;
}
.why-media img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 980px) {
  .why-grid { grid-template-columns: 1fr; gap: var(--s-4); }
  .why-media { aspect-ratio: 16 / 10; order: -1; }
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { background: var(--ink); color: var(--white); }
.gallery h2 { color: var(--white); }
.gallery .sec-head p { color: rgba(255,255,255,0.7); }
.gallery .eyebrow { color: var(--gold); }
.gallery-grid {
  columns: 3;
  column-gap: var(--s-2);
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: var(--s-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--ink-soft);
}
.gallery-item img { width: 100%; display: block; transition: transform 0.6s var(--ease); }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,21,32,0.5), transparent 50%);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}
.gallery-item:hover::after { opacity: 1; }
.gallery-cap {
  position: absolute;
  bottom: 0.9rem; left: 0.9rem; right: 0.9rem;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  z-index: 1;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
.gallery-item:hover .gallery-cap { opacity: 1; transform: translateY(0); }
@media (max-width: 880px) { .gallery-grid { columns: 2; } }
@media (max-width: 540px) { .gallery-grid { columns: 1; } }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(10, 14, 22, 0.94);
  z-index: 300;
  display: flex; align-items: center; justify-content: center;
  padding: var(--s-4);
  opacity: 0; visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.lightbox-close, .lightbox-nav {
  position: absolute;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  transition: background 0.2s, transform 0.2s;
}
.lightbox-close { top: 1.5rem; right: 1.5rem; }
.lightbox-close:hover, .lightbox-nav:hover { background: rgba(255,255,255,0.22); }
.lightbox-nav { top: 50%; transform: translateY(-50%); }
.lightbox-nav.prev { left: 1.5rem; }
.lightbox-nav.next { right: 1.5rem; }
.lightbox-nav:hover { transform: translateY(-50%) scale(1.08); }
.lightbox svg { width: 26px; height: 26px; }
@media (max-width: 600px) { .lightbox-nav { width: 44px; height: 44px; } .lightbox-nav.prev { left: 0.5rem; } .lightbox-nav.next { right: 0.5rem; } }

/* ============================================================
   RESOURCES (PDFs)
   ============================================================ */
.resources { background: var(--surface); }
.resource-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-3);
}
.resource-card {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  padding: var(--s-4);
  background: var(--base);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
}
.resource-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.resource-card .ic {
  width: 46px; height: 46px;
  border-radius: var(--radius);
  background: var(--gold-soft);
  display: flex; align-items: center; justify-content: center;
}
.resource-card .ic svg { width: 24px; height: 24px; color: var(--gold-deep); }
.resource-card h3 { font-size: 1.1rem; }
.resource-card p { font-size: 0.9rem; color: var(--slate); flex-grow: 1; }
.resource-card .go { font-family: var(--font-display); font-weight: 700; font-size: 0.88rem; color: var(--gold-deep); display: inline-flex; align-items: center; gap: 0.4rem; }
.resource-card .go svg { width: 15px; height: 15px; transition: transform 0.25s var(--ease); }
.resource-card:hover .go svg { transform: translateX(4px); }
@media (max-width: 980px) { .resource-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .resource-grid { grid-template-columns: 1fr; } }

/* ============================================================
   CONTACT / QUOTE
   ============================================================ */
.contact { background: var(--base); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-6);
  align-items: start;
}
.contact-info .eyebrow { margin-bottom: var(--s-2); }
.contact-info h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: var(--s-3); }
.contact-info > p { color: var(--slate); font-size: 1.1rem; margin-bottom: var(--s-4); }
.contact-detail {
  display: flex; gap: var(--s-2); align-items: flex-start;
  padding: var(--s-3) 0;
  border-bottom: 1px solid var(--line);
}
.contact-detail .ic {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
}
.contact-detail .ic svg { width: 20px; height: 20px; color: var(--gold-deep); }
.contact-detail .lbl { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--slate-lite); font-weight: 600; }
.contact-detail .val { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; color: var(--ink); }
.contact-detail .val a:hover { color: var(--gold-deep); }
.hours-row { display: flex; justify-content: space-between; font-size: 0.96rem; padding: 0.25rem 0; }
.hours-row span:first-child { color: var(--slate); }
.hours-row span:last-child { font-weight: 600; }

/* Form */
.quote-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--s-5);
  box-shadow: var(--shadow-md);
}
.quote-form h3 { font-size: 1.5rem; margin-bottom: 0.4rem; }
.quote-form .sub { color: var(--slate); font-size: 0.96rem; margin-bottom: var(--s-3); }
.field { margin-bottom: var(--s-3); }
.field label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 0.4rem; color: var(--ink-soft); }
.field label .req { color: var(--gold-deep); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--base);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(242, 169, 27, 0.15);
  background: var(--white);
}
.field textarea { resize: vertical; min-height: 110px; }
.field.error input, .field.error select, .field.error textarea { border-color: #d9534f; }
.field-msg { font-size: 0.82rem; color: #d9534f; margin-top: 0.3rem; min-height: 1em; display: none; }
.field.error .field-msg { display: block; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-2); }
.quote-form .btn { width: 100%; margin-top: var(--s-1); }
.form-note { font-size: 0.82rem; color: var(--slate-lite); text-align: center; margin-top: var(--s-2); }
@media (max-width: 980px) { .contact-grid { grid-template-columns: 1fr; gap: var(--s-4); } }
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } .quote-form { padding: var(--s-4); } }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative;
  color: var(--white);
  text-align: center;
  overflow: hidden;
}
.cta-banner-bg { position: absolute; inset: 0; z-index: -2; }
.cta-banner-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-banner-bg::after { content: ""; position: absolute; inset: 0; background: rgba(15, 21, 32, 0.86); }
.cta-banner .container { padding-top: var(--s-7); padding-bottom: var(--s-7); }
.cta-banner h2 { color: var(--white); font-size: clamp(2rem, 4.5vw, 3.4rem); max-width: 820px; margin: var(--s-2) auto var(--s-3); }
.cta-banner .eyebrow { color: var(--gold); justify-content: center; }
.cta-banner p { color: rgba(255,255,255,0.82); font-size: 1.15rem; margin-bottom: var(--s-4); }
.cta-banner .phone-big {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: var(--gold);
  display: inline-block;
  margin-bottom: var(--s-4);
  letter-spacing: -0.02em;
  transition: transform 0.25s var(--ease);
}
.cta-banner .phone-big:hover { transform: scale(1.03); }
.cta-actions { display: flex; flex-wrap: wrap; gap: var(--s-2); justify-content: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #11161f; color: rgba(255,255,255,0.7); padding-top: var(--s-7); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.3fr;
  gap: var(--s-5);
  padding-bottom: var(--s-5);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand img { height: 64px; width: auto; margin-bottom: var(--s-2); }
.footer-brand p { font-size: 0.95rem; max-width: 320px; margin-bottom: var(--s-3); }
.footer-brand .badges { display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; }
.footer-brand .badges img { height: 34px; width: auto; margin: 0; border-radius: 6px; box-shadow: var(--shadow-sm); }
.footer h4 {
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--s-3);
}
.footer-links { display: grid; gap: 0.65rem; }
.footer-links a { font-size: 0.96rem; transition: color 0.2s, padding-left 0.2s; }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact div { margin-bottom: var(--s-2); font-size: 0.96rem; }
.footer-contact .lbl { color: var(--slate-lite); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; display: block; margin-bottom: 0.15rem; }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--s-2);
  padding: var(--s-4) 0;
  font-size: 0.85rem;
  color: var(--slate-lite);
}
.footer-bottom a:hover { color: var(--gold); }
.footer-bottom .legal { display: flex; gap: var(--s-3); flex-wrap: wrap; }
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr; gap: var(--s-4); } }

/* ============================================================
   SCROLL PROGRESS + REVEAL
   ============================================================ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: var(--gold);
  z-index: 300;
  transition: width 0.1s linear;
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal-stagger.in > * { opacity: 1; transform: translateY(0); }

/* Back to top */
.to-top {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: 90;
  opacity: 0; visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s, background 0.2s;
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--gold); color: var(--ink); }
.to-top svg { width: 22px; height: 22px; }

/* Toast */
.toast-wrap {
  position: fixed;
  bottom: 1.5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 400;
  display: flex; flex-direction: column; gap: 0.6rem;
  width: min(92vw, 420px);
}
.toast {
  display: flex; align-items: center; gap: 0.75rem;
  background: var(--white);
  border-left: 4px solid var(--gold);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast.success { border-left-color: #2e9e5b; }
.toast.error { border-left-color: #d9534f; }
.toast .t-ic { flex-shrink: 0; width: 24px; height: 24px; }
.toast.success .t-ic { color: #2e9e5b; }
.toast.error .t-ic { color: #d9534f; }
.toast .t-body strong { display: block; font-family: var(--font-display); font-size: 0.98rem; color: var(--ink); }
.toast .t-body span { font-size: 0.88rem; color: var(--slate); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
  .reveal, .reveal-stagger > * { opacity: 1 !important; transform: none !important; }
}

/* Focus visibility */
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; border-radius: 2px; }

/* ============================================================
   MULTI-PAGE COMPONENTS
   ============================================================ */

/* Page hero (interior pages) */
.page-hero {
  position: relative;
  color: var(--white);
  overflow: hidden;
  padding: calc(var(--s-7) + 20px) 0 var(--s-6);
}
.page-hero-bg { position: absolute; inset: 0; z-index: -2; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(15,21,32,0.93) 0%, rgba(15,21,32,0.78) 55%, rgba(15,21,32,0.55) 100%);
}
.page-hero .eyebrow { color: var(--gold); }
.page-hero .eyebrow::before { background: var(--gold); }
.page-hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin: var(--s-2) 0 var(--s-2);
  max-width: 880px;
}
.page-hero p.lede {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.86);
  max-width: 640px;
  margin-bottom: var(--s-4);
}
.page-hero .hero-actions { display: flex; flex-wrap: wrap; gap: var(--s-2); }

/* Breadcrumbs */
.breadcrumbs { background: var(--surface); border-bottom: 1px solid var(--line); }
.breadcrumbs .container { display: flex; align-items: center; gap: 0.5rem; padding-top: 0.9rem; padding-bottom: 0.9rem; font-size: 0.88rem; flex-wrap: wrap; }
.breadcrumbs a { color: var(--slate); transition: color 0.2s; }
.breadcrumbs a:hover { color: var(--gold-deep); }
.breadcrumbs .sep { color: var(--slate-lite); }
.breadcrumbs .current { color: var(--ink); font-weight: 600; }

/* Prose content blocks */
.prose { max-width: 760px; }
.prose.wide { max-width: 900px; }
.prose h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); margin: var(--s-5) 0 var(--s-2); }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.3rem; margin: var(--s-4) 0 var(--s-1); }
.prose p { margin-bottom: var(--s-2); color: var(--ink-soft); }
.prose ul { margin: var(--s-2) 0 var(--s-3); display: grid; gap: 0.6rem; }
.prose ul li { position: relative; padding-left: 1.6rem; color: var(--ink-soft); }
.prose ul li::before {
  content: ""; position: absolute; left: 0; top: 0.55em;
  width: 7px; height: 7px; background: var(--gold); border-radius: 50%;
}
.prose a:not(.btn) { color: var(--gold-deep); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.prose strong { color: var(--ink); }

/* Two-column content with media */
.content-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-6);
  align-items: center;
}
.content-split.media-right .content-media { order: 2; }
.content-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
}
.content-media img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 900px) {
  .content-split { grid-template-columns: 1fr; gap: var(--s-4); }
  .content-split.media-right .content-media { order: -1; }
  .content-media { aspect-ratio: 16 / 10; }
}

/* Feature cards grid (generic) */
.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-3);
}
.feature-cards.cols-2 { grid-template-columns: repeat(2, 1fr); }
.feature-cards.cols-4 { grid-template-columns: repeat(4, 1fr); }
.fcard {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--s-4);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
}
.fcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.fcard .ic {
  width: 48px; height: 48px; border-radius: var(--radius);
  background: var(--gold-soft);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--s-2);
}
.fcard .ic svg { width: 24px; height: 24px; color: var(--gold-deep); }
.fcard h3 { font-size: 1.2rem; margin-bottom: 0.4rem; }
.fcard p { color: var(--slate); font-size: 0.96rem; }
.fcard ul { list-style: none; margin-top: 0.5rem; display: grid; gap: 0.4rem; }
.fcard ul li { position: relative; padding-left: 1.3rem; font-size: 0.94rem; color: var(--ink-soft); }
.fcard ul li::before { content: ""; position: absolute; left: 0; top: 0.5em; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }
@media (max-width: 900px) { .feature-cards, .feature-cards.cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .feature-cards, .feature-cards.cols-2, .feature-cards.cols-4 { grid-template-columns: 1fr; } }

/* Accordion (FAQ) */
.accordion { max-width: 820px; margin: 0 auto; }
.acc-group + .acc-group { margin-top: var(--s-4); }
.acc-group > h2 { font-size: 1.5rem; margin-bottom: var(--s-2); padding-bottom: 0.5rem; border-bottom: 2px solid var(--gold); display: inline-block; }
.acc-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  background: var(--surface);
  overflow: hidden;
  transition: box-shadow 0.25s, border-color 0.25s;
}
.acc-item.open { box-shadow: var(--shadow-sm); border-color: var(--slate-lite); }
.acc-q {
  width: 100%;
  text-align: left;
  padding: 1.1rem 1.3rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
  cursor: pointer;
}
.acc-q:hover { color: var(--gold-deep); }
.acc-q .chev {
  flex-shrink: 0; width: 22px; height: 22px;
  transition: transform 0.3s var(--ease);
  color: var(--gold-deep);
}
.acc-item.open .acc-q .chev { transform: rotate(180deg); }
.acc-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}
.acc-a-inner { padding: 0 1.3rem 1.2rem; color: var(--ink-soft); }
.acc-a-inner p { margin-bottom: 0.6rem; }
.acc-a-inner ul { margin: 0.5rem 0; display: grid; gap: 0.35rem; }
.acc-a-inner ul li { position: relative; padding-left: 1.4rem; }
.acc-a-inner ul li::before { content: ""; position: absolute; left: 0; top: 0.5em; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }
.acc-a-inner strong { color: var(--ink); }

/* City cards (service areas) */
.city-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-3);
}
.city-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.city-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform 0.6s var(--ease); }
.city-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(to top, rgba(15,21,32,0.92) 10%, rgba(15,21,32,0.35) 70%, rgba(15,21,32,0.2)); }
.city-card:hover img { transform: scale(1.06); }
.city-card-body { padding: var(--s-4); width: 100%; }
.city-card h3 { color: var(--white); font-size: 1.5rem; margin-bottom: 0.3rem; }
.city-card p { color: rgba(255,255,255,0.8); font-size: 0.92rem; margin-bottom: var(--s-2); }
.city-card .go { font-family: var(--font-display); font-weight: 700; font-size: 0.9rem; color: var(--gold); display: inline-flex; align-items: center; gap: 0.4rem; }
.city-card .go svg { width: 16px; height: 16px; transition: transform 0.25s var(--ease); }
.city-card:hover .go svg { transform: translateX(4px); }
@media (max-width: 900px) { .city-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .city-grid { grid-template-columns: 1fr; } }

/* Neighborhood tags */
.tag-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: var(--s-2); }
.tag {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 0.4rem 0.9rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink-soft);
}

/* Simple list grid for products */
.spec-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem 2rem;
  margin: var(--s-2) 0 var(--s-3);
}
.spec-list li { position: relative; padding-left: 1.5rem; color: var(--ink-soft); }
.spec-list li::before {
  content: ""; position: absolute; left: 0; top: 0.5em;
  width: 8px; height: 8px; background: var(--gold); border-radius: 2px; transform: rotate(45deg);
}
@media (max-width: 600px) { .spec-list { grid-template-columns: 1fr; } }

/* CTA strip (compact, reusable) */
.cta-strip { background: var(--gold-soft); border-top: 1px solid #f3e2bd; border-bottom: 1px solid #f3e2bd; }
.cta-strip .container {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--s-3);
  padding-top: var(--s-5); padding-bottom: var(--s-5);
}
.cta-strip h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 0.3rem; }
.cta-strip p { color: var(--ink-soft); font-size: 1.05rem; }
.cta-strip .cta-strip-actions { display: flex; flex-wrap: wrap; gap: var(--s-2); }

/* Active nav link (current page) */
.nav-links > li > a.active { color: var(--ink); background: var(--surface-2); }
.nav-links > li > a.active::after {
  content: ""; position: absolute; left: 0.85rem; right: 0.85rem; bottom: 0.2rem; height: 2px; background: var(--gold); border-radius: 2px;
}
.mobile-menu a.active { color: var(--gold-deep); }
