/* ═══════════════════════════════════════
   F&T AUTO CENTER — STYLESHEET
   Theme: Checkered flag racing + Industrial Brooklyn
═══════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:    #0d0d0d;
  --dark:     #161616;
  --dark2:    #1f1f1f;
  --dark3:    #2a2a2a;
  --gold:     #e8b400;
  --gold-dim: #c49a00;
  --red:      #c0392b;
  --white:    #f5f5f5;
  --gray:     #888;
  --light:    #e8e8e8;
  --radius:   8px;
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ── UTILITY ─────────────────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.accent { color: var(--gold); }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  letter-spacing: 0.02em;
}
.btn-primary {
  background: var(--gold);
  color: var(--black);
}
.btn-primary:hover { background: #eeeeee; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,180,0,0.35); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(232,180,0,0.35);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-nav {
  background: var(--gold);
  color: var(--black);
  padding: 10px 20px;
  font-size: 0.875rem;
  font-weight: 700;
}
.btn-nav:hover { background: #eeeeee; }
.btn-full { width: 100%; justify-content: center; padding: 16px; font-size: 1rem; }

/* checkered pattern helper */
.checker-pattern {
  background-image:
    linear-gradient(45deg, #000 25%, transparent 25%),
    linear-gradient(-45deg, #000 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, #000 75%),
    linear-gradient(-45deg, transparent 75%, #000 75%);
  background-size: 16px 16px;
  background-position: 0 0, 0 8px, 8px -8px, -8px 0px;
  background-color: var(--gold);
}

/* ── SECTION HEADERS ─────────────────── */
.section-header { text-align: center; max-width: 600px; margin: 0 auto 64px; }
.section-flag { display: flex; justify-content: center; margin-bottom: 16px; }
.mini-checker {
  width: 40px; height: 12px;
  background-image:
    linear-gradient(45deg, #ffffff 25%, transparent 25%),
    linear-gradient(-45deg, #ffffff 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, #ffffff 75%),
    linear-gradient(-45deg, transparent 75%, #ffffff 75%);
  background-size: 8px 8px;
  background-position: 0 0, 0 4px, 4px -4px, -4px 0px;
  background-color: #111;
  border-radius: 2px;
}
.section-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2rem, 4vw, 2.8rem); letter-spacing: 0.04em; line-height: 1.1; margin-bottom: 12px; }
.section-sub { color: var(--gray); font-size: 1rem; }

/* ══════════════════════════════════════
   HEADER / NAV
══════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(13,13,13,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232,180,0,0.08);
}

.checker-stripe {
  height: 5px;
  background-image:
    linear-gradient(45deg, var(--gold) 25%, transparent 25%),
    linear-gradient(-45deg, var(--gold) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, var(--gold) 75%),
    linear-gradient(-45deg, transparent 75%, var(--gold) 75%);
  background-size: 10px 10px;
  background-position: 0 0, 0 5px, 5px -5px, -5px 0px;
  background-color: #111;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 16px 24px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-flag {
  width: 44px; height: 44px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}
.flag-grid {
  width: 100%; height: 100%;
  background-image:
    linear-gradient(45deg, #111 25%, transparent 25%),
    linear-gradient(-45deg, #111 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, #111 75%),
    linear-gradient(-45deg, transparent 75%, #111 75%);
  background-size: 11px 11px;
  background-position: 0 0, 0 5.5px, 5.5px -5.5px, -5.5px 0;
  background-color: var(--gold);
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-ft {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: var(--white);
  letter-spacing: 0.05em;
}
.amp { color: var(--gold); }
.logo-sub {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gray);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 8px;
  margin-left: auto;
}
.nav-links a {
  color: var(--gray);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 6px;
  transition: all var(--transition);
}
.nav-links a:hover { color: var(--white); background: rgba(232,180,0,0.08); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.mobile-menu {
  display: none;
  padding: 16px 24px 24px;
  background: var(--dark);
  border-top: 1px solid rgba(232,180,0,0.08);
}
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.mobile-menu a {
  display: block;
  color: var(--white);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: 6px;
  transition: background var(--transition);
}
.mobile-menu a:hover { background: rgba(232,180,0,0.08); }
.mobile-menu.open { display: block; }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}

.hero-checker-bg {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    linear-gradient(45deg, #fff 25%, transparent 25%),
    linear-gradient(-45deg, #fff 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, #fff 75%),
    linear-gradient(-45deg, transparent 75%, #fff 75%);
  background-size: 60px 60px;
  background-position: 0 0, 0 30px, 30px -30px, -30px 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(232,180,0,0.08) 0%, transparent 60%),
              linear-gradient(135deg, rgba(13,13,13,0.6) 0%, rgba(13,13,13,0.95) 100%);
}

.hero-canvas {
  position: absolute;
  top: 0;
  right: 0;
  width: 70%;
  height: 100%;
  display: block;
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 900px) {
  .hero-canvas {
    width: 100%;
    opacity: 0.45;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding-top: 40px;
  padding-bottom: 80px;
  margin-left: 0;
  margin-right: auto;
  padding-left: clamp(24px, 5vw, 72px);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,180,0,0.12);
  border: 1px solid rgba(232,180,0,0.3);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.flag-icon-sm {
  width: 16px; height: 10px;
  display: inline-block;
  background-image:
    linear-gradient(45deg, var(--gold) 25%, transparent 25%),
    linear-gradient(-45deg, var(--gold) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, var(--gold) 75%),
    linear-gradient(-45deg, transparent 75%, var(--gold) 75%);
  background-size: 5px 5px;
  background-position: 0 0, 0 2.5px, 2.5px -2.5px, -2.5px 0;
  background-color: #333;
  border-radius: 1px;
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
  color: var(--white);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--gray);
  max-width: 480px;
  margin-bottom: 40px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 64px; }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  overflow: hidden;
  width: fit-content;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 32px;
}
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
}
.stat-num sup { font-size: 1rem; vertical-align: super; }
.stat-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 4px;
}
.stat-divider { width: 1px; background: rgba(232,180,0,0.12); align-self: stretch; }

.hero-scroll-hint {
  position: absolute;
  right: 60px;
  bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0.4;
}
.hero-scroll-hint span { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; writing-mode: vertical-rl; }
.scroll-line { width: 1px; height: 60px; background: linear-gradient(to bottom, var(--white), transparent); }


/* ══════════════════════════════════════
   MARQUEE
══════════════════════════════════════ */
.marquee-wrap {
  background: var(--gold);
  overflow: hidden;
  padding: 14px 0;
}
.marquee-track {
  display: flex;
  gap: 24px;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
}
.marquee-track .dot { color: var(--black); opacity: 0.4; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══════════════════════════════════════
   SERVICES
══════════════════════════════════════ */
.services { background: var(--dark); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.service-card {
  position: relative;
  background: var(--dark2);
  padding: 36px 28px;
  overflow: hidden;
  transition: all var(--transition);
  cursor: default;
}
.service-card::before {
  content: attr(data-num);
  position: absolute;
  top: 16px; right: 20px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: rgba(232,180,0,0.06);
  line-height: 1;
  transition: color var(--transition);
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover {
  background: var(--dark3);
  transform: translateY(-4px);
  z-index: 1;
}
.service-card:hover::after { transform: scaleX(1); }
.service-card:hover::before { color: rgba(232,180,0,0.08); }

.service-icon {
  width: 48px; height: 48px;
  color: var(--gold);
  margin-bottom: 20px;
}
.service-icon svg { width: 100%; height: 100%; }

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
}
.service-card p {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.6;
}
.service-badge {
  display: inline-block;
  margin-top: 12px;
  background: rgba(232,180,0,0.12);
  border: 1px solid rgba(232,180,0,0.3);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}

/* ══════════════════════════════════════
   ABOUT
══════════════════════════════════════ */
.about {
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.about-checker-side {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 6px;
  background-image:
    linear-gradient(45deg, var(--gold) 25%, transparent 25%),
    linear-gradient(-45deg, var(--gold) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, var(--gold) 75%),
    linear-gradient(-45deg, transparent 75%, var(--gold) 75%);
  background-size: 6px 6px;
  background-position: 0 0, 0 3px, 3px -3px, -3px 0;
  background-color: #111;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual { position: relative; }
.about-photo-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--dark2);
}
.frame-checker {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 8px;
  z-index: 2;
  background-image:
    linear-gradient(45deg, var(--gold) 25%, transparent 25%),
    linear-gradient(-45deg, var(--gold) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, var(--gold) 75%),
    linear-gradient(-45deg, transparent 75%, var(--gold) 75%);
  background-size: 8px 8px;
  background-position: 0 0, 0 4px, 4px -4px, -4px 0;
  background-color: #111;
}
.about-photo-placeholder {
  width: 100%; height: 100%;
  overflow: hidden;
}
.about-photo-placeholder img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.about-year-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--gold);
  color: var(--black);
  width: 100px; height: 100px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(232,180,0,0.35);
}
.year-num { font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; line-height: 1; }
.year-label { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }

.about-copy { padding-left: 20px; }
.about-lead {
  font-size: 1.15rem;
  color: var(--light);
  margin-bottom: 20px;
  line-height: 1.7;
}
.about-copy p {
  color: var(--gray);
  margin-bottom: 32px;
  line-height: 1.8;
}

.about-pillars {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}
.about-pillars li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.pillar-check {
  flex-shrink: 0;
  width: 20px; height: 20px;
  margin-top: 2px;
  background-image:
    linear-gradient(45deg, var(--gold) 25%, transparent 25%),
    linear-gradient(-45deg, var(--gold) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, var(--gold) 75%),
    linear-gradient(-45deg, transparent 75%, var(--gold) 75%);
  background-size: 5px 5px;
  background-position: 0 0, 0 2.5px, 2.5px -2.5px, -2.5px 0;
  background-color: #222;
  border-radius: 3px;
}
.about-pillars strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 2px;
}
.about-pillars span { font-size: 0.875rem; color: var(--gray); }

/* ══════════════════════════════════════
   REVIEWS
══════════════════════════════════════ */
.reviews { background: var(--dark); position: relative; overflow: hidden; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--dark2);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid rgba(232,180,0,0.08);
  position: relative;
  transition: all var(--transition);
}
.review-card:hover { border-color: rgba(232,180,0,0.25); transform: translateY(-4px); }

.review-featured {
  background: linear-gradient(135deg, rgba(232,180,0,0.08), rgba(232,180,0,0.02));
  border-color: rgba(232,180,0,0.2);
}
.review-featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: var(--radius) var(--radius) 0 0;
  background-image:
    linear-gradient(45deg, var(--gold) 25%, transparent 25%),
    linear-gradient(-45deg, var(--gold) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, var(--gold) 75%),
    linear-gradient(-45deg, transparent 75%, var(--gold) 75%);
  background-size: 6px 6px;
  background-position: 0 0, 0 3px, 3px -3px, -3px 0;
  background-color: #222;
}

.review-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.review-card blockquote {
  color: var(--light);
  font-size: 0.95rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}
.reviewer-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.reviewer strong { display: block; font-size: 0.9rem; color: var(--white); }
.reviewer span { font-size: 0.8rem; color: var(--gray); }

/* Google reviews extras */
.reviews-summary {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.google-logo { height: 24px; width: auto; filter: brightness(0.9); cursor: pointer; }
.reviews-summary-rating { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.summary-score { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; color: var(--gold); line-height: 1; }
.summary-stars { font-size: 1.1rem; letter-spacing: 2px; }
.summary-count { font-size: 0.85rem; color: var(--gray); }

.review-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
}

/* Skeleton loader */
.review-skeleton {
  min-height: 220px;
  background: linear-gradient(90deg, var(--dark2) 25%, var(--dark3) 50%, var(--dark2) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
  pointer-events: none;
}
@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ── Carousel ── */
.reviews-carousel-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}
.reviews-carousel-viewport {
  flex: 1;
  overflow: hidden;
}
.reviews-track {
  display: flex;
  gap: 0;
  will-change: transform;
  align-items: stretch;
}
.carousel-card {
  flex: 0 0 calc(100% / 3);
  padding: 0 12px;
  box-sizing: border-box;
  display: flex;
}
.carousel-card .review-card {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.carousel-card .review-card blockquote {
  flex: 1;
}
@media (max-width: 1023px) { .carousel-card { flex: 0 0 50%; } }
@media (max-width: 639px)  { .carousel-card { flex: 0 0 100%; } }

.carousel-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--dark2);
  border: 1px solid rgba(232,180,0,0.15);
  color: var(--white);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}
.carousel-btn:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }

