:root {
  --bg: #12090c;
  --bg-2: #1a0e12;
  --surface: #241318;
  --line: #3d2a30;
  --burgundy: #7a2436;
  --gold: #c4a574;
  --gold-2: #e6d3b0;
  --text: #f3eadf;
  --muted: #b7a79a;
  --danger: #c45c5c;
  --ok: #7d9a6e;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --wrap: 1120px;
  --radius: 10px;
}
*, *::before, *::after { box-sizing: border-box }
html { scroll-behavior: smooth }
html, body { margin: 0 }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}
img { max-width: 100%; height: auto; display: block }
a { color: var(--gold-2); text-decoration-thickness: 1px; text-underline-offset: 3px }
a:hover { color: #fff }
h1, h2, h3, .brand strong {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: .02em;
  line-height: 1.2;
}
h1 { font-size: clamp(2rem, 5vw, 3.4rem); margin: 0 0 .4em }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin: 0 0 .6em }
h3 { font-size: 1.2rem; margin: 0 0 .4em }
p { margin: 0 0 1em }
.wrap { width: min(100% - 2rem, var(--wrap)); margin-inline: auto }
.skip {
  position: absolute; left: .5rem; top: -3rem;
  background: var(--gold); color: #1a0e12; padding: .5rem .8rem; z-index: 100;
}
.skip:focus { top: .5rem }

.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(18, 9, 12, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: 72px;
}
.brand { display: flex; align-items: center; gap: .75rem; color: var(--text); text-decoration: none }
.brand img { width: 44px; height: 44px; border-radius: 8px }
.brand strong { display: block; font-size: 1.05rem }
.brand small { display: block; color: var(--gold); letter-spacing: .18em; text-transform: uppercase; font-size: .65rem }
.nav-toggle {
  display: inline-flex; align-items: center; gap: .4rem;
  background: transparent; color: var(--text);
  border: 1px solid var(--line); border-radius: 8px;
  padding: .45rem .7rem; cursor: pointer; font: inherit;
}
.nav { display: none }
.nav.is-open, .nav-toggle[aria-expanded="true"] + .nav { display: block }
.nav ul { list-style: none; margin: 0; padding: 0 }
.nav > ul { display: flex; flex-direction: column; gap: .15rem; padding: .6rem 0 1rem }
.nav a, .nav .sub-btn {
  display: block; width: 100%; text-align: left;
  color: var(--text); text-decoration: none;
  background: none; border: 0; font: inherit;
  padding: .55rem .2rem; cursor: pointer;
}
.nav a[aria-current="page"] { color: var(--gold) }
.nav a:hover, .nav .sub-btn:hover { color: var(--gold-2) }
.has-sub { position: relative }
.has-sub > ul {
  display: none; padding: 0 0 .4rem .8rem;
  border-left: 1px solid var(--line); margin: 0 0 .3rem .4rem;
}
.has-sub.is-open > ul { display: block }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .4rem; min-height: 44px; padding: .7rem 1.15rem;
  border-radius: 8px; border: 1px solid transparent;
  font: 600 .95rem/1 var(--sans); cursor: pointer;
  text-decoration: none; color: #1a0e12; background: var(--gold);
}
.btn:hover { background: var(--gold-2); color: #1a0e12 }
.btn-ghost {
  background: transparent; color: var(--text); border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-2); background: transparent }
.btn:focus-visible, .tab:focus-visible, .nav a:focus-visible, .nav .sub-btn:focus-visible {
  outline: 2px solid var(--gold); outline-offset: 2px;
}
.btn-row { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.2rem }
.muted { color: var(--muted) }
.kicker {
  color: var(--gold); letter-spacing: .16em; text-transform: uppercase;
  font-size: .72rem; margin: 0 0 .6rem;
}

.hero { position: relative; min-height: 78vh; display: grid; align-items: end }
.hero-media { position: absolute; inset: 0 }
.hero-media img { width: 100%; height: 100%; object-fit: cover }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(18,9,12,.25) 0%, rgba(18,9,12,.82) 70%, var(--bg) 100%);
}
.hero-copy { position: relative; z-index: 1; padding: 18vh 0 3.5rem }

.section { padding: 3.5rem 0 }
.section-alt { background: var(--bg-2) }
.lead { font-size: 1.12rem; max-width: 46rem }
.grid-2, .grid-3, .cards { display: grid; gap: 1.25rem }
.card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
}
.card-body { padding: 1.1rem 1.15rem 1.3rem }
.card h3 { color: var(--gold-2) }
.photo {
  aspect-ratio: 3 / 2; width: 100%; object-fit: cover;
  cursor: zoom-in; background: #2a171c;
}
.photo:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px }

