:root {
  --charcoal: #1a1a1a;
  --slate: #2d3436;
  --steel: #4a5568;
  --warm-white: #faf9f7;
  --cream: #f5f0e8;
  --accent-blue: #1e6091;
  --accent-blue-light: #2980b9;
  --accent-gold: #d4a847;
  --accent-gold-light: #e6c36a;
  --border-light: rgba(0,0,0,0.08);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.14);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.18);
  --radius: 6px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--warm-white);
  color: var(--charcoal);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ==================== HEADER ==================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(26,26,26,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--accent-gold);
  transition: all 0.3s ease;
}

.header-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-link img {
  height: 56px;
  width: auto;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-desktop a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: all 0.25s ease;
}

.nav-desktop a:hover {
  color: #fff;
  background: rgba(255,255,255,0.08);
}

.nav-cta {
  background: var(--accent-gold) !important;
  color: var(--charcoal) !important;
  font-weight: 700 !important;
  padding: 10px 22px !important;
}

.nav-cta:hover {
  background: var(--accent-gold-light) !important;
  color: var(--charcoal) !important;
}

.phone-header {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-gold);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  letter-spacing: 0.5px;
}

.phone-header svg { width: 18px; height: 18px; }

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  margin: 6px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 76px;
  left: 0;
  width: 100%;
  background: rgba(26,26,26,0.98);
  backdrop-filter: blur(16px);
  padding: 24px;
  border-bottom: 2px solid var(--accent-gold);
}

.mobile-nav.active { display: block; }

.mobile-nav a {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* ==================== HERO ==================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--slate) 100%);
  overflow: hidden;
  padding-top: 76px;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background: url('best-roofer-north-georgia-bishop-jd-roofing.webp') center/cover no-repeat;
  opacity: 0.25;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,26,26,0.6) 0%, rgba(26,26,26,0.85) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 60px 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,168,71,0.15);
  border: 1px solid rgba(212,168,71,0.3);
  color: var(--accent-gold);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 28px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

.hero-badge:hover {
  background: rgba(212,168,71,0.25);
  border-color: rgba(212,168,71,0.55);
  transform: translateY(-1px);
}

.hero-badge:focus-visible {
  outline: 2px solid var(--accent-gold);
  outline-offset: 3px;
}

.hero-badge svg { width: 16px; height: 16px; fill: var(--accent-gold); }

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 8vw, 96px);
  line-height: 0.95;
  color: #fff;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.hero h1 span {
  color: var(--accent-gold);
}

.hero-tagline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(20px, 2.5vw, 28px);
  color: rgba(255,255,255,0.85);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 12px;
  margin-bottom: 16px;
}

.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255,255,255,0.7);
  font-weight: 300;
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 36px;
  border-radius: var(--radius);
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--accent-gold);
  color: var(--charcoal);
}

.btn-primary:hover {
  background: var(--accent-gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.05);
}

.btn svg { width: 18px; height: 18px; }

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat {
  text-align: center;
}

.hero-stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px;
  color: var(--accent-gold);
  line-height: 1;
}

.hero-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.72);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  margin-top: 4px;
}

/* ==================== SECTION STYLES ==================== */
.section {
  padding: 100px 24px;
}

.section-dark {
  background: var(--charcoal);
  color: #fff;
}

.section-cream {
  background: var(--cream);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: 1.5px;
  line-height: 1;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--steel);
  max-width: 600px;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.7;
}

.section-dark .section-subtitle {
  color: rgba(255,255,255,0.78);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ==================== ROOFING SERVICES ==================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 40px 32px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent-gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-blue-light) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon svg {
  width: 26px;
  height: 26px;
  fill: #fff;
}

.service-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  color: var(--charcoal);
}

.service-card p {
  font-size: 15px;
  color: var(--steel);
  line-height: 1.7;
}

/* ==================== PORTFOLIO GALLERY ==================== */
.gallery-wrapper {
  position: relative;
  max-width: 100%;
  overflow: hidden;
}

.gallery-track {
  display: flex;
  gap: 16px;
  padding: 0 60px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  scroll-behavior: smooth;
}

.gallery-track::-webkit-scrollbar { display: none; }

.gallery-track::after {
  content: '';
  flex: 0 0 60px;
}

