/* =========================================================================
   THESSALIA — Website stylesheet
   Palette: dark Mediterranean, warm amber, parchment accents
   ========================================================================= */

:root {
  --ink: #1a1612;
  --ink-soft: #2b2520;
  --paper: #f3ebd7;
  --paper-soft: #ede3ce;
  --cream: #e8dcc0;
  --amber: #f5ede0;        /* was golden — now warm off-white */
  --amber-bright: #ffffff; /* was bright gold — now pure white */
  --olive: #8c6b3a;
  --rust: #a34a2a;
  --muted: #9a8f7c;        /* slightly lighter so non-accent text still has contrast */
  --line: rgba(245, 237, 224, 0.22);
  --line-strong: rgba(245, 237, 224, 0.45);
  --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.45);
  --shadow-lift: 0 20px 60px rgba(0, 0, 0, 0.55);

  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Inter', 'Helvetica Neue', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'SFMono-Regular', ui-monospace, monospace;

  --ease: cubic-bezier(.2,.7,.2,1);

  /* Modern radii */
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: all .3s var(--ease); }
button { cursor: pointer; font-family: inherit; border: none; background: none; color: inherit; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; letter-spacing: -.015em; line-height: 1.08; color: var(--paper); }

/* =========================================================================
   NAVIGATION
   ========================================================================= */

.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding: 1.5rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  background: linear-gradient(to bottom, rgba(26,22,18,.92) 0%, rgba(26,22,18,.75) 70%, rgba(26,22,18,0) 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: padding .4s var(--ease), background .4s var(--ease);
}
.site-header.scrolled {
  padding: .9rem 3rem;
  background: rgba(26,22,18,.97);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex; align-items: center;
  color: var(--paper);
}
.brand-logo {
  height: 56px;
  width: auto;
  display: block;
  transition: height .4s var(--ease);
}
.site-header.scrolled .brand-logo { height: 42px; }
@media (max-width: 600px) {
  .brand-logo { height: 42px; }
  .site-header.scrolled .brand-logo { height: 36px; }
}

/* Legacy classes kept in case of inline HTML references */
.brand-mark { width: 34px; height: 34px; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: .28em;
  font-weight: 500;
}
.brand-tagline {
  font-family: var(--font-mono);
  font-size: .65rem;
  letter-spacing: .25em;
  color: var(--amber);
  text-transform: uppercase;
  margin-top: 2px;
}

.footer-logo {
  height: 80px;
  width: auto;
  display: block;
  margin-bottom: 1.2rem;
}

.nav-links { display: flex; gap: 2.4rem; align-items: center; }
.nav-links a {
  font-size: .82rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--paper);
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: ''; position: absolute; inset: auto 0 0 0;
  height: 1px; background: var(--amber);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--amber-bright); }

.btn-reserve {
  padding: .8rem 1.8rem;
  border: 2px solid var(--amber-bright);
  border-radius: var(--radius-pill);
  color: var(--amber-bright);
  font-size: .78rem; font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: all .35s var(--ease);
  display: inline-block;
}
.btn-reserve:hover {
  background: var(--amber-bright);
  color: var(--ink);
  border-color: var(--amber-bright);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(255,255,255,.2);
}

/* Language switcher */
.lang-switch {
  display: inline-flex; align-items: center; gap: .5rem;
  margin-right: 1.2rem;
  font-family: var(--font-body);
  font-size: .72rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
}
.lang-switch a {
  color: var(--muted); transition: color .3s var(--ease);
}
.lang-switch a.active {
  color: var(--amber-bright);
}
.lang-switch a:hover { color: var(--amber-bright); }
.lang-switch span { color: var(--line-strong); }

