@font-face {
  font-family: Fraunces;
  font-style: normal;
  font-display: swap;
  font-weight: 500 700;
  src: url("../fonts/fraunces.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: Manrope;
  font-style: normal;
  font-display: swap;
  font-weight: 400 700;
  src: url("../fonts/manrope.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --cream: #f3eee4;
  --paper: #fbf8f2;
  --ink: #1c241e;
  --muted: #5d665f;
  --forest: #2c3a31;
  --sage: #6e7d68;
  --clay: #c45c26;
  --clay-d: #9b4518;
  --stone: #d9d0c3;
  --line: rgba(28, 36, 30, 0.12);
  --white: #fffcf7;
  --shadow: 0 28px 60px -32px rgba(28, 36, 30, 0.42);
  --radius: 2.4rem;
  --radius-s: 1.35rem;
  --font-d: Fraunces, "Iowan Old Style", Palatino, Georgia, serif;
  --font-s: Manrope, "Avenir Next", "Segoe UI", sans-serif;
  --space: clamp(1.1rem, 2.4vw, 2rem);
  --max: 72rem;
}

*,
*::before,
*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
img, svg { max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; }

body {
  font-family: var(--font-s);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  background:
    radial-gradient(1200px 700px at 8% -10%, rgba(196, 92, 38, 0.09), transparent 55%),
    radial-gradient(900px 600px at 100% 8%, rgba(110, 125, 104, 0.14), transparent 50%),
    var(--cream);
  min-height: 100%;
}

body.is-locked,
body:has(.age-gate.is-open),
body:has(.overlay.is-open) { overflow: hidden; }

.skip {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--forest);
  color: var(--paper);
  padding: 0.6rem 1rem;
  border-radius: 999px;
  z-index: 80;
}
.skip:focus { top: 1rem; }

h1, h2, h3, .brand-name {
  font-family: var(--font-d);
  font-weight: 620;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--forest);
  margin: 0;
}
h1 { font-size: clamp(2.35rem, 6.4vw, 4.7rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.85rem); }
h3 { font-size: 1.35rem; }
p { margin: 0 0 1rem; color: var(--muted); }
p.lede { font-size: 1.15rem; max-width: 40rem; }

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0.7rem;
  z-index: 40;
  isolation: isolate;
  width: min(100% - 1.2rem, calc(var(--max) + 1rem));
  margin: 0.7rem auto 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.55rem 0.65rem 0.55rem 0.9rem;
  background: color-mix(in srgb, var(--paper) 86%, transparent);
  backdrop-filter: blur(16px);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 10px 30px -22px rgba(28, 36, 30, 0.5);
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  flex: 0 0 auto;
}
.brand img {
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 50%;
  object-fit: cover;
  background: var(--cream);
}
.brand-name { font-size: 1.2rem; }
.brand small {
  display: block;
  font-family: var(--font-s);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 600;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.1rem 0.75rem;
  margin-left: auto;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav a {
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--forest);
  padding: 0.35rem 0;
  border-bottom: 1px solid transparent;
  white-space: nowrap;
}
.nav a:hover, .nav a[aria-current="page"] { border-bottom-color: var(--clay); }
.header-actions { display: flex; align-items: center; gap: 0.45rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  background: var(--clay);
  color: var(--white);
  font-weight: 650;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, background 0.2s ease;
}
.btn:hover { background: var(--clay-d); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--forest);
  box-shadow: none;
  border: 1px solid var(--line);
}
.btn-ghost:hover { background: var(--white); }
.btn-dark { background: var(--forest); }
.btn-dark:hover { background: var(--ink); }
.btn-sm { padding: 0.62rem 1rem; font-size: 0.92rem; }
.nav-toggle {
  display: none;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--white);
  cursor: pointer;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 1.05rem;
  height: 2px;
  background: var(--forest);
  position: relative;
  margin: 0 auto;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.2rem, 3vw, 2.5rem);
  align-items: center;
  padding: clamp(1.4rem, 4vw, 3.2rem) 0 2rem;
}
.hero-copy {
  background: var(--paper);
  border-radius: 3.2rem 5.2rem 2.6rem 4.4rem;
  padding: clamp(1.5rem, 4vw, 3rem);
  box-shadow: var(--shadow);
  position: relative;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 0.85rem;
}
.hero-copy p { font-size: 1.08rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.4rem; }
.hero-visual {
  position: relative;
  border-radius: 5rem 2.4rem 4.6rem 2.8rem;
  overflow: hidden;
  min-height: 22rem;
  box-shadow: var(--shadow);
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16/10;
}
.badge-18 {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  background: var(--forest);
  color: var(--paper);
  border-radius: 999px;
  padding: 0.4rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.section { padding: clamp(2.2rem, 5vw, 4.4rem) 0; content-visibility: auto; contain-intrinsic-size: 1px 640px; }
.section-head { max-width: 40rem; margin-bottom: 1.8rem; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: center;
}
.split img, .media img {
  width: 100%;
  object-fit: cover;
}
.media {
  border-radius: 2.8rem 4rem 2.4rem 3.6rem;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.media img { aspect-ratio: 4/3; }

.grid-3, .grid-2, .cards {
  display: grid;
  gap: 1rem;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: 1fr 1fr; }

.card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 1.25rem;
  border: 1px solid var(--line);
}
.card-photo {
  padding: 0.55rem;
  overflow: hidden;
  cursor: pointer;
}
.card-photo img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 2rem 2.6rem 1.7rem 2.3rem;
}
.card h3 { margin-bottom: 0.4rem; }
.card p:last-child { margin-bottom: 0; }

