/* ==========================================================================
   On Point Roofing Repair — Variant 1 "Estate"
   Light, editorial, premium serif treatment
   ========================================================================== */

/* 1. Reset & Box-Sizing
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font: inherit; }

/* 2. CSS Custom Properties
   ========================================================================== */
:root {
  /* Brand */
  --color-primary:       #174D1E;
  --color-primary-dark:  #0E3413;
  --color-secondary:     #2E6B37;
  --color-accent:        #F9BF03;

  /* Text */
  --color-text:          #182019;
  --color-text-muted:    #5C675E;
  --color-text-inverse:  #ffffff;

  /* Backgrounds */
  --color-bg:            #ffffff;
  --color-bg-alt:        #F4F6F1;
  --color-bg-dark:       #0B2410;
  --color-bg-card:       #ffffff;

  /* Borders */
  --color-border:        #E4E8E1;
  --color-border-strong: #CBD2C8;

  /* Buttons */
  --btn-primary-bg:      var(--color-primary);
  --btn-primary-text:    #ffffff;
  --btn-primary-hover:   var(--color-primary-dark);
  --btn-ghost-border:    var(--color-primary);
  --btn-ghost-text:      var(--color-primary);

  /* Type */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;

  /* Misc */
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-card: 0 6px 24px rgba(11, 36, 16, 0.08);
  --shadow-card-hover: 0 14px 40px rgba(11, 36, 16, 0.16);
  --utility-height: 46px;
  --header-height: 86px;
}

/* 3. Base Styles
   ========================================================================== */
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }

/* 4. Typography
   ========================================================================== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.18;
  color: var(--color-text);
  text-wrap: balance;
  font-weight: 600;
}
h1 { font-size: clamp(38px, 4.6vw, 60px); }
h2 { font-size: clamp(28px, 3.2vw, 42px); }
h3 { font-size: clamp(22px, 2.2vw, 27px); }
h4 { font-size: 19px; font-family: var(--font-body); font-weight: 700; }
p { max-width: 68ch; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 18px;
}
.section-label::before {
  content: "";
  width: 34px;
  height: 3px;
  background: var(--color-accent);
}
.section-label.centered::after {
  content: "";
  width: 34px;
  height: 3px;
  background: var(--color-accent);
}
.section-heading { margin-bottom: 20px; }
.section-subtitle { color: var(--color-text-muted); font-size: 18px; }
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto 12px; }
.text-center .section-heading { margin-left: auto; margin-right: auto; max-width: 760px; }
.text-center .section-label { justify-content: center; }

/* 5. Layout
   ========================================================================== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 860px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 110px 0; }

/* 6. Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 17px 34px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  transition: all 0.22s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--color-accent);
  color: #1d1605;
  box-shadow: 0 8px 22px rgba(249, 191, 3, 0.32);
}
.btn-primary:hover { background: #ffd23d; transform: translateY(-2px); box-shadow: 0 12px 28px rgba(249, 191, 3, 0.42); }
.btn-green {
  background: var(--btn-primary-bg);
  color: var(--btn-primary-text);
}
.btn-green:hover { background: var(--btn-primary-hover); transform: translateY(-2px); }
.btn-ghost {
  border: 2px solid var(--btn-ghost-border);
  color: var(--btn-ghost-text);
}
.btn-ghost:hover { background: var(--color-primary); color: #fff; }
.btn-ghost-light {
  border: 2px solid rgba(255, 255, 255, 0.65);
  color: #fff;
}
.btn-ghost-light:hover { background: #fff; color: var(--color-primary); border-color: #fff; }
.btn-full { width: 100%; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* 7. Utility Bar
   ========================================================================== */
