/* The Valley — demo · gritty intentional dive · real photos only */
:root {
  --bg: #0c100e;
  --bg-2: #121816;
  --bg-3: #1a221e;
  --wood: #2a2118;
  --cream: #e8e0d4;
  --cream-dim: #b8aea0;
  --green: #1f4d3a;
  --green-hot: #2d6b4f;
  --amber: #e08a3c;
  --amber-hot: #f0a050;
  --coral: #d4554a;
  --line: rgba(232, 224, 212, 0.12);
  --line-strong: rgba(232, 224, 212, 0.22);
  --font-display: "Bebas Neue", Impact, sans-serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
  --max: 1120px;
  --header-h: 72px;
  --demo-h: 36px;
  --radius: 12px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --mobile-bar: 56px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--cream);
  background: var(--bg);
  padding-bottom: calc(var(--mobile-bar) + 12px);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--amber); text-decoration: none; }
a:hover { color: var(--amber-hot); }
.wrap { width: min(100% - 2rem, var(--max)); margin-inline: auto; }

/* Demo banner */
.demo-banner {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(90deg, #5c2a12, #8a3d18);
  color: #fff8f0;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.45rem 1rem;
  min-height: var(--demo-h);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Header */
.site-header {
  position: sticky;
  top: var(--demo-h);
  z-index: 90;
  background: rgba(12, 16, 14, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  width: min(100% - 1.5rem, var(--max));
  margin-inline: auto;
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: inherit;
  flex-shrink: 0;
}
.logo:hover { color: inherit; }
.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--amber);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--amber);
  letter-spacing: 0.02em;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text strong {
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: 0.06em;
  font-weight: 400;
}
.logo-text em {
  font-style: normal;
  font-size: 0.72rem;
  color: var(--cream-dim);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 1.1rem;
}
.nav a {
  color: var(--cream-dim);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.nav a:hover { color: var(--cream); }
.nav-cta {
  background: var(--amber) !important;
  color: #1a1008 !important;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-weight: 700 !important;
}
.nav-cta:hover { background: var(--amber-hot) !important; }
.header-phone {
  display: none;
  color: var(--cream);
  padding: 0.4rem;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 0.4rem;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cream);
}

/* Hero */
.hero {
  position: relative;
  min-height: min(88vh, 720px);
  display: grid;
  align-items: end;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; }
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12,16,14,0.35) 0%, rgba(12,16,14,0.55) 45%, rgba(12,16,14,0.94) 100%),
    linear-gradient(90deg, rgba(12,16,14,0.75) 0%, transparent 55%);
}
.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: 4rem 0 3.5rem;
  max-width: 38rem;
}
.eyebrow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin: 0 0 0.75rem;
}
.dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--cream-dim);
  opacity: 0.6;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 12vw, 6.5rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 0.95;
  margin: 0 0 0.35rem;
}
.hero-tag {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 1.65rem);
  letter-spacing: 0.12em;
  color: var(--cream-dim);
  margin: 0 0 1rem;
}
.hero-lead {
  margin: 0 0 1.5rem;
  color: var(--cream-dim);
  font-size: 1.08rem;
  max-width: 34rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.65rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform 0.2s var(--ease), background 0.2s, border-color 0.2s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--amber);
  color: #1a1008;
}
.btn-primary:hover { background: var(--amber-hot); color: #1a1008; }
.btn-ghost {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--cream);
}
.btn-ghost:hover { border-color: var(--cream-dim); color: var(--cream); }
.text-link {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--amber);
}

/* Sections */
section { padding: 4.5rem 0; }
.section-head { margin-bottom: 2rem; max-width: 36rem; }
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 3.4rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  margin: 0.2rem 0 0.6rem;
  line-height: 1;
}
.section-sub { margin: 0; color: var(--cream-dim); }

/* Tonight / events teaser (home) */
.tonight {
  background: var(--bg-2);
  border-block: 1px solid var(--line);
  padding-bottom: 3rem;
}
.section-head-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  max-width: none;
}
.section-sub-inline {
  max-width: 16rem;
  text-align: right;
  font-size: 0.9rem;
}