.hours {
  background: var(--forest);
  color: var(--paper);
  border-radius: 3rem 2.2rem 3.4rem 2.6rem;
  padding: clamp(1.4rem, 3vw, 2.2rem);
}
.hours h2, .hours p, .hours dt, .hours dd { color: var(--paper); }
.hours dl { display: grid; gap: 0.55rem 1.2rem; grid-template-columns: 1fr auto; margin: 1rem 0 0; }
.hours dt { font-weight: 650; }
.hours dd { margin: 0; text-align: right; opacity: 0.9; }

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.2rem;
}
.contact-list a { color: var(--clay-d); font-weight: 650; text-decoration: none; }
.contact-list a:hover { text-decoration: underline; }
.contact-list li { margin: 0.45rem 0; }

form {
  display: grid;
  gap: 0.75rem;
}
label { font-size: 0.86rem; font-weight: 650; color: var(--forest); display: grid; gap: 0.35rem; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 1rem;
  padding: 0.8rem 0.95rem;
}
textarea { min-height: 7.5rem; resize: vertical; }
.form-note { font-size: 0.86rem; color: var(--sage); }
.form-success {
  display: none;
  background: #e7efe4;
  color: var(--forest);
  border-radius: var(--radius-s);
  padding: 1rem 1.1rem;
}
form.is-ok .form-success { display: block; }
form.is-ok .form-fields { display: none; }
.field-error { color: #9b2f16; font-size: 0.8rem; display: none; }
.is-invalid .field-error { display: block; }
.is-invalid input, .is-invalid select, .is-invalid textarea { border-color: #9b2f16; }

.accordion { display: grid; gap: 0.55rem; }
.acc-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  overflow: hidden;
}
.acc-btn {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 1rem 1.15rem;
  font-weight: 650;
  color: var(--forest);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.acc-btn::after {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid var(--clay);
  border-bottom: 2px solid var(--clay);
  transform: rotate(45deg);
  margin-top: 0.15rem;
  flex: 0 0 auto;
  transition: transform 0.2s ease;
}
.acc-item.is-open .acc-btn::after { transform: rotate(225deg); }
.acc-panel {
  display: none;
  padding: 0 1.15rem 1.1rem;
  color: var(--muted);
}
.acc-item.is-open .acc-panel { display: block; }

.tabs { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-bottom: 1rem; }
.tab {
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 999px;
  padding: 0.5rem 0.95rem;
  cursor: pointer;
  font-weight: 650;
  color: var(--forest);
}
.tab[aria-selected="true"] {
  background: var(--forest);
  color: var(--paper);
  border-color: var(--forest);
}
.tab-panel { display: none; }
.tab-panel.is-active { display: block; }

.site-footer {
  margin-top: 2rem;
  background: var(--forest);
  color: #e6e0d4;
  border-radius: 3.2rem 3.2rem 0 0;
  padding: 2.4rem 0 1.4rem;
}
.site-footer h2, .site-footer h3 { color: var(--paper); }
.site-footer a { color: #f0e6d6; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 1.4rem;
}
.footer-grid ul { list-style: none; margin: 0.6rem 0 0; padding: 0; }
.footer-grid li { margin: 0.35rem 0; }
.legal-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem;
  margin-top: 1.8rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(243, 238, 228, 0.15);
  font-size: 0.86rem;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(28, 36, 30, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 70;
}
.overlay.is-open { display: flex; }
.modal {
  width: min(100%, 32rem);
  background: var(--paper);
  border-radius: 2.4rem;
  padding: 1.15rem 1.25rem 1.2rem;
  box-shadow: var(--shadow);
  max-height: min(88vh, 44rem);
  overflow: auto;
}
.modal form { gap: 0.55rem; }
.modal input, .modal select, .modal textarea { padding: 0.58rem 0.8rem; }
.modal textarea { min-height: 3.2rem; }
.modal .btn { margin-top: 0.15rem; }
.modal-close {
  float: right;
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--white);
  cursor: pointer;
}

.age-gate {
  z-index: 90;
  background:
    radial-gradient(900px 500px at 20% 0%, rgba(196, 92, 38, 0.18), transparent 50%),
    var(--cream);
}
.age-gate.is-open {
  display: grid;
  place-items: center;
}
.age-card {
  width: min(100%, 32rem);
  background: var(--paper);
  border-radius: 3rem 4.2rem 2.6rem 3.6rem;
  padding: 2rem 1.6rem;
  text-align: center;
  box-shadow: var(--shadow);
}
.age-card img {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  margin: 0 auto 1rem;
}
.age-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.2rem; }
.age-denied { display: none; }
.age-gate.is-denied .age-ask { display: none; }
.age-gate.is-denied .age-denied { display: block; }

