/* ==========================================================================
   The Trinity Café — staging redesign
   Static, mobile-first. No build step.
   ========================================================================== */

:root {
  --paper: #fbf7f1;
  --cream: #f4ece0;
  --oat: #e9dcc8;
  --sand: #d8c4a6;
  --espresso: #1f1510;
  --roast: #33241c;
  --ink: #2b1f19;
  --muted: #6b5a4e;
  --brand: #8e1b1c;
  --brand-deep: #701415;
  --brass: #b08a57;
  --brass-ink: #86602f;
  --line: rgba(43, 31, 25, 0.14);
  --line-light: rgba(251, 247, 241, 0.18);

  --serif: "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
  --sans: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --header-h: 68px;
  --wrap: 1220px;
  --gutter: clamp(1.25rem, 4.5vw, 2.75rem);
  --section: clamp(4.5rem, 11vw, 8.5rem);
  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 40px 70px -40px rgba(31, 21, 16, 0.45);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

@media (min-width: 960px) {
  :root { --header-h: 84px; }
}

/* ---------- Reset & base ---------- */

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body.nav-open { overflow: hidden; }

img, svg, iframe { display: block; max-width: 100%; }
img { height: auto; }

a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 0.2em; }

h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.01em;
  font-variant-numeric: lining-nums;
  color: var(--espresso);
}

h1 { font-size: clamp(2.9rem, 9vw, 6rem); }
h2 { font-size: clamp(2.3rem, 5.6vw, 3.9rem); }
h3 { font-size: clamp(1.55rem, 3vw, 1.9rem); line-height: 1.12; }

h1 em, h2 em, h3 em { font-style: italic; font-weight: 500; color: var(--brand); }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

::selection { background: var(--brand); color: var(--paper); }

:focus-visible {
  outline: 3px solid var(--brass);
  outline-offset: 3px;
  border-radius: 6px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 200;
  padding: 0.8rem 1.2rem;
  background: var(--espresso);
  color: var(--paper);
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
}
.skip-link:focus { top: 1rem; }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

.wrap {
  width: 100%;
  max-width: calc(var(--wrap) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section); }
.section--cream { background: var(--cream); }
.section--tight { padding-block: clamp(3rem, 7vw, 5rem); }

/* ---------- Staging banner + watermark ---------- */

.staging-banner {
  position: relative;
  z-index: 60;
  margin: 0;
  padding: 0.55rem var(--gutter);
  background: var(--espresso);
  color: #eadfcd;
  font-size: 0.75rem;
  line-height: 1.45;
  letter-spacing: 0.02em;
  text-align: center;
}
.staging-banner strong { color: #fff; font-weight: 600; }

.watermark {
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.watermark span {
  transform: rotate(-24deg);
  font-family: var(--serif);
  font-size: clamp(2rem, 7vw, 5.5rem);
  font-weight: 600;
  white-space: nowrap;
  color: var(--espresso);
  opacity: 0.035;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ---------- Type helpers ---------- */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1.25rem;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass-ink);
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.8;
}
.eyebrow--light { color: #e7c9a1; }

.lead {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  line-height: 1.65;
  color: var(--muted);
  max-width: 36em;
}

.muted { color: var(--muted); }

.section-head {
  max-width: 44rem;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head h2 + p { margin-top: 1.25rem; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  min-height: 44px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  color: var(--brand);
  text-decoration: none;
}
.text-link svg { width: 18px; height: 18px; transition: transform 0.3s var(--ease); }
.text-link:hover svg { transform: translateX(4px); }
.text-link span { border-bottom: 1px solid currentColor; padding-bottom: 2px; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 52px;
  padding: 0.85rem 1.6rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.25s var(--ease), color 0.25s var(--ease),
    border-color 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn:active { transform: translateY(1px); }

.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-deep); }

.btn-dark { background: var(--espresso); color: var(--paper); }
.btn-dark:hover { background: var(--roast); }

.btn-outline { border-color: rgba(43, 31, 25, 0.35); color: var(--espresso); background: transparent; }
.btn-outline:hover { border-color: var(--espresso); background: var(--espresso); color: var(--paper); }

.btn-ghost-light { border-color: rgba(255, 255, 255, 0.55); color: #fff; background: rgba(255, 255, 255, 0.04); }
.btn-ghost-light:hover { background: #fff; color: var(--espresso); border-color: #fff; }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 247, 241, 0.94);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
@supports ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .site-header {
    background: rgba(251, 247, 241, 0.82);
    -webkit-backdrop-filter: saturate(1.3) blur(14px);
    backdrop-filter: saturate(1.3) blur(14px);
  }
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px -24px rgba(31, 21, 16, 0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: none;
  min-height: 44px;
  border-radius: 8px;
}
.brand img { width: auto; height: 54px; }
@media (min-width: 960px) {
  .brand img { height: 62px; }
}

.nav-links { display: none; }
.nav-cta { display: none; }

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-right: -8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--espresso);
  cursor: pointer;
}
.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  display: block;
  width: 24px;
  height: 1.75px;
  border-radius: 2px;
  background: currentColor;
}
.nav-toggle-bars { position: relative; }
.nav-toggle-bars::before,
.nav-toggle-bars::after { content: ""; position: absolute; left: 0; }
.nav-toggle-bars::before { top: -7px; }
.nav-toggle-bars::after { top: 7px; width: 16px; }

@media (min-width: 960px) {
  .nav-toggle { display: none; }

  .nav-links {
    display: flex;
    align-items: center;
    gap: clamp(1.5rem, 3vw, 2.75rem);
    margin-left: auto;
  }
  .nav-links a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--ink);
    text-decoration: none;
  }
  .nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 8px;
    height: 1px;
    background: var(--brand);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s var(--ease);
  }
  .nav-links a:hover::after,
  .nav-links a[aria-current="page"]::after { transform: scaleX(1); }
  .nav-links a[aria-current="page"] { color: var(--brand); }

  .nav-cta { display: inline-flex; min-height: 48px; margin-left: 1.5rem; }
}

