/* ========== DESIGN SYSTEM ========== */
:root {
  --mulani-green: #2A5035;
  --mulani-green-light: #356B4A;
  --mulani-cream: #EAE2CA;
  --mulani-cream-dark: #D6CCB8;
  --mulani-gold: #C59F3A;
  --mulani-gold-light: #D4AD4E;
  --sage: #95A793;
  --sage-light: #A8BFA0;
  --charcoal: #3A3A3A;
  --text-primary: #3A3A3A;
  --text-secondary: rgba(58, 58, 58, 0.6);
  --text-tertiary: rgba(58, 58, 58, 0.4);
  --cream: #EAE2CA;
  --cream-dark: #D6CCB8;
  /* Legacy aliases */
  --clay: #C59F3A;
  --clay-light: #D4AD4E;
  --earth: #3A3A3A;
  --gold: #C59F3A;
  --mango: #D4875A;
}

[data-theme="dark"] {
  --mulani-green: #1E3D29;
  --mulani-green-light: #2A5035;
  --mulani-cream: #2A3A2E;
  --mulani-cream-dark: #1A2E1F;
  --mulani-gold: #C59F3A;
  --mulani-gold-light: #D4AD4E;
  --sage: #7A8C72;
  --sage-light: #8FA085;
  --charcoal: #EAE2CA;
  --text-primary: #EAE2CA;
  --text-secondary: rgba(234, 226, 202, 0.6);
  --text-tertiary: rgba(234, 226, 202, 0.4);
  --cream: #1E3D29;
  --cream-dark: #1A2E1F;
  --clay: #C59F3A;
  --clay-light: #D4AD4E;
  --earth: #8FA085;
  --gold: #C59F3A;
  --mango: #D4875A;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--text-primary);
  font-family: 'Open Sans', sans-serif;
  transition: background 0.6s ease, color 0.6s ease;
  overflow-x: hidden;
}

/* Grain texture overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

::selection { background: var(--clay); color: var(--cream); }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--clay); border-radius: 3px; }

/* ========== TYPOGRAPHY ========== */
.font-display { font-family: 'Open Sans', sans-serif; font-weight: 800; }
.text-h1 { font-size: clamp(4rem, 12vw, 12rem); line-height: 0.9; letter-spacing: -0.03em; }
.text-h2 { font-size: clamp(3rem, 8vw, 8rem); line-height: 0.95; letter-spacing: -0.02em; }
.text-h3 { font-size: clamp(1.5rem, 4vw, 3rem); line-height: 1; letter-spacing: -0.01em; }
.text-display-lg { font-size: clamp(2rem, 5vw, 4.5rem); line-height: 1; letter-spacing: -0.02em; }
.text-display-sm { font-size: clamp(0.875rem, 2vw, 1.25rem); letter-spacing: 0.3em; text-transform: uppercase; font-weight: 600; }
.text-regular { font-family: 'Open Sans', sans-serif; font-weight: 400; }
.text-semibold { font-family: 'Open Sans', sans-serif; font-weight: 600; }
.text-extrabold { font-family: 'Open Sans', sans-serif; font-weight: 800; }
.text-light { font-family: 'Open Sans', sans-serif; font-weight: 300; }

/* ========== LOADER ========== */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--earth);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 2rem;
  transition: opacity 0.8s, visibility 0.8s;
}
#loader.hidden { opacity: 0; visibility: hidden; }
.loader-text {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.5rem;
  color: var(--clay);
  letter-spacing: 0.5em;
  text-transform: uppercase;
  opacity: 0;
  animation: loaderFadeIn 1s 0.5s forwards;
}
@keyframes loaderFadeIn { to { opacity: 1; } }
.loader-ring {
  width: 48px; height: 48px;
  border: 2px solid rgba(196, 122, 82, 0.2);
  border-top-color: var(--clay);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ========== HERO ========== */
.hero-cinematic {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  background: var(--mulani-green);
}
.hero-cinematic .hero-bg-img {
  position: absolute; inset: 0;
  object-fit: cover;
  animation: heroKenBurns 25s ease-in-out infinite alternate-reverse;
}
@keyframes heroKenBurns {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.08) translate(-2%, -1%); }
}
.hero-cinematic .hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(42, 80, 53, 0.6) 0%,
    rgba(58, 58, 58, 0.55) 50%,
    rgba(42, 80, 53, 0.8) 100%
  );
}
.hero-cinematic .hero-content {
  position: relative; z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}
