/*
Theme Name: Inspire Cafe
Theme URI: https://inspireafricacoffee.com
Description: Premium WordPress theme for Inspire Cafe — Uganda rooted, world inspired.
Version: 2.1
Author: Acolyte Technologies Limited
Text Domain: inspire-africa
*/

/* ============================================================
   BRAND FONT — Gill Sans (company typeface)
   System font on Mac/iOS; Century Gothic / Calibri fallback on Windows
   ============================================================ */

/* ============================================================
   BRAND PATTERN — Coffee Leaf SVG (from brand guidelines PDF)
   Darker teal leaves on Sherpa Blue — used as corner decorations
   ============================================================ */
:root {
  --leaf-svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 220'%3E%3Cg opacity='0.18'%3E%3Cellipse cx='60' cy='110' rx='42' ry='100' fill='%23003840' transform='rotate(-15 60 110)'/%3E%3Cellipse cx='60' cy='110' rx='28' ry='88' fill='%23004c54' transform='rotate(-15 60 110)'/%3E%3Cline x1='60' y1='15' x2='60' y2='205' stroke='%23005a64' stroke-width='1.5' transform='rotate(-15 60 110)'/%3E%3Cline x1='60' y1='60' x2='35' y2='85' stroke='%23005a64' stroke-width='1' transform='rotate(-15 60 110)'/%3E%3Cline x1='60' y1='80' x2='82' y2='100' stroke='%23005a64' stroke-width='1' transform='rotate(-15 60 110)'/%3E%3Cline x1='60' y1='105' x2='32' y2='125' stroke='%23005a64' stroke-width='1' transform='rotate(-15 60 110)'/%3E%3Cline x1='60' y1='125' x2='85' y2='140' stroke='%23005a64' stroke-width='1' transform='rotate(-15 60 110)'/%3E%3Cline x1='60' y1='148' x2='38' y2='162' stroke='%23005a64' stroke-width='1' transform='rotate(-15 60 110)'/%3E%3C/g%3E%3C/svg%3E");

  --leaf-svg-light: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 220'%3E%3Cg opacity='0.08'%3E%3Cellipse cx='60' cy='110' rx='42' ry='100' fill='%23004c54' transform='rotate(-15 60 110)'/%3E%3Cline x1='60' y1='15' x2='60' y2='205' stroke='%23004c54' stroke-width='1.5' transform='rotate(-15 60 110)'/%3E%3Cline x1='60' y1='60' x2='35' y2='85' stroke='%23004c54' stroke-width='1' transform='rotate(-15 60 110)'/%3E%3Cline x1='60' y1='80' x2='82' y2='100' stroke='%23004c54' stroke-width='1' transform='rotate(-15 60 110)'/%3E%3Cline x1='60' y1='105' x2='32' y2='125' stroke='%23004c54' stroke-width='1' transform='rotate(-15 60 110)'/%3E%3Cline x1='60' y1='125' x2='85' y2='140' stroke='%23004c54' stroke-width='1' transform='rotate(-15 60 110)'/%3E%3C/g%3E%3C/svg%3E");
  --brand-leaf-watermark: url('assets/images/branding/watermark-leaf.png');
  --brand-leaf-pattern: url('assets/images/branding/watermark-leaf-pattern-source.png');
}

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  /* Brand Colors */
  --sherpa-blue:    #004c54;
  --sherpa-mid:     #00636d;
  --dusty-rose:     #ad7467;
  --dusty-rose-lt:  #c4907f;
  --earth-yellow:   #bb956b;
  --earth-yellow-lt:#d4b08a;
  --jewel-green:    #5a715a;
  --espresso:       #1a0e06;

  /* Neutral / Background */
  --cream:          #fdf8f2;
  --ivory:          #f9f4ee;
  --sand:           #efe6db;
  --sand-dark:      #e0d4c6;
  --smoke:          #bdbdaf;
  --charcoal:       #1e1a17;
  --charcoal-lt:    #3b3530;
  --white:          #ffffff;

  /* Semantic */
  --text:           var(--charcoal);
  --text-muted:     #7a6f65;
  --bg:             var(--cream);
  --bg-alt:         var(--ivory);
  --border:         var(--sand-dark);
  --accent:         var(--earth-yellow);
  --primary:        var(--sherpa-blue);

  /* Typography — Gill Sans (brand font) */
  --font-display:   'Gill Sans', 'Gill Sans MT', 'Century Gothic', Calibri, sans-serif;
  --font-body:      'Gill Sans', 'Gill Sans MT', 'Century Gothic', Calibri, sans-serif;

  /* Spacing */
  --section-py:     clamp(72px, 10vw, 120px);
  --container:      min(1200px, 92vw);
  --container-wide: min(1400px, 96vw);
  --gap:            clamp(24px, 4vw, 48px);

  /* Radii */
  --r-sm:    8px;
  --r-md:    16px;
  --r-lg:    28px;
  --r-xl:    40px;
  --r-full:  9999px;

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(26, 14, 6, 0.08);
  --shadow-md:  0 8px 32px rgba(26, 14, 6, 0.12);
  --shadow-lg:  0 20px 60px rgba(26, 14, 6, 0.16);
  --shadow-xl:  0 32px 80px rgba(26, 14, 6, 0.20);

  /* Transitions */
  --ease:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:   cubic-bezier(0.0, 0.0, 0.2, 1);
  --dur-fast:   0.18s;
  --dur-base:   0.30s;
  --dur-slow:   0.55s;

  /* Header */
  --header-h:   72px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: var(--brand-leaf-pattern);
  background-repeat: space;
  background-position: center;
  background-size: 148px auto;
  opacity: 0.06;
  animation: executivePatternDriftWide 24s ease-in-out infinite, executivePatternBreath 14s ease-in-out infinite;
}

body.menu-open {
  overflow: hidden;
}

img, video {
  display: block;
  max-width: 100%;
  height: auto;
}

a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

button, input, select, textarea {
  font: inherit;
  color: inherit;
  border: none;
  outline: none;
  background: none;
}

button { cursor: pointer; }

/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  padding: 0.5rem 1rem;
  background: var(--sherpa-blue);
  color: var(--white);
  border-radius: var(--r-sm);
  font-size: 0.875rem;
  z-index: 9999;
  transition: top var(--dur-fast);
}
.skip-link:focus { top: 1rem; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--sherpa-blue);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.8rem, 6.5vw, 5.5rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4.5vw, 3.6rem); font-weight: 600; }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1.1rem, 1.8vw, 1.4rem); }

p {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  line-height: 1.75;
  color: var(--text-muted);
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--earth-yellow);
  display: block;
}

strong { font-weight: 600; color: var(--charcoal); }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  width: var(--container);
  margin-inline: auto;
}

.container--wide {
  width: var(--container-wide);
  margin-inline: auto;
}

.section {
  padding-block: var(--section-py);
}

.section--dark {
  background: var(--espresso);
  color: var(--cream);
}

.section--dark h1,
.section--dark h2,
.section--dark h3 {
  color: var(--cream);
}

.section--dark p {
  color: rgba(253, 248, 242, 0.72);
}

.section--tinted {
  background: var(--ivory);
}

/* Dark features section */
.section--features {
  background: linear-gradient(135deg, var(--sherpa-blue) 0%, #003840 100%);
}
.section--features .section-head h2 { color: #fff; }
.section--features .section-head .eyebrow { color: var(--earth-yellow-lt); }
.section--features .section-head .section-sub { color: rgba(255,255,255,0.7); }

.section-head {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: clamp(40px, 6vw, 72px);
}

.section-head .eyebrow { margin-bottom: 0.75rem; }
.section-head h2 { margin-bottom: 1rem; }

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   — Animation-based: content never stuck invisible.
     Elements animate IN when is-visible is added.
   ============================================================ */
@keyframes revealFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}

.reveal {
  /* Visible by default — animation plays when class added */
  opacity: 1;
}

.reveal.is-visible {
  animation: revealFadeUp 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.reveal-delay-1.is-visible { animation-delay: 0.12s; }
.reveal-delay-2.is-visible { animation-delay: 0.22s; }
.reveal-delay-3.is-visible { animation-delay: 0.34s; }
.reveal-delay-4.is-visible { animation-delay: 0.46s; }
.reveal-delay-5.is-visible { animation-delay: 0.58s; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85em 2em;
  border-radius: var(--r-full);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: background var(--dur-base) var(--ease),
              color var(--dur-base) var(--ease),
              border-color var(--dur-base) var(--ease),
              box-shadow var(--dur-base) var(--ease),
              transform var(--dur-fast) var(--ease);
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--sherpa-blue);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0, 76, 84, 0.35);
}
.btn--primary:hover {
  background: var(--sherpa-mid);
  box-shadow: 0 8px 30px rgba(0, 76, 84, 0.45);
}

