/* ============================================================
   THE FASTNET — Irish Bar & Restaurant, Barcelona
   ============================================================ */

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  /* Palette primitives */
  --cream:        #FBF9F5;
  --charcoal:      #1A1A1A;
  --slate:         #4A4E54;
  --forest:        #062C1D;
  --forest-dk:     #00150B;
  --brass:         #C5A059;
  --brass-dk:      #8A6A2E;
  --star:          #B45309; /* required color if star ratings return — do not delete as "unused" */
  --white:         #fff;

  /* Semantic aliases */
  --color-text:       var(--charcoal);
  --color-text-body:  var(--slate);
  --color-label:      var(--brass-dk);

  /* Section backgrounds — semi-transparent so the wood texture shows through (hero excluded) */
  --forest-dk-a:      rgba(0,21,11,0.65);
  --wood-dark-a:      rgba(40,25,14,0.78);
  --card-dark-bg:     rgba(28,18,10,0.95);
  --brass-16:         rgba(197,160,89,0.16);

  /* White / black opacity scale */
  --white-10: rgba(255,255,255,0.10);
  --white-12: rgba(255,255,255,0.12);
  --white-25: rgba(255,255,255,0.25);
  --white-40: rgba(255,255,255,0.40);
  --white-55: rgba(255,255,255,0.55);
  --white-70: rgba(255,255,255,0.70);
  --white-85: rgba(255,255,255,0.85);
  --white-90: rgba(255,255,255,0.90);
  --forest-08: rgba(6,44,29,0.08);
  --forest-12: rgba(6,44,29,0.12);

  /* Shadows — warm tint, never flat black */
  --shadow-sm:   0 1px 4px rgba(20,15,8,0.10);
  --shadow-md:   0 4px 18px rgba(20,15,8,0.14);
  --shadow-card: 0 3px 16px rgba(20,15,8,0.12);
  --shadow-nav:  0 1px 20px rgba(20,15,8,0.10);
  --shadow-wa:   0 4px 16px rgba(37,211,102,0.40);

  /* Hero overlays — warm-tinted */
  --overlay-heavy: rgba(6,10,8,0.82);
  --overlay-mid:   rgba(8,12,9,0.52);
  --overlay-soft:  rgba(8,12,9,0.28);

  /* Hero title text-shadow — guarantees legibility over the photo
     regardless of what's underneath (bright highlights, glare) since
     the gradient overlay alone can't promise AA contrast everywhere. */
  --text-shadow-tight: 0 2px 4px rgba(0,0,0,0.55);
  --text-shadow-halo:  0 0 28px rgba(0,0,0,0.45);

  /* WhatsApp */
  --wa-green: #25d366;

  /* Touch targets */
  --touch-min: 44px;

  /* Fonts */
  --font-heading: 'Cinzel Decorative', Georgia, 'Times New Roman', serif;
  --font-label:   'Lato', -apple-system, 'Segoe UI', sans-serif;
  --font-body:    'Lato', -apple-system, 'Segoe UI', sans-serif;

  /* Spacing (8px base) */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.25rem;
  --sp-6: 1.5rem;
  --sp-8: 2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-24: 6rem;

  /* Layout */
  --container-max: 1280px;
  --container-pad: 1.25rem;
  --nav-height: 100px;

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.87, 0, 0.13, 1);
  --dur-fast: 200ms;
  --dur-base: 400ms;
  --dur-slow: 650ms;
  --stagger: 80ms;
}