/* Poster rail — horizontal scroll */
.poster-rail {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--amber) var(--bg-3);
  padding: 0.25rem 0 1rem;
}
.poster-rail:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 4px;
}
.poster-rail-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  padding: 0 max(1rem, calc((100vw - var(--max)) / 2));
}
.poster-card {
  flex: 0 0 auto;
  width: min(220px, 58vw);
  scroll-snap-align: start;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  padding: 0;
  cursor: pointer;
  color: inherit;
  font: inherit;
  text-align: left;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s var(--ease), border-color 0.2s;
}
.poster-card:hover,
.poster-card:focus-visible {
  transform: translateY(-3px);
  border-color: var(--amber);
  outline: none;
}
.poster-card img {
  width: 100%;
  aspect-ratio: 2/3;
  object-fit: cover;
  background: #000;
  display: block;
}
.poster-card-meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.75rem 0.85rem 0.9rem;
}
.poster-card-meta strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.1;
}
.poster-card-meta em {
  font-style: normal;
  font-size: 0.8rem;
  color: var(--cream-dim);
}
.poster-card-link { text-decoration: none; color: inherit; }
.poster-card-more {
  justify-content: center;
  align-items: center;
  min-height: 280px;
  background: linear-gradient(160deg, var(--bg-3), var(--green));
  border-style: dashed;
  border-color: var(--line-strong);
}
.poster-more-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 1.5rem;
  text-align: center;
}
.poster-more-inner strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  font-weight: 400;
}
.poster-more-inner em {
  font-style: normal;
  color: var(--amber);
  font-weight: 700;
}

/* ===== Events subpage ===== */
.page-events .events-hero {
  padding: 3.5rem 0 2rem;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(224, 138, 60, 0.12), transparent 50%),
    var(--bg);
  border-bottom: 1px solid var(--line);
}
.events-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 5rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  margin: 0.2rem 0 0.75rem;
  line-height: 0.95;
}
.events-hero-lead {
  max-width: 34rem;
  color: var(--cream-dim);
  margin: 0 0 1.4rem;
  font-size: 1.08rem;
}
.events-hero-actions { display: flex; flex-wrap: wrap; gap: 0.65rem; }

.events-featured {
  padding: 2.5rem 0 1.5rem;
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
}
.events-featured .section-head { margin-bottom: 1.25rem; }

.events-wall { padding: 3.5rem 0 4rem; }
.wall-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.5rem;
}
.wall-filter {
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--cream-dim);
  font-family: inherit;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  cursor: pointer;
}
.wall-filter.is-active,
.wall-filter:hover {
  background: var(--green);
  border-color: var(--green-hot);
  color: var(--cream);
}

.poster-wall {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1.1rem 0.9rem;
}
.wall-item {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.wall-item.is-hidden { display: none; }
.wall-poster {
  display: block;
  width: 100%;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #111;
  cursor: pointer;
  transition: transform 0.2s var(--ease), border-color 0.2s, box-shadow 0.2s;
}
.wall-poster:hover,
.wall-poster:focus-visible {
  transform: translateY(-4px);
  border-color: var(--amber);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
  outline: none;
}
.wall-poster img {
  width: 100%;
  aspect-ratio: 2/3;
  object-fit: cover;
  display: block;
  vertical-align: middle;
}
.wall-caption h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  margin: 0 0 0.2rem;
  line-height: 1.1;
}
.wall-caption p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--cream-dim);
  line-height: 1.35;
}
.events-footnote {
  margin: 2rem 0 0;
  color: var(--cream-dim);
  font-size: 0.95rem;
}

.events-cta {
  background: linear-gradient(135deg, var(--green) 0%, #163528 55%, var(--wood) 100%);
  border-top: 1px solid var(--line);
  padding: 3rem 0;
}
.events-cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.events-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  margin: 0 0 0.45rem;
  line-height: 1.05;
}
.events-cta p {
  margin: 0;
  color: var(--cream-dim);
  max-width: 28rem;
}
.events-cta-actions { display: flex; flex-wrap: wrap; gap: 0.6rem; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  padding-top: calc(1.25rem + env(safe-area-inset-top));
}
.lightbox[hidden] { display: none !important; }
.lightbox-close {
  position: absolute;
  top: 0.75rem;
  right: 0.85rem;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
}
.lightbox-close:hover { background: rgba(255, 255, 255, 0.2); }
.lightbox-figure {
  margin: 0;
  max-width: min(92vw, 520px);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.lightbox-figure img {
  max-width: 100%;
  max-height: 78vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}
.lightbox-figure figcaption {
  color: var(--cream-dim);
  text-align: center;
  font-size: 0.95rem;
  max-width: 36rem;
}

/* Menu */
.highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  margin-bottom: 2rem;
}
.highlight-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.highlight-photo { aspect-ratio: 16/10; overflow: hidden; }
.highlight-photo img { width: 100%; height: 100%; object-fit: cover; }
.highlight-body { padding: 1.1rem 1.2rem 1.3rem; }
.highlight-body h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  margin: 0 0 0.4rem;
}
.highlight-body p { margin: 0 0 0.7rem; color: var(--cream-dim); font-size: 0.95rem; }
.tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-hot);
  border: 1px solid rgba(45, 107, 79, 0.5);
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
}

