@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&family=Jost:wght@300;400;500;600&display=swap');

/* ═══════════════════════════════════════════════════════════════
   ZEITGEISTBITES — Alpine Gasthaus Meets Shanghai
   Palette: Forest (#20603D) · Brass (#C4922A) · Parchment · Dark Wood
   Aesthetic: Grand European dining room, editorial, warm and dramatic
═══════════════════════════════════════════════════════════════ */

:root {
  --forest:     #20603D;
  --forest-d:   #163F28;
  --forest-l:   #2D7A50;
  --brass:      #C4922A;
  --brass-l:    #D4A843;
  --brass-d:    #9A6F18;
  --parchment:  #F5EDD8;
  --paper:      #FBF6EC;
  --linen:      #EDE0C4;
  --wood:       #1E0F05;
  --wood-m:     #3D1F0A;
  --muted:      #7A6348;
  --red:        #8C1F1F;
  --cream:      #FAF6EE;

  --shadow-warm: 0 8px 40px rgba(30,15,5,0.18);
  --shadow-lg:   0 20px 60px rgba(30,15,5,0.25);
  --border-brass: 1px solid rgba(196,146,42,0.25);
  --border-brass-strong: 1px solid rgba(196,146,42,0.5);
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; font-size:16px; }
body {
  background: var(--paper);
  color: var(--wood);
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── TYPOGRAPHY ────────────────────────────────────────────── */
.serif { font-family: 'Playfair Display', serif; }
.italic { font-family: 'Cormorant Garamond', serif; font-style: italic; }

/* ── GRAIN TEXTURE OVERLAY ─────────────────────────────────── */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 9999;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 256px;
}

/* ── NAV ───────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; width: 100%; z-index: 200;
  background: rgba(245,237,216,0.97);  /* parchment — shows green logo */
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196,146,42,0.25);
  padding: 0 3rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 88px;
  transition: background 0.3s;
  box-shadow: 0 2px 16px rgba(30,15,5,0.08);
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem; font-weight: 700;
  color: var(--forest); text-decoration: none;
  letter-spacing: 0.01em; display: flex; align-items: center; gap: 0.8rem;
}
.nav-logo-icon {
  width: 36px; height: 36px; border: 1.5px solid var(--brass);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--brass);
}
.nav-logo span { color: var(--brass); }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  text-decoration: none; color: rgba(30,15,5,0.65);
  font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 500; transition: color 0.2s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--brass); transform: scaleX(0);
  transition: transform 0.25s; transform-origin: left;
}
.nav-links a:hover { color: var(--brass); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-right {
  display: flex; align-items: center; gap: 0.8rem;
}
.nav-reserve {
  background: var(--forest); border: 1.5px solid var(--forest);
  color: var(--parchment); padding: 0.55rem 1.4rem;
  text-decoration: none; font-size: 0.73rem; letter-spacing: 0.12em;
  text-transform: uppercase; font-weight: 600;
  transition: all 0.2s;
}
.nav-reserve:hover { background: var(--brass); border-color: var(--brass); color: var(--wood); }

/* ── HERO ──────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 88px;
  overflow: hidden;
}

/* Left — dark forest, dramatic copy */
.hero-left {
  background: var(--forest-d);
  display: flex; flex-direction: column; justify-content: center;
  padding: 8rem 6rem 8rem 5rem;
  position: relative; overflow: hidden;
}
/* Bavarian diamond trellis pattern */
.hero-left::before {
  content: '';
  position: absolute; inset: 0; opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath d='M30 0L60 30L30 60L0 30Z' fill='none' stroke='%23C4922A' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 60px 60px;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem;
}
.hero-eyebrow-line { width: 32px; height: 1px; background: var(--brass); }
.hero-eyebrow span {
  font-size: 0.68rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--brass); font-weight: 600;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.2rem, 5vw, 5.5rem);
  color: var(--parchment); line-height: 1.02;
  font-weight: 700; letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.hero h1 em { font-style: italic; color: var(--brass-l); }
.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-style: italic; font-weight: 300;
  color: rgba(245,237,216,0.5); margin-bottom: 2rem; line-height: 1.5;
}
.hero-rule {
  display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem;
}
.hero-rule-line { flex: 1; max-width: 40px; height: 1px; background: var(--brass); opacity: 0.5; }
.hero-rule-orn { color: var(--brass); font-size: 0.8rem; opacity: 0.7; }
.hero-desc {
  font-size: 0.92rem; color: rgba(245,237,216,0.45);
  max-width: 420px; line-height: 1.9; margin-bottom: 3rem;
}
.hero-cta { display: flex; gap: 1.2rem; align-items: center; flex-wrap: wrap; }
.btn-brass {
  background: var(--brass); color: var(--wood);
  padding: 0.95rem 2.2rem; text-decoration: none;
  font-size: 0.77rem; letter-spacing: 0.15em; text-transform: uppercase;
  font-weight: 700; transition: all 0.2s; display: inline-block;
  position: relative; overflow: hidden;
}
.btn-brass::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.15);
  transform: translateX(-100%) skewX(-15deg); transition: transform 0.35s;
}
.btn-brass:hover::before { transform: translateX(100%) skewX(-15deg); }
.btn-brass:hover { background: var(--brass-l); }
.btn-ghost-w {
  color: rgba(245,237,216,0.55); text-decoration: none;
  font-size: 0.77rem; letter-spacing: 0.15em; text-transform: uppercase;
  font-weight: 500; display: flex; align-items: center; gap: 0.6rem;
  transition: color 0.2s;
}
.btn-ghost-w span { font-size: 1rem; transition: transform 0.2s; }
.btn-ghost-w:hover { color: var(--brass-l); }
.btn-ghost-w:hover span { transform: translateX(4px); }

/* Hero badges */
.hero-badges {
  display: flex; gap: 1.5rem; margin-top: 3rem;
  padding-top: 2rem; border-top: 1px solid rgba(196,146,42,0.15);
}
.hero-badge-item { text-align: center; }
.hero-badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700; color: var(--brass); line-height: 1; display: block;
}
.hero-badge-label {
  font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(245,237,216,0.3); display: block; margin-top: 0.2rem;
}