@media (min-width: 768px) {
  :root {
    --container-pad: 2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================================
   FONT FACES
   ============================================================ */
@font-face {
  font-family: 'Cinzel Decorative';
  src: url('../fonts/cinzel-decorative-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lato';
  src: url('../fonts/lato-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lato';
  src: url('../fonts/lato-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: auto; }

/* Site-wide wood texture — fixed pseudo-element sits behind hero + all
   sections; hero paints over it with its own opaque photo, so it only
   shows through the semi-transparent section backgrounds below it. */
html::before {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image: url('../images/background.webp');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: -1;
  pointer-events: none;
}
body {
  margin: 0;
  background: transparent;
  color: var(--color-text-body);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

@media (max-width: 767px) {
  /* position: fixed on pseudo-elements is unreliable on iOS Safari
     (and every iOS browser, since Apple forces WebKit) — fall back to
     the texture scrolling with the page instead of staying fixed.
     This rule must come after the base `body {}` rule above so it
     wins the cascade at equal specificity. */
  html::before { display: none; }
  body {
    background-image: url('../images/background.webp');
    background-size: cover;
    background-position: center top;
    background-attachment: scroll;
    background-repeat: no-repeat;
  }
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, h5 { margin: 0; font-family: var(--font-heading); font-weight: 700; color: var(--color-text); }
p { margin: 0; }
::selection { background: var(--brass); color: var(--forest-dk); }

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

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.section {
  padding: clamp(4rem, 10vw, 8rem) 0;
  scroll-margin-top: var(--nav-height);
}

.section-header {
  max-width: 42rem;
  margin-bottom: var(--sp-12);
}
.section-header--center { margin-left: auto; margin-right: auto; text-align: center; }

.eyebrow {
  display: block;
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-label);
  margin-bottom: var(--sp-3);
}

.section-title {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

/* Focus ring — WCAG AA safe */
a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 2px solid var(--brass-dk);
  outline-offset: 2px;
}

/* ============================================================
   MOTION — SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
}
.reveal--fade { opacity: 0; transform: none; transition: opacity var(--dur-base) var(--ease-out); }
.reveal--heading { opacity: 0; transform: translateY(48px); transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out); }
.reveal--scale { opacity: 0; transform: scale(0.92); transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out); }
.reveal.is-visible,
.reveal--fade.is-visible,
.reveal--heading.is-visible,
.reveal--scale.is-visible { opacity: 1; transform: none; }

.stagger-group .reveal:nth-child(1) { transition-delay: 0ms; }
.stagger-group .reveal:nth-child(2) { transition-delay: var(--stagger); }
.stagger-group .reveal:nth-child(3) { transition-delay: calc(var(--stagger) * 2); }
.stagger-group .reveal:nth-child(4) { transition-delay: calc(var(--stagger) * 3); }
.stagger-group .reveal:nth-child(5) { transition-delay: calc(var(--stagger) * 4); }
.stagger-group .reveal:nth-child(6) { transition-delay: calc(var(--stagger) * 5); }
.stagger-group .reveal:nth-child(7) { transition-delay: calc(var(--stagger) * 6); }
.stagger-group .reveal:nth-child(8) { transition-delay: calc(var(--stagger) * 7); }

.heading-underline {
  display: block;
  width: 64px;
  height: 2px;
  background: var(--brass);
  margin-top: var(--sp-4);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 600ms var(--ease-out);
  transition-delay: 300ms;
}
.reveal--heading.is-visible + .heading-underline { transform: scaleX(1); }

/* ============================================================
   SKIP NAV
   ============================================================ */
.skip-nav {
  position: fixed;
  top: var(--sp-4);
  left: var(--sp-4);
  z-index: 200;
  background: var(--forest);
  color: var(--white);
  padding: var(--sp-3) var(--sp-6);
  border-radius: 4px;
  font-family: var(--font-label);
  font-weight: 700;
  letter-spacing: 0.04em;
  transform: translateY(-200%);
  transition: transform var(--dur-fast) var(--ease-out);
}
.skip-nav:focus { transform: translateY(0); }

/* ============================================================
   LOADING SCREEN
   ============================================================ */
#loading-screen {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: var(--forest-dk);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 500ms var(--ease-out), visibility 500ms var(--ease-out);
}
#loading-screen img { width: 120px; height: auto; animation: loading-pulse 1.4s var(--ease-in-out) infinite; }
#loading-screen.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
@keyframes loading-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(0.94); opacity: 0.7; }
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-height);
  background: transparent;
  transition: background var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
#nav.nav--scrolled {
  background: var(--forest-dk-a);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: var(--shadow-nav);
}
.nav__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__brand { display: flex; align-items: center; gap: var(--sp-2); flex-shrink: 0; }
.nav__brand img { height: 130px; width: auto; }

.nav__links {
  display: none;
  align-items: center;
  gap: clamp(1.25rem, 2.2vw, 2rem);
}
.nav__link {
  display: inline-flex;
  align-items: center;
  min-height: var(--touch-min);
  font-family: var(--font-label);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
  transition: color var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
}
#nav .nav__link { color: var(--white); }
.nav__link:hover, .nav__link:focus-visible { color: var(--brass-dk); }
#nav .nav__link:hover,
#nav .nav__link:focus-visible { color: var(--brass); }

.nav__right { display: flex; align-items: center; gap: var(--sp-4); }

.nav__lang {
  display: none;
  align-items: center;
  gap: var(--sp-1);
  background: var(--forest-08);
  border-radius: 999px;
  padding: 3px;
}
#nav .nav__lang { background: var(--white-12); }
.nav__lang .lang-btn { font-size: 0.69rem; padding: 6.5px 13px; }
.lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--slate);
  min-height: var(--touch-min);
  min-width: var(--touch-min);
  transition: background var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
}
#nav .lang-btn { color: var(--white-85); }
.lang-btn[aria-pressed="true"] { background: var(--forest); color: var(--white); }
#nav .lang-btn[aria-pressed="true"] { background: var(--white); color: var(--forest-dk); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  font-family: var(--font-label);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.9rem 1.75rem;
  min-height: var(--touch-min);
  border-radius: 4px;
  transition: transform var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
}
.btn:active { transform: scale(0.97); }
.btn--primary {
  background: var(--forest);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover { background: var(--forest-dk); box-shadow: var(--shadow-md); }
.btn--outline {
  background: transparent;
  color: var(--charcoal);
  border: 1px solid var(--forest-12);
}
.btn--outline:hover { background: var(--forest-08); }

.nav__reserve { display: none; font-size: 0.77rem; padding: 0.89rem 1.83rem; }

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: var(--touch-min);
  height: var(--touch-min);
  padding: var(--sp-2);
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  transition: transform var(--dur-fast) var(--ease-out), opacity var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
}
#nav .hamburger span { background: var(--white); }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 1100px) {
  .nav__links { display: flex; }
  .nav__lang { display: flex; }
  .nav__reserve { display: inline-flex; }
  .hamburger { display: none; }
}

