/*!
Theme Name: American Acoustics
Theme URI: https://americanacoustics.net
Description: Custom WordPress theme for American Acoustics drywall — Sparks, NV.
Version: 1.0.0
Author: American Acoustics
Text Domain: american-acoustics
*/

/* ─── Variables ─────────────────────────────────────────── */
:root {
  --navy:        #1B2A4A;
  --navy-light:  #243660;
  --red:         #B22234;
  --red-dark:    #8B1A27;
  --white:       #FFFFFF;
  --off-white:   #F4F6F8;
  --gold:        #D4AF37;
  --gray:        #6B7280;
  --font-head:   'Oswald', sans-serif;
  --font-body:   'Open Sans', sans-serif;
  --shadow:      0 4px 20px rgba(0,0,0,0.12);
  --radius:      6px;
  --max-width:   1140px;
}

/* ─── Reset & Base ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  background: var(--white);
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

/* ─── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  line-height: 1;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-white {
  background: var(--white);
  color: var(--red);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* ─── Header / Navigation ───────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  box-shadow: 0 2px 10px rgba(0,0,0,0.35);
}

/* Hidden checkbox powers the mobile toggle */
.nav-toggle {
  display: none;
  position: absolute;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 16px 24px;
}

.site-logo {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
  flex-shrink: 0;
}
.logo-flag {
  display: inline-block;
  width: 30px;
  height: 20px;
  position: relative;
  overflow: hidden;
  vertical-align: middle;
  margin-right: 9px;
  border-radius: 2px;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.25);
  /* Red & white stripes */
  background: repeating-linear-gradient(
    to bottom,
    #B22234 0px,
    #B22234 3px,
    #FFFFFF 3px,
    #FFFFFF 6px
  );
}
/* Blue canton */
.logo-flag::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 46%;
  height: 55%;
  background: var(--navy);
}
/* Star dot in canton */
.logo-flag::after {
  content: '★';
  position: absolute;
  top: 0;
  left: 0;
  width: 46%;
  height: 55%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5px;
  color: white;
  line-height: 1;
}
.site-logo .tagline {
  display: block;
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.55);
  font-weight: 400;
  margin-top: 4px;
  text-transform: uppercase;
}

/* Hamburger — hidden on desktop */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
}
.nav-menu ul.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu ul.nav-list a {
  font-family: var(--font-head);
  font-size: 0.85rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  padding: 8px 12px;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
  display: block;
}
.nav-menu ul.nav-list a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}
.nav-menu .nav-cta a {
  background: var(--red);
  color: var(--white) !important;
  padding: 9px 18px;
  margin-left: 6px;
}
.nav-menu .nav-cta a:hover {
  background: var(--red-dark);
}

/* ─── Flag Stripe ───────────────────────────────────────── */
.flag-stripe {
  height: 6px;
  background: linear-gradient(
    90deg,
    var(--red)   0%,   var(--red)   33.33%,
    var(--white) 33.33%, var(--white) 66.66%,
    var(--navy)  66.66%, var(--navy)  100%
  );
}

