/* ============================================================
   Unity Barbershop
   ------------------------------------------------------------
   Asphalt   #121016   page background
   Concrete  #191622   cards, surfaces
   Chalk     #EEEAF4   text
   Smoke     #A09AAC   muted text
   Neon Green #22C55E  primary accent (shop-sign neon)
   Sage      #86EFAC   secondary accent
   ============================================================ */

:root {
  --bg: #121016;
  --surface: #191622;
  --surface-2: #201c2b;
  --line: #2e2938;
  --text: #eeeaf4;
  --muted: #a09aac;
  --accent: #22c55e;
  --accent-deep: #15803d;
  --accent-2: #86efac;
  --font-display: "Anton", "Arial Narrow", sans-serif;
  --font-body: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "Space Mono", "Courier New", monospace;
  --maxw: 1140px;
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

button,
a.btn,
.filter-bar button,
.nav-toggle {
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(34, 197, 94, 0.25);
}

/* subtle grain so the dark isn't flat */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.05;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/></filter><rect width='120' height='120' filter='url(%23n)' opacity='0.6'/></svg>");
}

img { max-width: 100%; display: block; }
a { color: var(--accent); text-underline-offset: 3px; }

a:focus-visible, button:focus-visible {
  outline: 3px solid var(--accent-2);
  outline-offset: 2px;
  border-radius: 3px;
}

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; position: relative; z-index: 2; }

/* ---- Type ---- */
h1, h2, h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 0.94;
  margin: 0 0 0.4em;
}
h1 { font-size: clamp(3.4rem, 10vw, 7rem); }
h2 { font-size: clamp(2.2rem, 5vw, 3.6rem); line-height: 1.08; }
h3 { font-size: 1.3rem; letter-spacing: 0.05em; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-block;
  width: fit-content;
  align-self: flex-start;
  border: 1px solid var(--accent);
  padding: 6px 12px 5px;
  margin-bottom: 18px;
}

.lead { font-size: 1.1rem; color: var(--muted); max-width: 58ch; }
.lead a { color: var(--text); }

