/* ═══════════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════════ */
:root {
  /* Brand colors — pulled from logo */
  --navy:        #0d2b5e;
  --navy-mid:    #163580;
  --navy-light:  #1e4499;
  --steel:       #4a6fa5;
  --silver:      #c8d8e8;
  --amber:       #d4880a;
  --amber-light: #f0a020;

  /* Page palette */
  --page-bg:     #f0f2f5;
  --card-bg:     #ffffff;
  --section-alt: #e8edf4;

  /* Text */
  --text-heading: #0d2b5e;
  --text-body:    #2c3e55;
  --text-muted:   #5a6e84;
  --text-light:   #8a9aaa;

  /* UI */
  --border:      #d4dce8;
  --border-dark: #b0bece;
  --radius:      6px;
  --radius-lg:   10px;
  --shadow:      0 2px 16px rgba(13,43,94,0.09);
  --shadow-hover:0 6px 28px rgba(13,43,94,0.15);
  --shadow-card: 0 1px 6px rgba(13,43,94,0.07);
}

/* ═══════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Open Sans', sans-serif;
  /* FIX: was 16px fixed — now fluid so mobile text is never too small */
  font-size: clamp(17px, 2vw, 18px);
  background: var(--page-bg);
  color: var(--text-body);
  overflow-x: hidden;
  line-height: 1.7;
}
img { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }

/* ═══════════════════════════════════════════
   UTILITY
═══════════════════════════════════════════ */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 48px);
}

/* ═══════════════════════════════════════════
   TOP BAR — thin navy strip above header
═══════════════════════════════════════════ */
.top-bar {
  background: var(--navy);
  padding: 8px 0;
}
.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar-left {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 32px);
  flex-wrap: wrap;
}
.top-bar-item {
  display: flex;
  align-items: center;
  gap: 7px;
  /* FIX: min was too small at 0.78rem — bumped floor to 0.88rem */
  font-size: clamp(0.88rem, 1.6vw, 0.95rem);
  color: var(--silver);
  font-family: 'Open Sans', sans-serif;
  font-weight: 500;
}
.top-bar-item svg { flex-shrink: 0; opacity: 0.8; }
.top-bar-item a { color: var(--silver); transition: color 0.2s; }
.top-bar-item a:hover { color: #fff; }
.top-bar-hours {
  /* FIX: bumped floor from 0.76rem */
  font-size: clamp(0.84rem, 1.4vw, 0.92rem);
  color: rgba(200,216,232,0.75);
}

/* ═══════════════════════════════════════════
   HEADER
═══════════════════════════════════════════ */
#header {
  background: var(--card-bg);
  border-bottom: 4px solid var(--navy);
  box-shadow: 0 2px 12px rgba(13,43,94,0.12);
  position: sticky;
  top: 0;
  z-index: 200;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: clamp(12px, 2vw, 20px);
  padding-bottom: clamp(12px, 2vw, 20px);
  /* NO flex-wrap — we control layout explicitly per breakpoint */
  flex-wrap: nowrap;
}

/* ── Logo block ── */
.header-logo-block {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  min-width: 0;
}
.header-logo-img {
  width: clamp(54px, 8vw, 100px);
  height: clamp(54px, 8vw, 100px);
  object-fit: contain;
  flex-shrink: 0;
}
.header-logo-text {
  min-width: 0;
}
.header-logo-text .biz-name {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 2.5vw, 1.9rem);
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.05;
  white-space: nowrap;
}
.header-logo-text .biz-tagline {
  font-size: clamp(0.65rem, 1vw, 0.82rem);
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 3px;
  white-space: nowrap;
}

/* ── Center nav ── */
.header-center {
  flex: 1;
  display: flex;
  justify-content: center;
  min-width: 0;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.5vw, 36px);
  flex-wrap: nowrap;
}
.header-nav a {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: clamp(0.85rem, 1.4vw, 1.05rem);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-body);
  white-space: nowrap;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.header-nav a:hover { color: var(--navy); border-bottom-color: var(--amber); }

/* ── Phone / CTA block ── */
.header-cta-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  flex-shrink: 0;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header-phone-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}
.header-phone-number {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(1.2rem, 2.5vw, 1.9rem);
  color: var(--navy);
  letter-spacing: 0.04em;
  line-height: 1;
  white-space: nowrap;
  transition: color 0.2s;
}
.header-phone-number:hover { color: var(--navy-light); }
.btn-call-now {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: clamp(0.85rem, 1.4vw, 1.05rem);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: clamp(9px, 1.2vw, 12px) clamp(14px, 2vw, 28px);
  border-radius: var(--radius);
  transition: background 0.2s, transform 0.15s;
}
.btn-call-now:hover { background: var(--navy-light); transform: translateY(-1px); }