.btn--ghost {
  background: transparent;
  color: var(--sherpa-blue);
  border: 1.5px solid var(--sherpa-blue);
}
.btn--ghost:hover {
  background: var(--sherpa-blue);
  color: var(--white);
}

.btn--accent {
  background: var(--earth-yellow);
  color: var(--espresso);
  box-shadow: 0 4px 20px rgba(187, 149, 107, 0.4);
}
.btn--accent:hover {
  background: var(--earth-yellow-lt);
  box-shadow: 0 8px 30px rgba(187, 149, 107, 0.5);
}

.btn--white {
  background: var(--white);
  color: var(--sherpa-blue);
}
.btn--white:hover { background: var(--cream); }

.btn--white-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.6);
}
.btn--white-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

.btn--sm {
  padding: 0.6em 1.4em;
  font-size: 0.8rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  align-items: center;
}

/* ============================================================
   PILL / BADGE
   ============================================================ */
.pill {
  display: inline-block;
  padding: 0.3em 0.9em;
  border-radius: var(--r-full);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--sand);
  color: var(--charcoal-lt);
}

.pill--accent {
  background: rgba(187, 149, 107, 0.18);
  color: var(--earth-yellow);
}

.pill--blue {
  background: rgba(0, 76, 84, 0.1);
  color: var(--sherpa-blue);
}

/* ============================================================
   SITE HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: clamp(20px, 5vw, 60px);
  gap: 2rem;
  transition: background var(--dur-base) var(--ease),
              backdrop-filter var(--dur-base) var(--ease),
              box-shadow var(--dur-base) var(--ease);
}

body.admin-bar .site-header {
  top: 32px;
}

@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}

.site-header.is-scrolled {
  background: rgba(253, 248, 242, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
}

.home .site-header {
  background: rgba(253, 248, 242, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
}

.site-header .brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  text-decoration: none;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: var(--r-full);
  background: var(--sherpa-blue);
  color: var(--white);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--sherpa-blue);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.brand-tag {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
}

.site-nav a {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sherpa-blue);
  position: relative;
  transition: color var(--dur-fast);
}

.site-nav a.is-menu-link {
  color: var(--sherpa-blue);
  text-shadow: none;
}

.site-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--earth-yellow);
  transition: width var(--dur-base) var(--ease);
}

.site-nav a:hover { color: var(--earth-yellow); }
.site-nav a:hover::after { width: 100%; }
.site-nav .btn { margin-left: 0.5rem; }

/* Nav links white when header is transparent (over hero) */
.site-header:not(.is-scrolled) .site-nav a {
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
.site-header:not(.is-scrolled) .site-nav a:hover { color: var(--earth-yellow); }
.site-header:not(.is-scrolled) .brand-name { color: #fff; }
.site-header:not(.is-scrolled) .brand-tag { color: rgba(255,255,255,0.7); }
.site-header:not(.is-scrolled) .btn--ghost {
  color: #fff;
  border-color: rgba(255,255,255,0.7);
}
.site-header:not(.is-scrolled) .btn--ghost:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
}

.site-header.is-home-brand:not(.is-scrolled) .site-nav a {
  color: var(--sherpa-blue) !important;
  text-shadow: none !important;
}
.site-header.is-home-brand:not(.is-scrolled) .site-nav a:hover {
  color: var(--earth-yellow) !important;
}
.site-header.is-home-brand:not(.is-scrolled) .site-nav a.is-menu-link {
  color: var(--sherpa-blue) !important;
  text-shadow: none !important;
}
.site-header.is-home-brand:not(.is-scrolled) .brand-name {
  color: var(--sherpa-blue) !important;
}
.site-header.is-home-brand:not(.is-scrolled) .brand-tag {
  color: var(--text-muted) !important;
}
.site-header.is-home-brand:not(.is-scrolled) .btn--ghost,
.site-header.is-home-brand:not(.is-scrolled) .btn--accent {
  color: var(--sherpa-blue) !important;
  border-color: rgba(0,76,84,0.45) !important;
  background: transparent !important;
  text-shadow: none !important;
}
.site-header.is-home-brand:not(.is-scrolled) .btn--ghost:hover,
.site-header.is-home-brand:not(.is-scrolled) .btn--accent:hover {
  color: var(--white) !important;
  background: var(--sherpa-blue) !important;
  border-color: var(--sherpa-blue) !important;
}

.header-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.lang-switcher {
  display: none; /* Hidden — multi-language not active */
}

.lang-switcher a {
  padding: 0.3em 0.7em;
  border-radius: var(--r-full);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  transition: background var(--dur-fast), color var(--dur-fast);
}

.lang-switcher a.is-active,
.lang-switcher a:hover {
  background: var(--sherpa-blue);
  color: var(--white);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  border-radius: var(--r-sm);
  background: var(--sand);
  transition: background var(--dur-fast);
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform var(--dur-base) var(--ease), opacity var(--dur-base);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile overlay nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 800;
  background: var(--espresso);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-base) var(--ease);
}

.mobile-nav.is-open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav a {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-style: italic;
  font-weight: 600;
  color: var(--cream);
  transition: color var(--dur-fast);
}

.mobile-nav a.is-menu-link {
  color: var(--earth-yellow);
}

.mobile-nav a:hover { color: var(--earth-yellow); }

.mobile-nav .mobile-nav-footer {
  position: absolute;
  bottom: 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.mobile-nav .mobile-nav-footer a {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-style: normal;
  color: rgba(253, 248, 242, 0.5);
}

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero-slider {
  position: relative;
  z-index: 1;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
}

.slider-track { height: 100%; }

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.slide.active { opacity: 1; }

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.25) 0%,
    rgba(0,0,0,0.5) 60%,
    rgba(0,76,84,0.55) 100%
  );
}

/* Logo watermark inside slider */
.slide-logo-watermark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 3;
}
.slide-logo-watermark img {
  width: min(45vw, 360px);
  opacity: 0.03;
  filter: none;
}

.slide-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 2rem clamp(1.5rem, 8vw, 6rem);
  padding-top: calc(var(--header-h) + 2rem);
}

.slide-content .eyebrow {
  color: var(--earth-yellow);
  letter-spacing: 0.22em;
  font-size: 0.75rem;
  margin-bottom: 1rem;
}

.slide-content h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 700;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.slide-content .slide-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
  font-weight: 400;
}

.slide-content .cta-row {
  justify-content: center;
}

.slide-content .btn--ghost {
  color: #fff;
  border-color: rgba(255,255,255,0.7);
}
.slide-content .btn--ghost:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
}

/* Slider controls */
.slider-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: var(--r-full);
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s, width 0.3s;
  padding: 0;
}
.dot.active {
  background: #fff;
  width: 24px;
}

.slider-prev,
.slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.35);
  color: #fff;
  font-size: 1.25rem;
  width: 48px;
  height: 48px;
  border-radius: var(--r-full);
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.slider-prev:hover,
.slider-next:hover {
  background: rgba(255,255,255,0.28);
  border-color: #fff;
}
.slider-prev { left: 1.5rem; }
.slider-next { right: 1.5rem; }

@media (max-width: 600px) {
  .slider-prev, .slider-next { display: none; }
}

/* ============================================================
   SITE-WIDE BACKGROUND WATERMARKS
   Transparent PNG logo variants — visible on ALL pages
   z-index: 9999 + pointer-events: none keeps them above bg
   but non-interactive, using transparent PNGs at low opacity
   ============================================================ */

@keyframes wmLeafDrift {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-10deg) scale(1); opacity: 0.22; }
  50% { transform: translate3d(0, -24px, 0) rotate(-4deg) scale(1.07); opacity: 0.3; }
}
@keyframes wmCircleOrbit {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg) scale(1); opacity: 0.22; }
  50% { transform: translate3d(14px, -18px, 0) rotate(7deg) scale(1.08); opacity: 0.34; }
}
@keyframes wmWordmarkGlide {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); opacity: 0.2; }
  50% { transform: translate3d(0, -14px, 0) rotate(-1deg); opacity: 0.3; }
}
@keyframes wmHaloPulse {
  0%, 100% { transform: scale(1); opacity: 0.24; }
  50% { transform: scale(1.08); opacity: 0.38; }
}
@keyframes wmFloatWide {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.18; }
  50% { transform: translate3d(12px, -16px, 0) scale(1.05); opacity: 0.3; }
}

