:root {
  --bg: #050505;
  --panel: rgba(8, 8, 8, 0.82);
  --panel-strong: rgba(0, 0, 0, 0.92);
  --text: #f2f2f2;
  --muted: #c8c8c8;
  --yellow: #f2c311;
  --yellow-2: #f9d438;
  --red: #c81919;
  --red-2: #ea2b2b;
  --border: rgba(255,255,255,0.08);
  --shadow: 0 16px 40px rgba(0,0,0,0.35);
  --radius: 16px;
  --container: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  color: var(--text);
  background:
    linear-gradient(rgba(0,0,0,0.78), rgba(0,0,0,0.78)),
    url('../img/background.png') center top / cover no-repeat fixed;
}
body.viewer-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(calc(100% - 32px), var(--container)); margin: 0 auto; }
.site-shell { padding: 16px 0 28px; }

.topbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 12px 18px;
  background: rgba(0,0,0,0.84);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow);
  position: sticky;
  top: 10px;
  z-index: 20;
  backdrop-filter: blur(4px);
}
.brand img { width: 210px; }
.nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}
.nav a:hover { color: var(--yellow); }
.call-pill, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform .2s ease, filter .2s ease, background .2s ease;
}
.call-pill:hover, .btn:hover { transform: translateY(-1px); filter: brightness(1.06); }
.call-pill {
  background: linear-gradient(180deg, var(--red-2), var(--red));
  padding: 10px 16px;
  font-size: 1rem;
  white-space: nowrap;
  box-shadow: 0 10px 22px rgba(200,25,25,0.28);
}
.menu-toggle { display: none; }

.hero {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1.03fr 1.25fr;
  min-height: 360px;
  background: linear-gradient(90deg, rgba(0,0,0,.9) 0%, rgba(0,0,0,.83) 36%, rgba(0,0,0,.28) 65%, rgba(0,0,0,.08) 100%);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
}
.hero::before,
.location-section::before,
.services-section::before,
.reviews-section::before,
.gallery-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../img/background.png') center/cover no-repeat;
  opacity: 0.28;
  mix-blend-mode: screen;
  pointer-events: none;
}
.hero-copy, .hero-media, .location-copy, .location-media,
.services-section, .reviews-section, .gallery-section { position: relative; z-index: 1; }
.hero-copy {
  padding: 26px 28px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  color: var(--yellow);
  font-weight: 700;
  letter-spacing: .02em;
  font-size: .95rem;
}
.hero h1, h2 {
  margin: 0;
  font-family: 'Barlow Condensed', sans-serif;
  line-height: .96;
  letter-spacing: -0.02em;
}
.hero h1 { font-size: clamp(3rem, 5vw, 4.4rem); max-width: 460px; }
.hero h1 .highlight, .location-copy h2 .highlight { color: var(--yellow); }
.hero p { margin: 2px 0 0; color: var(--muted); max-width: 430px; line-height: 1.5; }
.hero-actions { display: flex; gap: 12px; margin-top: 8px; flex-wrap: wrap; }
.btn { padding: 12px 18px; font-size: 1.45rem; }
.btn-primary { background: linear-gradient(180deg, var(--yellow-2), var(--yellow)); color: #111; }
.btn-secondary { background: rgba(35,35,35,.92); border: 1px solid rgba(255,255,255,.12); color: #fff; }
.btn-danger { background: linear-gradient(180deg, var(--red-2), var(--red)); color: #fff; box-shadow: 0 12px 24px rgba(200,25,25,0.25); }
.hero-media {
  position: relative;
  min-height: 100%;
}
.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.96) 0%, rgba(0,0,0,0.76) 12%, rgba(0,0,0,0.34) 28%, rgba(0,0,0,0.0) 46%);
  z-index: 1;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
  filter: saturate(.9) contrast(1.02);
}
.accent-stripes {
  width: 135px;
  height: 22px;
  margin-top: 8px;
  background: repeating-linear-gradient(-25deg, #cf1f1f 0 18px, transparent 18px 26px);
}
.location-section {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(0,0,0,.78);
  box-shadow: var(--shadow);
  position: relative;
}
.panel { position: relative; z-index: 1; }
.location-copy {
  padding: 24px 24px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 320px;
}
.location-copy h2 { font-size: clamp(2.7rem, 4.5vw, 4rem); }
.address { margin: 8px 0 0; font-size: clamp(1.25rem, 2vw, 1.7rem); font-weight: 700; }
.stack-buttons { display: flex; flex-direction: column; gap: 14px; margin-top: 18px; align-items: flex-start; }
.hours { color: var(--muted); line-height: 1.8; font-size: 1rem; }
.btn-phone { min-width: 205px; }
.location-media {
  position: relative;
  min-height: 320px;
}
.location-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.86) 0%, rgba(0,0,0,.25) 30%, rgba(0,0,0,0) 55%);
  z-index: 1;
}
.location-media img { width: 100%; height: 100%; object-fit: cover; object-position: center center; }