/* ============================================================
   MOBILE NAV OVERLAY
   ============================================================ */
#mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: var(--forest-dk);
  display: flex;
  flex-direction: column;
  padding: var(--sp-8) var(--container-pad);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out), visibility var(--dur-base) var(--ease-out);
}
#mobile-nav[data-open="true"] { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-nav__top { display: flex; justify-content: flex-end; }
.mobile-nav__close {
  width: var(--touch-min);
  height: var(--touch-min);
  color: var(--white);
  font-size: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-nav__links {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--sp-6);
}
.mobile-nav__links a {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--cream);
}
.mobile-nav__bottom {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
  padding-top: var(--sp-8);
  border-top: 1px solid var(--white-12);
}
.mobile-nav__lang { display: flex; gap: var(--sp-2); }
.mobile-nav__lang .lang-btn { color: var(--white-85); background: var(--white-10); }
.mobile-nav__lang .lang-btn[aria-pressed="true"] { background: var(--brass); color: var(--forest-dk); }
@media (min-width: 1100px) { #mobile-nav { display: none; } }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  height: 100svh;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
#hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--overlay-heavy) 0%, var(--overlay-mid) 55%, var(--overlay-soft) 100%);
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 var(--container-pad) clamp(3rem, 8vw, 5.5rem);
  max-width: var(--container-max);
  margin: clamp(2rem, 5vw, 3rem) auto 0;
}
.hero__eyebrow {
  font-family: var(--font-label);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: var(--sp-4);
  animation: hero-rise var(--dur-base) var(--ease-out) 200ms both;
}
.hero__title {
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  line-height: 1.02;
  color: var(--white);
  max-width: 18ch;
  margin-bottom: var(--sp-6);
  text-shadow: var(--text-shadow-tight), var(--text-shadow-halo);
  animation: hero-rise var(--dur-slow) var(--ease-out) 350ms both;
}
.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--white-90);
  max-width: 42ch;
  margin-bottom: var(--sp-8);
  animation: hero-rise var(--dur-slow) var(--ease-out) 500ms both;
}
@keyframes hero-rise {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero__scroll {
  position: absolute;
  bottom: var(--sp-6);
  right: var(--container-pad);
  z-index: 2;
  width: 1px;
  height: 48px;
  background: var(--white-40);
  display: none;
}
.hero__scroll::after {
  content: '';
  position: absolute;
  top: 0; left: -2px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--brass);
  animation: hero-scroll-dot 2.2s var(--ease-in-out) infinite;
}
@keyframes hero-scroll-dot {
  0% { top: 0; opacity: 1; }
  90% { opacity: 1; }
  100% { top: 44px; opacity: 0; }
}
@media (min-width: 768px) { .hero__scroll { display: block; } }

