/* ==========================================================================
   Coffee Culture Arusha — style.css
   Built by WebRevive. Warm, editorial café aesthetic.
   ========================================================================== */

:root {
  /* Colours */
  --color-primary: #5E3D22;        /* coffee brown (their brand) */
  --color-primary-dark: #3F2917;   /* hover / deep espresso */
  --color-primary-light: #E8DAC7;  /* latte cream fill */
  --color-accent: #AD8A52;         /* muted antique gold (stars only) */
  --color-espresso: #2A1B10;       /* dark sections */
  --color-espresso-soft: #3A2719;
  --color-heading: #2A1B10;        /* never pure black */
  --color-text: #4A3B30;
  --color-text-light: #8A7B6E;
  --color-white: #FFFFFF;
  --color-bg: #FAF6EF;             /* warm cream */
  --color-bg-alt: #F3EADD;         /* deeper cream */
  --color-cream: #FBF8F3;
  --color-border: #E7DBCB;
  --color-overlay: rgba(28,16,8,.55);

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --nav-height: 78px;
  --max-width: 1180px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 26px;
  --radius-pill: 999px;
  --shadow-sm: 0 2px 10px rgba(42,27,16,.07);
  --shadow-md: 0 8px 30px rgba(42,27,16,.12);
  --shadow-lg: 0 20px 60px rgba(42,27,16,.18);
  --transition: .3s ease;
  --ease-out: cubic-bezier(.16,.84,.44,1);
}

/* ------------------------------ Base ------------------------------------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--color-heading);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 .5em;
  letter-spacing: -.01em;
}
h1 { font-size: clamp(2.2rem, 5.5vw, 4.1rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.75rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
p { margin: 0 0 1rem; }

a { color: var(--color-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-primary-dark); }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; }

:focus-visible {
  outline: 3px solid var(--color-primary);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ------------------------------ Layout ----------------------------------- */
