/* ============================================================
   MACCA BALIK — Design System & Global Styles
   maccabalik.com
   ============================================================ */

/* ── Google Fonts imported via <link> in HTML ── */

/* ── 1. RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }

/* ── 2. DESIGN TOKENS ── */
:root {
  /* Colors — Stitch "Coastal Curator" palette */
  --navy:          #131939;
  --navy-light:    #1e2850;
  --navy-mid:      #2a3568;
  --teal:          #007B7F;
  --teal-light:    #00A3A8;
  --teal-pale:     #E0F5F5;
  --copper:        #715953;
  --copper-light:  #9a7b74;
  --copper-pale:   #fcdbd4;
  --cream:         #fbf9f5;
  --cream-dark:    #f5f3ef;
  --cream-deeper:  #efeeea;
  --gold:          #B8963E;
  --gold-light:    #e9c176;
  --gold-pale:     #FDF4E0;
  --white:         #FFFFFF;
  --text-dark:     #1b1c1a;
  --text-medium:   #46464e;
  --text-light:    #77767f;
  --border:        rgba(113,89,83,0.15);
  --border-dark:   rgba(113,89,83,0.28);

  /* Typography — Stitch: Noto Serif + Work Sans */
  --font-heading:  'Noto Serif', Georgia, 'Times New Roman', serif;
  --font-body:     'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Shadows — Stitch "Ambient" style: diffused, tinted, low opacity */
  --shadow-xs:  0 2px 8px rgba(19,25,57,0.04);
  --shadow-sm:  0 4px 16px rgba(19,25,57,0.06);
  --shadow-md:  0 8px 32px rgba(19,25,57,0.08);
  --shadow-lg:  0 16px 56px rgba(19,25,57,0.10);
  --shadow-xl:  0 32px 80px rgba(19,25,57,0.14);
  --shadow-card-hover: 0 20px 56px rgba(19,25,57,0.12);

  /* Borders — Stitch: sharp editorial, minimal radius */
  --radius-sm:  2px;
  --radius-md:  4px;
  --radius-lg:  8px;
  --radius-xl:  16px;
  --radius-full: 9999px;

  /* Layout */
  --nav-height:  90px;
  --max-w:       1280px;
  --max-w-text:  760px;

  /* Transitions */
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast:      150ms var(--ease);
  --t-base:      250ms var(--ease);
  --t-slow:      500ms var(--ease);
}

/* ── 3. TYPOGRAPHY ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--navy);
  font-weight: 700;
}
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.35rem); }
p  { font-size: 1rem; color: var(--text-medium); max-width: 65ch; }

.serif { font-family: var(--font-heading); }
.text-gold  { color: var(--gold); }
.text-teal  { color: var(--teal); }
.text-navy  { color: var(--navy); }
.text-white { color: var(--white); }
.text-center { text-align: center; }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.uppercase { text-transform: uppercase; letter-spacing: 0.1em; }

/* ── 4. LAYOUT UTILITIES ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-6);
}
@media (max-width: 768px) {
  .container { padding: 0 var(--space-4); }
}

.section {
  padding: var(--space-24) 0;
}
.section-sm {
  padding: var(--space-16) 0;
}
@media (max-width: 768px) {
  .section     { padding: var(--space-16) 0; }
  .section-sm  { padding: var(--space-10) 0; }
}

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-8); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-6); }

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; gap: var(--space-4); }
}
@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
}

.flex    { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-4   { gap: var(--space-4); }
.gap-6   { gap: var(--space-6); }
.gap-8   { gap: var(--space-8); }

/* ── 5. SECTION HEADERS ── */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--copper);
  margin-bottom: var(--space-3);
}
.section-title {
  font-family: var(--font-heading);
  color: var(--navy);
  margin-bottom: var(--space-4);
}
.section-divider {
  width: 48px;
  height: 1px;
  background: var(--copper);
  margin: var(--space-4) auto var(--space-6);
}
.section-divider.left { margin-left: 0; }
.section-desc {
  font-size: 1.05rem;
  color: var(--text-medium);
  max-width: 600px;
  margin: 0 auto;
}

