:root {
  --paper: #f4efe6;
  --paper-warm: #ebe2d3;
  --ink: #14110e;
  --ink-soft: rgba(20, 17, 14, 0.6);
  --ink-faint: rgba(20, 17, 14, 0.28);
  --gold: #b8912f;
  --gold-light: #c9a24b;
  --olive: #2b352a;
  --line: rgba(20, 17, 14, 0.14);
  --display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --fraktur: "UnifrakturCook", "Cormorant Garamond", Georgia, serif;
  --sans: "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --pad: clamp(4.5rem, 11vw, 9rem);
  --wrap: 74rem;
}

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

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; }

.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.wrap-narrow { width: min(100% - 2.5rem, 48rem); margin-inline: auto; }

h1, h2, h3 { font-family: var(--display); font-weight: 400; margin: 0; }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1.25rem;
}

.h-xl { font-size: clamp(2.6rem, 8vw, 5.5rem); line-height: 1.02; letter-spacing: 0.02em; text-transform: uppercase; }
.h-lg { font-size: clamp(2rem, 5vw, 3.4rem); line-height: 1.1; letter-spacing: 0.04em; text-transform: uppercase; }
.h-md { font-size: clamp(1.4rem, 3vw, 2rem); line-height: 1.2; letter-spacing: 0.06em; text-transform: uppercase; }

.lede { font-size: clamp(1.05rem, 1.8vw, 1.2rem); color: var(--ink-soft); max-width: 40rem; }
.muted { color: var(--ink-soft); }

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  border: 1px solid currentColor;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  background: none;
  cursor: pointer;
  transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}
.btn:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn-gold { color: var(--gold); }
.btn-gold:hover { background: var(--gold); color: var(--paper); border-color: var(--gold); }
.btn-light { color: #fff; border-color: rgba(255, 255, 255, 0.6); }
.btn-light:hover { background: #fff; color: var(--ink); border-color: #fff; }

/* ---------- header (Prinsen-style: solid, centred wordmark, nav below) ---------- */
.site-head {
  position: sticky; top: 0; z-index: 60;
  background: var(--paper); border-bottom: 1px solid var(--line);
}
.head-top {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 0.85rem clamp(1rem, 3vw, 2rem);
}
.head-mark {
  font-family: var(--fraktur); font-weight: 700; font-size: clamp(1.1rem, 2.7vw, 1.7rem);
  letter-spacing: 0.03em; text-decoration: none; color: var(--ink);
  white-space: nowrap; line-height: 1.1;
}
.head-right { display: flex; justify-content: flex-end; align-items: center; gap: 1rem; }
.head-nav {
  display: none; flex: 1; justify-content: center; gap: clamp(1rem, 2.6vw, 2.4rem);
}
.head-nav a {
  font-size: 0.68rem; letter-spacing: 0.13em; text-transform: uppercase; white-space: nowrap;
  text-decoration: none; color: var(--ink); position: relative; padding-block: 0.3rem;
}
.head-nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--gold); transition: width 0.35s ease;
}
.head-nav a:hover::after, .head-nav a[aria-current="page"]::after { width: 100%; }

.nav-toggle {
  display: inline-flex; flex-direction: column; gap: 5px; justify-content: center;
  width: 2.25rem; height: 2.25rem; border: 0; background: none; color: var(--ink); cursor: pointer; padding: 0;
}
.nav-toggle span { display: block; height: 1px; width: 21px; background: currentColor; transition: transform 0.35s ease, opacity 0.25s ease; }
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav-drawer {
  position: fixed; inset: 0; z-index: 55; background: var(--paper);
  display: flex; flex-direction: column; justify-content: center; gap: 0.4rem;
  padding: 5rem 2rem 3rem; overflow-y: auto; overscroll-behavior: contain;
  opacity: 0; visibility: hidden; transform: translateY(-1rem);
  transition: opacity 0.35s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.35s;
}
.nav-open .nav-drawer { opacity: 1; visibility: visible; transform: none; }
.nav-drawer a {
  font-family: var(--display); font-size: clamp(1.5rem, 6.5vw, 2.2rem);
  text-transform: uppercase; letter-spacing: 0.05em; text-decoration: none;
  padding-block: 0.35rem; border-bottom: 1px solid var(--line);
}
.nav-drawer .drawer-meta { margin-top: 2rem; font-size: 0.8rem; letter-spacing: 0.04em; border: 0; font-family: var(--sans); text-transform: none; color: var(--ink-soft); }

@media (min-width: 66rem) {
  .head-nav { display: flex; }
  .nav-toggle, .nav-drawer { display: none; }
}
@media (min-width: 80rem) {
  .head-nav a { font-size: 0.72rem; letter-spacing: 0.17em; }
}


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

