:root {
  --background: #070707;
  --black: #000;
  --surface: #111111;
  --surface-high: #1c1a16;
  --surface-low: #050505;
  --text: #f3eee2;
  --muted: #c9bda4;
  --line: rgba(255, 255, 255, 0.1);
  --gold: #c9a04f;
  --gold-soft: #e4c36f;
  --amber: #d8ae55;
  --max: 1280px;
  --desktop-pad: 64px;
  --mobile-pad: 20px;
  --mono: "JetBrains Mono", monospace;
  --headline: "Anybody", system-ui, sans-serif;
  --body: "Hanken Grotesk", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translate3d(0, 1.25rem, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes gold-pulse {
  0%,
  100% {
    text-shadow: 3px 3px #000, 0 0 0 rgba(201, 160, 79, 0);
  }

  50% {
    text-shadow: 3px 3px #000, 0 0 18px rgba(201, 160, 79, 0.24);
  }
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(201, 160, 79, 0.08), transparent 28rem),
    var(--background);
  color: var(--text);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.16;
  background-image:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04) 25%, transparent 25%),
    linear-gradient(225deg, rgba(255, 255, 255, 0.03) 25%, transparent 25%);
  background-size: 44px 44px;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
video {
  display: block;
  max-width: 100%;
}

p,
h1,
h2,
h3,
dl {
  margin: 0;
}

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

.skip-link {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 100;
  transform: translateY(-180%);
  background: var(--gold);
  color: #000;
  padding: 0.75rem 1rem;
  font-family: var(--mono);
  font-size: 0.75rem;
  text-transform: uppercase;
}

.skip-link:focus {
  transform: translateY(0);
}

.top-nav {
  position: fixed;
  top: 0;
  z-index: 50;
  display: none;
  width: 100%;
  border-bottom: 1px solid rgba(201, 160, 79, 0.32);
  background: rgba(40, 42, 43, 0.3);
  box-shadow: 0 0 20px rgba(201, 160, 79, 0.15);
  backdrop-filter: blur(40px);
}

.nav-inner {
  display: flex;
  max-width: var(--max);
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  padding: 0.6rem var(--desktop-pad);
}

.logo {
  color: var(--gold);
  font-family: var(--headline);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1;
  text-shadow: 2px 2px #2a1b05;
}

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a,
.cart-btn,
.icon-link,
.section-row a {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-links a {
  opacity: 0.7;
  transition: opacity 180ms ease, color 180ms ease;
}

.nav-links a:hover,
.nav-links .active,
.section-row a {
  color: var(--gold);
  opacity: 1;
}

.nav-links .active {
  border-bottom: 2px solid var(--gold);
}

.icon-link {
  display: grid;
  place-items: center;
  opacity: 0.75;
}

.cart-btn {
  background: var(--gold);
  color: #000;
  padding: 0.8rem 1.65rem;
}

.translate-btn {
  display: inline-grid;
  min-width: 3rem;
  min-height: 3rem;
  place-items: center;
  border: 1px solid rgba(201, 160, 79, 0.45);
  background: rgba(201, 160, 79, 0.08);
  color: var(--gold);
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.translate-btn:hover {
  background: var(--gold);
  color: #000;
  box-shadow: 0 0 20px rgba(201, 160, 79, 0.24);
}

.bottom-nav {
  position: fixed;
  bottom: 0;
  z-index: 50;
  display: flex;
  width: 100%;
  height: 3.75rem;
  align-items: center;
  justify-content: space-around;
  border-top: 1px solid var(--line);
  background: rgba(51, 53, 53, 0.82);
  box-shadow: 0 -10px 20px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(16px);
}

.bottom-nav a {
  display: flex;
  width: 20%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #a89a7f;
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.bottom-nav .material-symbols-outlined {
  font-size: 1.25rem;
}

.bottom-nav .active {
  color: var(--gold);
  transform: scale(1.1);
}

main {
  padding-top: 0;
  padding-bottom: 6rem;
}

.hero-section {
  position: relative;
  display: flex;
  min-height: min(85vh, 820px);
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  transform: scale(1.04);
  animation: hero-rise 900ms ease-out both;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--background), rgba(18, 20, 20, 0.82), transparent);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--max), 100%);
  margin: 3rem auto 0;
  padding: 0 var(--mobile-pad);
  text-align: center;
}

.kicker {
  margin-bottom: 1rem;
  color: var(--gold);
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: hero-rise 520ms ease-out 120ms both;
}

.hero-content h1 {
  margin-bottom: 1.5rem;
  font-family: var(--headline);
  font-size: clamp(2rem, 9vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  text-transform: uppercase;
  text-shadow: 3px 3px #000;
  animation: hero-rise 650ms ease-out 220ms both, gold-pulse 3.6s ease-in-out 1.2s infinite;
}

.hero-content h1 span {
  color: var(--gold);
}

.hero-content p:not(.kicker) {
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.6;
  animation: hero-rise 620ms ease-out 340ms both;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  animation: hero-rise 620ms ease-out 440ms both;
}

.btn {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border: 1px solid transparent;
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: box-shadow 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--gold);
  color: #000;
}

.btn-primary:hover {
  box-shadow: 0 0 20px rgba(201, 160, 79, 0.4);
}

