/* ============================================================
   VACUUM DEPOT TEXAS — styles.css
   Clean, honest redesign for Fort Worth families
   ============================================================ */

/* 1. RESET + CSS VARIABLES
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Colors — navy/blue palette, white dominant */
  --navy:      #1b3a5c;
  --navy2:     #244e7a;
  --navy3:     #0f2540;
  --blue:      #0284c7;
  --blue-lt:   #0ea5e9;
  --blue-pale: #e0f2fe;
  --sky:       #38bdf8;   /* kept for logo SVG */
  --white:     #ffffff;
  --off-white: #f8f9fa;
  --border:    #e2e8f0;
  --text:      #1a2332;
  --muted:     #64748b;
  --gold:      #f59e0b;
  --red:       #dc2626;

  /* Typography */
  --ff: 'Barlow Condensed', sans-serif;
  --fb: 'DM Sans', sans-serif;

  /* Radius */
  --r:  6px;
  --r2: 10px;
  --r3: 16px;

  /* Nav height */
  --nav: 70px;

  /* Shadows — subtle only, no glow */
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow:    0 2px 12px rgba(0,0,0,.10), 0 1px 4px rgba(0,0,0,.07);
  --shadow-lg: 0 6px 24px rgba(0,0,0,.12), 0 2px 8px rgba(0,0,0,.08);

  /* Transitions */
  --ease: cubic-bezier(.4,0,.2,1);
  --dur:  .2s;
}

/* 2. BASE
   ============================================================ */
html {
  scroll-behavior: smooth;
  font-size: 17px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--fb);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--dur) var(--ease);
}

ul, ol { list-style: none; }
img { display: block; max-width: 100%; height: auto; }

button {
  font-family: var(--fb);
  border: none;
  background: none;
  cursor: pointer;
}

h1, h2, h3, h4 {
  font-family: var(--ff);
  line-height: 1.1;
  letter-spacing: -.01em;
}

h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); font-weight: 900; }
h2 { font-size: clamp(1.8rem, 4vw, 2.9rem); font-weight: 800; }
h3 { font-size: clamp(1.15rem, 2vw, 1.35rem); font-weight: 700; }
h4 { font-size: 1rem; font-weight: 700; }
p  { line-height: 1.65; }

/* 3. LAYOUT
   ============================================================ */
.wrap,
.container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.5rem;
  width: 100%;
}

.section { padding: 5rem 1.5rem; }

.section-alt  { background: var(--off-white); }
.section-dark { background: var(--navy); }

.center    { text-align: center; }
.highlight { color: var(--sky); }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* 4. SECTION HEADERS
   ============================================================ */
.section-header,
.s-header {
  margin-bottom: 2.75rem;
  text-align: center;
}

.section-label,
.label {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-family: var(--ff);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue-lt);
  margin-bottom: .65rem;
}

.section-label::before,
.label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 3px;
  border-radius: 99px;
  background: var(--blue-lt);
  flex-shrink: 0;
}

.section-title      { color: var(--text); }
.section-title.light { color: var(--white); }

.section-sub,
.section-subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 580px;
  margin: .65rem auto 0;
  line-height: 1.65;
}

.divider,
.section-divider {
  display: block;
  width: 44px;
  height: 3px;
  border-radius: 99px;
  background: var(--blue-lt);
  margin: 1.1rem auto 0;
}

/* 5. NAVBAR
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav);
  z-index: 1000;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,.1);
  transition: box-shadow var(--dur) var(--ease);
}

#navbar.scrolled {
  box-shadow: 0 2px 16px rgba(0,0,0,.2);
}

.nav-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav-logo,
.logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--ff);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  flex-shrink: 0;
}

.logo-svg { width: 32px; height: 32px; flex-shrink: 0; }

.nav-links {
  display: flex;
  align-items: center;
  gap: .2rem;
}

.nav-links a {
  font-family: var(--ff);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .03em;
  color: rgba(255,255,255,.78);
  padding: .4rem .75rem;
  border-radius: var(--r);
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,.12);
}

.nav-cta {
  font-family: var(--ff) !important;
  font-weight: 700 !important;
  color: var(--white) !important;
  background: var(--blue) !important;
  padding: .5rem 1.2rem !important;
  border-radius: var(--r) !important;
  transition: background var(--dur) var(--ease) !important;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-cta:hover {
  background: var(--blue-lt) !important;
}

.nav-book {
  font-family: var(--ff) !important;
  font-size: .92rem !important;
  font-weight: 700 !important;
  letter-spacing: .03em;
  color: var(--white) !important;
  background: transparent !important;
  border: 1.5px solid rgba(255,255,255,.32) !important;
  padding: .38rem .9rem !important;
  border-radius: var(--r) !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: .38rem;
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease) !important;
}

.nav-book:hover {
  background: rgba(255,255,255,.1) !important;
  border-color: rgba(255,255,255,.65) !important;
  color: var(--white) !important;
}

.nav-book svg { width: 13px; height: 13px; flex-shrink: 0; }

.hamburger,
.ham {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  padding: 6px;
  border-radius: var(--r);
  cursor: pointer;
  flex-shrink: 0;
  transition: background var(--dur) var(--ease);
}

.hamburger:hover, .ham:hover { background: rgba(255,255,255,.1); }

.hamburger span, .ham span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 99px;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
  transform-origin: center;
}

.hamburger.open span:nth-child(1), .ham.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2), .ham.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3), .ham.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu,
.mob {
  display: none;
  position: fixed;
  top: var(--nav);
  left: 0; right: 0;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,.1);
  flex-direction: column;
  padding: 1.2rem 1.5rem 1.5rem;
  gap: .2rem;
  z-index: 999;
  box-shadow: 0 6px 20px rgba(0,0,0,.25);
}

.mobile-menu.open, .mob.open { display: flex; }

.mobile-menu a, .mob a {
  font-family: var(--ff);
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  padding: .65rem .9rem;
  border-radius: var(--r);
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
}

.mobile-menu a:hover, .mob a:hover,
.mobile-menu a.active, .mob a.active {
  color: var(--white);
  background: rgba(255,255,255,.1);
}

.mobile-menu .nav-cta, .mob .nav-cta {
  margin-top: .65rem;
  text-align: center;
  display: block;
}

/* 6. HERO (Home page)
   ============================================================ */
