/* ======================================================
   Solutionz Car Wash & Auto Care — Theme
   Dark theme: #0a0a0f base, #00d4ff cyan accent
   ====================================================== */

:root {
  --bg: #080810;
  --bg-elevated: #0f0f1a;
  --bg-card: #141420;
  --bg-card-hover: #181826;
  --fg: #eeeef5;
  --fg-muted: #8888a8;
  --fg-dim: #4a4a62;
  --accent: #00d4ff;
  --accent-warm: #ff6b35;
  --accent-glow: rgba(0, 212, 255, 0.12);
  --accent-glow-strong: rgba(0, 212, 255, 0.22);
  --warm-glow: rgba(255, 107, 53, 0.1);
  --border: rgba(255,255,255,0.06);
  --border-accent: rgba(0, 212, 255, 0.18);
  --radius: 14px;
  --radius-sm: 8px;
  --radius-xs: 6px;
  --max-width: 1180px;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ====== TYPOGRAPHY ====== */
h1, h2, h3 { font-family: var(--font-display); letter-spacing: -0.02em; }

/* ====== REUSABLE ====== */
.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-sub {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 600px;
  margin-top: 12px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #07070f;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 0.92rem;
  border: 1px solid var(--border);
  padding: 13px 22px;
  border-radius: 100px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-secondary:hover { color: var(--fg); border-color: rgba(255,255,255,0.14); }


/* ====================================================
   NAV
   ==================================================== */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(8, 8, 16, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 0 28px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg);
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.nav-logo-mark {
  width: 30px;
  height: 30px;
  background: var(--accent);
  color: #07070f;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 800;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 0.88rem;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: color 0.2s;
}
.nav-link:hover { color: var(--fg); }

.nav-cta {
  background: var(--accent);
  color: #07070f;
  text-decoration: none;
  font-size: 0.83rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 100px;
  margin-left: 8px;
  transition: opacity 0.2s;
  font-family: var(--font-display);
}
.nav-cta:hover { opacity: 0.85; }

.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--fg);
  border-radius: 2px;
  transition: 0.2s;
}


/* ====================================================
   HERO
   ==================================================== */
.hero {
  min-height: 100vh;
  padding-top: 62px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  padding-bottom: 80px;
}

.hero-inner { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  border: 1px solid var(--border-accent);
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 36px;
  background: var(--accent-glow);
}

.hero h1 {
  font-size: clamp(2.6rem, 6.5vw, 4.8rem);
  font-weight: 700;
  line-height: 1.04;
  margin-bottom: 24px;
}

.hero-accent {
  color: var(--accent);
  position: relative;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 500px;
  line-height: 1.75;
  margin-bottom: 44px;
}

.hero-cta-row {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.btn-call {
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.25);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
}

.trust-icon {
  color: var(--accent);
  font-size: 0.9rem;
}

.trust-text {
  font-size: 0.82rem;
  color: var(--fg-dim);
}

.trust-divider {
  width: 1px;
  height: 20px;
  background: var(--border);
}

/* Hero visual */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-car-graphic {
  position: relative;
  width: 380px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.car-shine-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0, 212, 255, 0.1);
  animation: ring-pulse 3s ease-in-out infinite;
}
.ring-1 { width: 280px; height: 280px; animation-delay: 0s; }
.ring-2 { width: 340px; height: 340px; animation-delay: 0.6s; border-color: rgba(0, 212, 255, 0.06); }
.ring-3 { width: 380px; height: 380px; animation-delay: 1.2s; border-color: rgba(0, 212, 255, 0.04); }

@keyframes ring-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.03); opacity: 0.6; }
}

.car-icon-wrap {
  position: relative;
  width: 220px;
  text-align: center;
  background: var(--bg-elevated);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius);
  padding: 28px 24px 20px;
  box-shadow: 0 0 60px rgba(0, 212, 255, 0.08), inset 0 1px 0 rgba(255,255,255,0.04);
}

.car-svg { width: 100%; height: auto; display: block; }

.water-drops {
  position: absolute;
  top: -12px;
  left: 0; right: 0;
  display: flex;
  justify-content: space-around;
  padding: 0 20px;
  pointer-events: none;
}

