/* ---------- base ---------- */
html { scroll-behavior: smooth; }
body.menu-open, body.slip-open { overflow: hidden; }
body { font-size: 16px; line-height: 1.6; }
svg { flex: none; }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: #0F0708; }
::-webkit-scrollbar-thumb { background: #6D1020; }
::-webkit-scrollbar-thumb:hover { background: #C9283C; }

.ital   { font-family: "Zilla Slab", Georgia, serif; font-style: italic; font-weight: 500; }
.ember  { color: #C9283C; }
.block  { display: block; }

.rule {
  display: inline-block;
  width: 32px; height: 1px;
  background: #C9283C;
  flex: none;
}

/* ---------- top stripe ---------- */
.stripe {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: repeating-linear-gradient(90deg, #C9283C 0, #C9283C 20px, #0F0708 20px, #0F0708 40px);
  z-index: 70;
}

/* ---------- NAV ---------- */
.nav {
  position: fixed;
  top: 3px; left: 0; right: 0;
  z-index: 50;
  background: rgba(15, 7, 8, 0.6);
  backdrop-filter: saturate(1.2) blur(10px);
  -webkit-backdrop-filter: saturate(1.2) blur(10px);
  transition: background-color 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid rgba(239, 226, 205, 0.06);
}
.nav.is-scrolled {
  background: rgba(15, 7, 8, 0.92);
  border-bottom-color: rgba(239, 226, 205, 0.1);
}
.nav-inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0.85rem 1rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 768px) { .nav-inner { padding: 1rem 2rem; gap: 2rem; } }

.nav-logo {
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
  text-decoration: none;
  color: inherit;
}
.logo-word {
  font-family: "Abril Fatface", serif;
  font-size: 1.75rem;
  letter-spacing: 0.04em;
  color: #EFE2CD;
  line-height: 1;
}
@media (min-width: 768px) { .logo-word { font-size: 2rem; } }
.logo-stamp {
  display: inline-block;
  padding: 0.15rem 0.45rem;
  background: #C9283C;
  color: #0F0708;
  font-family: "Work Sans", sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  line-height: 1;
}

.nav-links {
  display: none;
  justify-self: center;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 1024px) { .nav-links { display: inline-flex; } }
.nav-link {
  position: relative;
  font-family: "Zilla Slab", serif;
  font-size: 0.95rem;
  color: #EFE2CD;
  text-decoration: none;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: #C9283C;
  transition: width 0.35s cubic-bezier(0.6, 0, 0.1, 1);
}
.nav-link:hover { color: #C9283C; }
.nav-link:hover::after { width: 100%; }

.nav-right { display: inline-flex; align-items: center; gap: 0.5rem; }
.nav-phone {
  display: none;
  align-items: center;
  gap: 0.45rem;
  padding: 0 0.75rem;
  color: #EFE2CD;
  font-family: "Work Sans", sans-serif;
  font-size: 0.82rem;
  text-decoration: none;
}
@media (min-width: 1200px) { .nav-phone { display: inline-flex; } }
.nav-phone svg { color: #C9283C; }
.nav-phone:hover { color: #C9283C; }
.nav-cta {
  display: none;
  align-items: center;
  padding: 0.6rem 1.1rem;
  background: #C9283C;
  color: #0F0708;
  border: 0;
  font-family: "Work Sans", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background-color 0.25s ease;
}
@media (min-width: 640px) { .nav-cta { display: inline-flex; } }
.nav-cta:hover { background: #EFE2CD; }

.menu-btn {
  width: 44px; height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(239, 226, 205, 0.35);
  background: transparent;
  color: #EFE2CD;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
@media (min-width: 1024px) { .menu-btn { display: none; } }
.menu-btn:hover { background: #C9283C; border-color: #C9283C; }
.menu-open .menu-btn { background: #C9283C; border-color: #C9283C; color: #0F0708; }

.burger { position: relative; display: block; width: 18px; height: 10px; }
.burger span {
  position: absolute; left: 0;
  width: 100%; height: 1.6px;
  background: currentColor;
  transition: transform 0.4s cubic-bezier(0.68, -0.2, 0.3, 1.4), top 0.3s cubic-bezier(0.68, -0.2, 0.3, 1.4);
}
.burger span:nth-child(1) { top: 2px; }
.burger span:nth-child(2) { top: 7px; }
.menu-open .burger span:nth-child(1) { top: 4.5px; transform: rotate(45deg); }
.menu-open .burger span:nth-child(2) { top: 4.5px; transform: rotate(-45deg); }

/* ---------- FS MENU ---------- */
.fs-menu {
  position: fixed; inset: 0;
  z-index: 45;
  background: #0F0708;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s;
}
.menu-open .fs-menu { opacity: 1; visibility: visible; pointer-events: auto; }
.fs-wrap {
  height: 100%;
  padding: 6rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
}
.fs-nav { display: flex; flex-direction: column; }
.fs-link {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 1rem 0;
  font-family: "Abril Fatface", serif;
  font-size: clamp(1.75rem, 7vw, 3rem);
  color: #EFE2CD;
  text-decoration: none;
  border-bottom: 1px solid rgba(239, 226, 205, 0.1);
  opacity: 0;
  transform: translateX(16px);
  transition: color 0.3s ease, padding-left 0.3s ease, opacity 0.5s ease, transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.menu-open .fs-link {
  opacity: 1;
  transform: translateX(0);
  transition-delay: calc(0.2s + var(--i, 0) * 0.06s);
}
.fs-link:hover { color: #C9283C; padding-left: 0.5rem; }
.fs-link > span:first-child {
  font-family: "Work Sans", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: #C9283C;
  min-width: 2.5rem;
}
.fs-foot {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(239, 226, 205, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}
.fs-phone {
  font-family: "Abril Fatface", serif;
  font-size: 2rem;
  color: #EFE2CD;
  text-decoration: none;
}
.fs-phone:hover { color: #C9283C; }
.fs-cta {
  padding: 0.9rem 1.5rem;
  background: #C9283C;
  color: #0F0708;
  border: 0;
  font-family: "Work Sans", sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
}

/* ---------- HERO split book-cover ---------- */
.hero {
  position: relative;
  padding: 6rem 1rem 3rem;
  background: #0F0708;
  overflow: hidden;
}
@media (min-width: 768px)  { .hero { padding: 8rem 2rem 5rem; } }
@media (min-width: 1200px) { .hero { padding: 10rem 3rem 6rem; } }

.hero-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: stretch;
}
@media (min-width: 900px) { .hero-grid { grid-template-columns: 1.15fr 1fr; gap: 3.5rem; } }

.hero-copy { display: flex; flex-direction: column; gap: 1.5rem; }

.hero-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: "Work Sans", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(239, 226, 205, 0.65);
}
.hero-meta .hero-dot {
  width: 4px; height: 4px;
  background: #C9283C;
  display: inline-block;
}

.hero-h {
  font-family: "Abril Fatface", serif;
  font-weight: 400;
  font-size: clamp(4.5rem, 14vw, 12rem);
  line-height: 0.85;
  letter-spacing: -0.005em;
  color: #EFE2CD;
}
.hero-h .block { display: block; }
.hero-sub {
  font-family: "Zilla Slab", serif;
  font-weight: 500;
  font-size: clamp(1.05rem, 2.2vw, 1.65rem);
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-transform: lowercase;
  color: #C9283C;
  margin-top: 0.35rem;
}
.hero-sub .ital { color: #EFE2CD; }

/* reveal-wipe (same as before pattern but kept) */
.reveal-wipe { position: relative; overflow: hidden; }
.reveal-wipe::after {
  content: "";
  position: absolute; inset: 0;
  background: #0F0708;
  transform: scaleX(1);
  transform-origin: right;
  transition: transform 1.1s cubic-bezier(0.7, 0, 0.2, 1);
}
.reveal-wipe:nth-child(2)::after { transition-delay: 0.15s; }
.loaded .reveal-wipe::after { transform: scaleX(0); transform-origin: left; }

.hero-lead {
  max-width: 34rem;
  font-family: "Work Sans", sans-serif;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(239, 226, 205, 0.82);
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.7rem; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(239, 226, 205, 0.15);
}
.hero-stats > div { display: flex; flex-direction: column; gap: 0.25rem; }
.hero-stats dt {
  font-family: "Work Sans", sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(239, 226, 205, 0.55);
}
.hero-stats dd {
  font-family: "Abril Fatface", serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1;
  color: #EFE2CD;
}
.hero-stats dd span:first-child { color: #EFE2CD; }

.hero-fig {
  position: relative;
  margin: 0;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-top: 3px solid #C9283C;
}
.hero-fig img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.08) saturate(1.1);
}
.hero-fig-cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 1rem 1.25rem;
  background: linear-gradient(180deg, transparent 0%, rgba(15, 7, 8, 0.9) 100%);
  color: #EFE2CD;
  font-family: "Work Sans", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}
.hero-fig-cap span:first-child {
  padding: 0.3rem 0.55rem;
  background: #C9283C;
  color: #0F0708;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hero-fig-cap span:last-child { text-align: right; line-height: 1.35; }

/* ---------- BUTTONS ---------- */
.btn-red {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.65rem;
  background: #C9283C;
  color: #0F0708;
  border: 0;
  font-family: "Work Sans", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.btn-red:hover { background: #EFE2CD; box-shadow: 0 10px 30px -12px rgba(201, 40, 60, 0.5); }
.btn-red:disabled { opacity: 0.55; cursor: not-allowed; }
.btn-red svg { transition: transform 0.3s ease; }
.btn-red:hover svg { transform: translateX(3px); }

.btn-frame {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  background: transparent;
  color: #EFE2CD;
  border: 1px solid rgba(239, 226, 205, 0.35);
  font-family: "Work Sans", sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.btn-frame:hover { border-color: #C9283C; color: #C9283C; }

.btn-ink {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.65rem;
  background: #0F0708;
  color: #F0E4D0;
  border: 0;
  font-family: "Work Sans", sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.btn-ink:hover { background: #6D1020; }
.btn-ink svg { transition: transform 0.3s ease; }
.btn-ink:hover svg { transform: translateX(3px); }

/* ---------- MANIFESTO — drop cap editorial ---------- */
.manifesto {
  padding: 5rem 1rem;
  border-top: 1px solid rgba(239, 226, 205, 0.08);
}
@media (min-width: 768px) { .manifesto { padding: 7rem 2rem; } }
.mf-wrap { max-width: 1100px; margin: 0 auto; }
.mf-head { display: inline-flex; align-items: center; gap: 0.75rem; }
.mf-tag {
  font-family: "Work Sans", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #C9283C;
}
.mf-h {
  margin-top: 1rem;
  font-family: "Abril Fatface", serif;
  font-weight: 400;
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.005em;
  color: #EFE2CD;
}
.mf-body {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 900px) { .mf-body { grid-template-columns: 1fr 1fr; column-gap: 3.5rem; } }
.mf-p {
  font-family: "Work Sans", sans-serif;
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(239, 226, 205, 0.86);
}
.drop-cap {
  float: left;
  font-family: "Abril Fatface", serif;
  font-size: 5.5rem;
  line-height: 0.9;
  padding: 0.3rem 0.55rem 0 0;
  color: #C9283C;
}
.mf-sign {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(239, 226, 205, 0.15);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  font-family: "Zilla Slab", serif;
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(239, 226, 205, 0.75);
}
.mf-seal {
  font-family: "Work Sans", sans-serif;
  font-style: normal;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: #C9283C;
}

/* ---------- MENU PAGE (cream paper — very different) ---------- */
.menu-page {
  background: #F0E4D0;
  color: #0F0708;
  padding: 4.5rem 1rem 5rem;
  position: relative;
}
@media (min-width: 768px)  { .menu-page { padding: 6rem 2rem 7rem; } }
@media (min-width: 1200px) { .menu-page { padding: 7rem 4rem 8rem; } }
.menu-page::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(15, 7, 8, 0.12);
  pointer-events: none;
}
.mp-wrap { max-width: 1200px; margin: 0 auto; position: relative; }

.mp-head { margin-bottom: 2.5rem; }
.mp-eye {
  font-family: "Work Sans", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #6D1020;
}
.mp-h {
  margin-top: 0.5rem;
  font-family: "Abril Fatface", serif;
  font-weight: 400;
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  line-height: 0.9;
  letter-spacing: -0.01em;
  color: #0F0708;
}
.mp-h .ital { color: #6D1020; }
.mp-lead {
  margin-top: 1rem;
  max-width: 36rem;
  font-family: "Work Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(15, 7, 8, 0.72);
}

.mp-cats {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.mp-cat {
  padding: 0.5rem 1rem;
  background: transparent;
  border: 1px solid rgba(15, 7, 8, 0.3);
  color: #0F0708;
  font-family: "Work Sans", sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.mp-cat:hover { border-color: #6D1020; color: #6D1020; }
.mp-cat.is-on { background: #0F0708; color: #F0E4D0; border-color: #0F0708; }

.mp-cols {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem 4rem;
}
@media (min-width: 900px) { .mp-cols { grid-template-columns: 1fr 1fr; } }
.mp-col { display: flex; flex-direction: column; gap: 2rem; }

.dish {
  padding-bottom: 1.25rem;
  border-bottom: 1px dashed rgba(15, 7, 8, 0.18);
  transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.dish.is-hidden { display: none; }
.dish-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  flex-wrap: nowrap;
}
.dish-no {
  font-family: "Work Sans", sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: #6D1020;
  font-weight: 600;
  min-width: 2.4rem;
}
.dish-name {
  font-family: "Abril Fatface", serif;
  font-weight: 400;
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  line-height: 1;
  color: #0F0708;
  white-space: nowrap;
}
@media (max-width: 540px) { .dish-name { white-space: normal; } }
.dish-flag {
  display: inline-block;
  margin-left: 0.5rem;
  padding: 0.1rem 0.45rem;
  background: #C9283C;
  color: #F0E4D0;
  font-family: "Work Sans", sans-serif;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  vertical-align: middle;
}
.dish-leader {
  flex: 1 1 auto;
  min-width: 1rem;
  height: 1px;
  background-image: radial-gradient(circle, rgba(15, 7, 8, 0.35) 1px, transparent 1.5px);
  background-size: 6px 2px;
  background-repeat: repeat-x;
  background-position: center;
  align-self: flex-end;
  margin-bottom: 0.35em;
}
.dish-price {
  font-family: "Abril Fatface", serif;
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  color: #0F0708;
  white-space: nowrap;
}
.dish-note {
  margin-top: 0.5rem;
  margin-left: 2.4rem;
  font-family: "Zilla Slab", serif;
  font-style: italic;
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(15, 7, 8, 0.7);
}
.dish-meta {
  margin-top: 0.4rem;
  margin-left: 2.4rem;
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  font-family: "Work Sans", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(15, 7, 8, 0.55);
}
.dish-meta i {
  display: inline-block;
  width: 2px; height: 2px;
  border-radius: 50%;
  background: rgba(15, 7, 8, 0.4);
}
.dish.is-week .dish-no,
.dish.is-week .dish-price { color: #C9283C; }
.dish-row:hover .dish-name { color: #6D1020; }

.dish--set {
  padding: 1rem 1rem 1.25rem;
  background: rgba(109, 16, 32, 0.08);
  border-left: 3px solid #6D1020;
  border-bottom: 0;
  margin-left: -1rem;
  margin-right: -1rem;
}
.dish--set .dish-note,
.dish--set .dish-meta { margin-left: 2.4rem; }

.mp-foot {
  margin-top: 3.5rem;
  padding-top: 1.75rem;
  border-top: 2px dashed rgba(15, 7, 8, 0.25);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}
@media (min-width: 600px) { .mp-foot { flex-direction: row; justify-content: space-between; align-items: center; } }
.mp-foot-note {
  font-family: "Zilla Slab", serif;
  font-size: 0.82rem;
  color: rgba(15, 7, 8, 0.55);
  max-width: 26rem;
}

/* ---------- AGING ---------- */
.aging {
  padding: 5rem 1rem;
  background: #0F0708;
  border-top: 1px solid rgba(239, 226, 205, 0.08);
}
@media (min-width: 768px) { .aging { padding: 7rem 2rem; } }
.ag-wrap { max-width: 1300px; margin: 0 auto; }
.ag-head { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 3rem; }
.ag-tag {
  font-family: "Work Sans", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #C9283C;
}
.ag-h {
  margin-top: 0.5rem;
  font-family: "Abril Fatface", serif;
  font-weight: 400;
  font-size: clamp(2rem, 5.5vw, 4rem);
  line-height: 1;
  color: #EFE2CD;
}

.ag-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 900px) { .ag-layout { grid-template-columns: 1fr 1fr; gap: 3rem; } }
.ag-number { display: flex; flex-direction: column; gap: 0.75rem; }
.ag-n {
  font-family: "Abril Fatface", serif;
  font-weight: 400;
  font-size: clamp(7rem, 26vw, 18rem);
  line-height: 0.82;
  letter-spacing: -0.02em;
  color: #C9283C;
  text-shadow: 0 0 80px rgba(201, 40, 60, 0.4);
  transition: color 0.4s ease;
}
.ag-days {
  font-family: "Work Sans", sans-serif;
  font-size: clamp(1rem, 2vw, 1.4rem);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(239, 226, 205, 0.65);
}
.ag-scale {
  display: flex;
  gap: 0.4rem;
  margin-top: 0.75rem;
  flex-wrap: wrap;
}
.ag-tick {
  padding: 0.55rem 0.95rem;
  background: transparent;
  border: 1px solid rgba(239, 226, 205, 0.25);
  color: #EFE2CD;
  font-family: "Work Sans", sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.ag-tick:hover { border-color: #C9283C; color: #C9283C; }
.ag-tick.is-on { background: #C9283C; border-color: #C9283C; color: #0F0708; }

.ag-text { display: flex; flex-direction: column; gap: 1.5rem; }
.ag-p {
  font-family: "Zilla Slab", serif;
  font-weight: 500;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.55;
  color: rgba(239, 226, 205, 0.88);
}
.ag-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(239, 226, 205, 0.15);
  border-left: 1px solid rgba(239, 226, 205, 0.15);
}
.ag-specs > div {
  padding: 0.8rem 1rem;
  border-right: 1px solid rgba(239, 226, 205, 0.15);
  border-bottom: 1px solid rgba(239, 226, 205, 0.15);
}
.ag-specs dt {
  font-family: "Work Sans", sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(239, 226, 205, 0.55);
}
.ag-specs dd {
  margin-top: 0.2rem;
  font-family: "Abril Fatface", serif;
  font-size: 1.1rem;
  color: #EFE2CD;
}

.ag-fig {
  margin: 2.5rem 0 0;
  position: relative;
  border-top: 3px solid #C9283C;
  overflow: hidden;
}
.ag-fig img {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  filter: contrast(1.1) saturate(1.1) brightness(0.92);
}
.ag-fig figcaption {
  position: absolute;
  left: 1rem; bottom: 1rem;
  padding: 0.55rem 0.85rem;
  background: rgba(15, 7, 8, 0.9);
  color: #EFE2CD;
  font-family: "Work Sans", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

/* ---------- CELLAR wine list ---------- */
.cellar {
  padding: 5rem 1rem;
  background: #14090A;
  border-top: 1px solid rgba(239, 226, 205, 0.08);
}
@media (min-width: 768px) { .cellar { padding: 7rem 2rem; } }
.cl-wrap { max-width: 1200px; margin: 0 auto; }
.cl-head { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 2.5rem; }
.cl-tag {
  font-family: "Work Sans", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #C9283C;
}
.cl-h {
  margin-top: 0.5rem;
  font-family: "Abril Fatface", serif;
  font-weight: 400;
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  line-height: 1;
  color: #EFE2CD;
}
.cl-h .ital { color: #C9283C; }
.cl-lead {
  margin-top: 0.75rem;
  max-width: 32rem;
  font-family: "Work Sans", sans-serif;
  color: rgba(239, 226, 205, 0.75);
}

.cl-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(239, 226, 205, 0.15);
}
.bot {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 1rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(239, 226, 205, 0.1);
  align-items: center;
  transition: background-color 0.25s ease, padding 0.35s ease;
}
@media (min-width: 768px) { .bot { gap: 1.5rem; padding: 2rem 0.75rem; } }
.bot:hover { background: rgba(201, 40, 60, 0.05); }
.bot-no {
  font-family: "Abril Fatface", serif;
  font-size: 2rem;
  line-height: 1;
  color: #B68340;
}
.bot-body { display: flex; flex-direction: column; gap: 0.5rem; }
.bot-top { display: flex; flex-direction: column; gap: 0.25rem; }
@media (min-width: 600px) { .bot-top { flex-direction: row; align-items: baseline; gap: 0.75rem; } }
.bot-region {
  font-family: "Work Sans", sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #B68340;
}
.bot-name {
  font-family: "Abril Fatface", serif;
  font-weight: 400;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  line-height: 1.1;
  color: #EFE2CD;
}
.bot-name .ital { color: #EFE2CD; opacity: 0.72; }
.bot-note {
  font-family: "Zilla Slab", serif;
  font-style: italic;
  font-size: 0.88rem;
  color: rgba(239, 226, 205, 0.6);
}
.bot-price {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.bot-price span {
  font-family: "Abril Fatface", serif;
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  color: #EFE2CD;
  white-space: nowrap;
}
.bot-price em {
  font-size: 0.75rem;
  color: rgba(239, 226, 205, 0.55);
  font-family: "Zilla Slab", serif;
  font-style: italic;
}

/* ---------- CHEF ---------- */
.chef {
  padding: 5rem 1rem;
  border-top: 1px solid rgba(239, 226, 205, 0.08);
}
@media (min-width: 768px) { .chef { padding: 7rem 2rem; } }
.ch-wrap {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 900px) { .ch-wrap { grid-template-columns: 5fr 7fr; gap: 4rem; } }
.ch-fig {
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-top: 3px solid #C9283C;
  border-left: 3px solid #C9283C;
}
.ch-fig img { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.08) saturate(1); }
.ch-text { padding: 0; }
.ch-tag {
  font-family: "Work Sans", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #C9283C;
}
.ch-h {
  margin-top: 0.5rem;
  font-family: "Abril Fatface", serif;
  font-weight: 400;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 0.95;
  color: #EFE2CD;
}
.ch-q {
  margin-top: 1.75rem;
  padding-left: 1.25rem;
  border-left: 2px solid #C9283C;
  font-family: "Zilla Slab", serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  line-height: 1.5;
  color: rgba(239, 226, 205, 0.9);
}
.ch-specs {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(239, 226, 205, 0.15);
  border-left: 1px solid rgba(239, 226, 205, 0.15);
  max-width: 40rem;
}
.ch-specs > div {
  padding: 0.75rem 1rem;
  border-right: 1px solid rgba(239, 226, 205, 0.15);
  border-bottom: 1px solid rgba(239, 226, 205, 0.15);
}
.ch-specs dt {
  font-family: "Work Sans", sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(239, 226, 205, 0.55);
}
.ch-specs dd {
  margin-top: 0.15rem;
  font-family: "Abril Fatface", serif;
  font-size: 1rem;
  color: #EFE2CD;
}

/* ---------- VISIT ---------- */
.visit {
  padding: 5rem 1rem;
  background: #0F0708;
  border-top: 1px solid rgba(239, 226, 205, 0.08);
}
@media (min-width: 768px) { .visit { padding: 7rem 2rem; } }
.vs-wrap { max-width: 1400px; margin: 0 auto; }
.vs-head { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 2.5rem; }
.vs-tag {
  font-family: "Work Sans", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #C9283C;
}
.vs-h {
  margin-top: 0.5rem;
  font-family: "Abril Fatface", serif;
  font-weight: 400;
  font-size: clamp(2.25rem, 6vw, 4rem);
  line-height: 1;
  color: #EFE2CD;
}
.vs-h .ital { color: #C9283C; }

.vs-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 900px) { .vs-layout { grid-template-columns: 5fr 7fr; gap: 3rem; align-items: start; } }

.vs-info {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  border-top: 1px solid rgba(239, 226, 205, 0.1);
}
.vs-info > div {
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(239, 226, 205, 0.1);
}
.vs-info dt {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Work Sans", sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(239, 226, 205, 0.6);
}
.vs-ic { width: 16px; height: 16px; color: #C9283C; }
.vs-info dd {
  margin-top: 0.45rem;
  margin-left: 0;
  font-family: "Abril Fatface", serif;
  font-size: 1.2rem;
  color: #EFE2CD;
}
.vs-info dd a { color: inherit; text-decoration: none; }
.vs-info dd a:hover { color: #C9283C; }
.vs-hours {
  margin-top: 0.25rem;
  border-collapse: collapse;
  font-family: "Work Sans", sans-serif;
  font-size: 0.92rem;
}
.vs-hours td { padding: 0.35rem 0; }
.vs-hours td:first-child { color: rgba(239, 226, 205, 0.55); padding-right: 1.5rem; }
.vs-hours td:last-child { color: #EFE2CD; }
.t-off { color: rgba(239, 226, 205, 0.45) !important; font-style: italic; }

.vs-map {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #14090A;
  border-top: 3px solid #C9283C;
  isolation: isolate;
}
.vs-map iframe { width: 100%; height: 100%; border: 0; display: block; filter: invert(1) hue-rotate(180deg) saturate(0.65) contrast(1.1); }
.vs-pin {
  position: absolute;
  left: 16px; bottom: 16px;
  padding: 0.7rem 0.95rem;
  background: #C9283C;
  color: #0F0708;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-family: "Work Sans", sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background-color 0.25s ease, transform 0.25s ease;
}
.vs-pin:hover { background: #EFE2CD; transform: translateY(-3px); }

.vs-cta {
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px dashed rgba(239, 226, 205, 0.2);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
}
@media (min-width: 600px) { .vs-cta { flex-direction: row; align-items: center; justify-content: space-between; } }
.vs-cta-note {
  font-family: "Zilla Slab", serif;
  font-size: 0.85rem;
  color: rgba(239, 226, 205, 0.55);
  max-width: 28rem;
}

/* ---------- FOOTER ---------- */
.foot {
  background: #14090A;
  color: #EFE2CD;
  border-top: 3px solid #C9283C;
}
.foot-wrap {
  max-width: 1500px;
  margin: 0 auto;
  padding: 4rem 1rem 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 768px) { .foot-wrap { grid-template-columns: 2fr 3fr; padding: 5rem 3rem 2rem; gap: 3rem; } }
.foot-word {
  font-family: "Abril Fatface", serif;
  font-weight: 400;
  font-size: clamp(4rem, 14vw, 9rem);
  line-height: 0.9;
  letter-spacing: -0.01em;
}
.foot-sub {
  margin-top: 1rem;
  font-family: "Zilla Slab", serif;
  font-size: 0.92rem;
  color: rgba(239, 226, 205, 0.55);
}
.foot-cols { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1.5rem; }
.foot-head { font-family: "Work Sans", sans-serif; font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(239, 226, 205, 0.55); font-weight: 500; }
.foot-cols ul { list-style: none; padding: 0; margin-top: 1rem; display: flex; flex-direction: column; gap: 0.5rem; font-family: "Work Sans", sans-serif; font-size: 0.88rem; }
.foot-cols a { color: rgba(239, 226, 205, 0.82); text-decoration: none; }
.foot-cols a:hover { color: #C9283C; }
.foot-tail {
  max-width: 1500px;
  margin: 0 auto;
  padding: 1.5rem 1rem 2rem;
  border-top: 1px solid rgba(239, 226, 205, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-family: "Work Sans", sans-serif;
  font-size: 0.76rem;
  color: rgba(239, 226, 205, 0.5);
}
@media (min-width: 768px) { .foot-tail { flex-direction: row; justify-content: space-between; padding: 1.5rem 3rem 2rem; } }

/* ---------- SLIP (reservation modal) ---------- */
.slip {
  position: fixed; inset: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
@media (min-width: 768px) { .slip { padding: 2rem; } }
.slip.hidden { display: none; }
.slip-bg {
  position: absolute; inset: 0;
  background: rgba(15, 7, 8, 0.85);
  backdrop-filter: blur(6px);
  animation: fade-in 0.3s ease;
}
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
.slip-wrap {
  position: relative;
  width: 100%;
  max-width: 760px;
  max-height: 100vh;
  overflow-y: auto;
  background: #F0E4D0;
  color: #0F0708;
  padding: 2rem 1.5rem 1.75rem;
  animation: slip-in 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
  box-shadow: 0 30px 80px -20px rgba(109, 16, 32, 0.5);
  border-top: 10px solid #6D1020;
}
@media (min-width: 768px) { .slip-wrap { padding: 2.75rem 3rem 2.5rem; max-height: 92vh; } }
@keyframes slip-in { from { transform: translateY(30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

.slip-close {
  position: absolute;
  top: 20px; right: 20px;
  z-index: 5;
  width: 40px; height: 40px;
  border: 1px solid rgba(15, 7, 8, 0.3);
  background: transparent;
  color: #0F0708;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.slip-close:hover { background: #6D1020; color: #F0E4D0; border-color: #6D1020; }

.slip-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 2px solid #0F0708;
  margin-bottom: 1.5rem;
}
@media (min-width: 600px) { .slip-head { grid-template-columns: auto 1fr auto; align-items: center; gap: 1.5rem; } }
.slip-code { display: flex; flex-direction: column; gap: 0.25rem; }
.slip-label {
  font-family: "Work Sans", sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(15, 7, 8, 0.55);
}
.slip-no {
  font-family: "Work Sans", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: #6D1020;
  letter-spacing: 0.1em;
}
.slip-title {
  font-family: "Abril Fatface", serif;
  font-weight: 400;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  line-height: 1.05;
}
.slip-title .ital { color: #6D1020; }
.slip-date { text-align: left; }
@media (min-width: 600px) { .slip-date { text-align: right; } }
#slip-now { display: block; margin-top: 0.2rem; font-family: "Work Sans", sans-serif; font-weight: 500; font-size: 0.88rem; color: #0F0708; }

.slip-form { padding: 0; }
.slip-row { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-bottom: 1rem; }
.slip-row--2 { grid-template-columns: 1fr; }
@media (min-width: 600px) { .slip-row--2 { grid-template-columns: 2fr 1fr; } }
.sf { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 1rem; }
.sf--wide { grid-column: 1 / -1; }
.sf-label {
  font-family: "Work Sans", sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(15, 7, 8, 0.55);
}
.sf input, .sf select, .sf textarea {
  width: 100%;
  border: 0;
  border-bottom: 1.5px solid #0F0708;
  background: transparent;
  padding: 0.55rem 0;
  font-family: "Abril Fatface", serif;
  font-size: 1.1rem;
  color: #0F0708;
  transition: border-color 0.2s ease;
}
.sf textarea { font-family: "Work Sans", sans-serif; font-size: 0.95rem; line-height: 1.5; border: 1px solid #0F0708; padding: 0.7rem 0.85rem; }
.sf input::placeholder, .sf textarea::placeholder { color: rgba(15, 7, 8, 0.35); }
.sf input:focus, .sf select:focus, .sf textarea:focus { outline: none; border-color: #6D1020; }
.sf.is-invalid input, .sf.is-invalid select, .sf.is-invalid textarea { border-color: #6D1020; background: rgba(109, 16, 32, 0.06); }
.sf select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'><path d='M1 1l4 4 4-4' stroke='%236D1020' fill='none' stroke-width='1'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0.25rem center;
  background-size: 10px;
}
.sf-err {
  display: block;
  min-height: 0.95rem;
  margin-top: 0.15rem;
  font-family: "Work Sans", sans-serif;
  font-style: normal;
  font-size: 0.72rem;
  color: #6D1020;
  transition: opacity 0.2s ease;
}
.sf-err:empty { opacity: 0; }

.slip-consent {
  display: flex;
  gap: 0.7rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-family: "Work Sans", sans-serif;
  font-size: 0.82rem;
  color: rgba(15, 7, 8, 0.72);
}
.slip-consent input { margin-top: 0.15rem; accent-color: #6D1020; }

.slip-foot {
  margin-top: 1rem;
  padding-top: 1.25rem;
  border-top: 2px dashed rgba(15, 7, 8, 0.2);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 600px) { .slip-foot { flex-direction: row; justify-content: space-between; align-items: flex-end; } }
.slip-terms {
  max-width: 28rem;
  font-family: "Zilla Slab", serif;
  font-style: italic;
  font-size: 0.85rem;
  color: rgba(15, 7, 8, 0.65);
  line-height: 1.45;
}
.slip-terms .slip-label { display: block; margin-bottom: 0.2rem; font-style: normal; }
.slip-foot .btn-red { background: #6D1020; color: #F0E4D0; }
.slip-foot .btn-red:hover { background: #0F0708; color: #F0E4D0; box-shadow: none; }

.slip-success {
  padding: 2rem 0;
  text-align: center;
  animation: fade-in 0.4s ease;
}
@media (min-width: 768px) { .slip-success { padding: 3rem 0; } }
.stamp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 190px; height: 190px;
  border: 4px double #6D1020;
  color: #6D1020;
  transform: rotate(-6deg);
  animation: stamp-in 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}
@keyframes stamp-in {
  from { transform: rotate(-18deg) scale(0.2); opacity: 0; }
  to   { transform: rotate(-6deg) scale(1); opacity: 1; }
}
.stamp-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  font-family: "Work Sans", sans-serif;
  font-weight: 700;
  letter-spacing: 0.15em;
}
.stamp-text span:first-child {
  font-family: "Abril Fatface", serif;
  font-weight: 400;
  font-size: 1.4rem;
}
.stamp-text span:nth-child(2) { font-size: 0.68rem; letter-spacing: 0.25em; }
.stamp-text span:nth-child(3) { font-size: 0.68rem; color: rgba(109, 16, 32, 0.65); }

.slip-success-h {
  margin-top: 1.75rem;
  font-family: "Abril Fatface", serif;
  font-weight: 400;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  line-height: 1.05;
  color: #0F0708;
}
.slip-success-meta {
  margin-top: 0.75rem;
  font-family: "Work Sans", sans-serif;
  font-size: 0.95rem;
  color: rgba(15, 7, 8, 0.72);
}
.slip-success-note {
  margin-top: 0.75rem;
  font-family: "Zilla Slab", serif;
  font-style: italic;
  font-size: 0.88rem;
  color: rgba(15, 7, 8, 0.55);
}
.slip-success-note .ember { color: #6D1020; font-weight: 600; }
.slip-success-ctas {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
.slip-success-ctas button { justify-content: center; width: 100%; }
.slip-success-ctas .btn-frame { color: #0F0708; border-color: rgba(15, 7, 8, 0.3); }
.slip-success-ctas .btn-frame:hover { background: #0F0708; color: #F0E4D0; border-color: #0F0708; }
.slip-success-ctas .btn-red { background: #6D1020; color: #F0E4D0; }

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal-wipe::after { display: none; }
}
