/* ==========================================================================
   Suncastle Roofing — homepage styles
   Design tokens ported from the Claude Design handoff
   (_ds/.../tokens/*.css) — see chats/chat1.md for design history.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500&display=swap');

:root {
  /* ---- Brand reds ---- */
  --red-800: #6e0312;
  --red-700: #8a0416;
  --red-600: #a4051b; /* PRIMARY brand crimson */
  --red-500: #d6181f;
  --red-100: #f7e2e4;

  /* ---- Gold / sun accent ---- */
  --gold-600: #d39a26;
  --gold-500: #f9c043;
  --gold-400: #edc84d;
  --gold-100: #fbeecb;

  /* ---- Neutrals (warm charcoal) ---- */
  --charcoal-900: #1f1f1f;
  --charcoal-800: #2d2d2d;
  --charcoal-700: #333333;
  --gray-600: #424242;
  --gray-500: #767676;
  --gray-400: #9a9a9a;
  --gray-300: #c7c7c7;
  --gray-200: #e0e0e0;
  --gray-100: #f3f2ef;
  --white: #ffffff;

  /* ---- Semantic aliases ---- */
  --brand-primary: var(--red-600);
  --brand-accent: var(--gold-500);

  --accent-graphic: var(--gold-500);
  --accent-graphic-ink: var(--gold-600);
  --accent-graphic-soft: var(--gold-100);
  --cta: var(--red-600);
  --cta-hover: var(--red-700);

  --text-heading: var(--charcoal-900);
  --text-body: var(--charcoal-800);
  --text-muted: var(--gray-500);

  --border-subtle: var(--gray-200);

  /* ---- Typography ---- */
  --font-display: 'Raleway', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Raleway', 'Helvetica Neue', Arial, sans-serif;

  --fw-light: 300;
  --fw-semibold: 600;
  --fw-bold: 700;

  --fs-caption: 13px;
  --fs-small: 15px;
  --fs-body: 17px;
  --fs-body-lg: 19px;
  --fs-h3: 32px;

  --lh-snug: 1.4;
  --lh-body: 1.65;

  --ls-eyebrow: 0.34em;

  /* ---- Radius & shadow ---- */
  --radius-sm: 3px;
  --radius-md: 6px;
  --radius-pill: 999px;
  --radius-circle: 50%;

  --shadow-sm: 0 2px 8px rgba(31, 31, 31, 0.08);
  --shadow-md: 0 8px 24px rgba(31, 31, 31, 0.12);
  --shadow-lg: 0 18px 48px rgba(31, 31, 31, 0.16);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1);
  --dur-base: 240ms;

  --focus-ring: rgba(164, 5, 27, 0.35);
}

