:root {
  --paper: #f3ead9;
  --ink: #241c16;
  --wine: #6e2430;
  --wine-dark: #4c1821;
  --mute: #6a5d52;
  --card: #fffaf2;
  --line: #d9cbb6;
  --shadow: 0 12px 32px rgba(36, 28, 22, 0.08);
}

* { box-sizing: border-box; }
html { font-size: 18px; }
body {
  margin: 0;
  background: radial-gradient(1200px 500px at 10% -10%, #fbeed8, var(--paper));
  color: var(--ink);
  font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", sans-serif;
  line-height: 1.55;
}
h1, h2, .wordmark {
  font-family: Palatino, "Palatino Linotype", "Iowan Old Style", serif;
  font-weight: 600;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(1.8rem, 3vw, 2.6rem); line-height: 1.15; margin: 0 0 0.6rem; }
h2 { font-size: 1.35rem; margin: 2rem 0 0.8rem; }
a { color: var(--wine); text-decoration-thickness: 1px; }
a:hover { color: var(--wine-dark); }
.wrap { width: min(1120px, calc(100% - 2rem)); margin: 0 auto; }
.mast {
  border-bottom: 1px solid var(--line);
  background: rgba(243, 234, 217, 0.92);
}
.mast-row { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 0.85rem 0; }
.wordmark {
  color: var(--ink);
  text-decoration: none;
  font-size: 1.35rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.brand-mark { display: block; flex: 0 0 auto; }
.nav { display: flex; gap: 1.1rem; align-items: center; }
.nav-cta {
  background: var(--wine);
  color: #fff8ef !important;
  text-decoration: none;
  padding: 0.4rem 0.75rem;
  font-size: 0.92rem;
}
.nav-cta:hover { background: var(--wine-dark); color: #fff !important; }
.hero { padding: 2.2rem 0 1rem; }
.eyebrow { text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.72rem; color: var(--wine); margin: 0 0 0.4rem; }
.lead { font-size: 1.05rem; max-width: 42rem; }
.stats { color: var(--mute); }
.place-grid, .cards, .alpha, .traits, .pages { list-style: none; padding: 0; margin: 0; }
.place-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 0.6rem; }
.place-grid a, .alpha a { text-decoration: none; }
.place-grid li { background: var(--card); border: 1px solid var(--line); padding: 0.7rem 0.85rem; box-shadow: var(--shadow); }
.cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 1rem; margin: 1rem 0 2rem; }
.card {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--line);
  color: inherit;
  text-decoration: none;
  min-height: 100%;
  box-shadow: var(--shadow);
}
.card img, .ph {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: #e6d7c3;
  display: block;
}
.card-meta { padding: 0.7rem 0.8rem 0.9rem; display: flex; flex-direction: column; gap: 0.15rem; }
.card-meta em { font-style: normal; color: var(--mute); font-size: 0.9rem; }
.alpha { columns: 3 180px; gap: 1.2rem; }
.alpha li { display: flex; justify-content: space-between; gap: 0.6rem; padding: 0.25rem 0; border-bottom: 1px dashed var(--line); break-inside: avoid; }
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 0.5rem; margin: 1rem 0; }
.gallery img { width: 100%; height: 220px; object-fit: cover; background: #e6d7c3; }
.gallery-stage {
  position: relative;
  margin: 1rem 0 0.6rem;
  background: #1c1511;
  border: 1px solid var(--line);
  min-height: 360px;
  aspect-ratio: 4 / 5;
  max-height: 72vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-main {
  margin: 0;
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: zoom-in;
  display: block;
  transition: filter 0.2s ease;
}
.gallery-main img.is-blurred {
  filter: blur(18px) brightness(0.72);
  cursor: pointer;
  transform: scale(1.08);
}
.gallery-unlock {
  display: none;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  background: var(--wine);
  color: #fff8ef !important;
  text-decoration: none;
  padding: 0.75rem 1.15rem;
  font: inherit;
  font-weight: 600;
  box-shadow: 0 10px 28px rgba(0,0,0,0.35);
}
.gallery-unlock.is-on { display: inline-block; }
.gallery-unlock:hover { background: var(--wine-dark); }
.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 2.6rem;
  height: 2.6rem;
  border: 0;
  border-radius: 999px;
  background: rgba(36, 28, 22, 0.78);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}
.gallery-prev { left: 0.65rem; }
.gallery-next { right: 0.65rem; }
.gallery-count {
  position: absolute;
  right: 0.7rem;
  bottom: 0.55rem;
  z-index: 4;
  margin: 0;
  background: rgba(36, 28, 22, 0.7);
  color: #fff;
  font-size: 0.85rem;
  padding: 0.2rem 0.5rem;
}
.gallery-thumbs {
  list-style: none;
  padding: 0;
  margin: 0 0 0.8rem;
  display: flex;
  gap: 0.45rem;
  overflow-x: auto;
}
.gallery-thumbs button {
  position: relative;
  border: 2px solid transparent;
  padding: 0;
  background: #e6d7c3;
  cursor: pointer;
  width: 72px;
  height: 96px;
  flex: 0 0 auto;
  overflow: hidden;
}
.gallery-thumbs button.is-active { border-color: var(--wine); }
.gallery-thumbs button.is-blurred img { filter: blur(6px) brightness(0.75); transform: scale(1.1); }
.gallery-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.thumb-lock {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(20,14,10,0.28);
}
.thumb-lock::before {
  content: "";
  width: 1rem;
  height: 0.72rem;
  border: 2px solid #fff;
  border-radius: 0.2rem;
  box-shadow: 0 -0.45rem 0 -0.15rem #fff;
}
.gallery-more { margin: 0 0 1.4rem; }
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0.7rem 0 0.2rem;
}
.cta-inline { margin: 0.8rem 0 0; }
.btn-wide { width: 100%; text-align: center; box-sizing: border-box; }
.btn-ghost {
  background: transparent;
  color: var(--wine) !important;
  border: 1px solid var(--wine);
}
.btn-ghost:hover {
  background: var(--wine);
  color: #fff8ef !important;
}
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 14, 10, 0.92);
  z-index: 40;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.lightbox.is-open { display: flex; }
