/* =========================================================
   Maryse Délices — Wow-tier Stylesheet
   Palette: Pink E0218A · Teal 648E90 · Mauve BAA0A3
            Yellow FCE173 · Lavender B090DF · Gold D4A24C
   ========================================================= */

:root {
  --pink: #E0218A;
  --pink-deep: #B81873;
  --pink-soft: #FCE6F1;
  --pink-glow: #FFB8DD;
  --teal: #648E90;
  --teal-deep: #4A6F71;
  --mauve: #BAA0A3;
  --mauve-soft: #F4ECEE;
  --yellow: #FCE173;
  --yellow-soft: #FEF6D5;
  --lavender: #B090DF;
  --lavender-soft: #ECE3F8;
  --gold: #D4A24C;
  --gold-light: #F2D89A;
  --gold-deep: #A87D2D;

  --ink: #1F1019;
  --ink-soft: #5C4A56;
  --ink-light: #8A7884;
  --bg: #FFFBFA;
  --bg-cream: #FFF7F2;
  --bg-rose: #FFF2F8;
  --line: #EFE3E6;
  --white: #FFFFFF;

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --script: 'Pacifico', cursive;

  --radius: 18px;
  --radius-sm: 10px;
  --radius-lg: 28px;
  --shadow-sm: 0 2px 8px rgba(31, 16, 25, 0.06);
  --shadow: 0 12px 36px rgba(224, 33, 138, 0.12);
  --shadow-lg: 0 32px 80px rgba(31, 16, 25, 0.16);
  --shadow-glow: 0 20px 60px rgba(224, 33, 138, 0.28);

  --gold-grad: linear-gradient(135deg, #F2D89A 0%, #D4A24C 50%, #A87D2D 100%);
  --pink-grad: linear-gradient(135deg, var(--pink) 0%, var(--lavender) 100%);
  --rose-grad: linear-gradient(135deg, #FFB8DD 0%, #B090DF 100%);

  --container: 1240px;
  --transition: 240ms cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
}

::selection { background: var(--pink); color: var(--white); }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink);
  line-height: 1.08;
}

h1 { font-size: clamp(3rem, 8vw, 6rem); font-weight: 500; }
h2 { font-size: clamp(2.25rem, 5vw, 4rem); font-weight: 500; }
h3 { font-size: clamp(1.35rem, 2.5vw, 1.85rem); }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 1rem;
  display: inline-block;
}
.eyebrow-light { color: var(--gold-light); }
.eyebrow-gold { color: var(--gold); }

.script-word, .script {
  font-family: var(--script);
  color: var(--pink);
  font-weight: 400;
  letter-spacing: 0;
  font-style: normal;
  display: inline-block;
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 4rem;
}
.section-sub {
  color: var(--ink-soft);
  font-size: 1.1rem;
  margin-top: 1rem;
  font-weight: 300;
}

