/* =============================================
   A&J COLLISION — Trail, BC
   Red · Black · White, in tonal ranges
   ============================================= */

/* ===== VARIABLES ===== */
:root {
  --black-950: #0c0c0d;
  --black-800: #1a1a1c;
  --black-700: #242426;
  --red-700:   #a30d16;
  --red-600:   #e11d2a;
  --red-400:   #ff5a5f;
  --steel-300: #c7cbd1;
  --steel-600: #6b7078;
  --white:     #f7f7f8;
  --line:      #2c2c2f;

  --font-head: 'Barlow Condensed', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --radius-card: 18px;
  --radius-btn:  10px;
  --max-w: 1160px;
  --section-pad: clamp(64px, 8vw, 112px);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--black-950);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; background: none; border: none; font: inherit; }
ul { list-style: none; }
address { font-style: normal; }

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

/* ===== ANIMATIONS ===== */
@keyframes blobFloat1 {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-70px, 60px) scale(1.08); }
}
@keyframes blobFloat2 {
  0%   { transform: translate(0, 0) scale(1.05); }
  100% { transform: translate(60px, -50px) scale(1); }
}
@keyframes blobFloat3 {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, 70px) scale(1.12); }
}
@keyframes blobFloat4 {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-30px, 40px) scale(1.05); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes ruleDraw {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

/* ===== UTILITIES ===== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
}
.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red-400);
  margin-bottom: 14px;
}
.rule {
  width: 56px;
  height: 2px;
  background: linear-gradient(90deg, var(--red-400), var(--red-700));
  border-radius: 2px;
  margin-bottom: 16px;
  transform-origin: left;
}
.rule.visible { animation: ruleDraw 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards; }
.section-header { text-align: center; margin-bottom: clamp(40px, 6vw, 64px); }
.section-header .rule { margin: 0 auto 16px; }
.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--red-600) 30%, var(--steel-300) 70%, transparent 100%);
  opacity: 0.18;
}

/* Section backgrounds — subtle two-stop black gradients, alternating direction for rhythm */
section { padding: var(--section-pad) 0; }
section:not(.section-alt) { background: linear-gradient(180deg, var(--black-800) 0%, var(--black-950) 100%); }
section.section-alt { background: linear-gradient(180deg, var(--black-950) 0%, #111113 100%); }
#trust { padding: 24px 0; }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.delay-1 { transition-delay: 0.12s; }
.reveal.delay-2 { transition-delay: 0.24s; }
.reveal.delay-3 { transition-delay: 0.36s; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 { font-family: var(--font-head); line-height: 1.05; font-weight: 800; text-transform: uppercase; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.8rem, 7vw, 5.6rem); color: var(--white); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); color: var(--white); margin-bottom: 12px; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); color: var(--white); margin-bottom: 10px; }
h4 { font-family: var(--font-body); font-size: 13px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--steel-300); margin-bottom: 18px; }
p { color: rgba(247, 247, 248, 0.68); line-height: 1.7; }
.section-sub { color: rgba(247, 247, 248, 0.68); max-width: 540px; margin: 0 auto; font-size: 16px; }
.accent { color: var(--red-400); }

