/* ============================================================
   CRASH CRATES — Global Stylesheet
   Military/Tactical aesthetic. Mobile-first. CSS variables.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;900&family=Barlow:wght@300;400;500;600&display=swap');

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  /* Brand Colors */
  --black:        #0d0d0d;
  --charcoal:     #1a1a1a;
  --gunmetal:     #2B2B2B;
  --olive:        #4A5240;
  --olive-light:  #5c6652;
  --tan:          #8C7B5E;
  --sand:         #b5a18a;
  --aluminum:     #C0C0C0;
  --white:        #f2f0ec;
  --camo:         #78866B;
  --camo-dark:    #5e6a54;

  /* Semantic */
  --bg:           var(--black);
  --bg-surface:   var(--charcoal);
  --bg-raised:    var(--gunmetal);
  --text-primary: var(--white);
  --text-muted:   var(--aluminum);
  --text-dim:     var(--tan);
  --accent:       var(--camo);
  --accent-hover: var(--camo-dark);
  --border:       rgba(255,255,255,0.08);
  --border-mid:   rgba(255,255,255,0.14);

  /* Typography */
  --font-headline: 'Barlow Condensed', Impact, sans-serif;
  --font-body:     'Barlow', system-ui, sans-serif;

  /* Sizing */
  --nav-h:     64px;
  --max-w:     1200px;
  --radius:    4px;
  --radius-sm: 2px;
}

/* ── 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(--bg);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Utility Classes ───────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

.text-accent  { color: var(--accent); }
.text-muted   { color: var(--text-muted); }
.text-dim     { color: var(--text-dim); }
.text-center  { text-align: center; }
.text-upper   { text-transform: uppercase; letter-spacing: 0.1em; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-headline);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: background 0.2s, color 0.2s, transform 0.15s;
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover { background: var(--accent-hover); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--border-mid);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  padding: 10px 0;
}
.btn-ghost:hover { color: var(--accent); }

/* Section headers */
.section-label {
  font-family: var(--font-headline);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-headline);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--white);
}
.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-top: 12px;
}

/* Divider */
.divider {
  width: 48px;
  height: 3px;
  background: var(--accent);
  margin: 16px 0;
}

/* ── Navigation ────────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  height: var(--nav-h);
  background: rgba(13,13,13,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}
.nav-logo {
  font-family: var(--font-headline);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
}
.nav-logo span { color: var(--accent); }

.nav-links {
  display: none;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  font-family: var(--font-headline);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }

.nav-cta {
  display: none;
}

.nav-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav-hamburger span {
  width: 24px; height: 2px;
  background: var(--white);
  display: block;
  transition: transform 0.25s, opacity 0.25s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--charcoal);
  border-bottom: 1px solid var(--border);
  z-index: 998;
  padding: 20px;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-headline);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--accent); }

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .nav-cta { display: flex; }
  .nav-hamburger { display: none; }
}

/* Page offset for fixed nav */
.page-body { padding-top: var(--nav-h); }

/* ── Hero Section ──────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(0,0,0,0.85) 40%, rgba(0,0,0,0.4) 100%),
    url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1600&q=80');
  background-size: cover;
  background-position: center 40%;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 20px 60px;
  width: 100%;
}
.hero-eyebrow {
  font-family: var(--font-headline);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--accent);
}
.hero-title {
  font-family: var(--font-headline);
  font-size: clamp(3rem, 9vw, 7rem);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--white);
  max-width: 700px;
  margin-bottom: 24px;
}
.hero-title em {
  font-style: normal;
  color: var(--accent);
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-badges {
  display: flex;
  gap: 20px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-headline);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.hero-badge .badge-icon {
  width: 32px; height: 32px;
  border: 1px solid var(--border-mid);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}

/* ── Trust Bar ─────────────────────────────────────────────── */
.trust-bar {
  background: var(--charcoal);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  overflow: hidden;
}
.trust-bar-inner {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0 20px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-headline);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}
.trust-item svg, .trust-item .ti {
  color: var(--accent);
  font-size: 1.1rem;
}

/* ── Features / Why Crash Crates ───────────────────────────── */
.features-section {
  padding: 80px 0;
  background: var(--bg);
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}
.feature-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.2s;
}
.feature-card:hover { border-color: var(--accent); }
.feature-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}
.feature-title {
  font-family: var(--font-headline);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}
.feature-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

@media (min-width: 640px) {
  .features-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 960px) {
  .features-grid { grid-template-columns: 1fr 1fr 1fr; }
}