/* On mobile: hide arrow buttons from the sides, show them below dots */
@media (max-width: 639px) {
  .reviews-carousel-wrap .carousel-btn { display: none; }
  .carousel-dots-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
  }
  .carousel-mobile-btns {
    display: flex;
    gap: 16px;
  }
  .carousel-mobile-btns .carousel-btn { display: flex; }
}
@media (min-width: 640px) {
  .carousel-dots-wrap { margin-top: 0; }
  .carousel-mobile-btns { display: none; }
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
@media (max-width: 639px) { .carousel-dots { margin-top: 0; } }
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--dark3);
  border: 1px solid rgba(232,180,0,0.2);
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}
.carousel-dot.active { background: var(--gold); border-color: var(--gold); width: 24px; border-radius: 4px; }

.reviews-cta {
  margin-top: 40px;
  text-align: center;
}
.reviews-cta .btn { gap: 8px; display: inline-flex; align-items: center; }

/* ══════════════════════════════════════
   CONTACT
══════════════════════════════════════ */
.contact { background: var(--black); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-lead {
  color: var(--gray);
  margin-bottom: 40px;
}

.info-blocks { display: flex; flex-direction: column; gap: 24px; margin-bottom: 40px; }
.info-block {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.info-icon {
  width: 44px; height: 44px;
  background: var(--dark2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.info-icon svg { width: 20px; height: 20px; }
.info-block > div { display: flex; flex-direction: column; }
.info-block strong { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray); margin-bottom: 4px; }
.info-block a, .info-block span { font-size: 0.95rem; color: var(--light); text-decoration: none; line-height: 1.6; }
.info-block a:hover { color: var(--gold); }
.info-block .closed { color: var(--gray); font-size: 0.85rem; }

.hours-bar {
  background: var(--dark2);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid rgba(232,180,0,0.08);
}
.day-cols {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.day {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px 4px;
  border-radius: 6px;
  background: rgba(232,180,0,0.04);
  position: relative;
}
.day.open { background: rgba(232,180,0,0.06); }
.day span:first-child {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gray);
}
.day span:nth-child(2) { font-size: 0.65rem; color: var(--light); text-align: center; }
.day.closed-day span { color: var(--gray); opacity: 0.5; }
.open-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #2ecc71;
  position: absolute;
  top: 6px; right: 6px;
}

/* CONTACT FORM */
.contact-form-wrap { position: relative; }
.contact-form {
  background: var(--dark2);
  border-radius: var(--radius);
  padding: 40px;
  border: 1px solid rgba(232,180,0,0.08);
  position: relative;
  overflow: hidden;
}
.form-checker-accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background-image:
    linear-gradient(45deg, var(--gold) 25%, transparent 25%),
    linear-gradient(-45deg, var(--gold) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, var(--gold) 75%),
    linear-gradient(-45deg, transparent 75%, var(--gold) 75%);
  background-size: 10px 10px;
  background-position: 0 0, 0 5px, 5px -5px, -5px 0;
  background-color: #111;
}
.contact-form h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  margin-bottom: 28px;
  margin-top: 8px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.05em; color: var(--gray); text-transform: uppercase; }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark3);
  border: 1px solid rgba(232,180,0,0.12);
  border-radius: 6px;
  padding: 12px 16px;
  color: var(--white);
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
}
.form-group select option { background: var(--dark3); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(232,180,0,0.35); }
.form-group textarea { resize: vertical; min-height: 100px; }

