:root {
  --bg: #0d0d0d;
  --surface: #141414;
  --card: #1c1c1c;
  --accent: #e8711a;
  --accent-glow: #ff8c38;
  --text: #f0ece6;
  --text-dim: #8a8580;
  --border: #272727;
}

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

html { scroll-behavior: smooth; }

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

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13,13,13,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 1rem;
}

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

.nav-brand {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
}

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

.nav-status {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--text-dim);
}

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

.nav-call {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.85rem;
  min-height: 44px;
  transition: background 0.2s;
}

.nav-call:hover { background: var(--accent-glow); }

.nav-call svg { flex-shrink: 0; }

/* HERO */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  padding: 2rem 1rem 3rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('img/photo-01.jpg') center 30%/cover no-repeat;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,13,13,0.4) 0%,
    rgba(13,13,13,0.65) 45%,
    rgba(13,13,13,0.95) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(3.2rem, 12vw, 7.5rem);
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

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

.hero-sub {
  font-size: clamp(0.95rem, 2.5vw, 1.2rem);
  color: var(--text-dim);
  max-width: 460px;
  margin-bottom: 2rem;
  line-height: 1.55;
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1rem;
  min-height: 44px;
  transition: background 0.2s;
}

.btn-primary:hover { background: var(--accent-glow); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--text);
  text-decoration: none;
  padding: 0.85rem 2rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-weight: 500;
  font-size: 1rem;
  min-height: 44px;
  transition: border-color 0.2s, color 0.2s;
}

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

/* STATS BAND */
.stats-band {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 1rem;
}

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

.stat {
  text-align: center;
  flex: 1;
  min-width: 120px;
}

.stat-value {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--accent);
  line-height: 1.1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.3rem;
}

/* SECTIONS */
.section {
  padding: 4rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 2rem;
}

/* SERVICES */
.svc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.svc-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2rem;
  transition: border-color 0.3s;
}

.svc-card:hover { border-color: var(--accent); }

.svc-bar {
  width: 36px;
  height: 3px;
  background: var(--accent);
  margin-bottom: 1.25rem;
  border-radius: 2px;
}

.svc-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}

.svc-card p {
  color: var(--text-dim);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* TESTIMONIALS */
.testimonials-bg {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 4rem 1rem;
}

.testimonials-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.review-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.review-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.75rem;
}

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

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

.review-author {
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* VISIT */
.visit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.visit-block { margin-bottom: 1.5rem; }

.visit-block h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.6rem;
  color: var(--accent);
}

.visit-block p,
.visit-block a {
  color: var(--text-dim);
  font-size: 0.92rem;
  text-decoration: none;
  line-height: 1.7;
}

.visit-block a:hover { color: var(--accent); }

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

.hours-table td {
  padding: 0.35rem 0;
  font-size: 0.88rem;
  color: var(--text-dim);
  border-bottom: 1px solid var(--border);
}

.hours-table td:last-child { text-align: right; }

.map-wrap {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.map-wrap iframe {
  width: 100%;
  height: 280px;
  border: 0;
  filter: grayscale(0.3) brightness(0.85);
}

/* FOOT CTA */
.foot-cta {
  padding: 5rem 1rem;
  text-align: center;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.foot-cta-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 7vw, 4rem);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  line-height: 1;
}

.foot-cta-title .accent { color: var(--accent); }

.foot-cta-phone {
  display: block;
  color: var(--text-dim);
  font-size: 0.95rem;
  margin-top: 1rem;
  text-decoration: none;
}

.foot-cta-phone:hover { color: var(--accent); }

/* FOOTER */
.footer {
  padding: 2rem 1rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer p {
  font-size: 0.78rem;
  color: var(--text-dim);
  line-height: 1.8;
}

.footer a {
  color: var(--text-dim);
  text-decoration: none;
}

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

/* DESKTOP */
@media (min-width: 720px) {
  .nav-inner { height: 70px; }
  .hero { padding: 4rem 2rem 5rem; }
  .section { padding: 5rem 2rem; }
  .svc-grid { grid-template-columns: repeat(3, 1fr); }
  .review-grid { grid-template-columns: repeat(2, 1fr); }
  .visit-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .map-wrap iframe { height: 380px; }
  .testimonials-bg { padding: 5rem 2rem; }
  .stats-band { padding: 3rem 2rem; }
}

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