/* Focus styles */
:focus-visible {
  outline: 2px solid var(--red-400);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 14px 28px;
  border-radius: var(--radius-btn);
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* Deliberately kept to the red-600 -> red-700 range (not red-400) so white
   label text clears WCAG AA contrast across the whole gradient surface. */
.btn-primary {
  background: linear-gradient(135deg, var(--red-600) 0%, var(--red-700) 100%);
  color: var(--white);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
  box-shadow: 0 4px 20px rgba(225, 29, 42, 0.35);
}
.btn-primary:hover { box-shadow: 0 8px 32px rgba(225, 29, 42, 0.5); }

.btn-secondary {
  background: rgba(199, 203, 209, 0.08);
  color: var(--steel-300);
  border: 1px solid rgba(199, 203, 209, 0.28);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn-secondary:hover {
  background: rgba(199, 203, 209, 0.15);
  border-color: rgba(199, 203, 209, 0.5);
  box-shadow: 0 4px 16px rgba(199, 203, 209, 0.12);
}
.btn-outline {
  background: transparent;
  color: var(--steel-300);
  border: 1px solid var(--line);
  font-size: 0.95rem;
}
.btn-outline:hover { border-color: var(--red-400); color: var(--red-400); }
.btn-full { width: 100%; margin-top: 28px; }

/* ===== NAV ===== */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
  background: transparent;
}
#nav.scrolled {
  background: rgba(12, 12, 13, 0.92);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  box-shadow: 0 1px 0 var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 68px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
}
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo-img { height: 40px; width: auto; }
.logo-fallback {
  display: none;
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--white);
}
.logo-fallback .logo-fallback-accent { color: var(--red-500, var(--red-600)); }
.nav-logo.logo-missing .logo-img { display: none; }
.nav-logo.logo-missing .logo-fallback { display: inline-block; }

.nav-links {
  display: none;
  align-items: center;
  gap: 4px;
  margin: 0;
  margin-left: auto;
}
.nav-links a {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--steel-300);
  border-radius: 8px;
  transition: color 0.18s ease, background 0.18s ease;
}
.nav-links a:hover { color: var(--white); background: rgba(255, 255, 255, 0.06); }

.nav-call {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 44px;
  background: linear-gradient(135deg, var(--red-600), var(--red-700));
  color: var(--white);
  padding: 9px 16px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-head);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  flex-shrink: 0;
  transition: box-shadow 0.18s ease, transform 0.18s ease;
  margin-left: auto;
}
.nav-call:hover { box-shadow: 0 4px 16px rgba(225, 29, 42, 0.4); transform: translateY(-1px); }
.nav-call svg { width: 16px; height: 16px; flex-shrink: 0; }
.nav-call-text { display: none; }

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 5px;
  border-radius: 6px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== MOBILE MENU ===== */
#mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--black-950);
  display: flex;
  flex-direction: column;
  padding: 80px 32px 40px;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
#mobile-menu:not([hidden]) { transform: translateX(0); }
#mobile-menu[hidden] { display: flex; }
.mobile-close {
  position: absolute;
  top: 16px;
  right: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--steel-300);
  border-radius: 8px;
  transition: color 0.18s;
}
.mobile-close:hover { color: var(--white); }
.mobile-close svg { width: 22px; height: 22px; }
#mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
#mobile-menu a {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--white);
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  transition: color 0.18s ease;
}
#mobile-menu a:hover { color: var(--red-400); }
.mobile-call {
  display: flex !important;
  align-items: center;
  gap: 10px;
  color: var(--red-400) !important;
  border-bottom: none !important;
  margin-top: 16px;
}
.mobile-call svg { width: 22px; height: 22px; }
.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.mobile-overlay[hidden] { display: none; }

/* ===== FLOATING MOBILE CALL BUTTON ===== */
.mobile-fab {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 120;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--red-600), var(--red-700));
  color: var(--white);
  box-shadow: 0 6px 24px rgba(225, 29, 42, 0.45);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.mobile-fab:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(225, 29, 42, 0.55); }
.mobile-fab svg { width: 24px; height: 24px; }

/* ===== HERO ===== */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(155deg, #241416 0%, #170d0e 45%, #0c0c0d 75%, #050505 100%);
  padding: 100px 0 80px;
}

