/* ===== FIJI Tiki Bar — Pure CSS Design System ===== */

/* === CSS Custom Properties === */
:root {
  /* Brand Colors */
  --color-fiji-brown: #5C2018;
  --color-fiji-brown-light: #7A3520;
  --color-fiji-brown-dark: #3D1510;
  --color-fiji-dark: #120A06;
  --color-fiji-dark-lighter: #1E120A;
  --color-fiji-dark-mid: #2A1810;
  --color-fiji-sand: #F5F0E8;
  --color-fiji-sand-dark: #E0D4C0;
  --color-fiji-gold: #C49A2A;
  --color-fiji-gold-light: #D4B84A;
  --color-fiji-orange: #C44A1A;
  --color-fiji-cream: #F5F0E8;
  --color-fiji-cream-dark: #B8A890;

  /* Button Colors */
  --color-btn-default: #0F2A1E;
  --color-btn-hover: #1E4A32;
  --color-btn-text: #D4E8DC;
  --color-btn-border: rgba(80, 180, 120, 0.2);
  --color-btn-border-hover: rgba(120, 220, 160, 0.45);
  --color-btn-glow: rgba(100, 200, 140, 0.3);

  /* Fonts — system stack, no Google Fonts */
  --font-brand: 'Georgia', 'Times New Roman', serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* ===== Base Reset ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-fiji-dark);
  color: var(--color-fiji-cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ===== Film Grain Overlay ===== */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: overlay;
}

/* ===== Tiki Pattern Background ===== */
.tiki-pattern-bg {
  position: relative;
}
.tiki-pattern-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image:
    linear-gradient(45deg, var(--color-fiji-brown) 25%, transparent 25%),
    linear-gradient(-45deg, var(--color-fiji-brown) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, var(--color-fiji-brown) 75%),
    linear-gradient(-45deg, transparent 75%, var(--color-fiji-brown) 75%);
  background-size: 40px 40px;
  background-position: 0 0, 0 20px, 20px -20px, -20px 0px;
  pointer-events: none;
  z-index: 0;
}

/* ===== Tiki Pattern (smaller) ===== */
.tiki-pattern {
  background-image:
    linear-gradient(45deg, rgba(92, 32, 24, 0.08) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(92, 32, 24, 0.08) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(92, 32, 24, 0.08) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(92, 32, 24, 0.08) 75%);
  background-size: 20px 20px;
  background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
}

/* ===== Floating Animations ===== */
@keyframes float-slow {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-12px) rotate(1deg); }
  66% { transform: translateY(6px) rotate(-0.5deg); }
}
@keyframes float-medium {
  0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
  50% { transform: translateY(-20px) rotate(2deg) scale(1.02); }
}
@keyframes drift {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(8px, -15px) rotate(1deg); }
  50% { transform: translate(-5px, -8px) rotate(-1deg); }
  75% { transform: translate(12px, -20px) rotate(0.5deg); }
}
.float-slow { animation: float-slow 12s ease-in-out infinite; }
.float-medium { animation: float-medium 8s ease-in-out infinite; }
.drift { animation: drift 20s ease-in-out infinite; }

/* ===== Dark Card ===== */
.dark-card {
  background: rgba(30, 18, 10, 0.85);
  border: 1px solid rgba(92, 32, 24, 0.2);
  border-radius: 2px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
}
.dark-card::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(135deg, rgba(196, 154, 42, 0.03) 0%, transparent 60%);
  transition: opacity 0.4s ease;
  pointer-events: none;
  border-radius: inherit;
}
.dark-card:hover {
  border-color: rgba(196, 154, 42, 0.3);
  box-shadow: 0 12px 50px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(196, 154, 42, 0.08);
}
.dark-card:hover::after { opacity: 1; }

/* ===== Section Typography ===== */
.section-subtitle {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--color-fiji-gold);
}

/* ===== Photo Frame ===== */
.photo-frame {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}
.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.photo-frame:hover img { transform: scale(1.04); }
.photo-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(92, 32, 24, 0.2);
  border-radius: inherit;
  pointer-events: none;
}

/* Corner marks */
.corner-marks { position: relative; }
.corner-marks::before,
.corner-marks::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  border-color: rgba(196, 154, 42, 0.25);
  border-style: solid;
  pointer-events: none;
}
.corner-marks::before {
  top: 12px;
  left: 12px;
  border-width: 1px 0 0 1px;
}
.corner-marks::after {
  bottom: 12px;
  right: 12px;
  border-width: 0 1px 1px 0;
}

