/* Ed's Renovation — Design System */

:root {
  --orange: #F58220;
  --orange-dark: #D96D0F;
  --orange-tint: #FFF5EC;
  --dark: #1a1a1a;
  --dark-2: #2a2a2a;
  --gray: #4A4A4A;
  --gray-med: #7A7A7A;
  --gray-light: #B4B2A9;
  --bg-1: #FAFAFA;
  --bg-2: #F1EFE8;
  --border: #E5E5E5;
  --border-dark: #444;
  --text: #1a1a1a;
  --white: #ffffff;
  --success: #3B6D11;
  --success-bg: #EAF3DE;

  --font-sans: -apple-system, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; }

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

/* Skip link for accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--orange);
  color: white;
  padding: 8px 16px;
  z-index: 100;
}
.skip-link:focus { top: 0; }

/* Header */
.site-header {
  background: white;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.site-logo { display: flex; align-items: center; gap: 12px; }
.site-logo img { width: 44px; height: 44px; object-fit: contain; }
.site-logo .brand-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.site-logo .brand-tag {
  font-size: 10px;
  color: var(--gray-med);
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.site-nav { display: flex; gap: 28px; }
.site-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray);
  transition: color 0.2s;
}
.site-nav a:hover { color: var(--orange); }
.header-right { display: flex; align-items: center; gap: 16px; }
.header-phone {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 6px;
}
.header-cta {
  background: var(--orange);
  color: white;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: background 0.2s;
}
.header-cta:hover { background: var(--orange-dark); }
.mobile-toggle {
  display: none;
  background: transparent;
  color: var(--dark);
  padding: 8px;
}

/* Hero */
.hero {
  background: var(--dark);
  color: white;
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease;
  will-change: opacity, transform;
}
.hero-slide.active {
  opacity: 1;
  animation: hero-kenburns 8s ease-out forwards;
}
@keyframes hero-kenburns {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}
.hero-slides::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0.72), rgba(0,0,0,0.5));
  z-index: 1;
}
@media (prefers-reduced-motion: reduce) {
  .hero-slide { transition: none; }
  .hero-slide.active { animation: none; }
}
.hero .container { position: relative; z-index: 2; }
#hero-word {
  display: inline-block;
  transition: opacity .35s ease, transform .35s ease;
}
#hero-word.word-out {
  opacity: 0;
  transform: translateY(10px);
}
.hero-eyebrow {
  font-size: 12px;
  color: var(--orange);
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.1;
  margin-bottom: 24px;
  font-weight: 500;
  letter-spacing: -0.5px;
  max-width: 720px;
}
.hero h1 .accent { color: var(--orange); }
.hero-sub {
  font-size: 17px;
  color: var(--gray-light);
  line-height: 1.6;
  max-width: 620px;
  margin-bottom: 36px;
}
.hero-cta-group { display: flex; gap: 12px; margin-bottom: 40px; flex-wrap: wrap; }
.btn-primary {
  background: var(--orange);
  color: white;
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--orange-dark); }
.btn-outline {
  background: transparent;
  color: white;
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 1px solid #7A7A7A;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background 0.2s, border-color 0.2s;
}
.btn-outline:hover { background: rgba(255,255,255,0.05); border-color: white; }
.hero-credentials {
  display: flex;
  gap: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--border-dark);
  font-size: 13px;
  color: var(--gray-light);
  flex-wrap: wrap;
}
.hero-credentials b { color: var(--orange); font-weight: 700; }

/* Stats bar */
.stats-bar {
  background: white;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}
.stats-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat { text-align: center; }
.stat-n {
  font-size: 48px;
  font-weight: 500;
  color: var(--orange);
  line-height: 1;
  letter-spacing: -1.5px;
}
.stat-l {
  font-size: 12px;
  color: var(--gray-med);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 10px;
  font-weight: 500;
}