.hero-cinematic .hero-headline {
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 600;
  color: rgba(234, 226, 202, 0.9);
  line-height: 1.5;
  letter-spacing: 0.05em;
  max-width: 600px;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(40px);
  animation: heroRevealUp 1.5s cubic-bezier(0.23, 1, 0.32, 1) 0.5s forwards;
}
.hero-cinematic .hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 300;
  color: rgba(234, 226, 202, 0.8);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(30px);
  animation: heroRevealUp 1s cubic-bezier(0.23, 1, 0.32, 1) 1s forwards;
}
.hero-cinematic .hero-cta {
  background: var(--mulani-gold);
  color: var(--mulani-cream);
  padding: 1rem 3rem;
  border-radius: 50px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
  text-decoration: none;
  opacity: 0;
  transform: translateY(30px);
  animation: heroRevealUp 1s cubic-bezier(0.23, 1, 0.32, 1) 1.5s forwards;
  transition: transform 0.3s, box-shadow 0.3s;
}
.hero-cinematic .hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(197, 159, 58, 0.4);
}
.hero-cinematic .brand-name {
  font-family: 'Open Sans', sans-serif;
  font-weight: 800;
  color: rgba(234, 226, 202, 0.95);
  letter-spacing: 0.05em;
  line-height: 1.1;
}
.hero-cinematic .brand-sub {
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  color: rgba(234, 226, 202, 0.75);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: heroRevealUp 1s cubic-bezier(0.23, 1, 0.32, 1) 1.2s forwards;
}
.hero-cinematic #final .hero-tagline {
  animation: heroRevealUp 1s cubic-bezier(0.23, 1, 0.32, 1) 1.4s forwards;
}
.hero-final-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
@keyframes heroRevealUp {
  to { opacity: 1; transform: translateY(0); }
}
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(234, 226, 202, 0.5);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: heroFadeIn 1s 2s forwards;
  opacity: 0;
}
@keyframes heroFadeIn { to { opacity: 1; } }
.hero-scroll-hint .mouse {
  width: 24px; height: 36px;
  border: 2px solid rgba(234, 226, 202, 0.4);
  border-radius: 12px;
  position: relative;
}
.hero-scroll-hint .mouse::after {
  content: '';
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 3px; height: 8px;
  background: var(--clay);
  border-radius: 2px;
  animation: scrollDot 1.5s ease-in-out infinite;
}
@keyframes scrollDot {
  0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
  50% { opacity: 0.3; transform: translateX(-50%) translateY(8px); }
}

/* ========== SECTION STYLES ========== */
.section-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}
.section-split .split-img {
  position: relative;
  overflow: hidden;
}
.section-split .split-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.section-split .split-img img.logo-img {
  object-fit: contain;
  padding: 2rem;
}
.section-split:hover .split-img img { transform: scale(1.05); }
.section-split .split-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 8vw, 8rem);
}

.full-bleed {
  position: relative;
  overflow: hidden;
}
.full-bleed img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

/* ========== BIG TYPOGRAPHY SECTIONS ========== */
.big-type-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.big-type-section .big-type {
  font-family: 'Open Sans', sans-serif;
  font-weight: 900;
  font-size: clamp(3rem, 10vw, 8rem);
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--earth);
  transition: color 0.6s;
}
[data-theme="dark"] .big-type-section .big-type { color: var(--cream); }
.big-type-section .big-type-sub {
  font-size: clamp(0.875rem, 1.5vw, 1.25rem);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--clay);
  margin-top: 1rem;
}
.big-type-section .bg-img {
  position: absolute; inset: 0;
  object-fit: cover;
  opacity: 0.15;
}