/* Right — rich image mosaic */
.hero-right {
  position: relative; overflow: hidden;
  background: var(--forest);
}
.hero-img-main {
  width: 100%; height: 100%; object-fit: cover; opacity: 0.75;
}
/* Food mosaic when no real image — CSS generated panels */
.hero-mosaic {
  display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr;
  height: 100%; gap: 3px;
}
.mosaic-panel {
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.mosaic-panel::before {
  content: ''; position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.6s ease;
}
.mosaic-panel:hover::before { transform: scale(1.05); }
.mosaic-panel .dish-name {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 0.8rem 1rem;
  background: linear-gradient(to top, rgba(22,63,40,0.95), transparent);
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem; font-style: italic; color: var(--parchment);
  font-weight: 400; z-index: 2;
}
/* Each panel uses a distinct food photography gradient */
.mp1::before { background: linear-gradient(145deg, #2d1810 0%, #8B4513 40%, #3d2010 100%); }
.mp2::before { background: linear-gradient(145deg, #1a2a18 0%, #2d5a20 50%, #1a3015 100%); }
.mp3::before { background: linear-gradient(145deg, #251510 0%, #6b3520 50%, #1a0f08 100%); }
.mp4::before { background: linear-gradient(145deg, #1c1c10 0%, #4a4215 50%, #252010 100%); }
.mp1 { grid-column: span 2; }  /* Schnitzel takes full width top */
.mosaic-icon { font-size: 3.5rem; opacity: 0.2; z-index: 1; position: relative; }
.mp1 .mosaic-icon { font-size: 5rem; }

/* Decorative year stamp */
.hero-year-stamp {
  position: absolute; bottom: 2rem; right: 2rem; z-index: 10;
  width: 90px; height: 90px;
  border: 1.5px solid rgba(196,146,42,0.4); border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: rgba(22,63,40,0.6); backdrop-filter: blur(4px);
}
.hero-year-stamp .yr-est { font-size: 0.5rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--brass); opacity: 0.7; }
.hero-year-stamp .yr { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; color: var(--parchment); line-height: 1; }
.hero-year-stamp .yr-city { font-size: 0.5rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(245,237,216,0.3); }

/* ── SHARED SECTION STYLES ─────────────────────────────────── */
.section-pad { padding: 9rem 5rem; }
.section-pad-sm { padding: 7rem 5rem; }

.eyebrow-row {
  display: flex; align-items: center; justify-content: center; gap: 1.2rem;
  margin-bottom: 1.2rem;
}
.eyebrow-row.left { justify-content: flex-start; }
.eyebrow-line { width: 28px; height: 1px; background: var(--brass); flex-shrink: 0; }
.eyebrow-text {
  font-size: 0.65rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--brass); font-weight: 700;
}
.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700; line-height: 1.06;
  color: var(--wood); letter-spacing: -0.01em;
}
.section-heading em { color: var(--forest); font-style: italic; }
.section-heading.inv { color: var(--parchment); }
.section-heading.inv em { color: var(--brass-l); }
.section-sub {
  margin-top: 1rem; font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-style: italic; font-weight: 300;
  color: var(--muted); max-width: 480px; margin-inline: auto;
}
.section-sub.inv { color: rgba(245,237,216,0.45); }
.section-hd-center { text-align: center; margin-bottom: 4rem; }

/* ── SPECIALS SECTION ─────────────────────────────────────── */
.specials-section { background: var(--wood); padding: 7rem 4rem; }

/* Empty state — shown before agent runs */
.specials-empty {
  border: 1px solid rgba(196,146,42,0.15);
  padding: 5rem 3rem; text-align: center;
}
.specials-empty .empty-icon { font-size: 3rem; opacity: 0.2; margin-bottom: 1.5rem; display: block; }
.specials-empty p { color: rgba(245,237,216,0.3); font-size: 0.88rem; }
.specials-empty .run-agent-hint {
  display: inline-block; margin-top: 1.5rem;
  border: 1px solid rgba(196,146,42,0.3); color: var(--brass);
  padding: 0.6rem 1.4rem; font-size: 0.75rem; letter-spacing: 0.12em;
  text-transform: uppercase; text-decoration: none;
}

/* Specials grid — rich dark cards */
.specials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  height: 540px;
  padding: 0 5rem;
}
.special-card {
  position: relative; overflow: hidden; cursor: default;
  transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
  height: 460px;
}
.special-card.featured {
  grid-row: span 1;
}
.special-card:hover { z-index: 2; }

/* Rich food photography backgrounds */
.sc-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.6s ease;
}
.special-card:hover .sc-bg { transform: scale(1.06); }
.sc-bg-schnitzel {
  background: linear-gradient(145deg, #3d2010 0%, #8B4513 30%, #C47A30 55%, #4a2510 100%);
}
.sc-bg-bier {
  background: linear-gradient(145deg, #1a2a10 0%, #8B7355 40%, #C49A40 60%, #2a1a08 100%);
}
.sc-bg-brunch {
  background: linear-gradient(145deg, #251510 0%, #6b3520 40%, #C4922A 60%, #1a0f08 100%);
}
.sc-bg-dessert {
  background: linear-gradient(160deg, #1c1010 0%, #4a1515 40%, #8B2020 65%, #1a0808 100%);
}
/* Texture dots overlay */
.sc-bg::after {
  content: ''; position: absolute; inset: 0; opacity: 0.15;
  background-image: radial-gradient(circle, rgba(255,255,255,0.4) 1px, transparent 1px);
  background-size: 20px 20px;
}
.sc-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.sc-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(16,8,3,0.98) 0%,
    rgba(16,8,3,0.85) 45%,
    rgba(16,8,3,0.3) 75%,
    transparent 100%
  );
}
.sc-top {
  position: absolute; top: 1.2rem; right: 1.2rem; z-index: 3;
  display: flex; flex-direction: column; align-items: flex-end; gap: 0.4rem;
}
.sc-badge {
  background: rgba(196,146,42,0.15); border: 1px solid rgba(196,146,42,0.4);
  color: var(--brass-l); font-size: 0.56rem; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 0.22rem 0.65rem;
  backdrop-filter: blur(4px);
}
.sc-content {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 3; padding: 2.2rem;
}
.sc-tag {
  display: inline-block; background: var(--brass); color: var(--wood-m);
  font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 700; padding: 0.28rem 0.8rem; margin-bottom: 0.9rem;
}
.sc-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; color: var(--parchment); font-weight: 700;
  line-height: 1.15; margin-bottom: 0.6rem;
}
.special-card.featured .sc-name { font-size: 2.2rem; }
.sc-desc { font-size: 0.83rem; color: rgba(245,237,216,0.6); margin-bottom: 1.2rem; line-height: 1.65; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.sc-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; color: var(--brass-l); font-weight: 600; letter-spacing: 0.02em;
}
.sc-avail { font-size: 0.67rem; color: rgba(245,237,216,0.28); margin-top: 0.3rem; letter-spacing: 0.05em; }

/* ── ABOUT / HERITAGE SECTION ─────────────────────────────── */
.heritage-section {
  background: var(--parchment);
  padding: 0;
  display: grid; grid-template-columns: 1fr 1fr;
}
.heritage-image {
  position: relative; min-height: 620px; overflow: hidden;
  background: var(--forest);
}
.heritage-img-cover {
  width: 100%; height: 100%; object-fit: cover; opacity: 0.6;
  position: absolute; inset: 0;
}
/* Alpine landscape CSS painting */
.heritage-img-scene {
  width: 100%; height: 100%;
  background:
    linear-gradient(to bottom,
      #1a3a28 0%,
      #245c38 25%,
      #1e4830 45%,
      #2d6b40 55%,
      #3d8a52 65%,
      #163F28 80%,
      #0f2a1a 100%
    );
  display: flex; align-items: center; justify-content: center;
}
/* Mountains using clip-path */
.heritage-mountains {
  position: absolute; bottom: 0; left: 0; right: 0; height: 65%;
}
.mountain {
  position: absolute; bottom: 0;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}
.mountain-1 { left: -5%; width: 50%; height: 85%; background: #1a3d26; }
.mountain-2 { left: 15%; width: 45%; height: 100%; background: #152e1c; }
.mountain-3 { right: -5%; width: 55%; height: 80%; background: #1e4830; }
.mountain-snow { background: linear-gradient(to bottom, #e8e0d0 0%, #c8bca8 30%, transparent 60%); }
.heritage-frame {
  position: absolute; inset: 2rem;
  border: 1px solid rgba(196,146,42,0.3); pointer-events: none;
}
.heritage-text-block {
  position: absolute; bottom: 3rem; left: 3rem; right: 3rem;
  background: rgba(22,63,40,0.85); backdrop-filter: blur(8px);
  border: 1px solid rgba(196,146,42,0.25); padding: 2rem;
}
.heritage-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; font-style: italic; font-weight: 300;
  color: var(--parchment); line-height: 1.7; margin-bottom: 0.8rem;
}
.heritage-attr { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--brass); }

.heritage-content { padding: 6rem 5rem; display: flex; flex-direction: column; justify-content: center; }
.heritage-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700; line-height: 1.08; color: var(--wood);
  margin: 1.2rem 0 1.8rem;
}
.heritage-content h2 em { color: var(--forest); font-style: italic; }
.heritage-content p { color: var(--muted); font-size: 0.94rem; line-height: 1.85; margin-bottom: 1.1rem; }
.heritage-facts {
  display: flex; gap: 0; margin-top: 2.5rem;
  border: 1px solid rgba(196,146,42,0.2);
}
.fact { flex: 1; padding: 1.2rem 1rem; text-align: center; border-right: 1px solid rgba(196,146,42,0.2); }
.fact:last-child { border-right: none; }
.fact-n { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; color: var(--forest); line-height: 1; display: block; }
.fact-l { font-size: 0.63rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-top: 0.2rem; display: block; }

/* ── MENU SECTION ─────────────────────────────────────────── */
.menu-section { background: var(--linen); padding: 7rem 4rem; }

.menu-tabs-row { display: flex; gap: 0; margin-bottom: 0; }
.menu-tab {
  padding: 0.85rem 2.2rem; cursor: pointer; border: none;
  background: rgba(30,15,5,0.06);
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 500; color: var(--muted);
  border-bottom: 3px solid transparent;
  border-right: 1px solid rgba(196,146,42,0.12);
  transition: all 0.2s; outline: none;
}
.menu-tab:last-child { border-right: none; }
.menu-tab.active {
  background: var(--paper); color: var(--forest);
  border-bottom-color: var(--forest);
}
.menu-tab:hover:not(.active) { color: var(--wood); background: rgba(30,15,5,0.1); }
.menu-body { background: var(--paper); border: 1px solid rgba(196,146,42,0.2); border-top: none; }
.menu-items { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.menu-item {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 1.5rem 2rem; gap: 1.5rem;
  border-bottom: 1px solid rgba(196,146,42,0.1);
  transition: background 0.2s;
}
.menu-item:hover { background: rgba(32,96,61,0.03); }
.menu-item:nth-child(odd) { border-right: 1px solid rgba(196,146,42,0.1); }
.mi-name { font-family: 'Cormorant Garamond', serif; font-size: 1.12rem; font-weight: 600; color: var(--wood); line-height: 1.3; }
.mi-desc { font-size: 0.78rem; color: var(--muted); margin-top: 0.2rem; line-height: 1.5; }
.mi-allergens { font-size: 0.68rem; color: rgba(122,99,72,0.5); margin-top: 0.3rem; font-style: italic; }
.mi-price { font-family: 'Cormorant Garamond', serif; font-size: 1rem; color: var(--brass); font-weight: 600; white-space: nowrap; flex-shrink: 0; padding-top: 0.1rem; }

/* ── EVENTS ───────────────────────────────────────────────── */
.events-section { background: var(--forest-d); padding: 7rem 4rem; }
.events-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: rgba(196,146,42,0.08); margin-top: 4rem; }
.event-card {
  background: rgba(245,237,216,0.03);
  padding: 2.5rem; border-left: 3px solid transparent;
  transition: all 0.3s;
}
.event-card:hover { background: rgba(245,237,216,0.06); border-left-color: var(--brass); }
.event-date-block {
  display: flex; align-items: baseline; gap: 0.5rem; margin-bottom: 1.8rem;
}
.event-day { font-family: 'Playfair Display', serif; font-size: 3.5rem; font-weight: 700; color: var(--brass); line-height: 1; }
.event-month-yr { display: flex; flex-direction: column; }
.event-month { font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(245,237,216,0.45); font-weight: 700; }
.event-year { font-size: 0.65rem; color: rgba(245,237,216,0.18); }
.event-name { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--parchment); margin-bottom: 0.7rem; line-height: 1.3; }
.event-desc { font-size: 0.82rem; color: rgba(245,237,216,0.42); line-height: 1.7; }
.event-time { display: flex; align-items: center; gap: 0.5rem; font-size: 0.7rem; color: var(--brass); margin-top: 1.5rem; letter-spacing: 0.12em; text-transform: uppercase; }
.event-time::before { content: ''; width: 16px; height: 1px; background: var(--brass); display: inline-block; }
.events-empty { border: 1px solid rgba(196,146,42,0.12); padding: 3rem; text-align: center; color: rgba(245,237,216,0.2); font-size: 0.85rem; }

/* ── OFFER BANNER ─────────────────────────────────────────── */


/* ── STORIES / BLOG ───────────────────────────────────────── */
.stories-section { background: var(--paper); padding: 7rem 4rem; }
.stories-grid { display: grid; grid-template-columns: 5fr 3fr 3fr; gap: 16px; padding: 0 5rem; }
.story-card {
  background: var(--parchment); overflow: hidden;
  text-decoration: none; color: inherit; display: flex; flex-direction: column;
  transition: transform 0.3s; position: relative;
}
.story-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-warm); }
.story-img {
  overflow: hidden; position: relative;
  background: var(--forest);
}
.story-img-h-lg { height: 320px; }
.story-img-h-sm { height: 200px; }
.story-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.story-card:hover .story-img img { transform: scale(1.05); }
.story-img-ph {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem; opacity: 0.1;
}
.story-img-ph.large { font-size: 5rem; }
/* Rich image gradient overlay */
.story-img::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 40%;
  background: linear-gradient(to top, rgba(22,63,40,0.4), transparent);
}
.story-body { padding: 1.8rem; flex: 1; }
.story-cat {
  font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--forest); font-weight: 700; margin-bottom: 0.7rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.story-cat::before { content: ''; width: 18px; height: 1px; background: var(--forest); display: inline-block; }
.story-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 700; line-height: 1.35;
  color: var(--wood); margin-bottom: 0.6rem;
}
.story-card:first-child .story-title { font-size: 1.6rem; }
.story-excerpt { font-size: 0.82rem; color: var(--muted); line-height: 1.65; }
.story-meta { font-size: 0.68rem; color: rgba(122,99,72,0.45); margin-top: 1rem; }

/* ── LOCATION ─────────────────────────────────────────────── */
.location-section { background: var(--linen); display: grid; grid-template-columns: 1fr 1fr; }
.location-info { padding: 6rem 4rem; }
.location-title { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--wood); margin: 1.2rem 0 2.5rem; }
.loc-item { display: flex; gap: 1.2rem; margin-bottom: 1.6rem; align-items: flex-start; }
.loc-icon-wrap {
  width: 40px; height: 40px; flex-shrink: 0;
  border: 1px solid rgba(196,146,42,0.3);
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
  background: var(--paper); margin-top: 0.05rem;
}
.loc-label { font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--forest); font-weight: 700; margin-bottom: 0.25rem; display: block; }
.loc-val { font-size: 0.9rem; color: var(--muted); line-height: 1.65; }
.loc-reserve { display: inline-block; margin-top: 2rem; background: var(--forest); color: var(--parchment); padding: 1rem 2.2rem; text-decoration: none; font-size: 0.76rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; transition: background 0.2s; }
.loc-reserve:hover { background: var(--forest-l); }

