/* ═══════════════════════════════════════════════════════
   GARAGE F-C SAINT-FRANÇOIS — components.css
   All UI Components
   ═══════════════════════════════════════════════════════ */

/* ──────────────────────────────────────
   NAVIGATION
────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--t-slow), box-shadow var(--t-slow);
}

#navbar.scrolled {
  background: rgba(8,8,8,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--c-border);
}

#navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo */
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo-main {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-white);
}
.nav-logo-main span { color: var(--c-red); }
.nav-logo-sub {
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--c-grey);
  margin-top: 3px;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-link {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--c-silver);
  position: relative;
  padding-bottom: 2px;
  transition: color var(--t-base);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--c-red);
  transition: width var(--t-base);
}
.nav-link:hover { color: var(--c-white); }
.nav-link:hover::after { width: 100%; }
.nav-link.active { color: var(--c-white); }
.nav-link.active::after { width: 100%; }

/* Nav CTA */
.nav-cta {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #fff;
  background: var(--c-red);
  padding: 11px 26px;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background var(--t-base);
}
.nav-cta:hover { background: var(--c-red-light); }
.nav-cta svg { width: 14px; height: 14px; }

/* Phone in nav */
.nav-phone {
  font-size: .75rem;
  font-weight: 700;
  color: var(--c-gold);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--t-base);
}
.nav-phone:hover { color: var(--c-gold-light); }
.nav-phone svg { width: 14px; height: 14px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--c-white);
  transition: var(--t-base);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  top: var(--nav-h);
  background: rgba(8,8,8,.98);
  backdrop-filter: blur(20px);
  z-index: 499;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-slow);
}
.mobile-menu.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}
.mobile-menu .nav-link {
  font-size: 1.6rem;
  letter-spacing: .15em;
  font-family: var(--f-display);
  font-weight: 600;
}
.mobile-menu .nav-cta {
  font-size: .9rem;
  padding: 16px 40px;
  margin-top: 16px;
}

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

/* ──────────────────────────────────────
   HERO
────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--c-black);
}

/* Noise texture overlay */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: .03;
  pointer-events: none;
  z-index: 1;
}

/* Red glow */
#hero::after {
  content: '';
  position: absolute;
  left: -200px; top: 20%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(208,26,42,.18) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(42,42,42,.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(42,42,42,.15) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
  z-index: 0;
}

.hero-stripe {
  position: absolute;
  top: 0; right: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(208,26,42,.04) 100%);
  border-left: 1px solid rgba(208,26,42,.08);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: var(--nav-h);
  width: 100%;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  min-height: calc(100vh - var(--nav-h));
  padding: 80px 0;
}

.hero-text {}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 28px;
  opacity: 0;
  animation: heroFadeUp .6s .3s ease forwards;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 36px; height: 1px;
  background: var(--c-gold);
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(3.5rem, 8vw, 7.5rem);
  line-height: .92;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--c-white);
  opacity: 0;
  animation: heroFadeUp .7s .45s ease forwards;
}
.hero-title .line-red { color: var(--c-red); display: block; }
.hero-title .line-outline {
  -webkit-text-stroke: 2px rgba(240,237,232,.2);
  color: transparent;
  display: block;
}

.hero-divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, var(--c-red), transparent);
  margin: 32px 0;
  opacity: 0;
  animation: heroFadeUp .6s .6s ease forwards;
}

.hero-desc {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--c-grey-l);
  line-height: 1.8;
  max-width: 520px;
  opacity: 0;
  animation: heroFadeUp .6s .7s ease forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 44px;
  opacity: 0;
  animation: heroFadeUp .6s .85s ease forwards;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 48px;
  opacity: 0;
  animation: heroFadeUp .6s 1s ease forwards;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-grey);
}
.trust-item svg {
  width: 16px; height: 16px;
  color: var(--c-gold);
  flex-shrink: 0;
}
.trust-sep {
  width: 1px; height: 24px;
  background: var(--c-border);
}

/* Hero stats column */
.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  animation: heroFadeUp .6s 1.1s ease forwards;
}