/* ---------- Mobile drawer (body-level, outside header) ---------- */

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(31, 21, 16, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0s linear 0.3s;
}

.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 100;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--cream);
  overflow-y: auto;
  overscroll-behavior: contain;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.3s var(--ease), transform 0.35s var(--ease), visibility 0s linear 0.35s;
}

body.nav-open .nav-overlay,
body.nav-open .nav-drawer {
  opacity: 1;
  visibility: visible;
  transform: none;
  transition-delay: 0s;
}

.drawer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: none;
  height: var(--header-h);
  padding-inline: var(--gutter);
  border-bottom: 1px solid var(--line);
}

.drawer-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-right: -8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--espresso);
  cursor: pointer;
}
.drawer-close svg { width: 26px; height: 26px; }

.drawer-nav {
  display: flex;
  flex-direction: column;
  padding: 1.25rem var(--gutter) 0;
}
.drawer-nav a {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  min-height: 64px;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: clamp(2rem, 9vw, 2.6rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--espresso);
  text-decoration: none;
}
.drawer-nav a small {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--brass-ink);
}
.drawer-nav a[aria-current="page"] { color: var(--brand); font-style: italic; }

.drawer-info {
  display: grid;
  gap: 1.1rem;
  margin-top: auto;
  padding: 2.5rem var(--gutter) calc(2rem + env(safe-area-inset-bottom));
  font-size: 0.95rem;
  color: var(--muted);
}
.drawer-info strong {
  display: block;
  margin-bottom: 0.15rem;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass-ink);
}
.drawer-info a { display: inline-flex; min-height: 44px; align-items: center; color: var(--espresso); font-weight: 600; }

@media (min-width: 960px) {
  .nav-overlay,
  .nav-drawer { display: none; }
}

/* ---------- Floating book button (mobile only) ---------- */

.book-fab {
  position: fixed;
  right: 1rem;
  bottom: calc(1rem + env(safe-area-inset-bottom));
  z-index: 70;
  min-height: 54px;
  padding-inline: 1.4rem 1.5rem;
  box-shadow: 0 18px 40px -14px rgba(112, 20, 21, 0.65);
}
body.nav-open .book-fab { visibility: hidden; }
@media (min-width: 960px) {
  .book-fab { display: none; }
}
@media (max-width: 959.98px) {
  .site-footer { padding-bottom: calc(6rem + env(safe-area-inset-bottom)); }
}

/* ---------- Home hero ---------- */

