:root {
  --ink: #161310;
  --paper: #f4efe7;
  --cream: #fbf8f3;
  --gold: #a8874f;
  --gold-2: #c4a46a;
  --line: #ddd4c6;
  --muted: #6b6358;
  --white: #fffcf8;
  --shadow: 0 10px 28px rgba(22, 19, 16, 0.08);
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
html,
body {
  margin: 0;
  padding: 0;
}
body {
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 1rem;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
}
h1,
h2,
h3,
h4 {
  font-family: Palatino, "Palatino Linotype", "Iowan Old Style", Georgia, serif;
  font-weight: 500;
  line-height: 1.2;
  margin: 0 0 0.7em;
}
h1 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  letter-spacing: 0.02em;
}
h2 {
  font-size: clamp(1.55rem, 3vw, 2.15rem);
}
h3 {
  font-size: 1.2rem;
}
p {
  margin: 0 0 1em;
}
.wrap {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}
.skip {
  position: absolute;
  left: -999px;
  top: 0;
}
.skip:focus {
  left: 12px;
  z-index: 80;
  background: var(--ink);
  color: var(--cream);
  padding: 8px 12px;
}
.site-header {
  background: var(--ink);
  color: var(--cream);
  border-bottom: 1px solid var(--gold);
  position: sticky;
  top: 0;
  z-index: 40;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 76px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--cream);
}
.brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--gold);
}
.brand span {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.72rem;
}
.brand strong {
  font-family: Palatino, Georgia, serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.18em;
}
.nav-toggle {
  display: none;
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--gold);
  padding: 8px 12px;
  cursor: pointer;
  font: inherit;
}
.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
}
.nav a {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.92rem;
  padding: 6px 0;
  border-bottom: 1px solid transparent;
}
.nav a:hover,
.nav a[aria-current="page"] {
  border-bottom-color: var(--gold);
  color: #fff;
}
.hero {
  position: relative;
  min-height: 68vh;
  display: grid;
  place-items: end stretch;
  background: var(--ink);
  color: var(--cream);
}
.hero img {
  width: 100%;
  height: 68vh;
  object-fit: cover;
  opacity: 0.72;
}
.hero-copy {
  position: absolute;
  inset: auto 0 0;
  padding: 48px 0 40px;
  background: linear-gradient(transparent, rgba(22, 19, 16, 0.92) 55%);
}
.kicker {
  color: var(--gold-2);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.75rem;
  margin-bottom: 10px;
}
.hero p {
  max-width: 640px;
  color: #ebe3d6;
}
.section {
  padding: 72px 0;
}
.section.alt {
  background: var(--cream);
}
.lead {
  font-size: 1.12rem;
  max-width: 68ch;
  color: #3b342d;
}
.grid-2,
.grid-3 {
  display: grid;
  gap: 24px;
}
.grid-2 {
  grid-template-columns: 1fr 1fr;
}
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 22px;
}
.card h3 {
  margin-top: 14px;
}
.zoom {
  cursor: zoom-in;
}
.gallery img {
  width: 100%;
  aspect-ratio: 1280 / 854;
  object-fit: cover;
}
.btn,
.btn-ghost {
  display: inline-block;
  text-decoration: none;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--cream);
  padding: 12px 22px;
  font: inherit;
  cursor: pointer;
  letter-spacing: 0.04em;
}
.btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}
.hero .btn,
.contact-panel .btn {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.hero .btn:hover,
.contact-panel .btn:hover {
  background: var(--cream);
  border-color: var(--cream);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
}
.hero .btn-ghost,
.contact-panel .btn-ghost {
  color: var(--cream);
  border-color: var(--gold-2);
}
.hero .btn-ghost:hover,
.contact-panel .btn-ghost:hover {
  background: var(--cream);
  color: var(--ink);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--cream);
}
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}
.hours,
.contact-panel {
  background: var(--ink);
  color: var(--cream);
  padding: 28px;
}
.contact-panel a {
  color: var(--gold-2);
  text-decoration: none;
}
.contact-panel a:hover {
  text-decoration: underline;
}
.contact-panel h2 {
  color: var(--cream);
}
.muted {
  color: var(--muted);
}
.list {
  margin: 0;
  padding-left: 1.1em;
}
.list li {
  margin-bottom: 0.45em;
}
details {
  border: 1px solid var(--line);
  background: var(--white);
  margin: 0 0 10px;
}
summary {
  cursor: pointer;
  padding: 14px 16px;
  font-weight: 600;
  list-style: none;
}
summary::-webkit-details-marker {
  display: none;
}
summary::after {
  content: "+";
  float: right;
  color: var(--gold);
  font-weight: 400;
}
details[open] summary::after {
  content: "−";
}
details p,
details ul {
  padding: 0 16px 14px;
  margin: 0;
}
label {
  display: block;
  font-size: 0.88rem;
  margin: 12px 0 6px;
}
input,
select,
textarea {
  width: 100%;
  font: inherit;
  padding: 10px 12px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
}
textarea {
  min-height: 110px;
  resize: vertical;
}
.form-note {
  font-size: 0.9rem;
  color: var(--muted);
}
.ok {
  display: none;
  border: 1px solid var(--gold);
  background: #f7f1e4;
  padding: 12px 14px;
  margin-top: 12px;
}
.site-footer {
  background: var(--ink);
  color: #b7aea2;
  padding: 36px 0 28px;
  font-size: 0.92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
.site-footer a {
  color: var(--cream);
  text-decoration: none;
}
.site-footer a:hover {
  color: var(--gold-2);
}
.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer li {
  margin: 0 0 8px;
}
.legal {
  border-top: 1px solid #2c2722;
  padding-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: space-between;
}
.overlay,
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(16, 13, 11, 0.78);
  z-index: 70;
  display: grid;
  place-items: center;
  padding: 20px;
}
.overlay[hidden],
.lightbox[hidden],
.cookie[hidden],
#age-block[hidden] {
  display: none !important;
}
.dialog {
  background: var(--cream);
  color: var(--ink);
  width: min(460px, 100%);
  padding: 32px 28px;
  border: 1px solid var(--gold);
  text-align: center;
}
.dialog h2 {
  font-size: 1.8rem;
}
.age-mark {
  display: inline-block;
  border: 1px solid var(--gold);
  padding: 4px 10px;
  letter-spacing: 0.2em;
  margin-bottom: 12px;
  font-size: 0.85rem;
}
.cookie {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 16px;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1120px;
  margin-inline: auto;
}
.lightbox img {
  max-width: min(1100px, 92vw);
  max-height: 86vh;
  object-fit: contain;
}
.lightbox button {
  position: absolute;
  top: 16px;
  right: 16px;
}
#age-block {
  min-height: 70vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 48px 16px;
}
.dropdown {
  position: relative;
}
.dropdown summary {
  background: var(--white);
}
.dropdown-panel {
  padding: 0 16px 14px;
}
@media (max-width: 860px) {
  .grid-2,
  .grid-3,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .nav-toggle {
    display: inline-block;
  }
  .nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 76px;
    background: var(--ink);
    flex-direction: column;
    padding: 12px 16px 20px;
    border-bottom: 1px solid var(--gold);
  }
  .nav.open {
    display: flex;
  }
  .hero img,
  .hero {
    min-height: 52vh;
    height: auto;
  }
  .hero img {
    height: 52vh;
  }
  .section {
    padding: 48px 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