.utility-bar {
  background: var(--color-bg-dark);
  color: rgba(255, 255, 255, 0.88);
  height: var(--utility-height);
  font-size: 14px;
  position: relative;
  z-index: 1001;
}
.utility-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}
.utility-bar a, .utility-bar span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.utility-bar svg { width: 15px; height: 15px; color: var(--color-accent); }
.utility-phone { font-weight: 700; color: #fff; }
.utility-phone:hover { color: var(--color-accent); }
@media (max-width: 1024px) { .utility-bar { display: none; } }

/* 8. Header & Navigation
   ========================================================================== */
.site-header {
  position: fixed;
  top: var(--utility-height);
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}
.site-header.scrolled {
  box-shadow: 0 8px 30px rgba(11, 36, 16, 0.1);
  backdrop-filter: blur(8px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 24px;
}
.site-header.scrolled .header-inner { height: 72px; }
.header-logo img { height: 52px; width: auto; transition: height 0.25s ease; }
.site-header.scrolled .header-logo img { height: 44px; }
.header-nav { display: flex; align-items: center; gap: 4px; }
.header-nav > li { position: relative; }
.header-nav > li > a {
  display: block;
  padding: 12px 14px;
  font-weight: 600;
  font-size: 15.5px;
  border-radius: 8px;
  transition: color 0.18s ease;
}
.header-nav > li > a:hover { color: var(--color-primary); }
.header-nav > li > a .caret { display: inline-block; margin-left: 4px; transition: transform 0.2s; font-size: 11px; color: var(--color-text-muted); }
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  background: #fff;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card-hover);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s ease;
}
.has-dropdown:hover .dropdown,
.has-dropdown.focus-open .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--color-text);
}
.dropdown a:hover { background: var(--color-bg-alt); color: var(--color-primary); }
.header-cta { display: flex; align-items: center; gap: 18px; }
.header-phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.25;
}
.header-phone .phone-label { font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-text-muted); font-weight: 600; }
.header-phone .phone-number { font-weight: 800; font-size: 17px; color: var(--color-primary); }
.header-phone:hover .phone-number { color: var(--color-secondary); }
.header-cta .btn { padding: 14px 26px; font-size: 15px; }

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.mobile-menu-toggle span {
  width: 26px;
  height: 3px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all 0.25s ease;
}
.mobile-menu-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: min(380px, 88vw);
  height: 100vh;
  background: #fff;
  z-index: 999;
  padding: 110px 28px 40px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  box-shadow: -20px 0 60px rgba(11, 36, 16, 0.18);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav > ul > li { border-bottom: 1px solid var(--color-border); }
.mobile-nav a { display: block; padding: 15px 4px; font-weight: 600; font-size: 16px; }
.mobile-nav-group-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 4px;
  font-weight: 600;
  font-size: 16px;
  color: var(--color-text);
}
.mobile-nav-group-toggle::after { content: "+"; font-size: 20px; color: var(--color-primary); }
.mobile-nav-group.open .mobile-nav-group-toggle::after { content: "\2212"; }
.mobile-nav-sub { display: none; padding: 0 0 10px 14px; }
.mobile-nav-group.open .mobile-nav-sub { display: block; }
.mobile-nav-sub a { font-size: 14.5px; padding: 9px 4px; font-weight: 500; color: var(--color-text-muted); }
.mobile-nav .mobile-nav-cta { margin-top: 24px; }
.mobile-nav .mobile-nav-cta .btn { width: 100%; margin-bottom: 12px; }

@media (max-width: 1024px) {
  .site-header { top: 0 !important; }
  .header-nav, .header-cta .header-phone { display: none; }
  .header-cta .btn { display: none; }
  .mobile-menu-toggle { display: flex; }
  .mobile-nav { display: block; }
  .header-inner { height: 72px; }
  .header-logo img { height: 44px; }
}

/* 9. Hero
   ========================================================================== */
