/* ============================================================
   TOP SPEC GARAGE — style.css
   Accent color: #1a6fe8 (pulled from logo)
   Edit the :root variables below to retheme the whole site
   ============================================================ */

:root {
  --accent:        #022dfe;
  --accent-dark:   #0022cc;
  --accent-glow:   rgba(2, 45, 254, 0.18);
  --black:         #0a0a0a;
  --dark:          #111214;
  --dark-surface:  #18191d;
  --border:        rgba(255,255,255,0.08);
  --text:          #f0f0f0;
  --text-muted:    rgba(240,240,240,0.5);
  --text-faint:    rgba(240,240,240,0.25);
  --font-display:  'Barlow Condensed', sans-serif;
  --font-body:     'Barlow', sans-serif;
  --radius:        8px;
  --radius-lg:     14px;
  --max-width:     1100px;
  --nav-height:    68px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── Keyframes ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Hero entrance stagger ── */
.hero-eyebrow { animation: fadeUp 0.5s cubic-bezier(0.22,1,0.36,1) both; }
.hero-title   { animation: fadeUp 0.55s cubic-bezier(0.22,1,0.36,1) 0.08s both; }
.hero-sub     { animation: fadeUp 0.55s cubic-bezier(0.22,1,0.36,1) 0.16s both; }
.hero-ctas    { animation: fadeUp 0.55s cubic-bezier(0.22,1,0.36,1) 0.24s both; }
.hero-stats   { animation: fadeUp 0.55s cubic-bezier(0.22,1,0.36,1) 0.32s both; }

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(7px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  will-change: transform, opacity;
}
.reveal.is-visible { opacity: 1; transform: none; }

.reveal-scale {
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.reveal-scale.is-visible { transform: scaleX(1); }

/* ── Button shimmer ── */
.btn-primary { position: relative; overflow: hidden; }
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  left: -100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.14) 50%, transparent 100%);
  transition: left 0.55s ease;
}
.btn-primary:hover::after { left: 100%; }

/* ── Respect reduced-motion ── */
@media (prefers-reduced-motion: reduce) {
  body, .hero-eyebrow, .hero-title, .hero-sub, .hero-ctas, .hero-stats { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .reveal-scale { transform: none; transition: none; }
  .btn-primary::after { display: none; }
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── Utility ── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.section-label {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 16px;
}
.divider {
  width: 40px;
  height: 3px;
  background: var(--accent);
  margin-bottom: 24px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: all 0.18s ease;
  text-decoration: none;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

/* ── Nav ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  z-index: 100;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav-logo img {
  height: 48px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  text-transform: uppercase;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--accent); }
.nav-cta { margin-left: 16px; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all 0.2s;
}

/* ── Hero ── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.5;
}
.hero-bg-glow {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 65%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 100px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 9vw, 96px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.92;
  margin-bottom: 24px;
}
.hero-title .accent { color: var(--accent); }
.hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.65;
  margin-bottom: 36px;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}
.hero-stats {
  display: flex;
  gap: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.hero-stat-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}

/* ── Services ── */
#services {
  padding: 96px 0;
  background: var(--dark);
  position: relative;
}
.services-intro {
  max-width: 540px;
  margin-bottom: 56px;
}
.services-intro p {
  color: var(--text-muted);
  font-size: 16px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.service-card {
  background: var(--dark-surface);
  padding: 32px 28px;
  transition: background 0.2s;
  position: relative;
}
.service-card:hover { background: #1e1f24; }
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--accent);
  transition: height 0.25s ease;
}
.service-card:hover::before { height: 100%; }
.service-icon {
  margin-bottom: 16px;
  line-height: 1;
  color: var(--accent);
}
.service-icon svg { display: block; }
.service-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  color: var(--text);
}
.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-list li {
  font-size: 14px;
  color: var(--text-muted);
  padding-left: 14px;
  position: relative;
}
.service-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 12px;
}