/* Ambient blobs — only transform is animated, filter is static */
.hero-blobs {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.blob {
  position: absolute;
  border-radius: 50%;
  will-change: transform;
}
.blob-1 {
  width: clamp(300px, 50vw, 560px);
  height: clamp(300px, 50vw, 560px);
  background: radial-gradient(circle, rgba(225, 29, 42, 0.44) 0%, transparent 68%);
  filter: blur(80px);
  top: -100px;
  right: 5%;
  animation: blobFloat1 30s ease-in-out infinite alternate;
}
.blob-2 {
  width: clamp(240px, 40vw, 440px);
  height: clamp(240px, 40vw, 440px);
  background: radial-gradient(circle, rgba(163, 13, 22, 0.46) 0%, transparent 68%);
  filter: blur(90px);
  bottom: 5%;
  left: 10%;
  animation: blobFloat2 32s ease-in-out infinite alternate;
}
.blob-3 {
  width: clamp(200px, 35vw, 380px);
  height: clamp(200px, 35vw, 380px);
  background: radial-gradient(circle, rgba(5, 5, 6, 0.85) 0%, transparent 70%);
  filter: blur(70px);
  top: 30%;
  left: -60px;
  animation: blobFloat3 26s ease-in-out infinite alternate;
}
.blob-4 {
  width: clamp(220px, 38vw, 420px);
  height: clamp(220px, 38vw, 420px);
  background: radial-gradient(circle, rgba(247, 247, 248, 0.24) 0%, transparent 70%);
  filter: blur(85px);
  top: 8%;
  right: 28%;
  animation: blobFloat4 28s ease-in-out infinite alternate;
}
.hero-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 240px;
  background: linear-gradient(to top, var(--black-950), transparent);
  z-index: 1;
  pointer-events: none;
}
.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* Hero text sits directly on the color wash — no card/box, just a soft
   dark bloom behind the type for legibility (painted first, so it sits
   behind the text via normal DOM order, no z-index needed). */
.hero-content {
  position: relative;
  max-width: 660px;
  animation: fadeUp 0.9s ease 0.1s both;
}
.hero-content::before {
  content: '';
  position: absolute;
  inset: -48px -64px;
  background: radial-gradient(ellipse at 32% 42%, rgba(5, 5, 5, 0.6) 0%, transparent 70%);
  filter: blur(30px);
  pointer-events: none;
}

