/* The Razor's Edge — Luxury Gold (Nate original brand) */
:root {
  --void: #08090b;
  --char: #101114;
  --plate: #16171c;
  --line: #2e2c28;
  --blade: #c9a44a;
  --blade-hot: #e8d08a;
  --blade-glow: rgba(201, 164, 74, 0.38);
  --ink-on-gold: #0c0c0e;
  --chrome: #b8b0a0;
  --bone: #f4f0e8;
  --mute: #9c968c;
  --font-display: "Cinzel", "Times New Roman", serif;
  --font-display-soft: "Cormorant Garamond", Georgia, serif;
  --font-body: "DM Sans", "Segoe UI", system-ui, sans-serif;
  --nav-h: 4.4rem;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --max: 1120px;
  --wide: 1280px;
  --gold-line: linear-gradient(90deg, transparent, rgba(201, 164, 74, 0.55), transparent);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 0.5rem); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--bone);
  background:
    radial-gradient(ellipse 90% 55% at 50% -10%, rgba(201, 164, 74, 0.07), transparent 55%),
    var(--void);
  overflow-x: hidden;
}
body.lightbox-open { overflow: hidden; }
::selection {
  background: rgba(201, 164, 74, 0.35);
  color: var(--bone);
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); border: 0;
}
.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 200;
  padding: 0.6rem 1rem;
  background: var(--blade);
  color: var(--bone);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 2px;
  transition: top 0.2s;
}
.skip-link:focus { top: 0.75rem; outline: 2px solid var(--bone); }

.container { width: min(var(--max), 92vw); margin-inline: auto; }
.container-wide { width: min(var(--wide), 94vw); margin-inline: auto; }

/* ——— Nav ——— */
.site-nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: transparent;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.site-nav.is-scrolled {
  background: rgba(7, 7, 8, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}
.nav-inner {
  width: min(var(--wide), 94vw);
  margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: flex; align-items: center; gap: 0.7rem;
  color: var(--bone);
  min-width: 0;
  flex-shrink: 1;
}
.brand-logo {
  width: 2.85rem;
  height: 2.85rem;
  border-radius: 50%;
  object-fit: contain;
  background: #000;
  border: 1px solid rgba(201, 164, 74, 0.35);
  box-shadow: 0 0 16px rgba(201, 164, 74, 0.2);
  flex-shrink: 0;
  padding: 0.12rem;
}
.brand-lockup {
  display: flex;
  flex-direction: column;
  line-height: 1;
  min-width: 0;
}
.brand-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
/* Mobile compact name — real text, not AI logo */
.brand-name-short {
  display: none;
}
.brand-tag {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blade);
  font-weight: 600;
  margin-top: 0.22rem;
}
.nav-links {
  display: flex; gap: 1.75rem; list-style: none; margin: 0; padding: 0;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--chrome);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--bone); }
