/* ============================================================
   Chase Race LLC — Website Styles (rebuild4)

   Color palette from the Chase Race company logo:
     --accent  : #4fae37  (logo green)
     --bg      : #1a1a1a  (near-black)
     --bg-card : #252525  (dark grey panels)
     --text    : #f0f0f0  (white)
     Grey tones used for muted/secondary text

   To change the accent color sitewide, edit --accent below.
   ============================================================ */


/* ── Reset & box model ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }


/* ── Design tokens (CSS variables) ────────────────────────── */
:root {
  /* Brand accent — Chase Race logo green */
  --accent:       #4fae37;
  --accent-dim:   rgba(79, 174, 55, 0.13);
  --accent-hover: #5dc444;

  /* Backgrounds */
  --bg:           #1a1a1a;
  --bg-card:      #252525;
  --bg-nav:       rgba(18, 18, 18, 0.95);

  /* Borders */
  --border:       rgba(255, 255, 255, 0.09);

  /* Text */
  --text:         #f0f0f0;
  --text-dim:     rgba(240, 240, 240, 0.65);
  --text-muted:   rgba(240, 240, 240, 0.40);

  /* Shape */
  --radius:       6px;
  --radius-lg:    10px;

  /* Layout */
  --font:         'Inter', system-ui, -apple-system, sans-serif;
  --nav-h:        68px;
  --max-w:        1100px;
}


/* ── Base ──────────────────────────────────────────────────── */
html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { font-weight: 500; line-height: 1.25; }


/* ── Layout helpers ────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section       { padding: 80px 0; }
.section--tight { padding: 48px 0; }


/* ── Section label (small green eyebrow text) ─────────────── */
.section-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 8px;
}


/* ════════════════════════════════════════════════════════════
   NAVIGATION
   ════════════════════════════════════════════════════════════ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: var(--bg-nav);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
  overflow: visible;
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Logo image in the nav — overflows below the nav bar into the hero */
.nav-logo {
  position: relative;
  z-index: 101;
  align-self: stretch;
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 112px;
  width: auto;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.6));
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 4px;
  margin-right: auto;
}

.nav-links a {
  display: block;
  padding: 6px 12px;
  font-size: 14px;
  color: var(--text-muted);
  border-radius: var(--radius);
  transition: color 0.15s, background 0.15s;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

/* Phone number link in nav — tap-to-call on mobile */
.nav-phone {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dim);
  white-space: nowrap;
  transition: color 0.15s;
}

.nav-phone:hover { color: var(--accent); }

/* "Get a quote" button in nav */
.nav-cta {
  display: inline-block;
  background: var(--accent);
  color: #111;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: opacity 0.15s;
}

.nav-cta:hover { opacity: 0.85; }

/* Hamburger — mobile only */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}


/* ════════════════════════════════════════════════════════════
   HERO (homepage video banner)
   ════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #0a0a0a;
}

/* Background layer holds the video(s) */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Hero background images — stacked, crossfade on .active */
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
}

.hero-bg-img.active { opacity: 0.42; }

/* Dark gradient overlay so text is readable */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 10, 10, 0.96) 0%,
    rgba(10, 10, 10, 0.55) 50%,
    rgba(10, 10, 10, 0.20) 100%
  );
}

/* Hero text content */
.hero-content {
  position: relative;
  z-index: 1;
  padding: 64px 0 72px;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  padding-left: 24px;
  padding-right: 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-dim);
  border: 1px solid rgba(79, 174, 55, 0.25);
  color: var(--accent);
  font-size: 12px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 100px;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(30px, 5vw, 54px);
  font-weight: 600;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 16px;
  max-width: 640px;
}

.hero h1 em {
  color: var(--accent);
  font-style: normal;
}

.hero p {
  font-size: 17px;
  color: var(--text-dim);
  max-width: 480px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Primary button — green fill */
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  transition: opacity 0.15s;
}

.btn-primary:hover { opacity: 0.85; }

/* Ghost button — green outline */
.btn-ghost {
  display: inline-block;
  border: 1.5px solid rgba(79, 174, 55, 0.45);
  color: var(--text-dim);
  padding: 12px 24px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  transition: border-color 0.15s, color 0.15s;
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}


/* ════════════════════════════════════════════════════════════
   STATS BAR (four key numbers under the hero)
   ════════════════════════════════════════════════════════════ */
.stats-bar {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
}

.stats-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  padding: 28px 24px;
  text-align: center;
  border-right: 1px solid var(--border);
}

.stat-item:last-child { border-right: none; }