/* ─── Hero ──────────────────────────────────────────────── */
.hero {
  background: var(--navy);
  padding: 96px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* Decorative stars top and bottom */
.hero::before,
.hero::after {
  content: '★   ★   ★   ★   ★   ★   ★   ★   ★   ★   ★   ★   ★   ★   ★';
  position: absolute;
  left: 0;
  right: 0;
  font-size: 1.4rem;
  color: rgba(212, 175, 55, 0.12);
  letter-spacing: 0.4em;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  pointer-events: none;
}
.hero::before { top: 18px; }
.hero::after  { bottom: 18px; }

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
}
.hero-eyebrow {
  font-family: var(--font-head);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero h1 em {
  font-style: normal;
  color: var(--red);
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.78);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.65;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 48px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat span {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ─── Who We Help ───────────────────────────────────────── */
.who-we-help {
  padding: 80px 24px;
  background: var(--off-white);
}
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-header h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  line-height: 1.15;
}
.section-header .section-sub {
  margin-top: 10px;
  color: var(--gray);
  font-size: 1rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.audience-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.audience-card {
  background: var(--white);
  border-radius: 8px;
  padding: 44px 36px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  border-top: 5px solid var(--navy);
}
.audience-card.repair { border-top-color: var(--red); }
.audience-card.build  { border-top-color: var(--navy); }

.card-icon {
  font-size: 2.8rem;
  margin-bottom: 18px;
  line-height: 1;
}
.audience-card h3 {
  font-family: var(--font-head);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 14px;
  line-height: 1.2;
}
.audience-card p {
  color: var(--gray);
  margin-bottom: 28px;
  flex: 1;
  font-size: 0.975rem;
}
.card-link {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s;
}
.card-link::after { content: '→'; }
.card-link:hover  { gap: 12px; }
.audience-card.build .card-link { color: var(--navy); }

/* ─── Services ──────────────────────────────────────────── */
.services {
  padding: 80px 24px;
  background: var(--white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.service-card {
  background: var(--off-white);
  border-radius: 8px;
  padding: 32px 28px;
  border-left: 4px solid var(--gold);
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.service-card.has-photo {
  padding-top: 0;
  overflow: hidden;
}
.service-card-img {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px 8px 0 0;
}
.service-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  line-height: 1;
}
.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.service-card p {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ─── Why Us ────────────────────────────────────────────── */
.why-us {
  padding: 80px 24px;
  background: var(--off-white);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.why-item {
  background: var(--white);
  border-radius: 8px;
  padding: 36px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  border-bottom: 4px solid var(--navy);
  transition: transform 0.2s;
}
.why-item:hover { transform: translateY(-3px); }
.why-emoji {
  font-size: 2.2rem;
  margin-bottom: 14px;
  line-height: 1;
  display: block;
}
.why-item h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.2;
}
.why-item p {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ─── Review Wall (Testimonials) ────────────────────────── */
.testimonials {
  padding: 80px 0;
  background: var(--navy);
  overflow: hidden;
}
.testimonials .section-header {
  padding: 0 24px;
}
.testimonials .section-header h2 { color: var(--white); }
.testimonials .section-sub { color: rgba(255,255,255,0.5); }

/* Wall wrapper + nav */
.review-wall {
  position: relative;
  margin-top: 48px;
}
.review-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: var(--red);
  color: var(--white);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.35);
}
.review-nav:hover { background: var(--red-dark); transform: translateY(-50%) scale(1.08); }
.review-prev { left: 16px; }
.review-next { right: 16px; }

/* Fade edges */
.review-wall::before,
.review-wall::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 5;
  pointer-events: none;
}
.review-wall::before { left: 0; background: linear-gradient(to right, var(--navy), transparent); }
.review-wall::after  { right: 0; background: linear-gradient(to left,  var(--navy), transparent); }

.review-wall-wrapper {
  overflow: hidden;
  padding: 12px 0;
  cursor: grab;
}
.review-wall-wrapper:active { cursor: grabbing; }

.review-track {
  display: flex;
  gap: 24px;
  width: max-content;
  will-change: transform;
  user-select: none;
}

/* Individual review card */
.review-card {
  width: 340px;
  flex-shrink: 0;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: var(--radius);
  padding: 28px 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.2s, background 0.2s;
}
.review-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(212,175,55,0.35);
}
.review-card-top {
  display: flex;
  align-items: center;
}
.review-stars {
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 2px;
}
.review-service {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-head);
  opacity: 0.8;
}
.review-text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
  font-style: italic;
  flex: 1;
}
.review-text::before { content: '\201C'; }
.review-text::after  { content: '\201D'; }

.review-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,0.09);
  padding-top: 14px;
  margin-top: auto;
}
.review-author strong {
  display: block;
  color: var(--white);
  font-size: 0.83rem;
  font-family: var(--font-head);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.review-author span {
  font-size: 0.71rem;
  color: rgba(255,255,255,0.4);
  margin-top: 2px;
  display: block;
}
.review-ha-link {
  font-size: 0.7rem;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: underline;
  text-underline-offset: 2px;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.review-ha-link:hover { opacity: 1; color: var(--white); }

.testimonial-note {
  text-align: center;
  margin-top: 36px;
  font-size: 0.825rem;
  color: rgba(255,255,255,0.35);
  font-style: italic;
}

/* ─── Service Area CTA ──────────────────────────────────── */
.service-area {
  padding: 80px 24px;
  background: var(--red);
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* Subtle horizontal stripe overlay */
.service-area::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 22px,
    rgba(255,255,255,0.04) 22px,
    rgba(255,255,255,0.04) 24px
  );
  pointer-events: none;
}
.service-area-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}
.service-area .section-tag {
  color: rgba(255,255,255,0.8);
}
.service-area h2 {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 16px;
}
.service-area-cities {
  font-family: var(--font-head);
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  margin-bottom: 36px;
}
.service-area-cities span {
  margin: 0 6px;
  opacity: 0.45;
}
.service-area .cta-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.service-area .direct-call {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.78);
}
.service-area .direct-call strong {
  color: var(--white);
  font-weight: 600;
}