/* ── Mobile: stack all three blocks vertically, centered ── */
@media (max-width: 800px) {
  .header-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .header-logo-block {
    justify-content: center;
  }
  .header-cta-block {
    align-items: center;
    width: 100%;
  }
  .btn-call-now {
    width: 100%;
    justify-content: center;
  }
}

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  background: var(--card-bg);
  border-bottom: 1px solid var(--border);
  padding: clamp(40px, 7vw, 88px) 0;
}
.hero-inner {
  display: grid;
  /* FIX: was 480px — on a ~390px phone two 480px cols can't fit so it
     already collapses, but raising to 500px makes intent explicit */
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 500px), 1fr));
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--section-alt);
  border: 1px solid var(--border);
  border-left: 3px solid var(--amber);
  /* FIX: bumped floor */
  font-size: clamp(0.82rem, 1.3vw, 0.88rem);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 6px 14px 6px 12px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 20px;
}

.hero-headline {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  /* FIX: floor raised from 2.2rem — headlines were too small on mobile */
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.05;
  margin-bottom: 20px;
}
.hero-headline span { color: var(--amber); }

.hero-sub {
  /* FIX: was clamp(1rem, 2vw, 3rem) — ceiling of 3rem is enormous,
     and the preferred value scaled too aggressively.
     Now: stays near 1.1rem on mobile, scales gently, caps at 1.2rem */
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  /* FIX: wrap to column so buttons stack full-width on narrow screens */
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--navy);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: clamp(14px, 2vw, 16px) clamp(26px, 4vw, 40px);
  border-radius: var(--radius);
  box-shadow: 0 4px 18px rgba(13,43,94,0.28);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  /* FIX: full width on small screens */
  flex: 1 1 auto;
  justify-content: center;
}
.btn-primary:hover { background: var(--navy-light); transform: translateY(-2px); box-shadow: 0 8px 26px rgba(13,43,94,0.35); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  color: var(--navy);
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: clamp(14px, 2vw, 16px) clamp(22px, 3.5vw, 34px);
  border-radius: var(--radius);
  border: 2px solid var(--navy);
  transition: all 0.2s;
  /* FIX: full width on small screens */
  flex: 1 1 auto;
  justify-content: center;
}
.btn-secondary:hover { background: var(--navy); color: #fff; }

.hero-creds {
  display: flex;
  gap: clamp(16px, 3vw, 28px);
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.hero-cred {
  display: flex;
  align-items: center;
  gap: 9px;
}
.hero-cred-num {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  /* FIX: floor raised */
  font-size: clamp(1.6rem, 3vw, 2rem);
  color: var(--navy);
  line-height: 1;
}
.hero-cred-label {
  /* FIX: bumped floor from 0.76rem */
  font-size: clamp(0.82rem, 1.2vw, 0.88rem);
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.35;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-logo-wrap {
  position: relative;
  display: inline-block;
}
.hero-logo-img {
  width: clamp(220px, 32vw, 420px);
  height: clamp(220px, 32vw, 420px);
  object-fit: contain;
  filter: drop-shadow(0 8px 32px rgba(13,43,94,0.18));
}

/* ═══════════════════════════════════════════
   TRUST BAR
═══════════════════════════════════════════ */
.trust-bar {
  background: var(--navy);
  padding: clamp(20px, 3vw, 28px) 0;
}
.trust-bar-grid {
  display: grid;
  /* FIX: raised minmax to 340px — collapses to 1 col under ~680px */
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: 1px;
  background: rgba(255,255,255,0.12);
}
.trust-item {
  background: var(--navy);
  display: flex;
  align-items: center;
  gap: 14px;
  padding: clamp(14px, 2vw, 20px) clamp(16px, 2.5vw, 28px);
}
.trust-icon {
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  flex-shrink: 0;
  line-height: 1;
}
.trust-text-num {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  /* FIX: floor raised */
  font-size: clamp(1.4rem, 2.5vw, 1.75rem);
  color: var(--amber-light);
  line-height: 1;
}
.trust-text-label {
  /* FIX: floor raised from 0.78rem */
  font-size: clamp(0.88rem, 1.3vw, 0.95rem);
  color: var(--silver);
  font-weight: 500;
  margin-top: 2px;
  line-height: 1.3;
}

/* ═══════════════════════════════════════════
   SECTION SHARED STYLES
═══════════════════════════════════════════ */
.section-pad {
  padding: clamp(48px, 7vw, 88px) 0;
}

.section-header {
  margin-bottom: clamp(28px, 4vw, 48px);
}
.section-header.centered { text-align: center; }
.section-header.centered .section-sub { margin: 0 auto; }

.section-kicker {
  display: inline-block;
  /* FIX: was clamp(2rem, 1.2vw, 0.84rem) — min > max, completely broken.
     Corrected so it reads as intended: small label text */
  font-size: clamp(0.82rem, 1.2vw, 0.9rem);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 10px;
}
.section-kicker::before { content: '— '; }
.section-kicker::after  { content: ' —'; }

.section-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  /* FIX: floor raised from 1.8rem */
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.08;
  margin-bottom: 14px;
}
.section-title span { color: var(--amber); }

.section-sub {
  /* FIX: floor raised from 1rem */
  font-size: clamp(1.05rem, 1.7vw, 1.1rem);
  color: var(--text-body);
  line-height: 1.75;
  max-width: 600px;
}

.section-divider {
  width: 56px;
  height: 4px;
  background: var(--amber);
  border-radius: 2px;
  margin-bottom: 18px;
}
.section-divider.center { margin-left: auto; margin-right: auto; }

/* ═══════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════ */
.services {
  background: var(--page-bg);
}
.services-grid {
  display: grid;
  /* FIX: raised minmax from 320px to 340px — forces single column on phones */
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: clamp(14px, 2vw, 22px);
}
.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-top: 4px solid var(--navy);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 3vw, 32px);
  box-shadow: var(--shadow-card);
  transition: transform 0.22s, box-shadow 0.22s, border-top-color 0.22s;
}