/* ===== Cocktail Card Border ===== */
.cocktail-border {
  position: relative;
}
.cocktail-border::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-fiji-brown) 0%, var(--color-fiji-gold) 50%, var(--color-fiji-brown) 100%);
  opacity: 0.7;
}

/* ===== Hero Overlay ===== */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(92, 32, 24, 0.2) 0%, transparent 50%),
    linear-gradient(135deg, rgba(18, 10, 6, 0.92) 0%, rgba(18, 10, 6, 0.65) 40%, rgba(18, 10, 6, 0.4) 100%);
}

/* ===== Cocktail Menu Item ===== */
.cocktail-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(92, 32, 24, 0.12);
  transition: all 0.3s ease;
}
.cocktail-item:last-child { border-bottom: none; }
.cocktail-item:hover {
  padding-left: 8px;
  border-bottom-color: rgba(196, 154, 42, 0.2);
}

/* ===== Scroll Reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s cubic-bezier(0.23, 1, 0.32, 1), transform 0.9s cubic-bezier(0.23, 1, 0.32, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== Button System — Ice Cube ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  isolation: isolate;
  border-radius: 9999px;
  transition:
    transform 0.5s cubic-bezier(0.23, 1, 0.32, 1),
    box-shadow 0.5s ease,
    background-color 0.5s ease,
    border-color 0.5s ease,
    color 0.5s ease;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0.12;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='5' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
  z-index: 2;
  mix-blend-mode: overlay;
}
.btn:focus-visible {
  outline: 2px solid rgba(120, 220, 160, 0.5);
  outline-offset: 3px;
}
.btn:active {
  transform: translateY(1px) scale(0.98);
}

/* Button Sizes */
.btn-sm {
  padding: 10px 20px;
  font-size: 0.7rem;
  gap: 6px;
}
.btn-md {
  padding: 14px 28px;
  font-size: 0.8rem;
  gap: 8px;
}
.btn-lg {
  padding: 16px 36px;
  font-size: 1rem;
  gap: 8px;
}

/* Button Outline Variant */
.btn-outline {
  background: rgba(15, 42, 30, 0.15);
  backdrop-filter: blur(8px) saturate(1.2);
  -webkit-backdrop-filter: blur(8px) saturate(1.2);
  color: var(--color-btn-text);
  border: 1px solid rgba(80, 180, 120, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(200, 240, 220, 0.08),
    0 1px 4px rgba(0, 0, 0, 0.2);
}
.btn-outline::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(15, 42, 30, 0.85) 0%,
    rgba(30, 74, 50, 0.4) 50%,
    rgba(42, 92, 64, 0.15) 80%,
    transparent 100%
  );
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  pointer-events: none;
  z-index: 0;
  border-radius: inherit;
}
.btn-outline:hover {
  border-color: rgba(120, 220, 160, 0.4);
  color: #E0F5E8;
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(200, 240, 220, 0.2),
    0 8px 32px rgba(100, 200, 140, 0.2),
    0 0 20px rgba(100, 200, 140, 0.15);
}
.btn-outline:hover::after {
  transform: scaleY(1);
}