/* ─── Footer ────────────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  padding: 60px 24px 0;
  color: rgba(255,255,255,0.65);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .site-logo {
  font-size: 1.15rem;
  display: inline-block;
  margin-bottom: 14px;
}
.footer-tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  max-width: 280px;
}
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--white); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.875rem;
}
.footer-contact-item .icon { flex-shrink: 0; }
.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  flex-wrap: wrap;
  gap: 8px;
}

/* ─── Page Hero (inner pages) ─────────────────────────── */
.page-hero {
  background: var(--navy);
  padding: 80px 24px 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '★';
  position: absolute;
  font-size: 420px;
  color: rgba(255,255,255,0.018);
  top: -80px;
  right: -60px;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.page-hero .hero-eyebrow {
  font-family: var(--font-head);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 20px;
}
.page-hero h1 em { color: var(--red); font-style: normal; }
.page-hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  max-width: 580px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

/* ─── Service Detail Sections ──────────────────────────── */
.service-detail {
  padding: 80px 24px;
  background: var(--white);
}
.service-detail.alt { background: var(--off-white); }

.service-detail-inner {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 40px 48px;
  max-width: var(--max-width);
  margin: 0 auto;
  align-items: start;
}
.service-detail-icon {
  font-size: 3.5rem;
  line-height: 1;
  padding-top: 8px;
  text-align: center;
}
.service-detail-body .section-tag { color: var(--red); margin-bottom: 8px; }
.service-detail-body h2 {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 6px;
}
.service-detail-body .service-sub {
  font-size: 0.95rem;
  color: var(--gray);
  margin-bottom: 20px;
  font-style: italic;
}
.service-detail-body p {
  font-size: 1rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 28px;
  max-width: 720px;
}
.service-bullets {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 32px;
}
.service-bullets li {
  font-size: 0.9rem;
  color: #444;
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.service-bullets li::before {
  content: '★';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.62rem;
  top: 4px;
}
.service-detail-img {
  display: block;
  width: 100%;
  max-width: 720px;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-top: 32px;
  box-shadow: var(--shadow);
  cursor: zoom-in;
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-detail-img:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 24px rgba(0,0,0,0.18);
}
/* ─── Lightbox ──────────────────────────────────────────── */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}
.lightbox-overlay.open { display: flex; }
.lightbox-overlay img {
  max-width: 92vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 8px 40px rgba(0,0,0,0.6);
  cursor: default;
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 28px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.8;
}
.lightbox-close:hover { opacity: 1; }

.service-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 32px;
  max-width: 720px;
}
.service-photo-grid-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  cursor: zoom-in;
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-photo-grid-img:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 24px rgba(0,0,0,0.18);
}
@media (max-width: 600px) {
  .service-photo-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ─── Services Page CTA Band ───────────────────────────── */
.services-cta-band {
  background: var(--red);
  padding: 64px 24px;
  text-align: center;
}
.services-cta-band h2 {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 10px;
}
.services-cta-band p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
  font-size: 1rem;
}
.services-cta-band .direct-call {
  margin-top: 16px;
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
}
.services-cta-band .direct-call a { color: var(--white); font-weight: 600; }

/* ─── Gallery Page ──────────────────────────────────────── */
.gallery-section {
  padding: 80px 24px;
  background: var(--off-white);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #ccc;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.gallery-item:hover img { transform: scale(1.04); }

/* ─── Responsive ────────────────────────────────────────── */
@media (max-width: 960px) {
  .why-grid          { grid-template-columns: repeat(2, 1fr); }
  .services-grid     { grid-template-columns: repeat(2, 1fr); }
  .service-bullets   { grid-template-columns: 1fr; }
  .gallery-grid      { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  /* Show hamburger, hide desktop nav */
  .hamburger { display: flex; }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy-light);
    padding: 16px 24px 24px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.35);
    z-index: 99;
  }
  .nav-toggle:checked ~ .nav-menu {
    display: block;
  }
  .nav-menu ul.nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
  }
  .nav-menu ul.nav-list a {
    padding: 12px 14px;
    font-size: 0.95rem;
  }
  .nav-menu .nav-cta a {
    margin-left: 0;
    text-align: center;
    margin-top: 8px;
    display: block;
  }

  /* Hamburger → X animation */
  .nav-toggle:checked ~ .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .nav-toggle:checked ~ .hamburger span:nth-child(2) {
    opacity: 0;
    width: 0;
  }
  .nav-toggle:checked ~ .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .audience-cards      { grid-template-columns: 1fr; }
  .footer-grid         { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom       { flex-direction: column; text-align: center; }
  .service-detail-inner{ grid-template-columns: 1fr; gap: 16px; }
  .service-detail-icon { font-size: 2.8rem; padding-top: 0; }
  .gallery-grid        { grid-template-columns: 1fr; }

  .hero-stats { gap: 32px; }
}

@media (max-width: 520px) {
  .hero              { padding: 64px 20px 56px; }
  .hero-ctas         { flex-direction: column; align-items: center; }
  .services-grid     { grid-template-columns: 1fr; }
  .why-grid          { grid-template-columns: 1fr; }
  .review-nav        { width: 36px; height: 36px; font-size: 0.9rem; }
  .hero-stats        { gap: 24px; }
}
