/* =============================================
   SANDY'S TOO — Design Tokens & Component Styles
   Caribbean-inspired palette, warm & inviting
   ============================================= */

/* === FONT IMPORTS === */
@import url('https://api.fontshare.com/v2/css?f[]=zodiak@400,500,600,700&f[]=work-sans@300,400,500,600,700&display=swap');

/* === DESIGN TOKENS === */
:root {
  /* Type Scale */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 5rem);
  --text-hero: clamp(3rem, 0.5rem + 7vw, 8rem);

  /* Spacing (4px base) */
  --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;

  /* Font Families */
  --font-display: 'Zodiak', 'Georgia', serif;
  --font-body: 'Work Sans', 'Helvetica Neue', sans-serif;

  /* Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Content widths */
  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1200px;
  --content-full: 100%;
}

/* === LIGHT MODE (Caribbean palette) === */
:root,
[data-theme='light'] {
  /* Surfaces — warm sand/cream */
  --color-bg: #faf8f4;
  --color-surface: #fdfcf9;
  --color-surface-2: #fff;
  --color-surface-offset: #f3efe8;
  --color-surface-offset-2: #ebe6dd;
  --color-surface-dynamic: #e0dacf;
  --color-divider: #d9d3c8;
  --color-border: #cfc8bb;

  /* Text — dark charcoal */
  --color-text: #2b2520;
  --color-text-muted: #6b6359;
  --color-text-faint: #a89f94;
  --color-text-inverse: #faf8f4;

  /* Primary — deep tropical green */
  --color-primary: #1a6b4a;
  --color-primary-hover: #145839;
  --color-primary-active: #0e412a;
  --color-primary-highlight: #d0e8da;

  /* Accent — warm coral/terracotta for CTAs */
  --color-accent: #c45d3e;
  --color-accent-hover: #a84d32;
  --color-accent-active: #8c3e28;

  /* Gold — Caribbean warmth */
  --color-gold: #c8952a;
  --color-gold-hover: #b08020;
  --color-gold-light: #f5e9cc;

  /* Functional */
  --color-error: #a12c3f;
  --color-success: #1a6b4a;

  /* Shadows */
  --shadow-sm: 0 1px 2px oklch(0.2 0.02 60 / 0.06);
  --shadow-md: 0 4px 12px oklch(0.2 0.02 60 / 0.08);
  --shadow-lg: 0 12px 32px oklch(0.2 0.02 60 / 0.12);
}

/* === DARK MODE === */
[data-theme='dark'] {
  --color-bg: #1a1714;
  --color-surface: #211e1a;
  --color-surface-2: #282420;
  --color-surface-offset: #1e1b17;
  --color-surface-offset-2: #2d2925;
  --color-surface-dynamic: #383430;
  --color-divider: #2e2a26;
  --color-border: #3e3a36;

  --color-text: #e0dcd6;
  --color-text-muted: #8e877e;
  --color-text-faint: #5e5850;
  --color-text-inverse: #1a1714;

  --color-primary: #4fb882;
  --color-primary-hover: #3aa06d;
  --color-primary-active: #2a8858;
  --color-primary-highlight: #2a3630;

  --color-accent: #e07a5e;
  --color-accent-hover: #c96a50;
  --color-accent-active: #b35a42;

  --color-gold: #e0b04a;
  --color-gold-hover: #c99d3a;
  --color-gold-light: #3a3020;

  --color-error: #d16070;
  --color-success: #4fb882;

  --shadow-sm: 0 1px 2px oklch(0 0 0 / 0.2);
  --shadow-md: 0 4px 12px oklch(0 0 0 / 0.3);
  --shadow-lg: 0 12px 32px oklch(0 0 0 / 0.4);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --color-bg: #1a1714;
    --color-surface: #211e1a;
    --color-surface-2: #282420;
    --color-surface-offset: #1e1b17;
    --color-surface-offset-2: #2d2925;
    --color-surface-dynamic: #383430;
    --color-divider: #2e2a26;
    --color-border: #3e3a36;
    --color-text: #e0dcd6;
    --color-text-muted: #8e877e;
    --color-text-faint: #5e5850;
    --color-text-inverse: #1a1714;
    --color-primary: #4fb882;
    --color-primary-hover: #3aa06d;
    --color-primary-active: #2a8858;
    --color-primary-highlight: #2a3630;
    --color-accent: #e07a5e;
    --color-accent-hover: #c96a50;
    --color-accent-active: #b35a42;
    --color-gold: #e0b04a;
    --color-gold-hover: #c99d3a;
    --color-gold-light: #3a3020;
    --color-error: #d16070;
    --color-success: #4fb882;
    --shadow-sm: 0 1px 2px oklch(0 0 0 / 0.2);
    --shadow-md: 0 4px 12px oklch(0 0 0 / 0.3);
    --shadow-lg: 0 12px 32px oklch(0 0 0 / 0.4);
  }
}

