:root {
  --olive:         #4A5E2A;
  --olive-mid:     #667A3E;
  --olive-light:   #8A9E5A;
  --beige:         #F5EDD6;
  --beige-dark:    #E0D0AA;
  --beige-mid:     #EDE0C2;
  --carob:         #5C3318;
  --carob-dark:    #3A1F08;
  --carob-light:   #7A4A28;
  --terra:         #B85C3A;
  --terra-light:   #D47A5A;
  --cream:         #FAF6EC;
  --warm-white:    #FFFDF8;
  --text-dark:     #2A1A08;
  --text-mid:      #5A3D20;
  --text-light:    #8A6A48;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  max-width: 480px;
  margin: 0 auto;
  min-height: 100vh;
  padding-top: 54px;
}

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 50%; transform: translateX(-50%);
  width: 100%; max-width: 480px; z-index: 100;
  background: rgba(250,246,236,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--beige-dark);
  padding: 11px 18px;
  height: 54px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: 'Cormorant SC', serif; font-size: 17px; font-weight: 400;
  color: var(--carob); letter-spacing: .06em; text-decoration: none;
}
.nav-logo span { color: var(--olive); }
.nav-right { display: flex; align-items: center; gap: 10px; }
.lang-switcher { display: flex; gap: 3px; }
.lang-btn {
  background: none; border: 1px solid var(--beige-dark);
  font-family: 'Jost', sans-serif; font-size: 11px; font-weight: 500;
  color: var(--text-light); cursor: pointer; padding: 4px 7px;
  border-radius: 2px; letter-spacing: .04em; transition: all .2s;
  text-decoration: none; display: inline-block;
}
.lang-btn.active { background: var(--olive); border-color: var(--olive); color: var(--warm-white); }
.nav-menu-btn {
  background: var(--terra); color: var(--warm-white); border: none;
  padding: 7px 13px; font-family: 'Jost', sans-serif; font-size: 11px; font-weight: 500;
  letter-spacing: .1em; cursor: pointer; border-radius: 2px; text-transform: uppercase;
  text-decoration: none; display: inline-block;
}

/* ── SEASON BANNER ── */
.season-banner {
  background: var(--olive); text-align: center; padding: 10px 16px;
  margin-top: 0;
}
.season-banner p {
  font-family: 'Jost', sans-serif; font-size: 10px; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.82);
  line-height: 1.8;
}

/* ── HERO ── */
.hero {
  position: relative; height: 88vh; min-height: 520px;
  background: url('/assets/img/hero.webp') center/cover no-repeat;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 40px 28px 44px; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 25%, rgba(25,12,4,.72) 100%);
}
.hero-content { position: relative; z-index: 1; }
.hero-label {
  font-family: 'Jost', sans-serif; font-size: 10px; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase;
  color: rgba(245,237,214,.7); margin-bottom: 12px;
}
.hero-title {
  font-family: 'Cormorant', serif; font-size: 58px; font-weight: 300;
  line-height: 1.02; color: var(--warm-white); margin-bottom: 6px;
}
.hero-title em { font-style: normal; color: var(--beige); }
.hero-subtitle {
  font-family: 'Cormorant', serif; font-style: italic; font-size: 18px;
  font-weight: 300; color: rgba(245,237,214,.75); margin-bottom: 32px;
}
.hero-subtitle::before { content: '— '; }
.btn-primary {
  display: inline-block;
  background: var(--terra); color: var(--warm-white); border: none;
  padding: 14px 26px; font-family: 'Jost', sans-serif; font-size: 12px; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase; cursor: pointer; border-radius: 2px;
  text-decoration: none;
}

/* ── SECTIONS ── */
.section { padding: 52px 28px; }
.section-label {
  font-family: 'Jost', sans-serif; font-size: 10px; font-weight: 500;
  letter-spacing: .24em; text-transform: uppercase; color: var(--olive); margin-bottom: 10px;
}
.section-title {
  font-family: 'Cormorant', serif; font-size: 38px; font-weight: 500;
  line-height: 1.12; color: var(--carob); margin-bottom: 18px;
}
.section-text { font-size: 15px; line-height: 1.78; color: var(--text-mid); margin-bottom: 14px; }

.poem-block {
  margin: 28px 0; padding: 24px 22px;
  border-left: 3px solid var(--olive); background: var(--beige);
}
.poem-block p {
  font-family: 'Cormorant', serif; font-style: italic;
  font-size: 17.5px; line-height: 2; color: var(--carob);
}
.poem-block cite {
  display: block; margin-top: 14px; font-family: 'Jost', sans-serif;
  font-size: 11px; letter-spacing: .08em; color: var(--text-light);
}
.divider { text-align: center; padding: 4px 0; color: var(--olive-light); font-size: 18px; letter-spacing: 10px; opacity: .4; }