.nav-actions { display: flex; align-items: center; gap: 0.65rem; }
.nav-phone {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--bone);
  letter-spacing: 0.02em;
}
.nav-phone:hover { color: var(--blade-hot); }
.nav-toggle {
  display: none;
  background: none; border: 0; color: var(--bone); padding: 0.35rem; cursor: pointer;
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.45rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.95rem 1.5rem;
  border: 1px solid transparent;
  border-radius: 1px;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.2s, box-shadow 0.25s;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: linear-gradient(180deg, #e0c06a 0%, var(--blade) 48%, #a88432 100%);
  color: var(--ink-on-gold);
  border-color: rgba(232, 208, 138, 0.35);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.18) inset, 0 8px 24px rgba(0, 0, 0, 0.35);
}
.btn-primary:hover {
  background: linear-gradient(180deg, #edd48a 0%, var(--blade-hot) 50%, #c9a44a 100%);
  color: var(--ink-on-gold);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.22) inset, 0 0 32px var(--blade-glow);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(201, 164, 74, 0.35);
  color: var(--bone);
}
.btn-ghost:hover {
  border-color: var(--blade-hot);
  background: rgba(201, 164, 74, 0.08);
  color: var(--blade-hot);
}
.btn-block { width: 100%; }

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--nav-h) + 2rem) 0 5.5rem;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -2;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
}
.hero-scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(7, 7, 8, 0.55) 0%, rgba(7, 7, 8, 0.4) 30%, rgba(7, 7, 8, 0.88) 68%, rgba(7, 7, 8, 0.97) 88%, var(--void) 100%),
    linear-gradient(90deg, rgba(7, 7, 8, 0.88) 0%, rgba(7, 7, 8, 0.45) 55%, rgba(7, 7, 8, 0.55) 100%);
}
.hero-edge {
  position: absolute;
  left: 0; top: 18%; bottom: 22%;
  width: 3px;
  background: linear-gradient(180deg, transparent, var(--blade), transparent);
  z-index: 0;
}
/* Keep type readable over bright shop LEDs / tile floors */
.hero-copy {
  position: relative;
  z-index: 1;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.75),
    0 4px 18px rgba(0, 0, 0, 0.55);
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blade-hot);
  margin: 0 0 1rem;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.65);
}
.hero-eyebrow .dot {
  width: 0.45rem; height: 0.45rem; border-radius: 50%;
  background: var(--blade);
  box-shadow: 0 0 12px var(--blade-glow);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 9vw, 5.4rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 1.1rem;
  max-width: 12ch;
  color: #fff;
}
.hero-title .accent {
  color: var(--blade-hot);
  font-style: normal;
  position: relative;
  display: inline-block;
}
.hero-title .accent::after {
  content: "";
  display: block;
  height: 1px;
  margin-top: 0.2em;
  background: var(--gold-line);
}
.hero-lead {
  max-width: 34rem;
  color: #f7f4ef; /* near-white bone — mute gray fails on photo */
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.6;
  margin: 0 0 1.75rem;
}
.hero-lead strong {
  color: #fff;
  font-weight: 700;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 0.75rem;
  margin-bottom: 2.5rem;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 34rem;
  border-top: 1px solid var(--line);
  padding-top: 1.35rem;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  color: var(--bone);
  letter-spacing: 0.04em;
}
.stat-label {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
}

/* ——— Sections ——— */
.section {
  padding: 5.5rem 0;
  position: relative;
}
.section-dark {
  background:
    linear-gradient(180deg, rgba(201, 164, 74, 0.03), transparent 28%),
    var(--char);
  border-top: 1px solid rgba(201, 164, 74, 0.08);
  border-bottom: 1px solid rgba(201, 164, 74, 0.06);
}
.section-head {
  margin-bottom: 2.75rem;
  max-width: 36rem;
}
.section-head-row {
  max-width: none;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
}
.section-head-row > div { max-width: 36rem; }
.award-badge {
  width: 7.5rem;
  height: auto;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.55));
  flex-shrink: 0;
  border-radius: 50%;
}
.proof-count {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  color: var(--blade);
  margin: 0.35rem 0 0.75rem !important;
}
.nate-quote {
  margin: 2rem 0 0;
  padding: 1.5rem 1.5rem 1.5rem 1.35rem;
  border-left: 3px solid var(--blade);
  background: var(--void);
  border-radius: 0 2px 2px 0;
}
.nate-quote p {
  margin: 0 0 0.85rem;
  font-size: 1.08rem;
  color: var(--bone);
  line-height: 1.55;
}
.nate-quote footer {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--mute);
}
.nate-quote cite { font-style: normal; color: var(--chrome); }
.walkin-banner {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.25rem;
  padding: 1.25rem 1.35rem;
  background: var(--char);
  border: 1px solid var(--line);
  border-left: 3px solid var(--blade);
}
.walkin-banner strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  color: var(--bone);
}
.walkin-banner span { color: var(--mute); flex: 1 1 12rem; }
.visit-note {
  margin: 1rem 0 0;
  font-size: 0.9rem;
  color: var(--mute);
}

.eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--blade);
  margin: 0 0 0.65rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 0.9rem;
}
.section-lead {
  margin: 0;
  color: var(--mute);
  font-family: var(--font-display-soft);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.55;
  max-width: 34rem;
}
.section-lead strong {
  color: var(--bone);
  font-weight: 600;
}