/* =============================================
   GLOBAL COMPONENT STYLES
   ============================================= */

/* === HEADER / NAV (Pirate Hideout-inspired sticky top nav) === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: oklch(from var(--color-bg) l c h / 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid oklch(from var(--color-text) l c h / 0.08);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.site-header--scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  max-width: var(--content-wide);
  margin: 0 auto;
  padding: var(--space-3) var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.logo-link {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  color: var(--color-text);
  flex-shrink: 0;
}

.logo-mark {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: -0.01em;
}

.logo-sub {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Desktop Nav */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.nav-link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-md);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--color-text);
  background: oklch(from var(--color-text) l c h / 0.05);
}

.nav-link.active {
  color: var(--color-primary);
  font-weight: 600;
}

/* Header utility buttons */
.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.theme-toggle {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  color: var(--color-text-muted);
}

.theme-toggle:hover {
  color: var(--color-text);
  background: oklch(from var(--color-text) l c h / 0.06);
}

.btn-cta-nav {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-5);
  background: var(--color-accent);
  color: #fff;
  font-size: var(--text-sm);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-full);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.btn-cta-nav:hover {
  background: var(--color-accent-hover);
}

/* Mobile menu toggle */
.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
  border-radius: var(--radius-md);
}

.mobile-toggle:hover {
  background: oklch(from var(--color-text) l c h / 0.06);
}

/* Mobile nav overlay */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  top: 0;
  z-index: 99;
  background: oklch(from var(--color-bg) l c h / 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  flex-direction: column;
  padding: var(--space-20) var(--space-6) var(--space-8);
  gap: var(--space-2);
  overflow-y: auto;
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile .nav-link {
  font-size: var(--text-lg);
  padding: var(--space-4) var(--space-4);
  text-align: left;
  border-bottom: 1px solid var(--color-divider);
}

.nav-mobile .btn-cta-nav {
  margin-top: var(--space-4);
  padding: var(--space-4);
  text-align: center;
  justify-content: center;
  font-size: var(--text-base);
}

.mobile-close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
  border-radius: var(--radius-md);
}

@media (max-width: 900px) {
  .nav-desktop { display: none; }
  .btn-cta-nav.desktop-only { display: none; }
  .mobile-toggle { display: flex; }
}

@media (min-width: 901px) {
  .nav-mobile { display: none !important; }
}

/* === HERO SECTION (Pirate Hideout style — full-bleed image bg) === */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: flex-end;
  padding: var(--space-16) var(--space-6) var(--space-12);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    oklch(0.12 0.02 60 / 0.92) 0%,
    oklch(0.12 0.02 60 / 0.6) 40%,
    oklch(0.12 0.02 60 / 0.25) 70%,
    oklch(0.12 0.02 60 / 0.15) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--content-wide);
  margin: 0 auto;
  width: 100%;
}

.hero-location {
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-4);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 600;
  color: #fff;
  line-height: 1.0;
  margin-bottom: var(--space-6);
  max-width: 14ch;
}

.hero-desc {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.85);
  max-width: 42ch;
  margin-bottom: var(--space-8);
  line-height: 1.5;
  font-weight: 300;
}

.hero-btns {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-8);
  padding: var(--space-2) var(--space-4);
  background: oklch(0.15 0.01 60 / 0.6);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-badge .stars {
  color: var(--color-gold);
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-8);
  font-size: var(--text-sm);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-full);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  min-height: 48px;
}