/* Button Primary Variant */
.btn-primary {
  background: linear-gradient(160deg, #162E22 0%, #0F2A1E 35%, #0B2218 70%, #081C12 100%);
  color: var(--color-btn-text);
  border: 1px solid rgba(80, 180, 120, 0.15);
  box-shadow:
    inset 0 1px 0 rgba(200, 240, 220, 0.12),
    inset 0 -2px 4px rgba(0, 0, 0, 0.3),
    0 2px 8px rgba(0, 0, 0, 0.4);
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(200, 240, 220, 0.25) 30%, rgba(200, 240, 220, 0.4) 50%, rgba(200, 240, 220, 0.25) 70%, transparent 100%);
  border-radius: 6px 6px 0 0;
  pointer-events: none;
  z-index: 3;
}
.btn-primary:hover {
  background: linear-gradient(160deg, #2A5C40 0%, #1E4A32 35%, #16402A 70%, #123822 100%);
  color: #E0F5E8;
  border-color: rgba(120, 220, 160, 0.35);
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(200, 240, 220, 0.25),
    0 8px 32px rgba(100, 200, 140, 0.2),
    0 0 20px rgba(100, 200, 140, 0.15);
}

/* ===== Navigation ===== */
.site-nav {
  position: fixed;
  top: 20px;
  left: 20px;
  right: 20px;
  z-index: 100;
  background: rgba(18, 10, 6, 0.15);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid rgba(245, 240, 232, 0.08);
  border-radius: 9999px;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.nav-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-brand-img {
  height: 48px;
  width: auto;
}
.nav-address {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-fiji-gold);
  opacity: 0.8;
  transition: opacity 0.3s ease;
  white-space: nowrap;
}
.nav-address:hover {
  opacity: 1;
  color: var(--color-fiji-sand);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Nav CTA */
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 10px 22px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(245, 240, 232, 0.55);
  border: 1px solid rgba(245, 240, 232, 0.1);
  border-radius: 9999px;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.nav-cta:hover {
  color: var(--color-fiji-sand);
  border-color: rgba(166, 170, 129, 0.3);
}
.nav-cta svg {
  width: 16px;
  height: 16px;
}

/* Nav Divider */
.nav-divider {
  width: 1px;
  height: 16px;
  background: rgba(245, 240, 232, 0.1);
  border-radius: 1px;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 36px;
  height: 36px;
  background: none;
  border: 1px solid rgba(245, 240, 232, 0.1);
  border-radius: 9999px;
  cursor: pointer;
  transition: border-color 0.3s ease;
  padding: 0;
}
.nav-hamburger:hover {
  border-color: rgba(196, 154, 42, 0.3);
}
.hamburger-line {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--color-fiji-cream-dark);
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Mobile Menu */
.nav-mobile-menu {
  position: fixed;
  top: 76px;
  left: 20px;
  right: 20px;
  z-index: 99;
  background: rgba(18, 10, 6, 0.98);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border: 1px solid rgba(245, 240, 232, 0.08);
  border-radius: 16px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.3s ease;
  pointer-events: none;
}
.nav-mobile-menu.open {
  max-height: 520px;
  opacity: 1;
  pointer-events: auto;
}
.nav-mobile-inner {
  padding: 16px 20px;
}
.nav-mobile-divider {
  height: 1px;
  background: rgba(245, 240, 232, 0.08);
  margin: 2px 0;
}
.nav-mobile-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-fiji-cream-dark);
  text-decoration: none;
  transition: all 0.2s ease;
}
.nav-mobile-link:hover {
  color: var(--color-fiji-gold);
}
.nav-mobile-icon-location {
  display: flex;
  align-items: center;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.nav-mobile-icon-location svg {
  width: 14px;
  height: 14px;
}
.nav-mobile-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 0;
  margin-top: 4px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-fiji-gold);
  text-decoration: none;
  border: 1.5px solid rgba(196, 154, 42, 0.4);
  border-radius: 9999px;
  transition: all 0.3s ease;
}
.nav-mobile-cta:hover {
  background: rgba(196, 154, 42, 0.12);
  border-color: rgba(196, 154, 42, 0.7);
  box-shadow: 0 0 24px rgba(196, 154, 42, 0.15);
}
.nav-mobile-icon {
  display: flex;
  align-items: center;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.nav-mobile-icon svg {
  width: 18px;
  height: 18px;
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 4vw), 0 100%);
  padding-bottom: 5vw;
  margin-bottom: -4vw;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  filter: saturate(0.85) contrast(1.1);
}
.hero-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.7;
  mix-blend-mode: screen;
}
.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  padding: 100px 24px 64px;
  text-align: center;
}
.hero-logo {
  margin-bottom: 32px;
}
.hero-logo img {
  margin: 0 auto;
  width: auto;
  height: 12rem;
}
.hero-subtitle {
  color: var(--color-fiji-cream-dark);
  font-size: 0.95rem;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
  font-weight: 300;
}
.hero-cta-row {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  max-width: 400px;
  margin: 0 auto;
}
.hero-bottom-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 160px;
  background: linear-gradient(to top, var(--color-fiji-dark), transparent);
  z-index: 10;
}

/* Subtitle cascade animation */
.subtitle-line {
  opacity: 0;
  transform: translateY(20px);
  animation: fade-up 0.7s ease-out forwards;
}
.subtitle-line:nth-child(1) { animation-delay: 1.1s; }
.subtitle-line:nth-child(2) { animation-delay: 1.25s; }
.subtitle-line:nth-child(3) { animation-delay: 1.4s; }
.subtitle-line:nth-child(4) { animation-delay: 1.6s; }
@keyframes fade-up {
  to { opacity: 1; transform: translateY(0); }
}