.hero-stat {
  background: var(--c-dark-2);
  border: 1px solid var(--c-border);
  border-left: 3px solid var(--c-red);
  padding: 24px 32px;
  text-align: center;
  min-width: 180px;
  position: relative;
  overflow: hidden;
}
.hero-stat::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(208,26,42,.05), transparent);
}
.hero-stat-num {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 3rem;
  color: var(--c-red);
  line-height: 1;
  display: block;
}
.hero-stat-label {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--c-grey);
  margin-top: 6px;
  display: block;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: heroFadeUp .6s 1.3s ease forwards;
}
.hero-scroll span {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--c-grey-4);
}
.scroll-mouse {
  width: 22px; height: 34px;
  border: 2px solid var(--c-border-2);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 5px;
}
.scroll-mouse::before {
  content: '';
  width: 3px; height: 6px;
  background: var(--c-red);
  border-radius: 2px;
  animation: scrollBob 1.6s ease-in-out infinite;
}
@keyframes scrollBob {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(8px); opacity: .4; }
}

/* Hero responsive */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-stats { flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .hero-stat { min-width: 130px; padding: 20px 20px; }
  .hero-stat-num { font-size: 2.4rem; }
  .hero-scroll { display: none; }
}

/* ──────────────────────────────────────
   TICKER BAND
────────────────────────────────────── */
.ticker-band {
  background: var(--c-red);
  overflow: hidden;
  padding: 14px 0;
  position: relative;
  z-index: 2;
}
.ticker-track {
  display: flex;
  gap: 0;
  animation: ticker 25s linear infinite;
  white-space: nowrap;
  will-change: transform;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0 28px;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: .95rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  flex-shrink: 0;
}
.ticker-dot {
  width: 5px; height: 5px;
  background: rgba(255,255,255,.4);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ──────────────────────────────────────
   SERVICE CARDS
────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: var(--sp-2xl);
}

.service-card {
  background: var(--c-dark-2);
  border: 1px solid var(--c-border);
  padding: 44px 36px 40px;
  position: relative;
  overflow: hidden;
  transition: background var(--t-slow), border-color var(--t-slow);
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--c-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-slow);
}
.service-card:hover { background: var(--c-dark-3); border-color: var(--c-red); }
.service-card:hover::before { transform: scaleX(1); }

.service-card-num {
  position: absolute;
  top: 20px; right: 24px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 4rem;
  color: rgba(255,255,255,.03);
  line-height: 1;
  transition: color var(--t-slow);
}
.service-card:hover .service-card-num { color: rgba(208,26,42,.08); }

.service-icon-wrap {
  width: 52px; height: 52px;
  background: rgba(208,26,42,.1);
  border: 1px solid rgba(208,26,42,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
  transition: background var(--t-base);
}
.service-card:hover .service-icon-wrap { background: rgba(208,26,42,.2); }
.service-icon-wrap svg {
  width: 24px; height: 24px;
  color: var(--c-red);
  stroke-width: 1.5;
}

.service-name {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--c-white);
  margin-bottom: 12px;
  transition: color var(--t-base);
}

.service-desc {
  font-size: .88rem;
  font-weight: 300;
  color: var(--c-grey);
  line-height: 1.7;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--c-red);
  margin-top: 24px;
  transition: gap var(--t-base);
}
.service-link svg { width: 14px; height: 14px; }
.service-card:hover .service-link { gap: 12px; }

@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 32px 24px; }
}

