/* ==========================================================================
   HB Driving School — Premium Automotive Design System
   ========================================================================== */

:root {
  --black: #000000;
  --white: #ffffff;
  --red: #FF3131;
  --red-bright: #ff5252;
  --charcoal: #141414;
  --charcoal-light: #1e1e1e;
  --grey: #F5F5F5;
  --grey-mid: #9a9a9a;
  --border: rgba(255, 255, 255, 0.08);

  --font-head: 'Poppins', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;

  --container: 1280px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 28px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-card: 0 20px 50px rgba(0, 0, 0, 0.45);
  --shadow-red: 0 12px 30px rgba(255, 49, 49, 0.35);
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font-family: inherit; }
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 600; line-height: 1.15; letter-spacing: -0.02em; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* Skip link for accessibility */
.skip-link {
  position: absolute; top: -60px; left: 16px; background: var(--red); color: var(--white);
  padding: 12px 20px; border-radius: var(--radius-sm); z-index: 9999; transition: top .2s var(--ease);
}
.skip-link:focus { top: 16px; }

:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }

/* ---------- Utility ---------- */
.eyebrow {
  display: inline-block; color: var(--red); font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; font-size: 0.78rem; margin-bottom: 14px;
}
.section { padding: 110px 0; }
.section--tight { padding: 70px 0; }
.section--alt { background: var(--charcoal); }
.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 4vw, 2.9rem); margin-bottom: 16px; }
.section-head p { color: var(--grey-mid); font-size: 1.05rem; }
.section-head.left { margin-left: 0; text-align: left; }
.text-center { text-align: center; }
.mt-lg { margin-top: 48px; }