.container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section--alt { background: var(--color-bg-alt); }
.section--cream { background: var(--color-cream); }
.section--dark { background: var(--color-espresso); color: #E9DDD0; }
.section--dark h2, .section--dark h3 { color: var(--color-white); }
.section--tight { padding-top: clamp(40px,6vw,70px); }

.section-head { max-width: 660px; margin: 0 auto clamp(40px,5vw,64px); text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 1rem;
}
.eyebrow::before { content: ""; display: inline-block; width: 26px; height: 1px; background: var(--color-primary); vertical-align: middle; margin-right: 10px; margin-bottom: 4px; }
.section-head .eyebrow::after { content: ""; display: inline-block; width: 26px; height: 1px; background: var(--color-primary); vertical-align: middle; margin-left: 10px; margin-bottom: 4px; }
.lead { font-size: 1.12rem; color: var(--color-text); }
.section--dark .lead { color: #D9C9B8; }

/* ------------------------------ Buttons ---------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  font-family: var(--font-body); font-weight: 600; font-size: .98rem;
  padding: 15px 30px; border-radius: var(--radius-pill);
  border: 1.5px solid transparent; cursor: pointer; text-align: center;
  transition: transform var(--transition), background var(--transition), color var(--transition), box-shadow var(--transition);
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--color-primary); color: #fff; box-shadow: 0 6px 18px rgba(94,61,34,.30); }
.btn-primary:hover { background: var(--color-primary-dark); color: #fff; box-shadow: 0 10px 26px rgba(94,61,34,.4); }
.btn-outline { background: transparent; color: var(--color-heading); border-color: var(--color-heading); }
.btn-outline:hover { background: var(--color-heading); color: #fff; }
.btn-light { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.5); backdrop-filter: blur(4px); }
.btn-light:hover { background: #fff; color: var(--color-espresso); }
.btn-ghost { background: #fff; color: var(--color-heading); border-color: var(--color-border); box-shadow: var(--shadow-sm); }
.btn-ghost:hover { border-color: var(--color-primary); color: var(--color-primary); }
.btn svg { width: 18px; height: 18px; }

/* ------------------------------ Navbar ----------------------------------- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-height);
  display: flex; align-items: center;
  transition: background var(--transition), box-shadow var(--transition), height var(--transition);
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { height: 42px; width: auto; transition: var(--transition); }
.nav-logo .logo-on-light { display: none; }
.navbar.transparent .nav-logo .logo-on-dark { display: block; }
.navbar.transparent .nav-logo .logo-on-light { display: none; }
.navbar.solid .nav-logo .logo-on-dark { display: none; }
.navbar.solid .nav-logo .logo-on-light { display: block; }
.navbar.solid .nav-logo img { height: 38px; }
.nav-logo .wordmark {
  font-family: var(--font-heading); font-weight: 700; font-size: 1.32rem;
  color: var(--color-heading); letter-spacing: .01em; line-height: 1;
}
.nav-links { display: flex; align-items: center; gap: 6px; list-style: none; }
.nav-links a {
  font-weight: 500; font-size: .96rem; color: var(--color-heading);
  padding: 10px 16px; border-radius: var(--radius-pill); position: relative;
}
.nav-links a:not(.btn)::after {
  content: ""; position: absolute; left: 16px; right: 16px; bottom: 4px; height: 2px;
  background: var(--color-primary); transform: scaleX(0); transform-origin: left; transition: transform var(--transition);
}
.nav-links a:not(.btn):hover::after,
.nav-links a.active:not(.btn)::after { transform: scaleX(1); }
.nav-links a.active:not(.btn) { color: var(--color-primary); }
.nav-cta { margin-left: 10px; padding: 11px 24px !important; }

/* Transparent over hero (home) */
.navbar.transparent { background: transparent; }
.navbar.transparent::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: linear-gradient(to bottom, rgba(28,16,8,.5), rgba(28,16,8,0));
}
.navbar.transparent .nav-links a { color: #fff; }
.navbar.transparent .nav-logo .wordmark { color: #fff; }
.navbar.transparent .nav-links a, .navbar.transparent .nav-logo .wordmark { text-shadow: 0 1px 10px rgba(0,0,0,.35); }
.navbar.transparent .nav-cta { color: #fff; border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.12); text-shadow: none; }
.navbar.transparent .nav-cta:hover { background: #fff; color: var(--color-espresso); }
.navbar.transparent .hamburger span { background: #fff; }

/* Solid (scrolled / inner pages) */
.navbar.solid {
  background: rgba(251,248,243,.94);
  backdrop-filter: saturate(140%) blur(10px);
  box-shadow: 0 1px 0 var(--color-border), var(--shadow-sm);
  height: 66px;
}
.navbar.solid .nav-links a { color: var(--color-heading); }
.navbar.solid .nav-logo .wordmark { color: var(--color-heading); }
.navbar.solid .nav-links a.nav-cta { background: var(--color-primary); color: #fff; border-color: transparent; }
.navbar.solid .nav-links a.nav-cta:hover { background: var(--color-primary-dark); color: #fff; }
.navbar.solid .hamburger span { background: var(--color-heading); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; z-index: 1101; }
.hamburger span { width: 26px; height: 2px; background: var(--color-heading); border-radius: 2px; transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ------------------------------ Hero ------------------------------------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; color: #fff; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 38%; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(28,16,8,.55) 0%, rgba(28,16,8,.12) 32%, rgba(28,16,8,.35) 64%, rgba(28,16,8,.86) 100%);
}
.hero-inner { padding-bottom: clamp(56px, 9vw, 110px); padding-top: 120px; max-width: 820px; }
.hero .eyebrow { color: #F0D9C4; }
.hero .eyebrow::before { background: #F0D9C4; }
.hero h1 { color: #fff; font-size: clamp(1.9rem, 3.6vw, 3.05rem); line-height: 1.14; margin-bottom: .55em; text-shadow: 0 2px 30px rgba(0,0,0,.4); }
.hero-sub { font-size: clamp(1.05rem, 1.8vw, 1.3rem); color: #F2E7DC; max-width: 560px; margin-bottom: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: 2.2rem; font-size: .95rem; color: #EADFD2; }
.hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta svg { width: 17px; height: 17px; opacity: .85; }
.scroll-cue { position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%); z-index: 1; opacity: .8; animation: bob 2.4s ease-in-out infinite; }
.scroll-cue svg { width: 26px; height: 26px; color: #fff; }
@keyframes bob { 0%,100%{ transform: translateX(-50%) translateY(0);} 50%{ transform: translateX(-50%) translateY(8px);} }

/* ------------------------------ Intro ------------------------------------ */
.intro-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(36px,6vw,80px); align-items: center; }
.intro-text h2 { margin-bottom: .6em; }
.intro-stats { display: flex; gap: 36px; margin-top: 2rem; flex-wrap: wrap; }
.intro-stat .num { font-family: var(--font-heading); font-size: 2.4rem; color: var(--color-primary); line-height: 1; }
.intro-stat .lbl { font-size: .85rem; color: var(--color-text-light); letter-spacing: .02em; }
.intro-media { position: relative; }
.intro-media img { border-radius: var(--radius-md); box-shadow: var(--shadow-md); width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.intro-badge {
  position: absolute; bottom: -22px; left: -22px; background: var(--color-espresso); color: #fff;
  padding: 18px 24px; border-radius: var(--radius-md); box-shadow: var(--shadow-lg); text-align: center; max-width: 200px;
}
.intro-badge .stars { color: var(--color-accent); letter-spacing: 2px; font-size: .95rem; }
.intro-badge strong { font-family: var(--font-heading); font-size: 1.5rem; display: block; }
.intro-badge small { color: #C9B8A8; font-size: .78rem; }

/* ------------------------------ Signature cards -------------------------- */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.card {
  background: #fff; border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--color-border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card-img { aspect-ratio: 1/1; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease-out); }
.card:hover .card-img img { transform: scale(1.06); }
.card-body { padding: 22px 22px 26px; }
.card-body h3 { margin-bottom: .35em; }
.card-body p { font-size: .92rem; color: var(--color-text-light); margin: 0; }

/* ------------------------------ Feature band ----------------------------- */
.band { position: relative; color: #fff; overflow: hidden; }
.band-bg { position: absolute; inset: 0; z-index: -2; }
.band-bg img { width: 100%; height: 100%; object-fit: cover; }
.band::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(100deg, rgba(28,16,8,.9) 0%, rgba(28,16,8,.6) 55%, rgba(28,16,8,.25) 100%); }
.band-inner { max-width: 540px; padding: clamp(70px,10vw,130px) 0; }
.band-inner h2 { color: #fff; }
.band-inner p { color: #EADFD2; }

/* ------------------------------ Menu teaser ------------------------------ */
.teaser-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-bottom: 40px; }
.teaser-cat {
  display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center;
  padding: 30px 16px; background: #fff; border: 1px solid var(--color-border);
  border-radius: var(--radius-md); transition: var(--transition); color: var(--color-heading);
}
.teaser-cat:hover { border-color: var(--color-primary); transform: translateY(-4px); box-shadow: var(--shadow-sm); color: var(--color-primary); }
.teaser-cat svg { width: 34px; height: 34px; color: var(--color-primary); }
.teaser-cat strong { font-family: var(--font-heading); font-size: 1.15rem; }
.teaser-cat span { font-size: .82rem; color: var(--color-text-light); }
.teaser-cat:hover span { color: var(--color-text-light); }

/* ------------------------------ Gallery ---------------------------------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 14px; }
.gallery figure { margin: 0; overflow: hidden; border-radius: var(--radius-sm); cursor: pointer; position: relative; background: var(--color-bg-alt); }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease-out); }
.gallery figure:hover img { transform: scale(1.07); }
.gallery figure::after { content: ""; position: absolute; inset: 0; background: rgba(28,16,8,0); transition: background var(--transition); }
.gallery figure:hover::after { background: rgba(28,16,8,.18); }
.gallery .tall { grid-row: span 2; }
.gallery .wide { grid-column: span 2; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(20,12,6,.94); z-index: 2000; display: none; align-items: center; justify-content: center; padding: 30px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: var(--radius-sm); box-shadow: var(--shadow-lg); }
.lightbox-close, .lightbox-nav { position: absolute; background: rgba(255,255,255,.12); border: 0; color: #fff; cursor: pointer; border-radius: 50%; width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; transition: background var(--transition); }
.lightbox-close:hover, .lightbox-nav:hover { background: rgba(255,255,255,.28); }
.lightbox-close { top: 24px; right: 24px; font-size: 26px; }
.lightbox-nav { top: 50%; transform: translateY(-50%); }
.lightbox-nav.prev { left: 18px; } .lightbox-nav.next { right: 18px; }
.lightbox-nav svg { width: 24px; height: 24px; }

/* ------------------------------ Reviews ---------------------------------- */
.reviews-head { display: flex; flex-direction: column; align-items: center; gap: 8px; margin-bottom: 50px; text-align: center; }
.rating-badge { display: inline-flex; align-items: center; gap: 12px; background: #fff; border: 1px solid var(--color-border); padding: 10px 20px; border-radius: var(--radius-pill); box-shadow: var(--shadow-sm); }
.rating-badge .stars { color: var(--color-accent); letter-spacing: 2px; }
.rating-badge strong { color: var(--color-heading); }
.rating-badge span { color: var(--color-text-light); font-size: .9rem; }
.rev-italic { font-family: var(--font-heading); font-style: italic; font-weight: 400; }
.reviews { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.review {
  background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-md);
  overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.review:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.review-photo { aspect-ratio: 16/10; overflow: hidden; background: var(--color-bg-alt); }
.review-photo img { width: 100%; height: 100%; object-fit: cover; }
.review-body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 12px; }
.review-name strong { display: block; font-family: var(--font-heading); font-size: 1.12rem; color: var(--color-heading); line-height: 1.2; }
.review-name span { font-size: .8rem; color: var(--color-text-light); }
.review-body p { font-size: .98rem; color: var(--color-text); margin: 0; font-style: italic; line-height: 1.65; }
.review .stars { color: var(--color-accent); letter-spacing: 1px; font-size: .92rem; }
.reviews-foot { text-align: center; margin-top: 36px; font-family: var(--font-heading); font-style: italic; font-size: 1.15rem; color: var(--color-text-light); }
.reviews-foot a { font-style: normal; font-weight: 600; }

/* ------------------------------ Visit / Contact -------------------------- */
.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px,5vw,64px); align-items: start; }
.info-block { margin-bottom: 26px; }
.info-block h3 { font-family: var(--font-body); font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--color-primary); margin-bottom: .5em; }
.info-row { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 12px; }
.info-row svg { width: 20px; height: 20px; color: var(--color-primary); flex-shrink: 0; margin-top: 3px; }
.info-row a, .info-row span { color: var(--color-text); }
.info-row a:hover { color: var(--color-primary); }
.hours-list { list-style: none; }
.hours-list li { display: flex; justify-content: space-between; padding: 7px 0; border-bottom: 1px dashed var(--color-border); font-size: .96rem; }
.hours-list li.today { color: var(--color-primary); font-weight: 600; }
.open-pill { display: inline-flex; align-items: center; gap: 8px; font-size: .85rem; font-weight: 600; padding: 6px 14px; border-radius: var(--radius-pill); margin-bottom: 16px; }
.open-pill.open { background: #E6F4EA; color: #1E7A43; }
.open-pill.closed { background: #FBEAE6; color: #B23A1E; }
.open-pill .dot { width: 9px; height: 9px; border-radius: 50%; background: currentColor; }
.open-pill.open .dot { animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{ opacity:1; } 50%{ opacity:.35; } }

.map-wrap { position: relative; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--color-border); min-height: 380px; }
.map-wrap iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; }
.map-placeholder {
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 14px; text-align: center; padding: 28px; background: var(--color-bg-alt);
  background-image: linear-gradient(135deg, rgba(94,61,34,.10), rgba(42,27,16,.06));
}
.map-placeholder svg { width: 40px; height: 40px; color: var(--color-primary); }
.map-placeholder p { margin: 0; color: var(--color-text); font-size: .95rem; max-width: 280px; }
.map-placeholder .btns { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.map-wrap.loaded .map-placeholder { display: none; }

/* Form */
.contact-form { display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: .85rem; font-weight: 600; color: var(--color-heading); }
.field input, .field textarea, .field select {
  font-family: var(--font-body); font-size: .98rem; padding: 13px 16px;
  border: 1.5px solid var(--color-border); border-radius: var(--radius-sm);
  background: #fff; color: var(--color-text); transition: border-color var(--transition);
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--color-primary); }
.field textarea { resize: vertical; min-height: 110px; }
.field .err { color: #B23A1E; font-size: .8rem; display: none; }
.field.invalid input, .field.invalid textarea { border-color: #B23A1E; }
.field.invalid .err { display: block; }
.form-note { font-size: .82rem; color: var(--color-text-light); }
#formSuccess, #formError { padding: 18px 20px; border-radius: var(--radius-sm); }
#formSuccess { background: #E6F4EA; color: #1E7A43; border: 1px solid #BBE3C8; }
#formError { background: #FBEAE6; color: #B23A1E; border: 1px solid #F2C9BD; }

/* ------------------------------ Menu page -------------------------------- */
.menu-top { padding: calc(var(--nav-height) + 44px) 0 46px; background: var(--color-bg-alt); text-align: center; border-bottom: 1px solid var(--color-border); }
.menu-top h1 { font-size: clamp(2.2rem, 4.5vw, 3.2rem); margin-bottom: .15em; }
.menu-top p { color: var(--color-text-light); max-width: 580px; margin: 0 auto; }
.menu-top-actions { display: flex; gap: 16px; justify-content: center; align-items: center; flex-wrap: wrap; margin-top: 24px; }

.menu-nav { position: sticky; top: 66px; z-index: 500; background: rgba(251,248,243,.96); backdrop-filter: blur(8px); border-bottom: 1px solid var(--color-border); padding: 12px 0; }
.menu-nav .chips { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: thin; -webkit-overflow-scrolling: touch; padding-bottom: 2px; }
.menu-chip { white-space: nowrap; font-size: .85rem; font-weight: 500; padding: 8px 16px; border-radius: var(--radius-pill); background: #fff; border: 1px solid var(--color-border); color: var(--color-heading); }
.menu-chip:hover, .menu-chip.active { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
.menu-price-note { font-size: .85rem; color: var(--color-text-light); }

/* Grouped category cards */
.menu-group { margin-bottom: clamp(44px, 6vw, 68px); }
.menu-group-title { display: flex; align-items: center; justify-content: center; gap: 18px; max-width: 720px; margin: 0 auto 32px; font-size: clamp(1.7rem, 3.2vw, 2.4rem); }
.menu-group-title::before, .menu-group-title::after { content: ""; height: 1px; flex: 1; max-width: 110px; background: var(--color-border); }
.menu-board { column-count: 2; column-gap: 26px; }
.menu-board--row { column-count: auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: start; }
.menu-cat { break-inside: avoid; -webkit-column-break-inside: avoid; background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 26px 28px 22px; margin: 0 0 26px; box-shadow: var(--shadow-sm); overflow: hidden; }
.menu-board--row .menu-cat { margin: 0; }
.menu-cat.has-photo { padding-top: 0; }
.menu-cat-photo { margin: 0 -28px 18px; }
.menu-cat-photo img { width: 100%; height: auto; display: block; aspect-ratio: 16/9; object-fit: cover; }
.menu-cat-head { margin-bottom: 16px; border-bottom: 2px solid var(--color-primary-light); padding-bottom: 10px; }
.menu-cat-head h3 { font-size: 1.35rem; margin: 0; }
.menu-cat-note { font-size: .82rem; color: var(--color-text-light); margin: 5px 0 0; font-style: italic; }
.menu-list { list-style: none; }
.menu-item { margin-bottom: 15px; }
.menu-item:last-child { margin-bottom: 0; }
.menu-item-row { display: flex; align-items: baseline; gap: 8px; }
.menu-item-name { font-weight: 600; color: var(--color-heading); font-size: 1rem; }
.menu-leader { flex: 1; border-bottom: 1px dotted var(--color-border); transform: translateY(-4px); min-width: 12px; }
.menu-price { font-weight: 600; color: var(--color-primary); white-space: nowrap; font-variant-numeric: tabular-nums; }
.menu-item-desc { font-size: .88rem; color: var(--color-text-light); margin: 3px 0 0; line-height: 1.5; }
.menu-tag { font-size: .6rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 2px 7px; border-radius: var(--radius-pill); vertical-align: middle; margin-left: 4px; }
.tag-most { background: var(--color-primary); color: #fff; }
.tag-veg { background: #E6F4EA; color: #1E7A43; }
.tag-local { background: var(--color-primary-light); color: var(--color-primary-dark); }

/* ------------------------------ Legal / utility pages -------------------- */
.page-head { padding: calc(var(--nav-height) + 56px) 0 40px; text-align: center; background: var(--color-bg-alt); border-bottom: 1px solid var(--color-border); }
.page-head h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: .2em; }
.page-head p { color: var(--color-text-light); margin: 0; }
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { margin-top: 1.8em; font-size: 1.45rem; }
.prose h3 { margin-top: 1.3em; font-size: 1.12rem; }
.prose p, .prose li { color: var(--color-text); }
.prose ul { padding-left: 1.25em; margin-bottom: 1.1rem; list-style: disc; }
.prose li { margin-bottom: .45em; }
.prose a { text-decoration: underline; }
.prose .updated { color: var(--color-text-light); font-size: .9rem; font-style: italic; }

/* 404 */
.notfound { min-height: 80vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 120px 24px 80px; }
.notfound-inner { max-width: 520px; }
.notfound .big { font-family: var(--font-heading); font-size: clamp(5rem, 18vw, 9rem); color: var(--color-primary-light); line-height: 1; }
.notfound h1 { margin-top: -.2em; }
.notfound .btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 1.5rem; }

/* ------------------------------ FAQ -------------------------------------- */
.faq { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-q { width: 100%; background: none; border: 0; cursor: pointer; text-align: left; padding: 22px 40px 22px 0; font-family: var(--font-heading); font-size: 1.15rem; color: var(--color-heading); position: relative; }
.faq-q::after { content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%); font-size: 1.6rem; color: var(--color-primary); transition: transform var(--transition); font-family: var(--font-body); }
.faq-item.open .faq-q::after { transform: translateY(-50%) rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease-out); }
.faq-a p { padding: 0 0 22px; margin: 0; color: var(--color-text); }

/* ------------------------------ Footer ----------------------------------- */
.footer { background: var(--color-espresso); color: #C9B8A8; padding: 70px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand img { height: 64px; margin-bottom: 16px; }
.footer-brand p { font-size: .92rem; color: #B5A294; max-width: 280px; }
.footer h2 { color: #fff; font-family: var(--font-body); font-size: .82rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; margin: 0 0 18px; line-height: 1.2; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul a, .footer-contact a, .footer-contact span { color: #C9B8A8; font-size: .94rem; }
.footer ul a:hover, .footer-contact a:hover { color: #fff; }
.footer-contact .info-row svg { color: var(--color-accent); }
.social-links { display: flex; gap: 12px; margin-top: 18px; }
.social-links a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; transition: background var(--transition); }
.social-links a:hover { background: var(--color-primary); }
.social-links svg { width: 19px; height: 19px; color: #fff; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px; padding-top: 26px; font-size: .85rem; color: #9C8A7C; }
.footer-bottom a { color: #9C8A7C; }
.footer-bottom a:hover { color: #fff; }
.footer-bottom .legal-links { display: flex; gap: 18px; flex-wrap: wrap; }

/* ------------------------------ Floats ----------------------------------- */
.back-to-top { position: fixed; right: 22px; bottom: 24px; z-index: 880; width: 46px; height: 46px; border-radius: 50%; background: var(--color-espresso); color: #fff; border: 0; cursor: pointer; opacity: 0; visibility: hidden; transform: translateY(10px); transition: var(--transition); display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-md); }
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top svg { width: 20px; height: 20px; }

/* Mobile action bar */
.mobile-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 950; display: none; background: rgba(251,248,243,.97); backdrop-filter: blur(10px); border-top: 1px solid var(--color-border); padding: 8px; grid-template-columns: repeat(3,1fr); gap: 8px; box-shadow: 0 -4px 20px rgba(42,27,16,.1); }
.mobile-bar a { display: flex; flex-direction: column; align-items: center; gap: 3px; font-size: .72rem; font-weight: 600; color: var(--color-heading); padding: 8px 4px; border-radius: var(--radius-sm); }
.mobile-bar a svg { width: 20px; height: 20px; color: var(--color-primary); }
.mobile-bar a.primary { background: var(--color-primary); color: #fff; }
.mobile-bar a.primary svg { color: #fff; }

/* ------------------------------ Cookie banner ---------------------------- */
.cookie-banner { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 1500; max-width: 460px; background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-md); box-shadow: var(--shadow-lg); padding: 22px 24px; display: none; }
.cookie-banner.show { display: block; animation: slideUp .4s var(--ease-out); }
@keyframes slideUp { from { opacity:0; transform: translateY(20px); } to { opacity:1; transform: translateY(0);} }
.cookie-banner h2 { font-family: var(--font-heading); font-size: 1.2rem; margin: 0 0 8px; }
.cookie-banner p { font-size: .88rem; color: var(--color-text-light); margin: 0 0 16px; }
.cookie-banner p a { color: var(--color-primary); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-actions .btn { padding: 10px 20px; font-size: .88rem; flex: 1; min-width: 100px; }

/* ------------------------------ Demo disclaimer -------------------------- */
.demo-disclaimer { background: var(--color-espresso-soft); color: #C9B8A8; text-align: center; font-size: .8rem; padding: 12px 20px; }
.demo-disclaimer strong { color: #fff; }

/* ------------------------------ Reveal animation ------------------------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal.visible { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }

/* ------------------------------ Responsive ------------------------------- */
@media (max-width: 980px) {
  .cards { grid-template-columns: repeat(2,1fr); }
  .teaser-grid { grid-template-columns: repeat(2,1fr); }
  .reviews { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .intro-grid { grid-template-columns: 1fr; }
  .intro-media { order: -1; max-width: 460px; }
  .visit-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2,1fr); grid-auto-rows: 170px; }
  .gallery .wide { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 760px) {
  .nav-links {
    position: fixed; top: 0; right: 0; height: 100vh; width: min(80vw, 320px);
    background: var(--color-cream); flex-direction: column; align-items: stretch; justify-content: center;
    gap: 6px; padding: 80px 28px; transform: translateX(100%); transition: transform .35s var(--ease-out);
    box-shadow: var(--shadow-lg);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { color: var(--color-heading) !important; font-size: 1.1rem; padding: 14px 16px; }
  .nav-links a::after { display: none; }
  .nav-cta { margin-left: 0; text-align: center; background: var(--color-primary) !important; color: #fff !important; border-color: transparent !important; }
  .navbar.transparent .nav-cta { color: #fff !important; }
  .hamburger { display: flex; }
  .nav-overlay { position: fixed; inset: 0; background: rgba(28,16,8,.5); z-index: 1099; opacity: 0; visibility: hidden; transition: var(--transition); }
  .nav-overlay.show { opacity: 1; visibility: visible; }

  body.has-mobile-bar { padding-bottom: 68px; }
  .mobile-bar { display: grid; }
  .whatsapp-float { display: none; }
  .back-to-top { bottom: 80px; right: 16px; }

  h1 { font-size: clamp(2rem, 8vw, 2.8rem); }
  .menu-board { column-count: 1; }
  .menu-board--row { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .intro-badge { left: 50%; transform: translateX(-50%); bottom: -28px; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-brand img { margin-left: auto; margin-right: auto; }
  .footer-brand p { margin-left: auto; margin-right: auto; }
  .social-links { justify-content: center; }
  .footer .info-row { justify-content: center; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
  .menu-nav { top: 56px; }
  .hero-meta { gap: 8px 18px; }
}

@media (max-width: 420px) {
  .cards { grid-template-columns: 1fr; }
  .teaser-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
}

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