/* ========== HORIZONTAL SCROLL ========== */
.h-scroll-container {
  overflow: hidden;
  padding: 4rem 0;
}
.h-scroll-track {
  display: flex;
  animation: hScroll 30s linear infinite;
  width: max-content;
}
.h-scroll-track:hover { animation-play-state: paused; }
@keyframes hScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.h-scroll-item {
  flex-shrink: 0;
  width: 300px;
  height: 400px;
  margin-right: 1.5rem;
  overflow: hidden;
  border-radius: 1rem;
  position: relative;
}
.h-scroll-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.h-scroll-item:hover img { transform: scale(1.1); }
.h-scroll-item .h-scroll-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(58, 58, 58, 0.85), transparent);
  color: var(--cream);
  font-family: 'Open Sans', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
}

/* ========== TEXT SECTION HEADER ========== */
.text-section-header {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 10vw, 8rem) 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.text-section-header .ts-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,40,24,0.75) 0%, rgba(13,40,24,0.4) 50%, rgba(13,40,24,0.75) 100%);
}
.text-section-header .relative.z-10 { position: relative; z-index: 2; }
.text-section-header .text-cream { color: var(--cream) !important; }
.text-section-header .text-cream\/60 { color: rgba(234,226,202,0.6) !important; }
.text-section-header .text-cream\/70 { color: rgba(234,226,202,0.7) !important; }
.text-section-header .text-cream\/40 { color: rgba(234,226,202,0.4) !important; }
.text-section-header .text-earth { color: var(--cream) !important; }
.text-section-header .text-earth\/60 { color: rgba(234,226,202,0.6) !important; }
.text-section-header .text-earth\/50 { color: rgba(234,226,202,0.5) !important; }
.text-section-header .text-earth\/70 { color: rgba(234,226,202,0.7) !important; }
.text-section-header .gold-divider { background: linear-gradient(90deg, var(--clay), var(--clay)); }
.text-section-header .mango-divider { background: linear-gradient(90deg, var(--clay), var(--clay)); }

/* Dark mode overrides for text-earth opacity classes */
[data-theme="dark"] .text-earth\/60 { color: rgba(234,226,202,0.6) !important; }
[data-theme="dark"] .text-earth\/50 { color: rgba(234,226,202,0.5) !important; }
[data-theme="dark"] .text-earth\/70 { color: rgba(234,226,202,0.7) !important; }

/* ========== CONNECT + INSTA MERGED ========== */
.connect-insta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.connect-insta-grid .connect-card { aspect-ratio: auto; min-height: 300px; }
.connect-insta-grid .insta-wall { columns: 2; column-gap: 0.5rem; }
.connect-insta-grid .insta-wall-item { break-inside: avoid; margin-bottom: 0.5rem; border-radius: 1rem; overflow: hidden; }
.connect-insta-grid .insta-wall-item img { width: 100%; display: block; transition: transform 0.6s; }
.connect-insta-grid .insta-wall-item:hover img { transform: scale(1.1); }

/* ========== CATEGORY CARDS ========== */
.cat-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 2rem;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.6s;
}
.cat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.2);
}
.cat-card:hover .cat-card-overlay { opacity: 0.7; }
.cat-card:hover .cat-card-title { transform: translateY(0); }
.cat-card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.cat-card:hover .cat-card-img { transform: scale(1.08); }
.cat-card-img-wrap {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; color: var(--clay);
  background: var(--cream-dark);
}
.cat-card:hover .cat-card-img-wrap { opacity: 0.7; }
.cat-card-overlay {
  position: absolute; inset: 0;
  background: rgba(13, 40, 24, 0.3);
  transition: opacity 0.5s;
}
.cat-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: clamp(2rem, 5vw, 4rem);
  z-index: 2;
}
.cat-card-title {
  font-family: 'Open Sans', sans-serif;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  color: white;
  transform: translateY(20px);
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1) 0.1s;
}
.cat-card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.5s 0.2s;
}
.cat-card:hover .cat-card-icon { opacity: 1; transform: translateY(0); }