.hero {
  background: linear-gradient(160deg, var(--navy3) 0%, var(--navy) 55%, var(--navy2) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav);
  position: relative;
  overflow: hidden;
}

/* Subtle diagonal stripe texture */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(255,255,255,.012) 0px,
    rgba(255,255,255,.012) 1px,
    transparent 1px,
    transparent 40px
  );
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin-inline: auto;
  padding: 4.5rem 1.5rem 5rem;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 4rem;
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--ff);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--sky);
  background: rgba(56,189,248,.12);
  border: 1px solid rgba(56,189,248,.25);
  padding: .4rem .95rem;
  border-radius: 99px;
  margin-bottom: 1.4rem;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 1.1rem;
}

.hero-content h1 em {
  font-style: normal;
  color: var(--sky);
}

.hero-phone {
  display: block;
  font-family: var(--ff);
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: .02em;
  margin: 1rem 0 .4rem;
  transition: color var(--dur) var(--ease);
}

.hero-phone:hover { color: var(--sky); }

.hero-phone-label {
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.7);
  margin-top: .9rem;
  max-width: 500px;
  line-height: 1.65;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 2rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255,255,255,.1);
}

.stat-pill { display: flex; flex-direction: column; gap: .2rem; }
.stat-pill .num {
  font-family: var(--ff);
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--sky);
  line-height: 1;
}
.stat-pill .lbl {
  font-size: .78rem;
  color: rgba(255,255,255,.5);
  letter-spacing: .04em;
}

/* Hero right panel — store info block */
.hero-store-block {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r3);
  padding: 2.5rem 2rem;
  text-align: center;
}

.hsb-est {
  font-family: var(--ff);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: .75rem;
}

.hsb-name {
  font-family: var(--ff);
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: .65rem;
}

.hsb-divider {
  width: 40px;
  height: 2px;
  background: var(--blue-lt);
  border-radius: 99px;
  margin: 1rem auto;
}

.hsb-address {
  font-size: .95rem;
  color: rgba(255,255,255,.65);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.hsb-call {
  display: inline-block;
  font-family: var(--ff);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  background: var(--blue);
  padding: .65rem 1.75rem;
  border-radius: var(--r2);
  transition: background var(--dur) var(--ease);
  letter-spacing: .02em;
}

.hsb-call:hover { background: var(--blue-lt); }

.hsb-hours {
  font-size: .85rem;
  color: rgba(255,255,255,.45);
  margin-top: 1rem;
  line-height: 1.6;
}

.hsb-rating {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(245,158,11,.12);
  border: 1px solid rgba(245,158,11,.2);
  padding: .4rem .9rem;
  border-radius: 99px;
  margin-top: 1.1rem;
  font-family: var(--ff);
  font-size: .9rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .03em;
}

/* 7. TRUST BAR (static, replaces ticker)
   ============================================================ */
.trust-bar {
  background: var(--blue);
  padding: .85rem 1.5rem;
}

.trust-items {
  max-width: 1200px;
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .5rem 2rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--ff);
  font-size: .95rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .03em;
  white-space: nowrap;
}

.trust-item svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  opacity: .9;
}

/* 8. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--ff);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: .04em;
  padding: .68rem 1.65rem;
  border-radius: var(--r);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--dur) var(--ease),
              color var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
  white-space: nowrap;
  text-decoration: none;
}

.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-sky,
.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  box-shadow: var(--shadow);
}

.btn-sky:hover,
.btn-primary:hover {
  background: var(--blue-lt);
  border-color: var(--blue-lt);
  box-shadow: var(--shadow-lg);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.35);
}

.btn-ghost:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.65);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--ff);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: .04em;
  padding: .68rem 1.65rem;
  border-radius: var(--r);
  background: var(--white);
  color: var(--navy);
  border: 2px solid var(--white);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-2px);
}

.btn-outline-w {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--ff);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: .04em;
  padding: .68rem 1.65rem;
  border-radius: var(--r);
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.45);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.btn-outline-w:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* 9. SERVICE CARDS
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.4rem;
}

.svc,
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  padding: 1.85rem 1.65rem;
  position: relative;
  overflow: hidden;
  transition: transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
}

.svc::after,
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--blue);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}

.svc:hover,
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(2,132,199,.2);
}

.svc:hover::after,
.service-card:hover::after { opacity: 1; }

.service-icon,
.svc-icon {
  width: 50px;
  height: 50px;
  background: var(--blue-pale);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  color: var(--blue);
}

.service-icon svg,
.svc-icon svg { width: 26px; height: 26px; }

.service-card h3,
.svc h3 { margin-bottom: .55rem; color: var(--text); }

.service-card p,
.svc p { color: var(--muted); font-size: .93rem; }

/* 10. WHY CHOOSE US SECTION
   ============================================================ */
