/* ============================================
   GUTTER GUYS — DESIGN SYSTEM
   Bold trades. White ground, red accents, black wordmark, blue water motif.
   ============================================ */

:root {
  --brand-red: #B41314;
  --brand-red-dark: #8E0F10;
  --brand-red-light: #D81E1F;
  --brand-red-bg: rgba(180,19,20,0.06);

  --brand-black: #000000;
  --ink: #0F1419;
  --ink-soft: #1A1A1A;
  --ink-mid: #2D3338;

  --water-deep: #5B7A95;
  --water-mid: #82929D;
  --water-light: #B8D4E8;
  --water-gradient: linear-gradient(180deg, var(--water-light) 0%, var(--water-mid) 55%, var(--water-deep) 100%);
  --water-gradient-h: linear-gradient(90deg, var(--water-light) 0%, var(--water-mid) 50%, var(--water-deep) 100%);

  --white: #FFFFFF;
  --off-white: #F7F8FA;
  --light-gray: #E6E9ED;
  --mid-gray: #6B7280;
  --dark-gray: #2F3640;
  --text: #15171A;

  --green: #1F8B4C;
  --green-bg: rgba(31,139,76,0.08);

  --radius: 6px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow: 0 4px 14px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.12);
  --shadow-lg: 0 16px 40px rgba(0,0,0,0.16);

  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Bebas Neue', Impact, sans-serif;
  --font-body: 'Open Sans', system-ui, -apple-system, sans-serif;
  --container: 1200px;
  --header-height: 76px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); line-height: 1.6; -webkit-font-smoothing: antialiased; background: var(--white); }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font-body); }