.services-section, .reviews-section, .gallery-section {
  margin-top: 18px;
  padding: 22px 22px 24px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(0,0,0,.78);
  box-shadow: var(--shadow);
  position: relative;
}
.center { text-align: center; }
.section-head { margin-bottom: 16px; }
.section-head h2 { font-size: clamp(2.6rem, 4.2vw, 4.1rem); }
.section-copy {
  margin: 8px auto 0;
  max-width: 660px;
  color: var(--muted);
  line-height: 1.6;
  font-size: 1rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.service-card, .review-card {
  background: rgba(21,21,21,.86);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 16px;
  min-height: 150px;
}
.service-icon {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--yellow);
  display: inline-block;
  margin-bottom: 12px;
}
.service-card h3, .review-card h3 {
  margin: 0 0 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.9rem;
  line-height: 1;
}
.service-card p, .review-card p { margin: 0; color: var(--muted); line-height: 1.45; font-size: .95rem; }
.section-cta-wrap { display: flex; justify-content: center; margin-top: 14px; }

.reviews-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.stars { color: var(--yellow); letter-spacing: 2px; margin-bottom: 12px; font-size: 1rem; }
.reviews-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.rating-block {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  color: var(--yellow);
}
.gallery-head { margin-bottom: 20px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.gallery-card {
  position: relative;
  width: 100%;
  padding: 0;
  appearance: none;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(22,22,22,.96), rgba(6,6,6,.96));
  box-shadow: 0 18px 34px rgba(0,0,0,.25);
  cursor: pointer;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 18%, rgba(0,0,0,.16) 100%);
  opacity: .72;
  pointer-events: none;
  transition: opacity .22s ease;
}
.gallery-card-frame {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.92) contrast(1.04);
  transition: transform .35s ease, filter .35s ease;
}
.gallery-card:hover,
.gallery-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(242,195,17,.45);
  box-shadow: 0 24px 42px rgba(0,0,0,.42);
}
.gallery-card:hover::after,
.gallery-card:focus-visible::after { opacity: .38; }
.gallery-card:hover img,
.gallery-card:focus-visible img {
  transform: scale(1.04);
  filter: saturate(1) contrast(1.06);
}
.gallery-card:focus-visible {
  outline: 2px solid rgba(242,195,17,.88);
  outline-offset: 3px;
}
.gallery-viewer {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0,0,0,.82);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .24s ease, visibility .24s ease;
  z-index: 50;
}
.gallery-viewer.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.gallery-viewer-panel {
  position: relative;
  width: min(100%, 1080px);
  max-height: calc(100vh - 48px);
  padding: 0 56px;
  pointer-events: none;
}
.gallery-viewer-frame {
  display: grid;
  place-items: center;
  min-height: min(72vh, 780px);
}
.gallery-viewer-frame img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: calc(100vh - 132px);
  object-fit: contain;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.08);
  background: #050505;
  box-shadow: 0 32px 70px rgba(0,0,0,.6);
  pointer-events: auto;
}
.gallery-viewer-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: rgba(18,18,18,.95);
  color: #fff;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  pointer-events: auto;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.gallery-viewer-close:hover,