.site-watermarks {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  opacity: 0.28;
}
.site-watermarks,
.slide-logo-watermark,
.hero-watermark,
.booking-cta__watermark {
  display: none !important;
}
.swm {
  position: absolute;
  user-select: none;
  filter: drop-shadow(0 20px 48px rgba(0, 50, 56, 0.18));
  will-change: transform, opacity;
}
.swm img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 1;
}

.swm--leaf {
  width: clamp(210px, 20vw, 340px);
}
.swm--circle {
  width: clamp(140px, 13vw, 220px);
}
.swm--wordmark {
  width: clamp(250px, 24vw, 410px);
}

.swm--leaf-tl {
  top: 7vh;
  left: -1vw;
  animation: wmLeafDrift 18s ease-in-out infinite;
}
.swm--circle-tr {
  top: 12vh;
  right: 6vw;
  animation: wmCircleOrbit 15s ease-in-out infinite 1s;
}
.swm--circle-top-left {
  top: 16vh;
  left: 18vw;
  animation: wmCircleOrbit 17s ease-in-out infinite 0.7s;
}
.swm--wordmark-mid {
  top: 40vh;
  left: 4vw;
  animation: wmWordmarkGlide 18s ease-in-out infinite 2s;
}
.swm--wordmark-left-high {
  top: 11vh;
  left: 9vw;
  animation: wmFloatWide 19s ease-in-out infinite 1.1s;
}
.swm--wordmark-left-mid {
  top: 61vh;
  left: 8vw;
  animation: wmFloatWide 21s ease-in-out infinite 0.5s;
}
.swm--circle-bl {
  bottom: 10vh;
  left: 9vw;
  animation: wmCircleOrbit 16s ease-in-out infinite 3s;
}
.swm--leaf-br {
  right: 0vw;
  bottom: 9vh;
  animation: wmLeafDrift 20s ease-in-out infinite 1.5s;
  transform: rotate(180deg);
}
.swm--wordmark-low {
  right: 8vw;
  bottom: 23vh;
  animation: wmWordmarkGlide 20s ease-in-out infinite 4s;
}
.swm--leaf-mid-left {
  top: 28vh;
  left: 0vw;
  animation: wmLeafDrift 22s ease-in-out infinite 1.2s;
}
.swm--leaf-left-low {
  bottom: 7vh;
  left: 1vw;
  animation: wmLeafDrift 24s ease-in-out infinite 1.6s;
}

.swm--leaf-mid-right {
  top: 48vh;
  right: 1vw;
  animation: wmLeafDrift 19s ease-in-out infinite 2.2s;
}
.swm--leaf-right-high {
  top: 20vh;
  right: 2vw;
  animation: wmLeafDrift 23s ease-in-out infinite 2.8s;
}

.swm--circle-mid-left {
  top: 51vh;
  left: 14vw;
  animation: wmCircleOrbit 17s ease-in-out infinite 1.4s;
}
.swm--circle-center-left {
  top: 32vh;
  left: 26vw;
  animation: wmCircleOrbit 18s ease-in-out infinite 2.1s;
}
.swm--circle-mid-right {
  top: 31vh;
  right: 24vw;
  animation: wmCircleOrbit 18s ease-in-out infinite 2.6s;
}
.swm--circle-center-right {
  top: 54vh;
  right: 14vw;
  animation: wmCircleOrbit 20s ease-in-out infinite 1.2s;
}

.swm--wordmark-top {
  top: 13vh;
  left: 35vw;
  animation: wmWordmarkGlide 21s ease-in-out infinite 0.8s;
}
.swm--wordmark-right {
  top: 62vh;
  right: 6vw;
  animation: wmWordmarkGlide 23s ease-in-out infinite 1.9s;
}
.swm--wordmark-right-mid {
  top: 40vh;
  right: 5vw;
  animation: wmFloatWide 22s ease-in-out infinite 2.6s;
}
.swm--wordmark-center {
  top: 45vh;
  left: 37vw;
  animation: wmFloatWide 22s ease-in-out infinite 2.3s;
}
.swm--circle-bottom-right {
  right: 16vw;
  bottom: 8vh;
  animation: wmCircleOrbit 19s ease-in-out infinite 0.9s;
}
.swm--circle-bottom-left {
  left: 20vw;
  bottom: 8vh;
  animation: wmCircleOrbit 21s ease-in-out infinite 1.5s;
}
.swm--leaf-top-right {
  top: 8vh;
  right: 18vw;
  animation: wmLeafDrift 21s ease-in-out infinite 0.6s;
}

.swm--wordmark-top img,
.swm--wordmark-left-high img,
.swm--wordmark-left-mid img,
.swm--wordmark-mid img,
.swm--wordmark-low img,
.swm--wordmark-right img,
.swm--wordmark-right-mid img,
.swm--wordmark-center img {
  opacity: 0.26;
}

.swm--circle-top-left img,
.swm--circle-tr img,
.swm--circle-bl img,
.swm--circle-mid-left img,
.swm--circle-mid-right img,
.swm--circle-center-left img,
.swm--circle-center-right img,
.swm--circle-bottom-left img,
.swm--circle-bottom-right img {
  opacity: 0.34;
  animation: wmHaloPulse 12s ease-in-out infinite;
}

.swm--leaf-tl img,
.swm--leaf-mid-left img,
.swm--leaf-left-low img,
.swm--leaf-top-right img,
.swm--leaf-br img,
.swm--leaf-right-high img,
.swm--leaf-mid-right img {
  opacity: 0.26;
}

.swm--wordmark-low img {
  opacity: 0.22;
}

main,
.site-footer {
  position: relative;
  z-index: 1;
}

@media (max-width: 900px) {
  .swm--wordmark-mid,
  .swm--wordmark-low {
    width: clamp(110px, 24vw, 180px);
  }

  .swm--circle-bl,
  .swm--circle-tr {
    width: clamp(64px, 10vw, 110px);
  }

  .swm--wordmark-top {
    left: 24vw;
    top: 15vh;
  }

  .swm--wordmark-right {
    right: 1vw;
  }

  .swm--wordmark-center {
    left: 28vw;
  }

  .swm--wordmark-left-mid,
  .swm--wordmark-right-mid,
  .swm--circle-center-left,
  .swm--circle-center-right {
    display: none;
  }
}

@media (max-width: 640px) {
  .swm--wordmark-low,
  .swm--circle-bl,
  .swm--wordmark-top,
  .swm--leaf-mid-right,
  .swm--wordmark-right,
  .swm--circle-mid-right,
  .swm--wordmark-center,
  .swm--wordmark-left-high,
  .swm--wordmark-left-mid,
  .swm--wordmark-right-mid,
  .swm--circle-bottom-right,
  .swm--circle-bottom-left,
  .swm--circle-center-left,
  .swm--circle-center-right,
  .swm--circle-top-left,
  .swm--leaf-left-low,
  .swm--leaf-right-high,
  .swm--leaf-top-right {
    display: none;
  }

  .swm--leaf-tl {
    top: 10vh;
    left: -6vw;
  }

  .swm--leaf-br {
    right: -6vw;
    bottom: 12vh;
  }
}

/* ============================================================
   BRAND LEAF PATTERN DECORATIONS (from brand guidelines)
   Coffee leaf motif — corner placement as per pattern.pdf
   ============================================================ */

/* Leaf animations */
@keyframes leafDrift {
  0%   { transform: rotate(20deg) translateY(0px); }
  50%  { transform: rotate(25deg) translateY(-12px); }
  100% { transform: rotate(20deg) translateY(0px); }
}
@keyframes leafDriftRight {
  0%   { transform: rotate(200deg) translateY(0px); }
  50%  { transform: rotate(195deg) translateY(-10px); }
  100% { transform: rotate(200deg) translateY(0px); }
}