.gallery-item {
  flex: 0 0 340px;
  min-width: 340px;
  height: 280px;
  border-radius: 10px;
  overflow: hidden;
  scroll-snap-align: start;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-item:hover { transform: scale(1.02); }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(212,168,71,0.9);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.gallery-arrow:hover {
  background: var(--accent-gold);
  transform: translateY(-50%) scale(1.1);
}

.gallery-arrow svg {
  width: 24px;
  height: 24px;
  fill: var(--charcoal);
}

.gallery-arrow-left {
  left: 12px;
}

.gallery-arrow-right {
  right: 12px;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 40px;
  cursor: pointer;
}

.lightbox.active { display: flex; }

.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: var(--shadow-xl);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  color: #fff;
  font-size: 36px;
  cursor: pointer;
  background: none;
  border: none;
  font-weight: 300;
  z-index: 10;
}

/* ==================== ABOUT ==================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.about-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 180px;
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--warm-white);
}

.about-text h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  letter-spacing: 1.5px;
  line-height: 1;
  margin-bottom: 8px;
}

.about-text .section-label { text-align: left; }

.about-text p {
  font-size: 16px;
  color: var(--steel);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}

.about-highlight {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 14px;
  color: var(--charcoal);
}

.about-highlight svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  fill: var(--accent-gold);
}

/* ==================== MATERIALS ==================== */
.materials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.material-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 28px 24px;
  transition: all 0.3s ease;
}

.material-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: var(--accent-gold);
}

.material-card h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  color: var(--accent-gold);
}

.material-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.78);
  line-height: 1.6;
}

/* ==================== REVIEWS ==================== */
.reviews-track {
  display: flex;
  gap: 20px;
  padding: 0 24px 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  justify-content: center;
}

.reviews-track::-webkit-scrollbar { display: none; }

.review-card {
  flex: 0 0 340px;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 32px;
  scroll-snap-align: start;
  transition: all 0.3s ease;
  text-align: center;
}

.review-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.review-stars {
  color: #fbbc04;
  font-size: 20px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.review-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--steel);
  margin-bottom: 18px;
  font-style: italic;
}

.review-author {
  font-weight: 700;
  font-size: 15px;
  color: var(--charcoal);
}

.review-source {
  font-size: 12px;
  color: var(--steel);
  margin-top: 2px;
}

.review-google-icon {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--accent-blue);
  font-size: 12px;
  font-weight: 600;
  margin-top: 8px;
}

/* ==================== OTHER SERVICES ==================== */
.other-services-content {
  max-width: 1200px;
  margin: 0 auto;
}

.deck-showcase {
  margin-bottom: 56px;
}

.deck-showcase h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 12px;
  color: var(--charcoal);
}

.deck-intro {
  text-align: center;
  font-size: 15px;
  color: var(--steel);
  margin-bottom: 28px;
  font-style: italic;
}

.ba-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

.ba-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  height: 320px;
}

.ba-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 2px;
  color: #fff;
  background: rgba(0,0,0,0.6);
  padding: 6px 18px;
  border-radius: 4px;
}

/* ==================== BEFORE/AFTER SLIDER ==================== */
.ba-slider {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto 32px;
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  overflow: hidden;
  user-select: none;
  cursor: ew-resize;
  box-shadow: var(--shadow-md);
  touch-action: none;
  --ba-pos: 50%;
}

.ba-slider-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.ba-slider-img-after {
  clip-path: inset(0 0 0 var(--ba-pos));
}

.ba-slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--ba-pos);
  width: 3px;
  background: #fff;
  transform: translateX(-50%);
  pointer-events: none;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.15), 0 2px 12px rgba(0,0,0,0.3);
}

.ba-slider-knob {
  position: absolute;
  top: 50%;
  left: var(--ba-pos);
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 14px rgba(0,0,0,0.35);
  pointer-events: none;
}

.ba-slider-knob::before,
.ba-slider-knob::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  transform: translateY(-50%);
}

.ba-slider-knob::before {
  right: 60%;
  border-right: 8px solid var(--charcoal);
}

.ba-slider-knob::after {
  left: 60%;
  border-left: 8px solid var(--charcoal);
}

.ba-slider-tag {
  position: absolute;
  top: 14px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 2px;
  color: #fff;
  background: rgba(0,0,0,0.65);
  padding: 6px 14px;
  border-radius: 4px;
  pointer-events: none;
  z-index: 2;
}

