/* =========================================================
   FIX CAR NOW — FCN
   Premium dark editorial design system
   ========================================================= */

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --red: #D01E28;
  --red-dark: #A8161E;
  --red-light: #E63946;
  --black: #0A0A0A;
  --bg: #111111;
  --bg-alt: #0E0E0E;
  --card: #1A1A1A;
  --card-hover: #222222;
  --line: #2A2A2A;
  --text: #F5F5F5;
  --muted: #9A9A9A;
  --dim: #6A6A6A;

  --display: 'Bebas Neue', Impact, sans-serif;
  --body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1280px;
  --radius: 4px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

::selection {
  background: var(--red);
  color: var(--text);
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 120px 0;
  position: relative;
}

.section-sm {
  padding: 80px 0;
}

@media (max-width: 768px) {
  .section { padding: 80px 0; }
  .section-sm { padding: 60px 0; }
  .container { padding: 0 20px; }
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6,
.display {
  font-family: var(--display);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

h1 { font-size: clamp(2.5rem, 7vw, 5.5rem); }
h2 { font-size: clamp(2rem, 5vw, 3.75rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p { color: var(--muted); }
p.lead { font-size: 1.125rem; color: var(--text); max-width: 60ch; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--red);
}

.section-title {
  margin-bottom: 16px;
}
.section-title .accent {
  color: var(--red);
}

.section-intro {
  max-width: 60ch;
  margin-bottom: 60px;
  color: var(--muted);
  font-size: 1.0625rem;
}

/* Underline accent (red bar under headlines) */
.underline-accent {
  position: relative;
  display: inline-block;
  padding-bottom: 16px;
}
.underline-accent::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 6px;
  background: var(--red);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all 0.25s var(--ease);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--red);
  color: var(--text);
  border: 2px solid var(--red);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(208, 30, 40, 0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 2px solid rgba(245, 245, 245, 0.2);
}
.btn-ghost:hover {
  border-color: var(--text);
  background: rgba(245, 245, 245, 0.05);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 12px 24px;
  font-size: 0.8125rem;
}

.btn-arrow::after {
  content: '→';
  font-size: 1.1em;
  transition: transform 0.25s var(--ease);
}
.btn-arrow:hover::after { transform: translateX(4px); }

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.3s var(--ease);
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.96);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 0 24px;
  max-width: var(--container);
  margin: 0 auto;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-brand img {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  object-fit: cover;
}

.nav-brand .brand-text {
  font-family: var(--display);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: var(--text);
}
.nav-brand .brand-text .accent { color: var(--red); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--text);
  position: relative;
  padding: 6px 0;
}
.nav-links a:hover { color: var(--red); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--red);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text);
}
.nav-phone:hover { color: var(--red); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 980px) {
  .nav-phone { display: none; }
}

@media (max-width: 880px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(16px);
    padding: 40px 24px;
    gap: 24px;
    transform: translateY(-120%);
    transition: transform 0.4s var(--ease);
    border-bottom: 1px solid var(--line);
    align-items: flex-start;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { font-size: 1.25rem; }
  .nav-cta .btn { padding: 12px 20px; font-size: 0.75rem; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
  background: var(--black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
  filter: grayscale(20%) contrast(1.1);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.6) 0%, rgba(10,10,10,0.4) 40%, rgba(10,10,10,0.95) 100%),
    linear-gradient(90deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.2) 60%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(208, 30, 40, 0.12);
  border: 1px solid rgba(208, 30, 40, 0.35);
  color: var(--red-light);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-tag .dot {
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--red);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  font-size: clamp(3rem, 9vw, 7.5rem);
  max-width: 14ch;
  margin-bottom: 28px;
}
.hero h1 .accent {
  color: var(--red);
  position: relative;
  display: inline-block;
}
.hero h1 .accent::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0.1em;
  width: 100%;
  height: 8px;
  background: var(--red);
}