.service-card-featured {
  border-top-color: var(--amber);
  background: #fffdf8;
}

.service-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
  line-height: 1;
  text-align: center;
}
.service-badge {
  display: inline-block;
  background: rgba(212,136,10,0.1);
  border: 1px solid rgba(212,136,10,0.3);
  color: var(--amber);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 3px;
  margin-bottom: 10px;
}
.service-name {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  /* FIX: floor raised */
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
  line-height: 1.15;
}
.service-desc {
  /* FIX: floor raised from 0.93rem */
  font-size: clamp(1rem, 1.5vw, 1.05rem);
  color: var(--text-body);
  line-height: 1.7;
}


/* ═══════════════════════════════════════════
   SPECIALS
═══════════════════════════════════════════ */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: clamp(14px, 2vw, 22px);
}
.service-card-specials {
  border: 1px solid var(--border);
  border-top: 4px solid var(--navy);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 3vw, 32px);
  box-shadow: var(--shadow-card);
  transition: transform 0.22s, box-shadow 0.22s, border-top-color 0.22s;
  background: #fffdf8;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  align-items: center;
}

.service-icon-specials {
  font-size: 2.2rem;
  margin-bottom: 14px;
  line-height: 1;
  text-align: center;
}
.service-badge-specials {
  display: inline-block;
  background: rgba(212,136,10,0.1);
  border: 1px solid navy;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 3px;
  margin-bottom: 10px;
}
.service-name-specials {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
  line-height: 1.15;
}
.service-desc-specials {
  font-size: clamp(1rem, 1.5vw, 1.05rem);
  color: var(--text-body);
  line-height: 1.7;
}

.service-badge-specials {
    display: inline-block;
    background: rgb(0 194 255);
    border: 1px solid rgba(212, 136, 10, 0.3);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 3px;
    margin: 0 auto;
    align-items: center;
	text-align: center;
}

.specials {
    border-top-color: #0979b7;
    display: flex;
    align-content: center;
    flex-direction: column;
    align-items: center;
}

/* ═══════════════════════════════════════════
   WHY CHOOSE US
═══════════════════════════════════════════ */
.why-us {
  background: var(--card-bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.why-us-layout {
  display: grid;
  /* FIX: raised minmax from 480px to 520px — cleaner collapse point */
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 520px), 1fr));
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}

.why-us-feature-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.feature-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--page-bg);
  border: 1px solid var(--border);
  border-left: 4px solid var(--navy);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: clamp(16px, 2.2vw, 22px);
  transition: border-left-color 0.22s, box-shadow 0.22s;
}
.feature-card:hover {
  border-left-color: var(--amber);
  box-shadow: var(--shadow);
}
.feature-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}
.feature-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  /* FIX: floor raised */
  font-size: clamp(1.05rem, 1.8vw, 1.15rem);
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 5px;
}
.feature-body {
  /* FIX: floor raised from 0.93rem */
  font-size: clamp(1rem, 1.5vw, 1.05rem);
  color: var(--text-body);
  line-height: 1.7;
}