.fade-in { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.fade-in.in-view { opacity: 1; transform: translateY(0); }
.fade-in.delay-1 { transition-delay: .1s; }
.fade-in.delay-2 { transition-delay: .2s; }
.fade-in.delay-3 { transition-delay: .3s; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 34px; border-radius: 999px; font-weight: 600; font-size: 0.95rem;
  letter-spacing: 0.01em; transition: all .3s var(--ease); white-space: nowrap;
}
.btn-primary {
  background: var(--red); color: var(--white); box-shadow: var(--shadow-red);
}
.btn-primary:hover { background: var(--red-bright); transform: translateY(-3px); box-shadow: 0 16px 36px rgba(255,49,49,.45); }
.btn-secondary {
  background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(6px);
}
.btn-secondary:hover { border-color: var(--red); background: rgba(255,49,49,0.08); transform: translateY(-3px); }
.btn-outline-dark {
  background: transparent; color: var(--black); border: 1.5px solid rgba(0,0,0,0.35);
}
.btn-outline-dark:hover { border-color: var(--red); color: var(--red); }
.btn-block { width: 100%; }
.btn-sm { padding: 12px 22px; font-size: 0.85rem; }

/* ---------- Navbar ---------- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 20px 0; transition: all .35s var(--ease);
  background: linear-gradient(to bottom, rgba(0,0,0,0.65), transparent);
}
.navbar.scrolled {
  padding: 12px 0; background: rgba(0,0,0,0.78); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border); box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; }
.brand-mark {
  width: 44px; height: 44px; border-radius: 12px; background: linear-gradient(145deg, var(--charcoal), #000);
  border: 1px solid rgba(255,49,49,0.4); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.brand-mark svg { width: 24px; height: 24px; }
.brand-mark img { width: 100%; height: 100%; object-fit: cover; border-radius: inherit; }
.brand-name span { color: var(--red); }
.brand-sub { display: block; font-size: 0.62rem; font-weight: 500; letter-spacing: 0.18em; color: var(--grey-mid); text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  font-size: 0.92rem; font-weight: 500; color: rgba(255,255,255,0.85); position: relative; padding: 6px 0;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background: var(--red);
  transition: width .3s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--white); }
.nav-cta { display: flex; align-items: center; gap: 18px; }
.nav-phone { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; color: rgba(255,255,255,0.8); }
.nav-phone svg { width: 16px; height: 16px; color: var(--red); }

.nav-toggle {
  display: none; width: 44px; height: 44px; border-radius: 10px; border: 1px solid var(--border);
  align-items: center; justify-content: center; flex-direction: column; gap: 5px; background: rgba(255,255,255,0.04);
}
.nav-toggle span { width: 20px; height: 2px; background: var(--white); transition: all .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); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 999; background: rgba(0,0,0,0.97); backdrop-filter: blur(20px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 28px;
  opacity: 0; visibility: hidden; transform: translateY(-16px); transition: all .35s var(--ease);
}
.mobile-menu.open { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-menu a { font-family: var(--font-head); font-size: 1.6rem; font-weight: 600; }
.mobile-menu .btn { margin-top: 12px; }

body.menu-open { overflow: hidden; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  overflow: hidden; padding-top: 120px;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(circle at 30% 20%, #241212 0%, #000 55%),
              linear-gradient(160deg, #1a0000 0%, #000000 60%);
  will-change: transform;
}
.hero-bg::before {
  content: ""; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(115deg, rgba(255,255,255,0.02) 0 2px, transparent 2px 90px);
}
.hero-bg.has-photo {
  background-image:
    linear-gradient(160deg, rgba(20,0,0,0.55) 0%, rgba(0,0,0,0.72) 55%, rgba(0,0,0,0.92) 100%),
    url('../images/students/student-pass-01.jpg');
  background-size: cover;
  background-position: center 18%;
}
.hero-bg.has-photo::before { display: none; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.55) 55%, #000 100%); z-index: 1; }
.hero-content { position: relative; z-index: 2; max-width: 780px; }
.hero-content h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); margin-bottom: 22px; }
.hero-content h1 .accent { color: var(--red); }
.hero-content p.lead { font-size: 1.15rem; color: rgba(255,255,255,0.82); max-width: 600px; margin-bottom: 40px; }
.hero-actions { display: flex; gap: 18px; flex-wrap: wrap; }

.hero-badges { display: flex; gap: 34px; flex-wrap: wrap; margin-top: 64px; }
.hero-badge { display: flex; align-items: center; gap: 12px; }
.hero-badge svg { width: 28px; height: 28px; color: var(--red); flex-shrink: 0; }
.hero-badge strong { display: block; font-size: 0.95rem; }
.hero-badge span { font-size: 0.78rem; color: var(--grey-mid); }

.scroll-indicator {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 10px; color: rgba(255,255,255,0.6);
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
}
.scroll-indicator .line { width: 1px; height: 40px; background: linear-gradient(var(--red), transparent); animation: scrollLine 2s infinite var(--ease); }
@keyframes scrollLine { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* Page (inner) hero, smaller than home hero */
.page-hero {
  position: relative; padding: 180px 0 100px; overflow: hidden;
  background: radial-gradient(circle at 80% 0%, #200909 0%, #000 60%);
  border-bottom: 1px solid var(--border);
}
.page-hero::after {
  content: ""; position: absolute; right: -10%; top: -20%; width: 560px; height: 560px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,49,49,0.18), transparent 70%); filter: blur(20px);
}
.page-hero .eyebrow { position: relative; z-index: 1; }
.page-hero h1 { position: relative; z-index: 1; font-size: clamp(2.4rem, 5vw, 3.6rem); max-width: 760px; }
.page-hero p { position: relative; z-index: 1; margin-top: 18px; font-size: 1.05rem; color: rgba(255,255,255,0.75); max-width: 620px; }
.breadcrumb { position: relative; z-index: 1; display: flex; gap: 8px; align-items: center; font-size: .82rem; color: var(--grey-mid); margin-bottom: 20px; }
.breadcrumb a:hover { color: var(--red); }