/* Map panel */
.location-map-panel {
  background: var(--forest); min-height: 520px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
/* CSS map illustration */
.map-grid {
  position: absolute; inset: 0; opacity: 0.08;
  background-image:
    linear-gradient(rgba(196,146,42,0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196,146,42,0.5) 1px, transparent 1px);
  background-size: 40px 40px;
}
.map-pin {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--brass); display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; position: relative; z-index: 2;
  box-shadow: 0 0 0 12px rgba(196,146,42,0.15), 0 0 0 24px rgba(196,146,42,0.07);
  animation: map-pulse 2.5s ease-in-out infinite;
}
@keyframes map-pulse {
  0%,100% { box-shadow: 0 0 0 12px rgba(196,146,42,0.15), 0 0 0 24px rgba(196,146,42,0.07); }
  50% { box-shadow: 0 0 0 18px rgba(196,146,42,0.1), 0 0 0 36px rgba(196,146,42,0.04); }
}
.map-label {
  position: absolute; bottom: 2.5rem; left: 0; right: 0; text-align: center;
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(245,237,216,0.3);
}

/* ── FOOTER ───────────────────────────────────────────────── */
footer {
  background: var(--wood); color: rgba(245,237,216,0.4);
  padding: 5rem 4rem; border-top: 2px solid rgba(196,146,42,0.2);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3.5rem; }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.7rem; color: var(--parchment); margin-bottom: 0.5rem; display: block; }