.scene-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
}

/* Static store block that replaced shopCanvas */
.why-image-block {
  background: var(--navy);
  border-radius: var(--r3);
  padding: 2.75rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.why-image-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(255,255,255,.015) 0px,
    rgba(255,255,255,.015) 1px,
    transparent 1px,
    transparent 36px
  );
  pointer-events: none;
}

.wib-inner { position: relative; z-index: 1; }

.wib-est {
  font-family: var(--ff);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(56,189,248,.8);
  margin-bottom: .75rem;
}

.wib-name {
  font-family: var(--ff);
  font-size: 1.85rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: .5rem;
}

.wib-divider {
  width: 36px;
  height: 2px;
  background: var(--blue-lt);
  border-radius: 99px;
  margin: .9rem auto;
}

.wib-address {
  font-size: .92rem;
  color: rgba(255,255,255,.6);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.wib-phone {
  display: inline-block;
  font-family: var(--ff);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  background: var(--blue);
  padding: .6rem 1.5rem;
  border-radius: var(--r2);
  transition: background var(--dur) var(--ease);
  letter-spacing: .02em;
  margin-bottom: 1.25rem;
}

.wib-phone:hover { background: var(--blue-lt); }

.wib-rating {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-family: var(--ff);
  font-size: .9rem;
  font-weight: 700;
  color: var(--gold);
  background: rgba(245,158,11,.1);
  border: 1px solid rgba(245,158,11,.18);
  padding: .35rem .85rem;
  border-radius: 99px;
  letter-spacing: .03em;
}

.why-text {
  padding: 1rem 0;
}

.why-text h2 { margin: .5rem 0 1rem; }
.why-text p  { color: var(--muted); font-size: 1rem; line-height: 1.7; }

.reasons {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 1.75rem;
}

.reason {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
}

.rc {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: .1rem;
}

.rc svg { width: 14px; height: 14px; color: var(--white); }

.reason strong { display: block; color: var(--text); font-size: .97rem; margin-bottom: .2rem; }
.reason p      { color: var(--muted); font-size: .88rem; margin: 0; }

/* 11. STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--navy);
  padding: 3.25rem 1.5rem;
}

.stats-grid {
  max-width: 1200px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .35rem;
}

.big-num {
  font-family: var(--ff);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 900;
  color: var(--sky);
  line-height: 1;
  letter-spacing: -.02em;
}

.stat-label {
  font-size: .86rem;
  color: rgba(255,255,255,.55);
  letter-spacing: .04em;
}

.stat-sub {
  font-size: .75rem;
  color: rgba(255,255,255,.35);
  letter-spacing: .03em;
}

/* 12. BRANDS STRIP
   ============================================================ */
.brands-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .85rem;
  max-width: 1100px;
  margin-inline: auto;
}

.brand-chip {
  display: inline-flex;
  align-items: center;
  font-family: var(--ff);
  font-size: .98rem;
  font-weight: 700;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--border);
  padding: .55rem 1.2rem;
  border-radius: 99px;
  transition: background var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              color var(--dur) var(--ease),
              transform var(--dur) var(--ease);
}

.brand-chip:hover {
  background: var(--blue-pale);
  border-color: var(--blue-lt);
  color: var(--blue);
  transform: translateY(-2px);
}

.brand-chip--more {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

.brand-chip--more:hover {
  background: var(--blue-lt);
  border-color: var(--blue-lt);
  color: var(--white);
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 1rem;
  max-width: 1200px;
  margin-inline: auto;
}

.brand,
.brand-pill {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  padding: 1.1rem 1rem;
  text-align: center;
  font-family: var(--ff);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  transition: background var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              color var(--dur) var(--ease),
              transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}

.brand:hover,
.brand-pill:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* 13. GOOGLE REVIEWS
   ============================================================ */
.reviews-section {
  background: var(--off-white);
  padding: 5rem 1.5rem;
}

.google-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.google-logo-wrap {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--ff);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}

.google-text { font-family: var(--ff); font-weight: 700; }

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: rgba(245,158,11,.1);
  border: 1px solid rgba(245,158,11,.22);
  padding: .45rem 1rem;
  border-radius: 99px;
  font-family: var(--ff);
  font-size: 1.05rem;
  font-weight: 800;
  color: #b45309;
}

.rating-count {
  font-size: .82rem;
  color: var(--muted);
}

.reviews-headline {
  text-align: center;
  color: var(--text);
  margin-bottom: 2.25rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.25rem;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  padding: 1.65rem;
  transition: transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(2,132,199,.2);
}

.review-header {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-bottom: .85rem;
}

.reviewer-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}