.section { padding: 92px 0; position: relative; }
.section.tight { padding: 60px 0; }
.section.alt { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* ---- Signature: street ticker ---- */
/* Tickers are off for now. Remove this rule to bring them back. */
.ticker { display: none; }

.ticker {
  overflow: hidden;
  background: var(--accent);
  color: #121016;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  position: relative;
  z-index: 3;
}
.ticker.invert { background: var(--surface-2); color: var(--text); }
.ticker .track {
  display: flex;
  width: max-content;
  white-space: nowrap;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  padding: 10px 0 9px;
}
.ticker .track span { padding: 0 26px; }
.ticker .track span::after { content: "\2605"; margin-left: 52px; font-size: 0.8em; }
@media (prefers-reduced-motion: no-preference) {
  .ticker .track { animation: ticker-run 28s linear infinite; }
  @keyframes ticker-run { to { transform: translateX(-50%); } }
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 1.02rem;
  padding: 15px 28px 13px;
  border: 1px solid var(--text);
  background: var(--text);
  color: var(--bg);
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.12s ease, background 0.12s ease, color 0.12s ease, box-shadow 0.12s ease;
}
.btn.accent { background: var(--accent); border-color: var(--accent); color: #121016; }
.btn.ghost { background: transparent; color: var(--text); }
@media (hover: hover) and (pointer: fine) {
  .btn:hover { transform: translate(-2px, -2px); box-shadow: 4px 4px 0 var(--accent); }
  .btn.accent:hover { box-shadow: 4px 4px 0 var(--text); }
  .btn.ghost:hover { background: var(--text); color: var(--bg); }
}

/* ---- Header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(18, 16, 22, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
}
.brand {
  font-family: var(--font-display);
  font-size: 1.6rem;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  line-height: 1;
  letter-spacing: 0.03em;
}
.brand small {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.34em;
  color: var(--accent);
  margin-top: 4px;
}
.nav { display: flex; align-items: center; gap: 26px; }
.nav a {
  font-weight: 500;
  font-size: 0.98rem;
  color: var(--text);
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}
.nav a:hover { border-bottom-color: var(--line); }
.nav a[aria-current="page"] { border-bottom-color: var(--accent); }
.nav .btn { padding: 11px 18px 9px; font-size: 0.9rem; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--text);
  color: var(--text);
  min-width: 48px;
  min-height: 48px;
  padding: 10px 14px;
  font-family: var(--font-display);
  text-transform: uppercase;
  cursor: pointer;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
}

.header-status {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.open-chip { display: inline-flex; align-items: center; gap: 8px; }
.open-chip .dot { width: 9px; height: 9px; border-radius: 50%; background: #565064; }
.open-chip.is-open .dot { background: #4ade80; box-shadow: 0 0 10px rgba(74, 222, 128, 0.8); }
.open-chip.is-closed .dot { background: var(--accent); box-shadow: 0 0 10px rgba(34, 197, 94, 0.7); }

/* ---- Hero ---- */
.hero {
  padding: 56px 0 72px;
  overflow: hidden;
  position: relative;
}
.hero .backdrop {
  position: absolute;
  top: 4%;
  left: 6%;
  transform: none;
  font-family: var(--font-display);
  font-size: clamp(8rem, 18vw, 16rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--line);
  text-transform: uppercase;
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}
.hero .wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(56px, 7vw, 96px);
  align-items: stretch;
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
}
.hero h1 {
  font-size: clamp(2.55rem, 4.2vw, 4.35rem);
  line-height: 0.92;
  max-width: none;
  letter-spacing: 0.02em;
  margin: 0 0 0.35em;
}
.hero h1 span {
  display: block;
  white-space: nowrap;
}
.hero .lead { max-width: 38ch; }
.hero h1 .accent { color: var(--accent); text-shadow: 0 0 18px rgba(34, 197, 94, 0.32); }
.hero-points { list-style: none; padding: 0; margin: 26px 0 32px; display: grid; gap: 10px; font-weight: 500; }
.hero-points li { display: flex; gap: 12px; align-items: flex-start; }
.hero-points li::before {
  content: "";
  width: 18px;
  height: 18px;
  flex: none;
  margin-top: 0.28em;
  background-color: var(--accent);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='6' cy='6' r='3'/%3E%3Ccircle cx='6' cy='18' r='3'/%3E%3Cline x1='20' y1='4' x2='8.12' y2='15.88'/%3E%3Cline x1='14.47' y1='14.48' x2='20' y2='20'/%3E%3Cline x1='8.12' y1='8.12' x2='12' y2='12'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='6' cy='6' r='3'/%3E%3Ccircle cx='6' cy='18' r='3'/%3E%3Cline x1='20' y1='4' x2='8.12' y2='15.88'/%3E%3Cline x1='14.47' y1='14.48' x2='20' y2='20'/%3E%3Cline x1='8.12' y1='8.12' x2='12' y2='12'/%3E%3C/svg%3E") center / contain no-repeat;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-note { margin-top: 20px; font-family: var(--font-mono); font-size: 0.78rem; color: var(--muted); letter-spacing: 0.04em; }

.hero-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  min-height: 540px;
  height: 100%;
  align-self: stretch;
}
.hero-collage figure {
  margin: 0;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--line);
  background: var(--surface);
  min-height: 0;
}
.hero-collage figure:first-child { grid-row: span 2; }
.hero-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  filter: grayscale(0.55) contrast(1.08);
  transition: filter 0.35s ease, transform 0.35s ease;
}
.hero-collage figure:first-child img { object-position: 36% 42%; }
.hero-collage figure.is-tight-fades img { object-position: 34% 48%; }
.hero-collage figure:nth-child(2) img { object-position: 40% 18%; }
.hero-collage figure:nth-child(3) img { object-position: 55% 12%; }
.hero-collage figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 36px 16px 14px;
  background: linear-gradient(transparent, rgba(18, 16, 22, 0.92) 62%);
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 1.2rem;
  line-height: 1;
  color: var(--text);
}
.hero-collage figure:first-child figcaption { font-size: 1.55rem; padding: 48px 18px 16px; }
.hero-collage figcaption::after {
  content: "";
  display: block;
  width: 36px;
  height: 3px;
  margin-top: 10px;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.7);
}