.btn-primary {
  background: var(--color-accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--color-accent-hover);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}

.btn-outline-dark {
  background: transparent;
  color: var(--color-text);
  border: 2px solid var(--color-border);
}
.btn-outline-dark:hover {
  border-color: var(--color-text-muted);
}

.btn-green {
  background: var(--color-primary);
  color: #fff;
}
.btn-green:hover {
  background: var(--color-primary-hover);
}

/* === PAGE HERO (interior pages) === */
.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  padding: var(--space-16) var(--space-6) var(--space-12);
  overflow: hidden;
}

.page-hero .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--content-wide);
  margin: 0 auto;
  width: 100%;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  color: #fff;
  margin-bottom: var(--space-3);
}

.page-hero .hero-subtitle {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.8);
  max-width: 50ch;
}

/* === SECTION CONTAINERS === */
.section {
  padding: clamp(var(--space-12), 6vw, var(--space-24)) var(--space-6);
}

.section-inner {
  max-width: var(--content-wide);
  margin: 0 auto;
}

.section-narrow {
  max-width: var(--content-default);
  margin: 0 auto;
}

.section-alt {
  background: var(--color-surface-offset);
}

.section-dark {
  background: var(--color-surface);
}

/* === SECTION HEADERS === */
.section-label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-3);
}

.section-desc {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 55ch;
}

/* === CARD GRID === */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
  gap: var(--space-6);
}

.card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.card-body {
  padding: var(--space-5) var(--space-6);
}

.card-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-2);
}

.card-text {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* === REVIEW / TESTIMONIAL CARDS === */
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
  gap: var(--space-6);
}

.review-card {
  background: var(--color-surface);
  padding: var(--space-6) var(--space-8);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.review-stars {
  color: var(--color-gold);
  font-size: var(--text-lg);
  margin-bottom: var(--space-3);
}

.review-quote {
  font-size: var(--text-base);
  color: var(--color-text);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: var(--space-4);
}

.review-author {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  font-weight: 500;
}

/* === TWO-COLUMN LAYOUT === */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

.two-col.reversed {
  direction: rtl;
}
.two-col.reversed > * {
  direction: ltr;
}

@media (max-width: 768px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  .two-col.reversed {
    direction: ltr;
  }
}

.two-col-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.two-col-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

/* === FOOTER === */
.site-footer {
  background: var(--color-surface-offset);
  border-top: 1px solid var(--color-divider);
  padding: var(--space-16) var(--space-6) var(--space-8);
}

.footer-inner {
  max-width: var(--content-wide);
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-12);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.footer-brand-desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  max-width: 30ch;
  line-height: 1.6;
}

.footer-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-4);
}

.footer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer-list li {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.5;
}

.footer-list a {
  color: var(--color-text-muted);
  text-decoration: none;
}

.footer-list a:hover {
  color: var(--color-primary);
}

.footer-social {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: oklch(from var(--color-text) l c h / 0.06);
  color: var(--color-text-muted);
  text-decoration: none;
}

.footer-social a:hover {
  background: var(--color-primary);
  color: #fff;
}

.footer-bottom {
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-divider);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.footer-copy {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}

/* === WHATSAPP FLOATING BUTTON === */
.whatsapp-float {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  z-index: 90;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

/* === MENU PAGE === */
.menu-section {
  margin-bottom: var(--space-12);
}

.menu-category {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-3);
  border-bottom: 2px solid var(--color-primary);
  display: inline-block;
}

.menu-items {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-4);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid oklch(from var(--color-text) l c h / 0.06);
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-item-name {
  font-weight: 600;
  font-size: var(--text-base);
  color: var(--color-text);
}

.menu-item-desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-top: var(--space-1);
  line-height: 1.5;
}

.menu-note {
  font-size: var(--text-sm);
  font-style: italic;
  color: var(--color-text-muted);
  margin-top: var(--space-8);
  padding: var(--space-4) var(--space-6);
  background: var(--color-surface-offset);
  border-radius: var(--radius-md);
}

/* Menu two-column */
.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12) var(--space-16);
}