/* ── 6. BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: var(--radius-sm);
  transition: all var(--t-base);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy) 100%);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(19,25,57,0.25);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy-mid) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(19,25,57,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}
.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-teal {
  background: var(--copper);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(113,89,83,0.25);
}
.btn-teal:hover {
  background: var(--copper-light);
  transform: translateY(-2px);
}
.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 4px 15px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover {
  background: #20BA5A;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37,211,102,0.4);
}
.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
/* Stitch — press-down feedback on all buttons */
.btn:active { transform: translateY(0) scale(0.97); }

/* ── 7. NAVBAR ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: background var(--t-slow), box-shadow var(--t-slow);
}
.navbar.transparent { background: transparent; }
.navbar.scrolled {
  background: rgba(19, 25, 57, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 40px rgba(19,25,57,0.12);
}
.navbar .container { height: 100%; }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
}
.nav-logo-img {
  height: 64px;
  width: auto;
  display: block;
  transition: opacity var(--t-base);
}
.nav-logo-img:hover { opacity: 0.85; }

/* Fallback text (hidden when logo img loads) */
.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.nav-logo-text span { color: var(--gold-light); }
.nav-logo-sub {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  display: block;
  margin-top: 2px;
}

/* Footer logo */
.footer-logo-img {
  height: 64px;
  width: auto;
  display: block;
  opacity: 0.92;
  margin-bottom: var(--space-4);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}
.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
  transition: color var(--t-fast);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--copper-light);
  transition: width var(--t-base);
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }
.nav-link.active { color: var(--white); }
.nav-cta {
  padding: 0.6rem 1.4rem;
  background: var(--copper);
  color: var(--white) !important;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background var(--t-base), transform var(--t-fast);
}
.nav-cta:hover {
  background: var(--copper-light);
  transform: translateY(-1px);
}
.nav-cta::after { display: none; }

/* Mobile Menu */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--t-base);
  border-radius: 2px;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--navy);
  padding: var(--space-6) var(--space-6) var(--space-8);
  transform: translateY(-100%);
  opacity: 0;
  transition: transform var(--t-slow), opacity var(--t-slow);
  z-index: 999;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.nav-mobile.open {
  transform: translateY(0);
  opacity: 1;
}
.nav-mobile-link {
  display: block;
  padding: var(--space-3) 0;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color var(--t-fast);
}
.nav-mobile-link:hover { color: var(--gold-light); }
.nav-mobile-cta {
  display: block;
  margin-top: var(--space-4);
  padding: var(--space-3) var(--space-6);
  background: #25D366;
  color: var(--white);
  font-weight: 600;
  border-radius: var(--radius-sm);
  text-align: center;
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile { display: block; }
}

/* ── 8. FOOTER ── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: var(--space-20) 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-12);
  padding-bottom: var(--space-16);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-8); }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-8); }
}
.footer-logo-text {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--white);
  margin-bottom: var(--space-2);
}
.footer-logo-text span { color: var(--gold-light); }
.footer-tagline {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: var(--space-5);
}
.footer-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  max-width: 300px;
  margin-bottom: var(--space-6);
}
.footer-social {
  display: flex;
  gap: var(--space-3);
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  transition: all var(--t-base);
}
.footer-social a:hover {
  border-color: var(--copper-light);
  color: var(--copper-light);
  transform: translateY(-2px);
}
.footer-social svg { width: 16px; height: 16px; }
.footer-col-title {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--copper-light);
  margin-bottom: var(--space-5);
}
.footer-links { display: flex; flex-direction: column; gap: var(--space-3); }
.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--t-fast), transform var(--t-fast);
  display: inline-block;
}
.footer-links a:hover { color: var(--white); transform: translateX(4px); }
.footer-contact-item {
  display: flex;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
  align-items: flex-start;
}
.footer-contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--copper-light);
  flex-shrink: 0;
  margin-top: 3px;
}
.footer-contact-item span {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}
.footer-bottom {
  padding: var(--space-5) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
}
.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom-links {
  display: flex;
  gap: var(--space-6);
}
.footer-bottom-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  transition: color var(--t-fast);
}
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* ── 9. HERO ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--navy-mid);
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.45;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(19,25,57,0.72) 0%,
    rgba(19,25,57,0.30) 55%,
    transparent 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 var(--space-6);
  max-width: 860px;
}
.hero-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: var(--space-5);
  padding: var(--space-2) var(--space-4);
  border: 1px solid rgba(233,193,118,0.35);
  border-radius: var(--radius-sm);
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: var(--space-4);
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.8);
  max-width: 520px;
  margin: 0 auto var(--space-10);
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: scrollBounce 2s infinite;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* Parallax hero variant */
.hero-bg.parallax img { will-change: transform; }