/* ──────────────────────────────────────
   WHY CHOOSE US
────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-visual {
  position: relative;
  height: 520px;
}

.why-main-box {
  position: absolute;
  top: 0; left: 0;
  right: 60px; bottom: 60px;
  background: var(--c-dark-2);
  border: 1px solid var(--c-border);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-main-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8,8,8,.08) 0%, rgba(8,8,8,.28) 100%),
    linear-gradient(135deg, rgba(208,26,42,.1) 0%, transparent 60%);
  z-index: 1;
}

.why-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.why-accent-box {
  position: absolute;
  bottom: 0; right: 0;
  width: 180px; height: 180px;
  background: var(--c-red);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  clip-path: polygon(20px 0%, 100% 0%, 100% calc(100% - 20px), calc(100% - 0px) 100%, 0px 100%, 0% 20px);
}
.why-accent-num {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 3.5rem;
  color: #fff;
  line-height: 1;
}
.why-accent-label {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  text-align: center;
  margin-top: 4px;
  padding: 0 12px;
}

.why-items {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 48px;
}
.why-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 20px;
  align-items: start;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--c-border);
}
.why-item:last-child { border-bottom: none; padding-bottom: 0; }

.why-item-num {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--c-red);
  opacity: .4;
  line-height: 1;
  margin-top: -4px;
}
.why-item-title {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--c-white);
  margin-bottom: 6px;
}
.why-item-desc {
  font-size: .88rem;
  font-weight: 300;
  color: var(--c-grey);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-visual { height: 300px; }
  .why-accent-box { width: 130px; height: 130px; }
  .why-accent-num { font-size: 2.5rem; }
}

/* ──────────────────────────────────────
   TESTIMONIALS / AVIS
────────────────────────────────────── */
.reviews-section {
  background: var(--c-dark-2);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: var(--sp-2xl);
}

.review-card {
  background: var(--c-dark);
  border: 1px solid var(--c-border);
  padding: 32px;
  position: relative;
}
.review-card::before {
  content: '"';
  position: absolute;
  top: 20px; left: 28px;
  font-family: var(--f-display);
  font-size: 6rem;
  color: var(--c-red);
  opacity: .1;
  line-height: 1;
  pointer-events: none;
}

.review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}
.review-stars svg {
  width: 16px; height: 16px;
  color: var(--c-gold);
  fill: currentColor;
}

.review-text {
  font-size: .9rem;
  font-weight: 300;
  color: var(--c-grey-l);
  line-height: 1.8;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--c-border);
}
.review-avatar {
  width: 40px; height: 40px;
  background: var(--c-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
}
.review-name {
  font-size: .82rem;
  font-weight: 700;
  color: var(--c-white);
  letter-spacing: .05em;
}
.review-vehicle {
  font-size: .72rem;
  color: var(--c-grey);
  margin-top: 2px;
}
.review-source {
  margin-left: auto;
  font-size: .65rem;
  color: var(--c-grey-4);
  letter-spacing: .1em;
}

@media (max-width: 900px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .review-card { padding: 24px; }
}

/* ──────────────────────────────────────
   CTA BAND
────────────────────────────────────── */
.cta-band {
  background: var(--c-red);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: 'RDV';
  position: absolute;
  right: -20px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 14rem;
  color: rgba(255,255,255,.06);
  line-height: 1;
  pointer-events: none;
}
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-band-title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.1;
  color: #fff;
  text-transform: uppercase;
}
.cta-band-sub {
  font-size: .95rem;
  font-weight: 300;
  color: rgba(255,255,255,.75);
  margin-top: 8px;
  max-width: 480px;
}
.cta-band-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.btn-white {
  background: #fff;
  color: var(--c-red);
  padding: 16px 36px;
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--t-base);
}
.btn-white:hover { background: rgba(255,255,255,.9); transform: translateX(4px); }
.btn-white svg { width: 16px; height: 16px; }