.btn-secondary,
.btn-outline {
  border: 2px solid #fff;
  background: transparent;
  color: #fff;
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover,
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-light {
  background: #fff;
  color: #000;
}

.feature-strip,
.section,
.footer-grid,
.copyright {
  width: min(var(--max), calc(100% - (var(--mobile-pad) * 2)));
  margin-right: auto;
  margin-left: auto;
}

.feature-strip {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 1rem;
  margin-top: -4rem;
  margin-bottom: 6rem;
  overflow: hidden;
  padding: 1rem;
}

.feature-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  opacity: 0.9;
  pointer-events: none;
}

.feature-video::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(to bottom, rgba(18, 20, 20, 0.18), rgba(18, 20, 20, 0.62)),
    radial-gradient(circle at 50% 30%, transparent, rgba(18, 20, 20, 0.42));
}

.feature-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-strip article {
  position: relative;
  z-index: 1;
  border: 1px solid var(--line);
  background: rgba(30, 32, 32, 0.72);
  padding: 1.5rem;
  text-align: center;
  backdrop-filter: blur(24px);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease, background 220ms ease;
}

.feature-strip article:hover,
.concept-card:hover,
.essentials-grid article:hover,
.guide-card:hover {
  border-color: rgba(201, 160, 79, 0.38);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  transform: translateY(-3px);
}

.feature-strip span {
  margin-bottom: 1rem;
  color: var(--gold);
  font-size: 2.5rem;
}

.feature-strip h2 {
  margin-bottom: 0.5rem;
  font-family: var(--headline);
  font-size: 1.125rem;
  font-weight: 800;
  text-transform: uppercase;
}

.feature-strip p,
.section-center p,
.concept-card p,
.late-copy p,
.night-inner p,
.visit-copy p,
.hours-section p,
.site-footer p {
  color: var(--muted);
  line-height: 1.55;
}

.section {
  margin-bottom: 8rem;
}

.section-center {
  margin-bottom: 4rem;
  text-align: center;
}

.section-center h2,
.section-title,
.late-copy h2,
.night-inner h2,
.hours-section h2 {
  font-family: var(--headline);
  font-size: clamp(2rem, 6vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  text-transform: uppercase;
}

.section-title {
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 1rem;
}

.section-center span,
.section-title span,
.late-copy h2 span,
.night-inner h2 span,
.hours-section h2 span {
  color: var(--gold);
}

.concept-grid,
.menu-grid {
  display: grid;
  gap: 1.5rem;
}

.concept-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 2rem;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.count {
  margin-bottom: 1rem;
  color: rgba(201, 160, 79, 0.7);
  font-family: var(--headline);
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
}

.concept-card h3 {
  margin-bottom: 1rem;
  font-family: var(--headline);
  font-size: 1.125rem;
  font-weight: 800;
  text-transform: uppercase;
}

.concept-card p {
  margin-bottom: 1.5rem;
  flex-grow: 1;
  font-size: 0.95rem;
}

.concept-card img,
.symbol-panel {
  width: 100%;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  object-fit: cover;
}

.symbol-panel {
  display: grid;
  place-items: center;
  background: #000;
}

.symbol-panel span {
  color: var(--gold);
  font-size: 6rem;
}

.menu-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  cursor: pointer;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.menu-card:hover {
  border-color: rgba(201, 160, 79, 0.34);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.32);
  transform: translateY(-3px);
}

.menu-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 700ms ease;
}

.menu-card:hover img,
.vibe-grid div:hover img {
  transform: scale(1.05);
}

.menu-meta {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.5), transparent);
}

.menu-meta h3 {
  font-family: var(--headline);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 800;
  text-transform: uppercase;
}

.menu-meta p,
.special p,
.snack-row span,
.site-footer h3,
.copyright {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

.menu-meta p {
  color: var(--muted);
}

.menu-meta strong {
  color: var(--gold);
  font-family: var(--headline);
  font-size: 1.5rem;
  white-space: nowrap;
}

.center-action {
  margin-top: 3rem;
  text-align: center;
}

.late-bites {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
}

.late-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 7vw, 4rem);
}

.late-copy h2 {
  margin-bottom: 1.5rem;
}

.late-copy > p {
  margin-bottom: 2rem;
  font-size: 1.125rem;
}

.special {
  margin-bottom: 2rem;
}

.special p {
  margin-bottom: 0.5rem;
  color: var(--gold);
  text-transform: uppercase;
}

.special h3 {
  margin-bottom: 0.5rem;
  font-family: var(--headline);
  font-size: 1.5rem;
  text-transform: uppercase;
}

.special span {
  color: var(--muted);
}

.late-image {
  min-height: 18rem;
}

.late-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.essentials-grid,
.guides-grid,
.inside-grid {
  display: grid;
  gap: 1rem;
}

.essentials-grid article,
.guide-card {
  border: 1px solid var(--line);
  background: rgba(26, 28, 28, 0.86);
  padding: 1.5rem;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.essentials-grid span {
  margin-bottom: 1rem;
  color: var(--gold);
  font-size: 2rem;
}

.essentials-grid h3,
.guide-card h3,
.inside-grid figcaption {
  font-family: var(--headline);
  font-weight: 800;
  text-transform: uppercase;
}

.essentials-grid h3,
.guide-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.125rem;
}