/* ---- Reset ---- */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: #ffffff;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--text-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; }
a { -webkit-tap-highlight-color: transparent; color: var(--cta); }
a:hover { color: var(--red-700); }
button { font: inherit; }
h1, h2, h3, h4 { margin: 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

/* ---- Reusable pieces ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  border-radius: var(--radius-pill);
  border: 1px solid var(--brand-primary);
  background: var(--brand-primary);
  color: #fff;
  transition: background var(--dur-base) var(--ease-standard),
    color var(--dur-base) var(--ease-standard),
    border-color var(--dur-base) var(--ease-standard);
}
.btn:hover { background: var(--red-700); border-color: var(--red-700); color: #fff; }
.btn-md { padding: 13px 30px; font-size: var(--fs-small); letter-spacing: 0.14em; }
.btn-lg { padding: 17px 40px; font-size: var(--fs-body); letter-spacing: 0.16em; }

.section-heading { text-align: center; max-width: 760px; margin: 0 auto; }
.section-heading .eyebrow {
  font-family: var(--font-display);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-caption);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent-graphic-ink);
  margin-bottom: 14px;
}
.section-heading.on-dark .eyebrow { color: var(--accent-graphic); }
.section-heading h2 {
  font-family: var(--font-display);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-h3);
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--text-heading);
  line-height: 1.25;
}
.section-heading.on-dark h2 { color: #fff; }
.section-heading .subhead {
  font-style: italic;
  font-weight: var(--fw-light);
  font-size: var(--fs-body);
  color: var(--text-muted);
  margin: 18px 0 0;
  line-height: var(--lh-snug);
}
.section-heading.on-dark .subhead { color: rgba(255, 255, 255, 0.78); }

/* ==========================================================================
   Top utility bar
   ========================================================================== */
.top-bar {
  background: var(--charcoal-900);
  color: rgba(255, 255, 255, 0.85);
}
.top-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.top-bar-inner .tagline { font-weight: 600; }
.top-bar-phones { display: flex; align-items: center; gap: 22px; }
.top-bar-phones a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.top-bar-phones svg { stroke: var(--accent-graphic); }

/* ==========================================================================
   Sticky header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(1.4) blur(8px);
  border-bottom: 1px solid var(--border-subtle);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; text-decoration: none; flex: 0 0 auto; }
.brand img { height: 40px; width: auto; display: block; }

.main-nav { flex: 1; display: flex; justify-content: center; }
.main-nav ul { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 6px; }
.main-nav li { position: relative; }
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 14px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal-800);
  text-decoration: none;
}
.nav-link:hover { color: var(--cta); }

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 262px;
  background: #fff;
  border: 1px solid var(--border-subtle);
  border-top: 3px solid var(--cta);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  display: none;
  flex-direction: column;
}
.nav-item-services.open .nav-dropdown { display: flex; }
.nav-dropdown a {
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  color: var(--text-body);
  text-decoration: none;
  border-radius: var(--radius-sm);
}
.nav-dropdown a:hover { background: var(--accent-graphic-soft); color: var(--red-700); }

.header-actions { flex: 0 0 auto; display: flex; align-items: center; gap: 16px; }

.mobile-cta { display: none; flex: 0 0 auto; align-items: center; margin-left: auto; margin-right: 8px; }
.btn-sm { padding: 8px 18px; font-size: var(--fs-caption); letter-spacing: 0.12em; }

.mobile-hamburger {
  display: none;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  color: var(--charcoal-900);
}
.mobile-hamburger .icon-close { display: none; }
.mobile-hamburger.open .icon-open { display: none; }
.mobile-hamburger.open .icon-close { display: block; }

.mobile-nav-panel {
  display: none;
  border-top: 1px solid var(--border-subtle);
  background: #fff;
  padding: 8px 32px 28px;
}
.mobile-nav-panel.open { display: block; }
.mobile-nav-panel ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.mobile-nav-panel li a {
  display: block;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-subtle);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal-800);
  text-decoration: none;
}
.mobile-nav-panel li:last-child a { border-bottom: none; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { position: relative; overflow: hidden; background: #1f1f1f; color: #fff; }
.hero video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0;
}
.hero-scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(rgba(31, 31, 31, 0.66), rgba(31, 31, 31, 0.82));
}
.hero-content {
  position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; padding: 0 32px;
}
.hero-copy {
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 26px;
  padding: 110px 0;
  max-width: 760px;
}
.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 8px 17px;
}
.hero-rating .stars { color: var(--accent-graphic); font-size: 16px; letter-spacing: 2px; }
.hero-rating .label {
  font-family: var(--font-display);
  font-size: 12.5px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.92);
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.07;
  letter-spacing: -0.01em;
  text-wrap: balance;
  color: #fff;
}
.hero p.lede {
  font-size: 19px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  max-width: 600px;
  font-weight: 300;
  margin: 0;
}
.hero-ctas { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-top: 8px; }
.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background var(--dur-base) var(--ease-standard), color var(--dur-base) var(--ease-standard);
}
.btn-outline-light:hover { background: #fff; color: var(--charcoal-900); }
.hero-trust { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}
.hero-trust svg { stroke: var(--accent-graphic); }

/* ==========================================================================
   Why choose
   ========================================================================== */
.why-choose { padding: 96px 0; background: #fff; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 56px;
}
.trust-card {
  background: #fff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 38px 30px;
  transition: transform 0.24s var(--ease-out), box-shadow 0.24s var(--ease-out);
}
.trust-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.trust-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  background: var(--charcoal-900);
  color: var(--accent-graphic);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.trust-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-heading);
  margin: 0 0 12px;
  line-height: 1.3;
}
.trust-card p { font-size: 15px; line-height: 1.65; color: var(--text-body); margin: 0; }

.why-dots, .svc-dots {
  display: none;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}
.why-dots button, .svc-dots button {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  padding: 0;
  background: var(--gray-300);
  transition: all 0.3s var(--ease-out);
}
.why-dots button.active, .svc-dots button.active { background: var(--cta); width: 28px; }

/* ==========================================================================
   Estimates band
   ========================================================================== */