/* ——— Proof ——— */
.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 1.5rem;
  align-items: stretch;
}
.proof-hero-card {
  background: var(--plate);
  border: 1px solid var(--line);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
}
.proof-big {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 8vw, 4.8rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: 0.04em;
  color: var(--bone);
}
.proof-big span { color: var(--blade-hot); }
.proof-hero-card p {
  color: var(--mute);
  margin: 1rem 0 1.5rem;
}
.quote-grid {
  display: grid;
  gap: 1rem;
}
.quote-card {
  background: var(--void);
  border: 1px solid var(--line);
  border-left: 3px solid var(--blade);
  padding: 1.25rem 1.35rem;
}
.quote-card blockquote {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  color: var(--bone);
  line-height: 1.5;
}
.quote-card cite {
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--chrome);
}

/* ——— Services / menu ——— */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.menu-card {
  background: linear-gradient(165deg, rgba(201, 164, 74, 0.06), transparent 42%), var(--plate);
  border: 1px solid rgba(201, 164, 74, 0.16);
  padding: 1.55rem 1.4rem;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.menu-card:hover {
  border-color: rgba(201, 164, 74, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35);
}
.menu-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 0.45rem;
}
.menu-card p {
  margin: 0;
  color: var(--mute);
  font-size: 0.95rem;
}
.menu-price {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 600;
  color: var(--blade-hot);
  letter-spacing: 0.08em;
  margin-top: 1rem;
  line-height: 1;
}
.menu-price small {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--chrome);
  margin-left: 0.35rem;
}
.services-note {
  margin-top: 1rem;
  color: var(--mute);
  font-size: 0.9rem;
}
.menu-extras {
  margin-top: 2rem;
  padding: 1.35rem 1.4rem;
  background: var(--char);
  border: 1px solid var(--line);
}
.menu-extras-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: 0.04em;
  margin: 0 0 0.85rem;
  color: var(--bone);
}
.menu-extras-title span {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--chrome);
  margin-left: 0.35rem;
}
.menu-extras-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}
.menu-extras-list li {
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--mute);
  font-size: 0.95rem;
}
.menu-extras-list li:last-child { border-bottom: 0; }
.menu-extras-list strong { color: var(--bone); font-weight: 600; }

/* ——— Gallery ——— */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}
.gallery-item {
  position: relative;
  aspect-ratio: 3 / 4;
  background: var(--plate);
  border: 1px solid rgba(201, 164, 74, 0.18);
  overflow: hidden;
  display: block;
  padding: 0;
  margin: 0;
  cursor: zoom-in;
  color: inherit;
  font: inherit;
  width: 100%;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.gallery-item-feature { grid-column: span 1; }
@media (min-width: 900px) {
  .gallery-item-feature {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
    min-height: 100%;
  }
}
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(8, 9, 11, 0.45) 100%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.gallery-item:hover,
.gallery-item:focus-visible {
  border-color: rgba(201, 164, 74, 0.55);
  box-shadow: 0 0 0 1px rgba(201, 164, 74, 0.15), 0 16px 40px rgba(0, 0, 0, 0.45);
  outline: none;
}
.gallery-item:hover::after,
.gallery-item:focus-visible::after { opacity: 1; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.92) contrast(1.05);
  transition: transform 0.55s var(--ease), filter 0.35s;
}
.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.045);
  filter: saturate(1) contrast(1.06);
}
.gallery-item[hidden] { display: none !important; }

.gallery-cta {
  display: flex;
  justify-content: center;
  margin-top: 1.75rem;
}