/* ========== FLAVOUR LAB ========== */
.flavour-combo {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.flavour-combo:hover {
  transform: scale(1.03);
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}
.flavour-combo img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.flavour-combo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,40,24,0.7), rgba(196,122,82,0.3));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}
.flavour-combo-x {
  font-family: 'Open Sans', sans-serif;
  font-size: clamp(1.5rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--clay);
  margin-bottom: 0.5rem;
}
.flavour-combo-name {
  font-family: 'Open Sans', sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: white;
}
.flavour-combo-drink {
  font-size: 0.875rem;
  color: rgba(234,226,202,0.7);
  margin-top: 0.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ========== INGREDIENT CARDS ========== */
.ingredient-card {
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
  cursor: pointer;
  aspect-ratio: 3/4;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.ingredient-card:hover { transform: translateY(-12px); }
.ingredient-card img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.ingredient-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,40,24,0.85), transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
}
.ingredient-name {
  font-family: 'Open Sans', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 900;
  color: white;
}
.ingredient-drinks {
  font-size: 0.875rem;
  color: var(--clay);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 0.5rem;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s;
}
.ingredient-card:hover .ingredient-drinks { opacity: 1; transform: translateY(0); }

/* ========== MOOD SELECTOR ========== */
.mood-btn {
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
  cursor: pointer;
  min-height: 400px;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.5s;
  border: none;
  color: white;
  text-align: left;
  padding: 3rem 2.5rem;
  font-family: 'Open Sans', sans-serif;
}
.mood-btn:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}
.mood-btn-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}
.mood-btn-title {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  white-space: nowrap;
  overflow: visible;
  text-align: center;
  width: 100%;
}
.mood-btn-sub {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-top: 1rem;
}
.mood-btn-reveal {
  position: absolute;
  inset: 0;
  background: rgba(13, 40, 24, 0.9);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem;
  opacity: 0;
  transition: opacity 0.5s;
}
.mood-btn:hover .mood-btn-reveal { opacity: 1; }