.hero-sub {
  font-size: 1.125rem;
  color: var(--text);
  max-width: 52ch;
  margin-bottom: 40px;
  opacity: 0.85;
}

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

.hero-meta {
  position: absolute;
  bottom: 60px;
  left: 24px;
  right: 24px;
  max-width: var(--container);
  margin: 0 auto;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  flex-wrap: wrap;
}
.hero-meta .meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-meta .meta-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-meta .meta-value {
  font-family: var(--display);
  font-size: 1.25rem;
  color: var(--text);
  letter-spacing: 0.04em;
}
.hero-meta .meta-value .accent { color: var(--red); }

@media (max-width: 768px) {
  .hero-meta { display: none; }
}

/* ---------- Trust bar ---------- */
.trust-bar {
  background: var(--black);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 32px 0;
}
.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.875rem;
  color: var(--text);
  font-weight: 500;
}
.trust-item .icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(208, 30, 40, 0.12);
  border: 1px solid rgba(208, 30, 40, 0.3);
  display: grid;
  place-items: center;
  font-size: 1.125rem;
  flex-shrink: 0;
}
@media (max-width: 880px) {
  .trust-bar-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 480px) {
  .trust-bar-grid { grid-template-columns: 1fr; }
}

/* ---------- Clip-path section divider ---------- */
.clip-top {
  clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 100%);
  margin-top: -60px;
  padding-top: 180px;
}
.clip-bottom {
  clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
  padding-bottom: 180px;
  margin-bottom: -60px;
}

/* ---------- Services grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 980px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  padding: 36px 32px;
  border-radius: var(--radius);
  transition: all 0.35s var(--ease);
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.service-card:hover {
  background: var(--card-hover);
  transform: translateY(-6px);
  border-color: rgba(208, 30, 40, 0.4);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.service-card:hover::before { transform: scaleX(1); }

.service-card .icon {
  font-size: 2rem;
  margin-bottom: 20px;
  display: inline-block;
}
.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--text);
}
.service-card p {
  font-size: 0.9375rem;
  color: var(--muted);
  margin-bottom: 20px;
}
.service-card .link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
}
.service-card .link::after {
  content: '→';
  transition: transform 0.25s var(--ease);
}
.service-card:hover .link::after { transform: translateX(6px); }

/* ---------- All services grid (services page) ---------- */
.svc-group {
  margin-bottom: 100px;
}
.svc-group-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.svc-group-head .meta {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.svc-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 980px) { .svc-list { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .svc-list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 400px) { .svc-list { grid-template-columns: 1fr; } }

.svc-item {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 22px 20px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: all 0.25s var(--ease);
  position: relative;
}
.svc-item:hover {
  background: var(--card-hover);
  border-color: rgba(208, 30, 40, 0.5);
  transform: translateX(4px);
}
.svc-item .icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

/* ---------- Stats ---------- */
/* ── PHOTO COLLAGE ── */
.photo-collage-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 4px;
}
.collage-item {
  background-size: cover;
  background-position: center;
  overflow: hidden;
  position: relative;
  transition: transform 0.5s ease;
}
.collage-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.25);
  transition: background 0.3s;
}
.collage-item:hover::after { background: rgba(208,30,40,0.15); }
.collage-item:hover { transform: scale(1.01); }
.collage-tall { grid-row: span 2; }
.collage-wide { grid-column: span 2; }
@media (max-width: 768px) {
  .photo-collage-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 180px 180px;
  }
  .collage-tall { grid-row: span 1; }
  .collage-wide { grid-column: span 2; }
}

.stats-section {
  background: var(--black);
  padding: 100px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
@media (max-width: 880px) { .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; } }

.stat {
  position: relative;
  padding-left: 24px;
  border-left: 4px solid var(--red);
}
.stat .num {
  font-family: var(--display);
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  line-height: 1;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.stat .num .accent { color: var(--red); }
.stat .label {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  max-width: 22ch;
  line-height: 1.4;
}

/* ---------- About snippet ---------- */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 880px) { .about-split { grid-template-columns: 1fr; gap: 50px; } }