.avatar-sky    { background: #0284c7; }
.avatar-red    { background: #dc2626; }
.avatar-green  { background: #16a34a; }
.avatar-purple { background: #7c3aed; }
.avatar-orange { background: #ea580c; }
.avatar-teal   { background: #0891b2; }

.reviewer-name { font-weight: 700; color: var(--text); font-size: .94rem; }
.reviewer-meta { font-size: .78rem; color: var(--muted); margin-top: .1rem; }

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: .2rem;
  font-size: .72rem;
  color: #16a34a;
  font-weight: 600;
  margin-left: .35rem;
}

.review-stars {
  color: var(--gold);
  font-size: 1.05rem;
  letter-spacing: .05em;
  margin-bottom: .75rem;
}

.review-text {
  font-size: .91rem;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: .85rem;
  font-style: italic;
}

.review-service {
  display: inline-block;
  font-family: var(--ff);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-pale);
  padding: .25rem .7rem;
  border-radius: 99px;
}

.reviews-cta {
  text-align: center;
  margin-top: 2.25rem;
}

.reviews-cta p {
  font-family: var(--ff);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: .85rem;
}

.reviews-summary {
  text-align: center;
  font-size: .85rem;
  color: var(--muted);
  margin-top: 1rem;
}

/* 14. CTA STRIP
   ============================================================ */
.cta-strip {
  background: var(--navy);
  padding: 4.5rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Subtle texture */
.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(255,255,255,.012) 0px,
    rgba(255,255,255,.012) 1px,
    transparent 1px,
    transparent 36px
  );
  pointer-events: none;
}

.cta-strip h2 { color: var(--white); position: relative; z-index: 1; }
.cta-strip p  { color: rgba(255,255,255,.6); position: relative; z-index: 1; margin-top: .65rem; }

.cta-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .9rem;
  margin-top: 1.85rem;
  position: relative;
  z-index: 1;
}

/* 15. CONTACT BAR / INFO CARDS
   ============================================================ */
.contact-bar-section {
  background: var(--off-white);
  padding: 5rem 1.5rem;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.1rem;
  max-width: 1200px;
  margin-inline: auto;
}

.cinfo {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  padding: 1.6rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  transition: transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
}

.cinfo:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(2,132,199,.2);
}

.cinfo-icon {
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sky);
}

.cinfo-icon svg { width: 22px; height: 22px; }

.cinfo-text strong { display: block; font-size: .88rem; font-weight: 700; color: var(--text); margin-bottom: .25rem; }
.cinfo-text p { font-size: .88rem; color: var(--muted); line-height: 1.55; }
.cinfo-text a { color: var(--blue); }
.cinfo-text a:hover { color: var(--blue-lt); }

/* 16. SECTION CTA link
   ============================================================ */
.section-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* 17. FOOTER
   ============================================================ */
.site-footer,
footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 4rem 1.5rem 1.75rem;
}

.foot-inner,
.footer-inner {
  max-width: 1200px;
  margin-inline: auto;
}

.foot-grid,
.footer-grid {
  display: grid;
  grid-template-columns: 2.1fr 1fr 1fr 1fr;
  gap: 2.75rem;
  margin-bottom: 3rem;
}

.foot-brand p {
  color: rgba(255,255,255,.45);
  font-size: .9rem;
  margin-top: .85rem;
  max-width: 275px;
  line-height: 1.65;
}

.foot-logo {
  display: inline-flex !important;
  margin-bottom: .65rem;
}

.foot-col h4,
.footer-col h4 {
  font-family: var(--ff);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 1rem;
}

.foot-col ul,
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: .3rem;
}

.foot-col a,
.footer-col a {
  font-size: .9rem;
  color: rgba(255,255,255,.55);
  padding: .2rem 0;
  display: inline-block;
  transition: color var(--dur) var(--ease), padding-left var(--dur) var(--ease);
}

.foot-col a:hover,
.footer-col a:hover {
  color: var(--sky);
  padding-left: .3rem;
}

.foot-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .75rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255,255,255,.06);
  font-size: .82rem;
  color: rgba(255,255,255,.3);
}

.foot-bottom a { color: rgba(255,255,255,.5); }
.foot-bottom a:hover { color: var(--sky); }

.footer-social,
.social-icons {
  display: flex;
  gap: .45rem;
  margin-top: 1rem;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.5);
  border: 1px solid rgba(255,255,255,.1);
  transition: background var(--dur) var(--ease),
              color var(--dur) var(--ease),
              transform var(--dur) var(--ease);
}

.social-btn:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

.social-btn svg { width: 16px; height: 16px; }

.contact-info { display: flex; flex-direction: column; gap: .6rem; }

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .87rem;
  color: rgba(255,255,255,.55);
}

.contact-row svg {
  width: 14px; height: 14px;
  flex-shrink: 0;
  margin-top: .2rem;
  color: var(--sky);
}

.contact-row a { color: rgba(255,255,255,.7); }
.contact-row a:hover { color: var(--sky); }

/* 18. PAGE HERO (sub-pages)
   ============================================================ */
.page-hero {
  background: var(--navy);
  padding: calc(var(--nav) + 3.25rem) 1.5rem 3.25rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(255,255,255,.012) 0px,
    rgba(255,255,255,.012) 1px,
    transparent 1px,
    transparent 36px
  );
  pointer-events: none;
}

.page-hero h1 {
  color: var(--white);
  position: relative;
  z-index: 1;
}

.page-hero p {
  color: rgba(255,255,255,.6);
  max-width: 540px;
  margin: .9rem auto 0;
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  font-size: .82rem;
  color: rgba(255,255,255,.4);
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.breadcrumb a { color: var(--sky); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span, .breadcrumb-sep { color: rgba(255,255,255,.25); }

/* 19. ABOUT PAGE
   ============================================================ */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 4rem;
}

/* About canvas replaced by store block */
.about-img-wrap {
  position: relative;
}

.about-store-block {
  background: var(--navy);
  border-radius: var(--r3);
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-store-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(255,255,255,.015) 0px,
    rgba(255,255,255,.015) 1px,
    transparent 1px,
    transparent 36px
  );
  pointer-events: none;
}