.footer-logo span { color: var(--brass-l); }
.footer-tagline { font-size: 0.84rem; line-height: 1.8; margin-bottom: 1.5rem; }
.footer-ai { display: flex; align-items: center; gap: 0.5rem; font-size: 0.66rem; color: rgba(196,146,42,0.38); }
.footer-ai-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--brass); opacity: 0.4; animation: pulse 2s infinite; }
.footer-col-head {
  font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--brass); font-weight: 700; margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.6rem;
}
.footer-col-head::after { content: ''; flex: 1; height: 1px; background: rgba(196,146,42,0.18); }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.55rem; }
.footer-links a { color: rgba(245,237,216,0.28); text-decoration: none; font-size: 0.84rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--brass-l); }
.footer-bottom { margin-top: 4rem; padding-top: 1.5rem; border-top: 1px solid rgba(196,146,42,0.08); display: flex; justify-content: space-between; font-size: 0.7rem; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
@keyframes pulse { 0%,100%{opacity:0.2} 50%{opacity:0.7} }

/* ── ADMIN BAR ─────────────────────────────────────────────── */
.admin-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 300;
  background: rgba(22,63,40,0.97); backdrop-filter: blur(8px);
  border-top: 2px solid rgba(196,146,42,0.4);
  padding: 0.7rem 3rem; display: flex; align-items: center; justify-content: space-between;
}
.admin-status-row { display: flex; align-items: center; gap: 0.8rem; }
.admin-dot { width: 7px; height: 7px; border-radius: 50%; background: #4ade80; animation: pulse 2s infinite; }
.admin-text { font-size: 0.72rem; color: rgba(245,237,216,0.35); }
.admin-text strong { color: var(--brass-l); }
.admin-btns { display: flex; gap: 0.7rem; }
.admin-btn {
  padding: 0.42rem 1rem; font-size: 0.7rem; letter-spacing: 0.1em;
  text-transform: uppercase; font-weight: 600; cursor: pointer;
  border: 1px solid rgba(196,146,42,0.3); background: none;
  color: var(--brass-l); font-family: 'Jost', sans-serif;
  text-decoration: none; display: inline-block; transition: all 0.2s;
}
.admin-btn:hover { background: rgba(196,146,42,0.1); border-color: var(--brass); }
.admin-btn.hi { background: var(--brass); color: var(--wood); border-color: var(--brass); }
.admin-btn.hi:hover { background: var(--brass-l); }

/* ── SCROLL REVEAL ─────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { padding: 4rem 3rem 5rem; min-height: calc(100vh - 72px); }  /* tablet */
  .heritage-section { grid-template-columns: 1fr; }
  .heritage-image { min-height: 380px; }
  .location-section { grid-template-columns: 1fr; }
  .specials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  height: 540px;
  padding: 0 5rem;
}
  .special-card.featured {
  grid-row: span 1;
}
  .special-card { min-height: 380px; }
  .events-grid { grid-template-columns: 1fr; }
  .stories-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .menu-items { grid-template-columns: 1fr !important; }
  .menu-item:nth-child(odd) { border-right: none; }
  /* nav-links visible on tablet — only hide on mobile (768px) */
  .section-pad, .section-pad-sm, .specials-section, .events-section, .stories-section, .menu-section { padding: 4rem 2rem; }
  .location-info { padding: 4rem 2rem; }
  .offer-banner { flex-direction: column; align-items: flex-start; gap: 2rem; padding: 2.5rem; }
  .admin-bar { padding: 0.7rem 1.5rem; flex-wrap: wrap; gap: 0.5rem; }
}