/* ---- Menu boards ---- */
.menu-board {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 34px 34px 26px;
  position: relative;
}
.menu-board + .menu-board { margin-top: 26px; }
.menu-board h3 {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid var(--text);
  padding-bottom: 12px;
  margin-bottom: 8px;
}
.menu-board h3 .tag {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: var(--accent-2);
}
.menu-item { padding: 17px 0; border-bottom: 1px dashed var(--line); }
.menu-item:last-of-type { border-bottom: 0; }
.menu-item .row { display: flex; align-items: baseline; gap: 12px; }
.menu-item .name { font-weight: 700; font-size: 1.05rem; }
.menu-item .leader { flex: 1; border-bottom: 1px dotted #4c4658; transform: translateY(-4px); }
.menu-item .price { font-family: var(--font-mono); font-weight: 700; font-size: 1.1rem; color: var(--accent); white-space: nowrap; }
.menu-item .desc { color: var(--muted); font-size: 0.95rem; margin: 5px 0 0; }
.menu-item .meta { font-family: var(--font-mono); font-size: 0.74rem; color: var(--accent-2); margin: 7px 0 0; letter-spacing: 0.08em; }
.menu-item.popular .name::after {
  content: "Most booked";
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #121016;
  background: var(--accent);
  padding: 4px 9px 3px;
  margin-left: 12px;
  vertical-align: 3px;
  display: inline-block;
  transform: rotate(-2deg);
}
.price-note { margin-top: 18px; font-family: var(--font-mono); font-size: 0.76rem; color: var(--muted); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

.info-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 3px solid var(--accent);
  padding: 26px;
}
.info-card h3 { margin-bottom: 10px; }
.info-card p { margin: 0; color: var(--muted); }

/* ---- Gallery ---- */
.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; margin: 28px 0 4px; }
.filter-bar button {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid var(--text);
  color: var(--text);
  padding: 10px 18px 9px;
  cursor: pointer;
}
.filter-bar button[aria-pressed="true"] { background: var(--accent); border-color: var(--accent); color: #121016; }

.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.gallery-grid a { display: block; overflow: hidden; border: 1px solid var(--line); background: var(--surface); }
.gallery-grid img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  filter: grayscale(0.85) contrast(1.08);
  transition: filter 0.3s ease, transform 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .gallery-grid a:hover img, .gallery-grid a:focus-visible img { filter: none; transform: scale(1.05); }
  .hero-collage figure:hover img { filter: none; transform: scale(1.03); }
  .hero-collage figure:hover figcaption { color: var(--accent); }
}
@media (hover: none) {
  .gallery-grid img,
  .hero-collage img {
    filter: grayscale(0.25) contrast(1.04);
  }
}
.gallery-more { text-align: center; margin-top: 36px; }
.gallery-count { font-family: var(--font-mono); font-size: 0.76rem; color: var(--muted); text-align: center; margin-top: 14px; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(12, 10, 15, 0.94);
  display: none; align-items: center; justify-content: center;
  z-index: 100; padding: 30px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: min(92vw, 920px); max-height: 84vh; border: 1px solid var(--line); }
.lightbox button {
  position: absolute;
  background: rgba(238, 234, 244, 0.08);
  color: var(--text);
  border: 1px solid var(--line);
  font-size: 1.4rem;
  line-height: 1;
  padding: 12px 16px;
  cursor: pointer;
}
.lightbox .lb-close { top: 22px; right: 22px; }
.lightbox .lb-prev { left: 22px; top: 50%; transform: translateY(-50%); }
.lightbox .lb-next { right: 22px; top: 50%; transform: translateY(-50%); }

/* ---- Hours ---- */
.hours-table { width: 100%; border-collapse: collapse; font-family: var(--font-mono); font-size: 0.9rem; }
.hours-table td { padding: 10px 0; border-bottom: 1px dashed var(--line); }
.hours-table td:last-child { text-align: right; }
.hours-table tr.today td { color: var(--accent); font-weight: 700; }
.hours-table td.closed { color: var(--muted); }

/* ---- FAQ ---- */
.faq details { background: var(--surface); border: 1px solid var(--line); padding: 0 22px; margin-bottom: 12px; }
.faq summary {
  cursor: pointer; font-weight: 700; padding: 18px 0;
  list-style: none; display: flex; justify-content: space-between; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--font-display); font-size: 1.3rem; color: var(--accent); }
.faq details[open] summary::after { content: "\2013"; }
.faq details p { margin: 0 0 18px; color: var(--muted); }

/* ---- CTA band ---- */
.cta-band { text-align: center; background: var(--surface); border-top: 1px solid var(--line); }
.cta-band .phone {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 7vw, 4.4rem);
  color: var(--text);
  text-decoration: none;
  display: inline-block;
  margin: 10px 0 22px;
  border-bottom: 5px solid var(--accent);
  text-shadow: 0 0 34px rgba(34, 197, 94, 0.35);
}

/* ---- Footer ---- */
.site-footer {
  background: #0d0b11;
  color: var(--muted);
  padding: 64px 0 32px;
  border-top: 1px solid var(--line);
}
.site-footer .cols {
  display: grid;
  grid-template-columns: 1.5fr 0.85fr 1.15fr;
  gap: 48px;
  align-items: start;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}
.site-footer h3 {
  color: var(--text);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  margin: 0 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}
.site-footer a {
  color: var(--text);
  text-decoration: none;
}
.site-footer a:hover,
.site-footer a:focus-visible { color: var(--accent); }
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.site-footer .foot-brand .brand { font-size: 1.38rem; }
.site-footer .foot-brand p {
  margin: 16px 0 0;
  max-width: 36ch;
}
.site-footer .fine {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 22px;
  font-family: var(--font-mono);
  font-size: 0.74rem;
}

