/* ============================================================
   ROUTE 133 AUTO — MAIN STYLESHEET
   Brand: Dark Navy + Red + Amber/Gold, Impact headlines
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ── CSS Custom Properties ── */
:root {
  --navy-base:    #001020;
  --navy-mid:     #001e38;
  --navy-deep:    #002850;
  --navy-darkest: #000a12;
  --red:          #d40012;
  --red-dark:     #8a0008;
  --red-cta:      #e00014;
  --red-cta-end:  #a00008;
  --amber:        #f0c040;
  --white:        #ffffff;
  --gray-light:   #d0d8e0;
  --gray-muted:   #8899aa;
  --booking-url:  'https://app.shopmonkey.cloud/public/scheduler/76908348-139d-42f4-90d7-b3044c5ee9b0?fullPage=true';
  --transition:   0.3s ease;
  --radius:       12px;
  --radius-pill:  50px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', Arial, sans-serif;
  background: var(--navy-base);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Animated Page Background ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, var(--navy-base), var(--navy-mid), var(--navy-deepest, #000d1a), var(--navy-base));
  background-size: 400% 400%;
  animation: bgShift 14s ease infinite;
  z-index: -2;
  pointer-events: none;
}
@keyframes bgShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Grid texture overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg,   rgba(255,255,255,0.035) 0px, rgba(255,255,255,0.035) 1px, transparent 1px, transparent 40px),
    repeating-linear-gradient(90deg,  rgba(255,255,255,0.035) 0px, rgba(255,255,255,0.035) 1px, transparent 1px, transparent 40px);
  z-index: -1;
  pointer-events: none;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: rgba(0, 16, 32, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.5);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo img {
  height: 44px;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(212,0,18,0.4));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gray-light);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--red);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.btn-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--red-cta), var(--red-cta-end));
  color: var(--white);
  font-family: Impact, 'Arial Narrow', Arial, sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  box-shadow: 0 4px 16px rgba(212,0,18,0.4);
  white-space: nowrap;
  text-decoration: none;
}
.btn-nav:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 28px rgba(212,0,18,0.65);
  filter: brightness(1.1);
}
.btn-nav:active { transform: scale(0.97); }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1010;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.nav-mobile {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,10,20,0.97);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.nav-mobile.open { display: flex; opacity: 1; }
.nav-mobile a {
  font-family: Impact, sans-serif;
  font-size: 2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  transition: color var(--transition);
}
.nav-mobile a:hover { color: var(--amber); }
.nav-mobile .btn-cta { font-size: 1.2rem; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 42px;
  background: linear-gradient(135deg, var(--red-cta), var(--red-cta-end));
  color: var(--white);
  font-family: Impact, 'Arial Narrow', Arial, sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  box-shadow: 0 6px 24px rgba(212,0,18,0.45);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.btn-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.12), transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.btn-cta:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 36px rgba(212,0,18,0.7);
  filter: brightness(1.08);
}
.btn-cta:hover::before { opacity: 1; }
.btn-cta:active { transform: scale(0.97); box-shadow: 0 4px 20px rgba(212,0,18,0.8); }

/* Pulse animation for hero CTA */
.btn-cta.pulse {
  animation: ctaPulse 2.2s ease-in-out infinite;
}
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(212,0,18,0.45); }
  50%       { box-shadow: 0 6px 40px rgba(212,0,18,0.8), 0 0 60px rgba(212,0,18,0.25); }
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: transparent;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(212,0,18,0.5);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-outline:hover {
  border-color: var(--red);
  background: rgba(212,0,18,0.12);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(212,0,18,0.3);
}

/* ============================================================
   SECTION UTILITIES
   ============================================================ */
.section { padding: 100px 2rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }

.section-label {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}

.section-title {
  font-family: Impact, 'Arial Narrow', Arial, sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 0.5rem;
}

.section-title span { color: var(--red); }

.section-sub {
  font-size: 1.05rem;
  color: var(--gray-light);
  max-width: 580px;
  margin-bottom: 3rem;
}