.estimates { padding: 84px 0; background: var(--gray-100); }
.estimates .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.estimates .eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent-graphic-ink);
  margin-bottom: 14px;
}
.estimates h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 38px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-heading);
  margin: 0 0 18px;
  line-height: 1.2;
}
.estimates p.lede {
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-body);
  margin: 0 0 30px;
  max-width: 480px;
  font-weight: 300;
  font-style: italic;
}
.estimates-photo {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}
.estimates-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ==========================================================================
   Services
   ========================================================================== */
.services { padding: 96px 0; background: #fff; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 56px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.24s var(--ease-out), box-shadow 0.24s var(--ease-out), border-color 0.24s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--accent-graphic); }
.service-card .photo { width: 100%; height: 200px; display: block; background: var(--gray-100); object-fit: cover; }
.service-card .body { padding: 28px 30px 30px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.service-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-heading);
  margin: 0;
  line-height: 1.3;
}
.service-card p { font-size: 15px; line-height: 1.65; color: var(--text-body); margin: 0; }
.service-card .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cta);
  margin-top: auto;
  text-decoration: none;
}

/* ==========================================================================
   Areas we serve
   ========================================================================== */
.areas { padding: 104px 0; background: #fff; }
.areas .container { max-width: 1080px; text-align: center; }
.areas h2 {
  font-family: var(--font-display);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-h3);
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--text-heading);
  margin: 0;
}
.areas .subhead {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 19px;
  color: var(--text-muted);
  margin: 20px auto 0;
  max-width: 640px;
}
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px 40px;
  margin: 64px auto 60px;
  max-width: 900px;
  align-items: center;
}
.areas-grid .logo-cell { display: flex; align-items: center; justify-content: center; padding: 20px; width: 100%; }
.areas-grid img { max-width: 100%; width: auto; height: auto; display: block; }
.areas p.copy { font-size: 17px; line-height: 1.75; color: var(--text-body); max-width: 720px; margin: 0 auto 38px; }
.areas .cta-row { display: flex; justify-content: center; }

/* ==========================================================================
   Reviews
   ========================================================================== */
.reviews { padding: 96px 0; background: var(--gray-100); }
.reviews-wrap { position: relative; max-width: 1180px; margin: 56px auto 0; }
.reviews-viewport { overflow: hidden; padding: 4px; }
.reviews-track { display: flex; gap: 24px; transition: transform 0.5s var(--ease-out); }
.review-slide { flex: 0 0 calc((100% - 48px) / 3); box-sizing: border-box; }
.review-card {
  height: 100%;
  box-sizing: border-box;
  background: #fff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 38px 32px;
  box-shadow: var(--shadow-sm);
}
.testimonial { margin: 0; text-align: center; max-width: 640px; margin-left: auto; margin-right: auto; }
.testimonial .avatar {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-circle);
  overflow: hidden;
  margin: 0 auto 22px;
  background: var(--gray-200);
  border: 3px solid var(--white);
  box-shadow: var(--shadow-sm);
}
.testimonial .avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.testimonial blockquote {
  margin: 0;
  font-size: var(--fs-body-lg);
  font-style: italic;
  font-weight: var(--fw-light);
  line-height: var(--lh-snug);
  color: var(--text-body);
}
.testimonial figcaption { margin-top: 20px; }
.testimonial .name {
  font-family: var(--font-display);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-caption);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-heading);
}
.testimonial .location { font-style: italic; font-size: 13px; color: var(--text-muted); margin-top: 4px; }

.review-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--charcoal-900);
  padding: 0;
}
.review-arrow:hover { background: var(--accent-graphic); border-color: var(--accent-graphic); color: var(--charcoal-900); }
.review-arrow.prev { left: -22px; }
.review-arrow.next { right: -22px; }
.review-dots { display: flex; justify-content: center; gap: 10px; margin-top: 34px; }
.review-dots button {
  height: 10px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  padding: 0;
  background: var(--gray-300);
  transition: all 0.3s var(--ease-out);
  width: 10px;
}
.review-dots button.active { background: var(--cta); width: 28px; }

/* ==========================================================================
   Partners
   ========================================================================== */