.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.25rem;
}
.menu-tab {
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--cream-dim);
  font-family: inherit;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  cursor: pointer;
}
.menu-tab.is-active,
.menu-tab:hover {
  background: var(--green);
  border-color: var(--green-hot);
  color: var(--cream);
}
.menu-note {
  color: var(--cream-dim);
  font-size: 0.92rem;
  margin: 0 0 1rem;
}
.menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-2);
}
.menu-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1.15rem;
  border-bottom: 1px solid var(--line);
}
.menu-list li:last-child { border-bottom: 0; }
.menu-list strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 0.15rem;
}
.menu-list span:not(.price) {
  display: block;
  color: var(--cream-dim);
  font-size: 0.9rem;
}
.price {
  font-weight: 700;
  color: var(--amber);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Gallery */
.gallery { background: var(--bg-2); border-block: 1px solid var(--line); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(160px, 22vw);
  gap: 0.65rem;
}
.gallery-grid figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.g-wide {
  grid-column: 1 / -1;
  min-height: 220px;
  grid-auto-rows: minmax(200px, 28vw);
}

/* Story */
.story-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.story-photo {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}
.story-photo img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.story-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  margin: 0.2rem 0 1rem;
  line-height: 1;
}
.story-copy p { color: var(--cream-dim); margin: 0 0 1rem; }
.story-copy blockquote {
  margin: 1.5rem 0 0;
  padding: 1rem 0 0;
  border-top: 1px solid var(--line-strong);
  font-size: 1.1rem;
  color: var(--cream);
}
.story-copy cite {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  font-style: normal;
  color: var(--cream-dim);
}

/* Parties */
.parties {
  background: linear-gradient(135deg, var(--green) 0%, #163528 50%, var(--wood) 100%);
  border-block: 1px solid var(--line);
}
.parties-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.parties h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  margin: 0.2rem 0 0.5rem;
  line-height: 1;
}
.parties p { margin: 0; color: var(--cream-dim); max-width: 28rem; }

/* Visit */
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2rem;
  align-items: start;
}
.visit-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  margin: 0.2rem 0 1rem;
  line-height: 1;
}
.addr { color: var(--cream-dim); margin: 0 0 0.75rem; line-height: 1.5; }
.addr strong { color: var(--cream); font-size: 1.15rem; }
.hours {
  list-style: none;
  margin: 1.25rem 0 0.5rem;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 22rem;
}
.hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 1rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}
.hours li:last-child { border-bottom: 0; }
.hours li span:last-child { color: var(--cream-dim); }
.hours-note { font-size: 0.88rem; color: var(--cream-dim); margin: 0 0 1.25rem; }
.visit-actions { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.visit-side { display: grid; gap: 0.85rem; }
.visit-photo {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  max-height: 220px;
}
.visit-photo img { width: 100%; height: 100%; object-fit: cover; max-height: 220px; }
.visit-map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 280px;
  background: var(--bg-2);
}
.visit-map iframe { width: 100%; height: 100%; min-height: 300px; border: 0; filter: grayscale(0.25) contrast(1.05); }

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 2.5rem 0 2rem;
  background: #080b09;
}
.footer-inner {
  display: grid;
  gap: 1.25rem;
}
.footer-inner strong {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  font-weight: 400;
}
.footer-inner p { margin: 0.25rem 0; color: var(--cream-dim); font-size: 0.92rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1rem; }
.footer-links a { font-weight: 600; color: var(--cream-dim); }
.footer-links a:hover { color: var(--amber); }
.footer-note { font-size: 0.8rem !important; opacity: 0.75; }

/* Mobile bar */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 95;
  background: rgba(12, 16, 14, 0.96);
  border-top: 1px solid var(--line-strong);
  padding: 0.45rem 0.5rem calc(0.45rem + env(safe-area-inset-bottom));
  justify-content: space-around;
  gap: 0.25rem;
}
.mobile-bar a {
  flex: 1;
  text-align: center;
  color: var(--cream);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.55rem 0.25rem;
  border-radius: 8px;
}
.mobile-bar a:hover { background: var(--bg-3); color: var(--amber); }

@media (max-width: 900px) {
  .highlights { grid-template-columns: 1fr 1fr; }
  .story-grid,
  .visit-grid { grid-template-columns: 1fr; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 160px;
  }
  .section-sub-inline { text-align: left; }
  .poster-wall {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
}

@media (max-width: 760px) {
  .nav {
    position: fixed;
    inset: calc(var(--demo-h) + var(--header-h)) 0 auto 0;
    background: rgba(12, 16, 14, 0.98);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    gap: 0;
    border-bottom: 1px solid var(--line);
    display: none;
  }
  .nav.is-open { display: flex; }
  .nav a {
    padding: 0.85rem 0.5rem;
    border-bottom: 1px solid var(--line);
  }
  .nav-cta { text-align: center; margin-top: 0.5rem; }
  .nav-toggle { display: flex; margin-left: auto; }
  .header-phone { display: grid; place-items: center; }
  .mobile-bar { display: flex; }
  .hero { min-height: 78vh; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn:hover { transform: none; }
  .hero-img { animation: none; }
}