.hamburger {
  display: none;
  width: 30px; height: 22px; position: relative;
}
.hamburger span {
  position: absolute; left: 0; right: 0; height: 1px;
  background: var(--paper); transition: all .3s var(--ease);
}
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 50%; }
.hamburger span:nth-child(3) { bottom: 0; }
.hamburger.open span:nth-child(1) { top: 50%; transform: rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { bottom: 50%; transform: rotate(-45deg); }

/* =========================================================================
   HERO
   ========================================================================= */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  text-align: center;
}
.hero-media {
  position: absolute; inset: 0;
  background: #000;
  z-index: 0;
}
.hero-media img, .hero-media video {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  opacity: 1;
}
.hero-media::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,0) 35%, rgba(0,0,0,.55) 85%, rgba(0,0,0,.75) 100%);
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: 820px; padding: 0 2rem;
}
.hero-logo {
  display: block;
  margin: 0 auto 2.2rem;
  height: 135px;
  width: auto;
  opacity: 0;
  filter: drop-shadow(0 6px 22px rgba(0,0,0,.45));
  animation: fadeUp 1.2s var(--ease) .15s forwards;
}
@media (max-width: 720px) {
  .hero-logo { height: 99px; margin-bottom: 1.6rem; }
}
.hero-meta {
  font-family: var(--font-body); font-size: .78rem;
  font-weight: 600;
  letter-spacing: .18em; color: var(--amber); text-transform: uppercase;
  margin-bottom: 2rem;
  opacity: 0; animation: fadeUp 1.2s var(--ease) .4s forwards;
}
.hero-title {
  font-size: clamp(3rem, 7vw, 5.6rem);
  font-weight: 600; letter-spacing: -.01em; line-height: 1;
  margin-bottom: 1.5rem;
  opacity: 0; animation: fadeUp 1.3s var(--ease) .55s forwards;
}
.hero-title em {
  font-style: italic; color: var(--amber-bright);
  display: block; font-size: .65em; letter-spacing: .02em;
  margin-top: .4rem;
}
.hero-sub {
  font-family: var(--font-body);
  font-size: 1.05rem; color: var(--cream);
  max-width: 520px; margin: 0 auto 2.8rem;
  opacity: 0; animation: fadeUp 1.3s var(--ease) .75s forwards;
}
.hero-ctas {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 1.3s var(--ease) .95s forwards;
}
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .6rem; padding: 1.05rem 2.4rem;
  font-size: .82rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  border-radius: var(--radius-pill);
  transition: all .35s var(--ease);
}
.btn-primary {
  background: var(--amber); color: var(--ink); border: 2px solid var(--amber);
  box-shadow: 0 10px 28px rgba(255,255,255,.15);
}
.btn-primary:hover {
  background: var(--amber-bright); border-color: var(--amber-bright);
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(255,255,255,.22);
}
.btn-ghost {
  border: 2px solid var(--line-strong); color: var(--paper);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover {
  border-color: var(--amber); color: var(--amber-bright);
  transform: translateY(-2px);
}

.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 2;
  font-family: var(--font-mono); font-size: .65rem;
  letter-spacing: .3em; color: var(--muted); text-transform: uppercase;
  opacity: 0; animation: fadeUp 1.3s var(--ease) 1.4s forwards;
}
.hero-scroll::after {
  content: ''; display: block; width: 1px; height: 40px; margin: .8rem auto 0;
  background: linear-gradient(to bottom, var(--amber) 0%, transparent 100%);
  animation: scrollBounce 2s var(--ease) infinite;
}

@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes scrollBounce { 0%, 100% { transform: scaleY(1); } 50% { transform: scaleY(.6); } }

/* =========================================================================
   SECTIONS — general
   ========================================================================= */

section { padding: 8rem 3rem; }
.container { max-width: 1180px; margin: 0 auto; }
.container-narrow { max-width: 820px; margin: 0 auto; }

.section-label {
  font-family: var(--font-mono); font-size: .72rem;
  letter-spacing: .32em; color: var(--amber); text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(2.2rem, 4.4vw, 3.6rem);
  font-weight: 600; letter-spacing: -.015em;
  margin-bottom: 1.5rem;
}
.section-title em { font-style: italic; color: var(--amber-bright); }
.section-lead {
  font-size: 1.12rem; line-height: 1.7;
  color: var(--cream); max-width: 680px;
}

.reveal { opacity: 0; transform: translateY(24px); transition: all 1s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* =========================================================================
   STORY (home): two column image + text
   ========================================================================= */

.story {
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-soft) 100%);
}
.story-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
  align-items: center;
}
.story-image {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #3a2f26 0%, #1a1612 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lift);
}
.story-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.story-image:hover img { transform: scale(1.04); }
.photo-slot {
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 100%;
  font-family: var(--font-mono); font-size: .72rem;
  letter-spacing: .2em; color: var(--muted); text-transform: uppercase;
  text-align: center; padding: 2rem;
  border: 1px dashed var(--line-strong);
}
.photo-slot::before { content: ''; display: block; }