.drop {
  width: 4px;
  height: 8px;
  background: var(--accent);
  border-radius: 100px;
  opacity: 0.6;
  animation: drop-fall 1.8s ease-in infinite;
}
.d1 { animation-delay: 0s; }
.d2 { animation-delay: 0.3s; }
.d3 { animation-delay: 0.6s; }
.d4 { animation-delay: 0.9s; }
.d5 { animation-delay: 1.2s; }

@keyframes drop-fall {
  0% { transform: translateY(-8px); opacity: 0.7; }
  80% { transform: translateY(18px); opacity: 0.3; }
  100% { transform: translateY(24px); opacity: 0; }
}

.car-shine-label {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--fg-dim);
  white-space: nowrap;
}


/* ====================================================
   SERVICES
   ==================================================== */
.services {
  padding: 120px 0;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.services .section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.service-column {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service-column-wide {
  grid-column: span 2;
}

.service-column-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 0 18px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
}

.service-col-icon {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.service-col-title {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: -0.01em;
}

.service-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px;
  transition: border-color 0.25s, background 0.25s;
}
.service-card:hover {
  border-color: rgba(255,255,255,0.1);
  background: var(--bg-card-hover);
}

.service-card-featured {
  border-color: var(--border-accent);
  background: linear-gradient(135deg, var(--bg-card), rgba(0, 212, 255, 0.04));
}

.service-card-accent {
  border-color: rgba(255, 107, 53, 0.2);
  background: linear-gradient(135deg, var(--bg-card), rgba(255, 107, 53, 0.04));
}

.service-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}

.service-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
}

.service-price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
  flex-shrink: 0;
}

.service-badge-popular,
.service-badge-value {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 3px 8px;
  border-radius: 100px;
  flex-shrink: 0;
}
.service-badge-popular {
  background: rgba(0, 212, 255, 0.15);
  color: var(--accent);
  border: 1px solid var(--border-accent);
}
.service-badge-value {
  background: rgba(255, 107, 53, 0.15);
  color: var(--accent-warm);
  border: 1px solid rgba(255, 107, 53, 0.2);
}

.service-desc {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 10px;
}

.service-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--fg-dim);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  padding: 3px 9px;
  border-radius: 100px;
}

/* Add-ons grid */
.service-addons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.addon-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 16px;
  transition: border-color 0.25s;
}
.addon-item:hover { border-color: rgba(255,255,255,0.1); }

.addon-name {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.addon-price {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}

.addon-desc {
  font-size: 0.82rem;
  color: var(--fg-muted);
  line-height: 1.55;
}

.services-cta {
  margin-top: 52px;
  text-align: center;
  border-top: 1px solid var(--border);
  padding-top: 48px;
}

.services-cta p {
  color: var(--fg-muted);
  margin-bottom: 20px;
  font-size: 1rem;
}


/* ====================================================
   GALLERY
   ==================================================== */
.gallery {
  padding: 120px 0;
}

.gallery .section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
}

.gallery-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.gallery-tab {
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 600;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--fg-muted);
  padding: 10px 20px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.2s;
}
.gallery-tab.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #07070f;
}
.gallery-tab:hover:not(.active) {
  border-color: rgba(255,255,255,0.12);
  color: var(--fg);
}

.gallery-project {
  display: none;
}
.gallery-project.active {
  display: block;
}

.project-description {
  margin-bottom: 36px;
}

.project-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-warm);
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.2);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.project-description h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.project-description p {
  color: var(--fg-muted);
  font-size: 0.98rem;
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 20px;
}

.project-specs {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.spec-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.spec-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-dim);
}

.spec-val {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--fg);
}

.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.ba-pair {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ba-photo {
  flex: 1;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
}

.before-photo { opacity: 0.75; }
.after-photo { border-color: var(--border-accent); }

.ba-photo-placeholder {
  width: 100%;
  height: 100%;
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
}

.ph-icon {
  font-size: 2rem;
  margin-bottom: 8px;
}

.ph-label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--fg);
}

.ph-detail {
  font-size: 0.75rem;
  color: var(--fg-dim);
  line-height: 1.4;
}