/* Page Hero (inner pages) */
.page-hero {
  height: 380px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-bottom: var(--space-12);
  background: var(--navy);
  margin-top: var(--nav-height);
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
}
.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,0.9) 30%, transparent);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  margin-bottom: var(--space-2);
}
.page-hero-breadcrumb {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
}
.page-hero-breadcrumb a { color: var(--copper-light); }
.page-hero-breadcrumb a:hover { color: var(--white); }

/* ── 10. CARDS ── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 400ms var(--ease), box-shadow 500ms var(--ease);
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-hover);
}
.card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--cream-dark);
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
  transition: transform 700ms var(--ease), filter 700ms var(--ease);
}
.card:hover .card-img img { transform: scale(1.07); filter: grayscale(0%); }
.card-body { padding: var(--space-5) var(--space-5) var(--space-6); }
.card-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: var(--space-2);
}
.card-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: var(--space-2);
  line-height: 1.3;
}
.card-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* Menu Card */
.menu-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: visible; /* allows ::after bar to show below */
  position: relative;
  box-shadow:
    0 2px 4px rgba(0,0,0,0.06),
    0 6px 20px rgba(0,0,0,0.09),
    0 0 0 1px rgba(176,114,68,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.menu-card::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 10%;
  width: 80%;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, transparent, var(--copper), #d4916c, var(--copper), transparent);
  opacity: 0;
  transition: opacity 0.3s ease, bottom 0.3s ease;
}
.menu-card:hover::after { opacity: 1; bottom: -3px; }
.menu-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow:
    0 8px 16px rgba(0,0,0,0.08),
    0 24px 48px rgba(0,0,0,0.13),
    0 0 0 1.5px rgba(176,114,68,0.25);
}
/* Gallery-style card: name overlay, uniform height, no whitespace */
.menu-card-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--cream-dark);
  border-radius: var(--radius-lg);
}
.menu-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(8%);
  transition: transform 700ms var(--ease), filter 700ms var(--ease);
}
.menu-card:hover .menu-card-img-wrap img { transform: scale(1.07); filter: grayscale(0%) brightness(1.05); }
.menu-card-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 10px 10px;
  background: linear-gradient(to top, rgba(13,27,42,0.88) 0%, transparent 100%);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  line-height: 1.3;
  text-align: center;
  letter-spacing: 0.01em;
}
.menu-card-body { display: none; }

/* Legacy selectors kept for fallback */
.menu-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--cream-dark);
  border-radius: var(--radius-lg);
}
.menu-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(8%);
  transition: transform 700ms var(--ease), filter 700ms var(--ease);
}
.menu-card:hover .menu-card-img img { transform: scale(1.07); filter: grayscale(0%) brightness(1.05); }

/* Gallery Card */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
  background: var(--cream-dark);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease), filter 1000ms var(--ease);
  display: block;
  filter: grayscale(25%);
}
.gallery-item:hover img { transform: scale(1.06); filter: grayscale(0%); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,27,42,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t-base);
}
.gallery-item:hover .gallery-item-overlay { background: rgba(13,27,42,0.4); }
.gallery-item-icon {
  opacity: 0;
  color: var(--white);
  transition: opacity var(--t-base);
}
.gallery-item:hover .gallery-item-icon { opacity: 1; }

/* Feature Cards */
.feature-card {
  background: var(--cream-dark);
  border-radius: var(--radius-md);
  padding: var(--space-8) var(--space-6);
  text-align: center;
  box-shadow: var(--shadow-xs);
  transition: transform var(--t-base), box-shadow var(--t-base), background var(--t-base);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  background: var(--cream-deeper);
}
.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-5);
  background: var(--copper-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--copper);
  transition: background var(--t-base), color var(--t-base);
}
.feature-icon svg { width: 28px; height: 28px; }
.feature-card:hover .feature-icon {
  background: var(--copper);
  color: var(--white);
}
.feature-card h4 {
  font-family: var(--font-heading);
  margin-bottom: var(--space-3);
  color: var(--navy);
}
.feature-card p {
  font-size: 0.9rem;
  color: var(--text-medium);
  max-width: 100%;
}