.stat-num {
  font-size: 32px;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stat-sub {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 4px;
  opacity: 0.7;
}


/* ════════════════════════════════════════════════════════════
   SERVICE CARDS (homepage grid)
   ════════════════════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.service-card {
  display: block;
  text-decoration: none;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: border-color 0.2s, transform 0.2s;
}

.service-card:hover {
  border-color: rgba(79, 174, 55, 0.40);
  transform: translateY(-2px);
}

.service-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-dim);
  border-radius: 8px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon svg { width: 22px; height: 22px; }

.service-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.service-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: var(--accent);
  margin-top: 16px;
  transition: gap 0.15s;
}

.card-link:hover { gap: 8px; }


/* ════════════════════════════════════════════════════════════
   GALLERY GRID (homepage preview thumbnails)
   ════════════════════════════════════════════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 40px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--bg-card);
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease, opacity 0.25s;
  opacity: 0.85;
}

.gallery-item:hover img { transform: scale(1.05); opacity: 1; }

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.25s;
  display: flex;
  align-items: flex-end;
  padding: 12px;
}

.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay span { font-size: 12px; color: #fff; font-weight: 500; }


/* ════════════════════════════════════════════════════════════
   GALLERY PAGE (full gallery with filter buttons)
   ════════════════════════════════════════════════════════════ */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}

.gallery-filter {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-dim);
  font-size: 13px;
  font-weight: 500;
  padding: 7px 18px;
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.gallery-filter:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.gallery-filter.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.gallery-section { margin-bottom: 56px; }

.gallery-section-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px;
}

.gallery-thumbs a {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg-card);
}

.gallery-thumbs a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease, opacity 0.2s;
  opacity: 0.82;
}

.gallery-thumbs a:hover img { transform: scale(1.06); opacity: 1; }


/* ════════════════════════════════════════════════════════════
   SPLIT LAYOUT (text + image side-by-side)
   ════════════════════════════════════════════════════════════ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split-text h2 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
}

.split-text p {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.8;
  margin-bottom: 14px;
}

/* Platform tags (small pill labels) */
.platforms-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.platforms-list li {
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(79, 174, 55, 0.20);
  border-radius: 100px;
  padding: 4px 12px;
  letter-spacing: 0.02em;
}

.split-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg-card);
}

.split-img img { width: 100%; height: 100%; object-fit: cover; }


/* ════════════════════════════════════════════════════════════
   SERVICES PAGE — full detail blocks
   ════════════════════════════════════════════════════════════ */
.service-quicknav {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
  gap: 0;
}

.service-quicknav::-webkit-scrollbar { display: none; }

.service-quicknav a {
  flex: 0 0 auto;
  display: block;
  padding: 14px 20px;
  font-size: 13px;
  color: var(--text-muted);
  white-space: nowrap;
  border-right: 1px solid var(--border);
  transition: color 0.15s;
}

.service-quicknav a:last-child { border-right: none; }
.service-quicknav a:hover { color: var(--accent); }

/* ════════════════════════════════════════════════════════════
   RATES TABLE
   Doug: to update a rate, find the dollar amount in the <td>
   cells below and change the number. Each row is one service.
   To add a row, copy a <tr>…</tr> block and paste it in.
   ════════════════════════════════════════════════════════════ */
.rates-section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 48px;
}

.rates-section-title {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
}

.rates-table {
  width: 100%;
  border-collapse: collapse;
}

.rates-table th {
  text-align: left;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  padding: 12px 24px;
  border-bottom: 1px solid var(--border);
}

.rates-table td {
  padding: 14px 24px;
  font-size: 14px;
  color: var(--text-dim);
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.rates-table tbody tr:last-child td { border-bottom: none; }

.rates-table tbody tr:hover td { background: rgba(255,255,255,0.02); }

/* The rate/price column */
.rates-table td.rate {
  color: var(--accent);
  font-weight: 600;
  white-space: nowrap;
}

/* Notes column — smaller, muted */
.rates-table td.note {
  font-size: 12px;
  color: var(--text-muted);
}

/* Roll cages — by-request footnote at bottom of services */
.cage-footnote {
  background: rgba(79, 174, 55, 0.05);
  border: 1px solid rgba(79, 174, 55, 0.15);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-top: 48px;
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.7;
}

.cage-footnote strong { color: var(--text); }


/* ════════════════════════════════════════════════════════════
   CONTACT PAGE
   ════════════════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.contact-info h2 {
  font-size: 28px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}

.contact-info p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* Response time callout */
.response-note {
  font-size: 13px;
  color: var(--text-muted);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 10px 14px;
  margin-bottom: 28px;
  line-height: 1.6;
}

.contact-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact-icon {
  width: 36px;
  height: 36px;
  background: var(--accent-dim);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.8;
}

.contact-details span {
  font-size: 14px;
  color: var(--text-dim);
  padding-top: 8px;
  line-height: 1.6;
}

.contact-details a { color: var(--text-dim); transition: color 0.15s; }
.contact-details a:hover { color: var(--accent); }

/* Contact form card */
.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.contact-form h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 14px;
}