.hero-section { position: relative; }
.hero-bg {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center 30%;
  padding: calc(var(--utility-height) + var(--header-height) + 60px) 0 140px;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(98deg, rgba(7, 26, 11, 0.93) 0%, rgba(9, 33, 14, 0.78) 38%, rgba(11, 36, 16, 0.42) 70%, rgba(11, 36, 16, 0.28) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 760px; }
.hero-content .section-label { color: var(--color-accent); }
.hero-content .section-label::before { background: var(--color-accent); }
.hero-content h1 { color: #fff; margin-bottom: 24px; }
.hero-content h1 em { font-style: italic; color: var(--color-accent); }
.hero-subtitle {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(17px, 1.5vw, 19.5px);
  margin-bottom: 38px;
  max-width: 58ch;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.hero-note {
  position: relative;
  z-index: 2;
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14.5px;
  font-weight: 600;
}
.hero-note svg { width: 18px; height: 18px; color: var(--color-accent); }

/* 10. Trust Bar
   ========================================================================== */
.trust-bar { position: relative; z-index: 5; margin-top: -76px; padding-bottom: 0; }
.trust-bar-inner {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card-hover);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding: 34px 20px;
}
.trust-item {
  text-align: center;
  padding: 6px 18px;
  border-right: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.trust-item:last-child { border-right: none; }
.trust-item svg { width: 26px; height: 26px; color: var(--color-primary); margin-bottom: 4px; }
.trust-number { font-family: var(--font-display); font-weight: 700; font-size: 21px; color: var(--color-primary); line-height: 1.2; }
.trust-label { font-size: 13px; color: var(--color-text-muted); font-weight: 600; letter-spacing: 0.02em; }

/* 11. Sections
   ========================================================================== */

/* About */
.about-section { padding-top: 96px; }
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 76px;
  align-items: center;
}
.about-copy p { margin-bottom: 18px; color: var(--color-text-muted); }
.about-copy p.lead-line { color: var(--color-text); font-size: 19px; font-weight: 600; }
.about-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 26px;
  margin: 26px 0 30px;
}
.about-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 600;
  font-size: 15.5px;
}
.about-checklist svg { width: 20px; height: 20px; color: var(--color-primary); flex-shrink: 0; margin-top: 3px; }
.about-owner {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid var(--color-border);
}
.about-owner .owner-sig { font-family: var(--font-display); font-style: italic; font-size: 22px; color: var(--color-primary); }
.about-owner .owner-role { font-size: 13.5px; color: var(--color-text-muted); font-weight: 600; }
.about-photo { position: relative; }
.about-photo img {
  border-radius: var(--radius);
  width: 100%;
  height: 560px;
  object-fit: cover;
  box-shadow: var(--shadow-card-hover);
}
.about-photo::after {
  content: "";
  position: absolute;
  inset: 26px -26px -26px 26px;
  border: 3px solid var(--color-accent);
  border-radius: var(--radius);
  z-index: -1;
}
.about-badge {
  position: absolute;
  bottom: 30px;
  left: -34px;
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 20px 26px;
  box-shadow: var(--shadow-card-hover);
}
.about-badge .badge-number { font-family: var(--font-display); font-size: 34px; font-weight: 700; color: var(--color-accent); line-height: 1.1; }
.about-badge .badge-label { font-size: 13px; font-weight: 600; opacity: 0.9; }

/* Services */
.services-section { background: var(--color-bg-alt); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 54px;
}
.service-card {
  background: var(--color-bg-card);
  border-radius: var(--radius);
  padding: 36px 30px 32px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  transition: all 0.22s ease;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  width: 0;
  background: var(--color-accent);
  transition: width 0.3s ease;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card-hover); }
.service-card:hover::after { width: 100%; }
.service-card-icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: rgba(23, 77, 30, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.service-card-icon svg { width: 28px; height: 28px; color: var(--color-primary); }
.service-card h3 { font-size: 21px; margin-bottom: 10px; }
.service-card p { font-size: 15px; color: var(--color-text-muted); flex: 1; }
.service-card .card-link {
  margin-top: 20px;
  font-weight: 700;
  font-size: 14.5px;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.service-card .card-link svg { width: 15px; height: 15px; transition: transform 0.2s ease; }
.service-card:hover .card-link svg { transform: translateX(4px); }
.services-footer { text-align: center; margin-top: 46px; }

/* Stats */
.stats-section {
  background: var(--color-bg-dark);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249, 191, 3, 0.14), transparent 70%);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}
.stat-item { text-align: center; padding: 0 14px; border-right: 1px solid rgba(255, 255, 255, 0.12); }
.stat-item:last-child { border-right: none; }
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(46px, 4.4vw, 66px);
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1.1;
  margin-bottom: 8px;
}
.stat-label { color: rgba(255, 255, 255, 0.82); font-size: 15px; font-weight: 600; }

/* Why Choose Us */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 44px;
  margin-top: 56px;
}
.why-item { display: flex; gap: 18px; align-items: flex-start; }
.why-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(249, 191, 3, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-icon svg { width: 24px; height: 24px; color: var(--color-primary); }
.why-content h3 { font-size: 20px; margin-bottom: 8px; font-family: var(--font-body); font-weight: 700; }
.why-content p { font-size: 15px; color: var(--color-text-muted); }
.warranty-strip {
  margin-top: 64px;
  background: var(--color-bg-alt);
  border: 1px dashed var(--color-border-strong);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: auto 1fr 1fr 1fr;
  align-items: center;
  gap: 26px;
  padding: 28px 38px;
}
.warranty-strip .warranty-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-primary);
  max-width: 200px;
  line-height: 1.3;
}
.warranty-item { display: flex; align-items: center; gap: 14px; }
.warranty-item .warranty-years {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1;
}
.warranty-item .warranty-years span { font-size: 15px; color: var(--color-accent); }
.warranty-item .warranty-desc { font-size: 14px; font-weight: 600; color: var(--color-text-muted); line-height: 1.4; }