.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  min-height: min(92svh, 860px);
  min-height: min(92vh, 860px);
  color: #fff;
  overflow: hidden;
  background: var(--espresso);
}
@supports (min-height: 1svh) {
  .hero { min-height: min(calc(100svh - var(--header-h) - 2rem), 860px); }
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% 40%;
  transform: scale(1.04);
  animation: hero-settle 1.8s var(--ease) forwards;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(31, 21, 16, 0.15) 0%, rgba(31, 21, 16, 0.25) 35%, rgba(31, 21, 16, 0.88) 100%),
    linear-gradient(90deg, rgba(31, 21, 16, 0.55) 0%, rgba(31, 21, 16, 0) 70%);
}
@keyframes hero-settle { to { transform: scale(1); } }

.hero-inner {
  position: relative;
  padding-top: 7rem;
  padding-bottom: clamp(2rem, 5vw, 3.5rem);
}
.hero h1 { color: #fff; max-width: 14ch; }
.hero h1 em { color: #f2d7b5; }
.hero .lead { color: rgba(255, 255, 255, 0.86); margin-top: 1.5rem; max-width: 34em; }
.hero .btn-row { margin-top: 2.25rem; }

.hero-facts {
  display: grid;
  gap: 0.9rem;
  margin: clamp(2.5rem, 6vw, 4rem) 0 0;
  padding: 1.5rem 0 0;
  border-top: 1px solid var(--line-light);
  list-style: none;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}
.hero-facts li { display: flex; align-items: center; gap: 0.75rem; }
.hero-facts svg { width: 18px; height: 18px; flex: none; color: var(--brass); }
.hero-facts a { color: #fff; text-decoration: none; font-weight: 600; }
.hero-facts a:hover { text-decoration: underline; }
@media (min-width: 720px) {
  .hero-facts { grid-template-columns: repeat(3, auto); justify-content: start; gap: 2.5rem; }
}

.hero-badge {
  position: absolute;
  right: var(--gutter);
  top: 3.5rem;
  width: 150px;
  height: 150px;
  display: none;
  color: #f2d7b5;
}
.hero-badge svg { width: 100%; height: 100%; }
.hero-badge .ring { animation: spin 38s linear infinite; transform-origin: 50% 50%; }
.hero-badge text {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  fill: currentColor;
}
.hero-badge .core {
  font-family: var(--serif);
  font-size: 34px;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}
@keyframes spin { to { transform: rotate(360deg); } }
@media (min-width: 900px) {
  .hero-badge { display: block; }
}

/* ---------- Inner page hero ---------- */

.page-hero {
  position: relative;
  padding-block: clamp(3.5rem, 9vw, 7rem) clamp(3rem, 7vw, 5.5rem);
  overflow: hidden;
}
.page-hero-grid {
  display: grid;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.page-hero h1 { max-width: 12ch; }
.page-hero .lead { margin-top: 1.5rem; }
.page-hero-media {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 900px) {
  .page-hero-grid { grid-template-columns: 1.05fr 0.95fr; }
  .page-hero-media { aspect-ratio: 5 / 6; border-radius: 999px 999px var(--radius) var(--radius); }
}

/* ---------- Split / story ---------- */

.split {
  display: grid;
  gap: clamp(3rem, 7vw, 6rem);
  align-items: center;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--reverse > :first-child { order: 2; }
}

.split-copy h2 { margin-bottom: 1.5rem; }
.split-copy p { color: var(--muted); max-width: 34em; }
.split-copy .text-link,
.split-copy .btn-row { margin-top: 1.5rem; }

.arch-media {
  position: relative;
  padding-bottom: 12%;
  padding-right: 10%;
}
.arch-media .arch {
  aspect-ratio: 4 / 5;
  border-radius: 999px 999px var(--radius) var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.arch-media .arch img { width: 100%; height: 100%; object-fit: cover; }
.arch-media .inset {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 44%;
  aspect-ratio: 1;
  border: 8px solid var(--paper);
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.section--cream .arch-media .inset { border-color: var(--cream); }
.arch-media .inset img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Dark band (Trinity blend) ---------- */

.band-dark {
  position: relative;
  background: var(--espresso);
  color: #e9dfd2;
  overflow: hidden;
}
.band-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 80% at 85% 20%, rgba(176, 138, 87, 0.16), transparent 70%);
  pointer-events: none;
}
.band-dark h2 { color: #fff; }
.band-dark h2 em { color: #f2d7b5; }
.band-dark .split-copy p { color: rgba(233, 223, 210, 0.8); }
.band-dark .text-link { color: #f2d7b5; }

.band-media {
  position: relative;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  max-width: 520px;
  width: 100%;
  margin-inline: auto;
  box-shadow: 0 0 0 1px rgba(242, 215, 181, 0.2), 0 0 0 18px rgba(242, 215, 181, 0.04);
}
.band-media img { width: 100%; height: 100%; object-fit: cover; }

.drink-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}
.drink-list li {
  padding: 0.45rem 1rem;
  border: 1px solid rgba(242, 215, 181, 0.28);
  border-radius: 999px;
  font-size: 0.85rem;
  color: #f2e6d6;
}

/* ---------- Plates (featured cards) ---------- */

.plates {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: min(78%, 320px);
  gap: 1.25rem;
  margin-inline: calc(var(--gutter) * -1);
  padding: 0 var(--gutter) 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: var(--gutter);
  scrollbar-width: thin;
}
@media (min-width: 900px) {
  .plates {
    grid-auto-flow: row;
    grid-template-columns: repeat(4, 1fr);
    margin-inline: 0;
    padding: 0;
    overflow: visible;
  }
}

.plate {
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}
.plate-media {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--oat);
}
.plate-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.plate:hover .plate-media img { transform: scale(1.05); }
.plate-tag {
  margin: 1.25rem 0 0.4rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass-ink);
}
.plate h3 { margin-bottom: 0.5rem; }
.plate p:not(.plate-tag) { font-size: 0.95rem; color: var(--muted); }
.plate:focus-visible { outline-offset: 6px; }

/* ---------- Pillars ---------- */

.pillars {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
@media (min-width: 800px) {
  .pillars { grid-template-columns: repeat(3, 1fr); }
}
.pillar {
  padding: clamp(2rem, 4vw, 2.75rem);
  background: var(--paper);
}
.section--cream .pillar { background: var(--cream); }
.pillar-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 1.5rem;
  border-radius: 50%;
  background: rgba(142, 27, 28, 0.08);
  color: var(--brand);
}
.pillar-icon svg { width: 26px; height: 26px; }
.pillar h3 { margin-bottom: 0.75rem; }
.pillar p { color: var(--muted); font-size: 0.98rem; }
.pillar a { color: var(--brand); font-weight: 600; }

/* ---------- Visit CTA / hours ---------- */

.visit-card {
  display: grid;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  background: var(--espresso);
  color: #e9dfd2;
  box-shadow: var(--shadow);
}
@media (min-width: 900px) {
  .visit-card { grid-template-columns: 1fr 1.05fr; }
}
.visit-card-media { min-height: 280px; }
.visit-card-media img { width: 100%; height: 100%; object-fit: cover; }
.visit-card-body { padding: clamp(2.25rem, 6vw, 4.5rem); }
.visit-card h2 { color: #fff; margin-bottom: 1.25rem; }
.visit-card h2 em { color: #f2d7b5; }
.visit-card p { color: rgba(233, 223, 210, 0.82); }
.visit-card .btn-row { margin-top: 2rem; }

.hours {
  width: 100%;
  margin: 1.75rem 0 0;
  border-collapse: collapse;
  font-size: 0.98rem;
}
.hours th,
.hours td {
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
  font-weight: 500;
}
.hours td { text-align: right; font-variant-numeric: tabular-nums; }
.hours tr.closed td { color: var(--muted); font-style: italic; }
.hours tr.today th,
.hours tr.today td { color: var(--brand); font-weight: 700; }
.visit-card .hours th,
.visit-card .hours td { border-bottom-color: var(--line-light); color: #f4ebdf; }
.visit-card .hours tr.closed td { color: rgba(233, 223, 210, 0.6); }
.visit-card .hours tr.today th,
.visit-card .hours tr.today td { color: #f2d7b5; }

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(142, 27, 28, 0.1);
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.status-pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}
.status-pill.is-open { background: rgba(62, 120, 72, 0.12); color: #2f6b3a; }
.visit-card .status-pill { background: rgba(242, 215, 181, 0.12); color: #f2d7b5; }
.visit-card .status-pill.is-open { background: rgba(120, 190, 130, 0.16); color: #bfe3c4; }
.status-pill:empty { display: none; }

/* ---------- Menu page ---------- */

.menu-subnav {
  position: sticky;
  top: var(--header-h);
  z-index: 40;
  background: var(--paper);
  border-block: 1px solid var(--line);
}
.menu-subnav ul {
  display: flex;
  gap: 0.5rem;
  margin: 0;
  padding: 0.7rem 0;
  list-style: none;
  overflow-x: auto;
  scrollbar-width: none;
}
.menu-subnav ul::-webkit-scrollbar { display: none; }
.menu-subnav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 1.1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
  color: var(--ink);
  text-decoration: none;
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.menu-subnav a:hover { border-color: var(--espresso); }
.menu-subnav a.is-active { background: var(--espresso); border-color: var(--espresso); color: var(--paper); }

.guide-note {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  max-width: 46rem;
  margin: 0;
  padding: 1.1rem 1.35rem;
  border: 1px dashed rgba(134, 96, 47, 0.45);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  color: var(--muted);
  background: rgba(233, 220, 200, 0.35);
}
.guide-note svg { width: 20px; height: 20px; flex: none; margin-top: 0.2rem; color: var(--brass-ink); }

.menu-section {
  scroll-margin-top: calc(var(--header-h) + 72px);
  padding-block: clamp(3.5rem, 8vw, 6rem);
  border-top: 1px solid var(--line);
}
.menu-section:first-of-type { border-top: 0; }

.menu-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
}
@media (min-width: 960px) {
  .menu-grid { grid-template-columns: 0.85fr 1.15fr; align-items: start; }
  .menu-aside { position: sticky; top: calc(var(--header-h) + 100px); }
}

.menu-aside h2 { margin-bottom: 1rem; }
.menu-aside p { color: var(--muted); }
.menu-aside .num {
  display: block;
  margin-bottom: 0.75rem;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--brass-ink);
}
.menu-aside-media {
  margin-top: 2rem;
  aspect-ratio: 16 / 11;
  border-radius: var(--radius);
  overflow: hidden;
}
.menu-aside-media img { width: 100%; height: 100%; object-fit: cover; }

.menu-group + .menu-group { margin-top: 2.75rem; }
.menu-group h3 {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.9rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid var(--espresso);
  font-size: 1.7rem;
}
.menu-group h3 span {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass-ink);
}

.menu-list { margin: 0; padding: 0; list-style: none; }
.menu-item {
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--line);
}
.menu-item-row {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}
.menu-item-name {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--espresso);
}
.menu-item-row::after {
  content: "";
  order: 1;
  flex: 1;
  min-width: 1.5rem;
  border-bottom: 1px dotted rgba(43, 31, 25, 0.35);
  transform: translateY(-0.3em);
}
.menu-item-price {
  order: 2;
  font-size: 0.98rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--espresso);
  white-space: nowrap;
}
.menu-item-desc {
  margin: 0.3rem 0 0;
  max-width: 34em;
  font-size: 0.93rem;
  line-height: 1.6;
  color: var(--muted);
}
.tag {
  display: inline-block;
  margin-left: 0.4rem;
  padding: 0.1rem 0.5rem;
  border-radius: 999px;
  background: rgba(142, 27, 28, 0.08);
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
  vertical-align: 0.3em;
}
.tag--veg { background: rgba(62, 120, 72, 0.1); color: #2f6b3a; }

.menu-foot {
  margin-top: 1.5rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.service-cards {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 800px) {
  .service-cards { grid-template-columns: 1fr 1fr; }
}
.service-card {
  display: flex;
  flex-direction: column;
  padding: clamp(2rem, 4vw, 2.75rem);
  border-radius: var(--radius);
  background: var(--cream);
}
.service-card--dark { background: var(--espresso); color: #e9dfd2; }
.service-card--dark h3 { color: #fff; }
.service-card--dark p,
.service-card--dark li { color: rgba(233, 223, 210, 0.82); }
.service-card h3 { margin: 0.5rem 0 1rem; font-size: 2rem; }
.service-card p { color: var(--muted); }
.service-card ul {
  margin: 0 0 1.75rem;
  padding: 0;
  list-style: none;
  color: var(--muted);
}
.service-card li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.4rem;
  font-size: 0.97rem;
}
.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.05em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brass);
}
.service-card .btn { margin-top: auto; align-self: flex-start; }

.allergen {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
  color: var(--muted);
  max-width: 52rem;
}

/* ---------- About page ---------- */

.timeline {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: t;
}
@media (min-width: 900px) {
  .timeline { grid-template-columns: repeat(4, 1fr); gap: 0; }
}
.timeline li {
  position: relative;
  padding: 1.75rem 0 1.75rem 2rem;
  border-left: 1px solid var(--line);
}
.timeline li::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 2.2rem;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 5px var(--cream);
}
@media (min-width: 900px) {
  .timeline li {
    padding: 2.5rem 2rem 0 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .timeline li::before { left: 0; top: -6px; }
}
.timeline time {
  display: block;
  font-variant-numeric: lining-nums;
  margin-bottom: 0.5rem;
  font-family: var(--serif);
  font-size: 2.1rem;
  font-style: italic;
  line-height: 1.1;
  color: var(--brand);
}
.timeline h3 { font-size: 1.45rem; margin-bottom: 0.5rem; }
.timeline p { font-size: 0.96rem; color: var(--muted); }

.values {
  display: grid;
  gap: 2.5rem 3rem;
}
@media (min-width: 700px) { .values { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .values { grid-template-columns: repeat(4, 1fr); } }
.value .n {
  display: block;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--brass-ink);
}
.value h3 { margin-bottom: 0.6rem; }
.value p { color: var(--muted); font-size: 0.97rem; }

.mosaic {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
}
.mosaic figure { margin: 0; border-radius: var(--radius); overflow: hidden; }
.mosaic img { width: 100%; height: 100%; object-fit: cover; }
.mosaic figure:first-child { grid-column: 1 / -1; aspect-ratio: 16 / 9; }
.mosaic figure:not(:first-child) { aspect-ratio: 1; }
@media (min-width: 900px) {
  .mosaic { grid-template-columns: 1.6fr 1fr; grid-template-rows: 1fr 1fr; height: 620px; }
  .mosaic figure:first-child { grid-column: 1; grid-row: 1 / 3; aspect-ratio: auto; }
  .mosaic figure:not(:first-child) { aspect-ratio: auto; }
}

.pull {
  max-width: 52rem;
  margin: 0 auto;
  text-align: center;
}
.pull p {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 4.4vw, 3rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.2;
  color: var(--espresso);
}
.pull .ornament { margin: 0 auto 1.75rem; width: 64px; color: var(--brass); }

/* ---------- Visit page ---------- */

.visit-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 960px) {
  .visit-grid { grid-template-columns: 0.9fr 1.1fr; align-items: stretch; }
}

.info-card {
  padding: clamp(2rem, 4.5vw, 3rem);
  border-radius: var(--radius);
  background: var(--cream);
}
.info-card h2 { font-size: clamp(2rem, 4vw, 2.6rem); margin-bottom: 0.5rem; }

.info-list {
  display: grid;
  gap: 0;
  margin: 1.75rem 0 0;
  padding: 0;
  list-style: none;
}
.info-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.1rem 0;
  border-top: 1px solid var(--line);
}
.info-list .ico {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--paper);
  color: var(--brand);
}
.info-list .ico svg { width: 20px; height: 20px; }
.info-list strong {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass-ink);
}
.info-list a,
.info-list address {
  font-style: normal;
  font-weight: 600;
  color: var(--espresso);
  overflow-wrap: anywhere;
}
.info-list a { display: inline-flex; min-height: 44px; align-items: center; }

.map-card {
  position: relative;
  min-height: 380px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--oat);
}
.map-card iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.35) sepia(0.18) contrast(1.02);
}
.map-card .map-link {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 1;
  box-shadow: 0 12px 30px -12px rgba(31, 21, 16, 0.5);
}

