/* ============================================================
   SWEET JIREH — PUBLIC SITE STYLES
   ============================================================ */

:root {
  --purple-deep: #5B3FA3;
  --purple-mid: #8B6FD1;
  --lavender: #C9B6E8;
  --lavender-mist: #F0E9F9;
  --cream: #FAF5EC;
  --paper: #FBF8F0;
  --pink-rose: #D87CBA;
  --strawberry: #E6324B;
  --gold: #C9A14A;
  --chocolate: #5A3624;
  --ink: #2A1F3F;
  --ink-soft: #5A4B70;

  /* Magical hero palette (matches Sweet Jireh flyer) */
  --magic-bg-deep: #1F0F4A;
  --magic-bg: #3A1B6E;
  --magic-bg-mid: #5827A8;
  --pink-bright: #E84B9C;
  --pink-soft: #F2A5D1;
  --peach-glow: #FFD4B8;
  --star-yellow: #FFE873;
  --gradient-wordmark: linear-gradient(135deg, #FFD4B8 0%, #F2A5D1 30%, #E84B9C 60%, #9B5BD9 100%);

  --display: 'Sacramento', cursive;
  --serif: 'Fraunces', Georgia, serif;
  --body: 'Nunito', system-ui, sans-serif;

  --shadow-soft: 0 4px 20px rgba(91, 63, 163, 0.08);
  --shadow-md: 0 10px 40px rgba(91, 63, 163, 0.15);
  --shadow-lg: 0 20px 60px rgba(91, 63, 163, 0.2);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  color: #FFFFFF;
  background: var(--magic-bg-deep);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ============ BILINGUAL TOGGLE LOGIC ============ */
:root[lang="en"] [lang="es"],
:root[lang="es"] [lang="en"] { display: none !important; }

[lang="en"]:not(:root),
[lang="es"]:not(:root) { display: contents; }

/* ============ NOISE TEXTURE ============ */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.5;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.36 0 0 0 0 0.25 0 0 0 0 0.64 0 0 0 0.08 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ============ NAV ============ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 6px 6vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: rgba(31, 15, 74, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(232, 75, 156, 0.15);
}

.nav-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
  transition: transform 0.3s;
  filter: drop-shadow(0 2px 12px rgba(155, 91, 217, 0.4));
}

.nav-brand img {
  height: 130px;
  width: auto;
  display: block;
}

.nav-brand:hover {
  transform: scale(1.05);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-links a {
  font-family: var(--body);
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.3s;
}

.nav-links a:hover { color: var(--pink-soft); }

/* Language toggle */
.lang-toggle {
  display: inline-flex;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 100px;
  padding: 3px;
  gap: 2px;
}

.lang-toggle button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 100px;
  font-family: var(--body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.85);
  transition: all 0.25s;
  line-height: 1;
}

.lang-toggle button.active {
  background: linear-gradient(135deg, var(--pink-bright), #9B5BD9);
  color: white;
}

.lang-toggle button:not(.active):hover {
  color: white;
}

.nav-cta {
  background: linear-gradient(135deg, var(--pink-bright) 0%, #9B5BD9 100%);
  color: white;
  padding: 10px 20px;
  border-radius: 100px;
  text-decoration: none;
  font-family: var(--body);
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(232, 75, 156, 0.4);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(232, 75, 156, 0.6);
  filter: brightness(1.1);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: white;
  margin: 5px 0;
  transition: 0.3s;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 6vw 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at top right, rgba(232, 75, 156, 0.35) 0%, transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(155, 91, 217, 0.45) 0%, transparent 60%),
    radial-gradient(ellipse at center, var(--magic-bg-mid) 0%, var(--magic-bg) 50%, var(--magic-bg-deep) 100%);
}

/* Starfield overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(2px 2px at 20% 30%, rgba(255, 232, 115, 0.9), transparent),
    radial-gradient(1px 1px at 60% 70%, rgba(255, 255, 255, 0.8), transparent),
    radial-gradient(1.5px 1.5px at 80% 10%, rgba(242, 165, 209, 0.9), transparent),
    radial-gradient(2px 2px at 40% 80%, rgba(255, 255, 255, 0.6), transparent),
    radial-gradient(1px 1px at 90% 60%, rgba(255, 232, 115, 0.7), transparent),
    radial-gradient(1.5px 1.5px at 10% 60%, rgba(242, 165, 209, 0.8), transparent),
    radial-gradient(1px 1px at 70% 40%, rgba(255, 255, 255, 0.5), transparent),
    radial-gradient(2px 2px at 30% 15%, rgba(255, 232, 115, 0.6), transparent),
    radial-gradient(1.5px 1.5px at 85% 85%, rgba(255, 255, 255, 0.7), transparent);
  background-size: 400px 400px, 350px 350px, 500px 500px, 450px 450px, 380px 380px, 420px 420px, 360px 360px, 480px 480px, 410px 410px;
  animation: twinkleField 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink-soft);
  margin-bottom: 24px;
  text-shadow: 0 2px 12px rgba(232, 75, 156, 0.4);
}

.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1.5px;
  background: var(--pink-bright);
  box-shadow: 0 0 8px rgba(232, 75, 156, 0.6);
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 92px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin-bottom: 20px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.hero h1 .script {
  font-family: var(--display);
  font-size: 1.5em;
  font-weight: 400;
  background: var(--gradient-wordmark);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  line-height: 1.05;
  margin: 12px 0 4px;
  padding-top: 8px;
  transform: rotate(-2deg);
  transform-origin: left center;
  filter: drop-shadow(0 4px 20px rgba(232, 75, 156, 0.4));
}

.hero h1 em {
  font-style: italic;
  color: var(--peach-glow);
  text-shadow: 0 0 30px rgba(255, 212, 184, 0.5);
}

.hero p.lead {
  font-family: var(--serif);
  font-size: clamp(18px, 1.4vw, 21px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.5;
  margin-bottom: 36px;
  max-width: 480px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary, .btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 100px;
  font-family: var(--body);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--pink-bright) 0%, #B83AE0 100%);
  color: white;
  box-shadow: 0 4px 25px rgba(232, 75, 156, 0.5);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 35px rgba(232, 75, 156, 0.7);
  filter: brightness(1.1);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: white;
  color: var(--magic-bg);
  border-color: white;
}

.hero-visual {
  position: relative;
}

.hero-caricature-wrap {
  position: relative;
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
  aspect-ratio: 3/4;
}

#hero-caricature-img {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 24px;
  filter: drop-shadow(0 20px 60px rgba(232, 75, 156, 0.4)) drop-shadow(0 0 80px rgba(155, 91, 217, 0.3));
  animation: float 6s ease-in-out infinite;
}

#hero-logo-badge {
  position: absolute;
  bottom: -30px;
  right: -30px;
  z-index: 4;
  width: 180px;
  height: 180px;
  object-fit: contain;
  background: transparent;
  padding: 0;
  border-radius: 50%;
  filter:
    drop-shadow(0 10px 30px rgba(155, 91, 217, 0.7))
    drop-shadow(0 0 50px rgba(232, 75, 156, 0.4));
  animation: float 5s ease-in-out infinite;
  animation-delay: 1.5s;
}

.hero-caricature-glow {
  position: absolute;
  inset: -15%;
  z-index: 1;
  background:
    radial-gradient(circle at center, rgba(232, 75, 156, 0.4) 0%, transparent 60%),
    radial-gradient(circle at 30% 30%, rgba(255, 212, 184, 0.3) 0%, transparent 50%);
  border-radius: 50%;
  animation: pulse 4s ease-in-out infinite;
  filter: blur(20px);
}

.sparkle {
  position: absolute;
  z-index: 4;
  pointer-events: none;
  text-shadow: 0 0 20px currentColor;
}

.sparkle-1 { top: 0%; left: 5%; font-size: 38px; color: var(--star-yellow); animation: twinkle 3s ease-in-out infinite; }
.sparkle-2 { top: 15%; right: -5%; font-size: 28px; color: var(--pink-soft); animation: twinkle 3s ease-in-out 0.8s infinite; }
.sparkle-3 { bottom: 20%; left: -8%; font-size: 32px; color: var(--star-yellow); animation: twinkle 3s ease-in-out 1.5s infinite; }
.sparkle-4 { bottom: 5%; right: 10%; font-size: 24px; color: #FFFFFF; animation: twinkle 3s ease-in-out 2.2s infinite; }
.sparkle-5 { top: 45%; left: -10%; font-size: 42px; color: var(--pink-bright); animation: twinkle 3s ease-in-out 1.1s infinite; }

.heart {
  position: absolute;
  z-index: 4;
  pointer-events: none;
  color: var(--pink-bright);
  text-shadow: 0 0 25px rgba(232, 75, 156, 0.8);
  font-size: 28px;
  animation: heartBeat 2.5s ease-in-out infinite;
}

.heart-1 { top: 8%; right: 15%; animation-delay: 0s; font-size: 32px; }
.heart-2 { top: 50%; right: -5%; animation-delay: 0.7s; font-size: 24px; color: var(--pink-soft); }
.heart-3 { bottom: 30%; left: 5%; animation-delay: 1.4s; font-size: 36px; }

@keyframes twinkleField {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

@keyframes heartBeat {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.2); opacity: 1; }
}

/* ============ MARQUEE ============ */
.marquee {
  background: var(--magic-bg-deep);
  color: var(--pink-soft);
  padding: 22px 0;
  overflow: hidden;
  position: relative;
  z-index: 2;
  border-top: 2px solid rgba(232, 75, 156, 0.3);
  border-bottom: 2px solid rgba(232, 75, 156, 0.3);
}

.marquee-track {
  display: flex;
  gap: 60px;
  animation: scroll 8s linear infinite;
  white-space: nowrap;
  font-family: var(--display);
  font-size: 32px;
  background: var(--gradient-wordmark);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 12px rgba(232, 75, 156, 0.3));
}

.marquee-track span {
  display: flex;
  align-items: center;
  gap: 60px;
}

.marquee-track .dot {
  color: var(--star-yellow);
  -webkit-text-fill-color: var(--star-yellow);
  font-size: 16px;
  text-shadow: 0 0 12px rgba(255, 232, 115, 0.6);
}

/* ============ SECTION COMMON ============ */
.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--pink-soft);
  margin-bottom: 20px;
  text-shadow: 0 0 12px rgba(242, 165, 209, 0.4);
}