/* ---- Reveal ---- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .btn, .gallery-grid img, .hero-collage img { transition: none; }
}

/* ---- Inner page hero ---- */
.page-hero { padding: 72px 0 52px; border-bottom: 1px solid var(--line); position: relative; overflow: hidden; }
.page-hero .backdrop {
  position: absolute; top: -6px; right: -10px;
  font-family: var(--font-display);
  font-size: clamp(6rem, 18vw, 13rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--line);
  text-transform: uppercase;
  pointer-events: none;
  user-select: none;
}

/* ---- 404 ---- */
.error-page { text-align: center; padding: 120px 0; }
.error-page .code {
  font-family: var(--font-display);
  font-size: clamp(7rem, 24vw, 15rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px var(--accent);
  text-shadow: 0 0 60px rgba(34, 197, 94, 0.25);
}

/* ---- Mobile call bar ---- */
.mobile-callbar {
  display: none;
}

/* ---- Responsive ---- */
@media (max-width: 960px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 36px; }
  .hero { padding: 56px 0 48px; }
  .hero-copy { padding-right: 0; justify-content: flex-start; }
  .hero h1 { max-width: none; }
  .hero .lead { max-width: none; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .site-footer .cols { grid-template-columns: 1fr; }
  .header-status { display: none; }
  .hero-collage {
    height: auto;
    min-height: 0;
    grid-template-columns: 1.15fr 1fr 1fr;
    grid-template-rows: auto;
    gap: 8px;
  }
  .hero-collage figure:first-child { grid-row: auto; }
  .hero-collage img {
    aspect-ratio: 3 / 4;
    height: auto;
  }
  .hero-collage figcaption,
  .hero-collage figure:first-child figcaption {
    font-size: 0.95rem;
    padding: 28px 12px 10px;
  }

  .site-header {
    padding-top: env(safe-area-inset-top);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: #121016;
  }
  .site-header .wrap {
    min-height: 64px;
    gap: 12px;
  }
  /* Mobile chrome is the tab bar, not a hamburger overlay */
  .nav,
  .nav-toggle { display: none; }
  html { overflow-x: hidden; }
}

@media (max-width: 720px) {
  .wrap { padding: 0 16px; }
  h1 { font-size: clamp(2.55rem, 12vw, 3.6rem); }
  .hero h1 { font-size: clamp(2.55rem, 12vw, 3.6rem); }
  h2 { font-size: clamp(1.85rem, 8vw, 2.6rem); }
  .lead { font-size: 1.02rem; }
  .hero .backdrop { font-size: 28vw; top: 28px; opacity: 0.7; }
  .page-hero { padding: 40px 0 32px; }
  .page-hero .backdrop { font-size: 26vw; }
  .error-page { padding: 72px 0 48px; }

  .brand { font-size: 1.28rem; }

  body > .ticker { display: none; }

  .hero-cta { flex-direction: column; }
  .hero-cta .btn {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }

  .section { padding: 52px 0; }
  .section.tight { padding: 40px 0; }

  .menu-board { padding: 24px 18px 20px; }
  .menu-item .leader { display: none; }
  .menu-item .row { justify-content: space-between; gap: 16px; }
  .menu-item.popular .name::after {
    display: block;
    width: max-content;
    margin: 8px 0 0;
    transform: none;
  }

  .filter-bar { gap: 8px; }
  .filter-bar button {
    min-height: 44px;
    padding: 10px 14px;
    flex: 1 1 auto;
  }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }

  .lightbox { padding: 16px; padding-bottom: calc(16px + env(safe-area-inset-bottom)); }
  .lightbox img { max-width: 100%; max-height: 72dvh; }
  .lightbox button {
    min-width: 48px;
    min-height: 48px;
    padding: 10px;
  }
  .lightbox .lb-close { top: calc(10px + env(safe-area-inset-top)); right: 10px; }
  .lightbox .lb-prev { left: 8px; }
  .lightbox .lb-next { right: 8px; }

  .faq summary { min-height: 52px; align-items: center; }

  .cta-band { padding-bottom: 28px; }
  .cta-band .phone { font-size: clamp(2rem, 11vw, 3.2rem); }
}

@media (max-width: 420px) {
  .brand { font-size: 1.12rem; }
  .brand small { letter-spacing: 0.22em; }
  .hero-collage { grid-template-columns: 1fr 1fr; }
  .hero-collage figure:first-child { grid-column: 1 / -1; }
  .hero-collage figure:first-child img { aspect-ratio: 16 / 10; object-position: 38% 22%; }
  .hero-collage figure.is-tight-fades img { object-position: 36% 20%; }
}