/* ── Product Grid ──────────────────────────────────────────── */
.products-section {
  padding: 80px 0;
  background: var(--bg-surface);
}
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}
.product-card {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.product-card:hover { border-color: var(--tan); transform: translateY(-2px); }
.product-img-wrap {
  aspect-ratio: 4/3;
  background: var(--charcoal);
  overflow: hidden;
  position: relative;
}
.product-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.product-card:hover .product-img-wrap img { transform: scale(1.03); }
.product-badge-wrap {
  position: absolute;
  top: 12px; left: 12px;
  display: flex; gap: 6px;
}
.product-badge {
  font-family: var(--font-headline);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
}
.badge-new { background: var(--accent); color: #fff; }
.badge-truck { background: var(--olive); color: var(--white); }
.product-info { padding: 20px; }
.product-name {
  font-family: var(--font-headline);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
}
.product-sub {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 12px;
}
.product-price {
  font-family: var(--font-headline);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
}
.product-price .from {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.product-trucks {
  font-size: 0.78rem;
  color: var(--text-muted);
}

@media (min-width: 640px) {
  .products-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 960px) {
  .products-grid { grid-template-columns: 1fr 1fr 1fr; }
}

/* ── Truck Fit Guide ───────────────────────────────────────── */
.fit-section {
  padding: 80px 0;
  background: var(--bg);
}
.fit-table-wrap {
  overflow-x: auto;
  margin-top: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.fit-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.fit-table th {
  font-family: var(--font-headline);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 14px 18px;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
  text-align: left;
  white-space: nowrap;
}
.fit-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  color: var(--white);
}
.fit-table tr:last-child td { border-bottom: none; }
.fit-table tr:hover td { background: rgba(255,255,255,0.03); }
.fit-check { color: #4caf50; font-size: 1.1rem; }
.fit-dash  { color: var(--border-mid); }
.truck-model {
  font-family: var(--font-headline);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--white);
}

/* ── Testimonials ──────────────────────────────────────────── */
.testimonials-section {
  padding: 80px 0;
  background: var(--charcoal);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 48px;
}
.testimonial-card {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.testimonial-stars {
  color: var(--accent);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 20px;
}
.testimonial-author {
  font-family: var(--font-headline);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
}
.testimonial-role {
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-top: 3px;
}

@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .testimonials-grid { grid-template-columns: 1fr 1fr 1fr; }
}

/* ── Stats Banner ──────────────────────────────────────────── */
.stats-banner {
  padding: 64px 0;
  background: var(--olive);
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  text-align: center;
}
.stat-num {
  font-family: var(--font-headline);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  font-family: var(--font-headline);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 6px;
}

@media (min-width: 640px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ── FAQ ───────────────────────────────────────────────────── */
.faq-section { padding: 80px 0; }
.faq-list { margin-top: 40px; max-width: 760px; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  font-family: var(--font-headline);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--white);
  padding: 20px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-q:hover { color: var(--accent); }
.faq-chevron {
  flex-shrink: 0;
  width: 20px; height: 20px;
  transition: transform 0.2s;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-a {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  padding-bottom: 20px;
  display: none;
}
.faq-item.open .faq-a { display: block; }

/* ── About / Story ─────────────────────────────────────────── */
.story-section { padding: 80px 0; }
.story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 48px;
}
.story-img-wrap {
  aspect-ratio: 4/3;
  background: var(--bg-surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.story-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.story-body { font-size: 0.95rem; color: var(--text-muted); line-height: 1.8; }
.story-body p { margin-bottom: 16px; }
.story-body p:last-child { margin-bottom: 0; }

@media (min-width: 768px) {
  .story-grid { grid-template-columns: 1fr 1fr; }
}

/* ── Safety / Credentials ──────────────────────────────────── */
.safety-section {
  padding: 80px 0;
  background: var(--bg-surface);
}
.creds-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px;
}
.cred-card {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 24px;
}
.cred-title {
  font-family: var(--font-headline);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}
.cred-text { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

@media (min-width: 640px) { .creds-grid { grid-template-columns: 1fr 1fr; } }

/* ── Installation Steps ────────────────────────────────────── */
.install-section { padding: 80px 0; }
.steps-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
  counter-reset: step;
}
.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.step-num {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-headline);
  font-size: 1.3rem;
  font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
}
.step-title {
  font-family: var(--font-headline);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 6px;
}
.step-text { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

/* ── Blog Cards ────────────────────────────────────────────── */
.blog-section { padding: 80px 0; }
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}
.blog-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.blog-card:hover { border-color: var(--accent); }
.blog-img {
  aspect-ratio: 16/9;
  background: var(--bg-raised);
  overflow: hidden;
}
.blog-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-body { padding: 24px; }
.blog-category {
  font-family: var(--font-headline);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.blog-title {
  font-family: var(--font-headline);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.25;
}
.blog-excerpt {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.blog-meta {
  font-size: 0.78rem;
  color: var(--text-dim);
}

@media (min-width: 640px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .blog-grid { grid-template-columns: 1fr 1fr 1fr; } }

/* ── Contact Form ──────────────────────────────────────────── */
.contact-section { padding: 80px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-top: 48px;
}
.contact-info .ci-item {
  display: flex;
  gap: 14px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.ci-icon {
  font-size: 1.3rem;
  margin-top: 2px;
  color: var(--accent);
}
.ci-label {
  font-family: var(--font-headline);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 4px;
}
.ci-val { color: var(--white); font-size: 0.95rem; }

.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-family: var(--font-headline);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg-surface);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 12px 16px;
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group select option { background: var(--gunmetal); }
.form-success {
  display: none;
  background: rgba(76,175,80,0.12);
  border: 1px solid rgba(76,175,80,0.3);
  border-radius: var(--radius);
  padding: 16px;
  color: #81c784;
  font-size: 0.9rem;
  margin-top: 16px;
}
.form-error {
  display: none;
  background: rgba(120,134,107,0.12);
  border: 1px solid rgba(120,134,107,0.3);
  border-radius: var(--radius);
  padding: 16px;
  color: var(--accent);
  font-size: 0.9rem;
  margin-top: 16px;
}

@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 1fr 1.6fr; }
}

/* ── Reviews Page ──────────────────────────────────────────── */
.reviews-hero {
  padding: 64px 0;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
}
.reviews-aggregate {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.agg-num {
  font-family: var(--font-headline);
  font-size: 5rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.agg-stars {
  font-size: 1.6rem;
  color: var(--accent);
  letter-spacing: 3px;
  margin-bottom: 6px;
}
.agg-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.review-notice {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-top: 32px;
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 640px;
}
.review-notice strong { color: var(--white); }

/* ── Page Header (interior pages) ─────────────────────────── */
.page-header {
  padding: 60px 0 40px;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
}
.page-header .section-title { margin-top: 8px; }

/* ── CTA Strip ─────────────────────────────────────────────── */
.cta-strip {
  padding: 80px 0;
  background: var(--olive);
  text-align: center;
}
.cta-strip .section-title { color: var(--white); margin-bottom: 16px; }
.cta-strip .section-sub { color: rgba(255,255,255,0.75); margin: 0 auto 32px; }

/* ── Footer ────────────────────────────────────────────────── */
.site-footer {
  background: var(--charcoal);
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand .nav-logo { font-size: 1.8rem; margin-bottom: 14px; display: block; }
.footer-tagline {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 260px;
}
.footer-col-title {
  font-family: var(--font-headline);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 16px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.footer-copy {
  font-size: 0.8rem;
  color: var(--text-dim);
}
.footer-social {
  display: flex;
  gap: 16px;
}
.footer-social a {
  font-size: 0.8rem;
  font-family: var(--font-headline);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-social a:hover { color: var(--accent); }

@media (min-width: 640px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}
@media (min-width: 960px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

/* ── Gallery / Portfolio Grid ──────────────────────────────── */
.gallery-section { padding: 80px 0; background: var(--bg-surface); }
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  margin-top: 40px;
}
.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg-raised);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item.wide { grid-column: span 2; aspect-ratio: 2/1; }

@media (min-width: 640px) {
  .gallery-grid { grid-template-columns: 1fr 1fr 1fr; }
  .gallery-item.wide { grid-column: span 1; aspect-ratio: 1; }
}

/* ── Video Placeholder ─────────────────────────────────────── */
.video-placeholder {
  aspect-ratio: 16/9;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
  text-align: center;
  padding: 40px;
}
.video-play-icon {
  width: 64px; height: 64px;
  background: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: #fff;
}
.video-placeholder p { font-size: 0.9rem; color: var(--text-muted); max-width: 400px; }

/* ── Spec Table ────────────────────────────────────────────── */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.spec-table tr:nth-child(even) td:first-child {
  background: rgba(255,255,255,0.03);
}
.spec-table td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
}
.spec-table td:first-child {
  font-family: var(--font-headline);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--text-dim);
  width: 40%;
}
.spec-table tr:last-child td { border-bottom: none; }