/* Starfield helper - applies to any section */
.starfield-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1.5px 1.5px at 15% 20%, rgba(255, 232, 115, 0.7), transparent),
    radial-gradient(1px 1px at 65% 60%, rgba(255, 255, 255, 0.6), transparent),
    radial-gradient(2px 2px at 85% 30%, rgba(242, 165, 209, 0.7), transparent),
    radial-gradient(1px 1px at 35% 80%, rgba(255, 255, 255, 0.5), transparent),
    radial-gradient(1.5px 1.5px at 90% 70%, rgba(255, 232, 115, 0.6), transparent),
    radial-gradient(1.5px 1.5px at 5% 50%, rgba(242, 165, 209, 0.7), transparent);
  background-size: 400px 400px, 350px 350px, 500px 500px, 380px 380px, 420px 420px, 360px 360px;
  animation: twinkleField 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

/* ============ ABOUT ============ */
.about {
  position: relative;
  padding: 120px 6vw;
  background:
    radial-gradient(ellipse at top left, rgba(232, 75, 156, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(155, 91, 217, 0.2) 0%, transparent 50%),
    var(--magic-bg);
  overflow: hidden;
  z-index: 2;
}

.about::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1.5px 1.5px at 15% 20%, rgba(255, 232, 115, 0.7), transparent),
    radial-gradient(1px 1px at 65% 60%, rgba(255, 255, 255, 0.6), transparent),
    radial-gradient(2px 2px at 85% 30%, rgba(242, 165, 209, 0.7), transparent),
    radial-gradient(1px 1px at 35% 80%, rgba(255, 255, 255, 0.5), transparent),
    radial-gradient(1.5px 1.5px at 90% 70%, rgba(255, 232, 115, 0.6), transparent),
    radial-gradient(1.5px 1.5px at 5% 50%, rgba(242, 165, 209, 0.7), transparent);
  background-size: 400px 400px, 350px 350px, 500px 500px, 380px 380px, 420px 420px, 360px 360px;
  animation: twinkleField 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