/* ========== SCROLL PROGRESS ========== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--pink-grad);
  z-index: 100;
  transition: width 80ms linear;
  box-shadow: 0 0 12px rgba(224, 33, 138, 0.6);
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1.05rem 2.25rem;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  transition: all 320ms var(--ease-out);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--pink-grad);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(224, 33, 138, 0.32);
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--lavender) 0%, var(--pink) 100%);
  opacity: 0;
  transition: opacity 320ms var(--ease-out);
}
.btn-primary > * { position: relative; z-index: 1; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(224, 33, 138, 0.45); }
.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover .btn-arrow { transform: translateX(4px); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--white); transform: translateY(-2px); }

.btn-gold {
  background: var(--gold-grad);
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(212, 162, 76, 0.35);
  font-weight: 700;
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(212, 162, 76, 0.5); }
.btn-gold:hover .btn-arrow { transform: translateX(4px); }

.btn-arrow { display: inline-block; transition: transform 240ms var(--ease-out); font-size: 1.05rem; }

/* ========== NAV ========== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 251, 250, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(255, 251, 250, 0.95);
  border-bottom-color: var(--line);
  box-shadow: 0 4px 24px rgba(31, 16, 25, 0.04);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1.1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
  z-index: 60;
}
.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--pink-grad);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--script);
  font-size: 1.35rem;
  box-shadow: 0 6px 18px rgba(224, 33, 138, 0.3);
  position: relative;
}
.logo-mark::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  opacity: 0.4;
}
.logo-text em {
  font-style: normal;
  color: var(--pink);
  font-family: var(--script);
  font-weight: 400;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1.5px;
  background: var(--pink);
  transition: width 240ms var(--ease-out);
}
.nav-links a:hover { color: var(--pink); }
.nav-links a:hover::after { width: 100%; }

.lang-toggle {
  background: var(--mauve-soft);
  border: 1px solid var(--line);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  transition: var(--transition);
}
.lang-toggle:hover { background: var(--pink-soft); color: var(--pink); border-color: var(--pink-soft); }
.lang-toggle .lang-divider { margin: 0 0.45rem; opacity: 0.4; }
.lang-toggle.fr-active .lang-en { opacity: 0.35; }
.lang-toggle:not(.fr-active) .lang-fr { opacity: 0.35; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 60;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: var(--transition);
}

/* ========== HERO ========== */
.hero {
  position: relative;
  padding: 5rem 1.5rem 6rem;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg-cream) 0%, var(--bg-rose) 60%, var(--bg) 100%);
}
.hero-blobs { position: absolute; inset: 0; pointer-events: none; }
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
  animation: blobFloat 18s ease-in-out infinite;
}
.blob-pink { width: 460px; height: 460px; background: var(--pink); top: -120px; right: -80px; animation-delay: 0s; }
.blob-yellow { width: 340px; height: 340px; background: var(--yellow); bottom: -60px; left: 8%; opacity: 0.55; animation-delay: -6s; }
.blob-lavender { width: 380px; height: 380px; background: var(--lavender); top: 30%; left: -120px; animation-delay: -12s; }
.blob-teal { width: 280px; height: 280px; background: var(--teal); bottom: 20%; right: 8%; opacity: 0.3; animation-delay: -3s; }

@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.97); }
}

.hero-decor { position: absolute; inset: 0; pointer-events: none; }
.float-emoji {
  position: absolute;
  font-size: 2.2rem;
  opacity: 0.85;
  animation: floatY 6s ease-in-out infinite;
  filter: drop-shadow(0 8px 16px rgba(31, 16, 25, 0.12));
}
.float-emoji.f1 { top: 14%; left: 8%; font-size: 2.8rem; animation-delay: 0s; }
.float-emoji.f2 { top: 22%; right: 12%; font-size: 2.4rem; animation-delay: -2s; }
.float-emoji.f3 { top: 60%; left: 14%; font-size: 1.8rem; animation-delay: -4s; opacity: 0.7; }
.float-emoji.f4 { bottom: 18%; right: 10%; font-size: 3rem; animation-delay: -1s; }
.float-emoji.f5 { top: 45%; right: 5%; font-size: 1.9rem; animation-delay: -3s; }
.float-emoji.f6 { bottom: 30%; left: 5%; font-size: 1.6rem; animation-delay: -5s; opacity: 0.7; }

@keyframes floatY {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-22px) rotate(3deg); }
}

.hero-inner {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid var(--pink-soft);
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 1.75rem;
  box-shadow: 0 4px 16px rgba(224, 33, 138, 0.08);
}
.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 4px rgba(224, 33, 138, 0.18);
  animation: pulseDot 1.6s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(224, 33, 138, 0.18); }
  50% { box-shadow: 0 0 0 8px rgba(224, 33, 138, 0.05); }
}