/* ---------- Image placeholders (swap for real photography) ---------- */
.img-ph {
  position: relative; width: 100%; border-radius: var(--radius-md); overflow: hidden;
  background: linear-gradient(135deg, #1c1c1c 0%, #050505 60%, #200606 100%);
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 10px;
  border: 1px solid var(--border); color: rgba(255,255,255,0.35); text-align: center; padding: 20px;
}
.img-ph svg { width: 40px; height: 40px; color: rgba(255,49,49,0.55); }
.img-ph span { font-size: 0.72rem; letter-spacing: 0.06em; max-width: 220px; }
.img-ph.ratio-hero { aspect-ratio: 16/9; }
.img-ph.ratio-square { aspect-ratio: 1/1; }
.img-ph.ratio-portrait { aspect-ratio: 3/4; }
.img-ph.ratio-wide { aspect-ratio: 21/9; }
.img-ph.ratio-land { aspect-ratio: 4/3; }

.photo-real {
  width: 100%; display: block; object-fit: cover; border-radius: var(--radius-md);
  border: 1px solid var(--border);
}
.photo-real.ratio-square { aspect-ratio: 1/1; }
.photo-real.ratio-portrait { aspect-ratio: 3/4; object-position: top; }
.photo-real.ratio-land { aspect-ratio: 4/3; }
.photo-real.ratio-wide { aspect-ratio: 21/9; }

/* ---------- Cards ---------- */
.card {
  background: var(--charcoal); border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 36px; box-shadow: var(--shadow-card); transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.card:hover { transform: translateY(-8px); border-color: rgba(255,49,49,0.35); }

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

/* Why choose us icon cards */
.feature-card { text-align: left; }
.feature-icon {
  width: 56px; height: 56px; border-radius: 14px; background: rgba(255,49,49,0.1); border: 1px solid rgba(255,49,49,0.3);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.feature-icon svg { width: 26px; height: 26px; color: var(--red); }
.feature-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.feature-card p { color: var(--grey-mid); font-size: 0.92rem; }

/* Trust strip */
.trust-strip { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 36px 0; background: var(--charcoal); }
.trust-strip .grid-4 { align-items: center; text-align: center; gap: 20px; }
.trust-item strong { display: block; font-family: var(--font-head); font-size: 1.7rem; color: var(--red); }
.trust-item span { font-size: 0.8rem; color: var(--grey-mid); text-transform: uppercase; letter-spacing: 0.06em; }

/* ---------- Carousel (passing students / reviews) ---------- */
.carousel { position: relative; }
.carousel-track {
  display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 8px 4px 28px;
  scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-slide { flex: 0 0 auto; width: 320px; scroll-snap-align: start; }
.carousel-slide.wide { width: 380px; }
.carousel-controls { display: flex; justify-content: center; gap: 14px; margin-top: 10px; }
.carousel-btn {
  width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--border); background: var(--charcoal);
  display: flex; align-items: center; justify-content: center; transition: all .25s var(--ease);
}
.carousel-btn:hover { background: var(--red); border-color: var(--red); }
.carousel-btn svg { width: 18px; height: 18px; }

.pass-card {
  background: var(--charcoal); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-card);
}
.pass-card figure { margin: 0; }
.pass-card .caption { padding: 18px 20px; }
.pass-card .caption strong { display: block; font-size: 0.98rem; margin-bottom: 4px; }
.pass-card .caption span { font-size: 0.8rem; color: var(--red); font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; }

/* ---------- Reviews (Google-style) ---------- */
.review-filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 48px; }
.filter-btn {
  padding: 10px 22px; border-radius: 999px; border: 1px solid var(--border); font-size: 0.85rem; font-weight: 500;
  color: rgba(255,255,255,0.75); transition: all .25s var(--ease);
}
.filter-btn:hover { border-color: var(--red); color: var(--white); }
.filter-btn.active { background: var(--red); border-color: var(--red); color: var(--white); }

.review-card {
  background: var(--charcoal); border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 26px; box-shadow: var(--shadow-card); display: flex; flex-direction: column; gap: 12px;
}
.review-head { display: flex; align-items: center; gap: 14px; }
.review-avatar {
  width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(145deg, var(--red), #8a0000);
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-family: var(--font-head);
  flex-shrink: 0; font-size: 1rem;
}
.review-meta strong { display: block; font-size: 0.95rem; }
.review-meta span { font-size: 0.76rem; color: var(--grey-mid); }
.review-stars { display: flex; gap: 3px; }
.review-stars svg { width: 15px; height: 15px; color: #FFB800; fill: currentColor; }
.review-text { font-size: 0.92rem; color: rgba(255,255,255,0.85); }
.review-badge {
  align-self: flex-start; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em;
  background: rgba(255,49,49,0.12); color: var(--red); padding: 5px 12px; border-radius: 999px; border: 1px solid rgba(255,49,49,0.3);
}
.review-like { font-size: 0.82rem; color: var(--grey-mid); }
.review-owner {
  margin-top: 4px; padding: 12px 14px; background: rgba(255,255,255,0.03); border-radius: 10px; border-left: 2px solid var(--red);
  font-size: 0.84rem; color: var(--grey-mid);
}
.review-owner strong { color: var(--white); }
.google-badge { display: inline-flex; align-items: center; gap: 10px; background: var(--charcoal); border: 1px solid var(--border); padding: 12px 22px; border-radius: 999px; }
.google-badge strong { font-family: var(--font-head); font-size: 1.4rem; color: #FFB800; }

/* ---------- Instructors ---------- */
.instructor-card { overflow: hidden; padding: 0; }
.instructor-card .photo { position: relative; }
.instructor-card .body { padding: 32px; }
.instructor-card h3 { font-size: 1.4rem; }
.instructor-role { color: var(--red); font-weight: 600; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 16px; display: block; }
.trait-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 20px; }
.trait-list li { display: flex; align-items: center; gap: 8px; font-size: 0.86rem; color: rgba(255,255,255,0.85); }
.trait-list svg { width: 16px; height: 16px; color: var(--red); flex-shrink: 0; }

/* ---------- Pricing ---------- */
.price-card { text-align: center; position: relative; }
.price-card.featured { border-color: var(--red); box-shadow: 0 0 0 1px var(--red), var(--shadow-card); }
.price-card .ribbon {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--red); color: var(--white);
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; padding: 6px 18px; border-radius: 999px;
}
.price-card h3 { font-size: 1.2rem; margin-bottom: 4px; }
.price-card .price { font-family: var(--font-head); font-size: 3rem; color: var(--red); margin: 14px 0 6px; }
.price-card .price small { font-size: 1rem; color: var(--grey-mid); font-weight: 400; }
.price-card p.desc { color: var(--grey-mid); font-size: 0.9rem; margin-bottom: 22px; min-height: 44px; }
.price-tiers { margin: 4px 0 22px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 4px 0; }
.price-tier { display: flex; justify-content: space-between; align-items: baseline; padding: 10px 2px; }
.price-tier + .price-tier { border-top: 1px dashed var(--border); }
.price-tier span { font-size: 0.85rem; color: var(--grey-mid); }
.price-tier strong { font-family: var(--font-head); font-size: 1.2rem; color: var(--white); }
.price-card ul { text-align: left; margin: 0 0 26px; display: flex; flex-direction: column; gap: 10px; }
.price-card ul li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.88rem; color: rgba(255,255,255,0.85); }
.price-card ul li svg { width: 16px; height: 16px; color: var(--red); flex-shrink: 0; margin-top: 3px; }
.block-banner {
  margin-top: 40px; background: var(--charcoal); border: 1px dashed rgba(255,49,49,0.4); border-radius: var(--radius-md);
  padding: 30px 36px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.block-banner h3 { font-size: 1.15rem; margin-bottom: 6px; }
.block-banner p { color: var(--grey-mid); font-size: 0.92rem; }

/* ---------- Gallery ---------- */
.gallery-tabs { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 44px; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.gallery-item {
  border-radius: var(--radius-md); overflow: hidden; cursor: pointer; position: relative;
  transition: transform .35s var(--ease); border: 1px solid var(--border);
}
.gallery-item:hover { transform: translateY(-6px); }
.gallery-item .tag {
  position: absolute; bottom: 12px; left: 12px; background: rgba(0,0,0,0.6); backdrop-filter: blur(6px);
  padding: 6px 14px; border-radius: 999px; font-size: 0.72rem; font-weight: 600; z-index: 2;
}
.gallery-item.span-2 { grid-column: span 2; }
.gallery-category { display: none; }
.gallery-category.active { display: grid; }

.lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,0.94); z-index: 2000; display: flex; align-items: center;
  justify-content: center; opacity: 0; visibility: hidden; transition: opacity .3s var(--ease); padding: 40px;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-inner { max-width: 900px; width: 100%; }
.lightbox-close {
  position: absolute; top: 28px; right: 32px; width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; background: var(--charcoal);
}
.lightbox-caption { text-align: center; margin-top: 18px; color: var(--grey-mid); }
.lightbox-inner .photo-real, .lightbox-inner .img-ph { aspect-ratio: auto; max-height: 80vh; width: auto; max-width: 100%; margin: 0 auto; }

/* ---------- Forms ---------- */
.form-card { background: var(--charcoal); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 44px; box-shadow: var(--shadow-card); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 22px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 8px; color: rgba(255,255,255,0.9); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 14px 16px; background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: 10px;
  color: var(--white); font-size: 0.95rem; transition: border-color .25s var(--ease), background .25s var(--ease);
}
.form-group select option { background: var(--charcoal); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--red); background: rgba(255,49,49,0.05); outline: none; }
.form-group textarea { resize: vertical; min-height: 130px; }
.checkbox-row { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 26px; }
.checkbox-row input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--red); }
.checkbox-row label { font-size: 0.85rem; color: var(--grey-mid); }
.form-note { font-size: 0.78rem; color: var(--grey-mid); margin-top: 14px; text-align: center; }
.form-success { display: none; text-align: center; padding: 60px 20px; }
.form-success.show { display: block; }
.form-success svg { width: 60px; height: 60px; color: var(--red); margin: 0 auto 20px; }