.about-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.about h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: #FFFFFF;
  margin-bottom: 28px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.about h2 .script {
  font-family: var(--display);
  font-size: 1.3em;
  background: var(--gradient-wordmark);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 400;
  line-height: 1.1;
  display: inline-block;
  padding: 8px 0 4px;
  filter: drop-shadow(0 2px 15px rgba(232, 75, 156, 0.4));
}

.about-lead {
  font-family: var(--serif);
  font-size: 20px;
  color: rgba(255, 255, 255, 0.88);
  max-width: 640px;
  margin: 0 auto 64px;
  line-height: 1.6;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.pillar {
  text-align: center;
  padding: 36px 26px;
  background: linear-gradient(135deg,
    rgba(255, 212, 184, 0.16) 0%,
    rgba(242, 165, 209, 0.22) 50%,
    rgba(232, 75, 156, 0.18) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  border: 1px solid rgba(242, 165, 209, 0.4);
  box-shadow:
    0 8px 32px rgba(232, 75, 156, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.pillar:hover {
  background: linear-gradient(135deg,
    rgba(255, 212, 184, 0.24) 0%,
    rgba(242, 165, 209, 0.32) 50%,
    rgba(232, 75, 156, 0.26) 100%);
  border-color: rgba(242, 165, 209, 0.6);
  box-shadow:
    0 12px 40px rgba(232, 75, 156, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transform: translateY(-4px);
}

.pillar-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  color: var(--pink-bright);
  filter: drop-shadow(0 0 12px rgba(232, 75, 156, 0.5));
}

.pillar h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.pillar p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.55;
}

/* ============ MENU ============ */
.menu {
  position: relative;
  padding: 120px 6vw;
  background:
    radial-gradient(ellipse at top right, rgba(232, 75, 156, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(155, 91, 217, 0.25) 0%, transparent 50%),
    var(--magic-bg-deep);
  overflow: hidden;
  z-index: 2;
}

.menu::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1.5px 1.5px at 15% 20%, rgba(255, 232, 115, 0.7), transparent),
    radial-gradient(1px 1px at 65% 60%, rgba(255, 255, 255, 0.6), transparent),
    radial-gradient(2px 2px at 85% 30%, rgba(242, 165, 209, 0.7), transparent),
    radial-gradient(1px 1px at 35% 80%, rgba(255, 255, 255, 0.5), transparent),
    radial-gradient(1.5px 1.5px at 90% 70%, rgba(255, 232, 115, 0.6), transparent),
    radial-gradient(1.5px 1.5px at 5% 50%, rgba(242, 165, 209, 0.7), transparent);
  background-size: 400px 400px, 350px 350px, 500px 500px, 380px 380px, 420px 420px, 360px 360px;
  animation: twinkleField 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.menu::after { display: none; }

.menu-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.menu-header {
  text-align: center;
  margin-bottom: 72px;
}

.menu-header h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: #FFFFFF;
  margin-bottom: 16px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.menu-header h2 .script {
  font-family: var(--display);
  font-size: 1.5em;
  background: var(--gradient-wordmark);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  line-height: 1.05;
  margin-bottom: 4px;
  padding-top: 8px;
  filter: drop-shadow(0 2px 15px rgba(232, 75, 156, 0.4));
}

.menu-header p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.82);
  max-width: 560px;
  margin: 0 auto;
}

.menu-section { margin-bottom: 72px; }

.menu-section-title {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
}

.menu-section-title h3 {
  font-family: var(--display);
  font-size: 48px;
  background: var(--gradient-wordmark);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.15;
  padding: 8px 0 4px;
  white-space: nowrap;
  filter: drop-shadow(0 2px 12px rgba(232, 75, 156, 0.4));
}

.menu-section-title .line {
  flex: 1;
  height: 1.5px;
  background: linear-gradient(90deg, var(--pink-bright), transparent);
  opacity: 0.6;
}

.menu-section-title .price-tag {
  font-family: var(--body);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: white;
  background: linear-gradient(135deg, var(--pink-bright), #9B5BD9);
  padding: 7px 16px;
  border-radius: 100px;
  border: none;
  box-shadow: 0 4px 15px rgba(232, 75, 156, 0.3);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.menu-card {
  background: var(--paper);
  border-radius: 12px;
  padding: 0;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25), 0 0 1px rgba(255, 255, 255, 0.1);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s;
  border: 1px solid rgba(232, 75, 156, 0.15);
  overflow: hidden;
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(232, 75, 156, 0.15);
}

.menu-card-image {
  width: 100%;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--lavender), var(--purple-mid));
  background-size: cover;
  background-position: center;
  display: block;
}