/* Process */
.process-section { background: var(--color-bg-alt); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px 36px;
  margin-top: 56px;
  counter-reset: step;
}
.process-step { position: relative; padding-left: 80px; }
.step-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-accent);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 23px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(23, 77, 30, 0.28);
}
.step-content h3 { font-size: 19px; font-family: var(--font-body); font-weight: 700; margin-bottom: 6px; }
.step-content p { font-size: 14.5px; color: var(--color-text-muted); }

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
  margin-top: 54px;
  align-items: stretch;
}
.rating-card {
  background: var(--color-bg-dark);
  color: #fff;
  border-radius: var(--radius);
  padding: 48px 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 14px;
}
.rating-card .rating-score { font-family: var(--font-display); font-size: 74px; font-weight: 700; color: var(--color-accent); line-height: 1; }
.rating-card .testimonial-stars { margin: 2px 0 4px; }
.rating-card .rating-text { color: rgba(255, 255, 255, 0.85); font-size: 16px; font-weight: 600; }
.rating-card .btn { margin-top: 18px; }
.testimonial-stars { display: flex; gap: 4px; }
.testimonial-stars svg { width: 21px; height: 21px; color: var(--color-accent); }
.testimonial-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 46px 46px 40px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  position: relative;
}
.testimonial-card .quote-mark {
  font-family: var(--font-display);
  font-size: 96px;
  line-height: 0.6;
  color: var(--color-accent);
  margin-bottom: 24px;
}
.testimonial-text { font-size: 18.5px; line-height: 1.75; color: var(--color-text); flex: 1; font-style: italic; }
.testimonial-author { margin-top: 26px; display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.testimonial-author .author-name { font-weight: 800; font-size: 16px; }
.testimonial-author .author-meta { font-size: 13.5px; color: var(--color-text-muted); font-weight: 600; }
.testimonial-themes {
  margin-top: 46px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.theme-chip {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.theme-chip svg { width: 15px; height: 15px; color: var(--color-accent); }

/* Gallery */
.gallery-section { background: var(--color-bg-alt); }
.gallery-grid { display: grid; gap: 18px; margin-top: 54px; }
.gallery-row-squares { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.gallery-row-wide { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
}
.gallery-row-squares .gallery-item { aspect-ratio: 1 / 1; }
.gallery-row-wide .gallery-item { aspect-ratio: 4 / 3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 36, 16, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay svg { width: 34px; height: 34px; color: #fff; }
.gallery-footer { text-align: center; margin-top: 46px; }

.gallery-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(7, 18, 9, 0.94);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 50px;
}
.gallery-lightbox.open { display: flex; }
.gallery-lightbox img { max-width: 88vw; max-height: 84vh; border-radius: 10px; object-fit: contain; width: auto; height: auto; }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  color: #fff;
  font-size: 30px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: rgba(249, 191, 3, 0.85); color: #182019; }
.lightbox-close { top: 26px; right: 30px; font-size: 36px; }
.lightbox-prev { left: 26px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 26px; top: 50%; transform: translateY(-50%); }

/* CTA Strip */
.cta-strip {
  background: linear-gradient(115deg, var(--color-bg-dark) 0%, var(--color-primary-dark) 60%, var(--color-primary) 100%);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-strip::after {
  content: "";
  position: absolute;
  bottom: -160px;
  left: -100px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249, 191, 3, 0.12), transparent 70%);
}
.cta-strip-inner { position: relative; z-index: 2; }
.cta-strip h2 { color: #fff; max-width: 720px; margin: 0 auto 16px; }
.cta-strip p { color: rgba(255, 255, 255, 0.82); margin: 0 auto 34px; font-size: 18px; }
.cta-phone {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(30px, 3.4vw, 44px);
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 30px;
}
.cta-phone:hover { color: #ffd23d; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* FAQ */
.faq-list { margin-top: 50px; }
.faq-item {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}
.faq-item[open] { box-shadow: var(--shadow-card); border-color: var(--color-border-strong); }
.faq-question {
  list-style: none;
  cursor: pointer;
  padding: 22px 60px 22px 26px;
  font-weight: 700;
  font-size: 17px;
  position: relative;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--color-bg-alt);
  color: var(--color-primary);
  font-size: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.faq-item[open] .faq-question::after { content: "\00d7"; background: var(--color-accent); color: #1d1605; }
.faq-answer { padding: 0 26px 24px; color: var(--color-text-muted); font-size: 15.5px; }
.faq-answer p { margin-bottom: 10px; }
.faq-answer p:last-child { margin-bottom: 0; }

/* Contact Section */
.contact-section { background: var(--color-bg-alt); }
.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 34px;
  margin-top: 54px;
  align-items: start;
}
.contact-form-wrap {
  background: var(--color-bg-card);
  border-radius: var(--radius);
  padding: 44px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
}
.contact-info-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-card {
  background: var(--color-bg-card);
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  padding: 26px 22px;
  box-shadow: var(--shadow-card);
}
.contact-card-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(23, 77, 30, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.contact-card-icon svg { width: 22px; height: 22px; color: var(--color-primary); }
.contact-card h4 { font-size: 14px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--color-text-muted); margin-bottom: 6px; }
.contact-card a, .contact-card p { font-weight: 700; font-size: 15.5px; color: var(--color-text); line-height: 1.45; }
.contact-card a:hover { color: var(--color-primary); }

/* 12. GMB Map
   ========================================================================== */
.gmb-map-section { line-height: 0; }
.gmb-map-section iframe { width: 100%; height: 400px; border: 0; filter: saturate(0.9); }
@media (max-width: 768px) { .gmb-map-section iframe { height: 300px; } }

/* 13. Footer
   ========================================================================== */
.site-footer { background: var(--color-bg-dark); color: rgba(255, 255, 255, 0.78); }
.footer-inner { padding: 84px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr 1fr;
  gap: 44px;
  padding-bottom: 60px;
}
.footer-logo img { height: 56px; width: auto; margin-bottom: 20px; }
.footer-col p { font-size: 14.5px; line-height: 1.7; max-width: 34ch; }
.footer-col h4 {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  font-family: var(--font-body);
  font-weight: 700;
}
.footer-col h4::after { content: ""; display: block; width: 28px; height: 3px; background: var(--color-accent); margin-top: 9px; }
.footer-nav li { margin-bottom: 11px; }
.footer-nav a { font-size: 14.5px; transition: color 0.18s ease; }
.footer-nav a:hover { color: var(--color-accent); }
.footer-contact li { display: flex; gap: 11px; margin-bottom: 15px; font-size: 14.5px; align-items: flex-start; }
.footer-contact svg { width: 17px; height: 17px; color: var(--color-accent); flex-shrink: 0; margin-top: 4px; }
.footer-contact a:hover { color: var(--color-accent); }
.footer-license {
  background: rgba(249, 191, 3, 0.1);
  border: 1px solid rgba(249, 191, 3, 0.35);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  margin-top: 4px;
}
.footer-license .license-label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-accent); font-weight: 700; }
.footer-license .license-number { font-size: 19px; font-weight: 800; color: #fff; }
.footer-trust-item { display: flex; align-items: center; gap: 9px; margin-bottom: 12px; font-size: 14px; font-weight: 600; }
.footer-trust-item svg { width: 16px; height: 16px; color: var(--color-accent); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 13.5px;
}
.footer-bottom a { color: var(--color-accent); }

/* Forms
   ========================================================================== */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  margin-bottom: 7px;
  color: var(--color-text);
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--color-border-strong);
  border-radius: var(--radius-sm);
  font-size: 15px;
  background: #fff;
  color: var(--color-text);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(23, 77, 30, 0.12);
}
.form-group textarea { resize: vertical; }
.form-success, .form-error { margin-top: 16px; padding: 15px 18px; border-radius: var(--radius-sm); font-size: 15px; font-weight: 600; }
.form-success { background: rgba(23, 77, 30, 0.1); color: var(--color-primary); border: 1px solid rgba(23, 77, 30, 0.3); }
.form-error { background: rgba(180, 40, 30, 0.08); color: #9c2418; border: 1px solid rgba(180, 40, 30, 0.3); }
.form-error a { font-weight: 800; text-decoration: underline; }

/* 14. Animations
   ========================================================================== */
.fade-in-up { opacity: 0; transform: translateY(26px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in-up.visible { opacity: 1; transform: translateY(0); }

/* 15. Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .section-pad { padding: 72px 0; }
  .hero-bg { min-height: 78vh; padding-top: 150px; padding-bottom: 130px; }
  .trust-bar-inner { grid-template-columns: repeat(3, 1fr); row-gap: 26px; }
  .trust-item:nth-child(3) { border-right: none; }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-photo img { height: 440px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); row-gap: 44px; }
  .stat-item:nth-child(2) { border-right: none; }
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 38px 34px; }
  .warranty-strip { grid-template-columns: 1fr 1fr; row-gap: 22px; }
  .warranty-strip .warranty-title { max-width: none; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .gallery-row-squares { grid-template-columns: repeat(2, 1fr); }
  .gallery-row-wide { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section-pad { padding: 54px 0; }
  body { font-size: 16px; }
  .hero-bg { min-height: 0; padding-top: 130px; padding-bottom: 120px; }
  .hero-actions .btn { width: 100%; }
  .trust-bar { margin-top: -60px; }
  .trust-bar-inner { grid-template-columns: 1fr 1fr; padding: 24px 14px; }
  .trust-item { border-right: none; padding: 8px 10px; }
  .trust-item:nth-child(5) { grid-column: 1 / -1; }
  .services-grid { grid-template-columns: 1fr; }
  .about-photo::after { display: none; }
  .about-badge { left: 16px; }
  .about-checklist { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .warranty-strip { grid-template-columns: 1fr; padding: 24px; }
  .process-steps { grid-template-columns: 1fr; }
  .gallery-row-squares, .gallery-row-wide { grid-template-columns: 1fr 1fr; gap: 10px; }
  .gallery-grid { gap: 10px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-info-cards { grid-template-columns: 1fr 1fr; }
  .contact-form-wrap { padding: 28px 22px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-actions .btn { width: 100%; }
  .lightbox-prev, .lightbox-next { width: 42px; height: 42px; font-size: 22px; }
  .gallery-lightbox { padding: 20px; }
}

@media (max-width: 480px) {
  .contact-info-cards { grid-template-columns: 1fr; }
  .gallery-row-squares, .gallery-row-wide { grid-template-columns: 1fr; }
}

/* 16. Inner Pages
   ========================================================================== */

/* Page hero */
.page-hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center 35%;
  padding: calc(var(--utility-height) + var(--header-height) + 80px) 0 76px;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 26, 11, 0.55) 0%, rgba(7, 26, 11, 0.38) 40%, rgba(7, 26, 11, 0.88) 100%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; max-width: 840px; margin-bottom: 16px; font-size: clamp(34px, 4.2vw, 54px); }
.page-hero .hero-subtitle { margin-bottom: 0; }
.page-hero .section-label { color: var(--color-accent); }
.page-hero .hero-actions { margin-top: 30px; }

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 22px;
}
.breadcrumb a { color: rgba(255, 255, 255, 0.92); }
.breadcrumb a:hover { color: var(--color-accent); }
.breadcrumb .crumb-sep { color: var(--color-accent); }
.breadcrumb .crumb-current { color: rgba(255, 255, 255, 0.65); }

/* Generic split layout */
.split-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 72px;
  align-items: center;
}
.split-grid.reverse { grid-template-columns: 0.95fr 1.05fr; }
.split-copy p { margin-bottom: 18px; color: var(--color-text-muted); }
.split-copy p.lead-line { color: var(--color-text); font-size: 19px; font-weight: 600; }
.split-photo { position: relative; }
.split-photo img {
  border-radius: var(--radius);
  width: 100%;
  height: 500px;
  object-fit: cover;
  box-shadow: var(--shadow-card-hover);
}
.split-photo.framed::after {
  content: "";
  position: absolute;
  inset: 24px -24px -24px 24px;
  border: 3px solid var(--color-accent);
  border-radius: var(--radius);
  z-index: -1;
}
.split-photo.framed-left::after {
  content: "";
  position: absolute;
  inset: 24px 24px -24px -24px;
  border: 3px solid var(--color-accent);
  border-radius: var(--radius);
  z-index: -1;
}

/* Checklist (generic) */
.check-list { display: grid; gap: 12px; margin: 22px 0 26px; }
.check-list.two-col { grid-template-columns: 1fr 1fr; gap: 12px 26px; }
.check-list li { display: flex; align-items: flex-start; gap: 10px; font-weight: 600; font-size: 15.5px; }
.check-list li svg { width: 20px; height: 20px; color: var(--color-primary); flex-shrink: 0; margin-top: 3px; }

/* Scope of work cards */
.scope-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 52px;
}
.scope-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow-card);
}
.scope-card h3 { font-size: 19px; font-family: var(--font-body); font-weight: 700; margin-bottom: 10px; display: flex; align-items: center; gap: 11px; }
.scope-card h3 svg { width: 22px; height: 22px; color: var(--color-primary); flex-shrink: 0; }
.scope-card p { font-size: 14.5px; color: var(--color-text-muted); }
.scope-card ul { margin-top: 10px; display: grid; gap: 7px; }
.scope-card ul li { font-size: 14.5px; color: var(--color-text-muted); display: flex; gap: 9px; align-items: flex-start; }
.scope-card ul li::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--color-accent); flex-shrink: 0; margin-top: 7px; }