/* ── Instagram ── */
#instagram {
  padding: 96px 0;
  background: var(--black);
}
.instagram-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
}
/* ── Instagram Carousel ── */
.ig-carousel-outer {
  position: relative;
  overflow: hidden;
  padding: 0 36px;
}
.ig-carousel {
  display: flex;
  gap: 16px;
  padding: 8px 0 12px;
  transition: transform 0.42s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  user-select: none;
  -webkit-user-select: none;
}
.ig-card {
  flex: 0 0 calc(33.333% - 11px);
  aspect-ratio: 1 / 1;
  background: var(--card-bg, #1a1a1a);
  border-radius: 12px;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.07);
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.ig-card:hover, .ig-card:focus-visible {
  transform: translateY(-3px);
  border-color: var(--accent);
  outline: none;
}
.ig-card.has-thumb { overflow: hidden; }
.ig-card.has-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.ig-card.has-thumb:hover img { transform: scale(1.05); }
.ig-card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 12px;
  padding: 20px;
}
.ig-card-icon {
  width: 36px;
  height: 36px;
  color: var(--accent);
  opacity: 0.6;
}
.ig-card-handle {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 600;
}
.ig-card-cta {
  font-size: 0.7rem;
  color: var(--text-muted);
  opacity: 0.4;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.ig-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--text);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.ig-carousel-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
}
.ig-prev { left: 0; }
.ig-next { right: 0; }
.ig-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.ig-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}
.ig-dot.active { background: var(--accent); }

/* ── Instagram embed lightbox ── */
.ig-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0,0,0,0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.ig-lightbox[hidden] { display: none; }
.ig-lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: none;
  border: none;
  color: #fff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  opacity: 0.75;
  padding: 4px 8px;
  z-index: 1;
}
.ig-lightbox-close:hover { opacity: 1; }
.ig-lightbox-embed {
  max-width: 420px;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}