.story-body p { margin-bottom: 1.2rem; color: var(--cream); font-size: 1.05rem; }
.story-body .section-title { margin-top: 1rem; }

/* =========================================================================
   CTA ENTRANCE — "Kom langs" met echte foto van de entree
   ========================================================================= */

.cta-entrance {
  position: relative;
  padding: 9rem 3rem;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
  background: var(--ink);
}
.cta-entrance-media {
  position: absolute; inset: 0;
  z-index: 0;
}
.cta-entrance-media img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  opacity: .55;
  transition: transform 1.4s var(--ease), opacity 1.4s var(--ease);
}
.cta-entrance:hover .cta-entrance-media img {
  transform: scale(1.04);
  opacity: .65;
}
.cta-entrance.is-vivid .cta-entrance-media img {
  opacity: .9;
}
.cta-entrance.is-vivid:hover .cta-entrance-media img {
  transform: none;
  opacity: .95;
}
.cta-entrance-media::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(16,12,9,.55) 0%, rgba(16,12,9,.35) 40%, rgba(16,12,9,.70) 100%);
}
.cta-entrance-inner {
  position: relative; z-index: 2;
  margin: 0 auto;
}
.cta-entrance-inner .section-lead {
  margin: 0 auto 2.5rem;
}

@media (max-width: 720px) {
  .cta-entrance { padding: 6rem 1.5rem; }
}

/* =========================================================================
   SIGNATURES — Home: horizontal dish cards
   ========================================================================= */

.signatures { background: var(--ink); }
.signatures-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
  margin-top: 3rem;
}
.dish-card {
  background: var(--ink-soft);
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 0;
  transition: all .5s var(--ease);
  overflow: hidden;
  position: relative;
}
.dish-card:hover {
  transform: translateY(-8px);
  border-color: var(--amber-bright);
  box-shadow: var(--shadow-lift);
}
.dish-image {
  aspect-ratio: 4/3;
  background: #2a231c;
  position: relative;
  overflow: hidden;
}
.dish-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.dish-card:hover .dish-image img { transform: scale(1.06); }
.dish-body {
  padding: 1.8rem 1.8rem 2rem;
}
.dish-name {
  font-family: var(--font-display);
  font-size: 1.7rem; font-weight: 600; letter-spacing: -.01em;
  margin-bottom: .5rem;
}
.dish-desc {
  font-size: .92rem; color: var(--muted);
  margin-bottom: 1.1rem;
}
.dish-price {
  font-family: var(--font-mono); font-size: .85rem;
  color: var(--amber-bright); letter-spacing: .08em;
}

/* =========================================================================
   MENU PAGE — full menu
   ========================================================================= */

.page-hero {
  padding: 14rem 3rem 6rem;
  background: linear-gradient(180deg, var(--ink-soft) 0%, var(--ink) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center top, rgba(255,255,255,.08) 0%, transparent 55%);
}
.page-hero > * { position: relative; z-index: 2; }
.page-title {
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  font-weight: 400; letter-spacing: .04em;
  margin-bottom: 1rem;
}
.page-title em { font-style: italic; color: var(--amber-bright); }
.page-lead { font-size: 1.1rem; color: var(--cream); max-width: 620px; margin: 0 auto; }

/* Page hero mét achtergrondfoto (wijn-pagina) */
.page-hero-image {
  background: var(--ink);
  isolation: isolate;
}
.page-hero-image .page-hero-media {
  position: absolute; inset: 0;
  z-index: 0;
}
.page-hero-image .page-hero-media img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 52%;
  opacity: .42;
}
.page-hero-image .page-hero-media::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(16,12,9,.55) 0%, rgba(16,12,9,.35) 40%, rgba(16,12,9,.80) 100%);
}
.page-hero-image .page-hero-inner {
  position: relative; z-index: 2;
}

/* Brighter variant — alleen voor de menu-pagina hero */
.page-hero-image.is-bright .page-hero-media img {
  opacity: .78;
  filter: saturate(1.12) contrast(1.04);
}
.page-hero-image.is-bright .page-hero-media::after {
  background:
    linear-gradient(180deg, rgba(16,12,9,.30) 0%, rgba(16,12,9,.10) 40%, rgba(16,12,9,.65) 100%);
}