/* ── 11. WAVE DIVIDERS ── */
.wave-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.wave-divider svg { display: block; width: 100%; }

/* ── 12. MENU PAGE ── */
.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  padding: var(--space-3) 0;
  margin-bottom: var(--space-6);
  position: sticky;
  top: var(--nav-height);
  z-index: 500;
  background: var(--cream);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.menu-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.6rem 1.25rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  white-space: nowrap;
  border-radius: var(--radius-full);
  border: none;
  background: linear-gradient(180deg, #fdf5ec 0%, #eeddd0 55%, #e6cebf 100%);
  color: var(--navy);
  /* 3-D raised look: top highlight + right/bottom depth + ambient */
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.85),
    inset 0 -1px 0 rgba(0,0,0,0.07),
    0 4px 0 0 rgba(180,120,70,0.3),
    0 6px 14px rgba(0,0,0,0.12);
  transition: all 0.18s ease;
  cursor: pointer;
  position: relative;
  top: 0;
}
.menu-tab-btn:hover {
  background: linear-gradient(180deg, #fff0e0 0%, #f0d8c0 55%, #e8caaf 100%);
  color: #8a4a1a;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.9),
    inset 0 -1px 0 rgba(0,0,0,0.08),
    0 5px 0 0 rgba(176,114,68,0.4),
    0 8px 20px rgba(176,114,68,0.2);
  top: -2px;
}
.menu-tab-btn:active {
  top: 3px;
  box-shadow:
    inset 0 2px 4px rgba(0,0,0,0.15),
    inset 0 1px 0 rgba(0,0,0,0.05),
    0 1px 0 0 rgba(180,120,70,0.2),
    0 2px 6px rgba(0,0,0,0.08);
}
.menu-tab-btn.active {
  background: linear-gradient(180deg, #2a4a80 0%, var(--navy) 55%, #111f3a 100%);
  color: var(--white);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.2),
    inset 0 -1px 0 rgba(0,0,0,0.2),
    0 4px 0 0 rgba(10,18,40,0.5),
    0 8px 20px rgba(26,42,68,0.4);
  top: 0;
}
.menu-tab-btn .count {
  font-size: 0.68rem;
  font-weight: 700;
  background: rgba(0,0,0,0.12);
  padding: 1px 7px;
  border-radius: var(--radius-full);
  min-width: 22px;
  text-align: center;
}
.menu-tab-btn.active .count { background: rgba(255,255,255,0.22); }
.menu-tab-btn:hover .count { background: rgba(176,114,68,0.18); }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: var(--space-5);
  margin-top: var(--space-8);
}
@media (max-width: 480px) {
  .menu-grid { grid-template-columns: 1fr 1fr; gap: var(--space-3); }
}

/* Menu panel — fade-in on tab switch */
@keyframes panelFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}
.menu-panel { display: none; }
.menu-panel.active {
  display: block;
  animation: panelFadeIn 0.32s ease both;
}

/* Menu card — staggered entrance */
@keyframes cardIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}
.menu-card { animation: cardIn 0.38s ease both; }
.menu-card:nth-child(2)   { animation-delay: 0.04s; }
.menu-card:nth-child(3)   { animation-delay: 0.08s; }
.menu-card:nth-child(4)   { animation-delay: 0.12s; }
.menu-card:nth-child(5)   { animation-delay: 0.16s; }
.menu-card:nth-child(6)   { animation-delay: 0.20s; }
.menu-card:nth-child(7)   { animation-delay: 0.24s; }
.menu-card:nth-child(8)   { animation-delay: 0.28s; }
.menu-card:nth-child(n+9) { animation-delay: 0.32s; }

/* Menu Drinks Table */
.drinks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-6);
  margin-top: var(--space-8);
}
.drinks-category {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-xs);
}
.drinks-category h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--border);
}
.drink-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: var(--space-2) 0;
  border-bottom: 1px dashed var(--border);
  font-size: 0.875rem;
}
.drink-item:last-child { border-bottom: none; }
.drink-brand {
  grid-column: 1 / -1;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  padding: 14px 0 5px;
  border-bottom: 1px solid rgba(176,114,68,0.25);
  margin-bottom: 2px;
}
.drink-brand:first-child { padding-top: 2px; }