.ig-lightbox-thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}
.ig-lightbox-cta {
  display: block;
  text-align: center;
  padding: 14px 20px;
  background: var(--dark);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  transition: background 0.2s, color 0.2s;
}
.ig-lightbox-cta:hover { background: var(--accent); color: #000; }

/* ── Testimonials ── */
#testimonials {
  padding: 96px 0;
  background: var(--dark);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.testimonial-card {
  background: var(--dark-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.2s, transform 0.2s;
}
.testimonial-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.testimonial-stars {
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 2px;
}
.testimonial-text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
  font-style: italic;
  flex: 1;
}
.testimonial-author {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  border-top: 1px solid var(--border);
  padding-top: 14px;
}
.testimonial-vehicle {
  font-size: 12px;
  color: var(--text-faint);
  font-weight: 400;
  margin-top: 2px;
}

/* ── Booking ── */
#booking {
  padding: 96px 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.booking-glow {
  position: absolute;
  bottom: -300px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 65%);
  pointer-events: none;
}
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.booking-left p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 32px;
}
.booking-contact-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.booking-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-muted);
}
.booking-contact-item .icon {
  width: 36px; height: 36px;
  background: var(--dark-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.bot-field-wrapper {
  position: absolute;
  left: -9999px;
  overflow: hidden;
  height: 0;
}
.form-already-sent {
  font-size: 13px;
  color: #f87171;
  margin-top: 4px;
}
.input-error { border-color: #ef4444 !important; }
.field-error-msg {
  font-size: 12px;
  color: #f87171;
  margin-top: 2px;
}
.form-row { display: flex; gap: 12px; }
.form-row .form-group { flex: 1; }
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  width: 100%;
  transition: border-color 0.15s;
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
}
.form-group select option { background: var(--dark-surface); }
.form-group textarea { resize: vertical; min-height: 100px; }

/* Custom checkbox select */
.custom-select { position: relative; }
.custom-select-trigger {
  width: 100%;
  background: var(--dark-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.15s;
}
.custom-select-trigger:focus,
.custom-select.open .custom-select-trigger { border-color: var(--accent); outline: none; }
.custom-select-trigger.error { border-color: #ef4444; }
.custom-select-chevron { transition: transform 0.2s; flex-shrink: 0; margin-left: 8px; }
.custom-select.open .custom-select-chevron { transform: rotate(180deg); }
.custom-select-panel {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: var(--dark-surface);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  z-index: 100;
  overflow: hidden;
}
.custom-select.open .custom-select-panel { display: block; }
.checkbox-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  cursor: pointer;
  font-size: 14px;
  color: var(--text);
  transition: background 0.12s;
}
.checkbox-option:hover { background: rgba(255,255,255,0.05); }
.checkbox-option input[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border: 2px solid #4b5563;
  border-radius: 3px;
  background: transparent;
  flex-shrink: 0;
  cursor: pointer;
  position: relative;
  transition: background 0.15s, border-color 0.15s;
}
.checkbox-option input[type="checkbox"]:checked {
  background: #3b82f6;
  border-color: #3b82f6;
}
.checkbox-option input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 3px;
  top: 0px;
  width: 5px;
  height: 9px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}
.form-submit {
  background: var(--accent);
  color: #fff;
  padding: 14px;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  width: 100%;
  transition: background 0.18s, transform 0.18s;
  margin-top: 4px;
}
.form-submit:hover { background: var(--accent-dark); transform: translateY(-1px); }

/* ── FAQ ── */
#faq {
  padding: 96px 0;
  background: var(--dark);
}
.faq-list {
  max-width: 760px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.faq-item {
  background: var(--card-bg);
  border-radius: 10px;
  overflow: hidden;
}
.faq-item + .faq-item { margin-top: 8px; }
.faq-question {
  list-style: none;
  padding: 20px 24px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  user-select: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.faq-item[open] .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  padding: 0 24px 20px;
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ── Location ── */
#location {
  padding: 96px 0;
  background: var(--dark);
}
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-top: 48px;
}
.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 360px;
  background: var(--dark-surface);
}
.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
/* Replace src with your Google Maps embed URL */
.map-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 8px;
  color: var(--text-muted); font-size: 14px;
}
.location-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.location-detail-group {}
.location-detail-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 8px;
}
.location-detail-value {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--text-muted);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}
.hours-row:last-child { border-bottom: none; }
.hours-row .day { color: var(--text); font-weight: 500; }

/* ── Footer ── */
#footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 40px 0 28px;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 28px;
}
.footer-logo img { height: 44px; }
.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}
.footer-links a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--accent); }
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  color: var(--text-muted);
  transition: border-color 0.15s, color 0.15s;
}
.footer-social a:hover { border-color: var(--accent); color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-copy {
  font-size: 12px;
  color: var(--text-faint);
}
.footer-tagline {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.footer-legal {
  margin-top: 16px;
  font-size: 11px;
  color: var(--text-faint);
  line-height: 1.6;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.footer-service-area {
  margin-top: 12px;
  font-size: 11px;
  color: var(--text-faint);
  line-height: 1.6;
  width: 100%;
}

/* ── Mobile nav menu ── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  top: var(--nav-height);
  background: rgba(10,10,10,0.98);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  transition: color 0.15s;
}
.mobile-menu a:hover { color: var(--accent); }

/* ── Responsive ── */
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .booking-grid { grid-template-columns: 1fr; gap: 40px; }
  .location-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .form-row { flex-direction: column; gap: 14px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .instagram-header { flex-direction: column; align-items: flex-start; }
  .ig-card { flex: 0 0 calc(50% - 8px); }
  .ig-carousel-btn { width: 30px; height: 30px; opacity: 0.75; }
  .ig-carousel-outer { padding: 0 30px; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .btn { justify-content: center; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .ig-card { flex: 0 0 80%; }
}