.menu-card-image.empty {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(242, 165, 209, 0.4) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 70%, rgba(155, 91, 217, 0.5) 0%, transparent 55%),
    linear-gradient(135deg, #B89CDE 0%, #8B6FD1 50%, #6B4FB8 100%);
}

/* Decorative inner frame */
.menu-card-image.empty::before {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 2px;
  pointer-events: none;
}

/* Inner corner ornaments */
.menu-card-image.empty::after {
  content: '';
  position: absolute;
  inset: 14px;
  background-image:
    radial-gradient(circle at 0% 0%, rgba(255, 232, 115, 0.6) 0%, transparent 8%),
    radial-gradient(circle at 100% 0%, rgba(242, 165, 209, 0.6) 0%, transparent 8%),
    radial-gradient(circle at 0% 100%, rgba(242, 165, 209, 0.6) 0%, transparent 8%),
    radial-gradient(circle at 100% 100%, rgba(255, 232, 115, 0.6) 0%, transparent 8%);
  pointer-events: none;
}

.empty-monogram {
  position: relative;
  z-index: 2;
  font-family: var(--display);
  font-size: clamp(36px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.95);
  text-align: center;
  line-height: 1.1;
  padding: 8px 24px 0;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15), 0 0 30px rgba(255, 255, 255, 0.2);
  letter-spacing: 0.5px;
  max-width: 90%;
}

.empty-sparkle {
  position: absolute;
  z-index: 2;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
  pointer-events: none;
  animation: twinkle 3s ease-in-out infinite;
}

.empty-sparkle.s1 { top: 14%; left: 12%; font-size: 18px; animation-delay: 0s; }
.empty-sparkle.s2 { top: 22%; right: 18%; font-size: 14px; color: rgba(255, 232, 115, 0.9); animation-delay: 0.6s; }
.empty-sparkle.s3 { bottom: 18%; left: 22%; font-size: 16px; color: rgba(242, 165, 209, 0.9); animation-delay: 1.2s; }
.empty-sparkle.s4 { bottom: 26%; right: 14%; font-size: 20px; animation-delay: 1.8s; }
.empty-sparkle.s5 { top: 50%; left: 6%; font-size: 12px; color: rgba(255, 232, 115, 0.8); animation-delay: 2.4s; }