/* Fully vibrant variant — 100% opacity + extra verzadiging (contact-pagina) */
.page-hero-image.is-vivid .page-hero-media img {
  opacity: 1;
  filter: saturate(1.35) contrast(1.06);
}
.page-hero-image.is-vivid .page-hero-media::after {
  background:
    linear-gradient(180deg, rgba(16,12,9,.20) 0%, rgba(16,12,9,.05) 40%, rgba(16,12,9,.55) 100%);
}

/* Story met achtergrondfoto — Meteora-sectie op over-pagina */
.story-bg {
  position: relative;
  padding: 10rem 3rem;
  overflow: hidden;
  isolation: isolate;
  background: var(--ink);
}
.story-bg-media {
  position: absolute; inset: 0;
  z-index: 0;
}
.story-bg-media img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  opacity: .55;
}
.story-bg-media::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(16,12,9,.45) 0%, rgba(16,12,9,.25) 40%, rgba(16,12,9,.75) 100%);
}
.story-bg-inner {
  position: relative; z-index: 2;
  margin: 0 auto;
}
.story-bg-inner p { color: var(--paper); }
@media (max-width: 720px) {
  .story-bg { padding: 6rem 1.5rem; }
}

/* Story banner — brede terrasfoto (over-pagina) */
.story-banner {
  padding: 0 3rem 4rem;
}
.story-banner-wrap {
  max-width: 1280px; margin: 0 auto;
  aspect-ratio: 21/9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  border: 1px solid var(--line);
}
.story-banner-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: transform 1.4s var(--ease);
}
.story-banner-wrap:hover img {
  transform: scale(1.03);
}
@media (max-width: 720px) {
  .story-banner { padding: 0 1.5rem 3rem; }
  .story-banner-wrap { aspect-ratio: 16/10; }
}

.menu-section { padding: 5rem 3rem; }
.menu-section:nth-child(even) { background: var(--ink-soft); }

.menu-category {
  text-align: center; margin-bottom: 3rem;
}
.menu-category-label {
  font-family: var(--font-mono); font-size: .72rem;
  letter-spacing: .35em; color: var(--amber); text-transform: uppercase;
  margin-bottom: .5rem;
}
.menu-category-title {
  font-size: 2.4rem; font-weight: 400;
  margin-bottom: 1rem;
}
.menu-category-desc {
  color: var(--muted); max-width: 560px; margin: 0 auto;
  font-size: .98rem;
}

/* Menu-category met achtergrondfoto (bijv. nagerechten met yoghurt) */
.menu-category-bg {
  position: relative;
  padding: 7rem 3rem;
  margin-top: -5rem;
  margin-bottom: 3rem;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  isolation: isolate;
  background: var(--ink);
}
.menu-category-bg-media {
  position: absolute; inset: 0;
  z-index: 0;
}
.menu-category-bg-media img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  opacity: .55;
}
.menu-category-bg.is-vivid .menu-category-bg-media img {
  opacity: .9;
  filter: saturate(1.12) contrast(1.04);
}
.menu-category-bg.is-vivid .menu-category-bg-media::after {
  background:
    linear-gradient(180deg, rgba(16,12,9,.30) 0%, rgba(16,12,9,.10) 40%, rgba(16,12,9,.55) 100%);
}
.menu-category-bg-media::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(16,12,9,.45) 0%, rgba(16,12,9,.25) 40%, rgba(16,12,9,.75) 100%);
}
.menu-category-bg .menu-category {
  position: relative; z-index: 2;
  margin-bottom: 0;
}
.menu-category-bg .menu-category-title { color: var(--paper); }
.menu-category-bg .menu-category-desc { color: rgba(245,241,232,.85); }
@media (max-width: 720px) {
  .menu-category-bg { padding: 5rem 1.5rem; margin-top: -5rem; margin-bottom: 2.5rem; }
}