.why-us-promises {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.promise-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.promise-row:last-child { border-bottom: none; padding-bottom: 0; }
.promise-check {
  width: 32px; height: 32px;
  background: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 2px;
}
.promise-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  /* FIX: floor raised */
  font-size: clamp(1.05rem, 1.8vw, 1.15rem);
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 5px;
}
.promise-body {
  /* FIX: floor raised from 0.93rem */
  font-size: clamp(1rem, 1.5vw, 1.05rem);
  color: var(--text-body);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   REVIEWS
═══════════════════════════════════════════ */
.reviews {
  background: var(--page-bg);
}
.reviews-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: clamp(16px, 2.5vw, 24px);
  margin-bottom: clamp(28px, 4vw, 44px);
  flex-wrap: wrap;
}
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 8px 18px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-body);
  box-shadow: var(--shadow-card);
}
.google-g {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  background: linear-gradient(135deg, #4285f4, #ea4335, #fbbc05, #34a853);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.btn-load-reviews {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--card-bg);
  color: var(--navy);
  border: 2px solid var(--navy);
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: clamp(0.95rem, 1.5vw, 1rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: var(--shadow-card);
}
.btn-load-reviews:hover {
  background: var(--navy);
  color: #fff;
}

.reviews-grid {
  display: grid;
  /* FIX: raised minmax from 320px to 340px */
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: clamp(14px, 2vw, 22px);
}
.review-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-top: 4px solid var(--navy);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 3vw, 30px);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: transform 0.22s, box-shadow 0.22s;
}
.review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }

.review-stars {
  color: var(--amber);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.review-text {
  /* FIX: floor raised from 0.95rem */
  font-size: clamp(1rem, 1.5vw, 1.05rem);
  color: var(--text-body);
  line-height: 1.78;
  font-style: italic;
  flex: 1;
  margin-bottom: 20px;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
}
.review-name {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.review-location {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.reviews-api-notice {
  margin-top: clamp(24px, 3vw, 36px);
  padding: clamp(16px, 2.5vw, 24px);
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-left: 4px solid var(--navy);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.75;
  box-shadow: var(--shadow-card);
}
.reviews-api-notice strong { color: var(--navy); }
.reviews-api-notice code {
  background: var(--page-bg);
  border: 1px solid var(--border);
  color: var(--navy-light);
  padding: 1px 7px;
  border-radius: 3px;
  font-size: 0.86rem;
  font-family: monospace;
}
.reviews-api-notice a { color: var(--navy-light); text-decoration: underline; }

#reviews-loading {
  text-align: center;
  padding: 28px;
  color: var(--text-muted);
  font-size: 1rem;
  display: none;
}

/* ═══════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════ */
.contact {
  background: var(--card-bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.contact-grid {
  display: grid;
  /* FIX: raised minmax from 320px to 340px */
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: clamp(14px, 2.5vw, 24px);
}
.contact-card {
  background: var(--page-bg);
  border: 1px solid var(--border);
  border-top: 4px solid var(--navy);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3.5vw, 36px);
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform 0.22s, box-shadow 0.22s;
}
.contact-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }

.contact-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
  line-height: 1;
}
.contact-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.contact-value {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  color: var(--navy);
  line-height: 1.4;
  letter-spacing: 0.02em;
  transition: color 0.2s;
  display: block;
}
.contact-value:hover { color: var(--navy-light); }
.contact-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 8px;
}

.hours-rows {
  margin-top: 6px;
  width: 100%;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  /* FIX: floor raised from 0.88rem */
  font-size: clamp(0.95rem, 1.4vw, 1rem);
}
.hours-row:last-child { border-bottom: none; }
.hours-day { color: var(--text-body); font-weight: 500; text-align: left; }
.hours-time { color: var(--text-muted); text-align: right; }
.hours-time.open { color: var(--navy); font-weight: 600; }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
#footer {
  background: var(--navy);
}
.footer-main {
  padding: clamp(36px, 5vw, 60px) 0 clamp(24px, 4vw, 40px);
  display: grid;
  /* FIX: raised minmax from 280px to 320px */
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: clamp(28px, 4vw, 48px);
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.footer-logo-img {
  width: 64px; height: 64px;
  object-fit: contain;
  opacity: 0.9;
}
.footer-biz-name {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.15;
}
.footer-biz-tag {
  font-size: 0.74rem;
  color: var(--silver);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 3px;
  opacity: 0.75;
}
.footer-brand-desc {
  font-size: 0.94rem;
  color: var(--silver);
  line-height: 1.7;
  opacity: 0.8;
}

.footer-col-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(255,255,255,0.12);
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-links li a {
  font-size: 0.94rem;
  color: var(--silver);
  opacity: 0.8;
  transition: opacity 0.2s, color 0.2s;
}
.footer-links li a:hover { opacity: 1; color: var(--amber-light); }

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.94rem;
  color: var(--silver);
  opacity: 0.8;
  line-height: 1.5;
}
.footer-contact-item a { color: var(--silver); opacity: 1; transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--amber-light); }
.footer-contact-icon { flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: clamp(14px, 2vw, 20px) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-copy {
  font-size: 0.82rem;
  color: rgba(200,216,232,0.5);
}