.drink-name { color: var(--text-dark); }
.drink-price { color: var(--teal); font-weight: 600; }
/* Sub-category label inside a drinks card */
.drink-item.drink-subhead {
  border-bottom: none;
  padding-top: var(--space-4);
  margin-top: var(--space-2);
}
.drink-item.drink-subhead:first-of-type { padding-top: 0; margin-top: 0; }
.drink-item.drink-subhead .drink-name {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
}

/* ── 13. GALLERY PAGE ── */
.gallery-filters {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: var(--space-8);
}
.gallery-filter-btn {
  padding: 0.5rem 1.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--text-medium);
  transition: all var(--t-base);
  cursor: pointer;
}
.gallery-filter-btn:hover { border-color: var(--navy); color: var(--navy); }
.gallery-filter-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.gallery-masonry {
  columns: 4 240px;
  gap: var(--space-4);
}
.gallery-masonry .gallery-item {
  break-inside: avoid;
  margin-bottom: var(--space-4);
}
@media (max-width: 768px) {
  .gallery-masonry { columns: 2 160px; }
}
@media (max-width: 480px) {
  .gallery-masonry { columns: 2 120px; gap: var(--space-2); }
  .gallery-masonry .gallery-item { margin-bottom: var(--space-2); }
}

/* ── 14. LIGHTBOX ── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-base);
}
.lightbox.open {
  opacity: 1;
  pointer-events: all;
}
.lightbox-inner {
  position: relative;
  max-width: min(94vw, 1200px);
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lightbox-img {
  max-width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 24px 80px rgba(0,0,0,0.65);
}
.lightbox-caption {
  margin-top: var(--space-3);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  background: rgba(233,193,118,0.15);
  padding: 6px 20px;
  border-radius: var(--radius-full);
}
.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.15);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--t-fast);
}
.lightbox-close:hover { background: rgba(255,255,255,0.3); }
.lightbox-close svg { width: 18px; height: 18px; }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.15);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--t-fast);
  border: 1px solid rgba(255,255,255,0.2);
}
.lightbox-nav:hover { background: rgba(255,255,255,0.3); }
.lightbox-nav svg { width: 20px; height: 20px; }
.lightbox-prev { left: -70px; }
.lightbox-next { right: -70px; }
@media (max-width: 768px) {
  .lightbox-prev { left: -10px; }
  .lightbox-next { right: -10px; }
  .lightbox-nav { width: 38px; height: 38px; background: rgba(0,0,0,0.6); }
}
.lightbox-counter {
  position: absolute;
  top: -40px;
  left: 0;
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
}

/* ── 15. CONTACT FORM ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-12);
  align-items: start;
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: var(--space-10); }
}
.contact-info-item {
  display: flex;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
  align-items: flex-start;
}
.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--teal-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  flex-shrink: 0;
}
.contact-info-icon svg { width: 20px; height: 20px; }
.contact-info-text h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: var(--space-1);
}
.contact-info-text p,
.contact-info-text a {
  font-size: 0.9rem;
  color: var(--text-medium);
  max-width: 100%;
  line-height: 1.6;
}
.contact-info-text a:hover { color: var(--teal); }

.form-group { margin-bottom: var(--space-5); }
.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: var(--space-2);
}
.form-input,
.form-textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  outline: none;
}
.form-input:focus,
.form-textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,123,127,0.12);
}
.form-textarea { resize: vertical; min-height: 140px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}
.form-success {
  display: none;
  padding: var(--space-5);
  background: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: var(--radius-md);
  color: #166534;
  font-size: 0.95rem;
  text-align: center;
}

/* ── 16. MAP ── */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 420px;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ── 17. CTA BAND ── */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, var(--teal) 100%);
  padding: var(--space-20) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-band h2 {
  color: var(--white);
  margin-bottom: var(--space-4);
  position: relative;
}
.cta-band p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  margin: 0 auto var(--space-8);
  max-width: 520px;
  position: relative;
}
.cta-band .cta-actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ── 18. ABOUT PAGE ── */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}
@media (max-width: 900px) {
  .about-story { grid-template-columns: 1fr; }
}
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-xl);
}
.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
  transition: filter 700ms var(--ease), transform 700ms var(--ease);
}
.about-img-wrap:hover img {
  filter: grayscale(0%);
  transform: scale(1.03);
}
.about-badge {
  position: absolute;
  bottom: var(--space-6);
  right: var(--space-6);
  background: var(--navy);
  color: var(--white);
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.about-badge .year {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--gold-light);
  line-height: 1;
}
.about-badge .label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.about-text h2 { margin-bottom: var(--space-6); }
.about-text p { margin-bottom: var(--space-5); font-size: 1rem; color: var(--text-medium); max-width: 100%; }
.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-8);
}
@media (max-width: 600px) {
  .about-values { grid-template-columns: 1fr; }
}
.about-value {
  padding: var(--space-5);
  border-left: 3px solid var(--gold);
  background: var(--cream-dark);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.about-value h5 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: var(--space-2);
}
.about-value p { font-size: 0.85rem; max-width: 100%; }

