:root {
  --bg: #0B0B0D;
  --bg-2: #17181C;
  --line: #26282e;
  --text: #ffffff;
  --muted: #9aa0ab;
  --chrome: #C9CED6;
  --accent: #1F6BFF;
  --accent-text: #4DA3FF;
  --radius: 8px;
  --cut: 70px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 70px; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 400 1rem/1.6 Inter, system-ui, sans-serif;
}
a { color: inherit; }
h1, h2, .btn, .eyebrow { font-family: 'Archivo Black', Impact, sans-serif; text-transform: uppercase; font-weight: 400; letter-spacing: .02em; }

.site-header {
  position: sticky; top: 0; z-index: 10;
  display: flex; align-items: center; justify-content: space-between;
  padding: .6rem 1rem;
  background: rgba(11,11,13,.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}
.logo { display: flex; align-items: center; gap: .75rem; line-height: 0; text-decoration: none; }
.logo img { height: 28px; width: auto; display: block; }
.logo-word { padding-left: .75rem; border-left: 1px solid var(--line); box-sizing: content-box; }
@media (max-width: 400px) { .logo img { height: 24px; } .logo { gap: .5rem; } .logo-word { padding-left: .5rem; } }
.nav-toggle { background: none; border: 0; color: var(--text); font-size: 1.6rem; cursor: pointer; }
.nav { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; gap: 1rem; padding: 1rem; background: var(--bg); border-bottom: 1px solid var(--line); }
.nav.open { display: flex; }
.nav a { text-decoration: none; color: var(--chrome); }
.nav a:hover { color: #fff; }

.btn {
  display: inline-block; padding: .85rem 1.6rem;
  background: var(--accent); color: #fff; text-decoration: none;
  border-radius: var(--radius); font-size: 1rem;
  border: 2px solid var(--accent);
  box-shadow: 0 0 24px rgba(31,107,255,.45);
}
.btn-small { padding: .45rem 1rem; font-size: .85rem; text-align: center; box-shadow: none; }
.btn-ghost { background: transparent; border-color: #fff; box-shadow: none; }
.btn:hover { background: #3a7fff; border-color: #3a7fff; }
.btn-ghost:hover { background: rgba(255,255,255,.1); border-color: #fff; }

.hero {
  min-height: 86vh; display: flex; align-items: center;
  padding: 3rem 1rem calc(var(--cut) + 4rem);
  background:
    linear-gradient(100deg, rgba(11,11,13,.94) 0%, rgba(11,11,13,.78) 45%, rgba(11,11,13,.45) 100%),
    url("../images/hero-shop.webp") center 45%/cover,
    var(--bg-2);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--cut)), 0 100%);
}
.hero-inner { max-width: 1000px; margin: 0 auto; width: 100%; }
.eyebrow { color: var(--accent-text); letter-spacing: .18em; font-size: .8rem; margin: 0 0 .75rem; font-family: Inter, sans-serif; font-weight: 700; }
h1 { font-size: clamp(2.6rem, 10vw, 5.6rem); line-height: .98; margin: 0 0 1rem; text-shadow: 0 2px 18px rgba(0,0,0,.6); }
h1 span { color: var(--accent); text-shadow: 0 0 28px rgba(31,107,255,.65); }
.lead { color: #d3d7de; max-width: 520px; font-size: 1.1rem; text-shadow: 0 2px 12px rgba(0,0,0,.6); }
.cta-row { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.5rem; }
.open-status { margin-top: 1.25rem; font-weight: 600; }
.open-status.is-open { color: #4cc26b; }
.open-status.is-closed { color: var(--chrome); }

.cut-line {
  height: var(--cut); margin-top: calc(var(--cut) * -1); position: relative; z-index: 2; pointer-events: none;
  background: linear-gradient(to bottom right, transparent calc(50% - 2.5px), var(--accent) calc(50% - 1px), var(--accent) calc(50% + 1px), transparent calc(50% + 2.5px));
  filter: drop-shadow(0 0 8px rgba(77,163,255,.9));
}

.section { max-width: 900px; margin: 0 auto; padding: 3.5rem 1rem; }
h2 { font-size: clamp(1.6rem, 5vw, 2.2rem); margin: 0 0 1.5rem; }
h2::after { content: ""; display: block; width: 56px; height: 4px; margin-top: .6rem; background: var(--accent); transform: skewX(-30deg); box-shadow: 0 0 12px rgba(77,163,255,.8); }
.note { color: var(--muted); font-size: .9rem; }
.note a { color: var(--accent-text); }

.services { list-style: none; margin: 0; padding: 0; }
.services li { display: flex; justify-content: space-between; padding: 1rem 0; border-bottom: 1px solid var(--line); font-size: 1.15rem; }
.price { color: var(--accent-text); font-weight: 700; }

.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: .5rem; }
.tile { padding: 0; border: 0; background: var(--bg-2); border-radius: var(--radius); overflow: hidden; aspect-ratio: 1; cursor: pointer; position: relative; }
.tile::after { content: "Photo coming soon"; position: absolute; inset: 0; display: grid; place-items: center; color: var(--muted); font-size: .85rem; z-index: 0; }
.tile img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover; display: block; background: var(--bg-2); }
.tile img.missing { display: none; }

.reviews { padding-top: 0; }
.review-badge { display: flex; align-items: center; gap: 1rem; background: var(--bg-2); padding: 1.25rem 1.5rem; border-radius: var(--radius); border-left: 4px solid var(--accent); box-shadow: -8px 0 24px -12px rgba(31,107,255,.7); }
.review-badge strong { font-family: 'Archivo Black', Impact, sans-serif; font-weight: 400; font-size: 3rem; line-height: 1; color: var(--accent-text); }
.review-badge span { color: var(--chrome); }

.hours { width: 100%; border-collapse: collapse; }
.hours td { padding: .6rem 0; border-bottom: 1px solid var(--line); }
.hours td:last-child { text-align: right; }
.hours tr.today { color: var(--accent-text); font-weight: 600; }

.find { display: grid; gap: 1.5rem; }
address { font-style: normal; }
address a { color: var(--accent-text); }
iframe { width: 100%; height: 300px; border: 0; border-radius: var(--radius); filter: grayscale(.4) invert(.9) hue-rotate(180deg); }

.site-footer { display: flex; flex-direction: column; align-items: center; gap: .75rem; text-align: center; padding: 2rem 1rem 2.5rem; color: var(--muted); border-top: 1px solid var(--line); }
.site-footer img { height: 34px; width: auto; }
.site-footer p { margin: 0; }
.site-footer .credit { font-size: .8rem; opacity: .7; }

.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,.92); display: grid; place-items: center; z-index: 20; padding: 1rem; cursor: zoom-out; }
.lightbox[hidden] { display: none; }
.lightbox img { max-width: 100%; max-height: 100%; border-radius: var(--radius); }

@media (min-width: 720px) {
  .nav-toggle { display: none; }
  .nav { display: flex; position: static; flex-direction: row; align-items: center; padding: 0; border: 0; background: none; gap: 1.25rem; }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .find { grid-template-columns: 1fr 2fr; }
}