.btn-white-outline {
  background: transparent;
  color: rgba(255,255,255,.85);
  padding: 15px 34px;
  border: 1px solid rgba(255,255,255,.35);
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--t-base);
}
.btn-white-outline:hover { border-color: rgba(255,255,255,.7); color: #fff; }
.btn-white-outline svg { width: 16px; height: 16px; }

/* ──────────────────────────────────────
   CONTACT SECTION
────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  margin-top: var(--sp-2xl);
}

.contact-info-blocks {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.info-block-label {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--c-red);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.info-block-label svg { width: 12px; height: 12px; }

.info-block-value {
  font-size: 1rem;
  font-weight: 300;
  color: var(--c-silver);
  line-height: 1.7;
}
.info-block-value a { transition: color var(--t-base); }
.info-block-value a:hover { color: var(--c-red-light); }
.info-block-value strong {
  font-weight: 700;
  color: var(--c-white);
}

/* Hours table */
.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 4px;
}
.hours-table tr {
  border-bottom: 1px solid var(--c-border);
}
.hours-table tr:last-child { border-bottom: none; }
.hours-table td {
  padding: 8px 0;
  font-size: .88rem;
  font-weight: 300;
  color: var(--c-grey-l);
}
.hours-table td:first-child {
  font-weight: 400;
  color: var(--c-grey);
  width: 50%;
}
.hours-table tr.today td {
  color: var(--c-white);
  font-weight: 700;
}
.hours-table .closed { color: var(--c-grey-4) !important; }

/* Form */
.contact-form {
  background: var(--c-dark-2);
  border: 1px solid var(--c-border);
  padding: 48px 44px;
}

.form-title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1.6rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--c-white);
  margin-bottom: 8px;
}
.form-subtitle {
  font-size: .85rem;
  font-weight: 300;
  color: var(--c-grey);
  margin-bottom: 36px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-full { grid-column: 1 / -1; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-label {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--c-grey);
}
.form-label span { color: var(--c-red); }

.form-control {
  background: var(--c-dark);
  border: 1px solid var(--c-border);
  color: var(--c-white);
  font-size: .9rem;
  font-weight: 300;
  padding: 14px 18px;
  outline: none;
  transition: border-color var(--t-base), box-shadow var(--t-base);
  -webkit-appearance: none;
}
.form-control::placeholder { color: var(--c-grey-4); }
.form-control:focus {
  border-color: var(--c-red);
  box-shadow: 0 0 0 3px rgba(208,26,42,.08);
}
.form-control.error { border-color: #e74c3c; }
.form-control[aria-invalid="true"] { border-color: #e74c3c; }

textarea.form-control { resize: vertical; min-height: 110px; }
select.form-control { cursor: pointer; }

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 8px;
}
.form-privacy {
  font-size: .72rem;
  font-weight: 300;
  color: var(--c-grey-4);
  line-height: 1.5;
}

.form-success {
  display: none;
  text-align: center;
  padding: 32px;
}
.form-success svg {
  width: 48px; height: 48px;
  color: var(--c-gold);
  margin: 0 auto 16px;
}
.form-success-title {
  font-family: var(--f-display);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--c-white);
  margin-bottom: 8px;
}
.form-success-text { font-size: .9rem; color: var(--c-grey-l); }
.form-error {
  margin-top: 16px;
  font-size: .85rem;
  color: #ff8f8f;
}

@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .contact-form { padding: 32px 24px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-submit-row { flex-direction: column; align-items: flex-start; }
}

/* ──────────────────────────────────────
   MAP EMBED
────────────────────────────────────── */
.map-container {
  width: 100%;
  height: 400px;
  background: var(--c-dark-2);
  border: 1px solid var(--c-border);
  overflow: hidden;
  position: relative;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(1) invert(1) hue-rotate(180deg);
  opacity: .85;
}
.map-overlay {
  position: absolute;
  top: 20px; left: 20px;
  background: var(--c-dark);
  border: 1px solid var(--c-border);
  border-left: 3px solid var(--c-red);
  padding: 16px 20px;
  pointer-events: none;
}
.map-overlay-name {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--c-white);
}
.map-overlay-addr {
  font-size: .78rem;
  color: var(--c-grey);
  margin-top: 4px;
}

/* ──────────────────────────────────────
   FOOTER
────────────────────────────────────── */
#footer {
  background: #050505;
  border-top: 1px solid var(--c-border);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  padding: 72px 0 60px;
}