.hero-content .eyebrow { margin-bottom: 18px; text-shadow: 0 1px 12px rgba(0, 0, 0, 0.5); }
.hero-content h1 { margin-bottom: 20px; text-shadow: 0 2px 28px rgba(0, 0, 0, 0.55); }
.hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(247, 247, 248, 0.78);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.5);
}
.cta-pair {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ===== TRUST BAR ===== */
#trust {
  background: linear-gradient(180deg, var(--black-950) 0%, #111113 100%) !important;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px 28px;
  background: rgba(225, 29, 42, 0.05);
  border: 1px solid rgba(225, 29, 42, 0.12);
  border-radius: 14px;
  padding: 20px 32px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.trust-rating { display: flex; align-items: center; gap: 10px; }
.trust-stars {
  display: flex;
  gap: 2px;
  color: var(--red-400);
}
.trust-stars svg { width: 18px; height: 18px; }
.trust-score {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
}
.trust-divider {
  width: 1px;
  height: 28px;
  background: var(--line);
}
.trust-reviews {
  font-size: 14px;
  font-weight: 600;
  color: var(--steel-300);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: transparent;
  transition: color 0.18s, text-decoration-color 0.18s;
}
.trust-reviews:hover { color: var(--red-400); text-decoration-color: var(--red-400); }
.trust-tagline {
  font-size: 14px;
  font-weight: 500;
  color: rgba(247, 247, 248, 0.6);
}

/* ===== SERVICE CARDS ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.card {
  background: linear-gradient(145deg, var(--black-700) 0%, #17171a 100%);
  border-radius: var(--radius-card);
  border: 1px solid var(--line);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}
.card:hover { transform: translateY(-4px); }
.card.red-tint:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(225, 29, 42, 0.2);
  border-color: rgba(225, 29, 42, 0.25);
}
.card.steel-tint:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(199, 203, 209, 0.18);
  border-color: rgba(199, 203, 209, 0.22);
}
.card-badge {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.badge-red {
  background: rgba(225, 29, 42, 0.14);
  color: var(--red-400);
  border: 1px solid rgba(225, 29, 42, 0.22);
}
.badge-steel {
  background: rgba(199, 203, 209, 0.12);
  color: var(--steel-300);
  border: 1px solid rgba(199, 203, 209, 0.2);
}
.card-badge svg { width: 26px; height: 26px; }
.card-body { display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card-body p { font-size: 15px; flex: 1; }
.status-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  align-self: flex-start;
  margin-top: 8px;
}
.status-red   { background: rgba(225, 29, 42, 0.14); color: var(--red-400); border: 1px solid rgba(225, 29, 42, 0.24); }
.status-steel { background: rgba(199, 203, 209, 0.10); color: var(--steel-300); border: 1px solid rgba(199, 203, 209, 0.22); }

/* ===== FEATURES (WHY A&J) ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.feature-card {
  position: relative;
  background: linear-gradient(145deg, var(--black-700) 0%, #17171a 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 36px 28px 28px;
  overflow: hidden;
  transition: transform 0.24s ease, border-color 0.24s ease;
}
.feature-card:hover { transform: translateY(-3px); }
.feature-card.red-tint:hover   { border-color: rgba(225, 29, 42, 0.22); }
.feature-card.steel-tint:hover { border-color: rgba(199, 203, 209, 0.2); }
.feature-num {
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: var(--font-head);
  font-size: 5rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(247, 247, 248, 0.05);
  user-select: none;
}
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.feature-card.red-tint .feature-icon   { background: rgba(225, 29, 42, 0.14); color: var(--red-400); }
.feature-card.steel-tint .feature-icon { background: rgba(199, 203, 209, 0.12); color: var(--steel-300); }
.feature-icon svg { width: 24px; height: 24px; }
.feature-card p { font-size: 15px; }

/* ===== TESTIMONIAL ===== */
.testimonial-wrap {
  position: relative;
  max-width: 760px;
  margin: 0 auto 32px;
}
.testimonial-glow {
  position: absolute;
  inset: -20px;
  background:
    radial-gradient(ellipse at 25% 60%, rgba(225, 29, 42, 0.10) 0%, transparent 60%),
    radial-gradient(ellipse at 75% 40%, rgba(0, 0, 0, 0.4) 0%, transparent 60%);
  border-radius: 30px;
  pointer-events: none;
}
.testimonial {
  position: relative;
  background: linear-gradient(145deg, var(--black-700) 0%, #17171a 100%);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(32px, 5vw, 52px);
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  color: var(--red-400);
  margin-bottom: 20px;
}
.testimonial-stars svg { width: 20px; height: 20px; }
.quote-mark {
  display: block;
  font-family: Georgia, serif;
  font-size: clamp(5rem, 10vw, 8rem);
  line-height: 0.6;
  color: var(--red-600);
  opacity: 0.5;
  margin-bottom: 12px;
}
.quote-text {
  font-size: clamp(17px, 2.5vw, 21px);
  line-height: 1.65;
  color: var(--white);
  font-style: italic;
  margin-bottom: 28px;
}
.quote-attribution {
  display: flex;
  align-items: center;
  gap: 12px;
}
.quote-author {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
}
.quote-source {
  font-size: 13px;
  color: rgba(247, 247, 248, 0.6);
}
.review-cta { text-align: center; margin-top: 32px; }

/* Secondary review strip — short verbatim excerpts alongside the main pull-quote */
.mini-reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  max-width: 900px;
  margin: 40px auto 0;
}
.mini-review {
  background: linear-gradient(145deg, var(--black-700) 0%, #17171a 100%);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mini-review-stars { display: flex; gap: 2px; color: var(--red-400); }
.mini-review-stars svg { width: 14px; height: 14px; }
.mini-review p { font-size: 14px; font-style: italic; color: rgba(247, 247, 248, 0.72); }
.mini-review-author {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--steel-300);
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 220px 220px;
  gap: 14px;
}
.gallery-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(145deg, var(--black-700) 0%, #111113 100%);
  border: 1px solid var(--line);
}
.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(225, 29, 42, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 65%, rgba(0, 0, 0, 0.5) 0%, transparent 55%);
  z-index: 1;
}
.gallery-item-wide { grid-column: span 2; }
.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.gallery-img.loaded { opacity: 1; }
.gallery-placeholder {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(247, 247, 248, 0.5);
  font-size: 13px;
  opacity: 0.55;
  text-align: center;
  padding: 20px;
}
.gallery-placeholder svg { width: 28px; height: 28px; opacity: 0.7; }
.gallery-placeholder.hidden { display: none; }

/* ===== LOCATION ===== */
.location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.map-wrap {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  height: 340px;
  background: var(--black-700);
}
.map-wrap iframe { display: block; width: 100%; height: 100%; }
.info-panel {
  background: linear-gradient(145deg, var(--black-700) 0%, #17171a 100%);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(24px, 4vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.info-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.info-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(225, 29, 42, 0.1);
  border: 1px solid rgba(225, 29, 42, 0.18);
  color: var(--red-400);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-icon svg { width: 18px; height: 18px; }
.info-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--steel-300);
  margin-bottom: 6px;
}
.info-value { color: var(--white); font-size: 15px; line-height: 1.6; }
.info-link { color: var(--red-400); text-decoration: underline; text-underline-offset: 2px; }
.info-link:hover { color: var(--white); }
.hours-table { width: 100%; border-collapse: collapse; margin-top: 4px; }
.hours-table td { padding: 5px 0; font-size: 14px; color: rgba(247, 247, 248, 0.85); }
.hours-table td:first-child { color: var(--steel-300); padding-right: 16px; }
.hours-table td:last-child { font-weight: 600; text-align: right; }
.hours-table tr { border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
.hours-table tr:last-child { border-bottom: none; }
.hours-note { font-size: 12px; color: rgba(247, 247, 248, 0.5); margin-top: 10px; }

/* ===== FOOTER ===== */
footer {
  background: linear-gradient(180deg, #0c0c0d 0%, #050505 100%);
  padding: 56px 0 32px;
}
.footer-top-rule {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--red-600) 0%, var(--black-950) 90%);
  margin-bottom: 56px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-logo { display: inline-flex; margin-bottom: 16px; }
.footer-logo .logo-img { height: 44px; width: auto; }
.footer-tagline { font-size: 14px; line-height: 1.65; max-width: 280px; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 12px; }
.social-link {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--steel-300);
  transition: color 0.18s, border-color 0.18s, background 0.18s;
}
.social-link svg { width: 18px; height: 18px; }
.social-link:hover { color: var(--red-400); border-color: rgba(225, 29, 42, 0.3); background: rgba(225, 29, 42, 0.08); }
.footer-nav ul { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a, .footer-contact a {
  font-size: 14px;
  color: rgba(247, 247, 248, 0.65);
  transition: color 0.18s;
}
.footer-nav a:hover, .footer-contact a:hover { color: var(--white); }
.footer-contact p { font-size: 14px; margin-bottom: 8px; color: rgba(247, 247, 248, 0.65); }
.footer-contact p:last-child { margin-bottom: 0; }
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--line);
  text-align: center;
}
.footer-bottom p { font-size: 13px; color: rgba(255, 255, 255, 0.25); }

/* ===== RESPONSIVE ===== */
@media (min-width: 560px) {
  .nav-call-text { display: inline; }
}

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .hamburger { display: none; }
  .nav-call { margin-left: 0; }
  .mobile-fab { display: none; }

  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(3, 1fr); }

  .gallery-grid { grid-template-rows: 240px 240px; }

  .location-grid { grid-template-columns: 1fr 1fr; }
  .map-wrap { height: 100%; min-height: 400px; }

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

@media (min-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(4, 1fr); }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 260px 260px;
  }
}

@media (min-width: 1440px) {
  h1 { font-size: 6rem; }
}

/* Gallery mobile fallback */
@media (max-width: 767px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 180px);
  }
  .gallery-item-wide { grid-column: span 2; }
}
@media (max-width: 479px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 200px);
  }
  .gallery-item-wide { grid-column: span 1; }
  .cta-pair { flex-direction: column; }
  .cta-pair .btn { width: 100%; }
  .trust-divider { display: none; }
}