/* ========== BUILD YOUR MOMENT ========== */
.bym-select {
  appearance: none;
  background: var(--cream);
  border: 2px solid var(--clay);
  border-radius: 1rem;
  padding: 1rem 1.5rem;
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  color: var(--earth);
  cursor: pointer;
  min-width: 200px;
  transition: border-color 0.3s;
}
.bym-select:focus {
  outline: none;
  border-color: var(--clay);
}
[data-theme="dark"] .bym-select { background: var(--mulani-green-light); color: var(--cream); }
.bym-result {
  background: linear-gradient(135deg, var(--mulani-green), var(--mulani-green-light));
  border-radius: 2rem;
  padding: clamp(2rem, 5vw, 4rem);
  color: white;
  text-align: center;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.bym-result-name {
  font-family: 'Open Sans', sans-serif;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  margin-bottom: 0.5rem;
}
.bym-result-desc {
  font-size: 1.125rem;
  opacity: 0.8;
  margin-bottom: 2rem;
}
.bym-result-items {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.bym-tag {
  background: rgba(196, 122, 82, 0.2);
  border: 1px solid var(--clay);
  border-radius: 50px;
  padding: 0.5rem 1.5rem;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}

/* ========== MOMENT BOOKING POPUP ========== */
.moment-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(20, 26, 22, 0.65);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.moment-modal {
  background: var(--cream);
  color: var(--earth);
  width: 100%;
  max-width: 540px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 1.75rem;
  border: 2px solid var(--gold);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  padding: 1.75rem;
  animation: mmPop 0.35s cubic-bezier(0.34, 1.4, 0.64, 1);
}
@keyframes mmPop {
  from { transform: scale(0.9) translateY(16px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
.moment-modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.moment-modal-kicker {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--clay);
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.moment-modal-title {
  font-family: 'Open Sans', sans-serif;
  font-weight: 800;
  font-size: 1.75rem;
  line-height: 1.1;
}
.moment-modal-x {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 2px solid var(--clay);
  color: var(--earth);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  background: transparent;
  transition: all 0.25s;
}
.moment-modal-x:hover { background: var(--clay); color: var(--cream); }
.moment-modal-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.mm-field label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.mm-input {
  background: #fff;
  border: 2px solid var(--clay);
  border-radius: 1rem;
  padding: 1rem 1.5rem;
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  color: var(--earth);
  width: 100%;
}
.mm-input:focus { outline: none; border-color: var(--gold); }
.mm-picks { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.mm-pick input { display: none; }
.mm-pick span {
  display: inline-block;
  border: 2px solid var(--clay);
  border-radius: 50px;
  padding: 0.65rem 1.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
}
.mm-pick input:checked + span { background: var(--clay); color: var(--cream); border-color: var(--clay); }
.moment-modal-foot {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}
.mm-btn { flex: 1 1 140px; justify-content: center; text-align: center; }
.mm-cancel {
  background: transparent;
  border: none;
  color: var(--earth);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.8rem 1rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.25s;
}
.mm-cancel:hover { opacity: 1; text-decoration: underline; }
.moment-modal-success { text-align: center; padding: 1.5rem 0.5rem; }
.mm-check {
  width: 4.5rem;
  height: 4.5rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mm-summary { margin: 1rem 0 1.75rem; line-height: 1.7; opacity: 0.85; }

/* ========== MOMENTS GRID ========== */
.moments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.moments-grid .moment-item {
  overflow: hidden;
  border-radius: 1.5rem;
  cursor: pointer;
  position: relative;
}
.moments-grid .moment-item:nth-child(1) { grid-row: span 2; }
.moments-grid .moment-item:nth-child(5) { grid-row: span 2; }
.moments-grid .moment-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.moments-grid .moment-item:hover img { transform: scale(1.08); }

/* ========== INSTAGRAM WALL ========== */
.insta-wall {
  columns: 4;
  column-gap: 0.5rem;
}
.insta-wall-item {
  break-inside: avoid;
  margin-bottom: 0.5rem;
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.insta-wall-item img {
  width: 100%;
  display: block;
  transition: transform 0.6s;
}
.insta-wall-item:hover img { transform: scale(1.1); }
.insta-label {
  position: absolute;
  bottom: 0.5rem;
  left: 0.5rem;
  right: 0.5rem;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: white;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 2;
}

/* ========== CONNECT SECTION ========== */
.connect-card {
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
  aspect-ratio: 4/5;
}
.connect-card img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.connect-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,40,24,0.6), transparent 50%);
}
.connect-card-label {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  font-family: 'Open Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  letter-spacing: 0.05em;
  z-index: 2;
}

/* ========== RECOMMENDATIONS ========== */
#rec-list { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }
#rec-list .rec-tag { background: var(--clay); color: var(--cream); border-radius: 50px; padding: 0.5rem 1.2rem; font-size: 0.85rem; font-weight: 600; display: flex; align-items: center; gap: 0.5rem; animation: mmPop 0.3s ease; }
#rec-list .rec-tag img { width: 40px; height: 40px; object-fit: cover; border-radius: 0.5rem; }
#rec-list .rec-tag span { cursor: pointer; opacity: 0.7; }
#rec-list .rec-tag span:hover { opacity: 1; }
.nav-pill {
  position: fixed;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  background: rgba(13, 40, 24, 0.85);
  backdrop-filter: blur(20px);
  border-radius: 50px;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  opacity: 0;
  transform: translateX(-50%) translateY(-20px);
}
.nav-pill.visible { opacity: 1; transform: translateX(-50%) translateY(0); }
.nav-pill a {
  color: rgba(234, 226, 202, 0.7);
  font-family: 'Open Sans', sans-serif;
  font-size: 0.8125rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s;
}
.nav-pill a:hover { color: var(--clay); }
.nav-pill .nav-brand {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: white;
  margin-right: 0.5rem;
}
.nav-link {
  color: #3A3A3A;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.8125rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 600;
}
.nav-link:hover { color: var(--clay); }

/* ========== BRAND LOGO ========== */
.brand-logo-container {
  display: inline-flex;
  align-items: center;
  padding: 1.25rem !important;
}
.brand-logo {
  height: auto !important;
  object-fit: contain !important;
  display: block !important;
  max-height: 104px !important;
  width: auto !important;
}
.header-logo {
  max-height: 104px !important;
  width: auto !important;
}
.footer-logo {
  max-height: 64px !important;
}
@media (max-width: 768px) {
  .header-logo {
    max-height: 80px !important;
  }
}

/* ========== REVEAL ANIMATIONS ========== */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1s cubic-bezier(0.23, 1, 0.32, 1), transform 1s 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; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ========== PARALLAX ========== */
.parallax-bg {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.menu-filter {
  transition: all 0.3s;
}
.menu-filter:hover {
  opacity: 0.85;
}

.text-clay { color: var(--clay); }
.text-earth { color: var(--earth); }
.text-mango { color: var(--mango); }

/* ========== BUTTONS ========== */
.btn-gold {
  background: linear-gradient(135deg, var(--clay), var(--clay-light));
  color: var(--cream);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
  cursor: pointer;
  font-family: 'Open Sans', sans-serif;
  text-decoration: none;
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(196, 122, 82, 0.35);
}
.btn-outline {
  background: transparent;
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(234, 226, 202, 0.3);
  cursor: pointer;
  font-family: 'Open Sans', sans-serif;
  text-decoration: none;
}
.btn-outline:hover {
  background: rgba(234, 226, 202, 0.1);
  border-color: rgba(234, 226, 202, 0.6);
}

/* ========== DIVIDER ========== */
.gold-divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--clay), var(--clay));
  border-radius: 2px;
}

/* ========== TESTIMONIAL ========== */
.testimonial-card {
  background: var(--cream);
  border-radius: 2rem;
  padding: clamp(2rem, 5vw, 3rem);
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  border: 1px solid var(--clay);
}
[data-theme="dark"] .testimonial-card { background: var(--mulani-green-light); }
.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.quote-mark {
  font-family: 'Open Sans', sans-serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--clay);
  opacity: 0.2;
}

/* ========== FOOTER ========== */
.site-footer {
  background: var(--earth);
  color: rgba(234, 226, 202, 0.7);
  padding: clamp(4rem, 10vw, 8rem) 2rem 3rem;
}
.site-footer a { color: rgba(234, 226, 202, 0.5); transition: color 0.3s; }
.site-footer a:hover { color: var(--clay); }

/* ========== TOAST ========== */
.toast {
  position: fixed; bottom: 2rem; right: 2rem;
  background: var(--earth); color: var(--cream);
  padding: 1rem 2rem; border-radius: 1rem;
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  transform: translateY(120%); opacity: 0;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 10000;
  font-family: 'Open Sans', sans-serif;
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .moments-grid { grid-template-columns: repeat(2, 1fr); }
  .moments-grid .moment-item:nth-child(n) { grid-row: span 1; }
}
@media (max-width: 768px) {
  .section-split { grid-template-columns: 1fr; }
  .section-split .split-text { padding: 3rem 2rem; }
  .moments-grid { grid-template-columns: 1fr; }
  .moments-grid .moment-item:nth-child(n) { grid-row: span 1; }
  .insta-wall { columns: 2; }
  .h-scroll-item { width: 250px; height: 350px; }
  .nav-pill { padding: 0.5rem 1rem; gap: 1rem; }
  .brand-logo-container { padding: 0.5rem !important; }
  .brand-logo, .header-logo { max-height: 48px !important; }
}

/* ========== ANIMATION UTILITIES ========== */
.scroll-parallax { will-change: transform; }
.float-slow { animation: floatSlow 8s ease-in-out infinite; }
@keyframes floatSlow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

/* ========== SECTION ALT ========== */
.section-alt { background: var(--cream-dark); }
.cat-page { min-height: 100vh; }
.cat-page-header {
  position: relative;
  height: 70vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.cat-page-header img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.cat-page-header .cat-page-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,40,24,0.3), rgba(13,40,24,0.7));
}
.cat-page-header .cat-page-content {
  position: relative; z-index: 2;
  padding: 2rem;
}
.cat-page-header .cat-page-title {
  font-family: 'Open Sans', sans-serif;
  font-size: clamp(3rem, 10vw, 8rem);
  font-weight: 900;
  color: white;
  line-height: 1;
}
.cat-page-header .cat-page-sub {
  font-size: 1rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--clay);
  margin-top: 1rem;
}
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.cat-item {
  border-radius: 1.5rem;
  overflow: hidden;
  background: var(--cream);
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.cat-item:hover { transform: translateY(-8px); }
.cat-item-img {
  width: 100%; height: 250px;
  object-fit: cover;
}
.cat-item-body { padding: 1.5rem; }
.cat-item-name {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
}
.cat-item-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-top: 0.5rem;
}
.cat-item-price {
  font-weight: 700;
  color: var(--clay);
  margin-top: 0.75rem;
}