.form-wrap {
  display: grid;
  gap: clamp(2.5rem, 6vw, 5rem);
}
@media (min-width: 960px) {
  .form-wrap { grid-template-columns: 0.8fr 1.2fr; }
}
.form-wrap .form-intro h2 { margin-bottom: 1.5rem; }
.form-wrap .form-intro p { color: var(--muted); }

.demo-note {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.75rem;
  padding: 1rem 1.2rem;
  border-left: 3px solid var(--brass);
  background: rgba(233, 220, 200, 0.45);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.form {
  display: grid;
  gap: 1.25rem;
  padding: clamp(1.75rem, 4.5vw, 3rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
@media (min-width: 640px) {
  .form { grid-template-columns: 1fr 1fr; }
  .form .full { grid-column: 1 / -1; }
}
.field { display: grid; gap: 0.45rem; }
.field label,
.field legend {
  padding: 0;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--espresso);
}
.field .opt { font-weight: 500; color: var(--muted); }
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(43, 31, 25, 0.22);
  border-radius: var(--radius-sm);
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), background-color 0.2s var(--ease);
}
.field textarea { min-height: 130px; resize: vertical; }
.field select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 2.75rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232b1f19' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 18px;
}
.field input:hover,
.field select:hover,
.field textarea:hover { border-color: rgba(43, 31, 25, 0.4); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--brand);
  background-color: #fff;
  box-shadow: 0 0 0 4px rgba(142, 27, 28, 0.12);
}
.field .hint { font-size: 0.8rem; color: var(--muted); }
.field.has-error input,
.field.has-error select,
.field.has-error textarea { border-color: var(--brand); }
.field .error { font-size: 0.82rem; font-weight: 600; color: var(--brand); }
.field .error:empty { display: none; }