.form-group label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius);
  padding: 10px 14px;
  font-size: 14px;
  color: var(--text);
  font-family: var(--font);
  outline: none;
  transition: border-color 0.15s;
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: rgba(79, 174, 55, 0.45);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select option { background: #1c1c1c; }

.btn-submit {
  width: 100%;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  padding: 13px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  transition: opacity 0.15s;
  margin-top: 6px;
}

.btn-submit:hover { opacity: 0.88; }


/* ════════════════════════════════════════════════════════════
   INTERIOR PAGE HERO (Services, Gallery, About, Contact)
   ════════════════════════════════════════════════════════════ */
.page-hero {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding: 56px 0 48px;
}

.page-hero h1 {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}

.page-hero p {
  font-size: 16px;
  color: var(--text-dim);
  max-width: 560px;
}

/* Breadcrumb navigation */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
  list-style: none;
}

.breadcrumb li { font-size: 13px; color: var(--text-muted); }
.breadcrumb li a { color: var(--text-muted); transition: color 0.15s; }
.breadcrumb li a:hover { color: var(--accent); }
.breadcrumb li + li::before { content: '/'; margin-right: 6px; opacity: 0.4; }


/* ════════════════════════════════════════════════════════════
   CTA STRIP (call-to-action band)
   ════════════════════════════════════════════════════════════ */
.cta-strip {
  background: var(--bg);
  border-top: 1px solid var(--accent);
  border-bottom: 1px solid var(--accent);
  padding: 56px 0;
}

.cta-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-strip h2 {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 600;
  color: var(--text);
}

.cta-strip p { font-size: 14px; color: var(--text-dim); margin-top: 4px; }

/* Dark/filled CTA button */
.btn-dark {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity 0.15s;
}

.btn-dark:hover { opacity: 0.85; }


/* ════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════ */
.site-footer {
  background: #0d0d0d;
  border-top: 1px solid var(--border);
  padding: 48px 0 24px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}

.footer-brand img { height: 36px; margin-bottom: 14px; }

.footer-brand p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 14px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }

.footer-col ul li a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.15s;
}

.footer-col ul li a:hover { color: var(--accent); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy { font-size: 12px; color: rgba(255, 255, 255, 0.2); }

.footer-social { display: flex; gap: 12px; }

.footer-social a {
  width: 32px;
  height: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.15s;
}

.footer-social a:hover { border-color: rgba(79, 174, 55, 0.4); }
.footer-social svg { width: 14px; height: 14px; fill: var(--text-muted); }


/* ════════════════════════════════════════════════════════════
   UTILITY
   ════════════════════════════════════════════════════════════ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.divider {
  height: 1px;
  background: var(--border);
  margin: 0;
}


/* ════════════════════════════════════════════════════════════
   RESPONSIVE — tablets (max 860px)
   ════════════════════════════════════════════════════════════ */
@media (max-width: 860px) {
  .services-grid          { grid-template-columns: 1fr 1fr; }
  .gallery-grid           { grid-template-columns: repeat(2, 1fr); }
  .split                  { grid-template-columns: 1fr; gap: 32px; }
  .stats-inner            { grid-template-columns: repeat(2, 1fr); }
  .stat-item              { border-right: 1px solid var(--border); }
  .stat-item:nth-child(2n) { border-right: none; }
  .stat-item:nth-child(n+3) { border-top: 1px solid var(--border); }
  .contact-grid           { grid-template-columns: 1fr; gap: 40px; }
  .footer-top             { grid-template-columns: 1fr 1fr; }
  .form-row               { grid-template-columns: 1fr; }
}


/* ════════════════════════════════════════════════════════════
   RESPONSIVE — mobile (max 600px)
   ════════════════════════════════════════════════════════════ */
@media (max-width: 600px) {
  /* Show hamburger, hide nav links */
  .nav-links, .nav-phone { display: none; }
  .nav-toggle            { display: flex; }
  .nav-cta               { padding: 7px 14px; font-size: 12px; }
  .nav-logo img          { height: 72px; }

  /* Expanded mobile nav */
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--bg-nav);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
    gap: 0;
  }

  .nav-links.open a { padding: 12px 24px; font-size: 15px; }

  .services-grid  { grid-template-columns: 1fr; }
  .gallery-grid   { grid-template-columns: repeat(2, 1fr); }
  .hero           { min-height: 420px; }
  .hero h1        { font-size: 28px; }
  .footer-top     { grid-template-columns: 1fr; gap: 32px; }
  .stats-inner    { grid-template-columns: repeat(2, 1fr); }
  .section        { padding: 56px 0; }
  .rates-table th,
  .rates-table td { padding: 10px 14px; }
}