.essentials-grid p,
.guide-card p,
.section-row p {
  color: var(--muted);
  line-height: 1.55;
}

.inside-grid {
  grid-auto-rows: 16rem;
}

.inside-grid figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  background: var(--surface);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.inside-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1000ms ease, opacity 180ms ease;
}

.inside-grid figure:hover {
  border-color: rgba(201, 160, 79, 0.34);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.3);
}

.inside-grid figure:hover img {
  transform: scale(1.05);
  opacity: 0.88;
}

.inside-grid figcaption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-shadow: 0 2px 10px #000;
}

.night-section {
  border: 1px solid var(--line);
  background: #000;
}

.night-inner {
  position: relative;
  overflow: hidden;
  padding: 6rem 2rem;
  text-align: center;
}

.night-bg-video {
  position: absolute;
  inset: 0;
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  pointer-events: none;
  z-index: 0;
}

.night-inner::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  opacity: 0.22;
  background: radial-gradient(ellipse at center, rgba(201, 160, 79, 0.42), var(--background) 55%, var(--background));
}

.night-inner > :not(.night-bg-video) {
  position: relative;
  z-index: 2;
}

.night-icon {
  margin-bottom: 1.5rem;
  color: var(--gold);
  font-size: 4rem;
}

.night-inner h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(2.5rem, 8vw, 4rem);
}

.night-inner h2 span {
  color: var(--gold);
}

.night-inner p {
  max-width: 44rem;
  margin: 0 auto 2.5rem;
}

.snack-row {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.snack-row div {
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid var(--line);
  background: rgba(18, 20, 20, 0.5);
  padding: 1rem;
  text-align: left;
  backdrop-filter: blur(8px);
}

.snack-row img {
  width: 4rem;
  height: 4rem;
  object-fit: cover;
}

.snack-row span {
  display: block;
  color: var(--gold);
  text-transform: uppercase;
}

.section-row {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: flex-start;
  gap: 1rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 1rem;
}

.section-row .section-title {
  margin-bottom: 0;
  border-bottom: 0;
  padding-bottom: 0;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--gold);
}

.social-link img,
.guide-top img {
  width: 1.35rem;
  height: 1.35rem;
  object-fit: contain;
}

.guides-grid {
  align-items: stretch;
}

.guide-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.reel-card {
  gap: 1rem;
  padding: 1rem;
}

.guide-top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.guide-top h3 {
  margin-bottom: 0.15rem;
}

.guide-top p {
  font-size: 0.9rem;
}

.instagram-frame,
.guide-embed {
  display: grid;
  width: 100%;
  aspect-ratio: 9 / 13;
  place-items: center;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(201, 160, 79, 0.25);
  background:
    linear-gradient(135deg, rgba(201, 160, 79, 0.11), transparent 40%),
    #090a0a;
  color: var(--gold);
  overflow: hidden;
  position: relative;
  object-fit: cover;
}

.instagram-frame .instagram-embed {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100%;
  min-width: 0 !important;
  border: 0;
  z-index: 1;
}

.instagram-frame .instagram-embed:not([src]) {
  display: none;
}

.instagram-frame iframe {
  width: 100% !important;
  min-width: 0 !important;
}

.instagram-fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  padding: 1.25rem;
  text-align: center;
  background: rgba(0, 0, 0, 0.45);
}

.instagram-fallback-text {
  margin: 0;
  max-width: 24ch;
  color: var(--gold);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.instagram-consent-btn {
  font-size: 0.78rem;
}

.instagram-fallback-link {
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: underline;
}

.instagram-fallback-link:hover {
  color: var(--gold);
}

video.guide-embed {
  background: #000;
}

.guide-embed span {
  font-size: 3rem;
}

.vibe-grid {
  display: grid;
  grid-auto-rows: 300px;
  gap: 1rem;
}

.vibe-grid div {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.vibe-grid div:hover {
  border-color: rgba(201, 160, 79, 0.34);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.3);
  transform: translateY(-3px);
}

.vibe-grid img,
.vibe-grid video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1000ms ease;
}

.hours-section {
  display: grid;
  gap: 2rem;
  border: 1px solid var(--line);
  background: var(--surface);
  padding: clamp(1.5rem, 5vw, 3rem);
}

.hours-list {
  display: grid;
  gap: 0;
}

.hours-list div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.9rem 0;
}

.hours-list div:last-child {
  border-bottom: 0;
}

.hours-list dt,
.hours-list dd {
  font-size: 1rem;
}

.hours-list dt {
  color: var(--text);
}

.hours-list dd {
  margin: 0;
  color: var(--gold);
  font-family: var(--mono);
  text-align: right;
}