/* ── HIGHLIGHTS ── */
.highlights { background: var(--beige); padding: 52px 28px; }
.highlights-list { display: flex; flex-direction: column; gap: 10px; margin-top: 26px; }
.highlight-card {
  background: var(--warm-white); border-radius: 3px; padding: 16px 20px;
  display: flex; align-items: center; gap: 18px;
}
.highlight-card svg { flex-shrink: 0; }
.highlight-card h3 {
  font-family: 'Cormorant', serif; font-size: 17px; font-weight: 500;
  color: var(--carob); margin-bottom: 4px; line-height: 1.2;
}
.highlight-card p { font-size: 12.5px; line-height: 1.6; color: var(--text-light); }



/* ── EVENTS ── */
.events-section { background: var(--beige-mid); padding-bottom: 40px; }
.events-photo {
  width: 100%;
  display: block;
  margin-bottom: 24px;
}
.event-cards { display: flex; flex-direction: column; gap: 10px; margin: 24px 0 20px; }
.event-card {
  background: var(--warm-white); border-radius: 3px; padding: 16px 20px;
  display: flex; align-items: center; gap: 18px;
}
.event-card svg { flex-shrink: 0; }
.event-card h3 {
  font-family: 'Cormorant', serif; font-size: 17px; color: var(--carob);
  font-weight: 500; line-height: 1.2; margin-bottom: 4px;
}
.event-card p { font-size: 12.5px; line-height: 1.6; color: var(--text-light); }
.events-callout {
  background: var(--olive); color: var(--warm-white); border-radius: 3px; padding: 18px 20px;
  margin-bottom: 0;
}
.events-callout p:first-child {
  font-family: 'Cormorant', serif; font-style: italic;
  font-size: 17px; line-height: 1.7; margin-bottom: 10px;
}
.events-callout p:last-child {
  font-family: 'Jost', sans-serif; font-size: 11px; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.6);
}

/* ── INFO / CONTACT ── */
.info-section { background: var(--carob); color: var(--beige); padding: 52px 28px; }
.info-section .section-title { color: var(--beige); }
.info-grid { margin-top: 28px; display: flex; flex-direction: column; gap: 22px; }
.info-item { display: flex; gap: 16px; align-items: flex-start; }
.info-icon {
  flex-shrink: 0; width: 36px; height: 36px;
  border: 1px solid rgba(245,237,214,.25); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 15px;
}
.info-item h4 {
  font-family: 'Jost', sans-serif; font-size: 10px; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase; color: var(--terra-light); margin-bottom: 4px;
}
.info-item p { font-size: 15px; line-height: 1.6; color: var(--beige); }
.info-item a { color: var(--beige); }
.qr-cta {
  margin-top: 36px; padding: 24px;
  border: 1px solid rgba(245,237,214,.18); border-radius: 3px; text-align: center;
}
.qr-cta p {
  font-family: 'Cormorant', serif; font-style: italic;
  font-size: 20px; color: var(--beige); margin-bottom: 14px;
}
.btn-primary-full {
  display: block; width: 100%; background: var(--terra); color: var(--warm-white);
  border: none; padding: 15px 26px; font-family: 'Jost', sans-serif; font-size: 12px;
  font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  cursor: pointer; border-radius: 2px; text-decoration: none; text-align: center;
}

/* ── FOOTER ── */
.footer { background: var(--carob-dark); padding: 22px 28px; text-align: center; }
.footer p { font-size: 11px; color: rgba(245,237,214,.35); letter-spacing: .06em; }

/* ══ MENU PAGE ══ */
.menu-header { background: var(--olive); padding: 86px 28px 22px; text-align: center; }
.menu-header h1 {
  font-family: 'Cormorant SC', serif; font-size: 28px; font-weight: 400;
  color: var(--warm-white); letter-spacing: .1em; margin-bottom: 5px;
}
.menu-header p { font-size: 12px; color: rgba(255,255,255,.55); letter-spacing: .09em; }

