/* ============================================================
   threetreeroofing-dark — Global Stylesheet
   Design system: threetreeroofing (warm-dark, yellow accent)
   5px base grid · accent #ffb900 · bg #333333 · surface #000000
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@400;700&family=Roboto:wght@400;500;700&display=swap');

/* ── Design Tokens ─────────────────────────────────────────── */
:root {
  --background:   #333333;
  --surface:      #000000;
  --surface-alt:  #222222;
  --text-primary: #ffffff;
  --text-muted:   #777777;
  --text-subtle:  #cccccc;
  --accent:       #ffb900;
  --accent-dark:  #cc9300;
  --border:       #3f3d3d;
  --border-soft:  #2a2a2a;
  --success:      #0d9347;

  --font-body:    'Roboto', sans-serif;
  --font-display: 'Roboto Condensed', sans-serif;

  --container:    1170px;
  --radius:       5px;
  --radius-lg:    8px;
  --radius-pill:  20px;

  --shadow-sm:    0 1px 3px rgba(0,0,0,.25);
  --shadow-md:    0 4px 12px rgba(0,0,0,.30);
  --shadow-lg:    0 8px 20px rgba(0,0,0,.40);

  --transition:        0.3s ease;
  --transition-fast:   0.15s ease;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }

/* ── Base ──────────────────────────────────────────────────── */
body {
  background: var(--background);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* ── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}
h1 { font-size: clamp(2.4rem, 6vw, 5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.05rem; }
h6 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); }

p { margin-bottom: 15px; max-width: 65ch; }
p:last-child { margin-bottom: 0; }
strong { font-weight: 700; }
em { font-style: italic; }

/* ── Layout ────────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 15px;
}
.section { padding: 60px 0; }
.section-sm { padding: 40px 0; }
.section-lg { padding: 80px 0; }
.section-bg-alt { background: var(--surface-alt); }
.section-bg-surface { background: var(--surface); }

.row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.col { flex: 1; min-width: 0; }
.col-half   { flex: 0 0 calc(50% - 15px); }
.col-third  { flex: 0 0 calc(33.333% - 20px); }
.col-quarter{ flex: 0 0 calc(25% - 22.5px); }

.text-center { text-align: center; }
.text-muted  { color: var(--text-muted); }
.text-subtle { color: var(--text-subtle); }
.mt-10 { margin-top: 10px; } .mt-20 { margin-top: 20px; } .mt-30 { margin-top: 30px; } .mt-40 { margin-top: 40px; }
.mb-10 { margin-bottom: 10px; } .mb-20 { margin-bottom: 20px; } .mb-30 { margin-bottom: 30px; }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 25px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--transition-fast), color var(--transition-fast), opacity var(--transition-fast), transform var(--transition-fast);
}
.btn-primary {
  background: var(--accent);
  color: #1a1300;
  border-color: var(--accent);
}
.btn-primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); color: #1a1300; }
.btn-primary:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: var(--border);
}
.btn-ghost:hover { color: var(--accent); border-color: var(--accent); }

.btn-lg { padding: 15px 35px; font-size: 1rem; }
.btn-sm { padding: 8px 15px; font-size: 13px; }

/* ── Inputs ────────────────────────────────────────────────── */
.input, .textarea, .select {
  display: block;
  width: 100%;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 12px 15px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 14px;
  transition: border-color var(--transition-fast);
  outline: none;
}
.input:focus, .textarea:focus, .select:focus { border-color: var(--accent); }
.input::placeholder, .textarea::placeholder { color: var(--text-muted); }
.textarea { resize: vertical; min-height: 120px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; color: var(--text-subtle); margin-bottom: 6px; font-weight: 500; }