.ba-photo-label {
  position: absolute;
  bottom: 10px;
  left: 10px;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 4px 10px;
  border-radius: 100px;
}

.before-label {
  background: rgba(0,0,0,0.6);
  color: var(--fg-muted);
  border: 1px solid var(--border);
}

.after-label {
  background: rgba(0, 212, 255, 0.2);
  color: var(--accent);
  border: 1px solid var(--border-accent);
}

.ba-arrow-wrap {
  flex-shrink: 0;
}

.ba-arrow-icon {
  font-size: 1.3rem;
  color: var(--accent);
  font-weight: 700;
}

.gallery-extra-shots {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}

.extra-shot {
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
}

.extra-shot-placeholder {
  width: 100%;
  height: 100%;
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
  padding: 12px;
}

.extra-shot-placeholder .ph-icon { font-size: 1.5rem; }
.extra-shot-placeholder .ph-label { font-size: 0.75rem; font-weight: 600; }


/* ====================================================
   LOYALTY
   ==================================================== */
.loyalty {
  padding: 120px 0;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.loyalty-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.loyalty-content h2 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 20px;
}

.loyalty-desc {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
}

.loyalty-perks {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 40px;
}

.perk-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.perk-icon {
  font-size: 1.2rem;
  width: 32px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--accent);
}

.perk-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.perk-text strong {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--fg);
}

.perk-text span {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

/* Punch card visual */
.loyalty-card-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.punch-card {
  width: 320px;
  background: linear-gradient(135deg, #12122a, #0f0f20);
  border: 1px solid var(--border-accent);
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 12px 60px rgba(0, 212, 255, 0.1);
}

.punch-card-header {
  margin-bottom: 24px;
}

.punch-card-brand {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.punch-card-subtitle {
  font-size: 0.78rem;
  color: var(--fg-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.punch-card-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.punch-slot {
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.3s;
}

.punch-slot.filled {
  background: var(--accent);
  border-color: var(--accent);
}

.punch-slot.pulse-slot {
  background: rgba(0, 212, 255, 0.15);
  border-color: var(--accent);
  animation: slot-pulse 2s ease-in-out infinite;
}

.punch-slot.empty {
  background: rgba(255,255,255,0.02);
}

@keyframes slot-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.3); }
  50% { box-shadow: 0 0 0 6px rgba(0, 212, 255, 0); }
}

.punch-mark {
  font-weight: 700;
  color: #07070f;
  font-size: 0.85rem;
}

.punch-question {
  color: var(--accent);
  font-size: 1rem;
}

.punch-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-weight: 500;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

.punch-card-location {
  font-family: var(--font-display);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-dim);
}

.loyalty-caption {
  font-size: 0.82rem;
  color: var(--fg-dim);
  text-align: center;
  font-style: italic;
}


/* ====================================================
   MEMBERSHIP
   ==================================================== */
.membership {
  padding: 120px 0;
}

.membership-header {
  text-align: center;
  margin-bottom: 60px;
}

.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-warm);
  border: 1px solid rgba(255, 107, 53, 0.25);
  background: rgba(255, 107, 53, 0.08);
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.cs-dot {
  width: 6px;
  height: 6px;
  background: var(--accent-warm);
  border-radius: 50%;
  animation: cs-blink 1.5s ease-in-out infinite;
}

@keyframes cs-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.membership-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 0;
}

.membership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}

.membership-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  opacity: 0.75;
  transition: opacity 0.2s;
}
.membership-card:hover { opacity: 0.9; }

.membership-card-featured {
  border-color: var(--border-accent);
  background: linear-gradient(160deg, var(--bg-card), rgba(0, 212, 255, 0.04));
  opacity: 0.9;
}

.member-tier-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--accent);
  color: #07070f;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.member-tier {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--fg-muted);
  margin-bottom: 12px;
}

.member-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 28px;
}

.member-amount {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  color: var(--fg);
}

.member-period {
  font-size: 0.9rem;
  color: var(--fg-muted);
}

.member-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.member-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--fg);
}

.check {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}
.check.muted { color: var(--fg-dim); }
.muted { color: var(--fg-dim) !important; }