/* ============================================================
   PZAZZ PACK
   ============================================================ */

/* 1) Scissors cursor on gallery photos */
.gallery-grid a,
.hero-collage figure {
  cursor: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='28'%20height='28'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke-linecap='round'%3E%3Cg%20stroke='%23121016'%20stroke-width='4.5'%3E%3Ccircle%20cx='6'%20cy='6'%20r='3'/%3E%3Ccircle%20cx='6'%20cy='18'%20r='3'/%3E%3Cpath%20d='M8.1%208.1%2020%2020M8.1%2015.9%2020%204'/%3E%3C/g%3E%3Cg%20stroke='%2322c55e'%20stroke-width='2'%3E%3Ccircle%20cx='6'%20cy='6'%20r='3'/%3E%3Ccircle%20cx='6'%20cy='18'%20r='3'/%3E%3Cpath%20d='M8.1%208.1%2020%2020M8.1%2015.9%2020%204'/%3E%3C/g%3E%3C/svg%3E") 14 14, pointer;
}

/* 2) Neon pulse on the "Open now" dot */
@media (prefers-reduced-motion: no-preference) {
  .open-chip.is-open .dot {
    animation: neon-pulse 2.2s ease-in-out infinite;
  }
  @keyframes neon-pulse {
    0%, 100% { box-shadow: 0 0 6px rgba(74, 222, 128, 0.7); }
    50% { box-shadow: 0 0 14px rgba(74, 222, 128, 1), 0 0 26px rgba(74, 222, 128, 0.45); }
  }
}

/* 3) Poster paste-up: headline lines slide out of a mask on load */
.poster .l {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding-bottom: 0.06em; /* keep descenders inside the mask */
  margin-bottom: -0.06em;
}
.poster .l > span { display: inline-block; }
@media (prefers-reduced-motion: no-preference) {
  .poster .l > span {
    transform: translateY(112%);
    animation: poster-up 0.72s cubic-bezier(0.19, 0.75, 0.22, 1) forwards;
  }
  .poster .l:nth-child(2) > span { animation-delay: 0.14s; }
  .poster .l:nth-child(3) > span { animation-delay: 0.28s; }
  @keyframes poster-up { to { transform: translateY(0); } }
}

/* 4) Clipper buzz on the Call buttons */
@media (prefers-reduced-motion: no-preference) {
  .btn.accent:hover,
  .btn.accent:focus-visible,
  .cta-band .phone:hover,
  .cta-band .phone:focus-visible {
    animation: clipper-buzz 0.18s linear infinite;
  }
  @keyframes clipper-buzz {
    0%   { transform: translate(-2px, -2px) rotate(0deg); }
    25%  { transform: translate(-1px, -3px) rotate(-0.4deg); }
    50%  { transform: translate(-3px, -1px) rotate(0.4deg); }
    75%  { transform: translate(-1px, -2px) rotate(-0.3deg); }
    100% { transform: translate(-2px, -2px) rotate(0deg); }
  }
  .cta-band .phone:hover { animation-duration: 0.16s; }
}

/* 5) Google reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 34px;
}
.review-card {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 26px 26px 22px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.review-card::before {
  content: "\201C";
  position: absolute;
  top: -8px;
  right: 14px;
  font-family: var(--font-display);
  font-size: 5.4rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.28;
  pointer-events: none;
}
.review-card .stars {
  color: var(--accent);
  letter-spacing: 0.2em;
  font-size: 0.95rem;
  text-shadow: 0 0 14px rgba(34, 197, 94, 0.5);
}
.review-card blockquote {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  flex: 1;
}
.review-card .who {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  color: var(--text);
}
.review-card .who::before { content: "\2014 "; color: var(--accent); }
.reviews-foot { text-align: center; margin-top: 34px; }
.reviews-foot .gnote {
  display: block;
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: var(--muted);
}
@media (max-width: 960px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   BLACK-GRID BACKGROUND (test)
   ------------------------------------------------------------
   A faint square grid + green glow that fades from the top of
   the page. Built natively here (no external images, no Tailwind).
   TO DISABLE: remove class="bg-grid" from the <body> tag of
   each page. TO TUNE: line brightness = the 0.05 alphas below,
   cell size = the 46px values, glow strength = the 0.14.
   ============================================================ */