/* Sections */
.section { padding: 80px 0; }
.section-alt { background: var(--bg-2); }
.section-dark { background: var(--dark); color: white; padding: 60px 0; }
.section-head { text-align: center; margin-bottom: 50px; }
.section-head .eyebrow {
  font-size: 12px;
  color: var(--orange);
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 700;
}
.section-head h2 {
  font-size: 40px;
  margin: 14px 0 12px;
  font-weight: 500;
  letter-spacing: -0.5px;
  color: var(--text);
}
.section-dark .section-head h2 { color: white; }
.section-head p {
  font-size: 16px;
  color: var(--gray-med);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.svc-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: all 0.2s;
}
.svc-card:hover {
  border-color: var(--orange);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.svc-icon {
  width: 56px;
  height: 56px;
  background: var(--orange-tint);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 26px;
}
.svc-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--dark);
}
.svc-card p {
  font-size: 14px;
  color: var(--gray-med);
  line-height: 1.6;
  margin-bottom: 16px;
}
.svc-link {
  font-size: 12px;
  color: var(--orange);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Why us numbered */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.why-item { display: flex; gap: 16px; align-items: flex-start; }
.why-n {
  width: 48px;
  height: 48px;
  border: 2px solid var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--orange);
  flex-shrink: 0;
}
.why-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--dark);
}
.why-item p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

/* Before/After slider */
.ba-project-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 14px;
}
.ba-project-meta h3 {
  font-size: 22px;
  margin-bottom: 4px;
  font-weight: 600;
  color: var(--dark);
}
.ba-project-meta .loc {
  font-size: 14px;
  color: var(--gray-med);
  display: flex;
  align-items: center;
  gap: 4px;
}
.ba-project-meta .loc-i { color: var(--orange); }
.ba-stats { display: flex; gap: 20px; }
.ba-stat { font-size: 12px; color: var(--gray-med); }
.ba-stat b {
  font-size: 18px;
  color: var(--dark);
  font-weight: 700;
  display: block;
}

.ba-slider-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  user-select: none;
  cursor: ew-resize;
  --pos: 50%;
  background: var(--dark);
  margin-bottom: 24px;
}
.ba-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.ba-img.before {
  background-image: linear-gradient(135deg, #8B7355 0%, #a99070 40%, #7d6a52 100%);
}
.ba-img.after {
  background-image: linear-gradient(135deg, #E8E6E1 0%, #F5F2ED 50%, #DDD9D0 100%);
  clip-path: inset(0 0 0 var(--pos));
}
.ba-plate {
  position: absolute;
  top: 20px;
  background: rgba(0,0,0,0.6);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  color: white;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-weight: 700;
}
.ba-plate.before { left: 20px; }
.ba-plate.after { right: 20px; }
.ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos);
  width: 3px;
  background: white;
  transform: translateX(-50%);
  box-shadow: 0 0 12px rgba(0,0,0,0.35);
  pointer-events: none;
}
.ba-handle {
  position: absolute;
  top: 50%;
  left: var(--pos);
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3), 0 0 0 5px rgba(255,255,255,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  pointer-events: none;
  z-index: 2;
  font-size: 22px;
}

.ba-hint {
  text-align: center;
  font-size: 13px;
  color: var(--gray-med);
  margin-bottom: 32px;
}
.ba-hint .arrow { color: var(--orange); }

.ba-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.ba-thumb {
  background: linear-gradient(135deg, #4A4A4A 0%, #7A7A7A 100%);
  border-radius: var(--radius-md);
  aspect-ratio: 4/3;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border: 2px solid transparent;
  transition: border-color 0.2s, transform 0.2s;
  background-size: cover;
  background-position: center;
}
.ba-thumb:hover { transform: translateY(-2px); }
.ba-thumb.ba-thumb-extra { display: none !important; }
.ba-thumbs.expanded .ba-thumb.ba-thumb-extra { display: block !important; }
.ba-more-wrap { display: flex; justify-content: center; margin-top: 20px; }
.ba-more-btn {
  background: transparent;
  border: 2px solid var(--orange);
  color: var(--orange);
  font-family: inherit;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .04em;
  padding: 12px 26px;
  border-radius: 999px;
  cursor: pointer;
  transition: background .18s ease, color .18s ease;
}
.ba-more-btn:hover { background: var(--orange); color: var(--white); }
.ba-thumb.active,
.ba-thumb:hover { border-color: var(--orange); }
.ba-thumb .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 14px 16px;
}
.ba-thumb .type {
  display: block;
  font-size: 10px;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  margin-bottom: 4px;
}
.ba-thumb .name {
  color: white;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
}