h1, h2, h3, h4, h5 { font-family: var(--font-display); line-height: 1.05; letter-spacing: 0.01em; font-weight: 400; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ============================================
   WATER DIVIDER (signature visual element)
   ============================================ */
.water-divider {
  height: 6px;
  background: var(--water-gradient-h);
  width: 100%;
}
.water-divider-thin { height: 3px; }

/* ============================================
   URGENCY BAR
   ============================================ */
.urgency-bar {
  background: var(--ink);
  color: var(--white);
  text-align: center;
  padding: 9px 20px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.urgency-bar span { color: var(--water-light); }
.urgency-bar a { color: var(--water-light); border-bottom: 1px dotted var(--water-mid); }
.urgency-bar a:hover { color: var(--white); }

/* ============================================
   HEADER
   ============================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--light-gray);
  transition: var(--transition);
}
.header.scrolled { box-shadow: var(--shadow); border-bottom-color: transparent; }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--container);
  margin: 0 auto;
}
.logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo img, .logo svg { height: 44px; width: auto; }
.logo-mark {
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: 0.02em;
  color: var(--brand-black);
  line-height: 1;
}
.logo-mark span { color: var(--brand-red); }

.nav-desktop { display: flex; align-items: center; gap: 28px; }
.nav-desktop a {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--dark-gray);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  position: relative;
  padding: 6px 0;
  transition: color var(--transition);
}
.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--brand-red);
  transition: width var(--transition);
}
.nav-desktop a:hover, .nav-desktop a.active { color: var(--brand-red); }
.nav-desktop a:hover::after, .nav-desktop a.active::after { width: 100%; }

.header-cta-group { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.header-phone {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--brand-black);
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  gap: 6px;
}
.header-phone svg { width: 18px; height: 18px; fill: var(--brand-red); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border: none;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
}
.btn:focus-visible { outline: 3px solid var(--water-light); outline-offset: 2px; }
.btn-primary { background: var(--brand-red); color: var(--white); box-shadow: 0 2px 8px rgba(180,19,20,0.25); }
.btn-primary:hover { background: var(--brand-red-dark); transform: translateY(-1px); box-shadow: 0 6px 16px rgba(180,19,20,0.35); }
.btn-dark { background: var(--brand-black); color: var(--white); }
.btn-dark:hover { background: var(--ink-soft); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--brand-red); border: 2px solid var(--brand-red); padding: 11px 26px; }
.btn-outline:hover { background: var(--brand-red); color: var(--white); }
.btn-white { background: var(--white); color: var(--brand-red); }
.btn-white:hover { background: var(--off-white); transform: translateY(-1px); }
.btn-ghost-light { background: rgba(255,255,255,0.1); color: var(--white); border: 1px solid rgba(255,255,255,0.3); padding: 11px 26px; }
.btn-ghost-light:hover { background: rgba(255,255,255,0.18); }
.btn-sm { padding: 9px 18px; font-size: 0.78rem; }
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn svg { width: 16px; height: 16px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  z-index: 1002;
}
.hamburger span {
  display: block; width: 26px; height: 3px;
  background: var(--ink); border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

.nav-mobile {
  display: none;
  position: fixed;
  top: 0; right: -100%;
  width: 86%; max-width: 380px; height: 100vh;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  z-index: 1001;
  flex-direction: column;
  padding: 96px 28px 28px;
  transition: right var(--transition);
  overflow-y: auto;
}
.nav-mobile.open { right: 0; }
.nav-mobile a {
  display: block; padding: 14px 0;
  font-size: 1rem; font-weight: 700;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--light-gray);
}
.nav-mobile a.active { color: var(--brand-red); }
.nav-mobile .mobile-cta-section {
  margin-top: auto; padding-top: 24px;
  border-top: 2px solid var(--light-gray);
}
.nav-mobile .mobile-cta-section a.btn {
  display: flex; width: 100%; margin-bottom: 10px;
  justify-content: center;
}
.nav-overlay {
  display: none; position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.5); z-index: 1000;
}
.nav-overlay.open { display: block; }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
  min-height: 560px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0.45;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,20,25,0.55) 0%, rgba(15,20,25,0.85) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding: 88px 24px 96px;
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--water-light);
  margin-bottom: 14px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px; height: 2px;
  background: var(--brand-red);
}
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  margin-bottom: 8px;
  line-height: 0.95;
}
.hero h2 {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  font-weight: 400;
  margin-bottom: 20px;
  max-width: 540px;
  line-height: 1.5;
  color: rgba(255,255,255,0.92);
}
.hero-cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }

.hero-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.14);
}
.hero-trust-item svg { width: 16px; height: 16px; fill: var(--water-light); flex-shrink: 0; }

/* Hero form card (when shown) */
.hero-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-lg);
  color: var(--text);
}
.hero-form-card h3 {
  font-size: 1.7rem;
  color: var(--ink);
  margin-bottom: 4px;
}
.hero-form-card .form-sub {
  color: var(--mid-gray);
  font-size: 0.84rem;
  margin-bottom: 18px;
}
.form-guarantee {
  display: flex; align-items: center; gap: 10px;
  background: var(--green-bg);
  border: 1px solid rgba(31,139,76,0.18);
  border-radius: var(--radius);
  padding: 10px 14px;
  margin-bottom: 16px;
  font-size: 0.78rem;
  color: var(--green);
  font-weight: 700;
}
.form-guarantee svg { width: 18px; height: 18px; fill: var(--green); flex-shrink: 0; }

.form-group { margin-bottom: 12px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid var(--light-gray);
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-family: var(--font-body);
  transition: border-color var(--transition);
  background: var(--white);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--brand-red);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-response {
  display: flex; align-items: center; gap: 6px;
  margin-top: 12px; font-size: 0.76rem; color: var(--mid-gray);
}
.form-response svg { width: 13px; height: 13px; fill: var(--mid-gray); }
.form-success {
  display: none; text-align: center; padding: 36px 20px;
}
.form-success.visible { display: block; }
.form-success svg { width: 48px; height: 48px; fill: var(--green); margin: 0 auto 12px; }
.form-success h4 { font-size: 1.4rem; color: var(--ink); margin-bottom: 8px; }
.form-success p { color: var(--mid-gray); }