.menu-card-body {
  padding: 26px 28px 28px;
  position: relative;
  background-image: repeating-linear-gradient(
    to bottom,
    transparent,
    transparent 28px,
    rgba(201, 182, 232, 0.12) 28px,
    rgba(201, 182, 232, 0.12) 29px
  );
}

.menu-card-body::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 12px;
  bottom: 12px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(232, 75, 156, 0.25) 20%, rgba(232, 75, 156, 0.25) 80%, transparent);
}

.menu-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 12px;
  padding-left: 14px;
}

.menu-card h4 {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.menu-card .price {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  background: var(--gradient-wordmark);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.menu-card .price.tbd {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  background: var(--gradient-wordmark);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-top: 8px;
  white-space: nowrap;
}

.menu-card p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
  padding-left: 14px;
}

.menu-card .tag {
  display: inline-block;
  margin-top: 14px;
  margin-left: 14px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--purple-deep);
  background: transparent;
  padding: 4px 0;
  border-top: 1px solid rgba(91, 63, 163, 0.25);
  border-bottom: 1px solid rgba(91, 63, 163, 0.25);
  padding-left: 12px;
  padding-right: 12px;
  border-radius: 0;
}

.menu-note {
  text-align: center;
  margin-top: 40px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.78);
}

.menu-note .plus {
  color: var(--pink-bright);
  font-weight: 700;
  font-style: normal;
}

/* ============ ORDER ============ */
.order {
  position: relative;
  padding: 120px 6vw;
  background:
    radial-gradient(ellipse at top right, rgba(232, 75, 156, 0.4) 0%, transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(155, 91, 217, 0.5) 0%, transparent 60%),
    linear-gradient(135deg, var(--magic-bg-mid) 0%, var(--magic-bg-deep) 100%);
  overflow: hidden;
  z-index: 2;
}

.order::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(2px 2px at 20% 30%, rgba(255, 232, 115, 0.9), transparent),
    radial-gradient(1px 1px at 60% 70%, rgba(255, 255, 255, 0.8), transparent),
    radial-gradient(1.5px 1.5px at 80% 10%, rgba(242, 165, 209, 0.9), transparent),
    radial-gradient(2px 2px at 40% 80%, rgba(255, 255, 255, 0.6), transparent),
    radial-gradient(1px 1px at 90% 60%, rgba(255, 232, 115, 0.7), transparent),
    radial-gradient(1.5px 1.5px at 10% 60%, rgba(242, 165, 209, 0.8), transparent);
  background-size: 400px 400px, 350px 350px, 500px 500px, 450px 450px, 380px 380px, 420px 420px;
  animation: twinkleField 8s ease-in-out infinite;
  opacity: 0.9;
}

.order-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  color: #FFFFFF;
}

.order .section-eyebrow { color: var(--pink-soft); }

.order h2 {
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.order h2 .script {
  font-family: var(--display);
  font-size: 1.5em;
  background: var(--gradient-wordmark);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  font-weight: 400;
  line-height: 1.1;
  margin: 14px 0;
  padding-top: 10px;
  filter: drop-shadow(0 2px 15px rgba(232, 75, 156, 0.5));
}

.order p {
  font-family: var(--serif);
  font-size: 19px;
  color: rgba(250, 245, 236, 0.85);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.whatsapp-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #25D366;
  color: white;
  padding: 22px 40px;
  border-radius: 100px;
  text-decoration: none;
  font-family: var(--body);
  font-weight: 700;
  font-size: 18px;
  transition: all 0.3s;
  box-shadow: 0 10px 40px rgba(37, 211, 102, 0.4);
}

.whatsapp-cta:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 15px 50px rgba(37, 211, 102, 0.55);
}

.whatsapp-cta svg { width: 28px; height: 28px; }

.order-phone {
  margin-top: 24px;
  font-family: var(--display);
  font-size: 42px;
  background: var(--gradient-wordmark);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 15px rgba(232, 75, 156, 0.4));
}

.delivery-note {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(201, 182, 232, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--lavender);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ============ EVENTS ============ */
.events-section {
  padding: 80px 6vw;
  background:
    radial-gradient(ellipse at top left, rgba(155, 91, 217, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(232, 75, 156, 0.15) 0%, transparent 50%),
    var(--magic-bg);
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.events-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1.5px 1.5px at 15% 20%, rgba(255, 232, 115, 0.7), transparent),
    radial-gradient(1px 1px at 65% 60%, rgba(255, 255, 255, 0.6), transparent),
    radial-gradient(2px 2px at 85% 30%, rgba(242, 165, 209, 0.7), transparent),
    radial-gradient(1px 1px at 35% 80%, rgba(255, 255, 255, 0.5), transparent),
    radial-gradient(1.5px 1.5px at 90% 70%, rgba(255, 232, 115, 0.6), transparent),
    radial-gradient(1.5px 1.5px at 5% 50%, rgba(242, 165, 209, 0.7), transparent);
  background-size: 400px 400px, 350px 350px, 500px 500px, 380px 380px, 420px 420px, 360px 360px;
  animation: twinkleField 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.events-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

.events-header {
  text-align: center;
  margin-bottom: 36px;
}

.events-header h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: #FFFFFF;
  margin-bottom: 16px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.events-header h2 .script {
  font-family: var(--display);
  font-size: 1.4em;
  background: var(--gradient-wordmark);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 400;
  line-height: 1.1;
  display: inline-block;
  padding: 10px 0 4px;
  filter: drop-shadow(0 2px 15px rgba(232, 75, 156, 0.4));
}

.events-header p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.82);
  max-width: 600px;
  margin: 0 auto;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-bottom: 32px;
}