.menu-list { max-width: 900px; margin: 0 auto; }
.menu-item {
  display: grid; grid-template-columns: 1fr auto; gap: 2rem;
  padding: 1.3rem 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.menu-item:last-child { border-bottom: none; }
.menu-item-name {
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 600;
  margin-bottom: .3rem;
  letter-spacing: -.005em;
}
.menu-item-name .tag {
  display: inline-block;
  font-family: var(--font-mono); font-size: .55rem;
  letter-spacing: .25em; text-transform: uppercase;
  color: var(--amber-bright); background: rgba(255,255,255,.08);
  padding: 3px 10px; border: 1px solid var(--amber);
  border-radius: var(--radius-pill);
  vertical-align: middle; margin-left: .7rem;
}
.menu-item-desc { font-size: .92rem; color: var(--muted); line-height: 1.55; }
.menu-item-price {
  font-family: var(--font-mono); font-size: 1rem;
  color: var(--amber-bright); letter-spacing: .06em;
  white-space: nowrap;
}

.menu-anchor-nav {
  position: sticky; top: 82px; z-index: 50;
  background: rgba(26,22,18,.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1rem 3rem;
  overflow-x: auto;
}
.menu-anchor-nav-inner {
  display: flex; gap: 2rem; justify-content: center;
  max-width: 1180px; margin: 0 auto;
  white-space: nowrap;
}
.menu-anchor-nav a {
  font-family: var(--font-mono); font-size: .72rem;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted); padding: .3rem 0;
  border-bottom: 1px solid transparent;
  transition: all .3s var(--ease);
}
.menu-anchor-nav a:hover { color: var(--paper); }
.menu-anchor-nav a.active { color: var(--amber); border-color: var(--amber); }

/* =========================================================================
   WINE PAGE
   ========================================================================= */

.wine-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.wine-card {
  background: var(--ink-soft);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  transition: all .4s var(--ease);
  position: relative;
}
.wine-card:hover {
  border-color: var(--amber-bright);
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft);
}
.wine-type {
  font-family: var(--font-mono); font-size: .65rem;
  letter-spacing: .28em; text-transform: uppercase;
  margin-bottom: .8rem;
}
.wine-type.red { color: #c35050; }
.wine-type.white { color: #d4b97a; }
.wine-type.rose { color: #d78787; }
.wine-name {
  font-family: var(--font-display); font-size: 1.55rem; font-weight: 600;
  letter-spacing: -.01em; margin-bottom: .3rem;
}
.wine-grapes {
  font-style: italic; color: var(--muted); font-size: .9rem;
  margin-bottom: 1.2rem;
}
.wine-desc { font-size: .95rem; line-height: 1.65; color: var(--cream); margin-bottom: 1.5rem; }
.wine-meta {
  display: flex; justify-content: space-between;
  padding-top: 1rem; border-top: 1px solid var(--line);
  font-family: var(--font-mono); font-size: .8rem;
}
.wine-region { color: var(--muted); }
.wine-price { color: var(--amber-bright); }

.wine-filter {
  display: flex; gap: 1rem; justify-content: center;
  margin-bottom: 2rem; flex-wrap: wrap;
}
.wine-filter button {
  padding: .65rem 1.6rem;
  border: 2px solid var(--line-strong);
  border-radius: var(--radius-pill);
  font-family: var(--font-mono); font-size: .72rem;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--paper);
  transition: all .3s var(--ease);
}
.wine-filter button:hover, .wine-filter button.active {
  background: var(--amber); color: var(--ink); border-color: var(--amber);
}

/* =========================================================================
   RESERVE PAGE
   ========================================================================= */

.reserve-wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
  align-items: start;
}
.reserve-widget {
  background: var(--ink-soft);
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 3rem;
  min-height: 500px;
}
.reserve-widget h3 {
  font-size: 1.6rem; margin-bottom: 1rem;
}
.widget-placeholder {
  padding: 3rem 2rem;
  text-align: center;
  border: 1px dashed var(--line-strong);
  background: rgba(0,0,0,.2);
}
.widget-placeholder .mono {
  font-family: var(--font-mono); font-size: .75rem;
  letter-spacing: .2em; color: var(--amber);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.widget-placeholder p { color: var(--muted); font-size: .9rem; margin-bottom: 1rem; }
.widget-placeholder code {
  display: block; background: rgba(0,0,0,.4);
  padding: 1rem; margin-top: 1rem;
  font-family: var(--font-mono); font-size: .72rem;
  color: var(--amber-bright);
  text-align: left; border-left: 4px solid var(--amber-bright);
}

.reserve-form .form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
  margin-bottom: 1rem;
}
.reserve-form label {
  display: block; font-family: var(--font-mono);
  font-size: .65rem; letter-spacing: .25em;
  text-transform: uppercase; color: var(--amber);
  margin-bottom: .5rem;
}
.reserve-form input, .reserve-form select, .reserve-form textarea {
  width: 100%; padding: 1rem 1.1rem;
  background: rgba(0,0,0,.3);
  border: 2px solid var(--line-strong);
  border-radius: var(--radius-sm);
  color: var(--paper); font-family: inherit; font-size: .95rem;
  transition: border .3s var(--ease), background .3s var(--ease);
}
.reserve-form input:focus, .reserve-form select:focus, .reserve-form textarea:focus {
  outline: none; border-color: var(--amber);
  background: rgba(0,0,0,.45);
}
.reserve-form textarea { resize: vertical; min-height: 100px; }
.reserve-form .btn { margin-top: 1rem; width: 100%; }

.reserve-info h3 {
  font-size: 1.3rem; margin-bottom: .7rem;
}
.reserve-info-block {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}
.reserve-info-block:last-child { border-bottom: none; }
.reserve-info p { color: var(--cream); font-size: .95rem; line-height: 1.75; }

/* =========================================================================
   ABOUT / OVER
   ========================================================================= */

.story-long {
  padding: 5rem 3rem;
}
.story-long .container-narrow p {
  font-size: 1.12rem; line-height: 1.85; color: var(--cream);
  margin-bottom: 1.5rem;
}
.story-long .container-narrow p.lead {
  font-size: 1.35rem; font-family: var(--font-display); font-style: italic;
  color: var(--amber-bright); margin-bottom: 2.5rem;
}
.pull-quote {
  font-family: var(--font-display); font-style: italic;
  font-size: 1.8rem; line-height: 1.5;
  color: var(--amber-bright);
  padding: 2rem 0 2rem 2.5rem;
  margin: 3rem 0;
  border-left: 4px solid var(--amber-bright);
}

.meteora-banner {
  aspect-ratio: 21/9;
  background: linear-gradient(135deg, #2a2015 0%, #1a1612 100%);
  border-radius: var(--radius-lg);
  position: relative; overflow: hidden;
  margin: 4rem 0;
}
.meteora-banner img { width: 100%; height: 100%; object-fit: cover; opacity: .7; }
.meteora-banner::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(26,22,18,.6) 100%);
}