.divider-red {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--red), transparent);
  margin: 1.2rem 0 2.5rem;
  border-radius: 2px;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(50%) brightness(0.42) saturate(0.7);
  z-index: 0;
  transition: opacity 1s ease;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,10,20,0.82) 0%, rgba(0,16,32,0.6) 60%, rgba(0,10,20,0.75) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 2rem 80px;
  width: 100%;
}

.hero-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.2rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.7s ease forwards 0.2s;
}

.hero-title {
  font-family: Impact, 'Arial Narrow', Arial, sans-serif;
  font-size: clamp(2.8rem, 8vw, 6.5rem);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.6rem;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.8s ease forwards 0.35s;
}
.hero-title .accent { color: var(--red); }

.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--amber);
  font-style: italic;
  font-weight: 600;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.7s ease forwards 0.5s;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.7s ease forwards 0.65s;
}

.hero-divider {
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, var(--red), transparent);
  margin: 1.6rem 0;
  border-radius: 2px;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 0.28s;
}

.hero-badges {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 3.5rem;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.8s;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-light);
}
.hero-badge svg { color: var(--red); flex-shrink: 0; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: linear-gradient(135deg, #0a0018, #1a0006, #0a0018);
  border-top: 1px solid rgba(212,0,18,0.2);
  border-bottom: 1px solid rgba(212,0,18,0.2);
  padding: 1.4rem 2rem;
  overflow: hidden;
}
.trust-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-light);
}
.trust-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

/* ============================================================
   SERVICES OVERVIEW (homepage cards)
   ============================================================ */
.services-overview { background: transparent; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 0;
}

.service-card {
  background: var(--navy-mid);
  border: 1px solid rgba(212,0,18,0.2);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--red-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.service-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4), 0 0 0 1px rgba(212,0,18,0.4);
  border-color: rgba(212,0,18,0.45);
}
.service-card:hover::before { transform: scaleX(1); }