.events-grid:empty { display: none; }

.event-card {
  background: var(--paper);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(91, 63, 163, 0.08);
}

.event-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.event-card-image {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--lavender), var(--purple-mid));
  background-size: cover;
  background-position: center;
  position: relative;
}

.event-card-date-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--cream);
  border-radius: 8px;
  padding: 8px 14px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  min-width: 60px;
}

.event-card-date-badge .month {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--purple-deep);
  text-transform: uppercase;
}

.event-card-date-badge .day {
  display: block;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}

.event-card-body {
  padding: 22px 24px 26px;
}

.event-card-body h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.25;
}

.event-card-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 12px;
  font-size: 13px;
  color: var(--purple-deep);
  font-weight: 600;
}

.event-card-body p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
}

.events-empty {
  text-align: center;
  padding: 60px 20px;
  font-family: var(--serif);
  font-style: italic;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
}

/* Calendar (public, read-only) */
.calendar {
  background: var(--paper);
  border-radius: 12px;
  padding: 32px;
  box-shadow: var(--shadow-soft);
  max-width: 720px;
  margin: 0 auto;
  border: 1px solid rgba(91, 63, 163, 0.08);
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.calendar-header h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--ink);
}

.calendar-nav {
  display: flex;
  gap: 8px;
}

.calendar-nav button {
  background: var(--cream);
  border: 1px solid rgba(91, 63, 163, 0.15);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-deep);
  transition: all 0.2s;
}

.calendar-nav button:hover {
  background: var(--purple-deep);
  color: var(--cream);
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 8px;
}

.calendar-weekdays div {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 8px 0;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 14px;
  color: var(--ink);
  position: relative;
  cursor: default;
  transition: background 0.2s, transform 0.2s;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.calendar-day.muted { color: rgba(42, 31, 63, 0.25); }

.calendar-day.today {
  background: var(--lavender-mist);
  font-weight: 700;
}

.calendar-day.has-event {
  background: rgba(216, 124, 186, 0.15);
  cursor: pointer;
  font-weight: 700;
  color: var(--purple-deep);
}

.calendar-day.has-event:hover {
  background: var(--purple-deep);
  color: var(--cream);
  transform: scale(1.06);
  box-shadow: 0 6px 18px rgba(91, 63, 163, 0.4);
}

/* When event has an image, show it as the cell background */
.calendar-day.has-event.has-image {
  color: white;
  background-size: cover;
  background-position: center;
}

.calendar-day.has-event.has-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(91, 63, 163, 0.55) 0%, rgba(42, 31, 63, 0.6) 100%);
  transition: background 0.25s;
  z-index: 1;
}

.calendar-day.has-event.has-image:hover::before {
  background: linear-gradient(135deg, rgba(91, 63, 163, 0.25) 0%, rgba(42, 31, 63, 0.3) 100%);
}

.calendar-day.has-event.has-image:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(232, 75, 156, 0.5);
}

.cal-day-num {
  position: relative;
  z-index: 2;
}

.calendar-day.has-event.has-image .cal-day-num {
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7), 0 0 8px rgba(0, 0, 0, 0.4);
  font-weight: 700;
  font-size: 15px;
}

.calendar-day.has-event::after {
  content: '';
  position: absolute;
  bottom: 6px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--strawberry);
  z-index: 2;
}