/* Full work page */
.page-hero {
  padding: calc(var(--nav-h) + 2.75rem) 0 2rem;
  text-align: center;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(ellipse 70% 80% at 50% 0%, rgba(201, 164, 74, 0.08), transparent 60%),
    var(--void);
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin: 0.35rem 0 0.75rem;
  color: var(--bone);
}
.page-hero-lead {
  max-width: 36rem;
  margin: 0 auto 1.5rem;
  color: var(--chrome);
  font-size: 1.05rem;
}
.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: center;
  margin-bottom: 1.75rem;
}
/* Mobile: chips scroll horizontally so all filters stay one tap away */
@media (max-width: 900px) {
  .gallery-filters {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 0.45rem;
    margin-inline: -1.25rem;
    padding: 0.15rem 1.25rem 0.45rem;
    scroll-padding-inline: 1.25rem;
  }
  .gallery-filters::-webkit-scrollbar { display: none; }
  .filter-chip {
    flex: 0 0 auto;
    padding: 0.6rem 0.95rem;
    font-size: 0.72rem;
  }
}
.filter-chip {
  appearance: none;
  border: 1px solid var(--line);
  background: var(--plate);
  color: var(--chrome);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.55rem 1rem;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s, box-shadow 0.2s;
}
.filter-chip:hover {
  border-color: rgba(201, 164, 74, 0.45);
  color: var(--bone);
}
.filter-chip.is-active {
  border-color: var(--blade);
  color: var(--ink-on-gold);
  background: linear-gradient(135deg, var(--blade-hot), var(--blade));
  box-shadow: 0 0 0 1px rgba(201, 164, 74, 0.2), 0 8px 24px rgba(0, 0, 0, 0.35);
}
.gallery-grid-full {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.gallery-empty {
  text-align: center;
  color: var(--mute);
  padding: 2rem 1rem;
}
.gallery-foot {
  text-align: center;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.gallery-foot p {
  color: var(--chrome);
  margin: 0 0 1.25rem;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.nav-links a[aria-current="page"] {
  color: var(--blade-hot);
}

/* ——— Lightbox ——— */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.lightbox[hidden] { display: none !important; }
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 7, 0.92);
  backdrop-filter: blur(10px);
  cursor: zoom-out;
}
.lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  max-height: min(92vh, 100%);
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto 1fr auto;
  gap: 0.5rem 0.35rem;
  align-items: center;
}
.lightbox-stage {
  grid-column: 2;
  grid-row: 2;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
}
.lightbox-stage img {
  max-width: 100%;
  max-height: min(78vh, 860px);
  width: auto;
  height: auto;
  object-fit: contain;
  border: 1px solid rgba(201, 164, 74, 0.28);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.65), 0 0 40px rgba(201, 164, 74, 0.08);
  background: #000;
}
.lightbox-stage figcaption {
  margin-top: 0.85rem;
  font-family: var(--font-display-soft);
  font-size: 1.05rem;
  color: var(--chrome);
  text-align: center;
  letter-spacing: 0.02em;
}
.lightbox-close {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid rgba(201, 164, 74, 0.35);
  background: rgba(16, 17, 20, 0.9);
  color: var(--bone);
  border-radius: 1px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.lightbox-close:hover { border-color: var(--blade-hot); color: var(--blade-hot); }
.lightbox-nav {
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(201, 164, 74, 0.35);
  background: rgba(16, 17, 20, 0.9);
  color: var(--bone);
  border-radius: 1px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  grid-row: 2;
}
.lightbox-prev { grid-column: 1; }
.lightbox-next { grid-column: 3; }
.lightbox-nav:hover {
  border-color: var(--blade-hot);
  color: var(--blade-hot);
  background: rgba(201, 164, 74, 0.1);
}
.lightbox-count {
  grid-column: 2;
  grid-row: 3;
  margin: 0;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--chrome);
}
@media (max-width: 700px) {
  .lightbox-dialog {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr auto auto;
  }
  .lightbox-stage { grid-column: 1 / -1; grid-row: 2; }
  .lightbox-close { grid-column: 2; grid-row: 1; }
  .lightbox-prev { grid-column: 1; grid-row: 3; justify-self: start; }
  .lightbox-next { grid-column: 2; grid-row: 3; justify-self: end; }
  .lightbox-count { grid-column: 1 / -1; grid-row: 4; }
  .lightbox-stage img { max-height: 68vh; }
}

/* ——— Reels / video ——— */
.reels-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}
.reel-card {
  margin: 0;
  background: var(--char);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.reel-video {
  width: 100%;
  display: block;
  background: #000;
  object-fit: cover;
}
.reel-portrait .reel-video {
  aspect-ratio: 9 / 16;
  max-height: 28rem;
  margin-inline: auto;
}
.reel-landscape .reel-video {
  aspect-ratio: 16 / 9;
  height: 100%;
  min-height: 12rem;
}
.reel-card figcaption {
  padding: 0.75rem 1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--chrome);
  border-top: 1px solid var(--line);
}