/* Logo watermark animation */
@keyframes logoSpin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}
@keyframes logoPulse {
  0%, 100% { opacity: 0.05; transform: translate(-50%, -50%) scale(1); }
  50%       { opacity: 0.09; transform: translate(-50%, -50%) scale(1.06); }
}
@keyframes featureWmPulse {
  0%, 100% { opacity: 0.18; transform: scale(1); }
  50%       { opacity: 0.30; transform: scale(1.06); }
}
@keyframes executiveLeafFloat {
  0%, 100% { transform: translate3d(-50%, -50%, 0) rotate(-7deg) scale(1); opacity: 0.07; }
  50% { transform: translate3d(calc(-50% + 16px), calc(-50% - 18px), 0) rotate(-2deg) scale(1.04); opacity: 0.12; }
}
@keyframes executiveLeafFloatSoft {
  0%, 100% { transform: translate3d(-50%, -50%, 0) rotate(172deg) scale(0.92); opacity: 0.05; }
  50% { transform: translate3d(calc(-50% - 14px), calc(-50% + 16px), 0) rotate(178deg) scale(0.98); opacity: 0.09; }
}
@keyframes executiveLeafFloatImage {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-7deg) scale(1); opacity: 0.08; }
  50% { transform: translate3d(14px, -16px, 0) rotate(-2deg) scale(1.04); opacity: 0.12; }
}
@keyframes executivePatternDrift {
  0% { background-position: 0 0; transform: translate3d(-50%, -50%, 0) rotate(0deg) scale(1); opacity: 0.08; }
  33% { background-position: 22px -18px; transform: translate3d(calc(-50% + 6px), calc(-50% - 4px), 0) rotate(0.4deg) scale(1.015); opacity: 0.11; }
  66% { background-position: 44px -34px; transform: translate3d(calc(-50% - 5px), calc(-50% + 3px), 0) rotate(-0.4deg) scale(1.03); opacity: 0.14; }
  100% { background-position: 0 0; transform: translate3d(-50%, -50%, 0) rotate(0deg) scale(1); opacity: 0.08; }
}
@keyframes executivePatternDriftWide {
  0% { background-position: 0 0; transform: translate3d(0, 0, 0) rotate(0deg) scale(1); opacity: 0.07; }
  33% { background-position: 26px -16px; transform: translate3d(8px, -4px, 0) rotate(0.3deg) scale(1.012); opacity: 0.1; }
  66% { background-position: 48px -36px; transform: translate3d(-6px, 4px, 0) rotate(-0.35deg) scale(1.024); opacity: 0.12; }
  100% { background-position: 0 0; transform: translate3d(0, 0, 0) rotate(0deg) scale(1); opacity: 0.07; }
}
@keyframes executivePatternBreath {
  0%, 100% { filter: drop-shadow(0 20px 56px rgba(0, 40, 46, 0.1)) blur(0px); }
  50% { filter: drop-shadow(0 28px 72px rgba(0, 40, 46, 0.18)) blur(0.35px); }
}

/* Hero slider — leaf corners */
.hero-slider::before,
.hero-slider::after {
  content: '';
  position: absolute;
  z-index: 2;
  pointer-events: none;
  background: var(--leaf-svg) no-repeat;
  background-size: contain;
  width: clamp(180px, 22vw, 320px);
  height: clamp(330px, 40vw, 580px);
  opacity: 0.75;
}
.hero-slider::before {
  top: -40px;
  left: -25px;
  animation: leafDrift 8s ease-in-out infinite;
}
.hero-slider::after {
  bottom: -40px;
  right: -25px;
  animation: leafDriftRight 9s ease-in-out infinite;
}

/* Animated logo watermark on hero */
.hero-slider .slide-logo-watermark img {
  display: none;
}

.hero-slider .slide-logo-watermark::before {
  display: none;
}

/* Features section — visible leaf corners */
.section--features {
  position: relative;
  overflow: hidden;
}
.section--features::before,
.section--features::after {
  content: '';
  position: absolute;
  z-index: 0;
  pointer-events: none;
  background: var(--leaf-svg) no-repeat;
  background-size: contain;
  width: clamp(130px, 16vw, 240px);
  height: clamp(240px, 30vw, 440px);
  opacity: 0.85;
}
.section--features::before {
  top: -20px;
  left: -15px;
  animation: leafDrift 10s ease-in-out infinite;
}
.section--features::after {
  bottom: -20px;
  right: -15px;
  animation: leafDriftRight 11s ease-in-out infinite;
}
.section--features .container { position: relative; z-index: 1; }

/* Features section — large centered leaf photo watermark behind section heading */
.section--features .section-head {
  position: relative;
}
.section--features .section-head::after {
  display: none;
}
.section--features .section-head > * { position: relative; z-index: 1; }

/* Footer — leaf corner decorations */
.site-footer {
  position: relative;
  overflow: hidden;
}
.site-footer::before,
.site-footer::after {
  content: '';
  position: absolute;
  z-index: 0;
  pointer-events: none;
  background: var(--leaf-svg) no-repeat;
  background-size: contain;
  width: clamp(120px, 14vw, 220px);
  height: clamp(220px, 26vw, 400px);
  opacity: 0.7;
}
.site-footer::before {
  top: -20px;
  left: -20px;
  animation: leafDrift 12s ease-in-out infinite;
}
.site-footer::after {
  bottom: -20px;
  right: -20px;
  animation: leafDriftRight 13s ease-in-out infinite;
}
.site-footer .container { position: relative; z-index: 1; }

/* Booking CTA — animated logo watermark */
.booking-cta__watermark img {
  width: 340px;
  opacity: 0.07;
  filter: brightness(10) saturate(0);
  animation: logoPulse 7s ease-in-out infinite 1s;
}

/* Story section — single subtle leaf accent (light, on cream bg) */
.story-grid {
  position: relative;
}
.story-grid::after {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -60px;
  z-index: 0;
  pointer-events: none;
  background: var(--leaf-svg-light) no-repeat;
  background-size: contain;
  width: 160px;
  height: 290px;
  transform: rotate(170deg);
}
.story-grid > * { position: relative; z-index: 1; }

/* Story section — large leaf photo watermark behind content */
#about {
  position: relative;
  overflow: hidden;
}
#about::before {
  display: none;
}
#about .container { position: relative; z-index: 1; }

/* ============================================================
   STORY SECTION
   ============================================================ */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.story-image {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-text .eyebrow { margin-bottom: 1rem; }
.story-text h2 { margin-bottom: 1.25rem; }
.story-text > p { margin-bottom: 2rem; font-size: 1.05rem; line-height: 1.8; }

.story-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.story-highlight {
  padding: 1.25rem;
  background: var(--ivory);
  border-radius: var(--r-md);
  border-left: 3px solid var(--earth-yellow);
}

.story-highlight h4 { margin-bottom: 0.4rem; font-size: 1rem; color: var(--sherpa-blue); }
.story-highlight p { font-size: 0.875rem; line-height: 1.6; }

/* ============================================================
   FEATURE CARDS — Photo-backed
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 3vw, 28px);
}

.feature-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
  transition: transform var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease);
  box-shadow: var(--shadow-md);
}

.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }

.feature-card__img {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.feature-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease);
}
.feature-card:hover .feature-card__img img { transform: scale(1.07); }

.feature-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(0,10,12,0.92) 0%,
    rgba(0,76,84,0.45) 55%,
    rgba(0,0,0,0.08) 100%
  );
}

.feature-card__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: clamp(1.5rem, 3vw, 2rem);
  color: #fff;
}

.feature-card__body h3 {
  color: #fff;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.8);
}

.feature-card__body .pill--accent {
  background: rgba(187,149,107,0.92);
  color: #fff;
  border: none;
  font-weight: 700;
  letter-spacing: 0.08em;
}

/* Story section — leaf photo watermark background */
#about {
  position: relative;
}
#about::before {
  display: none;
}
#about .container { position: relative; z-index: 1; }

/* ============================================================
   MENU HIGHLIGHTS (HOMEPAGE)
   ============================================================ */
.menu-toggle-row {
  display: flex;
  justify-content: center;
  margin-bottom: clamp(32px, 5vw, 56px);
}

.menu-toggle {
  display: inline-flex;
  background: var(--sand);
  border-radius: var(--r-full);
  padding: 4px;
  gap: 2px;
}

.menu-toggle__btn {
  padding: 0.6em 1.5em;
  border-radius: var(--r-full);
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: background var(--dur-base) var(--ease), color var(--dur-base) var(--ease), box-shadow var(--dur-base);
  cursor: pointer;
}

.menu-toggle__btn.is-active {
  background: var(--sherpa-blue);
  color: var(--white);
  box-shadow: 0 2px 12px rgba(0, 76, 84, 0.3);
}

.menu-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 3vw, 24px);
  margin-bottom: 2.5rem;
}

.menu-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease);
}

.menu-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.menu-card__img {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.menu-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease);
}

.menu-card:hover .menu-card__img img { transform: scale(1.05); }

.menu-card__body { padding: 1.5rem; }
.menu-card__body h3 { font-size: 1.2rem; margin-bottom: 0.75rem; }
.menu-card__body ul { display: flex; flex-direction: column; gap: 0.4rem; }

.menu-card__body ul li {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding-left: 1em;
  position: relative;
}

.menu-card__body ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--earth-yellow);
  font-size: 0.7em;
  top: 0.2em;
}

.menu-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ============================================================
   BOOKING CTA SECTION
   ============================================================ */