/* Page hero (interior pages) */
.page-hero {
  background: var(--ink);
  color: var(--white);
  padding: 72px 0 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--water-gradient-h);
}
.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  margin-bottom: 12px;
}
.page-hero h1 span { color: var(--brand-red); }
.page-hero p {
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
}
.breadcrumb {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.breadcrumb a:hover { color: var(--water-light); }
.breadcrumb span { margin: 0 6px; opacity: 0.5; }

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar { background: var(--off-white); padding: 48px 0; border-bottom: 1px solid var(--light-gray); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.trust-item svg { width: 36px; height: 36px; fill: var(--brand-red); margin: 0 auto 10px; }
.trust-number {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--ink);
  line-height: 1;
}
.trust-label {
  font-size: 0.76rem;
  color: var(--mid-gray);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 6px;
}

/* ============================================
   SECTION HEADER
   ============================================ */
.section { padding: 88px 0; }
.section-light { background: var(--off-white); }
.section-dark { background: var(--ink); color: var(--white); }
.section-header { text-align: center; margin-bottom: 56px; max-width: 720px; margin-left: auto; margin-right: auto; }
.section-eyebrow {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--brand-red);
  margin-bottom: 12px;
}
.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 12px;
  color: var(--ink);
}
.section-dark .section-header h2 { color: var(--white); }
.section-header p {
  font-size: 1rem;
  color: var(--mid-gray);
  max-width: 560px;
  margin: 0 auto;
}
.section-dark .section-header p { color: rgba(255,255,255,0.75); }
.section-divider {
  width: 56px; height: 4px;
  background: var(--brand-red);
  margin: 0 auto 16px;
  border-radius: 2px;
}

/* ============================================
   SERVICES GRID
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--brand-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-card .icon-wrap {
  width: 56px; height: 56px;
  border-radius: var(--radius);
  background: var(--brand-red-bg);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.service-card .icon-wrap svg { width: 28px; height: 28px; fill: var(--brand-red); }
.service-card h3 {
  font-size: 1.5rem;
  color: var(--ink);
  margin-bottom: 8px;
}
.service-card p {
  font-size: 0.92rem;
  color: var(--mid-gray);
  margin-bottom: 18px;
  line-height: 1.65;
  flex: 1;
}
.service-card .card-link {
  font-weight: 800;
  font-size: 0.8rem;
  color: var(--brand-red);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}
.service-card:hover .card-link { gap: 12px; }

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.why-item { text-align: center; }
.why-item .icon-circle {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  position: relative;
}
.why-item .icon-circle::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: var(--water-gradient);
  z-index: -1;
}
.why-item .icon-circle svg { width: 30px; height: 30px; fill: var(--white); }
.why-item h3 { font-size: 1.25rem; color: var(--ink); margin-bottom: 8px; }
.why-item p { font-size: 0.9rem; color: var(--mid-gray); line-height: 1.6; }

/* ============================================
   AREA TAGS
   ============================================ */
.area-section { padding: 88px 0; background: var(--white); }
.area-content { max-width: 800px; margin: 0 auto; text-align: center; }
.area-content h2 { font-size: clamp(2rem, 4vw, 2.6rem); color: var(--ink); margin-bottom: 12px; }
.area-content > p { color: var(--mid-gray); margin-bottom: 28px; font-size: 1rem; }
.area-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.area-tag {
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--ink);
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.area-tag svg { width: 14px; height: 14px; fill: var(--brand-red); }
.area-tag:hover { border-color: var(--brand-red); background: var(--brand-red-bg); color: var(--brand-red); }