/* ——— Map embed ——— */
.map-embed {
  margin-top: 1.75rem;
  border: 1px solid var(--line);
  border-radius: 2px;
  overflow: hidden;
  background: var(--plate);
  aspect-ratio: 21 / 9;
  min-height: 220px;
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(0.35) contrast(1.05);
}

/* ——— Crew ——— */
.crew-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.crew-card {
  background: var(--void);
  border: 1px solid var(--line);
  padding: 0 0 1.4rem;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.crew-card:hover {
  border-color: rgba(201, 164, 74, 0.4);
  transform: translateY(-2px);
}
.crew-photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--plate);
  margin-bottom: 1.1rem;
}
.crew-photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: top center;
}
.crew-role {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blade);
  margin: 0 1.25rem 0.45rem;
}
.crew-card h3 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  letter-spacing: 0.04em;
  margin: 0 1.25rem 0.65rem;
}
.crew-card > p {
  margin: 0 1.25rem;
  color: var(--mute);
  font-size: 0.95rem;
}
.crew-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 1.1rem 1.25rem 0;
}
.crew-social {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--plate);
  color: var(--bone);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.crew-social svg {
  width: 0.95rem;
  height: 0.95rem;
  flex-shrink: 0;
}
.crew-social:hover {
  border-color: var(--blade);
  color: var(--bone);
  background: rgba(201, 164, 74, 0.12);
}
.crew-social.is-pending {
  opacity: 0.72;
  border-style: dashed;
}
.crew-social.is-pending:hover {
  opacity: 1;
}
.crew-social-note {
  margin: 1.5rem 0 0;
  font-size: 0.88rem;
  color: var(--mute);
  max-width: 40rem;
}

/* ——— Visit / contact ——— */
.visit-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.25rem;
}
.visit-card {
  background: var(--plate);
  border: 1px solid var(--line);
  padding: 1.75rem 1.5rem;
}
.visit-card h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  margin: 0 0 1rem;
}
.hours-list {
  list-style: none; margin: 0; padding: 0;
}
.hours-list li {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}
.hours-list li:last-child { border-bottom: 0; }
.hours-list .closed { color: var(--mute); }
.address {
  margin: 0 0 1.25rem;
  color: var(--mute);
  line-height: 1.55;
}
.address strong {
  display: block;
  color: var(--bone);
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.visit-actions {
  display: flex; flex-wrap: wrap; gap: 0.65rem;
}

/* ——— Footer ——— */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 2.25rem 0 6.5rem;
  background: var(--void);
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.75rem 2rem;
  align-items: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  min-width: 0;
}
.footer-logo {
  flex-shrink: 0;
  display: block;
  line-height: 0;
  border-radius: 4px;
  border: 1px solid rgba(201, 164, 74, 0.28);
  background: #000;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.footer-logo:hover {
  border-color: rgba(201, 164, 74, 0.55);
  box-shadow: 0 0 20px rgba(201, 164, 74, 0.15);
}
.footer-logo img {
  width: 5.5rem;
  height: 5.5rem;
  object-fit: contain;
  display: block;
}
.footer-brand-text { min-width: 0; }
.footer-brand .brand-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.06em;
}
.footer-meta {
  color: var(--mute);
  font-size: 0.85rem;
  margin: 0.45rem 0 0;
  line-height: 1.5;
}
.footer-built {
  margin: 0.75rem 0 0;
  font-size: 0.8rem;
  color: var(--chrome);
}
.footer-built a {
  color: var(--blade-hot);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.footer-built a:hover { color: var(--bone); }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--chrome);
}
.footer-links a:hover { color: var(--blade-hot); }