/* Narrow portrait viewports crop far more aggressively (object-fit: cover
   against a ~0.46:1 box vs. the photo's 1.78:1) — shift left so the harp
   badge at the image's left edge stays in frame. Matches the site's
   existing mobile breakpoint (see the hero <picture> source above). */
@media (max-width: 767px) {
  #hero-img { object-position: 0% 50%; }
}

/* ============================================================
   LIVE SPORT
   ============================================================ */
#live-sport { background: var(--wood-dark-a); }
#live-sport .eyebrow { color: var(--brass); }
#live-sport .section-title { color: var(--cream); }
.livesport__img {
  width: 100%;
  height: auto;
  display: block;
  margin-top: var(--sp-8);
  border-radius: 6px;
  box-shadow: var(--shadow-card);
}
.livesport__body {
  margin-top: var(--sp-6);
  max-width: 65ch;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  color: var(--white-85);
  font-size: 1.05rem;
}

/* ============================================================
   ABOUT
   ============================================================ */
#about { background: var(--wood-dark-a); }
#about .eyebrow { color: var(--brass); }
#about .section-title { color: var(--cream); }
#about .about__text p { color: var(--white-85); }
.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-12);
  align-items: center;
}
.about__body {
  margin-top: var(--sp-6);
}
.about__text p { margin-bottom: var(--sp-5); font-size: 1.05rem; }
.about__text p:last-child { margin-bottom: 0; }
.about__media {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: var(--sp-4);
}
.about__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: var(--shadow-card);
}
.about__media-a { aspect-ratio: 4 / 5; }
.about__media-b { aspect-ratio: 4 / 5; margin-top: var(--sp-12); }
@media (min-width: 992px) {
  .about__grid { grid-template-columns: 0.85fr 1.15fr; }
  .about__media { order: 2; }
  .about__text { order: 1; }
}

/* ============================================================
   MENU
   ============================================================ */
#menu { background: var(--wood-dark-a); }
.menu__breakfast {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.375rem, 2.6vw, 1.875rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--brass);
  background: var(--brass-16);
  border: 1px solid var(--brass);
  border-radius: 8px;
  padding: var(--sp-3) var(--sp-6);
  margin-top: var(--sp-5);
}
.menu__card {
  /* no panel — text sits directly on the darkened wood background */
}
.menu__tabs {
  display: flex;
  gap: var(--sp-2);
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: var(--sp-2);
  margin-bottom: var(--sp-8);
  border-bottom: 1px solid var(--forest-12);
}
.menu__tabs::-webkit-scrollbar { display: none; }
.menu__tab {
  flex-shrink: 0;
  font-family: var(--font-label);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate);
  padding: var(--sp-3) var(--sp-4);
  min-height: var(--touch-min);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
}
.menu__tab:hover { color: var(--forest); }
.menu__tab.menu__tab--active { color: var(--forest); border-color: var(--brass); }

.menu__panels { position: relative; }
.menu__panel { display: none; }
.menu__panel.menu__panel--active { display: block; }

.menu__subcat {
  font-size: 1.4rem;
  color: var(--forest);
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-2);
  border-bottom: 1px solid var(--forest-12);
}
.menu__subcat:not(:first-child) { margin-top: var(--sp-10); }

.menu__items { display: grid; gap: var(--sp-5); margin-bottom: var(--sp-2); }
.menu__item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--sp-4);
  padding-bottom: var(--sp-5);
  border-bottom: 1px dashed var(--forest-12);
}
.menu__item:last-child { border-bottom: none; padding-bottom: 0; }
.menu__item-info { flex: 1; min-width: 0; }
.menu__item-name { font-size: 1.15rem; color: var(--charcoal); margin-bottom: var(--sp-1); }
.menu__item-desc { font-size: 0.92rem; color: var(--slate); line-height: 1.55; }
.menu__item-price {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 1rem;
  color: var(--forest);
  white-space: nowrap;
}
.menu__tag {
  display: inline-block;
  font-family: var(--font-label);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--forest);
  background: var(--forest-08);
  border-radius: 999px;
  padding: 2px 8px;
  margin-left: var(--sp-2);
  vertical-align: middle;
}

.menu__pending {
  font-style: italic;
  color: var(--slate);
  font-size: 0.98rem;
  padding: var(--sp-8) 0;
  text-align: center;
  border: 1px dashed var(--forest-12);
  border-radius: 6px;
}