/* ── Badges ────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  background: var(--surface);
  color: var(--text-subtle);
  border: 1px solid var(--border);
}
.badge-accent { background: var(--accent); color: #1a1300; border-color: var(--accent); }

.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
  display: inline-block;
}

/* ── Site Header ───────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,.3);
}
.site-header .header-top {
  background: #1a1a1a;
  padding: 6px 0;
  font-size: 12px;
  color: var(--text-subtle);
}
.site-header .header-top .container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}
.site-header .header-top a {
  color: var(--text-subtle);
  transition: color var(--transition-fast);
}
.site-header .header-top a:hover { color: var(--accent); }

.site-header .header-main { padding: 15px 0; }
.site-header .header-main .container {
  display: flex;
  align-items: center;
  gap: 30px;
}
.site-header .logo-wrap { flex-shrink: 0; }
.site-header .logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
}
.site-header .main-nav {
  display: flex;
  align-items: center;
  gap: 5px;
  flex: 1;
}
.site-header .header-cta {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
}
.site-header .phone-link {
  font-size: 16px;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
}
.site-header .phone-link:hover { color: var(--accent-dark); }

.nav-link {
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 400;
  padding: 8px 10px;
  white-space: nowrap;
  transition: color var(--transition-fast);
}
.nav-link:hover { color: var(--accent); }
.nav-link.active { color: var(--accent); }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  padding: 5px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-drawer {
  display: none;
  flex-direction: column;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 15px 20px 20px;
  gap: 5px;
}
.nav-drawer.is-open { display: flex; }
.nav-drawer .nav-link { padding: 10px 15px; border-radius: var(--radius); font-size: 15px; }
.nav-drawer .nav-link:hover { background: rgba(255,255,255,.05); }
.nav-drawer .btn { margin-top: 10px; text-align: center; }

@media (max-width: 991px) {
  .site-header .main-nav { display: none; }
  .nav-toggle { display: flex; }
}

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(51,51,51,0.8) 100%), var(--surface);
  padding: 80px 0 60px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.hero-text h1 { font-size: clamp(2.4rem, 5vw, 4rem); margin-bottom: 12px; }
.hero-text h2 { font-size: clamp(1.4rem, 2.4vw, 2rem); color: var(--accent); margin-bottom: 22px; }
.hero-eyebrow {
  color: var(--accent);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  margin-bottom: 12px;
  display: inline-block;
}
.hero-sub {
  font-size: 15px;
  color: var(--text-subtle);
  margin-bottom: 28px;
  max-width: 50ch;
}
.hero-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-image img { width: 100%; height: auto; display: block; }
.hero-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 10px;
}

/* Hero awards-grid (signature element from threetreeroofing) */
.awards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin: 28px 0;
}
.award-badge {
  background: rgba(255,255,255,0.06);
  padding: 10px;
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid var(--border-soft);
}
.award-badge img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .hero-content { grid-template-columns: 1fr; }
  .awards-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Trust Bar ─────────────────────────────────────────────── */