.hero-title { margin: 1rem 0 1.5rem; }
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line > * {
  display: inline-block;
  animation: lineUp 1s var(--ease-out) backwards;
}
.hero-title .line:nth-child(1) > * { animation-delay: 0.1s; }
.hero-title .line:nth-child(2) > * { animation-delay: 0.25s; }
@keyframes lineUp {
  from { transform: translateY(110%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.hero-title .script-word {
  font-size: 1.05em;
  background: var(--pink-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 0 0.1em;
}
.hero-sub {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--ink-soft);
  max-width: 640px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
  animation: fadeUp 1s var(--ease-out) 0.5s backwards;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 1s var(--ease-out) 0.7s backwards;
}
.hero-meta {
  margin-top: 3.5rem;
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  align-items: center;
  font-size: 0.88rem;
  color: var(--ink-light);
  flex-wrap: wrap;
  animation: fadeUp 1s var(--ease-out) 0.9s backwards;
}
.hero-meta .stars { color: var(--gold); letter-spacing: 0.15em; font-size: 1rem; }

.scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--ink-light);
}
.scroll-cue span {
  display: block;
  width: 1.5px;
  height: 36px;
  background: linear-gradient(180deg, transparent 0%, var(--ink-light) 100%);
  animation: scrollCue 2s ease-in-out infinite;
}
.scroll-cue small {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
@keyframes scrollCue {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ========== MARQUEE ========== */
.marquee {
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
  padding: 1.4rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
  z-index: 2;
}
.marquee-track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: scroll 32s linear infinite;
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 400;
  font-style: italic;
}
.marquee-track span:nth-child(odd) { color: var(--white); }
.marquee-track span:nth-child(even) { color: var(--gold); }
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ========== INTRO STRIP ========== */
.intro-strip {
  padding: 7rem 0;
  text-align: center;
  background: var(--bg);
  position: relative;
}
.intro-statement {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink);
  max-width: 900px;
  margin: 0 auto;
  font-style: italic;
}
.intro-statement em {
  font-family: var(--script);
  color: var(--pink);
  font-style: normal;
  font-size: 1.15em;
  font-weight: 400;
}

/* ========== CAKES MAGAZINE GRID ========== */
.cakes { padding: 6rem 0 7rem; background: var(--bg-cream); position: relative; }

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 3.5rem;
}
.filter {
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 280ms var(--ease-out);
}
.filter:hover { border-color: var(--pink); color: var(--pink); transform: translateY(-2px); }
.filter.active {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
  box-shadow: 0 8px 20px rgba(31, 16, 25, 0.18);
}

.cake-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.cake-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 320ms var(--ease-out);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
}

.cake-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--pink-soft);
}

.cake-img {
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, var(--mauve-soft) 0%, var(--lavender-soft) 50%, var(--pink-soft) 100%);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  transition: transform 600ms var(--ease-out);
}
.cake-img.no-img::after {
  content: '🎂';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.5rem;
  opacity: 0.5;
  filter: drop-shadow(0 8px 16px rgba(31, 16, 25, 0.15));
}
.cake-card:hover .cake-img { transform: scale(1.06); }
.cake-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  z-index: 2;
  border: 1px solid rgba(255,255,255,0.6);
}
.cake-body { padding: 1.6rem 1.75rem 1.75rem; flex-grow: 1; display: flex; flex-direction: column; }
.cake-name {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--ink);
  line-height: 1.2;
}
.cake-desc {
  color: var(--ink-soft);
  font-size: 0.92rem;
  margin-bottom: 1.25rem;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-grow: 1;
}
.cake-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.cake-price {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--pink);
}
.cake-price small { font-size: 0.7rem; color: var(--ink-light); font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; }
.cake-cta {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
}
.cake-cta::after {
  content: '→';
  display: inline-block;
  margin-left: 0.4rem;
  transition: transform 240ms var(--ease-out);
}
.cake-card:hover .cake-cta::after { transform: translateX(4px); }

.cake-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1.5px dashed var(--mauve);
}
.cake-empty-icon {
  font-size: 4rem;
  display: block;
  margin-bottom: 1rem;
  opacity: 0.6;
}
.cake-empty h3 { font-size: 1.6rem; margin-bottom: 0.6rem; }
.cake-empty p { color: var(--ink-soft); margin-bottom: 1.75rem; max-width: 420px; margin-left: auto; margin-right: auto; }