.footer-brand {}
.footer-logo-wrap {
  display: inline-flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.footer-logo-main {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-white);
}
.footer-logo-main span { color: var(--c-red); }
.footer-logo-sub {
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--c-grey-4);
  margin-top: 4px;
}
.footer-tagline {
  font-size: .88rem;
  font-weight: 300;
  color: var(--c-grey);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 280px;
}
.footer-contact-quick {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .85rem;
  font-weight: 400;
  color: var(--c-grey-l);
  transition: color var(--t-base);
}
.footer-contact-item:hover { color: var(--c-red-light); }
.footer-contact-item svg { width: 14px; height: 14px; color: var(--c-red); flex-shrink: 0; }

.footer-col-title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-white);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--c-border);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: .85rem;
  font-weight: 300;
  color: var(--c-grey);
  transition: color var(--t-base), padding-left var(--t-base);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a::before {
  content: '';
  display: block;
  width: 0; height: 1px;
  background: var(--c-red);
  transition: width var(--t-base);
  flex-shrink: 0;
}
.footer-links a:hover { color: var(--c-silver); }
.footer-links a:hover::before { width: 14px; }

.footer-hours {}
.footer-hours-row {
  display: flex;
  justify-content: space-between;
  font-size: .82rem;
  font-weight: 300;
  color: var(--c-grey);
  padding: 6px 0;
  border-bottom: 1px solid var(--c-border);
}
.footer-hours-row:last-child { border-bottom: none; }
.footer-hours-row .day { font-weight: 400; color: var(--c-grey-4); }
.footer-hours-row.today .day,
.footer-hours-row.today .time { color: var(--c-white); font-weight: 700; }

.footer-bottom {
  border-top: 1px solid var(--c-border);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: .72rem;
  color: var(--c-grey-4);
  letter-spacing: .06em;
}
.footer-legal-links {
  display: flex;
  gap: 24px;
}
.footer-legal-links a {
  font-size: .72rem;
  color: var(--c-grey-4);
  transition: color var(--t-base);
}
.footer-legal-links a:hover { color: var(--c-grey); }

/* Badge Google */
.footer-badge-google {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--c-dark-2);
  border: 1px solid var(--c-border);
  padding: 8px 14px;
  margin-top: 20px;
}
.footer-badge-google-stars { display: flex; gap: 2px; }
.footer-badge-google-stars svg { width: 12px; height: 12px; color: var(--c-gold); fill: currentColor; }
.footer-badge-google-text { font-size: .72rem; color: var(--c-grey); }
.footer-badge-google-text strong { color: var(--c-white); }

@media (max-width: 900px) {
  .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; padding: 48px 0 40px; }
}
@media (max-width: 600px) {
  .footer-main { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal-links { flex-wrap: wrap; justify-content: center; }
}

/* ──────────────────────────────────────
   PAGE HEADER (inner pages)
────────────────────────────────────── */
.page-header {
  padding: calc(var(--nav-h) + 60px) 0 64px;
  background: var(--c-dark-2);
  border-bottom: 1px solid var(--c-border);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(208,26,42,.06) 0%, transparent 60%);
}
.page-header .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--c-grey-4);
  margin-bottom: 20px;
}
.page-header .breadcrumb a { color: var(--c-grey); transition: color var(--t-base); }
.page-header .breadcrumb a:hover { color: var(--c-red); }
.page-header .breadcrumb svg { width: 10px; height: 10px; }

/* ──────────────────────────────────────
   FLOATING PHONE BUTTON (mobile)
────────────────────────────────────── */
.floating-call {
  position: fixed;
  bottom: 24px; right: 24px;
  background: var(--c-red);
  color: #fff;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 300;
  box-shadow: 0 4px 20px rgba(208,26,42,.5);
  transition: transform var(--t-base), background var(--t-base);
  animation: pulse 2.5s ease infinite;
}
.floating-call svg { width: 22px; height: 22px; }
.floating-call:hover { background: var(--c-red-light); transform: scale(1.08); }
@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(208,26,42,.5); }
  50% { box-shadow: 0 4px 36px rgba(208,26,42,.8), 0 0 0 8px rgba(208,26,42,.1); }
}
@media (max-width: 768px) {
  .floating-call { display: flex; }
  #back-to-top { bottom: 96px; }
}