/* =========================================================================
   CONTACT
   ========================================================================= */

.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
}
.contact-item {
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--line);
}
.contact-item:last-child { border-bottom: none; }
.contact-item-label {
  font-family: var(--font-mono); font-size: .7rem;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--amber); margin-bottom: .5rem;
}
.contact-item-value { font-size: 1.15rem; color: var(--paper); line-height: 1.5; }
.contact-item-value a:hover { color: var(--amber-bright); }
.hours-list { display: grid; grid-template-columns: auto 1fr; gap: .5rem 2rem; margin-top: .5rem; }
.hours-list dt { font-family: var(--font-mono); font-size: .8rem; color: var(--muted); }
.hours-list dd { font-size: .95rem; color: var(--cream); }
.hours-list dd.closed { color: #8a5050; font-style: italic; }

.map-wrap {
  aspect-ratio: 4/3;
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  background: #1f1914;
  position: relative;
  overflow: hidden;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.4) brightness(.75); }

/* =========================================================================
   FOOTER
   ========================================================================= */

.site-footer {
  background: #12100d;
  border-top: 1px solid var(--line);
  padding: 4rem 3rem 2rem;
}
.footer-grid {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
  margin-bottom: 3rem;
}
.footer-col h4 {
  font-family: var(--font-body); font-size: .78rem;
  font-weight: 600;
  letter-spacing: .18em; color: var(--amber);
  text-transform: uppercase; margin-bottom: 1.2rem;
}
.footer-col p, .footer-col a {
  font-family: var(--font-body);
  font-size: .92rem; line-height: 1.8; color: var(--cream);
  display: block;
}
.footer-col a:hover { color: var(--amber-bright); }
.footer-brand .brand-name { font-size: 1.8rem; margin-bottom: .5rem; }
.footer-brand p { margin-top: 1rem; color: var(--muted); }
.footer-bottom {
  max-width: 1180px; margin: 0 auto;
  padding-top: 2rem; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  font-size: .78rem; color: var(--muted);
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.socials { display: flex; gap: 1.25rem; align-items: center; }
.socials a {
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--muted);
  transition: all .3s var(--ease);
}
.socials a svg {
  width: 26px; height: 26px;
  fill: currentColor;
  transition: fill .3s var(--ease);
}
.socials a:hover {
  color: var(--amber-bright);
  transform: translateY(-2px);
}