/* Trust badges */
.badges-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.badge {
  background: var(--dark-2);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  text-align: center;
}
.badge-icon {
  font-size: 32px;
  color: var(--orange);
  margin-bottom: 10px;
  display: block;
}
.badge-n {
  font-size: 13px;
  font-weight: 700;
  color: white;
  line-height: 1.3;
}
.badge-s {
  font-size: 11px;
  color: var(--gray-med);
  margin-top: 4px;
}

/* Warranty */
.warranty-section {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: white;
  padding: 50px 0;
}
.warranty-section .container {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
}
.warranty-badge {
  width: 88px;
  height: 88px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: var(--orange);
}
.warranty-text h3 {
  font-size: 24px;
  margin-bottom: 6px;
  font-weight: 600;
}
.warranty-text p {
  font-size: 15px;
  opacity: 0.95;
  line-height: 1.5;
}
.warranty-cta {
  background: white;
  color: var(--orange);
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
}
.review-stars {
  color: var(--orange);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.review-quote {
  font-size: 15px;
  color: var(--gray);
  margin-bottom: 18px;
  line-height: 1.6;
  font-style: italic;
}
.review-author {
  font-size: 13px;
  color: var(--gray-med);
}
.review-author b { color: var(--dark); font-weight: 600; font-style: normal; }

/* Form */
.form-section {
  background: var(--bg-2);
  padding: 80px 0;
}
.form-section .container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}
.form-left .eyebrow {
  font-size: 12px;
  color: var(--orange);
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 700;
}
.form-left h2 {
  font-size: 36px;
  margin: 14px 0 16px;
  font-weight: 500;
  letter-spacing: -0.3px;
  color: var(--dark);
}
.form-left p {
  font-size: 15px;
  color: var(--gray);
  margin-bottom: 20px;
  line-height: 1.6;
}
.form-promise {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: white;
  border-radius: var(--radius-md);
  font-size: 14px;
  color: var(--success);
  font-weight: 600;
  border: 1px solid var(--success-bg);
}
.form-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
}
.form-row { margin-bottom: 18px; }
.form-row label {
  font-size: 12px;
  color: var(--gray);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}
.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 16px; /* min 16px — prevents iOS Safari auto-zoom on focus */
  color: var(--dark);
  font-family: inherit;
  transition: border-color 0.2s;
}
.form-row textarea { resize: vertical; min-height: 90px; }
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--orange);
  background: white;
}
.form-submit {
  background: var(--orange);
  color: white;
  padding: 16px;
  border-radius: var(--radius-sm);
  width: 100%;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 8px;
  transition: background 0.2s;
}
.form-submit:hover { background: var(--orange-dark); }
.form-note {
  font-size: 12px;
  color: var(--gray-med);
  margin-top: 12px;
  text-align: center;
}