/* ── ABOUT SECTION ─────────────────────────────────────── */
.about-section { background: var(--paper); }

/* Split row */
.about-split {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
.about-split-reverse { direction: rtl; }
.about-split-reverse > * { direction: ltr; }

.about-split-img {
  position: relative; overflow: hidden;
  background: var(--forest);
}
.about-split-img img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; transition: transform 0.5s;
}
.about-split-img:hover img { transform: scale(1.03); }
.about-split-img.img-fallback {
  background: linear-gradient(145deg, var(--forest-d) 0%, var(--forest-l) 100%);
  min-height: 400px;
}
.about-split-img-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 0.7rem 1.2rem;
  background: rgba(22,63,40,0.75); backdrop-filter: blur(4px);
  font-size: 0.72rem; color: rgba(245,237,216,0.7);
  font-style: italic; letter-spacing: 0.04em;
}

.about-split-content {
  padding: 5rem 4.5rem; display: flex; flex-direction: column; justify-content: center;
  background: var(--parchment);
}
.about-split-content p {
  color: var(--muted); font-size: 0.94rem; line-height: 1.85; margin-bottom: 1rem;
}
.about-quote {
  border-left: 3px solid var(--brass); padding-left: 1.2rem; margin: 1.5rem 0 0;
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.1rem;
  color: var(--forest); line-height: 1.65; font-weight: 400;
}

.about-list {
  list-style: none; margin: 1.2rem 0 0;
}
.about-list li {
  padding: 0.45rem 0 0.45rem 1.4rem; position: relative;
  font-size: 0.88rem; color: var(--muted); line-height: 1.5;
  border-bottom: 1px solid rgba(196,146,42,0.1);
}
.about-list li::before {
  content: '✦'; position: absolute; left: 0;
  color: var(--brass); font-size: 0.6rem; top: 0.6rem;
}

/* Impressions grid */
.about-impressions {
  background: var(--linen); padding: 5rem 4rem;
}
.impressions-header { text-align: center; margin-bottom: 2.5rem; }
.impressions-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 4px;
}
.imp-card {
  position: relative; overflow: hidden; background: var(--forest);
}
.imp-card.imp-large { grid-row: span 2; }
.imp-card img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.5s;
}
.imp-card:hover img { transform: scale(1.05); }
.imp-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 0.6rem 0.9rem;
  background: linear-gradient(to top, rgba(22,63,40,0.9), transparent);
  font-size: 0.7rem; color: rgba(245,237,216,0.7); font-style: italic;
}