.card-icon {
  width: 56px; height: 56px;
  background: rgba(212,0,18,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
  transition: background 0.3s ease;
}
.service-card:hover .card-icon { background: rgba(212,0,18,0.22); }
.card-icon svg { color: var(--red); }

.card-title {
  font-family: Impact, 'Arial Narrow', Arial, sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.8rem;
}

.card-desc {
  font-size: 0.92rem;
  color: var(--gray-light);
  line-height: 1.65;
  margin-bottom: 1.6rem;
}

/* ============================================================
   GALLERY TEASER
   ============================================================ */
.gallery-teaser { background: transparent; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.08);
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.45s ease;
  filter: brightness(0.88);
}
.gallery-item:hover img {
  transform: scale(1.07);
  filter: brightness(1);
}
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}
.gallery-item:hover .gallery-item-overlay { background: rgba(212,0,18,0.18); }
.gallery-item-overlay svg {
  color: var(--white);
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.gallery-item:hover .gallery-item-overlay svg {
  opacity: 1;
  transform: scale(1);
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: linear-gradient(135deg, #1a0004, #0d0002, #1a0004);
  border-top: 1px solid rgba(212,0,18,0.3);
  border-bottom: 1px solid rgba(212,0,18,0.3);
  padding: 80px 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(212,0,18,0.1) 0%, transparent 70%);
}
.cta-band-inner { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.cta-band-title {
  font-family: Impact, 'Arial Narrow', Arial, sans-serif;
  font-size: clamp(2rem, 5vw, 3.8rem);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 0.8rem;
}
.cta-band-title span { color: var(--red); }
.cta-band-sub {
  font-size: 1rem;
  color: var(--gray-light);
  margin-bottom: 2.5rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy-darkest, #000a12);
  border-top: 1px solid rgba(212,0,18,0.15);
  padding: 64px 2rem 32px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-logo img {
  height: 48px;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 8px rgba(212,0,18,0.3));
}
.footer-tagline {
  font-size: 0.9rem;
  color: var(--gray-muted);
  line-height: 1.6;
  max-width: 300px;
}
.footer-heading {
  font-family: Impact, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.2rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-links a {
  font-size: 0.9rem;
  color: var(--gray-light);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }
.footer-info { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-info-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--gray-light);
  line-height: 1.5;
}
.footer-info-item svg { color: var(--red); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--gray-muted);
  flex-wrap: wrap;
  gap: 1rem;
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.page-hero {
  padding: 160px 2rem 80px;
  background: transparent;
}
.page-hero-inner { max-width: 1200px; margin: 0 auto; }

.pricing-section { padding: 80px 2rem; }
.pricing-section + .pricing-section {
  border-top: 1px solid rgba(255,255,255,0.06);
}
.pricing-inner { max-width: 1200px; margin: 0 auto; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.price-card {
  background: var(--navy-mid);
  border: 1px solid rgba(212,0,18,0.18);
  border-radius: var(--radius);
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}
.price-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--red-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.35), 0 0 0 1px rgba(212,0,18,0.35);
  border-color: rgba(212,0,18,0.4);
}
.price-card:hover::after { transform: scaleX(1); }

.price-card-name {
  font-family: Impact, sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.price-card-desc {
  font-size: 0.85rem;
  color: var(--gray-muted);
  margin-bottom: 1.2rem;
  line-height: 1.5;
}
.price-card-price {
  font-family: Impact, sans-serif;
  font-size: 2.2rem;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 1.5rem;
}
.price-card-price .price-note {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gray-muted);
  display: block;
  margin-top: 4px;
}
.price-card .btn-cta {
  width: 100%;
  justify-content: center;
  padding: 14px 20px;
  font-size: 1rem;
}

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.full-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.2rem;
  margin-top: 2.5rem;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.93);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.7);
  transform: scale(0.94);
  transition: transform 0.3s ease;
}
.lightbox.open img { transform: scale(1); }
.lightbox-close {
  position: absolute;
  top: 24px; right: 28px;
  background: none; border: none;
  color: var(--white);
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.7;
  transition: opacity var(--transition);
}
.lightbox-close:hover { opacity: 1; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 3rem;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
}
.hours-table tr { border-bottom: 1px solid rgba(255,255,255,0.07); }
.hours-table td {
  padding: 12px 0;
  font-size: 0.95rem;
  color: var(--gray-light);
}
.hours-table td:last-child {
  text-align: right;
  font-weight: 600;
  color: var(--white);
}
.hours-table tr.highlight td { color: var(--amber); }

.contact-info { display: flex; flex-direction: column; gap: 1.4rem; margin-bottom: 2.5rem; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-icon {
  width: 42px; height: 42px;
  background: rgba(212,0,18,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--red);
}
.contact-info-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-muted);
  margin-bottom: 3px;
}
.contact-info-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}
.contact-info-value a { transition: color var(--transition); }
.contact-info-value a:hover { color: var(--amber); }

.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(212,0,18,0.2);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.map-container iframe { display: block; }

.saturday-note {
  background: rgba(240,192,64,0.08);
  border: 1px solid rgba(240,192,64,0.25);
  border-left: 3px solid var(--amber);
  border-radius: 8px;
  padding: 1rem 1.2rem;
  font-size: 0.88rem;
  color: var(--amber);
  line-height: 1.55;
  margin-bottom: 2rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-inner > *:first-child { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav-links, .btn-nav { display: none; }
  .nav-hamburger { display: flex; }

  .hero-title { font-size: clamp(2.2rem, 11vw, 3.5rem); }

  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .full-gallery-grid { grid-template-columns: repeat(2, 1fr); }

  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }

  .section { padding: 72px 1.2rem; }
  .pricing-section { padding: 64px 1.2rem; }

  .hero-cta-group { flex-direction: column; align-items: flex-start; }
  .btn-cta { width: 100%; justify-content: center; }

  .trust-bar-inner { gap: 1.5rem; }

  .cta-band { padding: 60px 1.2rem; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .full-gallery-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .hero-badges { gap: 1rem; }
  .nav { padding: 0 1.2rem; }
}