/* ========== ORDER PAGE ========== */
.cart-pill {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 200;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--clay), var(--clay-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(196,122,82,0.4);
  transition: transform 0.3s, box-shadow 0.3s;
}
.cart-pill:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(196,122,82,0.6);
}
.cart-pill i {
  color: var(--cream);
  font-size: 1.5rem;
}
.cart-pill-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--earth);
  color: var(--cream);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}
.order-item-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  background: var(--cream);
  border: 1px solid var(--clay);
  transition: transform 0.3s, box-shadow 0.3s;
}
.order-item-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}
.order-item-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.order-item-info {
  padding: 1.25rem;
}
.add-to-cart-btn {
  background: var(--clay);
  color: var(--cream);
  border: none;
  border-radius: 50px;
  padding: 0.5rem 1.25rem;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s;
}
.add-to-cart-btn:hover {
  background: var(--earth);
  transform: scale(1.05);
}

/* CART PANEL */
.cart-panel {
  background: var(--cream);
  border: 1px solid var(--clay);
  border-radius: 2rem;
  padding: 1.5rem;
}
.cart-items-list {
  max-height: 300px;
  overflow-y: auto;
}
.cart-total {
  display: block;
}

/* CHECKOUT SECTION */
.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(234,226,202,0.2);
  border-radius: 1rem;
  background: rgba(234,226,202,0.05);
  color: var(--cream);
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s;
}
.form-input:focus {
  outline: none;
  border-color: var(--clay);
}
.form-input::placeholder {
  color: rgba(234,226,202,0.3);
}