.hours, .contact-list { list-style: none; margin: 0; padding: 0 }
.hours li, .contact-list li {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: .55rem 0; border-bottom: 1px solid var(--line);
}
.contact-panel {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.2rem 1.25rem;
}
.tabs { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1rem }
.tab {
  background: transparent; color: var(--text); border: 1px solid var(--line);
  border-radius: 999px; padding: .4rem .85rem; cursor: pointer; font: inherit;
}
.tab[aria-selected="true"] { background: var(--gold); color: #1a0e12; border-color: var(--gold) }
.tab-panel[hidden] { display: none }

details.acc {
  border: 1px solid var(--line); border-radius: 8px;
  background: var(--surface); padding: 0 1rem; margin: 0 0 .6rem;
}
details.acc summary {
  cursor: pointer; padding: .9rem 0; font-weight: 600; list-style: none;
}
details.acc summary::-webkit-details-marker { display: none }
details.acc summary::after {
  content: "+"; float: right; color: var(--gold); font-weight: 400;
}
details.acc[open] summary::after { content: "–" }
details.acc .acc-body { padding: 0 0 1rem; color: var(--muted) }

form { display: grid; gap: .85rem }
label { display: grid; gap: .35rem; font-size: .92rem }
input, select, textarea {
  width: 100%; min-height: 44px; padding: .65rem .75rem;
  border-radius: 8px; border: 1px solid var(--line);
  background: #140b0e; color: var(--text); font: inherit;
}
textarea { min-height: 120px; resize: vertical }
.form-msg { min-height: 1.2em; font-size: .92rem }
.form-msg.ok { color: var(--ok) }
.form-msg.err { color: var(--danger) }

.site-footer {
  border-top: 1px solid var(--line); padding: 2.4rem 0 1.5rem;
  color: var(--muted); font-size: .92rem;
}
.footer-grid { display: grid; gap: 1.4rem }
.site-footer h2 { font-size: 1rem; color: var(--text) }
.site-footer ul { list-style: none; margin: 0; padding: 0 }
.site-footer li { margin: .3rem 0 }
.legal-row {
  display: flex; flex-wrap: wrap; gap: .8rem 1.2rem;
  margin-top: 1.6rem; padding-top: 1rem; border-top: 1px solid var(--line);
  font-size: .82rem;
}
.badge-18 {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border: 1px solid var(--gold); color: var(--gold);
  border-radius: 50%; font-weight: 700; font-size: .8rem;
}

dialog.modal {
  border: 0; padding: 0; background: transparent; color: inherit;
  width: min(100% - 1.5rem, 520px);
  margin: auto;
  max-height: calc(100vh - 2rem);
  overflow: auto;
}
dialog.modal::backdrop {
  background: rgba(8, 4, 6, .82);
}
.modal-card {
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: 12px; padding: 1.4rem 1.3rem 1.3rem;
}
.modal-card h2 { font-size: 1.45rem }
.age-actions, .cookie-actions { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1rem }
#lightbox { width: min(100% - 1rem, 960px) }
#lightbox img { width: 100%; border-radius: 8px }
.cookie-bar {
  position: fixed; z-index: 50; inset: auto .8rem .8rem;
  width: min(calc(100% - 1.6rem), 640px); margin: 0 auto; left: 0; right: 0;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 12px; padding: 1rem 1.1rem;
  box-shadow: 0 12px 40px rgba(0,0,0,.35);
}
.cookie-bar[hidden] { display: none !important }
.prose { max-width: 46rem }
.prose h2 { margin-top: 1.8em }
.prose ul { padding-left: 1.1rem }
.job-meta { font-size: .88rem; color: var(--gold); margin-bottom: .4rem }

@media (min-width: 840px) {
  .nav-toggle { display: none }
  .nav, .nav.is-open { display: block }
  .nav > ul {
    flex-direction: row; align-items: center; gap: .2rem 1.1rem;
    padding: 0;
  }
  .nav a, .nav .sub-btn { width: auto; padding: .4rem 0 }
  .has-sub > ul {
    position: absolute; top: 100%; left: 0; min-width: 200px;
    background: var(--bg-2); border: 1px solid var(--line);
    border-radius: 8px; padding: .4rem .7rem; margin: .4rem 0 0;
    box-shadow: 0 10px 28px rgba(0,0,0,.3);
  }
  .grid-2 { grid-template-columns: 1.1fr .9fr }
  .grid-3, .cards { grid-template-columns: repeat(3, 1fr) }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr }
  .split { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start }
}
@media (max-width: 839px) {
  .header-inner { flex-wrap: wrap }
  .nav { flex-basis: 100% }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto }
}