.contact-info-card { display: flex; align-items: flex-start; gap: 16px; padding: 24px; }
.contact-info-card .feature-icon { margin-bottom: 0; flex-shrink: 0; }
.contact-info-card h4 { font-size: 1rem; margin-bottom: 4px; }
.contact-info-card p, .contact-info-card a { color: var(--grey-mid); font-size: 0.9rem; }
.contact-info-card a:hover { color: var(--red); }
.map-embed { border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border); }
.map-embed iframe { width: 100%; height: 340px; border: 0; filter: grayscale(0.4) invert(0.92) contrast(0.9); }

/* ---------- FAQ ---------- */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 24px 4px;
  text-align: left; font-family: var(--font-head); font-size: 1.05rem; font-weight: 500;
}
.faq-question svg { width: 20px; height: 20px; color: var(--red); flex-shrink: 0; transition: transform .3s var(--ease); }
.faq-item.open .faq-question svg { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-answer p { padding: 0 4px 24px; color: var(--grey-mid); font-size: 0.92rem; max-width: 700px; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--charcoal), #0a0a0a); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 80px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; left: 50%; top: 50%; width: 700px; height: 700px; transform: translate(-50%,-50%);
  background: radial-gradient(circle, rgba(255,49,49,0.12), transparent 70%);
}
.cta-band h2 { position: relative; font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin-bottom: 18px; }
.cta-band p { position: relative; color: var(--grey-mid); margin-bottom: 34px; }
.cta-actions { position: relative; display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.footer { background: var(--black); border-top: 1px solid var(--border); padding: 80px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 60px; }
.footer-brand p { color: var(--grey-mid); font-size: 0.88rem; margin: 18px 0 22px; max-width: 300px; }
.footer h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 20px; color: var(--white); }
.footer ul li { margin-bottom: 12px; }
.footer ul li a { color: var(--grey-mid); font-size: 0.9rem; transition: color .2s var(--ease); }
.footer ul li a:hover { color: var(--red); }
.footer-socials { display: flex; gap: 12px; margin-top: 18px; }
.footer-socials a {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--border); display: flex; align-items: center;
  justify-content: center; transition: all .25s var(--ease);
}
.footer-socials a:hover { background: var(--red); border-color: var(--red); }
.footer-socials svg { width: 17px; height: 17px; }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 26px; display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px; font-size: 0.82rem; color: var(--grey-mid);
}
.footer-bottom .legal-links { display: flex; gap: 20px; }
.footer-bottom .legal-links a:hover { color: var(--red); }

/* ---------- Legal pages ---------- */
.legal-content { max-width: 820px; margin: 0 auto; }
.legal-content h2 { font-size: 1.5rem; margin: 44px 0 16px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li { color: rgba(255,255,255,0.78); margin-bottom: 14px; font-size: 0.96rem; }
.legal-content ul { padding-left: 22px; list-style: disc; }
.legal-content .updated { color: var(--grey-mid); font-size: 0.85rem; margin-bottom: 40px; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 860px) {
  .nav-links, .nav-cta .nav-phone { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta { gap: 12px; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.span-2 { grid-column: span 1; }
  .block-banner { flex-direction: column; align-items: flex-start; }
  .trust-strip .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .nav-cta .btn-primary { display: none; }
  .brand-sub { display: none; }
  .brand-name { white-space: nowrap; font-size: 0.98rem; }
  .brand-mark { width: 38px; height: 38px; }
  .section { padding: 76px 0; }
  .page-hero { padding: 150px 0 70px; }
  .hero-actions .btn { flex: 1 1 auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .form-card { padding: 28px 22px; }
  .trust-strip .grid-4 { grid-template-columns: 1fr 1fr; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .fade-in, .hero-bg, .navbar, .btn, .card { transition: none !important; }
}