/* ============================================
   PROCESS TIMELINE
   ============================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: var(--water-gradient-h);
  z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; }
.process-step .step-num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--brand-red);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.8rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  border: 4px solid var(--off-white);
  box-shadow: var(--shadow);
}
.process-step h4 { font-size: 1.1rem; color: var(--ink); margin-bottom: 6px; }
.process-step p { font-size: 0.85rem; color: var(--mid-gray); }

/* ============================================
   GALLERY
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-tile {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--light-gray);
}
.gallery-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-tile:hover img { transform: scale(1.04); }
.gallery-tile .gallery-caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 16px;
  background: linear-gradient(0deg, rgba(0,0,0,0.7), transparent);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-tile:hover .gallery-caption { opacity: 1; }
.gallery-grid-lg { grid-template-columns: repeat(4, 1fr); }
.gallery-grid-lg .gallery-tile-tall { grid-row: span 2; aspect-ratio: 3 / 5; }

.gallery-cta { text-align: center; margin-top: 32px; }

/* ============================================
   REVIEWS
   ============================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
}
.review-card::before {
  content: '\201C';
  position: absolute; top: 8px; right: 24px;
  font-size: 4rem; line-height: 1;
  font-family: Georgia, serif;
  color: var(--brand-red-bg);
  opacity: 0.6;
}
.review-stars { color: #F5A623; margin-bottom: 12px; letter-spacing: 2px; font-size: 1rem; }
.review-text { font-size: 0.92rem; color: var(--dark-gray); margin-bottom: 16px; line-height: 1.7; }
.review-author { font-weight: 800; font-size: 0.92rem; color: var(--ink); }
.review-meta { display: flex; align-items: center; gap: 8px; font-size: 0.76rem; color: var(--mid-gray); margin-top: 4px; }
.google-badge {
  background: var(--white); padding: 18px 28px;
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  display: inline-flex; align-items: center; gap: 14px;
  margin-bottom: 32px;
}
.google-badge .rating { font-family: var(--font-display); font-size: 2.2rem; color: var(--ink); line-height: 1; }
.google-badge .stars { color: #F5A623; font-size: 1.1rem; letter-spacing: 2px; }
.google-badge .count { font-size: 0.8rem; color: var(--mid-gray); font-weight: 600; }

/* ============================================
   CONTENT BLOCKS (service & about pages)
   ============================================ */
.content-section { padding: 72px 0; }
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.content-grid img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.content-block h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--ink);
  margin-bottom: 14px;
}
.content-block h3 {
  font-size: 1.4rem;
  color: var(--ink);
  margin: 24px 0 10px;
}
.content-block p {
  font-size: 1rem;
  color: var(--dark-gray);
  margin-bottom: 14px;
  line-height: 1.7;
}
.content-block ul {
  margin: 12px 0 18px 0;
  padding-left: 0;
  list-style: none;
}
.content-block ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 0.96rem;
  color: var(--dark-gray);
}
.content-block ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 16px; height: 16px;
  background: var(--brand-red);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 10.5L4 8l-1 1 3.5 3.5L13 6l-1-1z' fill='white'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* ============================================
   COMPARISON TABLE (us vs them)
   ============================================ */
.compare-table {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--light-gray);
  background: var(--white);
}
.compare-cell {
  padding: 16px 20px;
  border-bottom: 1px solid var(--light-gray);
  font-size: 0.92rem;
}
.compare-cell.head {
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 18px 20px;
}
.compare-cell.head.us { background: var(--brand-red); }
.compare-cell.label { font-weight: 700; color: var(--ink); background: var(--off-white); }
.compare-cell.yes { color: var(--green); font-weight: 700; }
.compare-cell.no { color: var(--mid-gray); }
.compare-cell.center { text-align: center; }

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  margin-bottom: 12px;
  background: var(--white);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 18px 22px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font-body);
}
.faq-question::after {
  content: '+';
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--brand-red);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition), padding var(--transition);
  padding: 0 22px;
}
.faq-item.open .faq-answer { padding: 0 22px 18px; max-height: 600px; }
.faq-answer p { font-size: 0.95rem; color: var(--dark-gray); line-height: 1.7; }

/* ============================================
   BOTTOM CTA
   ============================================ */