@media (max-width: 600px) {
  .footer-brand {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-logo img {
    width: 4.75rem;
    height: 4.75rem;
  }
}

/* ——— Sticky mobile CTA ——— */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: rgba(7, 7, 8, 0.96);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(12px);
  padding: 0.55rem 0.65rem calc(0.55rem + env(safe-area-inset-bottom));
}
.sticky-cta a {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.85rem 0.5rem;
  border-radius: 2px;
}
.sticky-cta .call {
  background: var(--blade);
  color: var(--ink-on-gold);
}
.sticky-cta .maps {
  background: var(--plate);
  color: var(--bone);
  border: 1px solid var(--line);
  margin-left: 0.45rem;
}

/* ——— Mobile ——— */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-phone { display: none; }
  .nav-toggle { display: block; }
  /* Mobile: real original mark + shorter name (no AI horizontal logo) */
  .brand { gap: 0.55rem; max-width: calc(100% - 7.5rem); }
  .brand-logo {
    width: 2.9rem;
    height: 2.9rem;
  }
  .brand-name { display: none; }
  .brand-name-short {
    display: block;
    font-family: var(--font-display); /* Cinzel — match site */
    font-size: 0.82rem; /* keep compact mobile size */
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .brand-tag {
    font-size: 0.55rem;
    letter-spacing: 0.14em;
    margin-top: 0.2rem;
  }
  .nav-actions { gap: 0.35rem; flex-shrink: 0; }
  .nav-actions .btn {
    padding: 0.65rem 0.75rem;
    font-size: 0.64rem;
    letter-spacing: 0.08em;
  }
  .site-nav.is-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(7, 7, 8, 0.98);
    padding: 1.25rem 6vw 1.5rem;
    border-bottom: 1px solid var(--line);
    gap: 1rem;
  }
  .proof-grid,
  .visit-grid,
  .crew-grid { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
  .reels-grid { grid-template-columns: 1fr 1fr; }
  .reel-landscape { grid-column: 1 / -1; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-grid-full { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-item-feature {
    grid-column: span 2;
    grid-row: span 1;
    aspect-ratio: 4 / 3;
  }
  .map-embed { aspect-ratio: 4 / 3; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
  .stat-num { font-size: 1.55rem; }
  .sticky-cta { display: grid; }
  .section { padding: 3.75rem 0; }
  .hero { padding-bottom: 6.5rem; }
  /* Mobile: denser dark veil where copy sits (bottom-left) */
  .hero-scrim {
    background:
      linear-gradient(180deg, rgba(7, 7, 8, 0.5) 0%, rgba(7, 7, 8, 0.45) 28%, rgba(7, 7, 8, 0.9) 62%, rgba(7, 7, 8, 0.98) 100%),
      linear-gradient(105deg, rgba(7, 7, 8, 0.92) 0%, rgba(7, 7, 8, 0.55) 58%, rgba(7, 7, 8, 0.35) 100%);
  }
  .hero-lead {
    color: #fff;
    font-size: 1.02rem;
    font-weight: 500;
    text-shadow:
      0 1px 2px rgba(0, 0, 0, 0.9),
      0 2px 12px rgba(0, 0, 0, 0.7);
  }
  .stat-label {
    color: rgba(243, 239, 232, 0.82);
  }
  .section-head-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.35rem;
  }
  .section-head-row > div {
    max-width: none;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .section-head-row .section-lead {
    margin-inline: auto;
  }
  .award-badge {
    width: 7.25rem;
    height: auto;
    margin-inline: auto;
    order: -1; /* badge first on mobile, then title — stronger award moment */
    filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.5));
  }

  .walkin-banner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .reels-grid { grid-template-columns: 1fr; }
  .reel-portrait .reel-video { max-height: 22rem; }
  .hero-lead { font-size: 1rem; }
}

/* ——— Request-site form page ——— */
.request-page {
  min-height: 100vh;
  padding: calc(var(--nav-h) + 2rem) 0 4rem;
  background: var(--void);
}
.request-card {
  max-width: 32rem;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  background: var(--plate);
  border: 1px solid var(--line);
}
.request-card h1 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  letter-spacing: 0.04em;
  margin: 0 0 0.5rem;
}
.request-card .lead {
  color: var(--mute);
  margin: 0 0 1.5rem;
  font-size: 0.98rem;
}
.request-form label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--chrome);
  margin: 0 0 0.4rem;
}
.request-form .req { color: var(--blade-hot); letter-spacing: 0; }
.request-form .field { margin-bottom: 1.1rem; }
.request-form input,
.request-form textarea,
.request-form select {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--char);
  color: var(--bone);
  font: inherit;
}
.request-form input:focus,
.request-form textarea:focus {
  outline: 2px solid var(--blade);
  outline-offset: 1px;
}
.request-form .hp { position: absolute; left: -9999px; height: 0; overflow: hidden; }
.request-form .actions {
  display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center;
  margin-top: 1.25rem;
}
.request-back {
  color: var(--chrome);
  font-size: 0.85rem;
}
.request-back:hover { color: var(--blade-hot); }