.about-img-stack {
  position: relative;
  aspect-ratio: 4/5;
}
.about-img-stack img {
  position: absolute;
  border-radius: var(--radius);
  object-fit: cover;
}
.about-img-stack .img-main {
  width: 80%;
  height: 80%;
  top: 0;
  left: 0;
  z-index: 1;
}
.about-img-stack .img-second {
  width: 60%;
  height: 55%;
  bottom: 0;
  right: 0;
  z-index: 2;
  border: 6px solid var(--bg);
}
.about-img-stack .accent-block {
  position: absolute;
  top: 20px;
  right: 0;
  width: 6px;
  height: 50%;
  background: var(--red);
  z-index: 0;
}

.about-body p {
  margin-bottom: 18px;
  font-size: 1.0625rem;
  color: var(--muted);
}
.about-body p:first-of-type {
  color: var(--text);
  font-size: 1.125rem;
}
.about-body .signature {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 0.875rem;
  color: var(--muted);
}
.about-body .signature strong { color: var(--text); }

/* ---------- Mobile units ---------- */
.mobile-units-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 760px) { .mobile-units-grid { grid-template-columns: 1fr; } }

.unit-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  transition: all 0.3s var(--ease);
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.unit-card:hover {
  border-color: rgba(208, 30, 40, 0.4);
  transform: translateY(-4px);
}

.unit-day {
  background: var(--red);
  color: var(--text);
  padding: 12px 16px;
  border-radius: var(--radius);
  font-family: var(--display);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  min-width: 90px;
  text-align: center;
  flex-shrink: 0;
}
.unit-info h4 {
  font-size: 1.5rem;
  margin-bottom: 6px;
}
.unit-info .addr {
  font-size: 0.9375rem;
  color: var(--muted);
  margin-bottom: 10px;
}
.unit-info .hours {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
}

/* ---------- Reviews ---------- */
.reviews-section {
  position: relative;
  overflow: hidden;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 880px) { .reviews-grid { grid-template-columns: 1fr; } }

.review-card {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 40px 36px;
  border-radius: var(--radius);
  position: relative;
}
.review-card:nth-child(2),
.review-card:nth-child(4) {
  margin-top: 40px;
}
@media (max-width: 880px) {
  .review-card:nth-child(2),
  .review-card:nth-child(4) { margin-top: 0; }
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 24px;
  font-family: 'Bebas Neue', serif;
  font-size: 8rem;
  line-height: 1;
  color: var(--red);
  opacity: 0.18;
}

.review-stars {
  color: var(--red);
  font-size: 1rem;
  letter-spacing: 4px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.review-text {
  font-size: 1.0625rem;
  color: var(--text);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  line-height: 1.6;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--text);
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-size: 1.125rem;
  letter-spacing: 0.04em;
}
.review-author .name { font-weight: 600; font-size: 0.9375rem; }
.review-author .meta { font-size: 0.75rem; color: var(--muted); }

/* ---------- Locations ---------- */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 980px) { .locations-grid { grid-template-columns: 1fr; } }