.ba-slider-tag-before { left: 14px; }
.ba-slider-tag-after { right: 14px; background: rgba(212,168,71,0.92); color: var(--charcoal); }

.ba-slider-hint {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
  pointer-events: none;
  z-index: 2;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.ba-slider.ba-interacted .ba-slider-hint { opacity: 0; }

.ba-slider:focus-visible {
  outline: 3px solid var(--accent-gold);
  outline-offset: 2px;
}

@media (max-width: 600px) {
  .ba-slider-knob { width: 40px; height: 40px; }
  .ba-slider-tag { font-size: 15px; padding: 4px 10px; top: 10px; }
  .ba-slider-hint { font-size: 11px; }
}

/* ==================== SERVICES GALLERY (horizontal scroller) ==================== */
.services-gallery-wrapper {
  position: relative;
  max-width: 100%;
  overflow: hidden;
  margin-bottom: 48px;
}

.services-gallery-track {
  display: flex;
  gap: 20px;
  padding: 8px 60px 20px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  scroll-behavior: smooth;
}

.services-gallery-track::-webkit-scrollbar { display: none; }

.services-gallery-track::after {
  content: '';
  flex: 0 0 60px;
}

.services-card {
  flex: 0 0 400px;
  min-width: 400px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.services-card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #e9eef2;
}

/* The card's before/after slider occupies the full media area */
.services-card-media .ba-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  max-width: none;
  margin: 0;
  aspect-ratio: auto;
  border-radius: 0;
  box-shadow: none;
}

/* Single-image card (no slider) — still clickable to enlarge */
.services-card-single {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  cursor: zoom-in;
  overflow: hidden;
}

.services-card-single img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.services-card-single:hover img { transform: scale(1.06); }

.services-card-body {
  padding: 18px 22px 22px;
  text-align: center;
}

.services-card-body h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.services-card-body p {
  font-size: 13px;
  color: var(--steel);
  line-height: 1.5;
  margin: 0;
}

/* Services scroll arrows */
.services-gallery-wrapper .gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(212,168,71,0.92);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.services-gallery-wrapper .gallery-arrow:hover {
  background: var(--accent-gold);
  transform: translateY(-50%) scale(1.1);
}

.services-gallery-wrapper .gallery-arrow svg {
  width: 24px;
  height: 24px;
  fill: var(--charcoal);
}

.services-gallery-wrapper .gallery-arrow-left { left: 12px; }
.services-gallery-wrapper .gallery-arrow-right { right: 12px; }

.services-gallery-intro {
  text-align: center;
  font-size: 14px;
  color: var(--steel);
  margin-bottom: 20px;
  font-style: italic;
}

@media (max-width: 700px) {
  .services-card { flex: 0 0 86vw; min-width: 86vw; }
  .services-gallery-track { padding: 8px 16px 20px; gap: 14px; }
  .services-gallery-track::after { flex-basis: 16px; }
  .services-gallery-wrapper .gallery-arrow { display: none; }
  .services-card-body h4 { font-size: 18px; }
}

/* ==================== REVIEWS GALLERY (image scroller) ==================== */
.reviews-gallery-wrapper {
  position: relative;
  max-width: 100%;
  overflow: hidden;
}

.reviews-gallery-track {
  display: flex;
  gap: 16px;
  padding: 8px 60px 20px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  scroll-behavior: smooth;
}

.reviews-gallery-track::-webkit-scrollbar { display: none; }

.reviews-gallery-track::after {
  content: '';
  flex: 0 0 60px;
}

.review-image-item {
  flex: 0 0 340px;
  min-width: 340px;
  height: 420px;
  border-radius: 12px;
  overflow: hidden;
  scroll-snap-align: start;
  position: relative;
  cursor: zoom-in;
  background: #fff;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-image-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.review-image-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #fff;
  display: block;
}

.reviews-gallery-wrapper .gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(212,168,71,0.92);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.reviews-gallery-wrapper .gallery-arrow:hover {
  background: var(--accent-gold);
  transform: translateY(-50%) scale(1.1);
}

.reviews-gallery-wrapper .gallery-arrow svg {
  width: 24px;
  height: 24px;
  fill: var(--charcoal);
}

.reviews-gallery-wrapper .gallery-arrow-left { left: 12px; }
.reviews-gallery-wrapper .gallery-arrow-right { right: 12px; }