/* =========================================================================
   RESPONSIVE
   ========================================================================= */

@media (max-width: 960px) {
  .site-header { padding: 1rem 1.5rem; }
  .site-header.menu-open {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .nav-links { display: none; position: fixed; inset: 70px 0 0 0;
    background: transparent; flex-direction: column; padding: 3rem;
    gap: 1.8rem; z-index: 99; }
  .nav-links.open { display: flex; background: rgba(0, 0, 0, 0.8); }
  .btn-reserve.desktop-only { display: none; }
  .hamburger { display: block; }
  section { padding: 5rem 1.5rem; }
  .page-hero { padding: 10rem 1.5rem 4rem; }
  .story-grid, .reserve-wrap, .contact-grid, .footer-grid {
    grid-template-columns: 1fr; gap: 3rem;
  }
  .signatures-grid { grid-template-columns: 1fr; }
  .wine-grid { grid-template-columns: 1fr; }
  .reserve-form .form-row { grid-template-columns: 1fr; }
  .menu-anchor-nav { padding: 1rem 1.5rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}

@media (max-width: 600px) {
  .hero-title { font-size: clamp(2.4rem, 10vw, 3.4rem); }
  .pull-quote { font-size: 1.3rem; padding-left: 1.4rem; }
}

/* =========================================================================
   WINE PAGE — extra
   ========================================================================= */

.wine-section { padding: 5rem 3rem; }
.wine-category-label {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.8rem;
  color: var(--amber-bright);
  margin: 4rem 0 1.5rem;
  padding-bottom: .8rem;
  border-bottom: 1px solid var(--line);
  letter-spacing: .01em;
}
.wine-category-label:first-of-type { margin-top: 2.5rem; }

/* =========================================================================
   RESERVE PAGE — extra
   ========================================================================= */

.reserve-section { padding: 5rem 3rem; }
.reserve-main {
  background: var(--ink-soft);
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.reserve-aside { display: flex; flex-direction: column; gap: 2rem; }
.aside-block {
  padding: 1.6rem 1.8rem;
  border-left: 4px solid var(--amber-bright);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
}
.aside-block h3 {
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: .7rem;
}
.aside-block p { color: var(--cream); font-size: .95rem; line-height: 1.7; margin-bottom: .5rem; }
.aside-block p:last-child { margin-bottom: 0; }
.aside-block .muted { color: var(--muted); font-style: italic; }
.aside-block a { color: var(--amber-bright); border-bottom: 1px solid transparent; }
.aside-block a:hover { border-color: var(--amber-bright); }
.aside-highlight {
  background: rgba(255, 255, 255, 0.08);
  border-left-width: 5px;
}

.form-note {
  margin-top: 1rem;
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.6;
}
.form-note a { color: var(--amber-bright); border-bottom: 1px solid var(--line); }
.btn-wide { width: 100%; }
.btn-wide-mobile { width: auto; }

.guestplan-card {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.guestplan-card .section-title,
.guestplan-card .section-lead {
  margin-bottom: 0;
}
.guestplan-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.guestplan-note {
  font-size: .92rem;
  color: var(--muted);
  line-height: 1.7;
}
.guestplan-note a {
  color: var(--amber-bright);
  border-bottom: 1px solid var(--line);
}
.guestplan-status {
  padding: 1rem 1.1rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  color: var(--cream);
  font-size: .92rem;
  line-height: 1.6;
}
.guestplan-status[data-tone="warning"] {
  border-color: rgba(163, 74, 42, 0.8);
  background: rgba(163, 74, 42, 0.12);
}
.guestplan-status[data-tone="success"] {
  border-color: rgba(140, 107, 58, 0.9);
  background: rgba(140, 107, 58, 0.14);
}
.guestplan-fab {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 1200;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 10rem;
  padding: .95rem 1.35rem;
  border: 1px solid rgba(214, 179, 109, 0.45);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(205, 143, 61, 0.95), rgba(163, 74, 42, 0.95));
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
  color: #fff8eb;
  font-family: var(--font-ui);
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.guestplan-fab:hover,
.guestplan-fab:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.34);
  filter: saturate(1.08);
}
.guestplan-fab:focus-visible {
  outline: 2px solid rgba(255, 248, 235, 0.9);
  outline-offset: 3px;
}

/* Info strip (bottom of reserve page) */
.info-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
  margin-top: 2.5rem;
}
.info-item { text-align: left; padding: 1.2rem 0; }
.info-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--amber-bright);
  margin-bottom: .5rem;
}
.info-item p { font-size: .92rem; color: var(--cream); line-height: 1.7; }