/* Footer */
.site-footer {
  background: var(--dark);
  color: var(--gray-light);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand img { width: 48px; height: 48px; margin-bottom: 14px; }
.footer-brand h4 {
  color: white;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.footer-brand p { font-size: 13px; line-height: 1.6; margin-bottom: 16px; max-width: 320px; }
.footer-brand .creds { font-size: 12px; color: var(--orange); }
.footer-col h5 {
  color: white;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; font-size: 13px; }
.footer-col a { color: var(--gray-light); transition: color 0.2s; }
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid var(--border-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--gray-med);
  flex-wrap: wrap;
  gap: 12px;
}

/* Promo strip (from CMS) */
.promo-strip {
  background: var(--orange);
  color: white;
  padding: 12px 0;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
}
.promo-strip b { font-weight: 700; }

/* Mobile responsive */
@media (max-width: 900px) {
  .site-nav { display: none; }
  .mobile-toggle { display: block; }
  .header-right .header-phone { display: none; }
  .hero { padding: 60px 0 50px; }
  .hero h1 { font-size: 32px; }
  .hero-sub { font-size: 15px; }
  .stats-bar .container { grid-template-columns: repeat(2, 1fr); }
  .stat-n { font-size: 36px; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .badges-grid { grid-template-columns: repeat(2, 1fr); }
  /* Reviews: horizontal swipe carousel instead of tall stack */
  .reviews-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 14px;
    padding: 4px 2px 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .reviews-grid::-webkit-scrollbar { display: none; }
  .reviews-grid .review-card {
    flex: 0 0 82%;
    max-width: 330px;
    scroll-snap-align: center;
  }
  .reviews-dots { display: flex; }
  .form-section .container { grid-template-columns: 1fr; gap: 40px; }
  /* Accordion footer: brand on top, collapsed sections below — tap to expand */
  .site-footer { padding: 36px 0 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 0; margin-bottom: 20px; }
  .footer-brand { padding-bottom: 18px; }
  .footer-brand p { max-width: 480px; margin-bottom: 12px; }
  .footer-col { min-width: 0; border-top: 1px solid var(--border-dark); }
  .footer-col h5 {
    margin: 0;
    padding: 14px 0;
    cursor: pointer;
    position: relative;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
  }
  .footer-col h5::after {
    content: "+";
    position: absolute;
    right: 2px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    font-weight: 400;
    color: var(--orange);
  }
  .footer-col.open h5::after { content: "−"; }
  .footer-col ul { display: none; padding-bottom: 14px; }
  .footer-col.open ul { display: block; }
  .footer-col li { overflow-wrap: anywhere; }
  .warranty-section .container { grid-template-columns: 1fr; text-align: center; }
  .warranty-badge { margin: 0 auto; }
  .ba-thumbs { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .ba-thumb .type { font-size: 9px; }
  .ba-thumb .name { font-size: 12px; }
  .section { padding: 50px 0; }
  .section-head h2 { font-size: 28px; }
}

@media (max-width: 500px) {
  .container { padding: 0 18px; }
  .hero-credentials { flex-direction: column; gap: 12px; }
  /* Phone: accordion footer already active from 720px rules; just slim the brand */
  .footer-brand p { display: none; }             /* drop duplicate marketing paragraph on phones */
  .footer-brand img { width: 38px; height: 38px; margin-bottom: 8px; }
  .footer-brand h4 { margin-bottom: 6px; }
  .footer-col li { margin-bottom: 7px; font-size: 12px; }
  .footer-bottom { flex-direction: column; text-align: center; padding-top: 18px; gap: 6px; font-size: 11px; }
  .header-cta { padding: 8px 14px; font-size: 11px; }
  .badges-grid { grid-template-columns: 1fr 1fr; }
}

/* Service & subpage additions */
.breadcrumb { background: var(--bg-1); padding: 14px 0; font-size: 13px; color: var(--gray-med); }
.breadcrumb a { color: var(--gray-med); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb .sep { margin: 0 8px; }

.page-hero { background: var(--dark); color: white; padding: 70px 0 60px; position: relative; overflow: hidden; }
.page-hero::before { display: none; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero .eyebrow { font-size: 12px; color: var(--orange); letter-spacing: 4px; text-transform: uppercase; font-weight: 700; margin-bottom: 16px; }
.page-hero h1 { font-size: 44px; line-height: 1.15; margin-bottom: 18px; font-weight: 500; letter-spacing: -0.5px; max-width: 720px; }
.page-hero .lead { font-size: 17px; color: var(--gray-light); line-height: 1.6; max-width: 640px; margin-bottom: 28px; }
.page-hero .cta-group { display: flex; gap: 12px; flex-wrap: wrap; }

.content-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 60px; align-items: flex-start; }
.content-main h2 { font-size: 30px; margin: 40px 0 16px; font-weight: 500; color: var(--dark); }
.content-main h2:first-child { margin-top: 0; }
.content-main h3 { font-size: 20px; margin: 24px 0 10px; font-weight: 600; color: var(--dark); }
.content-main p { font-size: 16px; color: var(--gray); line-height: 1.7; margin-bottom: 16px; }
.content-main ul { list-style: none; margin: 12px 0 20px; }
.content-main ul li { position: relative; padding: 6px 0 6px 28px; font-size: 15px; color: var(--gray); line-height: 1.6; }
.content-main ul li::before { content: "✓"; position: absolute; left: 0; color: var(--orange); font-weight: 700; font-size: 16px; }
.content-main .callout { background: var(--orange-tint); border-left: 3px solid var(--orange); padding: 18px 22px; border-radius: 6px; margin: 24px 0; font-size: 15px; color: var(--dark); }

.sidebar-card { background: var(--bg-2); border-radius: 12px; padding: 28px; position: sticky; top: 100px; }
.sidebar-card h3 { font-size: 18px; margin-bottom: 14px; font-weight: 600; color: var(--dark); }
.sidebar-card p { font-size: 14px; color: var(--gray); margin-bottom: 16px; line-height: 1.6; }
.sidebar-card .sidebar-cta { background: var(--orange); color: white; padding: 14px; border-radius: 4px; display: block; text-align: center; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; font-size: 12px; margin-bottom: 10px; }
.sidebar-card .sidebar-phone { text-align: center; font-size: 15px; font-weight: 600; color: var(--dark); display: block; padding: 12px; border: 1px solid var(--border); border-radius: 4px; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin: 32px 0; }
.process-step { text-align: center; }
.process-step .n { width: 48px; height: 48px; background: var(--orange); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 700; margin: 0 auto 14px; }
.process-step h4 { font-size: 15px; font-weight: 600; margin-bottom: 6px; color: var(--dark); }
.process-step p { font-size: 13px; color: var(--gray-med); line-height: 1.5; }

.faq { margin: 20px 0; }
.faq details { border-bottom: 1px solid var(--border); padding: 18px 0; }
.faq details:first-child { border-top: 1px solid var(--border); }
.faq summary { font-size: 16px; font-weight: 600; color: var(--dark); cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq summary::after { content: "+"; color: var(--orange); font-size: 22px; font-weight: 300; }
.faq details[open] summary::after { content: "−"; }
.faq details p { font-size: 15px; color: var(--gray); line-height: 1.7; margin: 12px 0 0; }

.related-services { background: var(--bg-2); padding: 60px 0; }
.related-services .rs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 20px; }
.rs-card { background: white; padding: 20px; border-radius: 8px; border: 1px solid var(--border); }
.rs-card h4 { font-size: 15px; font-weight: 600; margin-bottom: 6px; color: var(--dark); }
.rs-card p { font-size: 13px; color: var(--gray-med); margin-bottom: 10px; }
.rs-card a { font-size: 12px; color: var(--orange); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }

.cta-strip { background: var(--dark); color: white; padding: 50px 0; text-align: center; }
.cta-strip h2 { font-size: 28px; font-weight: 500; margin-bottom: 12px; }
.cta-strip p { color: var(--gray-light); font-size: 15px; margin-bottom: 24px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-strip .cta-group { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card { background: white; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; transition: box-shadow 0.2s; }
.blog-card:hover { box-shadow: var(--shadow-md); }
.blog-card .img { aspect-ratio: 16/9; background: linear-gradient(135deg, #4A4A4A, #7A7A7A); }
.blog-card .body { padding: 22px; }
.blog-card .meta { font-size: 11px; color: var(--orange); text-transform: uppercase; letter-spacing: 1.5px; font-weight: 700; margin-bottom: 8px; }
.blog-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 8px; color: var(--dark); line-height: 1.35; }
.blog-card p { font-size: 14px; color: var(--gray-med); line-height: 1.5; }

.article { max-width: 720px; margin: 0 auto; }
.article h1 { font-size: 36px; margin-bottom: 12px; font-weight: 500; letter-spacing: -0.5px; }
.article .meta { color: var(--gray-med); font-size: 14px; margin-bottom: 40px; }
.article h2 { font-size: 24px; margin: 36px 0 12px; font-weight: 600; }
.article h3 { font-size: 18px; margin: 24px 0 8px; font-weight: 600; }
.article p, .article li { font-size: 17px; line-height: 1.8; color: var(--gray); }
.article ul { margin: 16px 0 24px 20px; }
.article ul li { margin-bottom: 8px; }
.article blockquote { border-left: 3px solid var(--orange); padding: 12px 0 12px 20px; margin: 24px 0; color: var(--gray); font-style: italic; }

@media (max-width: 900px) {
  .content-grid { grid-template-columns: 1fr; }
  .sidebar-card { position: static; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .related-services .rs-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .page-hero h1 { font-size: 32px; }
  .article h1 { font-size: 28px; }
}

/* Mobile burger menu fix */
@media (max-width: 900px) {
  .mobile-toggle {
    display: block;
    background: transparent;
    color: var(--dark);
    padding: 8px 10px;
    font-size: 24px;
    line-height: 1;
    border-radius: var(--radius-sm);
    cursor: pointer;
  }
  .mobile-toggle:hover { background: var(--bg-1); }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 8px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    z-index: 60;
    gap: 0;
  }
  .site-nav.open { display: flex; }
  .site-nav a {
    display: block;
    padding: 14px 24px;
    font-size: 15px;
    border-bottom: 1px solid var(--bg-1);
    color: var(--dark);
  }
  .site-nav a:last-child { border-bottom: none; }
  .site-nav a:hover {
    background: var(--orange-tint);
    color: var(--orange-dark);
  }

  .site-header .container { position: relative; }
  .header-right .header-phone { display: none; }
}

/* Emergency water damage strip */
.emergency-strip {
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: var(--white);
  padding: 14px 0;
}
.emergency-strip .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}
.emergency-strip .em-icon { font-size: 22px; }
.emergency-strip .em-text { font-size: 15px; }
.emergency-strip .em-text b { font-weight: 700; }
.emergency-strip .em-cta {
  background: var(--white);
  color: var(--orange-dark);
  padding: 8px 18px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: transform .12s ease;
}
.emergency-strip .em-cta:hover { transform: translateY(-1px); }
@media (max-width: 640px) {
  .emergency-strip .container { flex-direction: column; text-align: center; gap: 10px; }
  .emergency-strip .em-text { font-size: 14px; }
}

/* Pricing anchor */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 20px;
}
.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px 24px;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.price-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -12px rgba(0,0,0,.12);
  border-color: var(--orange);
}
.price-card .price-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-med);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 8px;
}
.price-card .price-range {
  font-size: 24px;
  font-weight: 800;
  color: var(--orange-dark);
  line-height: 1.15;
  margin-bottom: 6px;
}
.price-card .price-note {
  font-size: 13.5px;
  color: var(--gray-med);
  line-height: 1.45;
}

/* FAQ accordion */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 780px;
  margin: 0 auto;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 4px 20px;
  transition: border-color .15s ease;
}
.faq-item[open] { border-color: var(--orange); }
.faq-item summary {
  padding: 16px 30px 16px 0;
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  font-size: 16px;
  color: var(--dark);
  position: relative;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: var(--orange);
  font-weight: 400;
  transition: transform .15s ease;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p {
  padding: 0 0 18px 0;
  color: var(--gray);
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0;
}

/* Reviews carousel dots (mobile only — shown via media query) */
.reviews-dots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}
.reviews-dots .r-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  transition: background .2s ease, transform .2s ease;
}
.reviews-dots .r-dot.active {
  background: var(--orange);
  transform: scale(1.25);
}

/* File upload drop zone */
.file-drop {
  position: relative;
  border: 2px dashed var(--border);
  border-radius: 10px;
  padding: 20px 16px;
  text-align: center;
  transition: border-color .18s ease, background .18s ease;
  background: var(--bg-1);
  cursor: pointer;
}
.file-drop:hover,
.file-drop.dragover {
  border-color: var(--orange);
  background: var(--orange-tint);
}
.file-drop input[type="file"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.file-drop-inner {
  display: flex;
  flex-direction: column;
  gap: 4px;
  pointer-events: none;
}
.file-drop-icon { font-size: 26px; }
.file-drop-text { font-size: 14px; font-weight: 600; color: var(--gray); }
.file-drop-hint { font-size: 12px; color: var(--gray-med); }
.file-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
  pointer-events: none;
}
.file-list:empty { margin-top: 0; }
.file-list .file-chip {
  background: var(--white);
  border: 1px solid var(--orange);
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  max-width: 180px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Contact map */
.contact-map {
  margin-top: 4px;
}
.contact-map iframe {
  filter: grayscale(20%);
  transition: filter .2s ease;
}
.contact-map:hover iframe { filter: grayscale(0%); }