/* ========== SIGNATURE ========== */
.signature {
  position: relative;
  padding: 8rem 0;
  background: linear-gradient(135deg, #1F2E22 0%, #344E37 50%, #1F2E22 100%);
  color: var(--white);
  overflow: hidden;
}
.signature-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(127, 190, 127, 0.30) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(212, 162, 76, 0.18) 0%, transparent 50%);
}
.signature-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  z-index: 2;
}
.signature h2 { color: var(--white); font-size: clamp(2.5rem, 5vw, 4.5rem); }
.signature h2 .script-word {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.15em;
}
.signature-text p { color: rgba(255, 255, 255, 0.78); font-size: 1.1rem; margin: 1.5rem 0; }
.signature-list {
  list-style: none;
  margin: 2rem 0 2.5rem;
  display: grid;
  gap: 0.85rem;
}
.signature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
}
.signature-list li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.85rem;
}

.sig-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #2A4530 0%, #344E37 60%, #1F2E22 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(52, 78, 55, 0.55);
  border: 1px solid rgba(212, 162, 76, 0.25);
}
.sig-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle, rgba(212, 162, 76, 0.22) 0%, transparent 60%);
  animation: sigPulse 6s ease-in-out infinite;
}
@keyframes sigPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.15); opacity: 1; }
}
.sig-img-inner {
  font-size: 12rem;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
  z-index: 1;
}
.sig-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.sig-stamp {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--gold-grad);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(212, 162, 76, 0.5);
  z-index: 2;
}

/* ========== ABOUT ========== */
.about {
  padding: 7rem 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.about::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: var(--yellow);
  opacity: 0.15;
  border-radius: 50%;
  filter: blur(100px);
  top: -100px;
  right: -100px;
}
.about::after {
  content: '"';
  position: absolute;
  font-family: var(--serif);
  font-size: 30rem;
  font-style: italic;
  color: var(--pink-soft);
  top: -8rem;
  left: -2rem;
  line-height: 1;
  opacity: 0.5;
  pointer-events: none;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
.about h2 .script-word {
  font-size: 1em;
  background: var(--pink-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lg);
}
.img-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 30%,
    rgba(255, 255, 255, 0.18) 50%,
    transparent 70%
  );
  animation: shimmer 4s ease-in-out infinite;
  z-index: 2;
  pointer-events: none;
}
@keyframes shimmer {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}
.img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--pink) 0%, var(--lavender) 50%, var(--mauve) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--script);
  font-size: 3.5rem;
}
.img-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.badge-saggi {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 76px;
  height: 76px;
  background: var(--gold-grad);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  box-shadow: var(--shadow);
  z-index: 3;
}
.badge-saggi span { font-size: 1.6rem; line-height: 1; }
.badge-saggi small { font-size: 0.55rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-top: 2px; }
.badge-years {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  width: 110px;
  height: 110px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  z-index: 3;
  border: 4px solid var(--bg);
}
.badge-years strong {
  font-family: var(--serif);
  font-size: 2.4rem;
  color: var(--pink);
  line-height: 1;
  font-weight: 600;
}
.badge-years small { font-size: 0.65rem; color: var(--ink-soft); letter-spacing: 0.18em; text-transform: uppercase; margin-top: 0.25rem; }