.cat-nav {
  position: sticky; top: 54px; z-index: 50;
  background: var(--cream); border-bottom: 1px solid var(--beige-dark);
  overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.cat-nav::-webkit-scrollbar { display: none; }
.cat-nav-inner { display: flex; padding: 0 8px; white-space: nowrap; }
.cat-nav-btn {
  background: none; border: none; border-bottom: 2px solid transparent;
  padding: 12px 13px; font-family: 'Jost', sans-serif; font-size: 11.5px; font-weight: 500;
  letter-spacing: .07em; color: var(--text-light); cursor: pointer; transition: all .2s;
}
.cat-nav-btn.active { color: var(--olive); border-bottom-color: var(--olive); }

.menu-category { padding: 38px 0 8px; }
.cat-header { padding: 0 28px; margin-bottom: 2px; display: flex; align-items: baseline; gap: 10px; }
.cat-title {
  font-family: 'Cormorant SC', serif; font-size: 22px; font-weight: 400;
  color: var(--carob); letter-spacing: .05em;
}
.cat-rule { margin: 12px 28px 18px; border: none; border-top: 1px solid var(--beige-dark); }

.menu-item { padding: 16px 28px; border-bottom: 1px solid var(--beige-dark); }
.menu-item:last-child { border-bottom: none; }
.item-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; margin-bottom: 4px; }
.item-name {
  font-family: 'Cormorant', serif; font-size: 18.5px; font-weight: 500;
  color: var(--carob); line-height: 1.2; flex: 1;
}
.item-badge {
  display: inline-block; padding: 2px 8px;
  background: var(--beige); color: var(--olive);
  font-size: 9.5px; font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase; border-radius: 2px; white-space: nowrap; flex-shrink: 0;
}
.item-desc { font-size: 13px; line-height: 1.68; color: var(--text-light); margin-top: 2px; }

.drink-item {
  display: flex; justify-content: space-between;
  padding: 10px 28px; border-bottom: 1px solid var(--beige-dark);
}
.drink-item:last-child { border-bottom: none; margin-bottom: 8px; }
.drink-name { font-family: 'Cormorant', serif; font-size: 16px; color: var(--text-mid); }
.drink-sub { font-size: 12px; color: var(--text-light); font-style: italic; }
.sub-section-lbl {
  padding: 32px 28px 0;
  font-family: 'Cormorant SC', serif;
  font-size: 17px;
  font-weight: 500;
  color: var(--carob);
  letter-spacing: .08em;
}
.sub-section-lbl::after {
  content: '';
  display: block;
  border-top: 1px solid var(--beige-dark);
  margin: 10px 0 0;
}

/* ── IMAGE STRIP ── */
.img-strip {
  width: 100%;
  height: 260px;
  background-size: cover;
  display: block;
}





/* ── GALLERY ── */
.gallery-section { padding: 0 0 8px; }
.gallery-header { padding: 52px 28px 24px; }
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4px;
  width: 100%;
}
.gallery-item {
  overflow: hidden;
  width: 100%;
}
.gallery-item:first-child { grid-row: 1 / 3; }
.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.gallery-item:first-child img {
  height: calc(400px + 4px);
}


/* ── PRICES ── */
.item-right {
  display: flex; align-items: center; gap: 8px; flex-shrink: 0;
}
.item-price {
  font-family: 'Jost', sans-serif; font-size: 13px; font-weight: 500;
  color: var(--olive); white-space: nowrap; flex-shrink: 0;
}

/* ── FOOD GRID (mirrors gallery, big image right) ── */
.food-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-template-rows: 200px 200px;
  gap: 4px;
  width: 100%;
}
.food-item { overflow: hidden; }
.food-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.food-item--big {
  grid-column: 2;
  grid-row: 1 / 3;
}
.food-item--big img {
  height: calc(400px + 4px);
}

/* ════════════════════════════════════════
   CONTAINER  (used on all screens)
════════════════════════════════════════ */
.container {
  width: 100%;
  padding: 0 28px;
}