/* ——— Shop notice ribbon + hours notice (date-aware; logic in site.js) ———
   Ribbon sits above the fixed nav; --ribbon-h drives nav offset, hero padding, scroll padding.
   site.js sets --ribbon-h to 0 once dismissed or past data-reopen. Remove after 2026-09-22. */
:root { --ribbon-h: 2.5rem; }
.site-nav { top: var(--ribbon-h); }
.hero { padding-top: calc(var(--nav-h) + var(--ribbon-h) + 2rem); }
html { scroll-padding-top: calc(var(--nav-h) + var(--ribbon-h) + 0.5rem); }
.shop-ribbon {
  position: fixed; top: 0; left: 0; right: 0; z-index: 110;
  height: var(--ribbon-h);
  display: flex; align-items: center; justify-content: center; gap: 0.85rem;
  padding: 0 2.9rem 0 1rem;
  background: linear-gradient(90deg, #14110a 0%, #211b0d 50%, #14110a 100%);
  border-bottom: 1px solid rgba(201, 164, 74, 0.45);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.6);
  color: var(--bone);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.shop-ribbon[hidden] { display: none; }
.ribbon-tag {
  font-family: var(--font-display);
  font-size: 0.66rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--blade);
  display: inline-flex; align-items: center; gap: 0.8rem;
}
.ribbon-tag::after { content: ""; width: 1.6rem; height: 1px; background: linear-gradient(90deg, var(--blade), transparent); }
.ribbon-text { overflow: hidden; text-overflow: ellipsis; }
.ribbon-short { display: none; }
.ribbon-link { color: var(--blade-hot); text-decoration: underline; text-underline-offset: 3px; font-weight: 500; }
.ribbon-link:hover { color: var(--bone); }
.ribbon-close {
  position: absolute; right: 0.4rem; top: 50%; transform: translateY(-50%);
  width: 2rem; height: 2rem; display: grid; place-items: center;
  background: none; border: 0; color: var(--chrome); cursor: pointer;
}
.ribbon-close:hover { color: var(--bone); }
@media (max-width: 700px) {
  .shop-ribbon { font-size: 0.78rem; gap: 0.55rem; padding-left: 0.8rem; }
  .ribbon-tag, .ribbon-long { display: none; }
  .ribbon-short { display: inline; }
}
.hours-notice {
  position: relative;
  margin-top: 1.15rem;
  padding: 1rem 1.1rem 1.05rem 1.25rem;
  border: 1px solid rgba(201, 164, 74, 0.4);
  background: linear-gradient(180deg, rgba(201, 164, 74, 0.10), rgba(201, 164, 74, 0.03));
}
.hours-notice::before { content: ""; position: absolute; left: -1px; top: -1px; bottom: -1px; width: 3px; background: var(--blade); }
.hours-notice[hidden] { display: none; }
.hours-notice-eyebrow { margin: 0 0 0.35rem; font-size: 0.64rem; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; color: var(--blade); }
.hours-notice-title { margin: 0 0 0.45rem; font-family: var(--font-display); font-size: 1.15rem; letter-spacing: 0.04em; color: var(--bone); }
.hours-notice-body { margin: 0; font-size: 0.92rem; line-height: 1.55; color: var(--mute); }
.hours-notice-body strong { color: var(--bone); font-weight: 600; }
.hours-notice-count { margin: 0.7rem 0 0; font-family: var(--font-display-soft); font-style: italic; font-size: 1.08rem; color: var(--blade-hot); }
.hours-notice-count:empty { display: none; }