.partners { padding: 104px 0; background: #fff; border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); }
.partners .heading {
  text-align: center;
  font-family: var(--font-display);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-h3);
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--text-heading);
  margin: 0 0 12px;
}
.partners .sub {
  text-align: center;
  font-style: italic;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-body);
  max-width: 640px;
  margin: 0 auto 34px;
}
.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid var(--border-subtle);
}
.partners-grid div {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 34px 28px;
  border-right: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.partners-grid div:nth-child(3n) { border-right: none; }
.partners-grid div:nth-last-child(-n+3) { border-bottom: none; }
.partners-grid img { max-width: 100%; max-height: 64px; width: auto; height: auto; display: block; opacity: 0.82; }

/* ==========================================================================
   Contact CTA
   ========================================================================== */
.contact-cta { position: relative; overflow: hidden; background: #1f1f1f; color: #fff; }
.contact-cta video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.contact-cta .scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(rgba(31, 31, 31, 0.8), rgba(31, 31, 31, 0.9));
}
.contact-cta .container { position: relative; z-index: 2; padding: 96px 32px; text-align: center; }
.contact-cta .eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent-graphic);
  margin-bottom: 16px;
}
.contact-cta h2 {
  font-family: var(--font-display);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-h3);
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  margin: 0 0 16px;
  line-height: 1.25;
  color: #fff;
}
.contact-cta p.lede {
  font-size: 19px;
  font-style: italic;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 auto 34px;
  max-width: 560px;
  line-height: 1.5;
}
.contact-cta .cta-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { padding: 96px 0; background: #fff; }
.faq .container { max-width: 840px; }
.faq-list { margin-top: 50px; display: flex; flex-direction: column; gap: 14px; }
.faq-item { border: 1px solid var(--border-subtle); border-radius: var(--radius-sm); overflow: hidden; background: #fff; }
.faq-item .q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 26px;
  background: #fff;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.02em;
  color: var(--text-heading);
}
.faq-item .q .chev { flex: 0 0 auto; color: var(--accent-graphic-ink); transition: transform 0.2s var(--ease-standard); }
.faq-item.open .q .chev { transform: rotate(180deg); }
.faq-item .a { padding: 0 26px 24px; font-size: 15.5px; line-height: 1.7; color: var(--text-body); display: none; }
.faq-item.open .a { display: block; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--charcoal-900); color: rgba(255, 255, 255, 0.72); }
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 32px 0;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 48px;
}
.footer-grid img.logo { height: 46px; width: auto; display: block; margin-bottom: 20px; }
.footer-grid p { font-size: 14.5px; line-height: 1.7; color: rgba(255, 255, 255, 0.6); margin: 0 0 22px; max-width: 300px; }
.footer-social {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
}
.footer-social:hover { background: var(--accent-graphic); border-color: var(--accent-graphic); color: var(--charcoal-900); }
.footer-grid h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 20px;
}
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.footer-grid ul.connect { gap: 16px; }
.footer-grid ul a { color: rgba(255, 255, 255, 0.66); text-decoration: none; font-size: 14px; }
.footer-grid ul a:hover { color: var(--accent-graphic); }
.footer-grid li.connect-item { display: flex; align-items: flex-start; gap: 12px; }
.connect-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-graphic);
}
.connect-item span.text { font-size: 14px; line-height: 1.5; color: rgba(255, 255, 255, 0.78); }
.footer-bottom {
  max-width: 1200px;
  margin: 56px auto 0;
  padding: 28px 32px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}
.footer-bottom span { font-size: 13px; color: rgba(255, 255, 255, 0.5); }
.footer-bottom .links { display: flex; gap: 24px; }
.footer-bottom .links a { font-size: 13px; color: rgba(255, 255, 255, 0.5); text-decoration: none; }
.footer-bottom .links a:hover { color: var(--accent-graphic); }

/* ==========================================================================
   Inner page hero (Services / About / Contact)
   ========================================================================== */
.page-hero { position: relative; overflow: hidden; background: var(--charcoal-900); color: #fff; }
.page-hero video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.page-hero-scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(rgba(31, 31, 31, 0.72), rgba(31, 31, 31, 0.86));
}
.page-hero-content { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.page-hero-inner { display: flex; flex-direction: column; justify-content: center; width: 100%; }
.page-hero .eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent-graphic);
  margin: 0 0 18px;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 0 0 24px;
  text-wrap: balance;
  color: #fff;
}
.page-hero p.lede {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 300;
  font-style: italic;
  margin: 0;
}

.services-hero .page-hero-inner { min-height: 320px; padding: 96px 0; text-align: center; align-items: center; }
.services-hero h1 { font-size: clamp(32px, 4.6vw, 54px); }
.services-hero p.lede { max-width: 640px; margin: 0 auto; }