/* =========================================================================
   ABOUT PAGE — extra
   ========================================================================= */

.story-text { margin: 3rem 0; }
.story-text h2 { margin-bottom: 1.2rem; }
.story-text .btn-ghost { margin-top: 1rem; }

.photo-slot-wide {
  aspect-ratio: 21/9;
  min-height: 200px;
}

.team-section { padding: 5rem 3rem; background: var(--ink-soft); }

/* =========================================================================
   CONTACT PAGE — extra
   ========================================================================= */

.contact-section { padding: 5rem 3rem; }
.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.contact-block { padding-bottom: 1.8rem; border-bottom: 1px solid var(--line); }
.contact-block:last-child { border-bottom: none; }
.contact-block h3 {
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: .8rem;
}
.contact-block p { color: var(--cream); font-size: 1rem; line-height: 1.7; margin-bottom: .5rem; }
.contact-block a { color: var(--amber-bright); border-bottom: 1px solid transparent; }
.contact-block a:hover { border-color: var(--amber-bright); }
.contact-big { font-size: 1.3rem !important; color: var(--paper) !important; font-weight: 500; line-height: 1.5 !important; }
.contact-big a { color: var(--paper); }

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: .5rem;
}
.hours-table td {
  padding: .5rem 0;
  font-size: .95rem;
  color: var(--cream);
  border-bottom: 1px solid var(--line);
}
.hours-table tr:last-child td { border-bottom: none; }
.hours-table td:first-child { font-family: var(--font-mono); font-size: .75rem; letter-spacing: .15em; color: var(--muted); text-transform: uppercase; }
.hours-table td.muted { font-style: italic; color: var(--muted); }
.hours-table td:last-child { text-align: right; }

.contact-map { display: flex; flex-direction: column; gap: 2rem; }
.getting-here {
  padding: 1.5rem 1.8rem;
  border-left: 4px solid var(--amber-bright);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
}
.getting-here h3 {
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: .8rem;
}
.getting-here p { font-size: .92rem; color: var(--cream); line-height: 1.7; margin-bottom: .5rem; }
.getting-here strong { color: var(--paper); }

/* =========================================================================
   RESPONSIVE — extra
   ========================================================================= */

@media (max-width: 960px) {
  .info-strip { grid-template-columns: 1fr 1fr; }
  .reserve-main { padding: 1.8rem 1.5rem; }
  .btn-wide-mobile { width: 100%; }
}
@media (max-width: 600px) {
  .info-strip { grid-template-columns: 1fr; }
  .wine-category-label { font-size: 1.4rem; margin-top: 3rem; }
  .guestplan-fab {
    right: 1rem;
    bottom: 1rem;
    min-width: auto;
    padding: .9rem 1.1rem;
    font-size: .85rem;
  }
}

/* =========================================================================
   REEL / VERTICAL VIDEO SECTION
   ========================================================================= */

.reel-section {
  padding: 3.5rem 3rem;
  background: var(--ink);
}

.reel-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 820px;
  margin: 0 auto;
}

.reel-video {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: var(--ink-soft);
  opacity: .92;
}

.reel-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.reel-body .section-label { margin-bottom: .8rem; }
.reel-body p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--paper);
  max-width: 32ch;
}

@media (max-width: 720px) {
  .reel-section { padding: 2.5rem 1.5rem; }
  .reel-grid {
    grid-template-columns: 180px 1fr;
    gap: 1.5rem;
    max-width: 520px;
  }
  .reel-body p { font-size: 1.05rem; }
}
@media (max-width: 480px) {
  .reel-grid {
    grid-template-columns: 1fr;
    max-width: 260px;
    text-align: center;
    gap: 1.25rem;
  }
}

/* =========================================================================
   META / UTILITIES
   ========================================================================= */

.text-center { text-align: center; }
.mt-large { margin-top: 3rem; }
.mb-large { margin-bottom: 3rem; }
