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

:root {
  --bg: #0b1a2e;
  --bg-alt: #0f2240;
  --cyan: #00d4ff;
  --line: rgba(0, 212, 255, 0.07);
  --rule: rgba(0, 212, 255, 0.22);
  --text: #d8e6f3;
  --white: #fff;
  --muted: #6d8aab;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--cyan); text-decoration: none; }

.bp-grid {
  background-image:
    repeating-linear-gradient(0deg, var(--line) 0 1px, transparent 1px 40px),
    repeating-linear-gradient(90deg, var(--line) 0 1px, transparent 1px 40px);
}

/* ── NAV ───────────────────────────────────── */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--rule);
  padding: 0 1.25rem;
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}

.nav-brand {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-phone {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--cyan);
  letter-spacing: 0.04em;
}

.nav-status {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--muted);
  border: 1px solid var(--rule);
  padding: 0.2rem 0.55rem;
  border-radius: 20px;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--muted);
  flex-shrink: 0;
}

/* ── HERO ──────────────────────────────────── */

.hero {
  padding: 3.5rem 1.25rem 3rem;
  position: relative;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(3rem, 11vw, 5.8rem);
  line-height: 0.92;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: normal;
  color: var(--cyan);
  display: block;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 2rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--cyan);
  color: var(--bg);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.85rem 1.75rem;
  min-height: 48px;
}

.btn-primary:hover {
  background: #33dfff;
  color: var(--bg);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--cyan);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.85rem 1.75rem;
  min-height: 48px;
  border: 1px solid var(--rule);
}

.btn-secondary:hover {
  border-color: var(--cyan);
}

.hero-photo {
  border: 1px solid var(--rule);
  padding: 3px;
}

.hero-photo img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 9;
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: var(--rule);
  border-style: solid;
  pointer-events: none;
}

.hero::before {
  top: 1.25rem;
  left: 1.25rem;
  border-width: 1px 0 0 1px;
}

.hero::after {
  bottom: 1.25rem;
  right: 1.25rem;
  border-width: 0 1px 1px 0;
}

/* ── STATS BAND ────────────────────────────── */

.stats-band {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 1.75rem 1.25rem;
}

.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 3rem;
  justify-content: center;
}

.stat {
  text-align: center;
}

.stat-val {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--cyan);
}

.stat-lbl {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-top: 0.1rem;
}

/* ── SECTIONS (shared) ─────────────────────── */

.section {
  padding: 4rem 1.25rem;
}

.section-alt {
  background: var(--bg-alt);
}

.section-hdr {
  max-width: 1100px;
  margin: 0 auto 2.5rem;
}

.section-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--cyan);
  margin-bottom: 0.4rem;
}

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1.05;
}

/* ── SERVICES ──────────────────────────────── */

.svc-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}

.svc-card {
  background: var(--bg);
  padding: 1.75rem 1.5rem;
}

.svc-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.svc-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── SHOP PHOTO BREAK ──────────────────────── */

.shop-break {
  padding: 0 1.25rem;
}

.shop-break-inner {
  max-width: 1100px;
  margin: 0 auto;
  border: 1px solid var(--rule);
  padding: 3px;
}

.shop-break-inner img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

/* ── REVIEWS ───────────────────────────────── */

.review-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 1.25rem;
}

.review-card {
  border: 1px solid var(--rule);
  padding: 1.75rem 1.5rem;
}

.review-stars {
  color: var(--cyan);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.review-text {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 1rem;
}

.review-author {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

/* ── VISIT ─────────────────────────────────── */

.visit-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}

.visit-map {
  border: 1px solid var(--rule);
  padding: 3px;
}

.visit-map iframe {
  width: 100%;
  height: 280px;
  border: 0;
}

.visit-info h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--cyan);
  margin-bottom: 0.4rem;
  margin-top: 1.5rem;
}

.visit-info h3:first-child {
  margin-top: 0;
}

.visit-info p,
.visit-info address {
  font-style: normal;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.6;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table tr {
  border-bottom: 1px solid var(--line);
}

.hours-table td {
  padding: 0.4rem 0;
  font-size: 0.88rem;
}

.hours-table td:first-child {
  color: var(--muted);
  padding-right: 1.5rem;
}

.hours-table td:last-child {
  color: var(--text);
  text-align: right;
}

/* ── FOOT CTA ──────────────────────────────── */

.foot-cta {
  padding: 4rem 1.25rem;
  text-align: center;
  border-top: 1px solid var(--rule);
}

.foot-cta-inner {
  max-width: 600px;
  margin: 0 auto;
}

.foot-cta h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 7vw, 3.5rem);
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
  margin-bottom: 1rem;
}

.foot-cta p {
  color: var(--muted);
  margin-bottom: 2rem;
}

/* ── FOOTER ────────────────────────────────── */

.footer {
  border-top: 1px solid var(--rule);
  padding: 2rem 1.25rem;
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted);
}

.footer a {
  color: var(--muted);
}

.footer p + p {
  margin-top: 0.3rem;
}

/* ── DESKTOP ───────────────────────────────── */

@media (min-width: 720px) {
  .nav-inner { height: 64px; }
  .nav-brand { font-size: 1.2rem; }

  .hero { padding: 5rem 2rem 4rem; }

  .hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  }

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

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

  .visit-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .visit-map iframe { height: 340px; }

  .shop-break-inner img { height: 320px; }
}

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