.asb-inner { position: relative; z-index: 1; }

.asb-est {
  font-family: var(--ff);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: .75rem;
}

.asb-name {
  font-family: var(--ff);
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: .5rem;
}

.asb-divider {
  width: 36px;
  height: 2px;
  background: var(--blue-lt);
  border-radius: 99px;
  margin: .85rem auto;
}

.asb-address {
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.asb-call {
  display: inline-block;
  font-family: var(--ff);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  background: var(--blue);
  padding: .6rem 1.5rem;
  border-radius: var(--r2);
  transition: background var(--dur) var(--ease);
  letter-spacing: .02em;
}

.asb-call:hover { background: var(--blue-lt); }

.asb-rating {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-family: var(--ff);
  font-size: .88rem;
  font-weight: 700;
  color: var(--gold);
  background: rgba(245,158,11,.1);
  border: 1px solid rgba(245,158,11,.18);
  padding: .35rem .85rem;
  border-radius: 99px;
  margin-top: 1.1rem;
  letter-spacing: .03em;
}

.about-badge {
  position: absolute;
  bottom: 1.1rem;
  left: 1.1rem;
  background: var(--blue);
  color: var(--white);
  font-family: var(--ff);
  font-size: .85rem;
  font-weight: 700;
  padding: .6rem 1.1rem;
  border-radius: var(--r);
  letter-spacing: .03em;
  line-height: 1.3;
  z-index: 2;
}

.about-badge .num {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
  color: var(--white);
}

.timeline {
  border-left: 2px solid rgba(2,132,199,.2);
  padding-left: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  margin-top: 2.25rem;
}

.timeline-item { position: relative; }

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.3rem;
  top: .3rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--blue);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 3px rgba(2,132,199,.18);
}

.tl-year {
  font-family: var(--ff);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: .25rem;
}

.tl-body h4 { color: var(--text); margin-bottom: .2rem; }
.tl-body p  { color: var(--muted); font-size: .88rem; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
}

.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  padding: 1.65rem;
  transition: transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
}

.value-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(2,132,199,.2);
}

.value-icon {
  width: 46px;
  height: 46px;
  background: var(--blue-pale);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: .9rem;
}

.value-icon svg { width: 22px; height: 22px; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.2rem;
}

.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  padding: 1.85rem 1.4rem;
  text-align: center;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.team-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.team-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  margin: 0 auto .9rem;
}

.team-name { font-family: var(--ff); font-size: 1.1rem; font-weight: 700; color: var(--text); }
.team-role { font-size: .82rem; color: var(--blue); margin-top: .2rem; }

.team-card p {
  font-size: .85rem;
  color: var(--muted);
  margin-top: .5rem;
  line-height: 1.55;
}

.team-specialty {
  display: inline-block;
  margin-top: .8rem;
  font-family: var(--ff);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--blue);
  padding: .22rem .7rem;
  border-radius: 99px;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.cert-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r);
  padding: 1.2rem;
  display: flex;
  align-items: center;
  gap: .8rem;
}

.cert-icon {
  width: 42px;
  height: 42px;
  background: rgba(56,189,248,.12);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sky);
  flex-shrink: 0;
}

.cert-icon svg { width: 20px; height: 20px; }

.cert-card h4 {
  font-family: var(--ff);
  font-size: .98rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .2rem;
}

.cert-card p {
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  line-height: 1.5;
}

.mission-card {
  max-width: 800px;
  margin-inline: auto;
  background: var(--navy);
  border-left: 4px solid var(--blue-lt);
  border-radius: var(--r2);
  padding: 2.75rem 3rem;
}

.mission-card .label { color: var(--sky); }
.mission-card h2 { color: var(--white); margin: .5rem 0 .9rem; }
.mission-card p  { color: rgba(255,255,255,.6); font-size: 1.02rem; line-height: 1.7; }

.mission-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.35rem;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.1);
}

.mission-stat {
  font-family: var(--ff);
  font-size: .97rem;
  font-weight: 700;
  color: var(--sky);
  letter-spacing: .04em;
}

/* 20. SERVICES PAGE
   ============================================================ */
.services-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.4rem;
}

.service-full-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  overflow: hidden;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.service-full-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.service-full-header {
  background: var(--navy);
  padding: 1.4rem 1.65rem;
  display: flex;
  align-items: center;
  gap: .9rem;
  color: var(--white);
}

.service-full-header svg { width: 26px; height: 26px; flex-shrink: 0; color: var(--sky); }
.service-full-header h3 { color: var(--white); font-size: 1.18rem; }

.service-full-body { padding: 1.6rem; }
.service-full-body p { color: var(--muted); font-size: .92rem; margin-bottom: 1.1rem; }

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
}

.tag {
  display: inline-block;
  font-size: .76rem;
  font-weight: 600;
  color: var(--blue);
  background: var(--blue-pale);
  padding: .27rem .7rem;
  border-radius: 99px;
}