.booking-cta {
  position: relative;
  padding-block: var(--section-py);
  background: var(--espresso);
  color: var(--cream);
  overflow: hidden;
}

.booking-cta__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.booking-cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.booking-cta__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,76,84,0.88) 0%,
    rgba(26,14,6,0.82) 100%
  );
}

.booking-cta-inner {
  position: relative;
  z-index: 2;
}

.booking-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.booking-cta-text .eyebrow { color: var(--earth-yellow-lt); margin-bottom: 1rem; }
.booking-cta-text h2 { color: var(--cream); margin-bottom: 1rem; }
.booking-cta-text p { color: rgba(253, 248, 242, 0.7); font-size: 1.05rem; }

.booking-mini-form {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-xl);
  padding: clamp(24px, 4vw, 40px);
  backdrop-filter: blur(10px);
}

.booking-mini-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.booking-mini-form .form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.booking-mini-form label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(253, 248, 242, 0.6);
}

.booking-mini-form input,
.booking-mini-form select {
  width: 100%;
  padding: 0.75em 1em;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--r-md);
  color: var(--cream);
  font-size: 0.9rem;
  transition: border-color var(--dur-fast), background var(--dur-fast);
}

.booking-mini-form input:focus,
.booking-mini-form select:focus {
  border-color: var(--earth-yellow);
  background: rgba(255, 255, 255, 0.12);
}

.booking-mini-form input::placeholder { color: rgba(253, 248, 242, 0.35); }
.booking-mini-form select option { background: var(--espresso); color: var(--cream); }
.booking-mini-form .btn { width: 100%; justify-content: center; margin-top: 0.25rem; }

/* ============================================================
   GALLERY STRIP (HOMEPAGE)
   ============================================================ */
.gallery-strip-wrap { overflow: hidden; position: relative; }

.gallery-strip {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 8px;
}

.gallery-strip::-webkit-scrollbar { display: none; }

.gallery-strip-item {
  flex-shrink: 0;
  width: clamp(200px, 22vw, 300px);
  aspect-ratio: 3/4;
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
}

.gallery-strip-item:nth-child(even) { margin-top: 40px; }

.gallery-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease);
}

.gallery-strip-item:hover img { transform: scale(1.06); }

.gallery-strip-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.scroll-btn {
  width: 44px;
  height: 44px;
  border-radius: var(--r-full);
  background: var(--sherpa-blue);
  color: var(--white);
  display: grid;
  place-items: center;
  transition: background var(--dur-fast), transform var(--dur-fast);
  font-size: 1.1rem;
}

.scroll-btn:hover { background: var(--sherpa-mid); transform: scale(1.08); }

/* ============================================================
   EVENTS SECTION
   ============================================================ */
.events-hero {
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.events-hero::before,
.events-hero::after {
  display: none;
}

.events-hero::before {
  top: 50%;
  left: 50%;
  width: clamp(360px, 58vw, 760px);
  aspect-ratio: 1 / 0.8;
  background-size: 152px auto;
  mask-image: radial-gradient(circle at center, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.68) 46%, transparent 76%);
  -webkit-mask-image: radial-gradient(circle at center, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.68) 46%, transparent 76%);
  animation: executivePatternDrift 24s ease-in-out infinite, executivePatternBreath 12s ease-in-out infinite;
}

.events-hero::after {
  top: 50%;
  left: 88%;
  width: clamp(220px, 26vw, 360px);
  aspect-ratio: 1 / 0.86;
  background-size: 122px auto;
  opacity: 0.07;
  mask-image: radial-gradient(circle at center, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.48) 44%, transparent 76%);
  -webkit-mask-image: radial-gradient(circle at center, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.48) 44%, transparent 76%);
  animation: executivePatternDrift 30s ease-in-out infinite reverse, executivePatternBreath 15s ease-in-out infinite;
}

.events-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/images/TFM_0295.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.35);
  transition: transform 8s ease;
}

.events-hero:hover .events-hero__bg { transform: scale(1.04); }

.events-hero__content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 2rem;
}

.events-hero__content .eyebrow { color: var(--earth-yellow-lt); margin-bottom: 1rem; }
.events-hero__content h2 { color: var(--white); margin-bottom: 1.25rem; }
.events-hero__content p { color: rgba(255, 255, 255, 0.75); font-size: 1.1rem; margin-bottom: 2rem; }

/* ============================================================
   VISIT SECTION
   ============================================================ */
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.visit-info .eyebrow { margin-bottom: 1rem; }
.visit-info h2 { margin-bottom: 1rem; }
.visit-info > p { margin-bottom: 2rem; }

.visit-list { display: flex; flex-direction: column; gap: 0; margin-bottom: 2rem; }

.visit-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.visit-list li:first-child { border-top: 1px solid var(--border); }

.visit-list__icon {
  width: 46px;
  height: 46px;
  border-radius: var(--r-md);
  background: var(--sand);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.08);
}
.visit-list__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.menu-category__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.menu-category__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid rgba(0,0,0,0.08);
  background: var(--sand);
}
.menu-category__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.feature-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 1rem;
  border: 1px solid rgba(0,0,0,0.08);
  background: var(--sand);
}
.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.menu-category__title { margin: 0; }
.food-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 1.5rem;
}
@media (max-width: 980px) { .food-gallery-grid { grid-template-columns: repeat(2, minmax(220px, 1fr)); }}
@media (max-width: 660px) { .food-gallery-grid { grid-template-columns: 1fr; }}
.food-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-fast), box-shadow var(--dur-fast);
}
.food-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.food-card__image { aspect-ratio: 4/3; overflow: hidden; }
.food-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; }
.food-card:hover .food-card__image img { transform: scale(1.05); }
.food-card__body { padding: 1.25rem; }
.food-card__body h3 { margin: 0 0 0.85rem; color: var(--sherpa-blue); font-size: 1.25rem; }
.food-card__body p { margin: 0; color: var(--text-muted); }

.visit-list__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 0.2rem;
}

.visit-list__value {
  font-size: 0.95rem;
  color: var(--charcoal);
  font-weight: 500;
}

.visit-map {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}

.visit-map iframe { width: 100%; height: 100%; border: none; display: block; }

/* ============================================================
   SITE FOOTER
   ============================================================ */
.site-footer {
  background: var(--espresso);
  color: var(--cream);
  padding-block: clamp(56px, 8vw, 96px) 2.5rem;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: 'IA';
  position: absolute;
  right: -0.1em;
  bottom: -0.15em;
  font-family: var(--font-display);
  font-size: clamp(12rem, 28vw, 30rem);
  font-weight: 700;
  font-style: italic;
  color: rgba(255, 255, 255, 0.025);
  pointer-events: none;
  user-select: none;
  line-height: 0.8;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(32px, 5vw, 60px);
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
}

.footer-brand .brand-name {
  color: var(--cream);
  font-size: 1.3rem;
  margin-bottom: 0.625rem;
  display: block;
  font-family: var(--font-display);
  font-style: italic;
}

.footer-brand p {
  color: rgba(253, 248, 242, 0.55);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-social { display: flex; gap: 0.75rem; }

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: var(--r-full);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: grid;
  place-items: center;
  font-size: 0.9rem;
  color: rgba(253, 248, 242, 0.6);
  transition: background var(--dur-fast), color var(--dur-fast), border-color var(--dur-fast);
}

.footer-social a:hover {
  background: var(--earth-yellow);
  color: var(--espresso);
  border-color: var(--earth-yellow);
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(253, 248, 242, 0.4);
  margin-bottom: 1.25rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.625rem; }

.footer-col ul a {
  font-size: 0.9rem;
  color: rgba(253, 248, 242, 0.65);
  transition: color var(--dur-fast);
}

.footer-col ul a:hover { color: var(--earth-yellow); }

.footer-col p {
  color: rgba(253, 248, 242, 0.65);
  font-size: 0.875rem;
  line-height: 1.8;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(253, 248, 242, 0.35);
}

/* ============================================================
   INNER PAGE HERO
   ============================================================ */
.page-content { padding-top: 0; }

.inner-hero {
  padding-block: clamp(60px, 8vw, 100px);
  background: var(--sherpa-blue);
  color: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.inner-hero::before {
  display: none;
}

.inner-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 100%, rgba(187, 149, 107, 0.20) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 80% 20%, rgba(0,99,109,0.4) 0%, transparent 50%);
  pointer-events: none;
}

.inner-hero > * {
  position: relative;
  z-index: 1;
}