/* Feature band (photo + dark panel) */
.feature-band { background: var(--color-bg-dark); color: #fff; overflow: hidden; }
.feature-band .split-copy p { color: rgba(255, 255, 255, 0.8); }
.feature-band h2, .feature-band h3 { color: #fff; }
.feature-band .check-list li { color: rgba(255, 255, 255, 0.9); }
.feature-band .check-list li svg { color: var(--color-accent); }
.feature-band .section-label { color: var(--color-accent); }

/* Related services */
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.related-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 26px 24px;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-weight: 700;
  font-size: 16.5px;
  transition: all 0.2s ease;
}
.related-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card-hover); color: var(--color-primary); }
.related-card svg { width: 19px; height: 19px; color: var(--color-accent); flex-shrink: 0; }

/* Page gallery strips */
.page-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 50px;
}
.page-gallery-grid .gallery-item { aspect-ratio: 4 / 3; }

/* Full gallery page */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 44px 0 10px;
}
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 36px;
}
.gallery-masonry .gallery-item { aspect-ratio: 3 / 4; }
.gallery-masonry .gallery-item.wide { grid-column: span 2; aspect-ratio: auto; }

/* Reviews page */
.reviews-hero-card {
  background: var(--color-bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card-hover);
  padding: 48px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
  margin-top: 52px;
}
.reviews-hero-card .rating-score {
  font-family: var(--font-display);
  font-size: 86px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}