.pricing-note-card {
  max-width: 740px;
  margin-inline: auto;
  background: var(--white);
  border-left: 4px solid var(--blue-lt);
  border-radius: var(--r2);
  padding: 2.1rem 2.4rem;
  box-shadow: var(--shadow-sm);
}

.pricing-note-card h3 { color: var(--text); margin-bottom: .65rem; font-size: 1.25rem; }
.pricing-note-card p  { color: var(--muted); font-size: .95rem; margin-bottom: 1.1rem; }

.pricing-checks {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem 1.75rem;
}

.pricing-check {
  font-family: var(--ff);
  font-size: .97rem;
  font-weight: 700;
  color: var(--blue);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.4rem;
}

.process-step { text-align: center; }

.process-num {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--blue-pale);
  border: 2px solid var(--blue);
  color: var(--blue);
  font-family: var(--ff);
  font-size: 1.25rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto .9rem;
}

.process-step h4 { color: var(--text); margin-bottom: .3rem; font-size: .98rem; }
.process-step p  { color: var(--muted); font-size: .86rem; }

.repair-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
  margin-top: 1.75rem;
}

.repair-stat-num {
  font-family: var(--ff);
  font-size: 1.85rem;
  font-weight: 900;
  color: var(--sky);
  line-height: 1;
}

.repair-stat-label {
  font-size: .76rem;
  color: rgba(255,255,255,.5);
  margin-top: .15rem;
}

.reason-item {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
}

.reason-circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: .1rem;
}

.reason-circle svg { width: 14px; height: 14px; color: var(--white); }

.reason-text h4 { color: var(--white); font-size: .97rem; margin-bottom: .2rem; }
.reason-text p  { color: rgba(255,255,255,.55); font-size: .87rem; }

/* 21. FAQ ACCORDION
   ============================================================ */
.faq-list {
  max-width: 780px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color var(--dur) var(--ease);
}

.faq-item.open { border-color: rgba(2,132,199,.28); }

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.3rem;
  cursor: pointer;
  font-weight: 700;
  color: var(--text);
  gap: 1rem;
  transition: color var(--dur) var(--ease);
  user-select: none;
}

.faq-q:hover { color: var(--blue); }

.faq-q svg {
  width: 20px; height: 20px;
  flex-shrink: 0;
  color: var(--blue);
  transition: transform var(--dur) var(--ease);
}

.faq-item.open .faq-q svg { transform: rotate(45deg); }

.faq-a {
  display: none;
  padding: .9rem 1.3rem 1.1rem;
  color: var(--muted);
  font-size: .91rem;
  line-height: 1.65;
  border-top: 1px solid var(--border);
}

.faq-item.open .faq-a { display: block; }

/* 22. BRANDS PAGE
   ============================================================ */
.vac-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.4rem;
}

.vac-type-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  padding: 1.65rem;
  border-top: 3px solid var(--blue);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.vac-type-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.vac-type-badge {
  display: inline-block;
  font-family: var(--ff);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--blue);
  padding: .22rem .65rem;
  border-radius: 99px;
  margin-bottom: .75rem;
}

.vac-type-icon {
  width: 50px;
  height: 50px;
  background: var(--blue-pale);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: 1rem;
}

.vac-type-icon svg { width: 30px; height: 30px; }
.vac-type-card h3  { margin-bottom: .5rem; color: var(--text); }
.vac-type-card p   { color: var(--muted); font-size: .9rem; }

.brand-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.4rem;
}

.brand-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  overflow: hidden;
  transition: border-color var(--dur) var(--ease),
              transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}

.brand-card:hover {
  border-color: rgba(2,132,199,.3);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.brand-card-header {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: 1.4rem;
  border-bottom: 1px solid var(--border);
}

.brand-avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff);
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--white);
  flex-shrink: 0;
}

.brand-name { font-family: var(--ff); font-size: 1.1rem; font-weight: 800; color: var(--text); }

.brand-type-badge {
  display: inline-block;
  font-family: var(--ff);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: .15rem;
}

.brand-card-body { padding: 1.4rem; }
.brand-card-body p { color: var(--muted); font-size: .9rem; line-height: 1.6; }

/* Brand cards where <p>, .brand-tags, .brand-link sit directly in .brand-card */
.brand-card > p {
  padding: 1.4rem 1.4rem .6rem;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.6;
  margin: 0;
}

.brand-card > .brand-tags {
  padding: 0 1.4rem;
  margin: 0 0 .9rem;
}

.brand-card > .brand-link {
  display: inline-flex;
  padding: 0 1.4rem 1.4rem;
}

.brand-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin: .8rem 0 .9rem;
}

.brand-tag {
  display: inline-block;
  font-size: .74rem;
  font-weight: 600;
  color: var(--blue);
  background: var(--blue-pale);
  padding: .25rem .65rem;
  border-radius: 99px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-family: var(--ff);
  font-size: .9rem;
  font-weight: 700;
  color: var(--blue);
  transition: gap var(--dur) var(--ease);
}

.brand-link:hover { gap: .5rem; color: var(--blue-lt); }
.brand-link svg { width: 14px; height: 14px; }

/* Advisor/advice grid (brands page) */
.advice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 700px;
  margin-inline: auto;
}

.advice-col { display: flex; flex-direction: column; gap: .75rem; }

.advice-item {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r);
  padding: .85rem 1.1rem;
}

.advice-q {
  display: block;
  font-family: var(--ff);
  font-size: .9rem;
  font-weight: 700;
  color: rgba(255,255,255,.65);
  margin-bottom: .2rem;
}