.about-hero .page-hero-inner { min-height: 400px; padding: 100px 0; max-width: 760px; }
.about-hero h1 { font-size: clamp(34px, 4.6vw, 54px); }
.about-hero p.lede { max-width: 600px; }

.contact-hero .page-hero-inner { min-height: 280px; padding: 88px 0; text-align: center; align-items: center; }
.contact-hero h1 { font-size: clamp(32px, 4.4vw, 50px); }
.contact-hero p.lede { max-width: 560px; margin: 0 auto; }

/* ==========================================================================
   Services page — sticky category nav + alternating detail rows
   ========================================================================== */
.svc-subnav {
  padding: 20px 0;
  background: var(--gray-100);
  border-bottom: 1px solid var(--border-subtle);
  position: sticky;
  top: 84px;
  z-index: 40;
}
.svc-subnav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 32px;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 8px;
}
.svc-pill {
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  background: #fff;
  color: var(--text-body);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.svc-pill:hover { border-color: var(--accent-graphic); color: var(--red-700); }

.svc-detail { padding: 96px 0; scroll-margin-top: 150px; }
.svc-detail.alt { background: var(--gray-100); }
.svc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.svc-row .svc-eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent-graphic-ink);
  margin-bottom: 14px;
}
.svc-row h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 32px;
  letter-spacing: 0.02em;
  color: var(--text-heading);
  margin: 0 0 18px;
  line-height: 1.2;
}
.svc-row p.desc { font-size: 16px; line-height: 1.7; color: var(--text-body); margin: 0 0 26px; max-width: 480px; }
.svc-row ul { list-style: none; margin: 0 0 30px; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.svc-row ul li { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--text-body); }
.svc-row ul li svg { flex: 0 0 auto; stroke: var(--accent-graphic-ink); }
.svc-media img { width: 100%; aspect-ratio: 4 / 3; height: auto; display: block; border-radius: 12px; object-fit: cover; }

@media (max-width: 900px) {
  .svc-row { grid-template-columns: 1fr; }
  .svc-row .svc-media { order: -1; }
}
@media (max-width: 767px) {
  .svc-subnav-inner {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .svc-subnav-inner::-webkit-scrollbar { display: none; }
  .svc-subnav-inner a { flex: 0 0 auto; white-space: nowrap; }
}

/* ==========================================================================
   About page — values, timeline, credentials, review carousel
   ========================================================================== */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; margin-bottom: 88px; }
.feature-item { display: flex; gap: 18px; align-items: flex-start; }
.feature-item .icon-circle {
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent-graphic-soft);
  color: var(--accent-graphic-ink);
}
.feature-item h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-heading);
  margin: 4px 0 8px;
}
.feature-item p { font-size: 15px; line-height: 1.65; color: var(--text-body); margin: 0; }

.timeline-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.timeline-step .dot { width: 14px; height: 14px; border-radius: 50%; background: var(--accent-graphic); margin-bottom: 18px; }
.timeline-step .label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-graphic-ink);
  margin-bottom: 8px;
}
.timeline-step p { font-size: 15px; line-height: 1.65; color: var(--text-body); margin: 0; }

.credentials-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 48px; margin-bottom: 80px; }
.credential-card {
  background: #fff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 26px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.credential-card svg { stroke: var(--accent-graphic-ink); }
.credential-card .stars { color: var(--accent-graphic); font-size: 22px; letter-spacing: 2px; line-height: 1; }
.credential-card .label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-heading);
  line-height: 1.4;
}

.about-reviews-wrap { position: relative; max-width: 1180px; margin: 0 auto; }
.about-reviews-viewport { overflow: hidden; padding: 4px; }
.about-reviews-track { display: flex; gap: 24px; transition: transform 0.5s var(--ease-out); }
.about-review-slide { flex: 0 0 calc((100% - 48px) / 3); box-sizing: border-box; }
.about-review-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--charcoal-900);
  padding: 0;
}
.about-review-arrow:hover { background: var(--accent-graphic); border-color: var(--accent-graphic); color: var(--charcoal-900); }
.about-review-arrow.prev { left: -22px; }
.about-review-arrow.next { right: -22px; }

@media (max-width: 900px) {
  .timeline-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .credentials-grid { grid-template-columns: repeat(2, 1fr); }
  .about-review-slide { flex: 0 0 100% !important; }
}