.location-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s var(--ease);
  display: flex;
  flex-direction: column;
}
.location-card:hover {
  transform: translateY(-6px);
  border-color: rgba(208, 30, 40, 0.4);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.location-card .map-frame {
  aspect-ratio: 16/10;
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.location-card .map-frame iframe,
.location-card .map-frame img {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(40%) brightness(0.85);
}

.location-card .info {
  padding: 28px;
}
.location-card .badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.location-card h3 {
  font-size: 1.75rem;
  margin-bottom: 10px;
}
.location-card .addr {
  font-size: 0.9375rem;
  color: var(--muted);
  margin-bottom: 18px;
}
.location-card .actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.location-card .actions a {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.location-card .actions a:hover { color: var(--red); }

/* ---------- CTA banner ---------- */
.cta-banner {
  position: relative;
  background: var(--black);
  padding: 100px 0;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.pexels.com/photos/3806249/pexels-photo-3806249.jpeg?auto=compress&cs=tinysrgb&w=1400') center/cover;
  opacity: 0.25;
  filter: grayscale(40%);
}
.cta-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,10,10,0.95), rgba(10,10,10,0.6));
}
.cta-banner-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 880px) { .cta-banner-inner { grid-template-columns: 1fr; gap: 30px; } }
.cta-banner h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  margin-bottom: 18px;
}
.cta-banner h2 .accent { color: var(--red); }
.cta-banner p {
  font-size: 1.125rem;
  color: var(--text);
  opacity: 0.85;
}
.cta-banner-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
@media (max-width: 880px) {
  .cta-banner-actions { align-items: stretch; }
  .cta-banner-actions .btn { width: 100%; }
}

/* ---------- Footer ---------- */
.footer {
  background: var(--black);
  border-top: 1px solid var(--line);
  padding: 80px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 50px;
  margin-bottom: 50px;
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand .nav-brand { margin-bottom: 20px; }
.footer-brand p {
  font-size: 0.9375rem;
  color: var(--muted);
  max-width: 36ch;
  margin-bottom: 24px;
}
.footer-brand .socials {
  display: flex;
  gap: 12px;
}
.footer-brand .socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  transition: all 0.25s var(--ease);
}
.footer-brand .socials a:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-3px);
}
.footer-brand .socials svg { width: 18px; height: 18px; }

.footer-col h5 {
  font-size: 1rem;
  margin-bottom: 18px;
  color: var(--text);
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col a {
  font-size: 0.9375rem;
  color: var(--muted);
}
.footer-col a:hover { color: var(--red); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
  font-size: 0.8125rem;
  color: var(--dim);
  flex-wrap: wrap;
}

/* ---------- Floating call button ---------- */
.float-call {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  background: var(--red);
  color: var(--text);
  padding: 14px 22px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 35px rgba(208, 30, 40, 0.45);
  transition: all 0.25s var(--ease);
  text-transform: uppercase;
}
.float-call:hover {
  background: var(--red-dark);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 15px 45px rgba(208, 30, 40, 0.6);
}
.float-call .icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  display: grid;
  place-items: center;
  font-size: 0.9rem;
}
@media (max-width: 480px) {
  .float-call { bottom: 16px; right: 16px; padding: 12px 18px; font-size: 0.8125rem; }
}

/* ---------- Page Hero (sub-pages) ---------- */
.page-hero {
  position: relative;
  padding: 200px 0 100px;
  overflow: hidden;
  background: var(--black);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--bg) url('https://images.pexels.com/photos/3807517/pexels-photo-3807517.jpeg?auto=compress&cs=tinysrgb&w=1400') center/cover;
  opacity: 0.18;
  filter: grayscale(30%);
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.7) 0%, var(--bg) 100%);
}
.page-hero-inner { position: relative; z-index: 2; }
.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}
.page-hero .breadcrumb .sep { color: var(--red); }
.page-hero .breadcrumb a:hover { color: var(--text); }
.page-hero h1 {
  font-size: clamp(2.75rem, 7vw, 6rem);
  margin-bottom: 20px;
  max-width: 16ch;
}
.page-hero h1 .accent { color: var(--red); }
.page-hero p {
  font-size: 1.125rem;
  color: var(--text);
  max-width: 60ch;
  opacity: 0.85;
}

/* ---------- About page specific ---------- */
.story-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 880px) { .story-grid { grid-template-columns: 1fr; gap: 50px; } }

.story-grid img {
  border-radius: var(--radius);
  width: 100%;
  height: auto;
}