/* ===== Philosophy Section ===== */
.philosophy {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}
.philosophy-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.philosophy-bg img {
  width: 140%;
  max-width: none;
  opacity: 0.04;
  filter: sepia(0.3) brightness(1.2);
  mix-blend-mode: screen;
}
.philosophy-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 600px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(ellipse, rgba(92, 32, 24, 0.06) 0%, transparent 70%);
  filter: blur(80px);
}
.philosophy-content {
  position: relative;
  z-index: 10;
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Intro Grid — 5/7 */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 96px;
}
.intro-left {
  position: relative;
}
.intro-photo {
  aspect-ratio: 4/5;
  background: var(--color-fiji-sand);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.intro-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 32px;
}
.intro-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.intro-right h2 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 5rem);
  color: var(--color-fiji-sand);
  margin-bottom: 32px;
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.intro-right p {
  color: var(--color-fiji-cream-dark);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 600px;
  font-weight: 300;
}

/* Philosophy Cards Grid */
.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.philosophy-photo {
  position: relative;
  min-height: 300px;
  border-radius: 12px;
  overflow: hidden;
}
.philosophy-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  transition: opacity 0.7s ease;
}
.philosophy-photo:hover img {
  opacity: 0.8;
}
.philosophy-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18, 10, 6, 0.4), transparent);
}
.philosophy-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
  padding: 32px;
}
.philosophy-card-item h3 {
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-fiji-gold);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.philosophy-card-item p {
  color: var(--color-fiji-cream-dark);
  font-size: 0.9rem;
  line-height: 1.7;
  font-weight: 300;
}

/* ===== Cocktails Section ===== */
.cocktails {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}
.cocktails-glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 600px;
  height: 600px;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(196, 154, 42, 0.04) 0%, transparent 70%);
  filter: blur(80px);
}
.cocktails-content {
  position: relative;
  z-index: 10;
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Section Header */
.section-header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 80px;
}
.section-header h2 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(2.5rem, 7vw, 7rem);
  color: var(--color-fiji-sand);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 40px rgba(92, 32, 24, 0.2);
}

/* Featured Cocktail Cards */
.featured-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 80px;
}
.cocktail-card {
  overflow: hidden;
}
.cocktail-card-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.cocktail-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.23, 1, 0.32, 1);
  filter: saturate(0.9) contrast(1.05);
}
.cocktail-card:hover .cocktail-card-image img {
  transform: scale(1.1);
}
.cocktail-card-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--color-fiji-dark), rgba(18, 10, 6, 0.3), transparent);
}
.cocktail-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 0.6rem;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--color-fiji-sand);
  background: rgba(92, 32, 24, 0.85);
  padding: 6px 16px;
  letter-spacing: 0.25em;
  backdrop-filter: blur(4px);
}
.cocktail-card-body {
  padding: 20px 32px 40px;
}
.cocktail-card-body h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--color-fiji-sand);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.cocktail-card-body p {
  color: var(--color-fiji-cream-dark);
  font-size: 0.85rem;
  line-height: 1.7;
  font-weight: 300;
}

/* Full Menu Card */
.menu-card {
  padding: 20px 32px;
  position: relative;
  overflow: hidden;
}
.menu-card-inner {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.menu-card h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--color-fiji-sand);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.menu-card .menu-subtitle {
  color: var(--color-fiji-cream-dark);
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.7;
}
.menu-card .btn {
  margin-top: 32px;
}
.menu-items {
  display: flex;
  flex-direction: column;
}

/* ===== Events Section ===== */
.events-section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}
.events-bg {
  position: absolute;
  inset: 0;
}
.events-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.7) brightness(0.8);
}
.events-overlay-1 {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(18, 10, 6, 0.95), rgba(18, 10, 6, 0.7), rgba(18, 10, 6, 0.5));
}
.events-overlay-2 {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18, 10, 6, 0.8), transparent, rgba(18, 10, 6, 0.4));
}
.events-content {
  position: relative;
  z-index: 10;
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
.events-left h2 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(1.8rem, 5vw, 4.5rem);
  margin-bottom: 24px;
  color: var(--color-fiji-sand);
  line-height: 0.9;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.events-left p {
  color: var(--color-fiji-cream-dark);
  font-size: 0.95rem;
  line-height: 1.7;
  font-weight: 300;
  max-width: 480px;
  margin-bottom: 32px;
}
.events-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* ===== Reservations Section ===== */
.reservations {
  position: relative;
  padding: 64px 0 128px;
  overflow: hidden;
}
.reservations-bg {
  position: absolute;
  inset: 0;
  background: var(--color-fiji-dark-lighter);
}
.reservations-bg-pattern {
  position: absolute;
  inset: 0;
}
.reservations-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(18, 10, 6, 0.5);
}
.reservations-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  pointer-events: none;
  background: radial-gradient(ellipse, rgba(92, 32, 24, 0.08) 0%, transparent 70%);
  filter: blur(80px);
}
.reservations-content {
  position: relative;
  z-index: 10;
  max-width: 896px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}