.inner-hero .eyebrow { margin-bottom: 0.75rem; color: var(--earth-yellow); }
.inner-hero h1 { margin-bottom: 1rem; color: var(--cream); }
.inner-hero p { max-width: 560px; margin-inline: auto; color: rgba(253,248,242,0.78); }

/* ============================================================
   FULL MENU PAGE
   ============================================================ */
.menu-page-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.menu-tabs {
  display: flex;
  background: var(--sand);
  border-radius: var(--r-full);
  padding: 4px;
  gap: 2px;
}

.menu-tab {
  padding: 0.6em 1.4em;
  border-radius: var(--r-full);
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: background var(--dur-base), color var(--dur-base), box-shadow var(--dur-base);
  cursor: pointer;
}

.menu-tab.is-active {
  background: var(--sherpa-blue);
  color: var(--white);
  box-shadow: 0 2px 12px rgba(0, 76, 84, 0.25);
}

.menu-panel { display: none; animation: fadeIn 0.25s var(--ease); }

.menu-panel.is-active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: none; }
}

.menu-item-card {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  transition: box-shadow var(--dur-base), transform var(--dur-base);
}

.menu-item-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.menu-item-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.menu-item-card h3 { font-size: 1.05rem; font-style: italic; line-height: 1.3; }

.menu-item-card__price {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--earth-yellow);
  white-space: nowrap;
  flex-shrink: 0;
}

.menu-item-card p { font-size: 0.875rem; line-height: 1.6; flex: 1; }

.menu-downloads {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 2rem 0;
}

/* ============================================================
   BOOKINGS PAGE
   ============================================================ */
.bookings-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.booking-form-wrap {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.booking-form-wrap h2 { font-size: 2rem; margin-bottom: 0.5rem; }
.booking-form-wrap > p { margin-bottom: 2rem; font-size: 0.95rem; }

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875em 1.1em;
  background: var(--ivory);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  font-size: 0.95rem;
  color: var(--charcoal);
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sherpa-blue);
  box-shadow: 0 0 0 3px rgba(0, 76, 84, 0.12);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.booking-type-btns { display: flex; gap: 0.75rem; }

.booking-type-btn {
  flex: 1;
  padding: 0.875em 1em;
  background: var(--ivory);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
  cursor: pointer;
  transition: border-color var(--dur-fast), color var(--dur-fast), background var(--dur-fast);
}

.booking-type-btn.is-active {
  border-color: var(--sherpa-blue);
  color: var(--sherpa-blue);
  background: rgba(0, 76, 84, 0.06);
}

.form-submit-row {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.form-submit-row .btn { justify-content: center; }

#booking-status {
  text-align: center;
  font-size: 0.875rem;
  min-height: 1.5em;
  color: var(--sherpa-blue);
}

.bookings-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: sticky;
  top: calc(var(--header-h) + 2rem);
}

.info-card {
  background: var(--ivory);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  border: 1px solid var(--border);
}

.info-card h4 { margin-bottom: 1rem; font-size: 1rem; }
.info-card p { font-size: 0.875rem; }

.package-cards { display: flex; flex-direction: column; gap: 0.75rem; }

.package-card {
  padding: 1rem;
  background: var(--white);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
}

.package-card__name { font-weight: 700; font-size: 0.9rem; color: var(--sherpa-blue); margin-bottom: 0.25rem; }
.package-card__price { font-size: 0.78rem; font-weight: 600; color: var(--earth-yellow); margin-bottom: 0.4rem; }
.package-card p { font-size: 0.8rem; line-height: 1.55; }

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: clamp(32px, 5vw, 56px);
}

.filter-btn {
  padding: 0.5em 1.2em;
  border-radius: var(--r-full);
  font-size: 0.8rem;
  font-weight: 600;
  background: var(--sand);
  color: var(--text-muted);
  transition: background var(--dur-fast), color var(--dur-fast), box-shadow var(--dur-fast);
  cursor: pointer;
}

.filter-btn.is-active,
.filter-btn:hover {
  background: var(--sherpa-blue);
  color: var(--white);
  box-shadow: 0 2px 12px rgba(0, 76, 84, 0.25);
}

.masonry-grid {
  columns: 4 260px;
  gap: 16px;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: var(--sand);
}

.masonry-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--dur-slow) var(--ease);
}

.masonry-item:hover img { transform: scale(1.04); }

.masonry-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 14, 6, 0.5);
  display: grid;
  place-items: center;
  opacity: 0;
  transition: opacity var(--dur-base);
}

.masonry-item:hover .masonry-item__overlay { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(10, 6, 3, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-base);
}

.lightbox.is-open { opacity: 1; pointer-events: all; }

.lightbox__img {
  max-width: min(90vw, 1000px);
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--r-md);
}

.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: var(--r-full);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  transition: background var(--dur-fast);
}

.lightbox__close:hover { background: rgba(255, 255, 255, 0.2); }

.lightbox__prev,
.lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: var(--r-full);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  transition: background var(--dur-fast);
}

.lightbox__prev { left: 1.5rem; }
.lightbox__next { right: 1.5rem; }
.lightbox__prev:hover,
.lightbox__next:hover { background: rgba(255, 255, 255, 0.2); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
}

.about-story__img {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 3/4;
}

.about-story__img img { width: 100%; height: 100%; object-fit: cover; }

.about-story__text .eyebrow { margin-bottom: 0.875rem; }
.about-story__text h2 { margin-bottom: 1.25rem; }
.about-story__text p { margin-bottom: 1rem; }
.about-story__text p:last-of-type { margin-bottom: 2rem; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 3vw, 28px);
}

.value-card {
  padding: clamp(24px, 3.5vw, 40px);
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  text-align: center;
  transition: transform var(--dur-base), box-shadow var(--dur-base);
}

.value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.value-card__icon {
  width: 58px;
  height: 58px;
  display: block;
  margin-bottom: 1rem;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.08);
  background: var(--sand);
}
.value-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.value-card h3 { font-size: 1.2rem; margin-bottom: 0.625rem; }
.value-card p { font-size: 0.875rem; line-height: 1.65; }

.origin-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 80px);
  align-items: start;
}

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.contact-form-wrap h2 { margin-bottom: 0.5rem; }
.contact-form-wrap > p { margin-bottom: 2rem; }

.contact-info-wrap { display: flex; flex-direction: column; gap: 1.5rem; }

.contact-map {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
}

.contact-map iframe { width: 100%; height: 100%; border: none; }

.contact-details { display: flex; flex-direction: column; gap: 0; }

.contact-details li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.contact-details li:first-child { padding-top: 0; }

/* ============================================================
   FORMS SHARED
   ============================================================ */
.form-success {
  padding: 1rem 1.25rem;
  background: rgba(90, 113, 90, 0.12);
  border: 1px solid var(--jewel-green);
  border-radius: var(--r-md);
  color: var(--jewel-green);
  font-size: 0.875rem;
  font-weight: 500;
}

.form-error {
  padding: 1rem 1.25rem;
  background: rgba(173, 116, 103, 0.12);
  border: 1px solid var(--dusty-rose);
  border-radius: var(--r-md);
  color: var(--dusty-rose);
  font-size: 0.875rem;
  font-weight: 500;
}