.bottom-cta {
  position: relative;
  background: var(--ink);
  color: var(--white);
  padding: 88px 0;
  text-align: center;
  overflow: hidden;
}
.bottom-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--water-gradient-h);
}
.bottom-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 80%, rgba(180,19,20,0.18) 0%, transparent 50%);
  pointer-events: none;
}
.bottom-cta .container { position: relative; z-index: 2; }
.bottom-cta h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 12px; }
.bottom-cta p { font-size: 1.05rem; opacity: 0.85; margin-bottom: 32px; max-width: 560px; margin-left: auto; margin-right: auto; }
.bottom-form {
  max-width: 720px; margin: 0 auto;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
}
.bottom-form .form-row {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 12px; margin-bottom: 12px;
}
.bottom-form input, .bottom-form select {
  width: 100%; padding: 14px;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  font-size: 0.92rem; font-family: var(--font-body);
  background: rgba(255,255,255,0.95); color: var(--text);
}
.bottom-form input:focus, .bottom-form select:focus { outline: none; border-color: var(--water-light); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--brand-black);
  color: var(--white);
  padding: 56px 0 24px;
  border-top: 4px solid var(--brand-red);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 36px;
}
.footer-brand .footer-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.footer-brand .footer-logo span { color: var(--brand-red); }
.footer-brand p { font-size: 0.88rem; opacity: 0.7; line-height: 1.7; max-width: 320px; }
.footer h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 16px;
  letter-spacing: 0.06em;
  color: var(--white);
}
.footer-links a {
  display: block; padding: 4px 0;
  font-size: 0.88rem; opacity: 0.7;
  transition: opacity var(--transition);
}
.footer-links a:hover { opacity: 1; color: var(--water-light); }
.footer-contact p {
  font-size: 0.88rem; opacity: 0.8; margin-bottom: 8px;
  display: flex; align-items: flex-start; gap: 10px;
}
.footer-contact svg { width: 16px; height: 16px; fill: var(--brand-red); flex-shrink: 0; margin-top: 2px; }
.footer-contact a:hover { color: var(--water-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  opacity: 0.6;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-legal { display: flex; gap: 16px; }
.footer-legal a:hover { color: var(--water-light); opacity: 1; }

/* ============================================
   MOBILE STICKY CTA
   ============================================ */
.mobile-cta-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; width: 100%;
  background: var(--brand-red);
  padding: 10px 12px;
  z-index: 999;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.2);
}
.mobile-cta-bar .mobile-cta-inner {
  display: flex; gap: 8px;
  max-width: var(--container); margin: 0 auto;
}
.mobile-cta-bar a {
  flex: 1; text-align: center; padding: 12px;
  border-radius: var(--radius);
  font-weight: 800; font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.mobile-cta-bar .cta-call { background: var(--white); color: var(--brand-red); }
.mobile-cta-bar .cta-quote { background: var(--brand-black); color: var(--white); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 32px; padding: 64px 24px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .content-grid { grid-template-columns: 1fr; gap: 32px; }
  .compare-table { font-size: 0.88rem; }
  .process-grid { grid-template-columns: repeat(3, 1fr); }
  .process-grid::before { display: none; }
  .gallery-grid-lg { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid-lg .gallery-tile-tall { grid-row: span 1; aspect-ratio: 4 / 3; }
}

@media (max-width: 768px) {
  .nav-desktop, .header-phone { display: none; }
  .hamburger { display: flex; }
  .nav-mobile { display: flex; }
  .header-cta-group .btn { display: none; }
  .urgency-bar { font-size: 0.75rem; padding: 8px 12px; }
  .section { padding: 64px 0; }
  .why-grid { grid-template-columns: 1fr; gap: 24px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid-lg { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .mobile-cta-bar { display: block; }
  body { padding-bottom: 64px; }
  .bottom-form .form-row { grid-template-columns: 1fr; }
  .compare-table { font-size: 0.82rem; }
  .compare-cell { padding: 12px 14px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero { min-height: 480px; }
  .hero-cta-row { flex-direction: column; }
  .hero-cta-row .btn { width: 100%; }
  .hero-trust-strip { gap: 8px; }
  .hero-trust-item { font-size: 0.72rem; padding: 6px 10px; }
  .container { padding: 0 16px; }
  .header-inner { padding: 12px 16px; }
  .logo-mark { font-size: 1.3rem; }
  .logo img, .logo svg { height: 36px; }
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.mt-32 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }
.cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 32px; }
.gradient-text {
  background: var(--water-gradient-h);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s, transform 0.6s; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================
   TRUST BADGES STRIP
   ============================================ */
.trust-badges {
  background: var(--white);
  padding: 28px 0;
  border-bottom: 1px solid var(--light-gray);
}
.trust-badges-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  align-items: stretch;
}
.tb-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  background: var(--off-white);
  min-height: 60px;
  transition: all var(--transition);
}
.tb-badge:hover { border-color: var(--brand-red); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.tb-badge .tb-mark {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.tb-badge .tb-mark svg { width: 22px; height: 22px; fill: var(--white); }
.tb-badge .tb-mark.gold { background: #F5A623; }
.tb-badge .tb-mark.bbb { background: #003E7E; }
.tb-badge .tb-mark.google { background: #4285F4; }
.tb-badge .tb-mark.angi { background: #FA3A0E; }
.tb-badge .tb-mark.shield { background: var(--brand-red); }
.tb-badge .tb-text {
  display: flex; flex-direction: column;
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  line-height: 1.05;
}
.tb-badge .tb-text small {
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mid-gray);
  font-weight: 700;
  margin-bottom: 2px;
}
.tb-badge .tb-text strong {
  font-size: 1.1rem;
  color: var(--ink);
  font-weight: 400;
}

/* ============================================
   FINANCING STRIP
   ============================================ */
.financing-strip {
  background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-red-dark) 100%);
  color: var(--white);
  padding: 22px 0;
  position: relative;
  overflow: hidden;
}
.financing-strip::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--water-gradient-h);
}
.financing-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 32px;
  text-align: center;
}
.financing-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.92rem;
}
.financing-item .fi-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.financing-item .fi-icon svg { width: 18px; height: 18px; fill: var(--white); }
.financing-item .fi-big {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-right: 4px;
}
.financing-link {
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
  font-size: 0.82rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-bottom: 2px solid rgba(255,255,255,0.4);
  padding-bottom: 2px;
  transition: border-color var(--transition);
}
.financing-link:hover { border-color: var(--white); }

/* ============================================
   BEFORE / AFTER SLIDER
   ============================================ */
.before-after-wrap {
  max-width: 980px;
  margin: 0 auto;
}
.before-after {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  user-select: none;
  touch-action: pan-y;
  box-shadow: var(--shadow-lg);
  background: var(--ink);
}
.ba-pane {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.ba-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ba-after-wrap {
  position: absolute;
  inset: 0;
  width: 50%;
  overflow: hidden;
  z-index: 2;
  border-right: 3px solid var(--brand-red);
}
.ba-after-wrap .ba-img {
  width: 200%;
  /* match parent's full width */
  max-width: none;
}
.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 44px;
  margin-left: -22px;
  z-index: 4;
  cursor: ew-resize;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ba-handle::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: 50%;
  width: 3px;
  margin-left: -1.5px;
  background: var(--brand-red);
  pointer-events: none;
}
.ba-handle .ba-knob {
  width: 48px; height: 48px;
  background: var(--white);
  border: 3px solid var(--brand-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 1;
}
.ba-handle .ba-knob::before,
.ba-handle .ba-knob::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 0; height: 0;
  border-style: solid;
}
.ba-handle .ba-knob::before {
  left: 8px;
  margin-top: -6px;
  border-width: 6px 8px 6px 0;
  border-color: transparent var(--brand-red) transparent transparent;
}
.ba-handle .ba-knob::after {
  right: 8px;
  margin-top: -6px;
  border-width: 6px 0 6px 8px;
  border-color: transparent transparent transparent var(--brand-red);
}
.ba-label {
  position: absolute;
  top: 18px;
  padding: 8px 14px;
  background: rgba(0,0,0,0.78);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.12em;
  border-radius: var(--radius);
  z-index: 3;
}
.ba-label-before { left: 18px; }
.ba-label-after { right: 18px; background: var(--brand-red); }
.ba-caption {
  text-align: center;
  margin-top: 16px;
  font-size: 0.86rem;
  color: var(--mid-gray);
  font-style: italic;
}
.ba-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.ba-tab {
  background: var(--white);
  border: 1px solid var(--light-gray);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  font-family: var(--font-body);
  transition: all var(--transition);
  letter-spacing: 0.04em;
}
.ba-tab:hover { border-color: var(--brand-red); color: var(--brand-red); }
.ba-tab.active { background: var(--brand-red); border-color: var(--brand-red); color: var(--white); }

@media (max-width: 768px) {
  .trust-badges-inner { gap: 14px; }
  .tb-badge { padding: 10px 14px; gap: 10px; }
  .tb-badge .tb-text strong { font-size: 0.95rem; }
  .financing-inner { gap: 18px; flex-direction: column; }
  .financing-item { font-size: 0.86rem; }
  .ba-label { font-size: 0.82rem; padding: 6px 10px; }
}