.about-text p { color: var(--ink-soft); margin-bottom: 1.25rem; font-size: 1.02rem; }
.about-text p.lead { font-size: 1.15rem; color: var(--ink); font-weight: 400; line-height: 1.6; }
.about-text p.signoff {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--pink);
}
.about-stats {
  list-style: none;
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.about-stats li {
  display: flex;
  flex-direction: column;
  border-left: 2px solid var(--pink);
  padding-left: 1.1rem;
}
.about-stats strong {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
}
.about-stats span {
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-top: 0.4rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ========== TESTIMONIALS ========== */
.testimonials {
  padding: 7rem 0;
  background: var(--mauve-soft);
  position: relative;
  overflow: hidden;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testi-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition);
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.testi-stars { color: var(--gold); font-size: 1rem; letter-spacing: 0.1em; margin-bottom: 1rem; }
.testi-quote {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--pink-grad);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.1rem;
}
.testi-name { font-weight: 600; color: var(--ink); font-size: 0.92rem; }
.testi-loc { font-size: 0.78rem; color: var(--ink-light); }

/* ========== HOW ========== */
.how { padding: 7rem 0; background: var(--bg); }
.how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.how-step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.25rem 2rem;
  border: 1px solid var(--line);
  position: relative;
  transition: all 320ms var(--ease-out);
  overflow: hidden;
}
.how-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}
.how-step:nth-child(1)::before { background: var(--pink); }
.how-step:nth-child(2)::before { background: var(--teal); }
.how-step:nth-child(3)::before { background: var(--lavender); }
.how-step:nth-child(4)::before { background: var(--gold); }
.how-step:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.step-num {
  font-family: var(--script);
  font-size: 3rem;
  background: var(--pink-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  margin-bottom: 0.4rem;
  line-height: 1;
}
.how-step h3 { margin-bottom: 0.65rem; }
.how-step p { color: var(--ink-soft); font-size: 0.95rem; }

/* ========== ORDER ========== */
.order {
  padding: 7rem 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--lavender-soft) 100%);
  position: relative;
}
.order-form {
  max-width: 780px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  border: 1px solid rgba(255,255,255,0.6);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.form-row label {
  display: flex;
  flex-direction: column;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.form-row label.full { grid-column: 1 / -1; }
.form-row label > span { margin-bottom: 0.5rem; }
.form-row input,
.form-row select,
.form-row textarea {
  font-family: var(--sans);
  font-size: 1rem;
  padding: 0.95rem 1.1rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink);
  transition: var(--transition);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 4px var(--pink-soft);
}
.form-row textarea { resize: vertical; }
.hint {
  font-size: 0.72rem;
  color: var(--ink-light);
  font-weight: 400;
  margin-top: 0.45rem;
  letter-spacing: 0.02em;
  text-transform: none;
}
.hint.warn { color: var(--pink); font-weight: 600; }
.radio-row { display: flex; gap: 1rem; margin-top: 0.5rem; flex-wrap: wrap; }
.radio {
  flex-direction: row !important;
  align-items: center;
  gap: 0.6rem !important;
  cursor: pointer;
  font-weight: 500 !important;
  font-size: 0.92rem !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  padding: 0.85rem 1.25rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  flex: 1;
  transition: var(--transition);
}
.radio:has(input:checked) { border-color: var(--pink); background: var(--pink-soft); }
.radio input { width: auto; padding: 0; margin: 0; accent-color: var(--pink); }
.radio span { margin: 0 !important; }

.order-summary {
  background: linear-gradient(135deg, var(--bg-cream) 0%, var(--mauve-soft) 100%);
  border: 1.5px dashed var(--mauve);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  margin: 1.75rem 0;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 0.45rem 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
}
.summary-row.total {
  border-top: 1.5px solid var(--mauve);
  padding-top: 0.85rem;
  margin-top: 0.6rem;
  font-size: 1.15rem;
  color: var(--ink);
  font-weight: 600;
}
.summary-row.total strong { color: var(--pink); font-family: var(--serif); font-size: 1.55rem; font-weight: 600; }

.paypal-wrap { margin-top: 1.75rem; min-height: 60px; }
.paypal-hint {
  text-align: center;
  font-size: 0.78rem;
  color: var(--ink-light);
  margin-top: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.order-success {
  max-width: 580px;
  margin: 2rem auto 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.success-icon {
  width: 76px;
  height: 76px;
  background: var(--gold-grad);
  color: var(--ink);
  border-radius: 50%;
  font-size: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 12px 30px rgba(212, 162, 76, 0.4);
}
.order-success h3 { margin-bottom: 0.6rem; }
.order-success p { color: var(--ink-soft); }

/* ========== CONTACT ========== */
.contact {
  padding: 7rem 0;
  background: linear-gradient(135deg, #1F1019 0%, #2A1820 50%, #1F1019 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.contact-decor { position: absolute; inset: 0; pointer-events: none; }
.cd { position: absolute; border-radius: 50%; filter: blur(100px); }
.cd1 { width: 400px; height: 400px; background: var(--pink); opacity: 0.18; top: -100px; left: -80px; }
.cd2 { width: 350px; height: 350px; background: var(--gold); opacity: 0.12; bottom: -80px; right: -60px; }

.contact h2, .contact .eyebrow { color: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: start;
  position: relative;
  z-index: 2;
}
.contact-text h2 { font-size: clamp(2.25rem, 4.5vw, 3.5rem); margin-bottom: 1.25rem; }
.contact-text p { color: rgba(255,255,255,0.72); margin-bottom: 2.25rem; font-size: 1.08rem; }
.contact-list { list-style: none; display: flex; flex-direction: column; gap: 1.1rem; }
.contact-list li { display: flex; align-items: center; gap: 1rem; color: rgba(255,255,255,0.85); }
.contact-list .ico {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(212, 162, 76, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
}
.contact-list a:hover { color: var(--gold); }

.contact-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 2.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  backdrop-filter: blur(10px);
}
.contact-form label {
  display: flex;
  flex-direction: column;
  font-size: 0.74rem;
  font-weight: 700;
  gap: 0.55rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.contact-form input,
.contact-form textarea {
  font-family: var(--sans);
  font-size: 1rem;
  padding: 0.95rem 1.1rem;
  border: 1.5px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-sm);
  color: var(--white);
  transition: var(--transition);
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 0 0 3px rgba(212, 162, 76, 0.15);
}
.form-status {
  font-size: 0.85rem;
  text-align: center;
  min-height: 1.2em;
}
.form-status.success { color: var(--gold-light); }
.form-status.error { color: #FF7A8A; }

/* ========== FOOTER ========== */
.footer { background: #14080F; color: rgba(255,255,255,0.65); padding: 5rem 0 1.5rem; position: relative; }
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-grid h4 {
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer-grid a, .footer-grid span {
  display: block;
  font-size: 0.92rem;
  margin-bottom: 0.7rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}
.footer-grid a:hover { color: var(--gold); transform: translateX(4px); }
.footer-tag { font-family: var(--serif); font-style: italic; font-size: 1.1rem; margin-top: 1rem; max-width: 240px; }
.logo-footer { color: var(--white); }
.logo-footer .logo-text em { color: var(--gold); }
.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.75rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}
.admin-link { color: rgba(255,255,255,0.25); }
.admin-link:hover { color: var(--gold); }

/* ========== MODAL ========== */
[hidden] { display: none !important; }

.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(31, 16, 25, 0.75);
  backdrop-filter: blur(8px);
}
.modal-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 880px;
  width: 100%;
  max-height: 92vh;
  overflow: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: var(--shadow-lg);
  animation: modalIn 360ms var(--ease-out);
}
@keyframes modalIn {
  from { transform: translateY(24px) scale(0.97); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  z-index: 2;
  box-shadow: var(--shadow);
  color: var(--ink);
  transition: var(--transition);
  font-weight: 300;
}
.modal-close:hover { background: var(--pink); color: var(--white); transform: rotate(90deg); }
.modal-img {
  background: linear-gradient(135deg, var(--mauve-soft) 0%, var(--lavender-soft) 50%, var(--pink-soft) 100%);
  background-size: cover;
  background-position: center;
  min-height: 380px;
  position: relative;
}
.modal-img.no-img::after {
  content: '🎂';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 7rem;
  opacity: 0.4;
}
.modal-body { padding: 3rem 2.5rem; display: flex; flex-direction: column; }
.modal-body .cake-tag {
  position: static;
  align-self: flex-start;
  margin-bottom: 1.25rem;
  background: var(--pink-soft);
  color: var(--pink);
  border: none;
}
.modal-body h3 { margin-bottom: 0.85rem; font-size: 2rem; }
.modal-body p { color: var(--ink-soft); margin-bottom: 1.75rem; font-size: 1rem; line-height: 1.65; }
.modal-sizes { margin-bottom: 1.75rem; }
.size-pill {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.95rem 1.2rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  margin-bottom: 0.65rem;
  font-size: 0.95rem;
  transition: var(--transition);
}
.size-pill:hover { border-color: var(--pink); background: var(--pink-soft); }
.size-pill .size-name { font-weight: 600; }
.size-pill .size-serves { font-size: 0.78rem; color: var(--ink-light); margin-left: 0.5rem; }
.size-pill strong { color: var(--pink); font-family: var(--serif); font-size: 1.15rem; }
.modal-order { width: 100%; }

/* ========== REVEAL ANIMATIONS ========== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 800ms var(--ease-out), transform 800ms var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ========== RESPONSIVE ========== */
@media (max-width: 980px) {
  .cake-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .signature-grid { grid-template-columns: 1fr; gap: 3rem; }
  .sig-frame { max-width: 480px; margin: 0 auto; }
  .testi-grid { grid-template-columns: 1fr; }
  .testi-card:nth-child(2) { margin-top: 0; }
}

@media (max-width: 880px) {
  .nav-toggle { display: flex; position: relative; z-index: 110; }
  .nav-toggle span { transition: transform 240ms var(--ease-out), opacity 200ms; transform-origin: center; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  .nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(31, 16, 25, 0.55);
    z-index: 90;
    opacity: 0;
    pointer-events: none;
    transition: opacity 280ms var(--ease-out);
  }
  .nav-backdrop.open { opacity: 1; pointer-events: auto; }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    height: 100vh;
    height: 100dvh;
    width: 84%;
    max-width: 340px;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 5.5rem 1.75rem 2rem;
    gap: 0.25rem;
    margin: 0;
    list-style: none;
    border-left: 1px solid var(--line);
    transform: translateX(100%);
    transition: transform 320ms var(--ease-out);
    box-shadow: var(--shadow-lg);
    z-index: 100;
    overflow-y: auto;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links li { width: 100%; list-style: none; }
  .nav-links a {
    display: block;
    width: 100%;
    font-size: 1.15rem;
    padding: 0.85rem 0.25rem;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
  }
  .nav-links a::after { display: none; }
  .nav-links .lang-toggle { margin-top: 1rem; align-self: flex-start; }

  body.nav-open { overflow: hidden; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .img-frame { aspect-ratio: 4 / 5; max-width: 420px; margin: 0 auto; transform: rotate(0deg); }
  .badge-years { width: 90px; height: 90px; bottom: -1rem; left: -1rem; }
  .form-row { grid-template-columns: 1fr; gap: 1rem; }
  .order-form { padding: 2rem 1.5rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-form { padding: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.6rem; text-align: center; }
  .modal-card { grid-template-columns: 1fr; max-height: 95vh; }
  .modal-img { min-height: 240px; }
  .modal-body { padding: 2rem 1.75rem; }
  .hero { padding: 4rem 1.5rem 5rem; min-height: auto; }
  .scroll-cue { display: none; }
  .cakes, .about, .how, .order, .contact, .signature, .testimonials { padding: 5rem 0; }
  .float-emoji.f3, .float-emoji.f6 { display: none; }
  .signature h2 { font-size: clamp(2rem, 7vw, 3rem); }
  .sig-img-inner { font-size: 7rem; }
  .about::after { font-size: 18rem; top: -5rem; }
}

@media (max-width: 600px) {
  .cake-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: stretch; width: 100%; }
  .hero-cta .btn { width: 100%; }
  .marquee-track { font-size: 1.25rem; gap: 2rem; }
  .intro-strip { padding: 4rem 0; }
  .about-stats { gap: 1.5rem; }
  .about-stats strong { font-size: 1.85rem; }
  .radio-row { flex-direction: column; }
  .radio { flex: none; }
}

/* prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