/* ============================================================
   RESPONSIVE — TABLET (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: calc(var(--header-h) + 3rem);
    text-align: center;
  }
  .hero-content { max-width: 100%; }
  .hero-content .cta-row { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-watermark { display: none; }
  .hero-media { max-width: 500px; margin-inline: auto; }

  .story-grid, .about-story, .origin-section {
    grid-template-columns: 1fr;
  }
  .story-image, .about-story__img {
    aspect-ratio: 16/9;
    max-height: 400px;
  }
  .story-highlights { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .booking-cta-inner { grid-template-columns: 1fr; }
  .bookings-layout { grid-template-columns: 1fr; }
  .bookings-info { position: static; }
  .visit-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
  .masonry-grid { columns: 3 200px; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  :root { --header-h: 64px; }

  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
  }

  body.admin-bar .site-header {
    top: 46px;
  }

  .site-nav, .lang-switcher { display: none; }
  .nav-toggle { display: flex; }
  .mobile-nav { display: flex; }

  html,
  body,
  main,
  .hero-slider,
  .inner-hero {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  .hero-slider {
    height: calc(100svh - var(--header-h));
    min-height: 520px;
  }

  .slide {
    background-position: center center;
  }

  .slide-content {
    justify-content: flex-end;
    align-items: flex-start;
    text-align: left;
    padding: calc(var(--header-h) + 1rem) 1.25rem 4rem;
  }

  .slide-content h1 {
    font-size: clamp(2.4rem, 12vw, 3.25rem);
  }

  .slide-content .slide-sub {
    max-width: 22rem;
    margin-bottom: 1.25rem;
  }

  .slide-content .cta-row {
    justify-content: flex-start;
  }

  .inner-hero {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    min-height: 0;
    margin-top: calc(-1 * var(--header-h));
    padding: calc(var(--header-h) + 1.25rem) 0 clamp(28px, 5vw, 44px);
  }

  .page-content {
    padding-top: var(--header-h);
  }

  .events-hero {
    align-items: flex-start;
    justify-content: center;
    min-height: 380px;
    padding-top: 1rem;
  }

  .events-hero__content {
    padding: 0.75rem 1.25rem 3rem;
    text-align: left;
  }

  body::before {
    background-size: 118px auto;
    opacity: 0.05;
  }

  .hero-slider .slide:nth-child(1) { background-position: 52% 24%; }
  .hero-slider .slide:nth-child(2) {
    background-position: 50% 78%;
    background-size: auto 120%;
  }
  .hero-slider .slide:nth-child(3) { background-position: 50% 24%; }
  .hero-slider .slide:nth-child(4) { background-position: 50% 22%; }
  .hero-slider .slide:nth-child(5) { background-position: 50% 34%; }

  .media-card--tall { height: 280px; }
  .media-card--sm { height: 130px; }
  .features-grid { grid-template-columns: 1fr; }
  .menu-cards-grid { grid-template-columns: 1fr; }
  .menu-page-controls { flex-direction: column; }
  .form-row-2 { grid-template-columns: 1fr; }
  .booking-type-btns { flex-direction: column; }
  .masonry-grid { columns: 2 160px; }
  .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
  .values-grid { grid-template-columns: 1fr; }
  .menu-panel.is-active { grid-template-columns: 1fr; }
  .menu-tabs { flex-wrap: wrap; }
}

/* ============================================================
   RESPONSIVE — SMALL (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {
  .hero-media { max-width: 100%; }
  .media-card--tall { height: 220px; }
  .cta-row { flex-direction: column; align-items: stretch; }
  .cta-row .btn { justify-content: center; }
  .masonry-grid { columns: 1; }
  .menu-actions { flex-direction: column; align-items: stretch; }
  .menu-actions .btn { justify-content: center; }
  .booking-mini-form .form-row { grid-template-columns: 1fr; }
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .site-header, .site-footer, .nav-toggle,
  .mobile-nav, .booking-mini-form, .gallery-strip-controls {
    display: none !important;
  }
  body { font-size: 11pt; color: #000; }
}

/* ============================================================
   PREMIUM ANIMATIONS
   ============================================================ */

/* ── Shared word-reveal keyframe (used by premium.js on all pages) ── */
@keyframes menuItemIn {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
/* Ensure word-reveal spans are never stuck invisible (fallback) */
.word-reveal-span {
  opacity: 1;
}

/* ── Page load fade-in ── */
@keyframes pageFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}
.page-content {
  animation: pageFadeIn 0.6s ease both;
}

/* ── Scroll progress bar ── */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--earth-yellow), var(--dusty-rose));
  z-index: 9999;
  transition: width 0.1s linear;
  border-radius: 0 2px 2px 0;
}

/* ── Coffee steam ── */
.coffee-steam-wrap {
  position: absolute;
  width: 120px;
  height: 160px;
  pointer-events: none;
  z-index: 2;
  opacity: 0.68;
}
.steam-svg { overflow: visible; }

.steam-cup {
  position: absolute;
  inset: 0;
}

.steam-cup::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 68px;
  height: 42px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(253,248,242,0.55), rgba(253,248,242,0.22));
  border: 1.5px solid rgba(253,248,242,0.42);
  border-radius: 0 0 24px 24px;
  box-shadow: 0 14px 28px rgba(0,0,0,0.08);
  backdrop-filter: blur(4px);
}

.steam-cup__rim {
  position: absolute;
  left: 50%;
  bottom: 36px;
  width: 82px;
  height: 10px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(253,248,242,0.58);
  box-shadow: 0 0 0 1.5px rgba(253,248,242,0.38);
}

.steam-cup__handle {
  position: absolute;
  right: 14px;
  bottom: 11px;
  width: 22px;
  height: 24px;
  border: 2px solid rgba(253,248,242,0.34);
  border-left: none;
  border-radius: 0 16px 16px 0;
}

.steam-svg {
  position: absolute;
  left: 50%;
  bottom: 34px;
  width: 92px;
  height: 108px;
  transform: translateX(-50%);
}

@keyframes steamPath1 {
  0%   { opacity: 0;   d: path("M10 56 C8 46 18 40 14 28 C10 18 18 10 14 -4"); }
  35%  { opacity: 0.34; }
  70%  { opacity: 0.16; d: path("M10 56 C5 46 16 38 12 26 C9 15 17 8 13 -8"); }
  100% { opacity: 0;   d: path("M10 56 C8 44 15 35 11 23 C7 12 15 6 12 -12"); }
}
@keyframes steamPath2 {
  0%   { opacity: 0;   d: path("M30 56 C30 44 18 39 22 26 C26 14 17 8 21 -4"); }
  35%  { opacity: 0.3; }
  70%  { opacity: 0.14; d: path("M30 56 C33 44 21 37 24 24 C27 12 19 7 22 -8"); }
  100% { opacity: 0;   d: path("M30 56 C31 43 22 35 25 22 C28 10 21 5 24 -11"); }
}
@keyframes steamPath3 {
  0%   { opacity: 0;   d: path("M50 56 C51 45 41 39 45 27 C49 15 40 9 44 -3"); }
  35%  { opacity: 0.26; }
  70%  { opacity: 0.12; d: path("M50 56 C53 44 43 37 47 24 C50 12 42 7 45 -8"); }
  100% { opacity: 0;   d: path("M50 56 C52 43 44 35 48 22 C51 10 43 5 46 -12"); }
}

.steam-path-1 {
  fill: none;
  stroke: rgba(253,248,242,0.34);
  stroke-width: 1.6;
  stroke-linecap: round;
  filter: blur(0.3px);
  animation: steamPath1 4.8s ease-in-out infinite;
}
.steam-path-2 {
  fill: none;
  stroke: rgba(253,248,242,0.28);
  stroke-width: 1.3;
  stroke-linecap: round;
  filter: blur(0.45px);
  animation: steamPath2 5.2s ease-in-out infinite;
  animation-delay: 0.8s;
}
.steam-path-3 {
  fill: none;
  stroke: rgba(253,248,242,0.22);
  stroke-width: 1.1;
  stroke-linecap: round;
  filter: blur(0.6px);
  animation: steamPath3 5.8s ease-in-out infinite;
  animation-delay: 1.8s;
}

.steam-path-4,
.steam-path-5 {
  fill: none;
  stroke-linecap: round;
}

.steam-path-4 {
  stroke: rgba(253,248,242,0.2);
  stroke-width: 1;
  filter: blur(0.7px);
  animation: steamPath2 6.2s ease-in-out infinite;
  animation-delay: 0.45s;
}

.steam-path-5 {
  stroke: rgba(253,248,242,0.16);
  stroke-width: 0.95;
  filter: blur(0.8px);
  animation: steamPath1 6.6s ease-in-out infinite;
  animation-delay: 1.3s;
}

.coffee-steam-wrap--hero {
  right: clamp(3rem, 8vw, 8rem);
  bottom: clamp(4rem, 10vh, 7rem);
}

.coffee-steam-wrap--booking {
  right: clamp(2rem, 6vw, 5rem);
  bottom: 1.5rem;
}

.coffee-steam-wrap--review {
  left: clamp(2rem, 6vw, 5rem);
  bottom: 1.5rem;
  transform: scale(0.92);
}

.coffee-steam-wrap--events {
  left: clamp(2rem, 8vw, 7rem);
  bottom: 1.5rem;
}

@media (max-width: 900px) {
  .coffee-steam-wrap {
    transform: scale(0.82);
    transform-origin: bottom center;
  }

  .coffee-steam-wrap--hero {
    right: 1rem;
    bottom: 2rem;
  }
}

@media (max-width: 640px) {
  .coffee-steam-wrap--hero,
  .coffee-steam-wrap--events {
    display: none;
  }
}

/* ── Floating coffee beans (hero particles) ── */
.beans-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}
@keyframes beanFloat {
  0%   { transform: translateY(0)   translateX(0)    rotate(0deg);   opacity: 0; }
  10%  { opacity: 0.18; }
  90%  { opacity: 0.10; }
  100% { transform: translateY(-110vh) translateX(30px) rotate(360deg); opacity: 0; }
}
.bean-particle {
  position: absolute;
  bottom: -20px;
  width: 10px;
  height: 16px;
  border-radius: 50%;
  background: var(--earth-yellow);
  opacity: 0;
  animation: beanFloat linear infinite;
}
.bean-particle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 10%;
  width: 80%;
  height: 1.5px;
  background: rgba(26,14,6,0.35);
  border-radius: 2px;
  transform: translateY(-50%);
}