.advice-a {
  display: block;
  font-size: .88rem;
  color: var(--sky);
  font-weight: 600;
}

/* 23. CONTACT PAGE
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.55fr;
  gap: 2.25rem;
  align-items: start;
  max-width: 1060px;
  margin-inline: auto;
}

.contact-info-card {
  background: var(--navy);
  border-radius: var(--r2);
  padding: 2rem 1.75rem;
  position: sticky;
  top: calc(var(--nav) + 1.5rem);
}

.contact-info-card h3 {
  color: var(--white);
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  padding: .9rem 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.contact-detail:last-of-type { border-bottom: none; }

.contact-detail-icon {
  width: 36px;
  height: 36px;
  background: rgba(14,165,233,.12);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sky);
  flex-shrink: 0;
}

.contact-detail-icon svg { width: 18px; height: 18px; }

.contact-detail-body { flex: 1; }

.contact-detail-label {
  font-size: .72rem;
  color: rgba(255,255,255,.35);
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-bottom: .18rem;
}

.contact-detail-value {
  font-size: .92rem;
  color: rgba(255,255,255,.8);
  font-weight: 600;
  line-height: 1.55;
}

.contact-detail-value a { color: var(--sky); }
.contact-detail-value a:hover { color: var(--white); }

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .3rem .65rem;
  margin-top: .35rem;
}

.hours-day  { font-size: .82rem; color: rgba(255,255,255,.5); }
.hours-time { font-size: .82rem; color: rgba(255,255,255,.75); font-weight: 600; }
.hours-closed { color: rgba(255,255,255,.35); }

/* Strong/span fallback for old hours-grid */
.hours-grid span { font-size: .82rem; color: rgba(255,255,255,.5); }
.hours-grid strong { font-size: .82rem; color: rgba(255,255,255,.75); text-align: right; }

.contact-divider {
  height: 1px;
  background: rgba(255,255,255,.08);
  margin: 1.1rem 0;
  border: none;
}

.contact-quick-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .65rem;
  margin-top: 1.1rem;
}

.quick-stat,
.cq-stat {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r);
  padding: .8rem;
  text-align: center;
}

.quick-stat-value,
.cq-stat-num {
  font-family: var(--ff);
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--sky);
  line-height: 1;
}

.quick-stat-label,
.cq-stat-label {
  font-size: .72rem;
  color: rgba(255,255,255,.4);
  margin-top: .12rem;
  line-height: 1.3;
}

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow);
}

.contact-form-card h3 {
  font-size: 1.35rem;
  color: var(--text);
  margin-bottom: .4rem;
}

.form-sub {
  font-size: .88rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-bottom: 1rem;
}

.form-group label {
  font-size: .83rem;
  font-weight: 600;
  color: var(--text);
}

.req { color: var(--red); margin-left: .15rem; }

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--fb);
  font-size: .93rem;
  color: var(--text);
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: .7rem .95rem;
  width: 100%;
  outline: none;
  transition: border-color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease),
              background var(--dur) var(--ease);
  min-height: 44px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(2,132,199,.1);
  background: var(--white);
}

.form-group textarea { resize: vertical; min-height: 115px; }

.field-error {
  font-size: .78rem;
  color: var(--red);
  display: none;
}

.field-error.show { display: block; }

.form-privacy {
  font-size: .78rem;
  color: var(--muted);
  margin-bottom: .75rem;
}

.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  width: 100%;
  padding: .85rem;
  font-family: var(--ff);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: .05em;
  color: var(--white);
  background: var(--blue);
  border: none;
  border-radius: var(--r);
  cursor: pointer;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.btn-submit:hover {
  background: var(--blue-lt);
  transform: translateY(-1px);
}

.btn-submit:disabled {
  opacity: .6;
  cursor: not-allowed;
  transform: none;
}

.form-success {
  text-align: center;
  padding: 2.5rem 1.5rem;
}

.success-icon {
  width: 60px;
  height: 60px;
  background: var(--blue-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.1rem;
  color: var(--blue);
}

.success-icon svg { width: 30px; height: 30px; }

.form-success h3 { color: var(--text); margin-bottom: .5rem; }
.form-success p  { color: var(--muted); font-size: .93rem; }
.form-success a  { color: var(--blue); }

.map-section {
  border-radius: var(--r2);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 0;
}

.map-section iframe { display: block; width: 100%; height: 380px; border: 0; }

.directions-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.1rem;
  margin-top: 1.5rem;
}

.direction-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.1rem;
}

.direction-icon {
  width: 36px;
  height: 36px;
  background: var(--blue-pale);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}

.direction-icon svg { width: 18px; height: 18px; }
.direction-title { font-weight: 700; font-size: .9rem; color: var(--text); margin-bottom: .2rem; }
.direction-item p { font-size: .83rem; color: var(--muted); }

/* 24. REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}

.reveal-l, .reveal-left {
  opacity: 0;
  transform: translateX(-22px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}

.reveal-r, .reveal-right {
  opacity: 0;
  transform: translateX(22px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}

.reveal.in,
.reveal-l.in, .reveal-left.in,
.reveal-r.in, .reveal-right.in {
  opacity: 1;
  transform: translate(0, 0);
}

/* 25. FLOAT PHONE BUTTON (pill with number)
   ============================================================ */