.calendar-day.has-event.has-image::after {
  background: var(--pink-soft);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

/* Events bottom: two-column with calendar + side card */
.events-bottom {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  margin-top: 0;
  align-items: stretch;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.events-bottom .calendar {
  max-width: none;
  margin: 0;
  height: 100%;
}

.events-side-card {
  position: relative;
  padding: 36px 32px;
  border-radius: 20px;
  background: linear-gradient(135deg,
    rgba(255, 212, 184, 0.18) 0%,
    rgba(242, 165, 209, 0.24) 50%,
    rgba(232, 75, 156, 0.20) 100%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(242, 165, 209, 0.45);
  box-shadow:
    0 12px 40px rgba(232, 75, 156, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.side-sparkle {
  position: absolute;
  pointer-events: none;
  text-shadow: 0 0 20px currentColor;
  animation: twinkle 3s ease-in-out infinite;
}

.side-sparkle.s1 { top: 18px; right: 22px; font-size: 22px; color: var(--star-yellow); animation-delay: 0s; }
.side-sparkle.s2 { top: 50%; right: 14px; font-size: 16px; color: rgba(255, 255, 255, 0.85); animation-delay: 0.8s; }
.side-sparkle.s3 { bottom: 26px; left: 24px; font-size: 20px; color: var(--pink-bright); animation-delay: 1.5s; }
.side-sparkle.s4 { top: 28%; left: 16px; font-size: 14px; color: var(--pink-soft); animation-delay: 2.2s; }

.side-eyebrow {
  display: inline-block;
  font-family: var(--body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--pink-soft);
  margin-bottom: 16px;
  text-shadow: 0 0 12px rgba(242, 165, 209, 0.5);
}

.events-side-card h3 {
  font-family: var(--serif);
  font-size: clamp(26px, 2.6vw, 34px);
  font-weight: 500;
  line-height: 1.1;
  color: #FFFFFF;
  margin-bottom: 18px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
  letter-spacing: -0.01em;
}

.side-script {
  font-family: var(--display);
  font-size: 1.4em;
  background: var(--gradient-wordmark);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 400;
  display: inline-block;
  padding: 6px 0 2px;
  line-height: 1.05;
  filter: drop-shadow(0 2px 12px rgba(232, 75, 156, 0.5));
}

.events-side-card p {
  font-family: var(--serif);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.55;
  margin-bottom: 16px;
}

.side-tip {
  font-family: var(--body) !important;
  font-style: italic;
  font-size: 14px !important;
  color: rgba(255, 255, 255, 0.78) !important;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.18);
  border-radius: 10px;
  border-left: 3px solid var(--pink-bright);
  margin-bottom: 24px !important;
}

.side-tip strong {
  color: var(--pink-soft);
  font-style: normal;
  font-weight: 700;
}

.side-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  background: linear-gradient(135deg, #E84B9C 0%, #C13584 50%, #9B5BD9 100%);
  color: white;
  text-decoration: none;
  border-radius: 100px;
  font-family: var(--body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 24px rgba(232, 75, 156, 0.45);
  transition: all 0.3s ease;
  align-self: flex-start;
}

.side-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(232, 75, 156, 0.6);
  filter: brightness(1.08);
}

.side-cta svg { flex-shrink: 0; }

/* ============ CATERING ============ */
.catering {
  padding: 100px 6vw;
  background:
    radial-gradient(ellipse at top right, rgba(232, 75, 156, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(155, 91, 217, 0.2) 0%, transparent 50%),
    var(--magic-bg-deep);
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.catering::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1.5px 1.5px at 15% 20%, rgba(255, 232, 115, 0.7), transparent),
    radial-gradient(1px 1px at 65% 60%, rgba(255, 255, 255, 0.6), transparent),
    radial-gradient(2px 2px at 85% 30%, rgba(242, 165, 209, 0.7), transparent),
    radial-gradient(1px 1px at 35% 80%, rgba(255, 255, 255, 0.5), transparent),
    radial-gradient(1.5px 1.5px at 90% 70%, rgba(255, 232, 115, 0.6), transparent),
    radial-gradient(1.5px 1.5px at 5% 50%, rgba(242, 165, 209, 0.7), transparent);
  background-size: 400px 400px, 350px 350px, 500px 500px, 380px 380px, 420px 420px, 360px 360px;
  animation: twinkleField 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.catering-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.catering-visual {
  aspect-ratio: 4/5;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(31, 15, 74, 0.5) 0%, rgba(91, 39, 168, 0.3) 45%, rgba(31, 15, 74, 0.7) 100%),
    radial-gradient(ellipse at 30% 30%, rgba(232, 75, 156, 0.25), transparent 60%),
    url('../images/beba-tent.webp');
  background-size: cover, auto, cover;
  background-position: center, center, center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(232, 75, 156, 0.3), 0 0 80px rgba(155, 91, 217, 0.25);
  border: 1px solid rgba(232, 75, 156, 0.3);
}

.catering-visual::before {
  content: '♥';
  position: absolute;
  top: 15%;
  left: 18%;
  font-size: 70px;
  color: rgba(232, 75, 156, 0.7);
  text-shadow: 0 0 30px rgba(232, 75, 156, 0.6);
  animation: heartBeat 2.5s ease-in-out infinite;
}

.catering-visual::after {
  content: '✦';
  position: absolute;
  bottom: 22%;
  right: 18%;
  font-size: 90px;
  color: rgba(255, 232, 115, 0.7);
  text-shadow: 0 0 30px rgba(255, 232, 115, 0.5);
  animation: twinkle 3s ease-in-out 1s infinite;
}

.catering-visual .center-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  font-family: var(--display);
  padding: 40px;
}

.catering-visual .center-text span:first-child {
  font-size: 110px;
  line-height: 1.05;
  padding-top: 12px;
  background: var(--gradient-wordmark);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter:
    drop-shadow(0 2px 8px rgba(0, 0, 0, 0.6))
    drop-shadow(0 4px 24px rgba(232, 75, 156, 0.7));
}

.catering-visual .center-text span:last-child {
  font-family: var(--body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-top: 16px;
  color: var(--pink-soft);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7), 0 0 16px rgba(0, 0, 0, 0.5);
}

.catering-content h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: #FFFFFF;
  margin-bottom: 20px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.catering-content h2 .script {
  font-family: var(--display);
  font-size: 1.4em;
  background: var(--gradient-wordmark);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 400;
  line-height: 1.1;
  display: inline-block;
  padding: 10px 0 4px;
  filter: drop-shadow(0 2px 15px rgba(232, 75, 156, 0.4));
}

.catering-content p {
  font-family: var(--serif);
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: 20px;
}

.catering-content ul {
  list-style: none;
  margin: 24px 0 32px;
}

.catering-content li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.92);
}

.catering-content li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink-bright);
  box-shadow: 0 0 12px rgba(232, 75, 156, 0.6);
  flex-shrink: 0;
}