fieldset.field { margin: 0; padding: 0; border: 0; }
.chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.2rem; }
.chip input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.chip span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 1.1rem;
  border: 1px solid rgba(43, 31, 25, 0.22);
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.chip input:checked + span { background: var(--espresso); border-color: var(--espresso); color: var(--paper); }
.chip input:focus-visible + span { outline: 3px solid var(--brass); outline-offset: 3px; }

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
}
.form-actions small { color: var(--muted); font-size: 0.82rem; }

.form-status {
  padding: 1.1rem 1.25rem;
  border-radius: var(--radius-sm);
  background: rgba(62, 120, 72, 0.1);
  color: #24552d;
  font-size: 0.95rem;
}
.form-status:empty { display: none; }

/* ---------- CTA strip ---------- */

.cta-strip {
  text-align: center;
}
.cta-strip h2 { max-width: 16ch; margin: 0 auto 1.25rem; }
.cta-strip p { margin: 0 auto; }
.cta-strip .btn-row { justify-content: center; margin-top: 2rem; }

/* ---------- Footer ---------- */

.site-footer {
  position: relative;
  padding-top: clamp(4rem, 9vw, 6.5rem);
  padding-bottom: 2rem;
  background: var(--espresso);
  color: rgba(233, 223, 210, 0.78);
  font-size: 0.95rem;
}
.footer-top {
  display: grid;
  gap: 2.75rem;
  padding-bottom: clamp(3rem, 6vw, 4.5rem);
  border-bottom: 1px solid var(--line-light);
}
@media (min-width: 720px) {
  .footer-top { grid-template-columns: 1.3fr 1fr 1fr; }
}
@media (min-width: 1040px) {
  .footer-top { grid-template-columns: 1.5fr 1fr 1fr 0.8fr; }
}
.footer-brand .logo-plate {
  display: inline-flex;
  padding: 0.6rem 0.9rem;
  border-radius: var(--radius-sm);
  background: var(--paper);
}
.footer-brand .logo-plate img { height: 60px; width: auto; }
.footer-brand p {
  max-width: 24em;
  margin-top: 1.5rem;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-style: italic;
  line-height: 1.35;
  color: #f4ebdf;
}
.footer-col h2 {
  margin-bottom: 1rem;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
}
.footer-col address { font-style: normal; }
.footer-col ul { margin: 0; padding: 0; list-style: none; }
.footer-col a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: #f4ebdf;
  text-decoration: none;
  overflow-wrap: anywhere;
}
.footer-col a:hover { color: #fff; text-decoration: underline; }
.footer-col p { margin-bottom: 0.4rem; }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem 2rem;
  padding-top: 1.75rem;
  font-size: 0.8rem;
  color: rgba(233, 223, 210, 0.6);
}
.footer-bottom p { margin: 0; }

/* ---------- Reveal on scroll ---------- */

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.no-js .reveal { opacity: 1; transform: none; }

/* ---------- Motion + print ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero-media img { transform: none; }
}

@media print {
  .site-header, .nav-overlay, .nav-drawer, .book-fab, .watermark, .map-card { display: none !important; }
  .hero { min-height: 0; color: var(--ink); }
}