/* BACKOFFICE */
.order-card {
  transition: transform 0.3s;
}
.order-card:hover {
  transform: translateY(-4px);
}
.order-status {
  background: rgba(196,122,82,0.2);
  color: var(--clay);
}
.order-status:hover {
  background: var(--clay);
  color: var(--cream);
}
.status-btn {
  transition: all 0.3s;
}
.status-btn:hover {
  background: var(--clay);
  color: var(--cream);
}

/* RADIO BUTTONS */
input[type="radio"].accent-clay {
  accent-color: var(--clay);
}

/* CHECKOUT SECTION OVERLAY */
.checkout-section {
  background: var(--earth);
}

/* ORDER PAGE SPACING */
.order-page {
  padding-bottom: 4rem;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .cart-pill {
    bottom: 1rem;
    right: 1rem;
    width: 50px;
    height: 50px;
  }
  .order-item-img { height: 150px; }
  .order-item-info { padding: 1rem; }
}

/* DARK BUTTON ON LIGHT BG */
.btn-outline-light {
  background: transparent;
  color: var(--earth);
  border: 1px solid var(--clay);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-family: 'Open Sans', sans-serif;
  text-decoration: none;
}
.btn-outline-light:hover {
  background: var(--clay);
  color: var(--cream);
}

/* FORM INPUT ON LIGHT BG */
.form-input-light {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--clay);
  border-radius: 1rem;
  background: var(--cream);
  color: var(--earth);
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s;
}
.form-input-light:focus {
  outline: none;
  border-color: var(--clay);
}
.form-input-light::placeholder {
  color: var(--text-tertiary);
}