.timeline {
  position: relative;
  padding-left: 40px;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 12px;
  width: 2px;
  background: var(--line);
}
.timeline-item {
  position: relative;
  padding-bottom: 50px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -34px;
  top: 6px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px var(--bg), 0 0 0 5px var(--red);
}
.timeline-year {
  font-family: var(--display);
  font-size: 2rem;
  color: var(--red);
  margin-bottom: 8px;
}
.timeline-title {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: var(--text);
}
.timeline-item p {
  font-size: 0.9375rem;
  color: var(--muted);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 880px) { .values-grid { grid-template-columns: 1fr; } }

.value-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 4px solid var(--red);
  padding: 32px;
  border-radius: var(--radius);
  transition: all 0.3s var(--ease);
}
.value-card:hover {
  background: var(--card-hover);
  transform: translateY(-4px);
}
.value-card .num {
  font-family: var(--display);
  font-size: 2.5rem;
  color: var(--red);
  line-height: 1;
  margin-bottom: 16px;
}
.value-card h4 {
  font-size: 1.375rem;
  margin-bottom: 10px;
}
.value-card p {
  font-size: 0.9375rem;
  color: var(--muted);
}

.team-photo-wrap {
  position: relative;
  margin: 80px 0;
}
.team-photo-wrap img {
  width: 100%;
  border-radius: var(--radius);
  filter: grayscale(10%);
}
.team-caption {
  margin-top: 16px;
  text-align: center;
  font-size: 0.875rem;
  color: var(--muted);
  font-style: italic;
}

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 980px) { .contact-grid { grid-template-columns: 1fr; gap: 50px; } }

.form {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 40px;
  border-radius: var(--radius);
  position: relative;
}
.form h3 {
  font-size: 1.75rem;
  margin-bottom: 8px;
}
.form .desc {
  color: var(--muted);
  font-size: 0.9375rem;
  margin-bottom: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}
.form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 16px;
  color: var(--text);
  font-size: 0.9375rem;
  transition: border-color 0.2s var(--ease);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-submit {
  margin-top: 8px;
  width: 100%;
}
.form-success {
  display: none;
  background: rgba(208, 30, 40, 0.08);
  border: 1px solid rgba(208, 30, 40, 0.4);
  color: var(--text);
  padding: 20px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  font-size: 0.9375rem;
  text-align: center;
}
.form-success.show { display: block; }
.form-success .check {
  display: inline-block;
  font-size: 2rem;
  color: var(--red);
  margin-bottom: 8px;
}

.contact-info-block { margin-bottom: 36px; }
.contact-info-block h4 {
  font-size: 1.25rem;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.contact-info-block .row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 12px;
  font-size: 0.9375rem;
}
.contact-info-block .row .icon {
  color: var(--red);
  font-size: 1.125rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-info-block .row a:hover { color: var(--red); }

/* ---------- Locations page ---------- */
.loc-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 100px;
}
.loc-detail:nth-child(even) > .loc-info { order: 2; }
@media (max-width: 880px) {
  .loc-detail { grid-template-columns: 1fr; gap: 30px; margin-bottom: 60px; }
  .loc-detail:nth-child(even) > .loc-info { order: 0; }
}

.loc-detail .map-frame {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}
.loc-detail .map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(40%) brightness(0.85);
}
.loc-info .badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
  padding: 6px 12px;
  background: rgba(208, 30, 40, 0.1);
  border: 1px solid rgba(208, 30, 40, 0.3);
  border-radius: 100px;
}
.loc-info h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}
.loc-info p {
  font-size: 1rem;
  margin-bottom: 16px;
  color: var(--muted);
}
.loc-info .details {
  list-style: none;
  margin: 20px 0 24px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.loc-info .details li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9375rem;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.loc-info .details .label {
  min-width: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  padding-top: 2px;
}
.loc-info .details .value { color: var(--text); flex: 1; }

.loc-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--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; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.bg-alt { background: var(--bg-alt); }
.bg-black { background: var(--black); }