@media (max-width: 768px) {
  .menu-grid {
    grid-template-columns: 1fr;
  }
}

/* === LOCATION CARDS === */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
}

@media (max-width: 768px) {
  .location-grid {
    grid-template-columns: 1fr;
  }
}

.location-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.location-card-header {
  padding: var(--space-6) var(--space-8);
  background: var(--color-primary);
  color: #fff;
}

.location-card-header h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-1);
}

.location-card-header p {
  font-size: var(--text-sm);
  opacity: 0.85;
}

.location-card-body {
  padding: var(--space-6) var(--space-8);
}

.location-detail {
  display: flex;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
  align-items: flex-start;
}

.location-detail svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--color-primary);
  margin-top: 2px;
}

.location-detail-text {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.5;
}

.location-detail-text strong {
  color: var(--color-text);
  display: block;
  margin-bottom: var(--space-1);
  font-weight: 600;
}

.location-map {
  width: 100%;
  height: 250px;
  border: none;
  border-radius: var(--radius-md);
  margin-top: var(--space-4);
  background: var(--color-surface-offset);
}

.location-features {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-4);
}

.location-tag {
  font-size: var(--text-xs);
  padding: var(--space-1) var(--space-3);
  background: var(--color-primary-highlight);
  color: var(--color-primary);
  border-radius: var(--radius-full);
  font-weight: 500;
}

/* === GALLERY === */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}

.gallery-grid .gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-4) var(--space-5);
  background: linear-gradient(to top, oklch(0.12 0.02 60 / 0.8), transparent);
  color: #fff;
  font-size: var(--text-sm);
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-grid .gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 1;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid .gallery-item:nth-child(1) {
    grid-column: span 1;
  }
}

/* Gallery filter tabs */
.gallery-tabs {
  display: flex;
  gap: var(--space-2);
  margin-bottom: var(--space-8);
  flex-wrap: wrap;
}

.gallery-tab {
  font-size: var(--text-sm);
  font-weight: 500;
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-full);
  background: var(--color-surface-offset);
  color: var(--color-text-muted);
  cursor: pointer;
  border: none;
}

.gallery-tab:hover {
  background: var(--color-surface-dynamic);
  color: var(--color-text);
}

.gallery-tab.active {
  background: var(--color-primary);
  color: #fff;
}

/* === ABOUT PAGE === */
.about-timeline {
  position: relative;
  padding-left: var(--space-10);
}

.about-timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-primary-highlight);
}

.timeline-item {
  position: relative;
  padding-bottom: var(--space-10);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: calc(-1 * var(--space-10) - 1px);
  top: var(--space-1);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-primary);
  border: 3px solid var(--color-bg);
}

.timeline-year {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-primary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-2);
}

.timeline-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-2);
}

.timeline-text {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* === SCROLL ANIMATIONS === */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === SMOOTHIE / DRINKS CALLOUT === */
.drinks-callout {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 360px;
  display: flex;
  align-items: center;
}

.drinks-callout-bg {
  position: absolute;
  inset: 0;
}

.drinks-callout-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.drinks-callout-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    oklch(0.12 0.02 60 / 0.85) 0%,
    oklch(0.12 0.02 60 / 0.4) 100%
  );
}

.drinks-callout-content {
  position: relative;
  z-index: 2;
  padding: var(--space-10) var(--space-10);
  max-width: 500px;
}

.drinks-callout-content h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: #fff;
  margin-bottom: var(--space-3);
}

.drinks-callout-content p {
  color: rgba(255,255,255,0.85);
  font-size: var(--text-base);
  margin-bottom: var(--space-6);
  line-height: 1.6;
}

/* === DIVIDER === */
.section-divider {
  width: 60px;
  height: 3px;
  background: var(--color-gold);
  border: none;
  margin: var(--space-4) 0;
  border-radius: var(--radius-full);
}

/* === SKIP LINK === */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-4);
  background: var(--color-primary);
  color: #fff;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-md);
  z-index: 200;
  font-size: var(--text-sm);
  text-decoration: none;
}

.skip-link:focus {
  top: var(--space-4);
}