.cookie-bar {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  width: min(calc(100% - 1.4rem), 44rem);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 1.6rem;
  padding: 1rem 1.1rem;
  box-shadow: var(--shadow);
  z-index: 60;
  display: none;
  gap: 0.8rem;
  align-items: center;
}
.cookie-bar.is-open { display: flex; }
.cookie-bar p { margin: 0; font-size: 0.92rem; }
.cookie-actions { display: flex; gap: 0.4rem; flex: 0 0 auto; }

.lightbox-frame {
  width: min(100%, 56rem);
  background: transparent;
}
.lightbox-frame img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 1.4rem;
}

.prose { max-width: 46rem; }
.prose h2 { margin: 2rem 0 0.7rem; }
.prose h3 { margin: 1.4rem 0 0.45rem; }
.prose ul { color: var(--muted); padding-left: 1.1rem; }
.page-hero {
  padding: 2.2rem 0 0.4rem;
}
.page-hero p { max-width: 38rem; }

.job-meta { font-size: 0.86rem; color: var(--sage); margin-bottom: 0.5rem; }

@media (max-width: 1280px) {
  .header-actions .btn-sm { padding: 0.55rem 0.8rem; font-size: 0.82rem; }
  .site-header { border-radius: 1.6rem; top: 0.45rem; }
  .nav {
    display: none;
    position: absolute;
    top: calc(100% + 0.45rem);
    left: 0;
    right: 0;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 1.4rem;
    padding: 0.8rem 1rem 1rem;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: var(--shadow);
  }
  .nav.is-open { display: flex; z-index: 8; }
  .nav-toggle { display: grid; place-items: center; }
}

@media (max-width: 920px) {
  .hero, .split, .grid-3, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .hours dl { grid-template-columns: 1fr; }
  .hours dd { text-align: left; }
  .cookie-bar { flex-direction: column; align-items: stretch; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