.visit-section {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.visit-copy h3 {
  margin-bottom: 1rem;
  font-family: var(--headline);
  font-size: 1.5rem;
}

.visit-copy p {
  max-width: 34rem;
  margin-bottom: 2rem;
  font-size: 1.125rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.social-links a,
.social-links span {
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 0.75rem 1rem;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.social-links a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.social-join {
  width: min(var(--max), calc(100% - (var(--mobile-pad) * 2)));
  margin: 3rem auto 0;
  border: 1px solid rgba(201, 160, 79, 0.22);
  background:
    radial-gradient(circle at 12% 20%, rgba(201, 160, 79, 0.18), transparent 22rem),
    linear-gradient(135deg, rgba(201, 160, 79, 0.08), rgba(0, 0, 0, 0.92));
  padding: clamp(2rem, 6vw, 4rem);
}

.social-join p {
  color: var(--gold);
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.social-join h2 {
  margin: 0.65rem 0 1.5rem;
  color: #fff;
  font-family: var(--headline);
  font-size: clamp(2.4rem, 9vw, 7rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.9;
  text-transform: uppercase;
}

.social-join strong {
  display: inline-block;
  min-width: 2.1ch;
  color: var(--gold);
  font: inherit;
  text-shadow: 3px 3px #000, 0 0 28px rgba(201, 160, 79, 0.28);
}

.social-join-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.social-join-links a {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border: 1px solid rgba(201, 160, 79, 0.42);
  color: var(--gold);
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  padding: 0.95rem 1.15rem;
  text-transform: uppercase;
}

.social-join-links a[aria-disabled="true"] {
  cursor: default;
  opacity: 0.58;
  pointer-events: none;
}

.visit-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.visit-images img {
  width: 100%;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  object-fit: cover;
}

.map-section {
  margin-top: -5rem;
}

.map-section iframe {
  display: block;
  width: 100%;
  min-height: min(70vh, 32rem);
  border: 1px solid var(--line);
  filter: grayscale(0.15) contrast(1.05);
}

.cookie-embed-placeholder {
  display: grid;
  min-height: min(70vh, 32rem);
  place-items: center;
  border: 1px solid rgba(201, 160, 79, 0.2);
  background:
    radial-gradient(circle at 50% 20%, rgba(201, 160, 79, 0.12), transparent 18rem),
    #050505;
  padding: 2rem;
  text-align: center;
}

.cookie-embed-placeholder[hidden] {
  display: none;
}

.cookie-embed-placeholder h2 {
  max-width: 16ch;
  margin-bottom: 1rem;
  color: #fff;
  font-family: var(--headline);
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.92;
  text-transform: uppercase;
}

.cookie-embed-placeholder p {
  max-width: 34rem;
  margin: 0 auto 1.5rem;
  color: var(--muted);
  line-height: 1.55;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 1.75rem, 0);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.19, 1, 0.22, 1),
    filter 700ms ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.reveal-soft {
  filter: blur(6px);
}

.reveal-soft.is-visible {
  filter: blur(0);
}

.site-footer {
  border-top: 1px solid rgba(201, 160, 79, 0.18);
  background: #000;
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  padding-bottom: 2rem;
}

.site-footer h2 {
  margin-bottom: 1rem;
  font-family: var(--headline);
  font-size: 2.5rem;
  font-weight: 800;
}

.site-footer h3 {
  margin-bottom: 1rem;
  color: var(--gold);
}

.site-footer a,
.site-footer span {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

.site-footer .social-join h2 span,
.site-footer .social-join h2 strong {
  display: inline-block;
  margin-bottom: 0;
  color: inherit;
}

.site-footer .social-join h2 strong {
  color: var(--gold);
}

.site-footer .social-join-links a {
  display: inline-flex;
  margin-bottom: 0;
  color: var(--gold);
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  color: rgba(201, 189, 164, 0.5);
  text-transform: uppercase;
}

.admin-page {
  min-height: 100vh;
  background: #eef1ec;
  color: #111713;
}

.admin-page * {
  box-sizing: border-box;
}

.admin-page button,
.admin-page input,
.admin-page textarea {
  font: inherit;
}

.admin-page button {
  cursor: pointer;
}

.admin-page button:disabled {
  cursor: not-allowed;
  opacity: 0.65;
}

.kolt-admin-empty {
  display: grid;
  min-height: 100vh;
  align-content: center;
  gap: 0.85rem;
  width: min(760px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0;
}

.kolt-admin-empty h1,
.kolt-login-intro h1 {
  margin: 0;
  color: #fff;
  font-family: var(--headline);
  font-size: clamp(3.2rem, 12vw, 6.2rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.88;
  text-transform: uppercase;
}

.kolt-admin-login {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.72fr);
  min-height: 100vh;
  padding: 22px;
  gap: 22px;
}

.kolt-login-intro,
.kolt-login-card {
  border: 1px solid rgba(17, 23, 19, 0.1);
  border-radius: 8px;
}

.kolt-login-intro {
  display: grid;
  align-content: end;
  min-height: calc(100vh - 44px);
  padding: clamp(2rem, 6vw, 4rem);
  background:
    linear-gradient(180deg, rgba(10, 12, 10, 0.16), rgba(10, 12, 10, 0.72)),
    url("assets/images/kolt-sign.jpg") center / cover;
  color: #fff;
}

.kolt-login-intro p {
  max-width: 620px;
  margin: 1.1rem 0 0;
  color: rgba(249, 246, 237, 0.76);
  font-size: 1rem;
  line-height: 1.75;
}

.kolt-login-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px;
}

.kolt-login-points div {
  display: grid;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.24);
  padding: 16px;
}

.kolt-login-points strong {
  color: #fff;
}

.kolt-login-points span {
  color: rgba(249, 246, 237, 0.68);
  font-size: 0.88rem;
  line-height: 1.5;
}

.kolt-login-card {
  align-self: center;
  display: grid;
  gap: 16px;
  padding: clamp(1.4rem, 4vw, 2.4rem);
  background: #fff;
  box-shadow: 0 24px 60px rgba(17, 23, 19, 0.1);
}

.kolt-login-card h2,
.kolt-section-head h2,
.kolt-fieldset legend {
  margin: 0;
  color: #111713;
  font-family: var(--headline);
  font-size: clamp(1.55rem, 4vw, 2.15rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.kolt-login-card p,
.kolt-section-head p {
  margin: 0;
  color: #627064;
  line-height: 1.65;
}

.kolt-login-form {
  display: grid;
  gap: 14px;
}

.kolt-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
  white-space: nowrap;
}

.kolt-login-form label,
.kolt-field {
  display: grid;
  gap: 8px;
  color: #415048;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.kolt-input {
  width: 100%;
  border: 1px solid #d7ddd4;
  border-radius: 8px;
  background: #fbfcfa;
  color: #111713;
  font: 600 0.98rem var(--body);
  line-height: 1.45;
  padding: 0.88rem 1rem;
  outline: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.kolt-input:focus {
  border-color: #214a2f;
  box-shadow: 0 0 0 3px rgba(33, 74, 47, 0.12);
}

.kolt-input[type="number"] {
  max-width: 14rem;
}

.kolt-field textarea {
  min-height: 8rem;
  resize: vertical;
}

.kolt-admin-message {
  min-height: 1.4rem;
  color: #8a221b;
  font-size: 0.88rem;
  text-align: center;
}

.kolt-admin-notice {
  border: 1px solid #ead59b;
  border-radius: 8px;
  background: #fff8e6;
  color: #725016;
  padding: 12px 14px;
  font-size: 0.9rem;
  line-height: 1.55;
}

.kolt-admin-app {
  min-height: 100vh;
}

.kolt-admin-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(1rem, 4vw, 2rem) 28px;
  background: #111713;
  color: #fff;
}

.kolt-admin-header h1 {
  max-width: 760px;
  margin: 0.55rem 0 0;
  font-family: var(--headline);
  font-size: clamp(2.35rem, 8vw, 4.5rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.9;
  text-transform: uppercase;
}

.kolt-admin-header p {
  max-width: 680px;
  margin: 0.85rem 0 0;
  color: rgba(249, 246, 237, 0.68);
  line-height: 1.65;
}

.kolt-admin-actions,
.kolt-save-actions,
.kolt-section-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.kolt-admin-actions {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.kolt-admin-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 18px;
  width: min(1320px, calc(100% - 28px));
  margin: 18px auto 0;
  padding-bottom: 110px;
}

.kolt-admin-sidebar {
  position: sticky;
  top: 18px;
  display: grid;
  align-self: start;
  gap: 8px;
  border: 1px solid #dce2d9;
  border-radius: 8px;
  background: #fff;
  padding: 10px;
  box-shadow: 0 16px 40px rgba(17, 23, 19, 0.07);
}

.kolt-tab,
.kolt-action-button,
.kolt-ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  border-radius: 8px;
  border: 1px solid transparent;
  padding: 0.76rem 0.95rem;
  font-weight: 800;
  text-decoration: none;
}

.kolt-tab {
  justify-content: flex-start;
  border-color: transparent;
  background: transparent;
  color: #536057;
}

.kolt-tab.is-active,
.kolt-tab:hover {
  background: #162319;
  color: #fff;
}

.kolt-tab .material-symbols-outlined,
.kolt-action-button .material-symbols-outlined,
.kolt-ghost-button .material-symbols-outlined {
  font-size: 1.22rem;
}

.kolt-action-button {
  border-color: #214a2f;
  background: #214a2f;
  color: #fff;
  box-shadow: 0 14px 30px rgba(33, 74, 47, 0.18);
}

.kolt-action-button:hover {
  background: #193b25;
}

.kolt-ghost-button {
  border-color: #d7ddd4;
  background: #fff;
  color: #17201a;
}

.kolt-admin-header .kolt-ghost-button {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.kolt-language-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 44px;
  border: 1px solid #d7ddd4;
  border-radius: 8px;
  background: #fff;
  padding: 4px;
}

.kolt-language-toggle .material-symbols-outlined {
  margin: 0 4px;
  color: #536057;
  font-size: 1.15rem;
}

.kolt-language-toggle button {
  min-width: 44px;
  min-height: 34px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #536057;
  font-weight: 800;
}

.kolt-language-toggle button.is-active {
  background: #162319;
  color: #fff;
}

.kolt-login-intro .kolt-language-toggle {
  justify-self: start;
}

.kolt-admin-header .kolt-language-toggle {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
}

.kolt-admin-header .kolt-language-toggle .material-symbols-outlined,
.kolt-admin-header .kolt-language-toggle button {
  color: #fff;
}

.kolt-admin-header .kolt-language-toggle button.is-active {
  background: #fff;
  color: #111713;
}

.kolt-admin-main {
  display: grid;
  gap: 14px;
}

.kolt-admin-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid #dce2d9;
  border-radius: 8px;
  background: #fff;
  padding: 12px 14px;
  color: #415048;
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.kolt-admin-status strong {
  color: #111713;
}

.kolt-admin-status.is-warning {
  border-color: #e8d49c;
  background: #fff7df;
  color: #75520f;
}

.kolt-admin-status.is-success {
  border-color: #c9dcc8;
  background: #f3faf0;
  color: #1f5b32;
}

.kolt-admin-panel {
  border: 1px solid #dce2d9;
  border-radius: 8px;
  background: #fff;
  padding: clamp(1rem, 3vw, 1.5rem);
  box-shadow: 0 16px 40px rgba(17, 23, 19, 0.06);
}

.kolt-section-head {
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.kolt-editor {
  display: grid;
  gap: 14px;
}

.kolt-fieldset {
  display: grid;
  gap: 18px;
  margin: 0;
}

.kolt-fieldset legend {
  padding: 0;
}

.kolt-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.kolt-field.is-wide {
  grid-column: 1 / -1;
}

.kolt-stat-grid,
.kolt-step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.kolt-stat-grid div,
.kolt-step-grid div,
.kolt-preview-row {
  border: 1px solid #e2e7df;
  border-radius: 8px;
  background: #f8faf7;
  padding: 14px;
}

.kolt-stat-grid strong {
  display: block;
  color: #111713;
  font-family: var(--headline);
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
}

.kolt-stat-grid span,
.kolt-step-grid div,
.kolt-preview-row span {
  color: #627064;
  font-size: 0.9rem;
}

.kolt-preview-list {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.kolt-preview-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.kolt-preview-row strong {
  max-width: 70%;
  color: #111713;
  overflow-wrap: anywhere;
  text-align: right;
}

.kolt-save-bar {
  position: static;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid rgba(17, 23, 19, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  padding: 12px;
  box-shadow: 0 18px 60px rgba(17, 23, 19, 0.18);
  backdrop-filter: blur(16px);
}

.kolt-save-bar strong,
.kolt-save-bar span {
  display: block;
}

.kolt-save-bar span {
  color: #627064;
  font-size: 0.88rem;
}

.kolt-admin-footer {
  border: 1px solid #dce2d9;
  border-radius: 8px;
  background: #fff;
  color: #536057;
  padding: 14px;
  text-align: center;
  font-weight: 800;
  line-height: 1.45;
}

@media (max-width: 920px) {
  .kolt-admin-login {
    grid-template-columns: 1fr;
    padding: 12px;
  }

  .kolt-login-intro {
    min-height: 44vh;
  }

  .kolt-login-card {
    align-self: stretch;
  }

  .kolt-admin-header {
    display: grid;
    align-items: start;
  }

  .kolt-admin-actions {
    justify-content: flex-start;
  }

  .kolt-admin-actions .kolt-language-toggle {
    order: -1;
  }

  .kolt-admin-layout {
    grid-template-columns: 1fr;
    width: min(100% - 20px, 820px);
  }

  .kolt-admin-sidebar {
    position: static;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .kolt-tab {
    justify-content: center;
    min-height: 58px;
    padding: 0.58rem;
  }

  .kolt-tab span:not(.material-symbols-outlined) {
    font-size: 0.78rem;
  }

  .kolt-field-grid,
  .kolt-stat-grid,
  .kolt-step-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .kolt-login-points {
    grid-template-columns: 1fr;
  }

  .kolt-admin-header {
    padding: 18px 14px 22px;
  }

  .kolt-admin-sidebar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .kolt-section-head,
  .kolt-save-bar,
  .kolt-preview-row {
    align-items: stretch;
    flex-direction: column;
  }

  .kolt-preview-row strong {
    max-width: none;
    text-align: left;
  }

  .kolt-save-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .kolt-language-toggle {
    width: 100%;
    justify-content: center;
  }

  .kolt-save-actions .kolt-action-button,
  .kolt-save-actions .kolt-ghost-button,
  .kolt-section-head .kolt-action-button,
  .kolt-section-head .kolt-ghost-button {
    width: 100%;
  }
}

.cookie-banner {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 80;
  display: grid;
  gap: 1rem;
  max-width: 58rem;
  border: 1px solid rgba(201, 160, 79, 0.3);
  background:
    linear-gradient(145deg, rgba(201, 160, 79, 0.12), transparent 40%),
    rgba(5, 6, 6, 0.96);
  box-shadow: 0 22px 90px rgba(0, 0, 0, 0.55);
  padding: clamp(1.25rem, 4vw, 2rem);
  backdrop-filter: blur(24px);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-copy h2 {
  margin: 0.35rem 0 0.65rem;
  color: #fff;
  font-family: var(--headline);
  font-size: clamp(1.8rem, 5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.95;
  text-transform: uppercase;
}

.cookie-copy p:not(.kicker) {
  color: var(--muted);
  line-height: 1.55;
}

.cookie-settings {
  display: grid;
  gap: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.22);
  padding: 1rem;
}

.cookie-settings[hidden] {
  display: none;
}

.cookie-settings label {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  color: rgba(243, 238, 226, 0.9);
  font-family: var(--mono);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cookie-settings input {
  accent-color: var(--gold);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.cookie-footer-link {
  margin-top: 1.25rem;
  border: 0;
  background: none;
  color: rgba(201, 189, 164, 0.7);
  cursor: pointer;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  padding: 0;
  text-transform: uppercase;
}

.cookie-footer-link:hover {
  color: var(--gold);
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.footer-legal-links a {
  color: rgba(201, 189, 164, 0.7);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-legal-links a:hover {
  color: var(--gold);
}

.footer-legal-links .cookie-footer-link {
  margin-top: 0;
}

.members-page main {
  padding-bottom: 0;
}

.members-hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  align-items: end;
  overflow: hidden;
  background: #050606;
}

.members-hero-media {
  position: absolute;
  inset: 0;
}

.members-hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.35) 52%, rgba(0, 0, 0, 0.78)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.9), transparent 45%);
}

.members-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.members-hero-copy {
  position: relative;
  z-index: 1;
  width: min(52rem, calc(100% - (var(--mobile-pad) * 2)));
  margin: 0 auto;
  padding: 9rem 0 5rem;
}

.members-hero-copy h1 {
  max-width: 12ch;
  margin: 1rem 0;
  color: #fff;
  font-family: var(--headline);
  font-size: clamp(4rem, 16vw, 10rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.86;
  text-transform: uppercase;
  text-shadow: 4px 4px #000, 0 0 32px rgba(201, 160, 79, 0.18);
}

.members-hero-copy > p:not(.kicker) {
  max-width: 36rem;
  color: rgba(243, 238, 226, 0.82);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.55;
}

.members-strip {
  display: grid;
  gap: 1px;
  background: rgba(201, 160, 79, 0.18);
}

.members-strip article {
  min-height: 17rem;
  background:
    linear-gradient(135deg, rgba(201, 160, 79, 0.08), transparent 50%),
    #101212;
  padding: 2rem;
}

.members-strip .material-symbols-outlined {
  margin-bottom: 2rem;
  color: var(--gold);
  font-size: 2.3rem;
}

.members-strip h2,
.members-join h2 {
  color: #fff;
  font-family: var(--headline);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.95;
  text-transform: uppercase;
}

.members-strip p,
.members-join p {
  max-width: 34rem;
  margin-top: 1rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.55;
}

.members-join {
  display: grid;
  gap: 2rem;
  align-items: stretch;
  margin: 0 auto;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.join-panel {
  display: flex;
  min-height: 28rem;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(201, 160, 79, 0.18);
  background:
    linear-gradient(145deg, rgba(201, 160, 79, 0.1), transparent 44%),
    rgba(26, 28, 28, 0.92);
  padding: clamp(2rem, 6vw, 4rem);
}

.join-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.join-image {
  min-height: 28rem;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.join-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 640px) {
  .hero-actions,
  .snack-row {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .top-nav {
    display: block;
  }

  .bottom-nav {
    display: none;
  }

  main {
    padding-top: 64px;
    padding-bottom: 0;
  }

  .hero-content {
    padding: 0 var(--desktop-pad);
  }

  .feature-strip,
  .members-strip,
  .section,
  .footer-grid,
  .copyright {
    width: min(var(--max), calc(100% - (var(--desktop-pad) * 2)));
  }

  .feature-strip {
    grid-template-columns: repeat(4, 1fr);
    padding: 0;
  }

  .feature-video {
    display: none;
  }

  .section-row {
    flex-direction: row;
    align-items: end;
    justify-content: space-between;
  }

  .concept-grid,
  .guides-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .menu-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .essentials-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .inside-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .inside-wide {
    grid-column: span 2;
  }

  .late-bites,
  .visit-section,
  .hours-section {
    grid-template-columns: repeat(2, 1fr);
  }

  .night-bg-video {
    display: block;
    filter: brightness(1.3) contrast(1.1) saturate(1.12);
    opacity: 1;
  }

  .night-inner {
    display: flex;
    min-height: min(86vh, 860px);
    flex-direction: column;
    justify-content: center;
    padding: 7rem 2rem;
  }

  .night-inner::before {
    opacity: 1;
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.02) 42%, rgba(0, 0, 0, 0.24)),
      linear-gradient(90deg, rgba(0, 0, 0, 0.24), transparent 42%, rgba(0, 0, 0, 0.22)),
      radial-gradient(ellipse at center, rgba(201, 160, 79, 0.06), rgba(0, 0, 0, 0.04) 58%, rgba(0, 0, 0, 0.24));
  }

  .night-inner h2 {
    text-shadow:
      0 3px 0 rgba(0, 0, 0, 0.5),
      0 16px 42px rgba(0, 0, 0, 0.92);
  }

  .night-inner p {
    color: rgba(243, 238, 226, 0.96);
    text-shadow:
      0 2px 0 rgba(0, 0, 0, 0.65),
      0 10px 28px rgba(0, 0, 0, 0.9);
  }

  .vibe-grid {
    grid-template-columns: repeat(12, 1fr);
  }

  .vibe-large {
    grid-column: span 6;
  }

  .vibe-grid div:not(.vibe-large) {
    grid-column: span 3;
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .social-join {
    width: min(var(--max), calc(100% - (var(--desktop-pad) * 2)));
  }

  .social-join-links {
    flex-direction: row;
  }

  .admin-header,
  .admin-tools {
    grid-template-columns: 1fr auto;
    align-items: end;
  }

  .admin-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .members-hero {
    align-items: center;
  }

  .members-hero-copy {
    width: min(var(--max), calc(100% - (var(--desktop-pad) * 2)));
    padding: 7rem 0;
  }

  .members-strip {
    grid-template-columns: repeat(3, 1fr);
    margin: 0 auto;
  }

  .members-join {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .join-actions {
    flex-direction: row;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

/* ===== Rebrand additions: 18+ age gate, badges, coming-soon ===== */

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(3, 4, 4, 0.92);
  backdrop-filter: blur(14px);
}

.age-gate[hidden] {
  display: none;
}

body.age-gate-open {
  overflow: hidden;
}

.age-gate-box {
  max-width: 30rem;
  width: 100%;
  border: 1px solid rgba(201, 160, 79, 0.4);
  background:
    linear-gradient(145deg, rgba(201, 160, 79, 0.12), transparent 45%),
    rgba(8, 9, 9, 0.98);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.6);
  padding: clamp(1.75rem, 5vw, 2.75rem);
  text-align: center;
}

.age-gate-box h2 {
  margin: 0.5rem 0 0.85rem;
  color: #fff;
  font-family: var(--headline);
  font-size: clamp(1.9rem, 6vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  text-transform: uppercase;
}

.age-gate-box p {
  color: var(--muted);
  line-height: 1.6;
}

.age-gate-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin: 1.5rem 0 1rem;
}

.age-gate-fine {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  color: rgba(201, 189, 164, 0.6);
}

.age-badge {
  display: inline-block;
  vertical-align: middle;
  margin-left: 0.5rem;
  padding: 0.1rem 0.45rem;
  border: 1px solid rgba(201, 160, 79, 0.55);
  border-radius: 999px;
  background: rgba(201, 160, 79, 0.12);
  color: var(--gold);
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.6;
  vertical-align: middle;
}

.hero-age-note {
  margin-top: 1.25rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: rgba(201, 189, 164, 0.75);
  text-transform: uppercase;
}

.soon-section .section-center {
  margin-bottom: 2.5rem;
}

.soon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1.25rem;
}

.soon-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  padding: 1.75rem 1.5rem;
}

.soon-card .material-symbols-outlined {
  font-size: 2rem;
  color: var(--gold);
}

.soon-card h3 {
  font-family: var(--headline);
  font-size: 1.25rem;
}

.soon-card p {
  color: var(--muted);
  line-height: 1.55;
}

.soon-tag {
  align-self: flex-start;
  margin-top: 0.5rem;
  padding: 0.25rem 0.6rem;
  border: 1px solid rgba(201, 160, 79, 0.5);
  background: rgba(201, 160, 79, 0.1);
  color: var(--gold);
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Instagram reel tiles (link out — reliable, no broken embeds) */
.reel-tile {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #0c0d0d;
}

.reel-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  transition: opacity 0.3s ease, transform 0.5s ease;
}

.reel-tile:hover img,
.reel-tile:focus-visible img {
  opacity: 0.5;
  transform: scale(1.04);
}

.reel-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.reel-play .material-symbols-outlined {
  font-size: 2.6rem;
  color: var(--gold);
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(201, 160, 79, 0.5);
  border-radius: 999px;
  padding: 0.55rem;
}

.reel-cta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.85rem 1rem;
  text-align: center;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.85), transparent);
  color: #fff;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ===== Admin live preview ===== */
.kolt-preview-mode .cookie-banner,
.kolt-preview-mode .age-gate { display: none !important; }
.kolt-preview-highlight {
  outline: 3px solid var(--gold) !important;
  outline-offset: 3px;
  box-shadow: 0 0 0 7px rgba(201, 160, 79, 0.22) !important;
  border-radius: 4px;
  scroll-margin: 90px;
}
.kolt-preview-col { display: none; }
.kolt-preview-label { display: flex; align-items: center; gap: 0.45rem; margin-bottom: 0.5rem; font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); }
.kolt-preview-dot { width: 0.5rem; height: 0.5rem; border-radius: 50%; background: #46e0c0; box-shadow: 0 0 8px #46e0c0; animation: kolt-live-pulse 1.4s ease-in-out infinite; }
@keyframes kolt-live-pulse { 0%, 100% { opacity: 0.3; } 50% { opacity: 1; } }
.kolt-preview-frame { width: 100%; height: 700px; border: 1px solid rgba(201, 160, 79, 0.3); border-radius: 12px; background: #000; }
.kolt-preview-hint { margin-top: 0.5rem; font-family: var(--mono); font-size: 0.64rem; line-height: 1.5; color: rgba(201, 189, 164, 0.6); }
@media (min-width: 1280px) {
  .kolt-admin-layout.has-preview { grid-template-columns: 200px minmax(0, 1fr) 400px; }
  .kolt-preview-col { display: block; position: sticky; top: 18px; align-self: start; }
}