/* Stats Row */
.stats-row {
  background: var(--navy);
  padding: var(--space-16) 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
  text-align: center;
}
@media (max-width: 768px) {
  .stats-grid { grid-template-columns: 1fr 1fr; gap: var(--space-6); }
}
.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: var(--space-2);
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── 19. FLOATING WHATSAPP ── */
.whatsapp-float {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  z-index: 900;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: transform var(--t-base), box-shadow var(--t-base);
  animation: wpPulse 3s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37,211,102,0.6);
  animation: none;
}
.whatsapp-float svg { width: 28px; height: 28px; }
@keyframes wpPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
  50%       { box-shadow: 0 4px 30px rgba(37,211,102,0.75), 0 0 0 8px rgba(37,211,102,0.1); }
}

/* ── 20. AOS OVERRIDES ── */
[data-aos] { transition-duration: 700ms !important; }

/* ── 21. SECTION BACKGROUNDS ── */
.bg-navy   { background: var(--navy); }
.bg-cream  { background: var(--cream); }
.bg-white  { background: var(--white); }
.bg-cream-dark { background: var(--cream-dark); }
.bg-teal-pale  { background: var(--teal-pale); }

/* ── 22. SCROLL TO TOP ── */
.scroll-top {
  position: fixed;
  bottom: var(--space-6);
  left: var(--space-6);
  z-index: 900;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity var(--t-base), transform var(--t-base);
  cursor: pointer;
}
.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.scroll-top:hover { background: var(--teal); }
.scroll-top svg { width: 18px; height: 18px; }

/* ── Google Reviews Float ── */
.google-reviews-float {
  position: fixed;
  bottom: 96px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  border-radius: 50px;
  padding: 9px 15px 9px 10px;
  box-shadow: 0 3px 16px rgba(0,0,0,0.14);
  border: 1px solid rgba(0,0,0,0.07);
  text-decoration: none;
  z-index: 890;
  transition: box-shadow 0.2s, transform 0.2s;
}
.google-reviews-float:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.2);
  transform: translateY(-2px);
}
.gr-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #f1f1f1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.gr-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.gr-stars {
  font-size: 11px;
  color: #f9ab00;
  line-height: 1;
  letter-spacing: 1px;
}
.gr-label {
  font-family: 'Work Sans', sans-serif;
  font-size: 10px;
  color: #5f6368;
  white-space: nowrap;
  line-height: 1;
}
@media (max-width: 480px) {
  .google-reviews-float { left: 12px; bottom: 84px; padding: 7px 12px 7px 8px; }
  .gr-label { display: none; }
}
@media print { .google-reviews-float { display: none !important; } }