/* ════════════════════════════════════════
   DESKTOP  ≥ 768px
════════════════════════════════════════ */
@media (min-width: 768px) {

  body { max-width: 1280px; margin: 0 auto; box-shadow: 0 0 40px rgba(0,0,0,.08); }

  /* NAV */
  .nav { max-width: 1280px; left: 50%; transform: translateX(-50%); padding: 0; }
  .nav-inner-wrap {
    max-width: 1200px; margin: 0 auto;
    padding: 14px 60px;
    display: flex; align-items: center; justify-content: space-between;
  }
  .nav-logo { font-size: 20px; margin-right: auto; }
  .nav-right { margin-left: 32px; }
  .lang-btn { font-size: 12px; padding: 5px 10px; }
  .nav-menu-btn { padding: 9px 20px; font-size: 12px; }

  /* SEASON BANNER */

  /* CONTAINER – max 1200px centered with padding */
  .container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 80px;
  }

  /* HERO – full bleed */
  .hero {
    height: 90vh; max-height: 800px;
    padding: 60px 0 70px;
    background-position: center 40%;
  }
  .hero-content {
    max-width: 1200px; margin: 0 auto;
    padding: 0 80px;
  }
  .hero-title { font-size: 84px; }
  .hero-subtitle { font-size: 22px; margin-bottom: 40px; }

  /* SECTIONS */
  .section { padding-top: 60px; padding-bottom: 60px; }
  .highlights { padding-top: 60px; padding-bottom: 60px; }
  .section-title { font-size: 46px; }

  /* STORY – 2 columns */
  .story-inner {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 48px; align-items: start;
  }

  /* IMG-STRIP – full bleed */
  .img-strip {
    height: 360px;
    background-position: center 35%;
  }

  /* HIGHLIGHTS – horizontal row */
  .highlights-list { flex-direction: row; gap: 16px; }
  .highlight-card {
    flex-direction: column; align-items: flex-start;
    flex: 1; padding: 24px 20px; gap: 10px;
  }

  /* GALLERY – full bleed */
  .gallery-header { padding: 52px 80px 24px; max-width: 1200px; margin: 0 auto; }
  .gallery-grid { gap: 4px; }
  .gallery-item img { height: 320px; }
  .gallery-item:first-child img { height: calc(640px + 4px); }

  /* FOOD GRID – full bleed */
  

  /* EVENTS – events photo full bleed, rest contained */
  .events-section { padding-top: 0; padding-bottom: 60px; }
  .events-photo {
    margin-bottom: 0;
  }
  .events-content { padding: 40px 80px 60px; max-width: 1200px; margin: 0 auto; }
  .event-cards { flex-direction: row; gap: 16px; margin-top: 24px; }
  .event-card { flex: 1; flex-direction: column; align-items: flex-start; gap: 10px; }

  /* CONTACT – 2 columns */
  .info-section { padding-top: 60px; padding-bottom: 60px; }
  .contact-inner {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 48px; align-items: start; margin-top: 32px;
  }
  .contact-inner .info-grid,
  .contact-inner .qr-cta { padding: 15px 0 0; max-width: none; margin: 0; }
  .qr-cta { margin-top: 0; }

  /* MENU PAGE */
  .menu-header { padding: 100px 80px 28px; max-width: 1200px; margin: 0 auto; }
  .menu-header h1 { font-size: 36px; }
  .cat-nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 80px; }
  .cat-nav-btn { font-size: 13px; padding: 14px 18px; }
  .cat-header { max-width: 1200px; margin: 0 auto; padding: 0 80px; }
  .cat-rule { max-width: 1200px; margin: 14px auto 22px; padding: 0; }
  .menu-item { max-width: 1200px; margin: 0 auto; padding: 18px 80px; }
  .item-name { font-size: 20px; }
  .item-desc { font-size: 14px; }
  .drink-item { max-width: 1200px; margin: 0 auto; padding: 12px 80px; }
  .sub-section-lbl { max-width: 1200px; margin: 0 auto; padding: 20px 80px 6px; }
  .footer { padding: 28px 80px; }
}

@media (min-width: 1100px) {
  .container { padding: 0 120px; }
  .hero-content { padding: 0 120px; }
  .gallery-header { padding-left: 120px; padding-right: 120px; }
  .events-content { padding-left: 120px; padding-right: 120px; }
  .cat-nav-inner, .cat-header, .menu-header,
  .menu-item, .drink-item, .sub-section-lbl { padding-left: 120px; padding-right: 120px; }
  .footer { padding-left: 120px; padding-right: 120px; }
}

/* ════════════════════════════════════════
   ACCESSIBILITY
════════════════════════════════════════ */

/* Skip link – visible only on focus */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--carob);
  color: var(--beige);
  padding: 8px 16px;
  border-radius: 0 0 4px 4px;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  z-index: 9999;
  transition: top .15s;
}
.skip-link:focus {
  top: 0;
}

/* Visible focus rings for keyboard navigation */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--olive);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Remove outline for mouse users */
a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
  outline: none;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}


/* ── BACK TO TOP ── */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--carob);
  color: var(--beige);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .25s, visibility .25s, transform .25s, background .2s;
  z-index: 90;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover { background: var(--carob-light); }
.back-to-top:focus-visible {
  outline: 2px solid var(--olive);
  outline-offset: 3px;
}