.reviews-hero-card .rating-meta h3 { margin-bottom: 6px; }
.reviews-hero-card .rating-meta p { color: var(--color-text-muted); font-size: 15.5px; }
.reviews-hero-card .testimonial-stars svg { width: 26px; height: 26px; }

/* Values grid (about) */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 52px;
}
.value-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 32px 26px;
  box-shadow: var(--shadow-card);
  text-align: center;
}
.value-card .value-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(249, 191, 3, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.value-card .value-icon svg { width: 26px; height: 26px; color: var(--color-primary); }
.value-card h3 { font-size: 18px; font-family: var(--font-body); font-weight: 700; margin-bottom: 8px; }
.value-card p { font-size: 14px; color: var(--color-text-muted); margin: 0 auto; }

/* Area pages */
.area-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 22px;
  margin: 26px 0 30px;
}
.area-service-link {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 700;
  font-size: 15.5px;
  padding: 13px 17px;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  transition: all 0.18s ease;
}
.area-service-link:hover { border-color: var(--color-primary); color: var(--color-primary); transform: translateX(3px); }
.area-service-link svg { width: 17px; height: 17px; color: var(--color-accent); flex-shrink: 0; }

/* 404 */
.error-404-section {
  padding: calc(var(--utility-height) + var(--header-height) + 90px) 0 110px;
  text-align: center;
}
.error-404-content { max-width: 760px; margin: 0 auto; }
.error-404-content h1 { margin-bottom: 18px; }
.error-404-content p { margin: 0 auto 34px; color: var(--color-text-muted); font-size: 18px; }
.error-404-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Inner page responsive */
@media (max-width: 1024px) {
  .page-hero { min-height: 52vh; padding-top: 170px; }
  .split-grid, .split-grid.reverse { grid-template-columns: 1fr; gap: 52px; }
  .split-photo img { height: 420px; }
  .scope-grid { grid-template-columns: repeat(2, 1fr); }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .page-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-masonry { grid-template-columns: repeat(3, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-hero-card { grid-template-columns: 1fr; text-align: center; gap: 22px; }
  .reviews-hero-card .testimonial-stars { justify-content: center; }
}
@media (max-width: 768px) {
  .page-hero { min-height: 0; padding-top: 140px; padding-bottom: 56px; }
  .split-photo.framed::after, .split-photo.framed-left::after { display: none; }
  .scope-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .page-gallery-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .gallery-masonry { grid-template-columns: 1fr 1fr; gap: 10px; }
  .gallery-masonry .gallery-item.wide { grid-column: span 2; }
  .values-grid { grid-template-columns: 1fr; }
  .check-list.two-col { grid-template-columns: 1fr; }
  .area-services-grid { grid-template-columns: 1fr; }
  .reviews-hero-card { padding: 30px 24px; }
}

/* Utility helpers */
.bg-white { background: var(--color-bg); }
.mt-8 { margin-top: 8px; }
.mt-28 { margin-top: 28px; }

/* Dark-context text fixes */
.feature-band .section-subtitle { color: rgba(255, 255, 255, 0.8); }
.rating-card .check-list li { color: rgba(255, 255, 255, 0.92); }
.rating-card .check-list li svg { color: var(--color-accent); }

/* Mobile overflow guards */
@media (max-width: 768px) {
  .btn { white-space: normal; text-align: center; line-height: 1.35; }
  body { overflow-x: hidden; }
}

/* Reviews card grid */
.reviews-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 54px;
  align-items: start;
}
.reviews-cards-grid .testimonial-card { padding: 32px 30px 26px; }
.reviews-cards-grid .testimonial-stars { margin-bottom: 14px; }
.reviews-cards-grid .testimonial-stars svg { width: 17px; height: 17px; }
.reviews-cards-grid .testimonial-text { font-size: 15px; font-style: normal; line-height: 1.7; }
.reviews-cards-grid .testimonial-author { margin-top: 18px; }
@media (max-width: 1024px) { .reviews-cards-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 768px) { .reviews-cards-grid { grid-template-columns: 1fr; } }

/* Centered contact form (contact page) */
.contact-grid.centered {
  grid-template-columns: 1fr;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Review cards: reference style */
.review-card .testimonial-text { font-style: italic; color: var(--color-text-muted); }
.testimonial-text.clamped {
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.review-read-more {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 14.5px;
  margin-top: 14px;
  align-self: flex-start;
  padding: 0;
  transition: color 0.18s ease;
}
.review-read-more:hover { color: var(--color-secondary); text-decoration: underline; }
.review-card .testimonial-author { margin-top: 14px; }
.reviews-count-note {
  text-align: center;
  margin: 46px auto 24px;
  color: var(--color-text-muted);
  font-size: 16px;
}
.reviews-grid-footer { text-align: center; }
.reviews-grid-footer .btn { padding: 19px 44px; font-size: 17px; }

/* Map embed card (contact page column) */
.map-embed-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
  line-height: 0;
  margin-bottom: 10px;
}

/* Service page FAQ background */
.faq-section.faq-alt { background: var(--color-bg-alt); }

/* Footer responsive padding + tablet column layout */
@media (min-width: 769px) and (max-width: 1024px) {
  .site-footer .footer-inner { padding-left: 20px; padding-right: 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid .footer-col:first-child { grid-column: 1 / -1; }
  .mobile-nav-cta .btn { text-align: center; }
}
@media (max-width: 768px) {
  .site-footer .footer-inner { padding-left: 15px; padding-right: 15px; }
}

/* Scope grid column variants */
.scope-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.scope-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.scope-grid.cols-2 .scope-card { height: 100%; }
@media (max-width: 1024px) {
  .scope-grid.cols-4, .scope-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .scope-grid.cols-4, .scope-grid.cols-2 { grid-template-columns: 1fr; }
}

/* Equal-height rows for 2x2 scope grids */
.scope-grid.cols-2 { grid-auto-rows: 1fr; }