/* Dark-wood variant — #menu sits on --wood-dark-a, so every element that
   assumed a light card background needs a light-on-dark override here. */
#menu .eyebrow { color: var(--brass); }
#menu .section-title { color: var(--cream); }
#menu .section-header p { color: var(--white-85); }
#menu .menu__panel > p { color: var(--white-70); }
#menu .menu__tabs { border-bottom-color: var(--white-12); }
#menu .menu__tab { color: var(--white-70); }
#menu .menu__tab:hover { color: var(--brass); }
#menu .menu__tab.menu__tab--active { color: var(--brass); border-color: var(--brass); }
#menu .menu__subcat { color: var(--brass); border-bottom-color: var(--white-12); }
#menu .menu__item { border-bottom-color: var(--white-25); }
#menu .menu__item-name { color: var(--cream); }
#menu .menu__item-desc { color: var(--white-70); }
#menu .menu__item-price { color: var(--brass); }
#menu .menu__tag { background: var(--brass); color: var(--forest-dk); }
#menu .menu__pending { color: var(--white-70); border-color: var(--white-25); }

/* ============================================================
   GALLERY
   ============================================================ */
#gallery { background: var(--wood-dark-a); }
#gallery .eyebrow { color: var(--brass); }
#gallery .section-title { color: var(--cream); }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: var(--sp-3);
}
.gallery__item { position: relative; overflow: hidden; border-radius: 6px; }
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease-out);
}
.gallery__item:hover img { transform: scale(1.05); }
.gallery__item--a { grid-column: span 4; grid-row: span 2; }
.gallery__item--b { grid-column: span 2; grid-row: span 2; }
.gallery__item--c { grid-column: span 2; grid-row: span 1; }
.gallery__item--d { grid-column: span 2; grid-row: span 1; }
.gallery__item--e { grid-column: span 2; grid-row: span 2; }
.gallery__item--f { grid-column: span 2; grid-row: span 2; }

.gallery__insta {
  margin-top: var(--sp-8);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  min-height: var(--touch-min);
  font-family: var(--font-label);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--brass);
}
.gallery__insta:hover { color: var(--cream); }

@media (min-width: 768px) {
  .gallery__grid { grid-auto-rows: 200px; }
  .gallery__item--a { grid-column: span 2; grid-row: span 2; }
}
@media (max-width: 767px) {
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery__item--a, .gallery__item--b, .gallery__item--e, .gallery__item--f { grid-column: span 2; grid-row: span 2; }
  .gallery__item--c, .gallery__item--d { grid-column: span 1; grid-row: span 1; }
}

/* ============================================================
   REVIEWS
   ============================================================ */
#reviews { background: var(--wood-dark-a); }
/* Dark-wood variant — .review-card stays a white card (already has strong
   internal contrast regardless of what's behind it); only the elements
   sitting directly on the section background need light-on-dark colors. */
#reviews .eyebrow { color: var(--brass); }
#reviews .section-title { color: var(--cream); }
#reviews .reviews__link .btn--outline {
  color: var(--white);
  border-color: var(--white-40);
}
#reviews .reviews__link .btn--outline:hover {
  background: var(--white-10);
  border-color: var(--white-70);
}
.reviews__summary {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  margin-bottom: var(--sp-10);
  text-align: center;
}
.reviews__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
}
.review-card {
  background: var(--card-dark-bg);
  border: 1px solid var(--brass-16);
  border-radius: 8px;
  padding: var(--sp-6);
  box-shadow: var(--shadow-sm);
}
.review-card__text { font-size: 0.95rem; color: var(--white-85); line-height: 1.6; margin-bottom: var(--sp-4); }
.review-card__author { font-family: var(--font-label); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.04em; color: var(--cream); }

.reviews__link {
  display: flex;
  justify-content: center;
  margin-top: var(--sp-16);
}

@media (min-width: 640px) {
  .reviews__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 992px) {
  .reviews__grid { grid-template-columns: repeat(4, 1fr); }
}

/* ============================================================
   FIND US
   ============================================================ */