.form-success {
  display: none;
  position: absolute;
  inset: 0;
  background: var(--dark2);
  border-radius: var(--radius);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  padding: 40px;
}
.form-success.show { display: flex; }
.form-success svg { color: #2ecc71; }
.form-success p { font-size: 1rem; color: var(--light); }
.success-checker {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background-image:
    linear-gradient(45deg, #2ecc71 25%, transparent 25%),
    linear-gradient(-45deg, #2ecc71 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, #2ecc71 75%),
    linear-gradient(-45deg, transparent 75%, #2ecc71 75%);
  background-size: 10px 10px;
  background-position: 0 0, 0 5px, 5px -5px, -5px 0;
  background-color: #111;
}

/* ══════════════════════════════════════
   MAP
══════════════════════════════════════ */
.map-section { line-height: 0; }
.map-section iframe { display: block; filter: grayscale(1) invert(0.9) contrast(0.85); }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer {
  background: var(--dark);
  padding-top: 80px;
  position: relative;
}
.footer-checker-top {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background-image:
    linear-gradient(45deg, var(--gold) 25%, transparent 25%),
    linear-gradient(-45deg, var(--gold) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, var(--gold) 75%),
    linear-gradient(-45deg, transparent 75%, var(--gold) 75%);
  background-size: 12px 12px;
  background-position: 0 0, 0 6px, 6px -6px, -6px 0;
  background-color: #111;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
}
.footer-brand .logo { margin-bottom: 20px; }
.footer-brand p { font-size: 0.9rem; color: var(--gray); line-height: 1.7; max-width: 280px; }

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 0.9rem;
  color: var(--light);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--gold); }

.footer-col address { font-style: normal; font-size: 0.9rem; color: var(--light); line-height: 1.8; }
.footer-col address a { color: var(--gold); text-decoration: none; }
.footer-col address a:hover { text-decoration: underline; }
.footer-hours { display: flex; flex-direction: column; margin-top: 16px; }
.footer-hours span { font-size: 0.85rem; color: var(--gray); }

.footer-bottom {
  border-top: 1px solid rgba(232,180,0,0.08);
  padding: 24px 0;
}
.footer-bottom p { font-size: 0.8rem; color: var(--gray); text-align: center; }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-copy { padding-left: 0; }
  .about-visual { max-width: 480px; }
  .contact-grid { grid-template-columns: 1fr; gap: 60px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: flex; }
  .hero-stats { flex-direction: column; width: 100%; }
  .stat { padding: 16px; flex-direction: row; justify-content: space-between; width: 100%; }
  .stat-divider { width: 100%; height: 1px; }
  .stat-label { font-size: 0.8rem; }
  .hero-scroll-hint { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .day-cols { grid-template-columns: repeat(4, 1fr); }
  .day:last-child { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-year-badge { right: 0; bottom: 0; width: 80px; height: 80px; }
  .year-num { font-size: 1.3rem; }
  .contact-form { padding: 28px 20px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .stat { flex-direction: column; }
  .stat-divider { width: 100%; height: 1px; }
  .day-cols { grid-template-columns: repeat(3, 1fr); }
}