@media (max-width: 700px) {
  .review-image-item { flex: 0 0 78vw; min-width: 78vw; height: 380px; }
  .reviews-gallery-track { padding: 8px 16px 20px; gap: 12px; }
  .reviews-gallery-track::after { flex-basis: 16px; }
  .reviews-gallery-wrapper .gallery-arrow { display: none; }
}

/* Our Work gallery — also make sure single-image items open lightbox cursor */
.gallery-item { cursor: zoom-in; }

/* Before/after card in Our Work gallery uses same ba-slider — but since the
   card is fixed-size, scale the tag/knob slightly */
.gallery-item .ba-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  max-width: none;
  margin: 0;
  aspect-ratio: auto;
  border-radius: 10px;
  box-shadow: none;
  cursor: ew-resize;
}
.gallery-item .ba-slider .ba-slider-knob { width: 40px; height: 40px; }
.gallery-item .ba-slider .ba-slider-tag { font-size: 14px; padding: 4px 10px; top: 10px; }

/* Don't scale up when hovering a slider card — user is trying to drag, not preview */
.gallery-item:has(.ba-slider):hover { transform: none; }
.gallery-item:has(.ba-slider):hover img { transform: none; }
/* :has() fallback: explicitly stop img scaling inside .ba-slider */
.gallery-item .ba-slider img { transition: none; }
.gallery-item .ba-slider:hover img { transform: none; }

.services-bubble-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.bubble-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 22px;
  transition: all 0.3s ease;
}

.bubble-item:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--accent-gold);
}

.bubble-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--accent-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bubble-icon svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

.bubble-item h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.bubble-item p {
  font-size: 13px;
  color: var(--steel);
  line-height: 1.5;
}

.other-note {
  text-align: center;
  margin-top: 36px;
  font-size: 15px;
  color: var(--steel);
  font-style: italic;
  background: rgba(30,96,145,0.06);
  padding: 16px 24px;
  border-radius: 8px;
  border-left: 4px solid var(--accent-blue);
}

/* ==================== SERVICE AREAS ==================== */
.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}

.area-tag {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.8px;
  padding: 10px 22px;
  border-radius: 50px;
  transition: all 0.25s ease;
}

.area-tag:hover {
  background: var(--accent-gold);
  color: var(--charcoal);
  border-color: var(--accent-gold);
}

/* Featured area tags link to dedicated landing pages */
a.area-tag-featured {
  text-decoration: none;
  border-color: rgba(212,168,71,0.4);
  color: var(--accent-gold);
  cursor: pointer;
  position: relative;
}

a.area-tag-featured::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 6px;
  vertical-align: 2px;
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  border-left: 4px solid currentColor;
  opacity: 0.65;
}

a.area-tag-featured:hover {
  background: var(--accent-gold);
  color: var(--charcoal);
  border-color: var(--accent-gold);
  transform: translateY(-1px);
}

/* ==================== CONTACT ==================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.contact-info h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.contact-info p {
  font-size: 16px;
  color: var(--steel);
  line-height: 1.8;
  margin-bottom: 28px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 16px;
  color: var(--charcoal);
}

.contact-detail svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  fill: var(--accent-blue);
}

.contact-detail a {
  color: var(--accent-blue);
  text-decoration: none;
  font-weight: 600;
}

.contact-detail a:hover { text-decoration: underline; }

.contact-josh {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-josh img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent-gold);
}

.contact-josh-text {
  font-size: 14px;
  color: var(--steel);
}

.contact-josh-text strong {
  display: block;
  font-size: 16px;
  color: var(--charcoal);
}

.contact-form {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--steel);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  color: var(--charcoal);
  background: var(--warm-white);
  transition: border-color 0.25s ease;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent-blue);
}

.form-group textarea {
  height: 120px;
  resize: vertical;
}

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--accent-blue);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-submit:hover {
  background: var(--accent-blue-light);
  transform: translateY(-1px);
}

/* ==================== FOOTER ==================== */
.site-footer {
  background: var(--charcoal);
  border-top: 3px solid var(--accent-gold);
  padding: 64px 24px 32px;
  color: rgba(255,255,255,0.7);
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand > img {
  height: 50px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 300px;
}

.footer-badges {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-badges img {
  height: 52px;
  width: auto;
  border-radius: 4px;
}

.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-gold);
  margin-bottom: 18px;
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 14px;
  padding: 5px 0;
  transition: color 0.2s ease;
}