/* ── Counter number animation ── */
.count-up {
  display: inline-block;
  font-variant-numeric: tabular-nums;
}

/* ── Magnetic button ── */
.btn--magnetic {
  transition: transform 0.2s cubic-bezier(0.23,1,0.32,1),
              box-shadow 0.2s ease,
              background-color 0.2s ease;
  will-change: transform;
}
.btn--magnetic:hover {
  box-shadow: 0 12px 32px rgba(0,0,0,0.22);
}

/* ── Card tilt (3D hover) ── */
.tilt-card {
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.1s ease, box-shadow 0.2s ease;
}
.tilt-card:hover {
  box-shadow: 0 20px 50px rgba(0,76,84,0.18);
}

/* ── Shimmer text effect on eyebrow ── */
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}
.eyebrow--shimmer {
  /* Keep readable text color — shimmer is a subtle brightness pulse, not gradient-clip */
  color: var(--earth-yellow);
  animation: shimmerPulse 3s ease-in-out infinite;
}
@keyframes shimmerPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.7; }
}

/* ── Ripple on button click ── */
.btn {
  position: relative;
  overflow: hidden;
}
@keyframes ripple {
  to { transform: scale(4); opacity: 0; }
}
.btn-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  width: 10px;
  height: 10px;
  transform: scale(0);
  pointer-events: none;
  animation: ripple 0.6s linear;
}

/* ── Cursor glow (desktop only) ── */
#cursor-glow {
  display: none;
  position: fixed;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(187,149,107,0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  #cursor-glow { display: block; }
}

/* ── Hover lift on nav links ── */
.site-nav a:not(.btn) {
  position: relative;
}
.site-nav a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--earth-yellow);
  transition: width 0.25s ease;
  border-radius: 2px;
}
.site-nav a:not(.btn):hover::after,
.site-nav a:not(.btn)[style*="earth-yellow"]::after {
  width: 100%;
}

/* ── Section divider wave ── */
.wave-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  display: block;
}
.wave-divider svg {
  display: block;
  width: 100%;
}

/* ============================================================
   PREMIUM v3 ANIMATIONS — page curtain · cursor · marquee
   image reveal · odometer · char-split
   ============================================================ */

/* ── 1. Page curtain ── */
#page-curtain {
  position: fixed;
  inset: 0;
  background: var(--sherpa-blue);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-origin: top;
  transition: transform 0.85s cubic-bezier(0.76, 0, 0.24, 1);
}
#page-curtain.is-lifted {
  transform: scaleY(0);
}
.curtain-inner {
  text-align: center;
  color: var(--cream);
  opacity: 0;
  animation: curtainFadeIn 0.4s 0.15s ease both;
}
@keyframes curtainFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.curtain-logo {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: contain;
  border: 2px solid rgba(187,149,107,0.4);
  background: rgba(252, 248, 239, 0.08);
  padding: 10px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
  margin-bottom: 16px;
  display: block;
  margin-inline: auto;
}
.curtain-tagline {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  letter-spacing: 0.12em;
  color: var(--earth-yellow);
  opacity: 0.85;
}

/* ── 3. Custom magnetic cursor ── */
#cur-dot, #cur-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 99998;
  border-radius: 50%;
  will-change: transform;
}
#cur-dot {
  width: 8px;
  height: 8px;
  background: var(--earth-yellow);
  mix-blend-mode: difference;
}
#cur-ring {
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(187,149,107,0.55);
  transition: width 0.25s ease, height 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
#cur-label {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--cream);
  opacity: 0;
  transition: opacity 0.2s ease;
  white-space: nowrap;
  text-transform: uppercase;
}
#cur-ring.is-btn {
  width: 72px;
  height: 72px;
  background: rgba(0,76,84,0.85);
  border-color: var(--sherpa-blue);
}
#cur-ring.is-btn #cur-label { opacity: 1; }
#cur-ring.is-link {
  width: 52px;
  height: 52px;
  border-color: var(--earth-yellow);
}
#cur-ring.is-card {
  width: 80px;
  height: 80px;
  background: rgba(187,149,107,0.15);
  border-color: var(--earth-yellow);
}
#cur-ring.is-card #cur-label { opacity: 1; font-size: 8px; color: var(--earth-yellow); }

/* ── 4. Marquee ticker strip ── */
.marquee-strip {
  overflow: hidden;
  background: var(--espresso);
  padding: 14px 0;
  white-space: nowrap;
  position: relative;
  z-index: 2;
}
.marquee-track {
  display: inline-flex;
  animation: marqueeScroll 32s linear infinite;
  white-space: nowrap;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.mq-item {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-style: italic;
  letter-spacing: 0.08em;
  color: var(--earth-yellow);
  padding: 0 2rem;
  flex-shrink: 0;
}
.mq-sep {
  margin-left: 2rem;
  opacity: 0.5;
  font-style: normal;
}

/* ── 5. Image reveal overlay ── */
.img-reveal-host {
  position: relative;
  overflow: hidden;
}
.img-reveal-overlay {
  position: absolute;
  inset: 0;
  background: var(--sherpa-mid);
  transform: scaleX(0);
  transform-origin: left;
  z-index: 3;
  pointer-events: none;
}
@keyframes revealPhaseIn {
  from { transform: scaleX(0); transform-origin: left; }
  to   { transform: scaleX(1); transform-origin: left; }
}
@keyframes revealPhaseOut {
  from { transform: scaleX(1); transform-origin: right; }
  to   { transform: scaleX(0); transform-origin: right; }
}
.img-reveal-overlay.phase-in {
  animation: revealPhaseIn 0.5s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}
.img-reveal-overlay.phase-out {
  animation: revealPhaseOut 0.5s cubic-bezier(0.76, 0, 0.24, 1) 0.05s forwards;
}

/* ── 6. Odometer / slot-machine counters ── */
.od-ready {
  overflow: hidden;
  display: inline-flex;
  align-items: flex-start;
}
.od-col {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.2em;
  overflow: hidden;
  height: 1.2em;
  will-change: transform;
}
.od-digit {
  display: block;
  line-height: 1.2em;
  height: 1.2em;
  font-variant-numeric: tabular-nums;
}

/* ── 8. Char-split stagger reveal ── */
.char-host {
  overflow: hidden;
}
.char-host .ch {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.4em);
  transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--i, 0) * 0.028s);
}
.char-host .ch-sp {
  display: inline-block;
}
.char-host.chars-visible .ch {
  opacity: 1;
  transform: translateY(0);
}

/* Reduced motion — honour system preference */
@media (prefers-reduced-motion: reduce) {
  .bean-particle,
  .steam-path-1, .steam-path-2, .steam-path-3,
  body::before,
  .eyebrow--shimmer,
  #scroll-progress,
  .page-content,
  .marquee-track,
  .img-reveal-overlay,
  #page-curtain { animation: none !important; transition: none !important; }
  .char-host .ch { opacity: 1 !important; transform: none !important; transition: none !important; }
  .od-col { transition: none !important; }
}

/* Review CTA */
.review-cta {
  background:
    radial-gradient(circle at top left, rgba(187,149,107,0.14), transparent 34%),
    linear-gradient(135deg, rgba(0,76,84,0.06), rgba(0,76,84,0.02)),
    var(--cream);
}

.review-cta__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 360px);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.review-cta__content p {
  max-width: 56ch;
  margin-bottom: 1.75rem;
}

.review-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.review-cta__card {
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(0,76,84,0.12);
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(0, 34, 38, 0.10);
  padding: 1.5rem;
  text-align: center;
  backdrop-filter: blur(8px);
}

.review-cta__qr-wrap {
  background: #fff;
  border-radius: 24px;
  padding: 1rem;
  box-shadow: inset 0 0 0 1px rgba(0,76,84,0.08);
}

.review-cta__qr {
  width: 100%;
  max-width: 280px;
  height: auto;
  display: block;
  margin-inline: auto;
  border-radius: 16px;
}

.review-cta__caption {
  margin: 1rem 0 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .review-cta__grid {
    grid-template-columns: 1fr;
  }

  .review-cta__content {
    text-align: center;
  }

  .review-cta__content p {
    margin-inline: auto;
  }

  .review-cta__actions {
    justify-content: center;
  }
}