body.bg-grid::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;             /* behind content, above the page color */
  pointer-events: none;
  background-image:
    radial-gradient(58% 44% at 50% 0%, rgba(34, 197, 94, 0.14), transparent 72%),
    linear-gradient(to right,  rgba(238, 234, 244, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(238, 234, 244, 0.05) 1px, transparent 1px);
  background-size: 100% 100%, 46px 46px, 46px 46px;
  -webkit-mask-image: radial-gradient(130% 95% at 50% 0%, #000 32%, transparent 78%);
          mask-image: radial-gradient(130% 95% at 50% 0%, #000 32%, transparent 78%);
}

/* Rule: the grid background and the backdrop ghost text never
   show together. Whenever a page's <body> has class="bg-grid",
   its backdrop text (UNITY / MENU / WORK / VISIT) auto-hides.
   Remove the bg-grid class and the backdrop returns by itself. */
body.bg-grid .backdrop { display: none; }

/* ============================================================
   MOBILE APP EXPERIENCE (<= 960px)
   One split, two views. At 961px and up the desktop site
   (top nav, 3-column footer, hero copy) is unchanged. At
   960px and down this block takes over: tab bar, compact
   footer, status-first hero, swipe photos.
   ============================================================ */

/* ---- Bottom tab bar (replaces hamburger + call bar on phones) ---- */
.tabbar { display: none; }

/* ---- Mobile status card (hidden on desktop) ---- */
.mobile-status { display: none; }

@media (max-width: 960px) {

  /* Tab bar */
  .tabbar {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 60;
    padding: 6px 6px calc(6px + env(safe-area-inset-bottom));
    background: rgba(18, 16, 22, 0.96);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border-top: 1px solid var(--line);
  }
  .tabbar a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    min-height: 52px;
    text-decoration: none;
    color: var(--muted);
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 12px;
    -webkit-tap-highlight-color: transparent;
  }
  .tabbar a:active { background: rgba(34, 197, 94, 0.12); }
  .tabbar svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
  .tabbar a.active { color: var(--accent); }
  .tabbar a.tab-call { color: var(--accent); }
  .tabbar a.tab-call svg { filter: drop-shadow(0 0 8px rgba(34, 197, 94, 0.55)); }

  /* Tab bar replaces the top nav on phones */
  .nav, .nav-toggle { display: none !important; }
  .mobile-callbar { display: none !important; } /* superseded by tab bar */
  body { padding-bottom: calc(64px + env(safe-area-inset-bottom)); }

  /* Compact footer: tab bar owns page nav, so drop Pages,
     hide the brand blurb, and turn Visit into two tap cards. */
  .site-footer {
    padding: 22px 0 12px;
    text-align: center;
  }
  .site-footer .cols {
    gap: 18px;
    padding-bottom: 16px;
    justify-items: center;
    border-bottom-color: var(--line);
  }
  .site-footer .foot-pages { display: none; }
  .site-footer .foot-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .site-footer .foot-brand .brand {
    font-size: 1.12rem;
    text-align: center;
  }
  .site-footer .foot-brand p { display: none; }
  .site-footer .foot-visit h3 { display: none; }
  .site-footer .foot-visit { width: 100%; }
  .site-footer .foot-visit ul {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 8px;
    align-items: stretch;
  }
  .site-footer .foot-visit li:nth-child(-n+2) {
    display: flex;
  }
  .site-footer .foot-visit li:last-child {
    grid-column: 1 / -1;
    margin-top: 4px;
    font-family: var(--font-mono);
    font-size: 0.74rem;
    color: var(--muted);
    line-height: 1.45;
  }
  .site-footer .foot-visit a {
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 48px;
    height: 100%;
    box-sizing: border-box;
    padding: 12px 10px 11px;
    border: 1px solid var(--text);
    border-radius: 12px;
    font-family: var(--font-display);
    font-size: 0;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    line-height: 1;
  }
  .site-footer .foot-visit li:first-child a::before,
  .site-footer .foot-visit li:nth-child(2) a::before {
    font-family: var(--font-display);
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 400;
    opacity: 1;
    margin: 0;
  }
  .site-footer .foot-visit li:first-child a::before { content: "Call now"; }
  .site-footer .foot-visit li:nth-child(2) a::before { content: "Directions"; }
  .site-footer .foot-visit li:first-child a {
    background: var(--accent);
    border-color: var(--accent);
    color: #121016;
    font-weight: 400;
  }
  .site-footer .foot-visit li:nth-child(2) a {
    background: transparent;
    color: var(--text);
  }
  .site-footer .foot-visit li:first-child a:hover,
  .site-footer .foot-visit li:first-child a:focus-visible {
    color: #121016;
  }
  .site-footer .fine {
    justify-content: center;
    align-items: center;
    gap: 8px 14px;
    padding-top: 12px;
    text-align: center;
  }

  /* Status-first hero: big headline, live status card, swipe photos.
     The desktop copy blocks step aside on phones. */
  .hero { padding: 40px 0 34px; }
  .hero .lead, .hero-points, .hero-note, .hero .hero-cta { display: none; }

  .mobile-status {
    display: block;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 16px 16px 14px;
    margin-top: 18px;
  }
  .mobile-status .open-chip {
    font-family: var(--font-mono);
    font-size: 0.82rem;
    letter-spacing: 0.05em;
  }
  .mobile-status .hours-line {
    margin: 6px 0 14px;
    font-family: var(--font-mono);
    font-size: 0.74rem;
    color: var(--muted);
  }
  .mobile-status .actions { display: grid; grid-template-columns: 1.3fr 1fr; gap: 8px; }
  .mobile-status .btn {
    justify-content: center;
    min-height: 48px;
    width: 100%;
    padding: 12px 10px 11px;
    font-size: 0.95rem;
    border-radius: 12px;
  }

  /* Photo collage becomes a swipeable, snapping strip */
  .hero-collage {
    display: flex !important;
    grid-template-columns: none;
    overflow-x: auto;
    gap: 10px;
    margin-top: 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
  }
  .hero-collage::-webkit-scrollbar { display: none; }
  .hero-collage figure {
    flex: 0 0 74vw;
    scroll-snap-align: center;
    border-radius: 14px;
  }
  .hero-collage figure:first-child { grid-row: auto; grid-column: auto; }
  .hero-collage img,
  .hero-collage figure:first-child img { aspect-ratio: 4 / 5; height: auto; }

  /* Homepage featured strip: also a snap-scrolling carousel */
  [data-featured-strip] {
    display: flex !important;
    overflow-x: auto;
    gap: 10px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
  }
  [data-featured-strip]::-webkit-scrollbar { display: none; }
  [data-featured-strip] a {
    flex: 0 0 62vw;
    scroll-snap-align: center;
    border-radius: 14px;
  }
  [data-featured-strip] img { aspect-ratio: 4 / 5; }

  /* Rounded, card-like surfaces read more native on phones */
  .menu-board, .info-card, .review-card, .faq details { border-radius: 16px; }
  .gallery-grid a { border-radius: 12px; }
  .btn { border-radius: 12px; }

  /* Calmer motion on small screens: slow the top ticker,
     drop the bottom one (the tab bar owns that space) */
  .ticker .track { animation-duration: 46s; }
  .cta-band ~ .ticker { display: none; }

  /* Full-screen photo viewer, gesture-ready (mobile.js adds swipes) */
  .lightbox { padding: 0; }
  .lightbox img {
    max-width: 100vw;
    max-height: 100dvh;
    border: 0;
    touch-action: none; /* gestures handled by mobile.js */
  }
  .lightbox .lb-prev, .lightbox .lb-next { display: none; } /* swipe instead */
  .lightbox .lb-close {
    top: calc(14px + env(safe-area-inset-top));
    right: 14px;
    border-radius: 12px;
  }
  .lb-hint {
    position: absolute;
    bottom: calc(18px + env(safe-area-inset-bottom));
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(238, 234, 244, 0.65);
    pointer-events: none;
  }
}
@media (min-width: 961px) {
  .lb-hint { display: none; }

  /* Desktop lock: never inherit the mobile chrome or footer cards */
  .tabbar,
  .mobile-status,
  .nav-toggle,
  .mobile-callbar { display: none !important; }
  .nav {
    display: flex;
    position: static;
    width: auto;
    height: auto;
    flex-direction: row;
    align-items: center;
    padding: 0;
    overflow: visible;
    background: none;
    border: 0;
  }
  .hero .lead,
  .hero-note { display: block; }
  .hero-points { display: grid; }
  .hero .hero-cta { display: flex; }
  .site-footer {
    padding: 64px 0 32px;
    text-align: left;
  }
  .site-footer .cols {
    display: grid;
    grid-template-columns: 1.5fr 0.85fr 1.15fr;
    gap: 48px;
    align-items: start;
    justify-items: start;
    padding-bottom: 40px;
  }
  .site-footer .foot-pages { display: block; }
  .site-footer .foot-brand {
    display: block;
    align-items: flex-start;
  }
  .site-footer .foot-brand .brand { font-size: 1.38rem; text-align: left; }
  .site-footer .foot-brand p { display: block; }
  .site-footer .foot-visit { width: auto; }
  .site-footer .foot-visit h3 { display: inline-block; }
  .site-footer .foot-visit ul {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .site-footer .foot-visit li:nth-child(-n+2) { display: list-item; }
  .site-footer .foot-visit li:last-child {
    grid-column: auto;
    margin-top: 0;
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    line-height: inherit;
  }
  .site-footer .foot-visit a,
  .site-footer .foot-visit li:first-child a,
  .site-footer .foot-visit li:nth-child(2) a {
    display: inline;
    flex: none;
    width: auto;
    min-height: 0;
    height: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: none;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    letter-spacing: normal;
    text-transform: none;
    line-height: inherit;
    color: var(--text);
  }
  .site-footer .foot-visit a::before { content: none !important; }
  .site-footer .fine {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    padding-top: 22px;
    text-align: left;
  }
}

/* ---- Coming soon landing page ---- */
.coming-soon-page {
  min-height: 100dvh;
  background:
    radial-gradient(ellipse 80% 55% at 50% -10%, rgba(34, 197, 94, 0.28), transparent 70%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(34, 197, 94, 0.12), transparent 65%),
    var(--bg);
}
.coming-soon-page.bg-grid::after {
  background-image:
    radial-gradient(58% 44% at 50% 0%, rgba(34, 197, 94, 0.32), transparent 72%),
    linear-gradient(to right,  rgba(34, 197, 94, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(34, 197, 94, 0.08) 1px, transparent 1px);
}
.coming-soon {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(48px + env(safe-area-inset-top)) 22px calc(48px + env(safe-area-inset-bottom));
}
.coming-soon-inner {
  width: min(100%, 520px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.coming-soon-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 5vw, 1.75rem);
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  line-height: 1;
  letter-spacing: 0.03em;
  margin: 0 0 24px;
  text-shadow: 0 0 28px rgba(34, 197, 94, 0.45);
}
.coming-soon-brand small {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.34em;
  color: var(--accent-2);
  margin-top: 6px;
}
.coming-soon .eyebrow {
  align-self: center;
  display: block;
  width: fit-content;
  margin: 0 auto 20px;
  padding-right: calc(12px + 0.14em);
  text-align: center;
  background: rgba(34, 197, 94, 0.1);
  box-shadow: 0 0 24px rgba(34, 197, 94, 0.15);
}
.coming-soon h1 {
  font-size: clamp(1.75rem, 6.5vw, 3.2rem);
  line-height: 1;
  white-space: nowrap;
  margin: 0 0 20px;
  width: 100%;
}
.coming-soon h1 .accent {
  color: var(--accent);
  text-shadow: 0 0 24px rgba(34, 197, 94, 0.5);
}
.coming-soon-lead {
  margin: 0 0 28px;
  max-width: 38ch;
  text-align: center;
}
.coming-soon-actions {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 8px;
  width: 100%;
  max-width: 420px;
  margin-bottom: 28px;
}
.coming-soon-actions .btn {
  justify-content: center;
  min-height: 48px;
  width: 100%;
  padding: 12px 10px 11px;
  font-size: 0.95rem;
  border-radius: 12px;
}
.coming-soon-actions .coming-soon-ghost {
  border-color: var(--accent);
  color: var(--accent);
}
@media (hover: hover) and (pointer: fine) {
  .coming-soon-actions .coming-soon-ghost:hover {
    background: var(--accent);
    color: #121016;
    box-shadow: 4px 4px 0 var(--accent-deep);
  }
}
.coming-soon-details {
  list-style: none;
  padding: 20px 22px;
  margin: 0 0 20px;
  width: 100%;
  max-width: 420px;
  border: 1px solid rgba(34, 197, 94, 0.35);
  border-radius: 16px;
  background: rgba(34, 197, 94, 0.06);
  box-shadow: 0 0 40px rgba(34, 197, 94, 0.08);
  display: grid;
  gap: 18px;
  text-align: center;
}
.coming-soon-details li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.coming-soon-details .label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.coming-soon-details a {
  color: var(--text);
  text-decoration: none;
  line-height: 1.45;
}
.coming-soon-details a:hover,
.coming-soon-details a:focus-visible {
  color: var(--accent);
}
.coming-soon-fine {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-align: center;
  line-height: 1.5;
}
.coming-soon-fine .accent-text {
  color: var(--accent);
}
@media (max-width: 480px) {
  .coming-soon h1 {
    font-size: clamp(1.55rem, 7.2vw, 2.4rem);
  }
  .coming-soon-actions {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
}

@media (max-width: 380px) {
  .coming-soon h1 {
    font-size: clamp(1.32rem, 6.2vw, 1.75rem);
    letter-spacing: -0.01em;
  }
}

/* ---- Touch devices: photos are always full color (no hover exists) ---- */
@media (hover: none) {
  .gallery-grid img, .hero-collage img { filter: none; }
}