.footer-col a:hover { color: #fff; }

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  fill: var(--accent-gold);
  flex-shrink: 0;
}

.footer-contact-item a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  display: inline;
  padding: 0;
}

.footer-contact-item a:hover { color: #fff; }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

/* ==================== FAQ ==================== */
.faq-wrapper {
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  margin-bottom: 14px;
  overflow: hidden;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.faq-item[open] {
  box-shadow: var(--shadow-sm);
  border-color: var(--accent-gold);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: var(--charcoal);
  line-height: 1.4;
  user-select: none;
  transition: background 0.2s ease;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary:hover {
  background: rgba(212,168,71,0.04);
}

.faq-item summary::after {
  content: '';
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--accent-gold);
  border-bottom: 2px solid var(--accent-gold);
  transform: rotate(45deg);
  margin-top: -4px;
  transition: transform 0.25s ease;
}

.faq-item[open] summary::after {
  transform: rotate(-135deg);
  margin-top: 4px;
}

.faq-answer {
  padding: 0 26px 24px;
  color: var(--steel);
  font-size: 16px;
  line-height: 1.75;
}

.faq-answer p {
  margin-bottom: 10px;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer a {
  color: var(--accent-blue);
  text-decoration: none;
  font-weight: 600;
}

.faq-answer a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .faq-item summary {
    padding: 18px 20px;
    font-size: 15px;
  }
  .faq-answer {
    padding: 0 20px 20px;
    font-size: 15px;
  }
}

/* ==================== CTA BANNER ==================== */
.cta-banner {
  background: linear-gradient(135deg, var(--accent-blue) 0%, #174f77 100%);
  padding: 72px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: rgba(255,255,255,0.03);
  border-radius: 50%;
}

.cta-banner h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  color: #fff;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.cta-banner p {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner .btn-primary {
  background: var(--accent-gold);
  color: var(--charcoal);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image { max-width: 500px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-desktop { display: none; }
  .hamburger { display: block; }

  /* Keep tap-to-call visible on mobile — just the icon, not the full number */
  .phone-header {
    font-size: 0;
    gap: 0;
    padding: 10px;
    background: rgba(212,168,71,0.15);
    border: 1px solid rgba(212,168,71,0.3);
    border-radius: 50%;
  }
  .phone-header svg { width: 20px; height: 20px; }

  .header-inner { height: 64px; }
  .hero { padding-top: 64px; }
  .logo-link img { height: 44px; }

  .section { padding: 64px 16px; }

  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .hero-stat-num { font-size: 32px; }

  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .ba-row { grid-template-columns: 1fr; }
  .ba-item { height: 240px; }

  .gallery-item { flex: 0 0 280px; min-width: 280px; height: 220px; }

  .review-card { flex: 0 0 300px; padding: 24px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  .about-highlights { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; max-width: 300px; }
  .services-bubble-list { grid-template-columns: 1fr; }
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-in {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* ==================== REDUCED MOTION ==================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .animate-in { opacity: 1 !important; }
}

/* ==================== MOBILE ACTION BAR ==================== */
.mobile-action-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--charcoal);
  border-top: 2px solid var(--accent-gold);
  box-shadow: 0 -4px 16px rgba(0,0,0,0.25);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px));
  gap: 8px;
}

.mobile-action-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 12px;
  border-radius: var(--radius);
  transition: background 0.2s ease;
  min-height: 48px;
}

.mobile-action-bar .mab-call {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.15);
}

.mobile-action-bar .mab-call:active { background: rgba(255,255,255,0.14); }

.mobile-action-bar .mab-quote {
  background: var(--accent-gold);
  color: var(--charcoal);
}

.mobile-action-bar .mab-quote:active { background: var(--accent-gold-light); }

.mobile-action-bar svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.mobile-action-bar .mab-call svg { fill: var(--accent-gold); }
.mobile-action-bar .mab-quote svg { fill: var(--charcoal); }

@media (max-width: 768px) {
  .mobile-action-bar { display: flex; }
  /* Give the page bottom padding so the bar never covers the footer text */
  body { padding-bottom: 72px; }
}