/* Brunch banner */
.about-brunch-banner {
  display: grid; grid-template-columns: 1fr 1.4fr;
  min-height: 420px; background: var(--forest-d);
}
.brunch-img { overflow: hidden; }
.brunch-img img { width: 100%; height: 100%; object-fit: cover; display: block; opacity: 0.85; }
.brunch-content {
  padding: 4rem 4.5rem; display: flex; flex-direction: column; justify-content: center;
}
.brunch-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700; color: var(--parchment); margin: 0.8rem 0 0.3rem;
}
.brunch-sub {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 1.2rem; color: var(--brass-l); margin-bottom: 1.2rem;
}
.brunch-desc { font-size: 0.9rem; color: rgba(245,237,216,0.5); line-height: 1.8; }

/* Responsive */
@media (max-width: 1100px) {
  .about-split { grid-template-columns: 1fr; }
  .about-split-reverse { direction: ltr; }
  .about-split-img { min-height: 300px; }
  .about-split-content { padding: 3rem 2rem; }
  .impressions-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 220px 220px; }
  .imp-card.imp-large { grid-row: span 1; }
  .about-brunch-banner { grid-template-columns: 1fr; }
  .brunch-img { min-height: 260px; }
  .brunch-content { padding: 3rem 2rem; }
  .about-impressions { padding: 3rem 2rem; }
}

/* ── ABOUT SECTION ─────────────────────────────────────────────── */
.about-section { background: var(--paper); padding: 5rem 0 5rem; }

.about-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 480px;
}
.about-row-first  { background: var(--parchment); }
.about-row-dark   { background: var(--forest-d); margin-top: 4rem; }
.about-row-brunch { background: var(--linen); height: 500px; margin-top: 4rem; }
.about-row-why    { background: var(--paper); margin-top: 4rem; }
.about-row-reverse { direction: rtl; }
.about-row-reverse > * { direction: ltr; }

.about-text {
  padding: 3rem 3.5rem;
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden;
}
.about-text h2 { margin: 0.8rem 0 1.2rem; }
.about-text p { color: var(--muted); font-size: 0.9rem; line-height: 1.8; margin-bottom: 0.8rem; }
.about-text p em { font-style: italic; color: var(--forest); font-family: 'Cormorant Garamond', serif; }

.about-facts {
  display: flex; gap: 0; margin-top: 1.5rem;
  border: 1px solid rgba(196,146,42,0.2);
}
.about-photo {
  position: relative; overflow: hidden;
  background: var(--forest);
  height: 100%;           /* fill the grid row exactly */
}
.about-photo img {
  position: absolute;     /* absolute so it fills container regardless of natural size */
  inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  display: block; transition: transform 0.6s ease;
}
.about-photo:hover img { transform: scale(1.03); }
.about-photo-caption {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  background: linear-gradient(to top, rgba(16,8,3,0.85), transparent);
  color: rgba(245,237,216,0.7); font-size: 0.72rem;
  padding: 1.5rem 1.2rem 0.8rem; letter-spacing: 0.04em;
  font-style: italic;
}

/* Beer list */
.beer-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 0; }
.beer-item {
  padding: 1rem 0; border-bottom: 1px solid rgba(196,146,42,0.12);
}
.beer-item:first-child { border-top: 1px solid rgba(196,146,42,0.12); }
.beer-name { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; color: var(--brass-l); font-weight: 600; }
.beer-desc { font-size: 0.76rem; color: rgba(245,237,216,0.35); margin-top: 0.1rem; letter-spacing: 0.04em; }

/* Brunch detail strip */
.brunch-detail {
  display: flex; align-items: center; gap: 0.8rem; flex-wrap: wrap;
  margin-top: 2rem; padding: 1rem 1.2rem;
  background: rgba(196,146,42,0.08); border-left: 3px solid var(--brass);
  font-size: 0.8rem; color: var(--muted); letter-spacing: 0.05em;
}
.brunch-dot { color: var(--brass); }

/* Photo pair for brunch — portrait images side by side */
.about-photo-pair {
  display: grid; grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  overflow: hidden; height: 100%;
}
.photo-pair-main, .photo-pair-side {
  overflow: hidden; position: relative; height: 100%;
}
.photo-pair-main img, .photo-pair-side img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  object-position: center top; /* crop from top for portrait — shows food/subject */
  display: block; transition: transform 0.6s ease;
}
.photo-pair-main:hover img, .photo-pair-side:hover img { transform: scale(1.04); }
.photo-pair-side { border-left: 3px solid var(--brass); border-top: none; }

/* Why list */
.about-list {
  list-style: none; margin-top: 1.5rem;
  display: flex; flex-direction: column; gap: 0;
}
.about-list li {
  padding: 0.75rem 0 0.75rem 1.5rem; border-bottom: 1px solid rgba(196,146,42,0.1);
  font-size: 0.88rem; color: var(--muted); position: relative; line-height: 1.6;
}
.about-list li::before {
  content: '✦'; position: absolute; left: 0;
  color: var(--brass); font-size: 0.55rem; top: 0.9rem;
}

/* Quote band */
.about-quote-band {
  background: var(--forest); padding: 3rem 4rem; margin-top: 4rem;
  text-align: center;
}
.about-quote-text {
  font-family: 'Cormorant Garamond', serif; font-size: 1.6rem;
  font-style: italic; color: var(--parchment);
  max-width: 700px; margin: 0 auto 1rem; line-height: 1.5;
}
.about-quote-attr {
  font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--brass); font-family: 'Jost', sans-serif;
}

/* Responsive about */
@media (max-width: 1100px) {
  .about-row { grid-template-columns: 1fr; height: auto; }
  .about-row-brunch { height: auto; }
  .about-row-reverse { direction: ltr; }
  .about-photo { height: 340px; }         /* explicit height on mobile since row is auto */
  .about-text { padding: 3rem 2rem; overflow: visible; }
  .about-photo-pair { height: 400px; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr; }
  .photo-pair-main, .photo-pair-side { height: auto; }
  .about-quote-band { padding: 3rem 2rem; }
  .about-quote-text { font-size: 1.25rem; }
}