/* ============ FOOTER ============ */
footer {
  background: var(--magic-bg-deep);
  color: rgba(255, 255, 255, 0.78);
  padding: 80px 6vw 40px;
  position: relative;
  overflow: hidden;
  z-index: 2;
}

footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(2px 2px at 20% 30%, rgba(255, 232, 115, 0.6), transparent),
    radial-gradient(1px 1px at 60% 70%, rgba(255, 255, 255, 0.5), transparent),
    radial-gradient(1.5px 1.5px at 80% 10%, rgba(242, 165, 209, 0.6), transparent),
    radial-gradient(1px 1px at 90% 60%, rgba(255, 232, 115, 0.5), transparent),
    radial-gradient(1.5px 1.5px at 10% 60%, rgba(242, 165, 209, 0.6), transparent);
  background-size: 400px 400px, 350px 350px, 500px 500px, 380px 380px, 420px 420px;
  animation: twinkleField 8s ease-in-out infinite;
  pointer-events: none;
}

.footer-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(232, 75, 156, 0.2);
  margin-bottom: 32px;
}

.footer-logo {
  width: 160px;
  height: auto;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 20px rgba(232, 75, 156, 0.4));
}

.footer-brand h3 {
  /* Hidden visually since the logo contains the wordmark already.
     Kept in DOM for SEO and screen readers. */
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.footer-brand p {
  font-family: var(--serif);
  font-style: italic;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  max-width: 360px;
  line-height: 1.5;
}

.footer-col h4 {
  font-family: var(--body);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--pink-soft);
  margin-bottom: 20px;
}

.footer-col a, .footer-col p {
  display: block;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 15px;
  margin-bottom: 10px;
  transition: color 0.3s;
}

.footer-col a:hover { color: var(--pink-soft); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  position: relative;
  z-index: 2;
}

.footer-bottom .made {
  font-family: var(--serif);
  font-style: italic;
}

.footer-bottom .made .heart {
  color: var(--pink-bright);
  text-shadow: 0 0 12px rgba(232, 75, 156, 0.6);
}

.footer-credit {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-credit a {
  color: var(--pink-soft);
  text-decoration: none;
}

/* ============ ANIMATIONS ============ */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

@keyframes twinkle {
  0%, 100% { opacity: 0.4; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.15); }
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .events-bottom { grid-template-columns: 1fr; gap: 24px; }
  .events-side-card { padding: 28px 24px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(31, 15, 74, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 24px;
    gap: 18px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    border-top: 1px solid rgba(232, 75, 156, 0.25);
  }
  .nav-toggle { display: block; }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-eyebrow { justify-content: center; }
  .hero-eyebrow::before { display: none; }
  .hero p.lead { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-caricature-wrap { max-width: 380px; }
  #hero-logo-badge { width: 100px; height: 100px; bottom: -10px; right: -10px; }

  .pillars { grid-template-columns: 1fr; gap: 16px; }

  .catering-inner { grid-template-columns: 1fr; gap: 40px; }
  .catering-visual { max-width: 400px; margin: 0 auto; }

  .footer-top { grid-template-columns: 1fr; gap: 32px; }

  .menu-section-title h3 { font-size: 32px; }
}

@media (max-width: 500px) {
  .hero { padding-top: 120px; }
  .hero h1 .script { font-size: 1.2em; }
  .nav-brand img { height: 86px; }
  .nav-right { gap: 10px; }
  .nav-cta { padding: 8px 14px; font-size: 12px; }
  .lang-toggle button { padding: 6px 10px; font-size: 10px; }
  .menu-section-title { flex-direction: column; align-items: flex-start; gap: 8px; }
  .menu-section-title .line { display: none; }
  .calendar { padding: 20px; }
  .calendar-day { font-size: 12px; }
}