.gallery-viewer-close:focus-visible {
  transform: scale(1.04);
  background: rgba(200,25,25,.94);
  border-color: rgba(255,255,255,.28);
}
.gallery-viewer-close:focus-visible {
  outline: 2px solid rgba(242,195,17,.88);
  outline-offset: 2px;
}
.gallery-viewer-meta {
  margin-top: 10px;
  text-align: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  letter-spacing: .08em;
  color: var(--yellow);
  pointer-events: auto;
}
.footer {
  margin-top: 18px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(0,0,0,.86);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  box-shadow: var(--shadow);
}
.footer-left img { width: 170px; margin-bottom: 10px; }
.footer-left p { margin: 6px 0; color: var(--muted); }
.footer-right { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }
.footer-powered {
  grid-column: 1 / -1;
  text-align: center;
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-family: 'Barlow Condensed', sans-serif;
  color: var(--yellow);
  font-size: 1rem;
  letter-spacing: .03em;
}

@media (max-width: 980px) {
  :root { --container: 920px; }
  .topbar { grid-template-columns: auto 1fr auto; }
  .nav { gap: 14px; font-size: 1rem; }
  .hero, .location-section { grid-template-columns: 1fr; }
  .hero { min-height: unset; }
  .hero-copy { padding-bottom: 8px; }
  .hero-media { min-height: 300px; }
  .hero-media::before,
  .location-media::before {
    background: linear-gradient(180deg, rgba(0,0,0,.86) 0%, rgba(0,0,0,.42) 32%, rgba(0,0,0,0) 68%);
  }
  .location-media { min-height: 360px; }
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .reviews-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .site-shell { padding-top: 10px; }
  .topbar {
    grid-template-columns: auto auto auto;
    gap: 10px;
    padding: 12px;
  }
  .brand img { width: 160px; }
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px; height: 42px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(25,25,25,.9);
    color: #fff;
    font-size: 1.1rem;
    justify-self: end;
  }
  .nav {
    display: none;
    position: absolute;
    left: 12px; right: 12px; top: calc(100% + 8px);
    flex-direction: column;
    align-items: flex-start;
    background: rgba(0,0,0,.95);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 12px;
    padding: 14px;
  }
  .nav.open { display: flex; }
  .desktop-call { font-size: .92rem; padding: 8px 10px; }
  .hero { margin-top: 12px; }
  .hero-copy { padding: 18px 16px 12px; }
  .hero h1 { font-size: clamp(2.6rem, 10vw, 4rem); max-width: 290px; }
  .hero p { max-width: 290px; font-size: .95rem; }
  .hero-media { min-height: 220px; }
  .hero-media img { object-position: center center; }
  .hero-actions { gap: 10px; }
  .btn { font-size: 1.2rem; padding: 11px 14px; }
  .accent-stripes { width: 110px; height: 18px; }
  .location-copy, .services-section, .reviews-section, .gallery-section, .footer { padding: 18px 16px; }
  .location-copy h2, .section-head h2 { font-size: clamp(2.2rem, 9vw, 3.2rem); }
  .section-copy { font-size: .95rem; }
  .address { font-size: 1.2rem; }
  .location-media { min-height: 250px; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; gap: 12px; }
  .gallery-viewer { padding: 16px; }
  .gallery-viewer-panel { padding: 0 42px; }
  .gallery-viewer-frame { min-height: auto; }
  .gallery-viewer-frame img { max-height: calc(100vh - 110px); }
  .footer { grid-template-columns: 1fr; }
  .footer-right { justify-content: flex-start; }
}