/* ═══════════════════════════════════════════════════
   MOBILE HAMBURGER NAV
═══════════════════════════════════════════════════ */
.nav-burger {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 36px; height: 36px; background: none; border: none;
  cursor: pointer; padding: 4px;
}
.nav-burger span {
  display: block; width: 22px; height: 2px;
  background: var(--forest);
  transition: all 0.25s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════════════════
   FULL MOBILE RESPONSIVE — 768px and below
═══════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* Nav */
  .nav-burger { display: flex !important; }
  .nav-reserve { font-size: 0.65rem; padding: 0.45rem 0.8rem; letter-spacing: 0.06em; }
  nav { padding: 0 1.2rem; height: 72px; }
  .nav-logo { font-size: 1rem; }
  .nav-logo-icon { width: 26px; height: 26px; font-size: 0.7rem; }
  .nav-right { gap: 0.5rem; }
  .nav-links {
    display: flex !important;
    position: fixed; top: 64px; left: 0; right: 0;
    background: rgba(22,63,40,0.98); backdrop-filter: blur(12px);
    flex-direction: column; gap: 0; list-style: none;
    padding: 0; margin: 0;
    transform: translateY(-200%);
    transition: transform 0.3s ease;
    z-index: 199; border-bottom: 2px solid rgba(196,146,42,0.3);
    pointer-events: none;
  }
  .nav-links.open { transform: translateY(0); pointer-events: auto; }
  .nav-links li { border-bottom: 1px solid rgba(196,146,42,0.12); }
  .nav-links a { display: block; padding: 1rem 1.5rem; font-size: 0.88rem; letter-spacing: 0.08em; color: rgba(245,237,216,0.8); }
  .nav-links a::after { display: none; }

  /* Hero */
  .hero { grid-template-columns: 1fr !important; min-height: 100vh !important; padding-top: 64px !important; margin-top: 0 !important; }
  .hero-right { display: none !important; }
  .hero-left { padding: 2.5rem 1.8rem 4rem !important; min-height: auto !important; }
  .hero h1 { font-size: clamp(2.2rem, 8vw, 3rem); }
  .hero-tagline { font-size: 0.95rem; }
  .hero-desc { font-size: 0.83rem; }
  .hero-badges { gap: 0.8rem; flex-wrap: wrap; }
  .hero-badge-num { font-size: 1.5rem; }

  /* Sections */
  .section-pad, .section-pad-sm { padding: 3rem 1.2rem; }

  /* Specials */
  .specials-grid {
    grid-template-columns: 1fr !important;
    height: auto !important;
    gap: 3px;
  }
  .special-card { height: 380px !important; }
  .special-card.featured { grid-row: span 1 !important; height: 420px !important; }
  .sc-name { font-size: 1.2rem !important; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
  .sc-desc { -webkit-line-clamp: 2; font-size: 0.78rem; }
  .sc-content { padding: 1.5rem 1.8rem !important; }

  /* Menu tabs — horizontal scroll */
  .menu-tabs-row { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .menu-tabs-row::-webkit-scrollbar { display: none; }
  .menu-tab { padding: 0.7rem 1rem; font-size: 0.68rem; white-space: nowrap; flex-shrink: 0; }
  .menu-items { grid-template-columns: 1fr !important; }
  .mi-subcat-header { grid-column: span 1 !important; }
  .menu-item:nth-child(odd) { border-right: none; }
  .menu-item { padding: 1rem 1rem !important; }
  .menu-item { display: flex !important; flex-direction: column !important; gap: 0.3rem !important; }
  .mi-price { font-family: 'Cormorant Garamond', serif; font-size: 1rem; color: var(--brass); font-weight: 600; white-space: nowrap; flex-shrink: 0; padding-top: 0.1rem; }

  /* Events */
  .events-grid { grid-template-columns: 1fr; }
  .event-card { padding: 1.8rem 1.5rem; }

  /* Stories */
  .stories-grid { grid-template-columns: 1fr; }
  .story-img-h-lg { height: 240px; }
  .story-img-h-sm { height: 200px; }
  .story-card:first-child .story-title { font-size: 1.2rem; }

  /* About section */
  .about-row { grid-template-columns: 1fr !important; height: auto !important; direction: ltr !important; }
  .about-row-brunch { height: auto !important; }
  .about-photo { height: 240px; }
  .about-text { padding: 2.5rem 1.5rem; overflow: visible; }
  .about-photo-pair { grid-template-columns: 1fr 1fr; grid-template-rows: 1fr; height: 280px; }
  .about-facts { flex-wrap: wrap; }
  .fact { flex: 1; min-width: 80px; }
  .about-quote-band { padding: 2.5rem 1.5rem; }
  .about-quote-text { font-size: 1.1rem; }

  /* Location */
  .location-section { grid-template-columns: 1fr; }
  .location-info { padding: 3rem 1.5rem; }
  .location-map-panel { min-height: 300px; }
  .location-map-panel iframe { min-height: 300px !important; }

  /* Offer */

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  footer { padding: 3.5rem 1.5rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; font-size: 0.65rem; text-align: center; }
  .footer-logo { font-size: 1.3rem; }

  /* Admin bar */
  .admin-bar { padding: 0.6rem 1rem; flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .admin-btns { flex-wrap: wrap; gap: 0.4rem; }
}

/* Tablet (769–1100px) */
@media (min-width: 769px) and (max-width: 1100px) {
  .nav-burger { display: none; }
  .nav-links { display: flex !important; transform: none !important; position: static; flex-direction: row; background: none; border: none; padding: 0; }
  .nav-links li { border: none; }
  .nav-links a { padding: 0; }
  nav { padding: 0 2rem; }

  .hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { padding: 4rem 3rem; }

  .specials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  height: 540px;
  padding: 0 5rem;
}
  .special-card { height: 420px; }
  .special-card.featured {
  grid-row: span 1;
}

  .stories-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }

  .about-row { grid-template-columns: 1fr 1fr; height: 500px; }
  .about-text { padding: 3rem 3rem; }

  .location-section { grid-template-columns: 1fr; }
  .section-pad, .section-pad-sm { padding: 5rem 3rem; }
  .specials-section, .menu-section, .events-section, .stories-section { padding: 5rem 3rem; }
}

/* Footer plain list items (address lines without <a>) match link style */
.footer-links li:not(:has(a)) {
  color: rgba(245,237,216,0.28);
  font-size: 0.84rem;
  margin-bottom: 0.55rem;
  line-height: 1.5;
}
/* Brighten Fugu credit */
.footer-bottom .fugu-credit {
  opacity: 0.65 !important;
  color: rgba(245,237,216,0.65);
}
.footer-bottom .fugu-credit a {
  color: var(--brass-l);
  text-decoration: none;
  opacity: 1;
}
.footer-bottom .fugu-credit a:hover { text-decoration: underline; }

/* Menu subcategory headers */
.mi-subcat-header {
  grid-column: span 2;
  font-family: "Cormorant Garamond", serif;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brass);
  padding: 1.2rem 1.5rem 0.4rem;
  border-top: 1px solid rgba(196,146,42,0.15);
  margin-top: 0.5rem;
}
.mi-subcat-header:first-child { border-top: none; margin-top: 0; }