.lightbox img {
  max-width: min(96vw, 1100px);
  max-height: 90vh;
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 0.8rem;
  right: 1rem;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: rgba(255,255,255,0.12);
  color: #fff;
  width: 2.8rem;
  height: 2.8rem;
  font-size: 1.8rem;
  cursor: pointer;
}
.lightbox-prev { left: 0.8rem; }
.lightbox-next { right: 0.8rem; }
.phone { font-size: 1.4rem; font-family: Palatino, serif; }
.cloak { letter-spacing: 0.12em; color: var(--mute); }
.blob .link-veil {
  color: var(--mute);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
}
.blob .link-veil:hover { color: var(--wine); }
.btn {
  display: inline-block;
  background: var(--wine);
  color: #fff8ef !important;
  text-decoration: none;
  border: 0;
  padding: 0.7rem 1rem;
  font: inherit;
  cursor: pointer;
}
.btn:hover { background: var(--wine-dark); }
.traits { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.traits li { background: #efe3d0; padding: 0.25rem 0.55rem; font-size: 0.9rem; }
.blob { white-space: pre-wrap; font: inherit; background: var(--card); border: 1px solid var(--line); padding: 1rem; }
.hours { width: min(28rem, 100%); border-collapse: collapse; margin: 0.4rem 0 1rem; }
.hours th, .hours td { text-align: left; padding: 0.35rem 0.6rem; border-bottom: 1px solid var(--line); }
.hours th { width: 40%; color: var(--mute); font-weight: 600; }
.service-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1rem; margin: 0.6rem 0 1.2rem; }
.service-block h3 { font-size: 1.05rem; margin: 0 0 0.45rem; font-family: Palatino, "Palatino Linotype", serif; }
.gate { display: flex; flex-direction: column; gap: 0.8rem; max-width: 26rem; margin: 1.2rem 0; }
.gate input[type="password"] { font: inherit; padding: 0.5rem; border: 1px solid var(--line); }
.check { display: flex; gap: 0.5rem; align-items: flex-start; }
.pages { display: flex; flex-wrap: wrap; gap: 0.4rem; margin: 1.5rem 0 2rem; }
.pages a, .pages span { min-width: 2rem; text-align: center; padding: 0.25rem 0.45rem; border: 1px solid var(--line); background: var(--card); }
.pages span { background: var(--wine); color: #fff; }
.colophon { border-top: 1px solid var(--line); margin-top: 3rem; padding: 1.5rem 0 2rem; color: var(--mute); font-size: 0.92rem; }
.note { max-width: 50rem; }
.foot-links { display: flex; gap: 1rem; }
.tiny { font-size: 0.82rem; }
.crumb { color: var(--mute); font-size: 0.92rem; }
.warn { color: var(--wine-dark); }
@media (max-width: 640px) {
  .mast-row { flex-direction: column; align-items: flex-start; }
  .alpha { columns: 1; }
  .gallery img { height: 180px; }
  .gallery-stage { min-height: 280px; aspect-ratio: 3 / 4; }
  .cta-row { flex-direction: column; }
  .btn-wide, .cta-row .btn { width: 100%; text-align: center; box-sizing: border-box; }
}

/* 18+ entry wall */
body.agewall-pending { overflow: hidden; }
.agewall {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(20, 14, 10, 0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
}
.agewall-card {
  width: min(28rem, 100%);
  background: var(--card, #fffaf2);
  color: var(--ink, #241c16);
  border: 1px solid var(--line, #d9cbb6);
  padding: 1.6rem 1.4rem 1.4rem;
  box-shadow: 0 18px 48px rgba(0,0,0,0.28);
  text-align: center;
}
.agewall-mark {
  margin: 0 0 0.4rem;
  font-size: 2rem;
  font-weight: 700;
  color: var(--wine, #6e2430);
  letter-spacing: 0.04em;
}
.agewall-card h2 {
  margin: 0 0 0.7rem;
  font-size: 1.55rem;
}
.agewall-card p { margin: 0 0 0.7rem; }
.agewall-actions {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-top: 1rem;
}
.agewall-actions .btn,
.agewall-actions .btn-ghost {
  width: 100%;
  text-align: center;
  box-sizing: border-box;
}