/* ---------- hero ---------- */
.hero { position: relative; height: min(100svh, 46rem); min-height: 34rem; overflow: hidden; display: grid; place-items: center; }
.hero-media { position: absolute; inset: 0; overflow: hidden; transform-origin: center 40%; will-change: transform; }
.hero-media img, .hero-media video { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10, 8, 6, 0.55) 0%, rgba(10, 8, 6, 0.25) 40%, rgba(10, 8, 6, 0.7) 100%);
}
.hero-inner { position: relative; z-index: 2; text-align: center; color: #fff; padding-inline: 1.5rem; }
.hero-crest { width: clamp(150px, 24vw, 260px); height: auto; margin: 0 auto 2rem; filter: drop-shadow(0 4px 30px rgba(0,0,0,.45)); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; justify-content: center; }
.btn-fill { background: var(--gold-light); border-color: var(--gold-light); color: var(--ink); }
.btn-fill:hover { background: #fff; border-color: #fff; color: var(--ink); }
.hero-inner .h-xl { text-shadow: 0 2px 40px rgba(0, 0, 0, 0.35); }
.hero-sub { font-size: 0.72rem; letter-spacing: 0.34em; text-transform: uppercase; color: rgba(255, 255, 255, 0.82); margin: 0 0 1.75rem; }
.hero-tag { margin: 1.5rem auto 2.25rem; max-width: 30rem; color: rgba(255, 255, 255, 0.85); font-size: 1.05rem; }

.page-head { padding: clamp(3.5rem, 9vw, 6rem) 0 clamp(2.5rem, 6vw, 4rem); text-align: center; }
.page-head .lede { margin-inline: auto; }

/* ---------- sections ---------- */
section { padding-block: var(--pad); }
.section-tight { padding-block: clamp(3rem, 7vw, 5rem); }
.section-dark { background: var(--olive); color: var(--paper); }
.section-dark .eyebrow { color: var(--gold-light); }
.section-dark .muted, .section-dark .lede { color: rgba(244, 239, 230, 0.72); }
.section-dark .btn { color: var(--paper); border-color: rgba(244, 239, 230, 0.55); }
.section-dark .btn:hover { background: var(--paper); color: var(--olive); }
.section-warm { background: var(--paper-warm); }

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

.frame { position: relative; overflow: hidden; }
.frame img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.08); will-change: transform; }
.frame-tall { aspect-ratio: 3 / 4; }
.frame-wide { aspect-ratio: 4 / 3; }

.rule { height: 1px; background: var(--line); border: 0; margin: 0; }

/* ---------- cards ---------- */
.cards { display: grid; gap: clamp(1.5rem, 3vw, 2.5rem); }
@media (min-width: 48rem) { .cards-3 { grid-template-columns: repeat(3, 1fr); } .cards-2 { grid-template-columns: repeat(2, 1fr); } }
.card { text-decoration: none; display: flex; flex-direction: column; }
.card .frame { aspect-ratio: 4 / 5; margin-bottom: 1.25rem; }
.card:hover .frame img { transform: scale(1.14); }
.frame img { transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1); }
.card h3 { margin-bottom: 0.4rem; }
.card p { margin: 0; color: var(--ink-soft); font-size: 0.92rem; }
.card-more { margin-top: 0.85rem; font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }

/* ---------- menu lists ---------- */
.menu-section { margin-bottom: clamp(3rem, 7vw, 5rem); }
.menu-section > h2 { margin-bottom: 2rem; padding-bottom: 0.9rem; border-bottom: 1px solid var(--line); }
.dish { display: grid; grid-template-columns: 1fr auto; gap: 0.35rem 1.5rem; padding-block: 1.05rem; border-bottom: 1px solid rgba(20, 17, 14, 0.07); }
.dish:last-child { border-bottom: 0; }
.dish-name { font-family: var(--display); font-size: 1.24rem; letter-spacing: 0.02em; }
.dish-price { font-size: 0.85rem; letter-spacing: 0.08em; color: var(--ink-soft); white-space: nowrap; padding-top: 0.3rem; }
.dish-desc { grid-column: 1 / -1; margin: 0; color: var(--ink-soft); font-size: 0.94rem; max-width: 46rem; }
.menu-note { font-size: 0.9rem; color: var(--ink-soft); font-style: italic; }