/* Logo image in nav */
.nav-logo-img {
  height: 68px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  display: block;
}
@media (max-width: 768px) {
  .nav-logo-img { height: 50px; max-width: 200px; }
}

/* ── OFFERS ─────────────────────────────────────────────── */
.offers-section {
  background: var(--forest); padding: 3rem 4rem;
}
.offers-grid {
  display: flex; gap: 1px; flex-wrap: wrap;
  max-width: 1100px; margin: 0 auto;
}
.offer-card {
  flex: 1; min-width: 240px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(196,146,42,0.25);
  padding: 1.4rem 1.8rem;
  transition: background 0.2s;
}
.offer-card:hover { background: rgba(255,255,255,0.08); }
.offer-card-top {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 0.6rem;
}
.offer-card-tag {
  font-size: 0.58rem; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 700; color: var(--wood);
  background: var(--brass); padding: 0.18rem 0.55rem;
}
.offer-card-expiry {
  font-size: 0.68rem; color: rgba(245,237,216,0.35); letter-spacing: 0.05em;
}
.offer-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-weight: 700;
  color: var(--parchment); line-height: 1.2; margin-bottom: 0.4rem;
}
.offer-card-desc {
  font-size: 0.78rem; color: rgba(245,237,216,0.5); line-height: 1.6;
  margin-bottom: 0.7rem;
}
.offer-card-code {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 700; letter-spacing: 0.2em;
  color: var(--brass-l); border: 1px dashed rgba(196,146,42,0.4);
  padding: 0.3rem 0.8rem; margin-top: 0.3rem;
}
@media (max-width: 768px) {
  .offers-section { padding: 2rem 1.2rem; }
  .offer-card { min-width: 100%; }
}

/* ── ABOUT SIMPLE ──────────────────────────────────────────── */
.about-simple {
  background: var(--parchment);
  padding: 7rem 5rem;
}
.about-simple-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.about-simple-text h2 { margin: 1rem 0 1.5rem; }
.about-simple-text p {
  color: var(--muted); font-size: 0.92rem;
  line-height: 1.85; margin-bottom: 1rem;
}
.about-simple-text p em { color: var(--forest); font-style: italic; font-family: 'Cormorant Garamond', serif; }
.about-simple-facts {
  display: flex; gap: 0; margin-top: 2rem;
  border: 1px solid rgba(196,146,42,0.2);
}
.asf-item {
  flex: 1; padding: 1rem; text-align: center;
  border-right: 1px solid rgba(196,146,42,0.2);
}
.asf-item:last-child { border-right: none; }
.asf-n { display: block; font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 700; color: var(--forest); }
.asf-l { display: block; font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-top: 0.2rem; }

/* Photo grid */
.about-simple-photos { display: grid; grid-template-rows: 3fr 2fr; gap: 12px; height: 560px; }
.asp-main { overflow: hidden; position: relative; }
.asp-main img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; display: block; }
.asp-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.asp-sm { overflow: hidden; }
.asp-sm img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Quote strip */
.about-simple-quote {
  max-width: 1200px; margin: 4rem auto 0;
  padding-top: 2.5rem; border-top: 1px solid rgba(196,146,42,0.2);
  font-family: 'Cormorant Garamond', serif; font-size: 1.25rem;
  font-style: italic; color: var(--forest); text-align: center;
  line-height: 1.5;
}
.about-simple-quote span {
  display: block; margin-top: 0.6rem;
  font-style: normal; font-size: 0.72rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--brass); font-family: 'Jost', sans-serif;
}

/* Mobile */
@media (max-width: 900px) {
  .about-simple { padding: 4rem 1.5rem; }
  .about-simple-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-simple-photos { height: auto; grid-template-rows: 260px 200px; }
}

/* ── Mobile: full-width cards (must be last to win cascade) ── */
@media (max-width: 768px) {
  /* Cards go edge-to-edge but section headings keep padding */
  .specials-section { padding-left: 0; padding-right: 0; }
  .stories-section  { padding-left: 0; padding-right: 0; }
  .specials-section .section-hd-center { padding-left: 1.8rem; padding-right: 1.8rem; }
  .stories-section  .section-hd-center { padding-left: 1.8rem; padding-right: 1.8rem; }
  .specials-grid    { padding-left: 0; padding-right: 0; }
  .stories-grid     { padding-left: 0; padding-right: 0; }
  /* Story card text needs padding since cards are full width */
  .story-body       { padding-left: 1.8rem; padding-right: 1.8rem; }
}