.trust-bar {
  background: var(--surface-alt);
  padding: 40px 0;
}
.trust-content {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 30px;
  align-items: center;
}
.review-count { text-align: center; }
.review-count-number {
  font-family: var(--font-display);
  font-size: 60px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.review-count p { color: var(--text-subtle); font-size: 13px; margin: 8px 0 0; }
.trust-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.trust-logo {
  background: rgba(255,255,255,0.05);
  padding: 15px;
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid var(--border-soft);
  transition: background var(--transition-fast);
}
.trust-logo:hover { background: rgba(255,255,255,0.10); }
.trust-logo img { height: 36px; width: auto; margin: 0 auto; object-fit: contain; }

@media (max-width: 768px) {
  .trust-content { grid-template-columns: 1fr; }
  .trust-logos { grid-template-columns: repeat(2, 1fr); }
}

/* ── Section Header ────────────────────────────────────────── */
.section-header { margin-bottom: 40px; }
.section-header.center { text-align: center; }
.section-header.center p { margin: 10px auto 0; }
.section-eyebrow {
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: inline-block;
}

/* ── Service Cards / Grid (homepage 2-col, services-page wider) ── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), border-color var(--transition);
  display: block;
  color: inherit;
}
.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
}
.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.service-card-content { padding: 25px; }
.service-card h3, .service-card h4 {
  margin-bottom: 12px;
  font-size: 1.3rem;
  color: var(--text-primary);
}
.service-card p {
  color: var(--text-subtle);
  font-size: 14px;
  margin-bottom: 18px;
}

/* services.html grid uses same .service-card scoped via .svc-card too */
.svc-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), border-color var(--transition);
}
.svc-card:hover { transform: translateY(-3px); border-color: var(--accent); }
.svc-card-body { padding: 25px; }
.svc-card-body h3 { font-size: 1.2rem; margin-bottom: 12px; }
.svc-card-body p { color: var(--text-subtle); font-size: 14px; margin-bottom: 18px; }
.svc-link {
  color: var(--accent);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.svc-link:hover { color: var(--accent-dark); }

@media (max-width: 768px) { .services-grid { grid-template-columns: 1fr; } }

/* ── Insights / 3-col Card Grid ────────────────────────────── */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.insight-card {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.insight-card img { width: 100%; height: 180px; object-fit: cover; }
.insight-content { padding: 20px; }
.insight-content h4 { margin-bottom: 8px; font-size: 1.05rem; }
.insight-meta { color: var(--text-muted); font-size: 12px; margin-top: 8px; }

@media (max-width: 768px) { .insights-grid { grid-template-columns: 1fr; } }

/* ── About + 2-col split ───────────────────────────────────── */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.about-image { border-radius: var(--radius-lg); overflow: hidden; }
.about-image img { width: 100%; height: auto; }

@media (max-width: 768px) { .about-content { grid-template-columns: 1fr; } }

/* ── Values Cards (about page) ─────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
  margin-top: 20px;
}
.value-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 25px 22px;
  transition: transform var(--transition-fast);
}
.value-card:hover { transform: translateY(-3px); }
.value-card h3 {
  font-size: 1.1rem;
  color: var(--accent);
  margin-bottom: 10px;
}
.value-card p { color: var(--text-subtle); font-size: 14px; margin: 0; }

/* ── Team Members ──────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 20px;
}
.team-member {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
}
.team-member img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.team-member h3 {
  font-size: 1.1rem;
  margin: 18px 0 4px;
  color: var(--text-primary);
}
.team-member .role {
  color: var(--accent);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.team-member p {
  color: var(--text-subtle);
  font-size: 13px;
  padding: 0 18px;
  margin: 0;
  text-align: left;
}

/* ── Testimonials ──────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 20px;
}
.testimonial-card {
  background: rgba(0,0,0,0.5);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 28px 25px;
}
.stars {
  color: var(--accent);
  font-size: 18px;
  margin-bottom: 14px;
  letter-spacing: -1px;
}
.testimonial-card blockquote, .testimonial-card .testimonial-text {
  color: var(--text-subtle);
  font-size: 14px;
  line-height: 1.6;
  font-style: italic;
  margin: 0 0 16px;
}
.testimonial-card .reviewer, .testimonial-card .testimonial-author {
  color: var(--text-muted);
  font-size: 13px;
}

@media (max-width: 991px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* ── Reviews Page Cards ────────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}
.review-card {
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 25px;
}
.review-card-stars {
  color: var(--accent);
  font-size: 18px;
  letter-spacing: -1px;
  margin-bottom: 12px;
  display: block;
}
.review-card-text {
  color: var(--text-subtle);
  font-size: 14px;
  line-height: 1.6;
  font-style: italic;
  margin: 0 0 14px;
}
.review-card-author {
  color: var(--text-primary);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
}
.review-card-badge {
  color: var(--text-muted);
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.review-source-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
}

/* ── FAQ Accordion ─────────────────────────────────────────── */
.faq-accordion, .faq-list { max-width: 880px; margin: 0 auto; }

.faq-item {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  margin-bottom: 12px;
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-item summary, .faq-item .faq-question {
  padding: 18px 22px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  transition: background var(--transition-fast);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after,
.faq-item .faq-icon {
  content: '+';
  color: var(--accent);
  font-size: 1.6rem;
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1;
  transition: transform var(--transition);
}
.faq-item summary::after { content: '+'; }
.faq-item[open] summary::after,
.faq-item .faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-item summary:hover, .faq-item .faq-question:hover { background: rgba(255,255,255,0.03); color: var(--accent); }

.faq-answer, .faq-answer-inner {
  padding: 0 22px 20px;
  color: var(--text-subtle);
  font-size: 14px;
  line-height: 1.6;
}
.faq-item summary + .faq-answer,
.faq-item .faq-question + .faq-answer {
  display: block;
}
/* For button-based pattern, JS toggles aria-expanded; visual is CSS controlled */

/* ── Process Steps (service page) ──────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 30px;
}
.process-step {
  text-align: center;
  padding: 30px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: #1a1300;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.process-step h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}
.process-step p {
  color: var(--text-subtle);
  font-size: 13px;
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 991px) { .process-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .process-steps { grid-template-columns: 1fr; } }

/* ── Detail List (inclusions) ──────────────────────────────── */
.detail-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 28px;
}
.detail-list li {
  font-size: 14px;
  color: var(--text-subtle);
  padding: 8px 0;
  border-bottom: 1px solid var(--border-soft);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.detail-list li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}
.detail-list li:last-child { border-bottom: none; }

/* ── Comparison Table ──────────────────────────────────────── */
.comparison-wrap {
  margin-top: 30px;
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  font-family: var(--font-body);
  min-width: 640px;
}
.comparison-table th,
.comparison-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  color: var(--text-subtle);
  font-size: 14px;
  text-align: left;
  vertical-align: top;
}
.comparison-table thead th {
  background: var(--surface-alt);
  color: var(--text-primary);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 2px solid var(--accent);
}
.comparison-table tbody th {
  font-weight: 700;
  color: var(--text-primary);
  width: 22%;
  background: rgba(0,0,0,0.4);
  font-family: var(--font-display);
}
.comparison-table tbody tr.row-business th,
.comparison-table tbody tr.row-business td {
  background: rgba(255, 185, 0, 0.08);
  color: var(--text-primary);
  border-bottom-color: var(--accent);
}
.comparison-table tbody tr:last-child th,
.comparison-table tbody tr:last-child td { border-bottom: none; }

/* ── Case Study ────────────────────────────────────────────── */
.case-study {
  margin-top: 30px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  max-width: 820px;
}
.case-study .case-meta {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 0 12px;
}
.case-study h3 { font-size: 1.3rem; margin-bottom: 14px; }
.case-study p { color: var(--text-subtle); font-size: 14px; line-height: 1.6; margin-bottom: 14px; }
.case-study ul.materials {
  list-style: none;
  padding: 0;
  margin: 14px 0 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
}
.case-study ul.materials li {
  background: var(--surface-alt);
  color: var(--text-subtle);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 5px 12px;
  font-size: 13px;
}
.case-study .outcome {
  font-style: italic;
  color: var(--text-primary);
  border-top: 1px solid var(--border-soft);
  padding-top: 14px;
  margin-bottom: 0;
}

/* ── Locations Page ────────────────────────────────────────── */
.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0;
}
.location-chip,
.area-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 22px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  transition: border-color var(--transition-fast), color var(--transition-fast);
  display: inline-block;
}
.location-chip:hover, .area-card:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.areas-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 30px;
}
.area-detail-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 4px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 25px;
  transition: transform var(--transition-fast);
}
.area-detail-card:hover { transform: translateY(-3px); }
.area-detail-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.area-detail-card p { color: var(--text-subtle); font-size: 14px; margin-bottom: 14px; }
.area-detail-card .area-link {
  color: var(--accent);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.location-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-top: 30px;
}
.loc-service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 25px;
  transition: border-color var(--transition-fast), transform var(--transition-fast);
}
.loc-service-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.loc-service-card h3 { font-size: 1.1rem; margin-bottom: 10px; color: var(--accent); }
.loc-service-card p { color: var(--text-subtle); font-size: 14px; margin: 0; }