/* ---------- wine list ---------- */
.wine-nav { position: sticky; top: 4.9rem; z-index: 40; background: var(--paper); border-bottom: 1px solid var(--line); padding-block: 0.9rem; }
.wine-nav-inner { display: flex; gap: 1.4rem; overflow-x: auto; scrollbar-width: none; }
.wine-nav-inner::-webkit-scrollbar { display: none; }
.wine-nav a { font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase; text-decoration: none; white-space: nowrap; color: var(--ink-soft); }
.wine-nav a:hover { color: var(--gold); }
.wine-country { margin: clamp(2.5rem, 6vw, 4rem) 0 0.4rem; }
.wine-region { font-family: var(--sans); font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin: 2rem 0 0.6rem; }
.wine { display: flex; justify-content: space-between; gap: 1.5rem; padding-block: 0.62rem; border-bottom: 1px solid rgba(20, 17, 14, 0.07); font-size: 0.97rem; }
.wine-price { color: var(--ink-soft); white-space: nowrap; font-size: 0.88rem; letter-spacing: 0.06em; }
.glass-grid { display: grid; gap: 0; }

/* ---------- timeline ---------- */
.timeline { position: relative; }
.timeline::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 1px; background: var(--line); }
.era { position: relative; padding: 0 0 clamp(2.5rem, 6vw, 4rem) clamp(1.75rem, 5vw, 3.5rem); }
.era::before { content: ""; position: absolute; left: -3px; top: 0.75rem; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }
.era-year { font-family: var(--display); font-size: clamp(1.8rem, 4vw, 2.6rem); letter-spacing: 0.04em; line-height: 1; margin-bottom: 0.6rem; }
.era p { margin: 0; color: var(--ink-soft); max-width: 42rem; }

/* ---------- info blocks ---------- */
.info-grid { display: grid; gap: clamp(2rem, 5vw, 3.5rem); }
@media (min-width: 48rem) { .info-grid { grid-template-columns: repeat(3, 1fr); } }
.info h3 { font-family: var(--sans); font-size: 0.68rem; font-weight: 400; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.info p, .info li { margin: 0 0 0.35rem; color: var(--ink-soft); }
.info ul { list-style: none; margin: 0; padding: 0; }
.info a { color: inherit; text-decoration: none; border-bottom: 1px solid var(--ink-faint); }
.info a:hover { border-color: var(--gold); color: var(--gold); }

.hours-row { display: flex; justify-content: space-between; gap: 1.5rem; padding-block: 0.42rem; border-bottom: 1px solid rgba(20, 17, 14, 0.07); }
.section-dark .hours-row { border-color: rgba(244, 239, 230, 0.14); }

/* ---------- booking ---------- */
.booking-frame { width: 100%; min-height: 46rem; border: 0; background: var(--paper); }

/* ---------- event enquiry form ---------- */
.event-form { display: grid; gap: 1rem; align-content: start; }
.field-row { display: grid; gap: 1rem; }
@media (min-width: 34rem) { .field-row { grid-template-columns: 1fr 1fr; } }
.field { display: grid; gap: 0.4rem; }
.field > span {
  font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-soft);
}
.field input, .field select, .field textarea {
  font-family: var(--sans); font-weight: 300; font-size: 0.95rem; color: var(--ink);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(184, 145, 47, 0.6);
  border-radius: 0; padding: 0.8rem 0.9rem; width: 100%;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.field textarea { resize: vertical; min-height: 8rem; }
.field select { appearance: none; cursor: pointer; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0; border-color: var(--gold); background: #fff;
}
.form-note { font-size: 0.82rem; color: var(--ink-soft); margin: 0.25rem 0 0; }
.event-form .btn { justify-self: start; }

/* ---------- footer ---------- */
.footer { background: var(--olive); color: var(--paper); padding-block: clamp(3.5rem, 8vw, 5.5rem) 2.5rem; }
.footer a { color: inherit; text-decoration: none; }
.footer a:hover { color: var(--gold-light); }
.footer-grid { display: grid; gap: 2.5rem; }
@media (min-width: 48rem) { .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; } }
.footer h3 { font-family: var(--sans); font-size: 0.66rem; font-weight: 400; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 1rem; }
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { margin-bottom: 0.4rem; color: rgba(244, 239, 230, 0.72); }
.footer-logo img { width: 120px; filter: brightness(0) invert(1); opacity: 0.9; margin-bottom: 1.25rem; }
.footer-bottom { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(244, 239, 230, 0.16); display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; font-size: 0.76rem; color: rgba(244, 239, 230, 0.55); }

/* ---------- motion ---------- */
.reveal { opacity: 0; transition: opacity 0.5s ease; }
.reveal.in { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .word > span { transition: none; opacity: 1; transform: none; }
  .hero-media, .frame img { transform: none !important; }
}