.float-phone,
.float-call {
  position: fixed;
  bottom: 1.75rem;
  right: 1.5rem;
  display: flex;
  align-items: center;
  gap: .55rem;
  background: var(--blue);
  color: var(--white);
  font-family: var(--ff);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .03em;
  padding: .65rem 1.25rem;
  border-radius: 99px;
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
  z-index: 900;
  text-decoration: none;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
  white-space: nowrap;
}

.float-phone:hover,
.float-call:hover {
  background: var(--blue-lt);
  transform: translateY(-2px);
}

.float-phone svg,
.float-call svg { width: 18px; height: 18px; flex-shrink: 0; }

/* Float appointment button — stacked above float-phone */
.float-appt {
  position: fixed;
  bottom: 5rem;
  right: 1.5rem;
  display: flex;
  align-items: center;
  gap: .55rem;
  background: var(--navy);
  color: var(--white);
  font-family: var(--ff);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .03em;
  padding: .65rem 1.25rem;
  border-radius: 99px;
  border: 1.5px solid rgba(255,255,255,.18);
  box-shadow: 0 4px 16px rgba(0,0,0,.22);
  z-index: 900;
  text-decoration: none;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
  white-space: nowrap;
}

.float-appt:hover {
  background: var(--navy2);
  transform: translateY(-2px);
}

.float-appt svg { width: 16px; height: 16px; flex-shrink: 0; }

/* Scroll to top */
#scrollTop,
.scroll-top {
  position: fixed;
  bottom: 1.75rem;
  left: 1.5rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy);
  border: 1px solid rgba(255,255,255,.15);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur) var(--ease),
              background var(--dur) var(--ease),
              transform var(--dur) var(--ease);
}

#scrollTop.show, .scroll-top.show { opacity: 1; pointer-events: auto; }

#scrollTop:hover, .scroll-top:hover {
  background: var(--navy2);
  transform: translateY(-3px);
}

#scrollTop svg, .scroll-top svg { width: 18px; height: 18px; }

/* 26. KEYFRAMES
   ============================================================ */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* 27. RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .foot-grid,
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.75rem; }

  .hero-grid    { gap: 2.5rem; }
  .stats-grid   { grid-template-columns: repeat(2, 1fr); }
  .scene-inner  { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-info-card { position: static; }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-links .nav-cta:not(.hamburger ~ *) { display: none; }

  .hamburger, .ham { display: flex; }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 3.25rem 1.5rem 4rem;
  }

  .hero-store-block { display: none; }

  .hero-btns    { justify-content: center; }
  .hero-stats   { justify-content: center; }
  .hero-sub     { margin-left: auto; margin-right: auto; }

  .about-story  { grid-template-columns: 1fr; }
  .form-row     { grid-template-columns: 1fr; }

  .foot-grid,
  .footer-grid  { grid-template-columns: 1fr; gap: 1.5rem; }

  .foot-bottom  { flex-direction: column; text-align: center; }
  .foot-brand p { max-width: none; }

  .section { padding: 3.75rem 1.25rem; }

  .advice-grid  { grid-template-columns: 1fr; }

  .float-phone, .float-call { font-size: .88rem; padding: .55rem 1rem; }
  .float-appt { font-size: .88rem; padding: .55rem 1rem; bottom: 4.6rem; }
}

@media (max-width: 640px) {
  .stats-grid    { grid-template-columns: repeat(2, 1fr); gap: 1.1rem; }
  .cta-btns      { flex-direction: column; align-items: center; }
  .hero-eyebrow  { font-size: .74rem; }

  .services-full-grid,
  .vac-types-grid,
  .brand-cards-grid { grid-template-columns: 1fr; }

  .contact-quick-stats { grid-template-columns: 1fr 1fr; }
  .hours-grid { grid-template-columns: 1fr; }
  .hours-grid strong { text-align: left; }

  .google-header { flex-direction: column; gap: .65rem; }
  .page-hero { padding: calc(var(--nav) + 1.75rem) 1.25rem 2.25rem; }

  .mission-card { padding: 2rem 1.75rem; }

  .appt-info-strip { grid-template-columns: 1fr; }
  .appt-card { padding: 1.75rem 1.25rem; }
}

/* 28. APPOINTMENT PAGE
   ============================================================ */
.appt-wrap {
  max-width: 700px;
  margin-inline: auto;
}

.appt-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  padding: 2.5rem 2.25rem;
  box-shadow: var(--shadow);
}

.appt-card h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.75rem);
  color: var(--text);
  margin-bottom: .35rem;
}

.appt-card .form-sub { margin-bottom: 1.75rem; }

.appt-info-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  margin-top: 1.75rem;
}

.appt-info-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.2rem;
  text-align: center;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.appt-info-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.appt-info-icon {
  width: 40px;
  height: 40px;
  background: var(--blue-pale);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin: 0 auto .65rem;
}

.appt-info-icon svg { width: 20px; height: 20px; }

.appt-info-label {
  font-family: var(--ff);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .3rem;
}

.appt-info-value {
  font-size: .86rem;
  color: var(--text);
  font-weight: 600;
  line-height: 1.55;
}

.appt-info-value a { color: var(--blue); }
.appt-info-value a:hover { color: var(--blue-lt); }

/* 29. PREFERS REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal, .reveal-l, .reveal-left, .reveal-r, .reveal-right {
    opacity: 1 !important;
    transform: none !important;
  }
}