/* ── 23. RESERVATION SECTION ── */
.reservation-section {
  background: var(--cream-dark);
  padding: var(--space-16) 0;
  text-align: center;
}
.reservation-section h2 { margin-bottom: var(--space-4); }
.reservation-section p { margin: 0 auto var(--space-8); }
.reservation-options {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* ── 24. LOADING SKELETON ── */
.skeleton {
  background: linear-gradient(90deg, var(--cream-dark) 25%, var(--border) 50%, var(--cream-dark) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}
@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ── 25. UTILITY ── */
.hidden    { display: none !important; }
.sr-only   { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.mt-auto   { margin-top: auto; }
.w-full    { width: 100%; }
.rounded   { border-radius: var(--radius-md); }
.overflow-hidden { overflow: hidden; }
.relative  { position: relative; }
.italic    { font-style: italic; }
.font-bold { font-weight: 700; }
.mb-0 { margin-bottom: 0 !important; }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }
.mb-12 { margin-bottom: var(--space-12); }

/* ── 26. LANGUAGE SELECTOR ── */
.lang-selector {
  position: relative;
  margin-left: var(--space-3);
  flex-shrink: 0;
}
.lang-current {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0.35rem 0.85rem;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0;
  border-radius: var(--radius-full);
  border: 2px solid rgba(176,114,68,0.35);
  background: linear-gradient(180deg, #fdf5ec 0%, #eeddd0 100%);
  color: var(--navy);
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.8),
    0 3px 0 rgba(176,114,68,0.22),
    0 4px 10px rgba(0,0,0,0.1);
  transition: all 0.18s ease;
  position: relative;
  top: 0;
  white-space: nowrap;
}
.lang-current:hover {
  border-color: var(--copper);
  color: var(--copper);
  top: -1px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.85),
    0 4px 0 rgba(176,114,68,0.3),
    0 6px 14px rgba(176,114,68,0.18);
}
/* flag-only button — no inner span needed */
.lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(176,114,68,0.18);
  box-shadow: 0 8px 32px rgba(0,0,0,0.14), 0 2px 8px rgba(0,0,0,0.08);
  min-width: 150px;
  z-index: 9999;
  overflow: hidden;
  animation: ddFadeIn 0.18s ease;
}
.lang-dropdown.open { display: block; }
@keyframes ddFadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: none; }
}
.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 0.6rem 1rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-dark);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.15s;
}
.lang-option:hover { background: var(--cream-light); color: var(--copper); }
.lang-option.active { background: var(--cream-dark); color: var(--navy); font-weight: 700; }
.lang-flag { font-size: 1.1rem; }
.lang-code { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; }
.lang-name { flex: 1; }

/* Navbar: keep lang selector aligned */
.nav-links .lang-selector { display: inline-flex; align-items: center; }
@media (max-width: 768px) {
  .nav-links .lang-selector { display: none; }
}

/* ── DRINKS EXPANDED LAYOUT ── */
.drinks-wrapper { padding: 1rem 0; }
.drinks-section { margin-bottom: 2rem; }

/* Side-by-side group rows */
.drinks-row-group {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
  align-items: start;
}
.drinks-row-group.col-3 { grid-template-columns: repeat(3, 1fr); }
.drinks-row-group.col-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .drinks-row-group.col-3 { grid-template-columns: repeat(2, 1fr); }
  .drinks-row-group.col-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .drinks-row-group.col-3,
  .drinks-row-group.col-4 { grid-template-columns: 1fr; }
}
/* Inside a row group the sections lose their bottom margin */
.drinks-row-group .drinks-section { margin-bottom: 0; }

/* Wine 4-column grid */
.drinks-wine-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 0.75rem;
  align-items: start;
}
.drinks-wine-col .drinks-subheading {
  margin-top: 0;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--copper);
}
@media (max-width: 900px) {
  .drinks-wine-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .drinks-wine-grid { grid-template-columns: 1fr; }
}
.drinks-heading {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1.5px solid rgba(176,114,68,0.25);
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}
.drinks-subheading {
  margin: 1.2rem 0 0.5rem;
  font-family: var(--serif);
  font-style: italic;
  color: var(--copper);
  font-size: 0.95rem;
}
.drinks-list { display: flex; flex-direction: column; gap: 0.35rem; }
.drinks-list--cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.3rem 1rem;
}
@media (max-width: 700px) {
  .drinks-list--cols { grid-template-columns: repeat(2, 1fr); }
}
.drink-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text);
  padding: 0.25rem 0;
  border-bottom: 1px dotted rgba(0,0,0,0.06);
}
.drink-row .drink-name { font-weight: 500; }
.drink-row .drink-en {
  font-size: 0.78rem;
  color: var(--copper);
  font-style: italic;
}