#find-us {
  background: var(--wood-dark-a);
  color: var(--white-90);
}
#find-us .eyebrow { color: var(--brass); }
#find-us .section-title { color: var(--cream); }
.findus__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-12);
}
.findus__hours {
  display: grid;
  grid-template-columns: max-content max-content;
  gap: var(--sp-2) var(--sp-4);
  margin: var(--sp-4) 0 var(--sp-8);
}
.findus__hours dt { font-family: var(--font-label); font-size: 1rem; font-weight: 700; color: var(--white-85); }
.findus__hours dd { margin: 0; font-family: var(--font-label); font-size: 1rem; font-weight: 700; color: var(--cream); text-align: left; }
.findus__addr { display: flex; gap: var(--sp-3); margin-bottom: var(--sp-6); font-size: 1rem; color: var(--white-90); }

.findus__actions { display: flex; flex-wrap: wrap; gap: var(--sp-4); margin-top: var(--sp-8); }

.wa-card {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  background: var(--forest);
  color: var(--white);
  padding: var(--sp-5) var(--sp-6);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
  min-height: var(--touch-min);
}
.wa-card:hover { transform: translateY(-2px); background: var(--forest-dk); box-shadow: var(--shadow-md); }
.wa-card__icon { width: 28px; height: 28px; flex-shrink: 0; }
.wa-card__title { font-family: var(--font-label); font-weight: 700; font-size: 0.95rem; letter-spacing: 0.02em; }
.wa-card__sub { font-size: 0.82rem; color: var(--white-85); }

.findus__map {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-card);
}
.findus__map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.findus__map-tap {
  position: absolute;
  inset: 0;
  background: transparent;
  cursor: pointer;
}
.findus__map-link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  margin-top: var(--sp-4);
  min-height: var(--touch-min);
  font-family: var(--font-label);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--brass);
}
.findus__map-link:hover { color: var(--cream); }

@media (min-width: 992px) {
  .findus__grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--wood-dark-a);
  color: var(--white-70);
  padding: var(--sp-16) 0 var(--sp-8);
  border-top: 1px solid var(--white-10);
}
.footer__brand {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2.75rem, 7vw, 5rem);
  color: var(--cream);
  text-align: center;
  margin-bottom: var(--sp-2);
}
.footer__brand-kern {
  margin-right: 0.04em;
}
.footer__tagline {
  text-align: center;
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: var(--sp-10);
}
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-2) var(--sp-6);
  margin-bottom: var(--sp-10);
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.footer__nav a { min-height: var(--touch-min); display: inline-flex; align-items: center; }
.footer__nav a:hover { color: var(--cream); }

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  align-items: center;
  padding-top: var(--sp-8);
  border-top: 1px solid var(--white-10);
  font-size: 0.8rem;
}
.footer__lang { display: flex; gap: var(--sp-2); }
.footer__lang .lang-btn { color: var(--white-70); background: var(--white-10); }
.footer__lang .lang-btn[aria-pressed="true"] { background: var(--brass); color: var(--forest-dk); }

@media (min-width: 768px) {
  .footer__bottom { flex-direction: row; justify-content: space-between; }
}

/* ============================================================
   WHATSAPP FLOATING BUTTON + BACK TO TOP
   ============================================================ */
#whatsapp-btn {
  position: fixed;
  right: var(--sp-5);
  bottom: var(--sp-5);
  z-index: 90;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--wa-green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-wa);
  transition: transform var(--dur-fast) var(--ease-out);
}
#whatsapp-btn:hover { transform: scale(1.06); }
#whatsapp-btn svg { width: 28px; height: 28px; }

#back-to-top {
  position: fixed;
  right: var(--sp-5);
  bottom: calc(var(--sp-5) + 68px);
  z-index: 90;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out), visibility var(--dur-fast) var(--ease-out);
}
#back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
#cookie-banner {
  position: fixed;
  left: var(--sp-4); right: var(--sp-4); bottom: var(--sp-4);
  z-index: 250;
  max-width: 460px;
  margin: 0 auto;
  background: var(--white);
  color: var(--charcoal);
  border-radius: 8px;
  padding: var(--sp-6);
  box-shadow: var(--shadow-md);
  visibility: hidden;
  transform: translateY(140%);
  transition: transform var(--dur-slow) var(--ease-out), visibility 0s linear var(--dur-slow);
}
#cookie-banner[data-visible="true"] {
  visibility: visible;
  transform: translateY(0);
  transition: transform var(--dur-slow) var(--ease-out);
}
#cookie-banner p { font-size: 0.88rem; color: var(--slate); margin-bottom: var(--sp-4); }
#cookie-banner .cookie__actions { display: flex; gap: var(--sp-3); flex-wrap: wrap; }