.reservations-content h2 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(1rem, 3vw, 3rem);
  color: var(--color-fiji-sand);
  margin-bottom: 24px;
  line-height: 1.3;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.reservations-phone {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(1.5rem, 5vw, 4.5rem);
  color: var(--color-fiji-sand);
  text-decoration: none;
  transition: color 0.3s ease;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 40px rgba(92, 32, 24, 0.2);
}
.reservations-phone:hover {
  color: var(--color-fiji-gold);
}
.reservations-cta {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

/* ===== Footer Grid ===== */
.footer {
  border-top: 1px solid rgba(92, 32, 24, 0.15);
  background: var(--color-fiji-dark-lighter);
  position: relative;
}
.footer-grid {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  text-align: center;
}
.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-logo img {
  height: 80px;
  width: auto;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-fiji-sand);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-col li,
.footer-col p {
  color: var(--color-fiji-cream-dark);
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.6;
}
.footer-col a {
  color: var(--color-fiji-cream-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-col a:hover {
  color: var(--color-fiji-sand);
}
.footer-transport {
  color: rgba(196, 154, 42, 0.7) !important;
  font-size: 0.8rem;
  font-weight: 300;
  margin-top: 8px;
}

/* ===== Legal Bar ===== */
.legal {
  padding: 24px 0;
  background: var(--color-fiji-dark);
  border-top: 1px solid rgba(92, 32, 24, 0.1);
  position: relative;
}
.legal-inner {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.legal-links {
  display: flex;
  gap: 24px;
}
.legal-links a {
  color: rgba(184, 168, 144, 0.5);
  font-size: 0.75rem;
  text-decoration: none;
  transition: color 0.3s ease;
}
.legal-links a:hover {
  color: var(--color-fiji-sand);
}
.legal-copyright {
  color: rgba(184, 168, 144, 0.5);
  font-size: 0.75rem;
  font-weight: 300;
}

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

/* ===== Responsive ===== */
@media (min-width: 640px) {
  .hero-cta-row {
    flex-direction: row;
    justify-content: center;
    max-width: none;
  }
}

@media (min-width: 768px) {
  .philosophy { padding: 120px 0; }
  .cocktails { padding: 120px 0; }
  .events-section { padding: 120px 0; }
  .reservations { padding: 80px 0 160px; }
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: left;
    padding: 64px 48px;
  }
  .footer-logo { justify-content: flex-start; }
  .legal-inner {
    flex-direction: row;
    justify-content: space-between;
  }
  .nav-hamburger { display: none !important; }
  .nav-mobile-menu { display: none !important; }
  .nav-address { display: inline-flex; }
}

@media (min-width: 768px) {
  .intro-grid {
    grid-template-columns: 5fr 7fr;
    gap: 48px;
  }
  .philosophy-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .section-header {
    grid-template-columns: 8fr 4fr;
    gap: 24px;
  }
  .featured-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .cocktail-card:nth-child(2) {
    margin-top: 64px;
  }
  .menu-card {
    padding: 48px;
  }
  .menu-card-inner {
    flex-direction: row;
    gap: 64px;
  }
  .menu-card-left {
    width: 33.333%;
    flex-shrink: 0;
  }
  .menu-card-right {
    flex: 1;
  }
  .events-content {
    grid-template-columns: 7fr 5fr;
    gap: 48px;
  }
}

@media (min-width: 1024px) {
  .hero-logo img { height: 16rem; }
  .btn-sm { padding: 8px 18px; font-size: 0.7rem; }
  .btn-md { padding: 10px 22px; font-size: 0.75rem; }
  .btn-lg { padding: 12px 28px; font-size: 0.85rem; }
  .nav-cta { padding: 10px 22px; font-size: 0.75rem; }
  .nav-cta svg { width: 16px; height: 16px; }
  .footer-grid { padding: 64px 48px; gap: 48px; }
}

@media (max-width: 767px) {
  .nav-hamburger { display: flex; }
  .nav-address { display: none; }
  .nav-cta span { display: none; }
  .hero-logo img { height: 6rem; }
  .events-right { display: none; }
}