/* ==========================================================================
   Contact page — quote form, info card, map
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.contact-form-col .eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent-graphic-ink);
  margin-bottom: 14px;
}
.contact-form-col h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 32px;
  letter-spacing: 0.02em;
  color: var(--text-heading);
  margin: 0 0 14px;
  line-height: 1.2;
}
.contact-form-col p.desc { font-size: 16px; line-height: 1.65; color: var(--text-body); margin: 0 0 32px; max-width: 480px; }

.quote-form { display: flex; flex-direction: column; gap: 20px; }
.form-fields-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.field input, .field textarea, .field select {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-body);
  background: #fff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  outline: none;
  box-sizing: border-box;
  transition: border-color var(--dur-base) var(--ease-standard), box-shadow var(--dur-base) var(--ease-standard);
}
.field textarea { resize: vertical; }
.field select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 38px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%232d2d2d' stroke-width='2'><path d='M6 9l6 6 6-6'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px var(--focus-ring);
}

.form-success {
  background: var(--accent-graphic-soft);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 40px 34px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.form-success .icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--charcoal-900);
  color: var(--accent-graphic);
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-success h3 { font-family: var(--font-display); font-weight: 600; font-size: 20px; letter-spacing: 0.02em; color: var(--text-heading); margin: 0; }
.form-success p { font-size: 15px; line-height: 1.65; color: var(--text-body); margin: 0; }

.contact-info-card { background: var(--gray-100); border: 1px solid var(--border-subtle); border-radius: var(--radius-sm); padding: 32px; }
.contact-info-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-heading);
  margin: 0 0 22px;
}
.contact-info-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 20px; }
.contact-info-list li { display: grid; grid-template-columns: 38px 1fr; align-items: center; gap: 14px; }
.contact-info-list li.align-start { align-items: start; }
.contact-info-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border-subtle);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-graphic-ink);
}
.contact-info-list .info-text { font-size: 15px; line-height: 1.6; color: var(--text-body); }
.contact-info-list .info-text a { color: var(--text-body); text-decoration: none; font-weight: 600; }
.contact-info-list .info-text a:hover { color: var(--cta); }
.contact-hours { display: grid; grid-template-columns: auto auto; column-gap: 4px; row-gap: 6px; font-weight: 600; white-space: nowrap; font-size: 15px; color: var(--text-body); }

.contact-map { border-radius: var(--radius-sm); overflow: hidden; border: 1px solid var(--border-subtle); aspect-ratio: 4 / 3; margin-top: 24px; }
.contact-map iframe { width: 100%; height: 100%; border: 0; display: block; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-fields-row { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 900px) {
  .estimates .container { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 767px) {
  .top-bar-inner {
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    padding: 10px 24px;
    gap: 6px;
  }
  .top-bar-phones {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    width: 100%;
  }
  .top-bar-phones a { white-space: nowrap; }

  /* Header: swap desktop nav/CTA for hamburger + compact mobile CTA */
  #mainNav, #desktopCta { display: none !important; }
  .mobile-cta, .mobile-hamburger { display: flex !important; }

  /* Hero: anchor content to the top instead of vertical-centering */
  .hero-copy { padding-top: 40px !important; justify-content: flex-start !important; }

  /* Why Choose / Services: horizontal scroll-snap carousels */
  .trust-grid, .services-grid {
    display: flex !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
    margin: 56px -32px 0;
    padding: 0 32px 8px;
  }
  .trust-grid::-webkit-scrollbar, .services-grid::-webkit-scrollbar, .reviews-viewport::-webkit-scrollbar { display: none; }
  .trust-grid > .trust-card, .services-grid > .service-card {
    flex: 0 0 82%;
    scroll-snap-align: center;
  }
  .why-dots, .svc-dots { display: flex !important; }

  /* Reviews: native one-card-at-a-time scroll-snap */
  .reviews-viewport {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .reviews-track { transform: none !important; }
  .review-slide {
    flex: 0 0 100% !important;
    scroll-snap-align: center;
  }
  .review-slide:nth-child(n+4) { display: none; }
  .review-arrow { display: none !important; }

  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .partners-grid div:nth-child(3n) { border-right: 1px solid var(--border-subtle); }
  .partners-grid div:nth-child(2n) { border-right: none; }
  .footer-grid { grid-template-columns: 1fr; }
}