/* ── Manufacturer Page ─────────────────────────────────────── */
.feature-list {
  display: grid;
  gap: 18px;
  margin-top: 25px;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 18px 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.feature-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 6px;
}
.feature-item strong { display: block; color: var(--text-primary); margin-bottom: 6px; font-family: var(--font-display); font-size: 1.05rem; }
.feature-item p { color: var(--text-subtle); font-size: 14px; margin: 0; }

.warranty-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin: 35px 0;
  text-align: center;
}
.warranty-stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 4px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 25px 18px;
}
.warranty-stat .stat-value {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--accent);
  font-weight: 700;
  line-height: 1;
}
.warranty-stat .stat-label {
  color: var(--text-muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 10px;
}

@media (max-width: 600px) { .warranty-stats { grid-template-columns: 1fr; } }

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 30px;
}
.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}
.product-card:hover { transform: translateY(-3px); border-color: var(--accent); }
.product-card-thumb { width: 100%; height: 180px; object-fit: cover; }
.product-card-body { padding: 22px; }
.product-card-badge {
  background: var(--accent);
  color: #1a1300;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  display: inline-block;
  margin-bottom: 10px;
}
.product-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.product-card p { color: var(--text-subtle); font-size: 13px; margin-bottom: 14px; }
.product-spec-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.product-spec {
  background: var(--surface-alt);
  color: var(--text-subtle);
  font-size: 12px;
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 4px 10px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 30px;
}
.why-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 25px 22px;
  text-align: left;
  transition: transform var(--transition-fast);
}
.why-card:hover { transform: translateY(-3px); }
.why-icon {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 14px;
}
.why-card h3 { font-size: 1.05rem; margin-bottom: 10px; color: var(--accent); }
.why-card p { color: var(--text-subtle); font-size: 13px; margin: 0; }