.btn-member-notify {
  width: 100%;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  background: var(--bg-elevated);
  color: var(--fg-dim);
  border: 1px solid var(--border);
  padding: 12px 20px;
  border-radius: 100px;
  cursor: not-allowed;
}

.btn-member-featured {
  background: rgba(0, 212, 255, 0.1);
  color: var(--accent);
  border-color: var(--border-accent);
}

.membership-disclaimer {
  text-align: center;
  font-size: 0.88rem;
  color: var(--fg-dim);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}


/* ====================================================
   CONTACT
   ==================================================== */
.contact {
  padding: 120px 0;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.contact-text h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
}

.contact-desc {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 440px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-detail-icon {
  width: 38px;
  height: 38px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-detail-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-detail-text strong {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--fg-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-detail-text span,
.contact-detail-text a {
  font-size: 0.95rem;
  color: var(--fg);
  text-decoration: none;
}

.contact-link {
  color: var(--accent) !important;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem !important;
}

/* Map placeholder */
.contact-map-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.map-bg {
  width: 100%;
  height: 100%;
  background: var(--bg-card);
  position: relative;
  overflow: hidden;
}

.map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.5;
}

.map-pin-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.map-pin {
  filter: drop-shadow(0 4px 12px rgba(0, 212, 255, 0.4));
  animation: pin-bounce 2s ease-in-out infinite;
}

@keyframes pin-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.map-label-bubble {
  background: var(--bg-elevated);
  border: 1px solid var(--border-accent);
  border-radius: 10px;
  padding: 10px 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.map-label-bubble strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 2px;
}

.map-label-bubble span {
  font-size: 0.78rem;
  color: var(--fg-muted);
}


/* ====================================================
   FOOTER
   ==================================================== */
.site-footer {
  padding: 60px 0 0;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: start;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
}

.footer-logo-mark {
  width: 28px;
  height: 28px;
  background: var(--accent);
  color: #07070f;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 800;
  flex-shrink: 0;
}

.footer-tagline {
  font-size: 0.88rem;
  color: var(--fg-dim);
  margin-bottom: 12px;
}

.footer-phone {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: opacity 0.2s;
}
.footer-phone:hover { opacity: 0.8; }

.footer-links-col {
  display: flex;
  gap: 60px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--fg-dim);
  margin-bottom: 6px;
}

.footer-link {
  font-size: 0.88rem;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-link:hover { color: var(--fg); }

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 20px 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom span {
  font-size: 0.8rem;
  color: var(--fg-dim);
}


/* ====================================================
   MOBILE
   ==================================================== */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 60px;
    gap: 40px;
  }

  .hero-visual { display: none; }

  .services-grid { grid-template-columns: 1fr; }
  .service-column-wide { grid-column: span 1; }
  .service-addons-grid { grid-template-columns: 1fr 1fr; }

  .ba-grid { grid-template-columns: 1fr; }

  .loyalty-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .loyalty-card-visual { order: -1; }

  .membership-grid { grid-template-columns: 1fr; }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .contact-map-wrap { order: -1; }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-links-col { gap: 40px; }
}

@media (max-width: 600px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: flex; }
  .site-nav.nav-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 62px;
    left: 0; right: 0;
    background: rgba(8, 8, 16, 0.97);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px;
    gap: 4px;
    z-index: 200;
  }
  .site-nav.nav-open .nav-cta {
    margin-left: 0;
    text-align: center;
    margin-top: 8px;
  }

  .hero h1 { font-size: 2.4rem; }

  .hero-cta-row { flex-direction: column; align-items: flex-start; }

  .hero-trust {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .trust-divider { display: none; }

  .service-addons-grid { grid-template-columns: 1fr; }

  .ba-pair { flex-direction: column; }
  .ba-arrow-icon { transform: rotate(90deg); display: block; text-align: center; }

  .gallery-extra-shots { grid-template-columns: 1fr 1fr; }

  .punch-card { width: 100%; max-width: 320px; }

  .footer-links-col { flex-direction: column; gap: 28px; }

  .project-specs { flex-direction: column; gap: 12px; }
}