/* ── Warranty Lists (covered/not-covered) ──────────────────── */
.warranty-coverage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 30px;
}
.coverage-col {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 25px;
}
.coverage-col.covered { border-top: 4px solid var(--success); }
.coverage-col.not-covered { border-top: 4px solid var(--accent-dark); }
.coverage-col h3 { font-size: 1.15rem; margin-bottom: 18px; }
.coverage-col ul { list-style: none; padding: 0; }
.coverage-col li {
  padding: 8px 0 8px 28px;
  color: var(--text-subtle);
  font-size: 14px;
  border-bottom: 1px solid var(--border-soft);
  position: relative;
}
.coverage-col li:last-child { border-bottom: none; }
.coverage-col.covered li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--success);
  font-weight: 700;
}
.coverage-col.not-covered li::before {
  content: '✗';
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--accent-dark);
  font-weight: 700;
}

@media (max-width: 768px) { .warranty-coverage { grid-template-columns: 1fr; } }

/* ── Contact Form (2-col split) ────────────────────────────── */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  margin-top: 20px;
}
.contact-info-panel { color: var(--text-subtle); font-size: 14px; }
.contact-info-panel h3 {
  color: var(--accent);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 18px 0 6px;
}
.contact-info-panel a { color: var(--text-subtle); }
.contact-info-panel a:hover { color: var(--accent); }
.contact-info-panel .big-phone {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--accent);
  font-weight: 700;
  display: block;
  margin: 5px 0 8px;
}
.contact-form-panel {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
}

@media (max-width: 768px) { .contact-split { grid-template-columns: 1fr; } }

/* ── CTA Band ──────────────────────────────────────────────── */
.cta-band {
  background: var(--accent);
  color: #1a1300;
  padding: 60px 0;
  text-align: center;
}
.cta-band h2 { color: #1a1300; margin-bottom: 14px; }
.cta-band p {
  color: rgba(26,19,0,0.85);
  font-size: 15px;
  margin: 0 auto 28px;
  max-width: 620px;
}
.cta-band .cta-actions, .cta-band .cta-band-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-band .btn-cta-white,
.cta-band .btn {
  background: var(--surface);
  color: var(--accent);
  border: 2px solid var(--surface);
  padding: 14px 32px;
  font-weight: 700;
  border-radius: var(--radius);
  transition: opacity var(--transition-fast);
}
.cta-band .btn-cta-white:hover, .cta-band .btn:hover { opacity: 0.9; color: var(--accent); }
.cta-band .btn-cta-outline {
  background: transparent;
  color: #1a1300;
  border: 2px solid rgba(26,19,0,0.55);
  padding: 14px 32px;
  font-weight: 700;
  border-radius: var(--radius);
}
.cta-band .btn-cta-outline:hover { border-color: #1a1300; }
.cta-band .cta-phone-large {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: #1a1300;
  align-self: center;
}
.cta-band .cta-footnote {
  font-size: 12px;
  color: rgba(26,19,0,0.65);
  margin: 18px 0 0;
}

/* ── Site Footer ───────────────────────────────────────────── */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 50px 0 25px;
  color: var(--text-muted);
}
.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 35px;
  margin-bottom: 35px;
}
.site-footer .footer-logo { height: 80px; width: auto; margin-bottom: 18px; }
.site-footer .footer-desc {
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 18px;
  max-width: 30ch;
}
.site-footer .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
}
.site-footer .footer-contact a { color: var(--text-muted); }
.site-footer .footer-contact a:hover { color: var(--accent); }
.site-footer .footer-heading {
  font-family: var(--font-display);
  color: var(--text-primary);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}
.site-footer .footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.site-footer .footer-links a {
  color: var(--text-muted);
  font-size: 13px;
}
.site-footer .footer-links a:hover { color: var(--accent); }
.site-footer .footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
}
.site-footer .footer-bottom p { color: var(--text-muted); margin: 0; max-width: none; font-size: 12px; }

@media (max-width: 768px) {
  .site-footer .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .site-footer .footer-grid { grid-template-columns: 1fr; }
}

/* ── Hero Trust Quick (under hero CTA on service page) ─────── */
.trust-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 24px;
}
.trust-quick span {
  font-size: 13px;
  color: var(--text-subtle);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.trust-quick .chk { color: var(--success); font-weight: 700; }

/* ── Reduced Motion ────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
