/* ==========================================================================
   IRISSH TREATS — Shoranur, Kerala
   ========================================================================== */

:root {
  /* Brand — Logo purple (IRiSSH TREATS) */
  --primary: #8B42AD;
  --primary-light: #A55BC4;
  --primary-bright: #9B4FBC;
  --primary-deep: #6B2F88;
  --lavender: #EADBFA;
  --lavender-soft: #F2E9FD;
  --dark: #0F0716;
  --bg-light: #FAF8FD;
  --white: #FFFFFF;

  /* Legacy aliases → logo purple */
  --yellow: var(--primary);
  --yellow-bright: var(--primary-bright);

  --font-heading: 'Montserrat', sans-serif;
  --font-logo: 'Cherry Bomb One', cursive;
  --font-body: 'Inter', sans-serif;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-full: 999px;

  --shadow-soft: 0 20px 50px -20px rgba(139, 66, 173, 0.18);
  --shadow-primary: 0 8px 25px rgba(139, 66, 173, 0.4);

  --ease: cubic-bezier(.22, 1, .36, 1);
  --section-pad: clamp(72px, 10vw, 140px);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
  overflow-x: hidden;
  overflow-x: clip;
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 15px;
  color: #2A1F33;
  background: var(--bg-light);
  overflow-x: hidden;
  overflow-x: clip;
  max-width: 100%;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ---------- Page load reveal ---------- */
.page-reveal {
  display: none;
}

html.js-ready .page-reveal {
  display: block;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--dark);
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.9s var(--ease), visibility 0.9s var(--ease);
}

html.js-ready .page-reveal.is-done {
  opacity: 0;
  visibility: hidden;
}

/* Hold entrance animations until page is ready */
html.js-ready:not(.is-loaded) .navbar,
html.js-ready:not(.is-loaded) .hero-caption,
html.js-ready:not(.is-loaded) .hero-eyebrow,
html.js-ready:not(.is-loaded) .hero-title,
html.js-ready:not(.is-loaded) .hero-carousel-stage,
html.js-ready:not(.is-loaded) .hero-subtext,
html.js-ready:not(.is-loaded) .hero-controls-row {
  animation: none !important;
  opacity: 0;
}

/* Simple fade on all devices; pulse scale is desktop-only below */
html.is-loaded .brand-logo-header {
  animation: logoReveal 0.85s var(--ease) 0.12s both;
}

@keyframes logoReveal {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Desktop only: logo grows then settles on page load */
@media (min-width: 861px) {
  html.is-loaded .brand-logo-header {
    animation: logoPulseIn 1.15s var(--ease) 0.18s both;
  }

  @keyframes logoPulseIn {
    0% {
      opacity: 0;
      transform: scale(0.82);
    }
    45% {
      opacity: 1;
      transform: scale(1.14);
    }
    70% {
      transform: scale(0.94);
    }
    100% {
      opacity: 1;
      transform: scale(1);
    }
  }
}

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

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

ul {
  list-style: none;
}

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

input {
  font: inherit;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

:focus-visible {
  outline: 2.5px solid var(--primary);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Shared utilities ---------- */
.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
  padding: 0 24px;
}

.section-head.light .section-title,
.section-head.light .section-sub {
  color: var(--white);
}

.section-head.light .eyebrow {
  color: var(--lavender);
}

.eyebrow {
  font-family: var(--font-heading);
  font-size: clamp(0.72rem, 1.2vw, 0.8rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-logo);
  font-size: clamp(1.75rem, 3.2vw, 2.45rem);
  margin-bottom: 14px;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.15;
  color: var(--primary);
}

.section-sub {
  color: #3D2A4A;
  font-size: clamp(0.88rem, 1.4vw, 0.98rem);
  line-height: 1.65;
  font-weight: 500;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.06em;
  border-radius: var(--radius-full);
  transition: all 0.35s var(--ease);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.72rem;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 0.8rem;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(139, 66, 173, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid rgba(139, 66, 173, 0.4);
}

.btn-outline:hover {
  background: var(--lavender-soft);
  border-color: var(--primary);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
}

.btn-whatsapp:hover {
  background: #1ebe57;
  transform: translateY(-2px);
}

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--lavender));
  z-index: 1000;
  transition: width .1s linear;
}

/* ============================================================
   NAVIGATION — Transparent Overlay Header
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: 88px;
  display: flex;
  align-items: center;
  background: transparent;
  transition:
    height 0.35s var(--ease),
    background 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
  opacity: 0;
  transform: translateY(-20px);
  animation: navFadeDown 0.7s var(--ease) 0.1s forwards;
}

.nav-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.navbar.scrolled {
  height: 64px;
  background: rgba(15, 7, 22, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(15, 7, 22, 0.55);
}

.navbar.scrolled .brand-logo-header {
  height: 38px;
}

.navbar.scrolled .nav-link {
  font-size: 0.74rem;
  letter-spacing: 0.12em;
}

.navbar.scrolled .nav-group {
  gap: 28px;
}

.nav-group {
  display: flex;
  align-items: center;
  gap: 40px;
  transition: gap 0.35s var(--ease);
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  transition: color 0.3s ease, transform 0.3s ease, font-size 0.35s var(--ease), letter-spacing 0.35s var(--ease);
  position: relative;
}

.nav-link:hover {
  color: var(--lavender);
}

/* Center Logo */
.logo-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  transition: transform 0.35s ease;
  flex-shrink: 0;
}

.logo-center:hover {
  transform: scale(1.04);
}

.navbar.scrolled .logo-center:hover {
  transform: scale(1.03);
}

.brand-logo {
  display: block;
  width: auto;
  object-fit: contain;
}

.brand-logo-header {
  height: 52px;
  transition: height 0.35s var(--ease);
}

.logo-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  color: #FFFFFF;
  text-transform: uppercase;
}

.dot-accent {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 10px rgba(139, 66, 173, 0.85);
}

.logo-main {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.45rem;
  letter-spacing: 0.08em;
  color: #FFFFFF;
  line-height: 1;
  margin-top: 2px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  z-index: 950;
}

.hamburger span {
  display: block;
  height: 2px;
  background: #FFFFFF;
  border-radius: 2px;
  transition: all .35s var(--ease);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  height: 100dvh;
  width: min(78vw, 340px);
  max-width: 100%;
  background: rgba(15, 7, 22, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 40px;
  transform: translateX(100%);
  visibility: hidden;
  pointer-events: none;
  transition: transform .5s var(--ease), visibility .5s var(--ease);
  z-index: 940;
}

.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}

.mobile-link {
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: color .3s ease, padding-left .3s var(--ease);
}

.mobile-link:hover {
  color: var(--lavender);
  padding-left: 10px;
}

.mobile-socials {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: nowrap;
}

.mobile-socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(234, 219, 250, 0.22);
  display: grid;
  place-items: center;
  color: var(--lavender);
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.mobile-socials a:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-2px);
}

/* ============================================================
   HERO — 3D Product Stage
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 780px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark);
  perspective: 1400px;
  margin-bottom: 0;
}

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

.hero-bg-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.08);
  filter: brightness(0.38) saturate(0.9) contrast(1.05);
  transition:
    opacity 1.35s cubic-bezier(0.4, 0, 0.2, 1),
    transform 7s ease-out;
  will-change: opacity, transform;
}

.hero-bg-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg-slide {
    transition: opacity 0.01ms !important;
    transform: none !important;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 42%, rgba(139, 66, 173, 0.42) 0%, transparent 52%),
    radial-gradient(ellipse at 50% 55%, rgba(15, 7, 22, 0.15) 0%, rgba(15, 7, 22, 0.9) 72%),
    linear-gradient(180deg, rgba(15, 7, 22, 0.35) 0%, rgba(15, 7, 22, 0.98) 100%);
}

.hero-glow {
  position: absolute;
  left: 50%;
  top: 48%;
  width: min(720px, 90vw);
  height: min(420px, 55vh);
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center, rgba(155, 79, 188, 0.35) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(20px);
  animation: heroGlowPulse 5s ease-in-out infinite;
}

@keyframes heroGlowPulse {
  0%, 100% { opacity: 0.65; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: #FFFFFF;
  max-width: 1100px;
  width: 100%;
  padding: 96px clamp(16px, 4vw, 40px) 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: visible;
}

.hero-eyebrow {
  /* Hidden: product name already shown on the active plate label */
  display: none;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lavender);
  margin-bottom: 12px;
  opacity: 0;
  transform: translateY(14px);
  animation: heroFadeUp 0.7s var(--ease) 0.15s forwards;
  min-height: 1.2em;
  transition: opacity 0.35s ease;
}

.hero-caption {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lavender);
  margin-bottom: 10px;
  opacity: 0;
  transform: translateY(12px);
  animation: heroFadeUp 0.7s var(--ease) 0.12s forwards;
}

.hero-title {
  font-family: var(--font-logo);
  font-size: clamp(1.9rem, 4.5vw, 2.95rem);
  font-weight: 400;
  color: #FFFFFF;
  line-height: 1.12;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
  text-shadow: 0 4px 28px rgba(139, 66, 173, 0.45);
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.8s var(--ease) 0.25s forwards;
}

.hero-carousel-stage {
  position: relative;
  width: 100%;
  max-width: 900px;
  height: clamp(230px, 32vw, 320px);
  margin: 0 auto 16px;
  padding: 0 clamp(12px, 3vw, 28px);
  opacity: 0;
  transform: scale(0.94);
  animation: heroStageIn 1s var(--ease) 0.35s forwards;
  transform-style: preserve-3d;
  perspective: 1200px;
  transition: transform 0.25s ease-out;
  will-change: transform;
  overflow: visible;
}

@keyframes heroStageIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.hero-plate-card {
  position: absolute;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  transition: transform 0.65s var(--ease), opacity 0.55s ease, filter 0.55s ease, left 0.65s var(--ease), right 0.65s var(--ease);
  cursor: pointer;
  transform-style: preserve-3d;
  will-change: transform, opacity;
}

.plate-label {
  font-family: var(--font-heading);
  font-size: clamp(0.68rem, 1.1vw, 0.82rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 10px;
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 4px;
  transition: color 0.35s ease, transform 0.35s ease;
}

.plate-label-active {
  color: #FFFFFF;
  font-size: clamp(0.78rem, 1.3vw, 0.95rem);
  letter-spacing: 0.1em;
  text-shadow: 0 2px 16px rgba(139, 66, 173, 0.7);
}

.plate-orb {
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
  flex-shrink: 0;
  background:
    radial-gradient(circle at 50% 40%, rgba(234, 219, 250, 0.14) 0%, transparent 58%),
    linear-gradient(145deg, rgba(139, 66, 173, 0.35) 0%, rgba(15, 7, 22, 0.55) 100%);
  box-shadow:
    inset 0 0 30px rgba(139, 66, 173, 0.2),
    0 0 0 2px rgba(234, 219, 250, 0.14),
    0 16px 40px rgba(15, 7, 22, 0.45);
}

.plate-orb-active {
  background:
    radial-gradient(circle at 50% 38%, rgba(234, 219, 250, 0.2) 0%, transparent 55%),
    radial-gradient(circle at 50% 50%, rgba(155, 79, 188, 0.42) 0%, rgba(15, 7, 22, 0.4) 72%);
  box-shadow:
    inset 0 0 56px rgba(139, 66, 173, 0.38),
    0 0 80px rgba(139, 66, 173, 0.42),
    0 0 0 1px rgba(234, 219, 250, 0.22);
}

.plate-orb img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  transform: scale(1);
  transition: transform 0.55s var(--ease), opacity 0.45s ease, filter 0.45s ease;
  animation: productFloat 4.8s ease-in-out infinite;
  user-select: none;
  pointer-events: none;
}

.plate-center .plate-orb img {
  animation-duration: 5.4s;
}

@keyframes productFloat {
  0%, 100% { transform: scale(1) translateY(0); }
  50% { transform: scale(1.04) translateY(-6px); }
}

.plate-shadow {
  width: 68%;
  height: 14px;
  margin-top: 8px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.55) 0%, transparent 70%);
  filter: blur(4px);
  animation: shadowPulse 4.5s ease-in-out infinite;
}

.plate-shadow-active {
  width: 82%;
  height: 22px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.68) 0%, transparent 72%);
  animation-duration: 5.2s;
}

@keyframes shadowPulse {
  0%, 100% { transform: scaleX(1); opacity: 0.85; }
  50% { transform: scaleX(0.86); opacity: 0.55; }
}

.plate-center {
  left: 50%;
  width: clamp(160px, 20vw, 230px);
  z-index: 5;
  transform: translateX(-50%);
}

.plate-center .plate-orb {
  width: clamp(160px, 20vw, 230px);
  height: clamp(160px, 20vw, 230px);
}

.plate-center:hover .plate-orb img {
  transform: scale(1.06) translateY(-4px);
}

.yellow-accent-ring {
  position: absolute;
  inset: -12px;
  width: calc(100% + 24px);
  height: calc(100% + 24px);
  pointer-events: none;
  z-index: 3;
}

.yellow-accent-ring circle {
  fill: none;
  stroke: var(--primary);
  stroke-width: 3.2;
  stroke-dasharray: 240 380;
  stroke-linecap: round;
  filter: drop-shadow(0 0 14px rgba(139, 66, 173, 0.9));
  transform: rotate(-50deg);
  transform-origin: center;
  transition: stroke-dasharray 0.7s ease, transform 0.7s ease;
  animation: ringSpin 14s linear infinite;
}

@keyframes ringSpin {
  to { stroke-dashoffset: -620; }
}

.plate-ring-outer {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1.5px solid rgba(234, 219, 250, 0.22);
  pointer-events: none;
  z-index: 1;
}

.plate-left,
.plate-right {
  width: clamp(90px, 11vw, 130px);
  opacity: 0.78;
  filter: brightness(0.9) saturate(0.92);
  z-index: 2;
}

.plate-left .plate-orb,
.plate-right .plate-orb {
  width: clamp(90px, 11vw, 130px);
  height: clamp(90px, 11vw, 130px);
  flex-shrink: 0;
}

.plate-left {
  left: clamp(4%, 8vw, 12%);
  transform: perspective(900px) rotateY(12deg) translateY(22px) scale(0.9);
}

.plate-right {
  right: clamp(4%, 8vw, 12%);
  transform: perspective(900px) rotateY(-12deg) translateY(22px) scale(0.9);
}

.plate-left:hover,
.plate-right:hover {
  opacity: 1;
  filter: brightness(1) saturate(1);
}

.plate-left:hover {
  transform: perspective(900px) rotateY(8deg) translateY(12px) scale(0.96);
}

.plate-right:hover {
  transform: perspective(900px) rotateY(-8deg) translateY(12px) scale(0.96);
}

.plate-left .plate-orb img,
.plate-right .plate-orb img {
  animation-duration: 4s;
}

.hero.is-swapping .hero-plate-card {
  pointer-events: none;
}

.hero.is-swapping .plate-orb img {
  animation: none;
}

.hero.is-swapping.slide-next .plate-center {
  animation: heroCardExitLeft 0.58s var(--ease) forwards;
}

.hero.is-swapping.slide-next .plate-right {
  animation: heroCardPromoteFromRight 0.58s var(--ease) forwards;
}

.hero.is-swapping.slide-next .plate-left {
  animation: heroCardExitFarLeft 0.58s var(--ease) forwards;
}

.hero.is-swapping.slide-prev .plate-center {
  animation: heroCardExitRight 0.58s var(--ease) forwards;
}

.hero.is-swapping.slide-prev .plate-left {
  animation: heroCardPromoteFromLeft 0.58s var(--ease) forwards;
}

.hero.is-swapping.slide-prev .plate-right {
  animation: heroCardExitFarRight 0.58s var(--ease) forwards;
}

.hero.is-entering .plate-orb img {
  animation: heroImgReveal 0.52s var(--ease) forwards;
}

@keyframes heroCardExitLeft {
  to {
    transform: translateX(calc(-50% - 72px)) scale(0.82);
    opacity: 0;
    filter: brightness(0.7) blur(1px);
  }
}

@keyframes heroCardPromoteFromRight {
  to {
    transform: perspective(900px) rotateY(0deg) translateX(-125%) translateY(-10px) scale(1.06);
    opacity: 1;
    filter: brightness(1) saturate(1);
  }
}

@keyframes heroCardExitFarLeft {
  to {
    transform: perspective(900px) rotateY(14deg) translateX(-36px) translateY(22px) scale(0.78);
    opacity: 0;
  }
}

@keyframes heroCardExitRight {
  to {
    transform: translateX(calc(-50% + 72px)) scale(0.82);
    opacity: 0;
    filter: brightness(0.7) blur(1px);
  }
}

@keyframes heroCardPromoteFromLeft {
  to {
    transform: perspective(900px) rotateY(0deg) translateX(125%) translateY(-10px) scale(1.06);
    opacity: 1;
    filter: brightness(1) saturate(1);
  }
}

@keyframes heroCardExitFarRight {
  to {
    transform: perspective(900px) rotateY(-14deg) translateX(36px) translateY(22px) scale(0.78);
    opacity: 0;
  }
}

@keyframes heroImgReveal {
  from {
    opacity: 0;
    transform: scale(1.14);
    filter: blur(3px);
  }

  to {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero.is-swapping .plate-center,
  .hero.is-swapping .plate-left,
  .hero.is-swapping .plate-right,
  .hero.is-entering .plate-orb img {
    animation: none !important;
  }

}

.hero-subtext {
  font-size: clamp(0.78rem, 1.1vw, 0.9rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.86);
  max-width: 620px;
  line-height: 1.6;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(15px);
  animation: heroFadeUp 0.8s var(--ease) 0.55s forwards;
}

.hero-controls-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  opacity: 0;
  transform: translateY(15px);
  animation: heroFadeUp 0.8s var(--ease) 0.75s forwards;
}

.hero-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  border: 1px solid rgba(234, 219, 250, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.35s var(--ease);
}

.hero-nav-btn:hover {
  background: rgba(139, 66, 173, 0.35);
  color: var(--lavender);
  border-color: rgba(139, 66, 173, 0.6);
  transform: scale(1.08);
}

.hero-nav-btn:active {
  transform: scale(0.95);
}

.btn-yellow-pill {
  padding: 16px 44px;
  border-radius: 999px;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: var(--shadow-primary);
  transition: all 0.4s var(--ease);
}

.btn-yellow-pill:hover {
  background: var(--primary-light);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 35px rgba(139, 66, 173, 0.55);
}

.hero-corner-left {
  position: absolute;
  bottom: 30px;
  left: clamp(20px, 4vw, 48px);
  z-index: 20;
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font-heading);
}

.slide-counter {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 6px;
  line-height: 1;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
}

.slide-counter .counter-num {
  font-size: 1.2rem;
  color: var(--lavender);
  font-weight: 800;
}

.slide-counter .counter-sep {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.9rem;
}

.slide-counter .counter-total {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}

.hero-corner-right {
  position: absolute;
  bottom: 30px;
  right: clamp(20px, 4vw, 48px);
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-social-btn,
.hero-insta-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(234, 219, 250, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: grid;
  place-items: center;
  color: #FFFFFF;
  transition: all 0.35s var(--ease);
}

.hero-social-btn:hover,
.hero-insta-btn:hover {
  background: rgba(139, 66, 173, 0.35);
  color: var(--lavender);
  border-color: rgba(139, 66, 173, 0.6);
  transform: translateY(-2px);
}

@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .plate-orb img,
  .plate-shadow,
  .yellow-accent-ring circle,
  .hero-glow {
    animation: none !important;
  }
}

@keyframes navFadeDown {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
   PRODUCT SHOWCASE / CAROUSEL
   ============================================================ */
.showcase {
  padding: var(--section-pad) 0;
  background: var(--bg-light);
  position: relative;
  overflow-x: hidden;
  max-width: 100%;
}

.showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--lavender), transparent);
}

.menu-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3.5vw, 36px);
  max-width: 900px;
  margin: 0 auto clamp(28px, 4vw, 44px);
  padding: 0 20px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.menu-filters::-webkit-scrollbar {
  display: none;
}

.menu-filter-tab {
  flex-shrink: 0;
  appearance: none;
  border: 1.5px solid transparent;
  background: rgba(155, 79, 188, 0.08);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(15, 7, 22, 0.5);
  cursor: pointer;
  position: relative;
  transition: color 0.3s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.menu-filter-tab::after {
  display: none;
}

.menu-filter-tab:hover {
  color: var(--primary-deep);
  background: rgba(155, 79, 188, 0.14);
  border-color: rgba(155, 79, 188, 0.25);
}

.menu-filter-tab.is-active {
  color: var(--white);
  background: linear-gradient(135deg, var(--primary-bright), var(--primary-deep));
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(107, 47, 136, 0.32);
}

.menu-filter-tab.is-active::after {
  display: none;
}

.carousel {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.carousel-track {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
  position: relative;
  padding: 12px 0 8px;
}

.carousel-item {
  position: relative;
  border-radius: 50%;
  overflow: hidden;
  width: 118px;
  height: 118px;
  aspect-ratio: 1;
  flex-shrink: 0;
  /* Spacing lives on the items (not track gap) so hidden zero-width
     items don't add phantom space that pushes the active item off-center */
  margin: 0 clamp(5px, 0.7vw, 10px);
  cursor: pointer;
  border: 2px solid rgba(155, 79, 188, 0.28);
  padding: 0;
  transition:
    width .6s var(--ease),
    height .6s var(--ease),
    opacity .6s var(--ease),
    filter .6s var(--ease),
    transform .6s var(--ease),
    margin .6s var(--ease),
    box-shadow .6s var(--ease),
    border-color .6s var(--ease);
  opacity: .5;
  filter: blur(1.2px) saturate(.75);
  box-shadow:
    0 14px 28px -14px rgba(107, 47, 136, 0.35),
    inset 0 0 20px rgba(139, 66, 173, 0.12);
  background:
    radial-gradient(circle at 50% 38%, rgba(248, 243, 252, 0.95) 0%, transparent 55%),
    linear-gradient(165deg, rgba(242, 233, 253, 0.95) 0%, rgba(234, 219, 250, 0.88) 45%, rgba(155, 79, 188, 0.18) 100%);
}

.carousel-item.is-hidden {
  width: 0;
  height: 0;
  opacity: 0;
  margin: 0;
  pointer-events: none;
  filter: none;
  box-shadow: none;
  border-width: 0;
  overflow: hidden;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 50%;
  transition: transform 0.55s var(--ease);
}

.carousel-item.side-1 {
  width: 176px;
  height: 176px;
  opacity: .85;
  filter: blur(0) saturate(.95);
  z-index: 2;
  border-color: rgba(155, 79, 188, 0.45);
}

.carousel-item.side-2 {
  width: 136px;
  height: 136px;
  opacity: .62;
  z-index: 1;
}

.carousel-item.active {
  width: 280px;
  height: 280px;
  opacity: 1;
  filter: blur(0) saturate(1.08);
  z-index: 3;
  transform: translateY(-8px);
  border-color: var(--primary-bright);
  border-width: 3px;
  box-shadow:
    0 0 0 4px rgba(255, 255, 255, 0.75),
    0 0 0 9px rgba(155, 79, 188, 0.28),
    0 28px 56px -18px rgba(107, 47, 136, 0.5),
    0 0 40px rgba(139, 66, 173, 0.22);
  animation: floatActive 4.5s ease-in-out infinite;
  background:
    radial-gradient(circle at 50% 36%, #F8F3FC 0%, transparent 52%),
    linear-gradient(165deg, #F8F3FC 0%, #EADBFA 40%, rgba(155, 79, 188, 0.22) 100%);
}

.carousel-item.active img {
  transform: scale(1.03);
}

@keyframes floatActive {

  0%,
  100% {
    transform: translateY(-8px);
  }

  50% {
    transform: translateY(2px);
  }
}

.carousel-label {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 18px rgba(107, 47, 136, 0.35);
  opacity: 0;
  transition: opacity .4s ease;
  white-space: nowrap;
  max-width: 82%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.carousel-item.active .carousel-label {
  opacity: 1;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 34px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.carousel-btn {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--primary-bright), var(--primary-deep));
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-primary);
  transition: all .35s var(--ease);
}

.carousel-btn:hover {
  background: var(--primary-deep);
  color: var(--white);
  transform: scale(1.08);
}

.carousel-dots {
  display: flex;
  gap: 8px;
  flex: 1 1 auto;
  min-width: 0;
  max-width: min(420px, 100%);
  overflow-x: auto;
  justify-content: safe center;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.carousel-dots::-webkit-scrollbar {
  display: none;
}

.dot {
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(139, 66, 173, .18);
  cursor: pointer;
  transition: all .35s var(--ease);
}

.dot.active {
  width: 26px;
  border-radius: 6px;
  background: var(--primary);
}

.carousel-info {
  text-align: center;
  margin-top: 36px;
  min-height: 150px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  padding: 28px 28px 30px;
  border-radius: 24px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.95) 0%, rgba(242, 233, 253, 0.9) 55%, rgba(234, 219, 250, 0.85) 100%);
  border: 1.5px solid rgba(155, 79, 188, 0.22);
  box-shadow: 0 18px 40px -22px rgba(107, 47, 136, 0.35);
}

.product-name {
  font-size: clamp(1.3rem, 2.6vw, 1.8rem);
  margin-bottom: 10px;
  color: var(--primary-deep);
  opacity: 0;
  animation: fadeIn .6s var(--ease) forwards;
}

.product-desc {
  color: #3D2A4A;
  font-size: clamp(0.88rem, 1.4vw, 0.98rem);
  font-weight: 500;
  line-height: 1.65;
  max-width: 520px;
  margin: 0 auto 18px;
  opacity: 0;
  animation: fadeIn .6s var(--ease) .08s forwards;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  opacity: 0;
  animation: fadeIn .6s var(--ease) .16s forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* ============================================================
   FEATURE BANNER
   ============================================================ */
.feature-banner {
  max-width: 1100px;
  margin: -28px auto 0;
  padding: 0 24px;
  position: relative;
  z-index: 4;
}

.feature-banner-link {
  display: block;
  position: relative;
  padding: 28px 0 48px;
  overflow: visible;
}

.feature-banner-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #F3EAF8 0%, #EADBFA 100%);
  border-radius: 48px 28px 28px 48px;
  padding: 22px 28px 22px 36px;
  min-height: 88px;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
  box-shadow: 0 12px 36px -18px rgba(139, 66, 173, 0.28);
}

.feature-banner-link:hover .feature-banner-bar {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -16px rgba(139, 66, 173, 0.35);
}

.feature-banner-text {
  font-family: 'Nunito', var(--font-heading), sans-serif;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  font-weight: 700;
  color: #2A1F33;
  letter-spacing: 0.01em;
}

.feature-banner-arrow {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--primary);
  transition: transform .4s var(--ease), background .3s ease;
}

.feature-banner-link:hover .feature-banner-arrow {
  transform: translate(3px, -3px);
  background: rgba(139, 66, 173, 0.1);
}

.feature-banner-media {
  position: absolute;
  right: 8%;
  bottom: 0;
  width: clamp(140px, 18vw, 210px);
  pointer-events: none;
  filter: drop-shadow(0 18px 28px rgba(60, 30, 80, 0.22));
  transition: transform .55s var(--ease);
}

.feature-banner-link:hover .feature-banner-media {
  transform: translateY(-8px) scale(1.04);
}

.feature-banner-media img {
  width: 100%;
  height: auto;
}

/* ============================================================
   ABOUT — 3-column story layout
   ============================================================ */
.about {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(64px, 8vw, 110px) 24px 40px;
  background: transparent;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.9fr 1.05fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: stretch;
  margin-bottom: 56px;
}

.about-col {
  display: flex;
  flex-direction: column;
}

.about-col-left {
  justify-content: space-between;
  padding: 8px 0 12px;
}

.about-headline {
  font-family: var(--font-logo);
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--primary);
  letter-spacing: 0.02em;
}

.about-headline span {
  display: block;
}

.about-col-foot {
  margin-top: 36px;
  max-width: 340px;
}

.about-col-media {
  justify-content: center;
}

.about-frame {
  border-radius: 36px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 3/4;
  max-height: 460px;
  margin: 0 auto;
  width: 100%;
}

.about-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .9s var(--ease);
}

.about-col-media:hover .about-frame img,
.about-frame:hover img {
  transform: scale(1.06);
}

.about-col-right {
  justify-content: center;
  gap: 28px;
  padding: 12px 0;
}

.about-block {
  max-width: 360px;
}

.about-mini-title {
  font-family: 'Nunito', var(--font-heading), sans-serif;
  font-size: clamp(0.98rem, 1.7vw, 1.1rem);
  font-weight: 800;
  color: #2A1F33;
  margin-bottom: 10px;
  line-height: 1.3;
}

.about-mini-text {
  font-size: clamp(0.88rem, 1.4vw, 0.98rem);
  line-height: 1.7;
  color: #3D2A4A;
  font-weight: 500;
}

.btn-taste {
  align-self: flex-start;
  gap: 12px;
  padding: 14px 16px 14px 26px;
  background: var(--primary);
  color: var(--white);
  font-family: 'Nunito', var(--font-heading), sans-serif;
  font-size: clamp(0.85rem, 1.3vw, 0.95rem);
  font-weight: 700;
  border-radius: var(--radius-full);
  box-shadow: 0 10px 24px -10px rgba(139, 66, 173, 0.5);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .25s ease;
}

.btn-taste:hover {
  transform: translateY(-2px) scale(1.02);
  background: var(--primary-light);
  box-shadow: 0 14px 28px -10px rgba(139, 66, 173, 0.6);
}

.btn-taste-icon {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transition: transform .35s var(--ease);
}

.btn-taste:hover .btn-taste-icon {
  transform: translateX(3px);
}

/* ============================================================
   SIGNATURE / BESTSELLER HIGHLIGHT
   ============================================================ */
.signature {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(48px, 7vw, 90px) 24px clamp(40px, 6vw, 70px);
  position: relative;
}

.signature-head {
  text-align: center;
  margin-bottom: 28px;
}

.signature-title {
  font-family: var(--font-logo);
  font-size: clamp(1.75rem, 3.2vw, 2.45rem);
  font-weight: 400;
  color: var(--primary);
  letter-spacing: 0.02em;
}

.signature-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 420px;
  margin: 20px 0 28px;
}

.signature-visual {
  position: relative;
  width: min(520px, 92%);
  height: 380px;
  display: grid;
  place-items: center;
  z-index: 2;
}

.sig-img {
  position: absolute;
  object-fit: contain;
  filter: drop-shadow(0 22px 36px rgba(60, 30, 80, 0.2));
  transition: transform .55s var(--ease);
}

.sig-img-main {
  width: clamp(200px, 32vw, 280px);
  left: 8%;
  bottom: 8%;
  z-index: 2;
  animation: floaty 5.5s ease-in-out infinite;
}

.sig-img-side {
  width: clamp(150px, 24vw, 210px);
  right: 4%;
  top: 6%;
  z-index: 3;
  animation: floaty 6.2s ease-in-out infinite 0.4s;
}

.signature-stage:hover .sig-img-main {
  transform: translateY(-6px) scale(1.03);
}

.signature-stage:hover .sig-img-side {
  transform: translateY(-4px) scale(1.04);
}

.signature-card {
  position: absolute;
  background: #F5EDF9;
  border-radius: 22px;
  padding: 18px 20px;
  max-width: 260px;
  z-index: 1;
  box-shadow: 0 10px 28px -16px rgba(139, 66, 173, 0.25);
  transition: transform .45s var(--ease);
}

.signature-card h3 {
  font-family: 'Nunito', var(--font-heading), sans-serif;
  font-size: clamp(0.85rem, 1.4vw, 0.95rem);
  font-weight: 800;
  color: #2A1F33;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.signature-card p {
  font-size: clamp(0.8rem, 1.25vw, 0.9rem);
  line-height: 1.6;
  color: #3D2A4A;
  font-weight: 500;
}

.signature-card-bl {
  left: 0;
  bottom: 18%;
}

.signature-card-tr {
  right: 0;
  top: 8%;
}

.signature-stage:hover .signature-card-bl {
  transform: translate(-4px, 4px);
}

.signature-stage:hover .signature-card-tr {
  transform: translate(4px, -4px);
}

.sig-buy {
  position: absolute;
  z-index: 4;
  background: var(--primary);
  color: var(--white);
  font-family: 'Nunito', var(--font-heading), sans-serif;
  font-size: clamp(0.7rem, 1.15vw, 0.8rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 16px;
  border-radius: 18px 18px 18px 4px;
  box-shadow: 0 8px 18px -8px rgba(139, 66, 173, 0.55);
  transition: transform .3s var(--ease), background .25s ease;
}

.sig-buy:hover {
  transform: scale(1.06);
  background: var(--primary-light);
}

.sig-buy-1 {
  left: 42%;
  bottom: 22%;
}

.sig-buy-2 {
  right: 18%;
  top: 28%;
  border-radius: 18px 18px 4px 18px;
}

.signature-nav {
  display: flex;
  justify-content: center;
}

.signature-explore {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Nunito', var(--font-heading), sans-serif;
  font-size: clamp(0.88rem, 1.4vw, 0.98rem);
  font-weight: 700;
  color: var(--primary);
  transition: gap .3s var(--ease), color .25s ease;
}

.signature-explore:hover {
  gap: 12px;
  color: var(--primary-bright);
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* ============================================================
   CUSTOM CAKE / TIMELINE
   ============================================================ */
.custom-cake {
  background:
    linear-gradient(180deg, rgba(15, 7, 22, 0.72) 0%, rgba(15, 7, 22, 0.58) 45%, rgba(15, 7, 22, 0.78) 100%),
    url('images/custom-cake-bg.webp') center / cover no-repeat;
  padding: clamp(48px, 6vw, 72px) 24px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.custom-cake::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(139, 66, 173, 0.18) 0%, transparent 55%);
  pointer-events: none;
}

.custom-cake .section-head {
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.custom-cake-cta {
  text-align: center;
  margin-top: 0;
  position: relative;
  z-index: 1;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: var(--section-pad) 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(139, 66, 173, 0.08);
}

.contact-info {
  padding: clamp(32px, 5vw, 64px);
}

.contact-details {
  margin: 26px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: #6B6080;
  font-size: .85rem;
  min-width: 0;
}

.contact-details li span {
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contact-details a {
  color: var(--primary);
  transition: color .3s ease;
}

.contact-details a:hover {
  color: var(--primary-light);
}

.contact-details svg {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.contact-map {
  min-height: 320px;
  position: relative;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(10%) hue-rotate(280deg);
}

.map-directions-link {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  background: var(--primary);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}

.map-directions-link:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .22);
}

.map-directions-link:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, .8);
  padding: 56px 24px 26px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(234, 219, 250, .08);
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.brand-logo-footer {
  height: 58px;
}

.footer-logo .logo-tag {
  font-size: 0.62rem;
}

.footer-logo .logo-main {
  font-size: 1.2rem;
}

.footer-nav {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}

.footer-nav a {
  font-size: .8rem;
  transition: color .3s ease;
}

.footer-nav a:hover {
  color: var(--lavender);
}

.footer-socials {
  display: flex;
  gap: 14px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(234, 219, 250, .18);
  display: grid;
  place-items: center;
  transition: all .3s ease;
}

.footer-socials a:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 24px;
  font-size: .74rem;
  color: rgba(255, 255, 255, .5);
}

.heart {
  color: var(--primary-light);
}

/* ============================================================
   SCROLL-REVEAL
   ============================================================ */
[data-animate] {
  opacity: 0;
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}

[data-animate="fade-up"] {
  transform: translateY(36px);
}

[data-animate="slide-right"] {
  transform: translateX(-40px);
}

[data-animate="slide-left"] {
  transform: translateX(40px);
}

[data-animate="scale"] {
  transform: scale(0.94) translateY(20px);
}

[data-animate].in-view {
  opacity: 1;
  transform: none;
}

.about-col-left [data-animate]:nth-child(1) { transition-delay: 0.05s; }
.about-col-left [data-animate]:nth-child(2) { transition-delay: 0.15s; }
.about-col-left [data-animate]:nth-child(3) { transition-delay: 0.28s; }
.about-col-right [data-animate]:nth-child(1) { transition-delay: 0.12s; }
.about-col-right [data-animate]:nth-child(2) { transition-delay: 0.24s; }
.about-col-right [data-animate]:nth-child(3) { transition-delay: 0.36s; }

/* Large desktop — bigger hero products (laptop keeps original size) */
@media (min-width: 1440px) {
  .hero {
    min-height: 840px;
  }

  .hero-content {
    max-width: 1240px;
  }

  .hero-glow {
    top: 50%;
    width: min(860px, 90vw);
    height: min(500px, 58vh);
  }

  .hero-carousel-stage {
    height: 480px;
    max-width: 1200px;
  }

  .plate-center {
    width: 380px;
  }

  .plate-center .plate-orb {
    width: 380px;
    height: 380px;
  }

  .plate-left,
  .plate-right {
    width: 200px;
  }

  .plate-left .plate-orb,
  .plate-right .plate-orb {
    width: 200px;
    height: 200px;
  }

  .plate-left {
    left: 5%;
  }

  .plate-right {
    right: 5%;
  }
}

@media (min-width: 1680px) {
  .hero {
    min-height: 900px;
  }

  .hero-carousel-stage {
    height: 540px;
    max-width: 1280px;
  }

  .plate-center {
    width: 440px;
  }

  .plate-center .plate-orb {
    width: 440px;
    height: 440px;
  }

  .plate-left,
  .plate-right {
    width: 230px;
  }

  .plate-left .plate-orb,
  .plate-right .plate-orb {
    width: 230px;
    height: 230px;
  }

  .plate-left {
    left: 4%;
  }

  .plate-right {
    right: 4%;
  }

  .plate-label-active {
    font-size: 1rem;
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .about-col-left {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
  }

  .about-col-foot {
    margin-top: 0;
  }

  .signature-card-bl {
    left: 2%;
    bottom: 4%;
  }

  .signature-card-tr {
    right: 2%;
    top: 2%;
  }

  .contact-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .navbar {
    height: 88px;
  }

  .navbar.scrolled {
    height: 64px;
  }

  .brand-logo-header {
    height: 64px;
    max-width: min(148px, 42vw);
    width: auto;
  }

  .navbar.scrolled .brand-logo-header {
    height: 44px;
  }

  html {
    scroll-padding-top: 72px;
  }

  .nav-group {
    display: none;
  }

  .hamburger {
    display: flex;
    flex-shrink: 0;
    position: relative;
    z-index: 960;
  }

  .nav-inner {
    padding: 0 16px;
    gap: 12px;
    max-width: 100%;
  }

  .logo-center {
    min-width: 0;
  }

  .feature-banner {
    margin-top: -12px;
    max-width: 100%;
    overflow: hidden;
  }

  .feature-banner-bar {
    border-radius: 28px;
    padding: 18px 20px 18px 22px;
    min-height: 72px;
    padding-right: 42%;
  }

  .feature-banner-media {
    right: 4%;
    width: clamp(110px, 34vw, 160px);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-col-left {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-col-foot {
    margin-top: 20px;
    max-width: 100%;
  }

  .about-headline {
    font-size: clamp(1.6rem, 6.5vw, 2.05rem);
  }

  .about-mini-title {
    font-size: 1.02rem;
  }

  .about-mini-text {
    font-size: 0.92rem;
    line-height: 1.7;
  }

  .about-block {
    max-width: 100%;
  }

  .btn-taste {
    font-size: 0.9rem;
    padding: 14px 16px 14px 24px;
  }

  .about-frame {
    max-height: 380px;
    max-width: 320px;
    aspect-ratio: 3/4;
  }

  .about-col-right {
    gap: 22px;
  }

  .signature-title {
    font-size: clamp(1.6rem, 6.5vw, 2.05rem);
  }

  .signature-card {
    max-width: 100%;
    padding: 18px 20px;
  }

  .signature-card h3 {
    font-size: 0.92rem;
  }

  .signature-card p {
    font-size: 0.88rem;
  }

  .signature-explore {
    font-size: 0.92rem;
  }

  .section-title {
    font-size: clamp(1.6rem, 6.5vw, 2.05rem);
  }

  .section-sub {
    font-size: 0.92rem;
  }

  .product-desc {
    font-size: 0.92rem;
  }

  .signature-stage {
    min-height: auto;
    padding: 20px 0 40px;
  }

  .signature-visual {
    height: 320px;
    width: 100%;
  }

  .signature-card {
    position: relative;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    max-width: 100%;
    margin: 10px 0;
  }

  .signature-stage {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .signature-card-tr {
    order: 1;
  }

  .signature-visual {
    order: 2;
  }

  .signature-card-bl {
    order: 3;
  }

  .sig-buy-1 {
    left: 48%;
    bottom: 12%;
  }

  .sig-buy-2 {
    right: 10%;
    top: 18%;
  }

  .hero-carousel-stage {
    height: 280px;
  }

  .plate-left,
  .plate-right {
    width: 96px;
    opacity: 0.65;
  }

  .plate-left .plate-orb,
  .plate-right .plate-orb {
    width: 96px;
    height: 96px;
  }

  .plate-left {
    left: 6%;
    transform: perspective(700px) rotateY(10deg) translateY(16px) scale(0.9);
  }

  .plate-right {
    right: 6%;
    transform: perspective(700px) rotateY(-10deg) translateY(16px) scale(0.9);
  }

  .plate-center {
    width: 190px;
  }

  .plate-center .plate-orb {
    width: 190px;
    height: 190px;
  }

  .plate-label {
    font-size: 0.62rem;
  }

  .plate-label-active {
    font-size: 0.72rem;
  }

  .hero-title {
    font-size: 1.85rem;
    margin-bottom: 10px;
  }

  .hero-subtext {
    font-size: 0.8rem;
    padding: 0 12px;
    margin-bottom: 18px;
  }

  .hero-content {
    padding: 84px 20px 48px;
  }

  .hero {
    min-height: 100svh;
    align-items: flex-start;
  }

  .hero-caption {
    margin-bottom: 8px;
  }

  .btn-yellow-pill {
    padding: 14px 32px;
    font-size: 0.76rem;
  }

  /* Menu carousel — mobile coverflow */
  .section-head {
    margin-bottom: 28px;
    padding: 0 16px;
  }

  .section-sub {
    font-size: 0.92rem;
    line-height: 1.65;
  }

  .menu-filters {
    justify-content: flex-start;
    gap: 22px;
    margin-bottom: 20px;
    padding: 0 16px 4px;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }

  .menu-filter-tab {
    font-size: 0.72rem;
  }

  .carousel {
    padding: 0 16px;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }

  .carousel-track {
    min-height: 260px;
    overflow: hidden;
    padding: 12px 0 8px;
    justify-content: center;
    width: 100%;
    max-width: 100%;
  }

  .carousel-item {
    width: 88px;
    height: 88px;
    margin: 0 -14px;
    border-radius: 50%;
  }

  .carousel-item.side-2 {
    width: 108px;
    height: 108px;
    opacity: .55;
    filter: blur(1.5px) saturate(.75);
    margin: 0 -22px;
    z-index: 1;
  }

  .carousel-item.side-1 {
    width: 148px;
    height: 148px;
    opacity: .82;
    filter: blur(0.5px) saturate(.92);
    margin: 0 -16px;
    z-index: 2;
  }

  .carousel-item.active {
    width: 210px;
    height: 210px;
    margin: 0 -4px;
    transform: translateY(-4px);
    border-width: 2.5px;
    box-shadow:
      0 0 0 4px rgba(255, 255, 255, .7),
      0 0 0 8px rgba(155, 79, 188, .26),
      0 18px 44px -12px rgba(107, 47, 136, .48),
      0 0 28px rgba(139, 66, 173, 0.18);
  }

  .carousel-controls {
    margin-top: 22px;
    gap: 14px;
    padding: 0;
    width: 100%;
    max-width: 100%;
  }

  .carousel-btn {
    width: 44px;
    height: 44px;
    box-shadow: 0 8px 22px -8px rgba(139, 66, 173, 0.28);
  }

  /* Many menu items make dots wider than the phone — keep arrows visible */
  .carousel-dots {
    display: none;
  }

  /* Product name lives under the carousel — hide on-image label */
  .carousel-label {
    display: none;
  }

  .carousel-info {
    margin-top: 24px;
    min-height: 110px;
    margin-left: 0;
    margin-right: 0;
    padding: 22px 18px 24px;
    max-width: 100%;
    box-sizing: border-box;
  }
}

@media (max-width: 480px) {

  .navbar {
    height: 84px;
  }

  .navbar.scrolled {
    height: 60px;
  }

  .brand-logo-header {
    height: 58px;
    max-width: min(136px, 40vw);
  }

  .navbar.scrolled .brand-logo-header {
    height: 40px;
  }

  html {
    scroll-padding-top: 64px;
  }

  .hero {
    min-height: 100svh;
    height: 100svh;
    max-height: 100svh;
    align-items: stretch;
    justify-content: flex-start;
  }

  .hero-content {
    flex: 1;
    width: 100%;
    max-width: 100%;
    padding: 108px 18px 52px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    gap: 0;
  }

  .hero-caption {
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    margin: 0 0 8px;
  }

  .hero-title {
    font-size: clamp(1.75rem, 7.2vw, 2.05rem);
    line-height: 1.18;
    margin: 0 0 6px;
    padding: 0 8px;
    max-width: 16em;
  }

  .hero-carousel-stage {
    position: relative;
    width: 100%;
    height: auto !important;
    min-height: 0 !important;
    margin: 2px auto 12px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: none !important;
  }

  .plate-left,
  .plate-right {
    display: none !important;
  }

  .plate-center {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
    width: min(58vw, 230px);
    margin: 0 auto;
  }

  .plate-center .plate-orb {
    width: min(58vw, 230px);
    height: min(58vw, 230px);
  }

  .plate-label {
    display: none;
  }

  .plate-label-active {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    margin: 0 0 12px;
    text-align: center;
  }

  .plate-shadow,
  .plate-shadow-active {
    margin-top: 6px;
  }

  .hero-subtext {
    font-size: 0.82rem;
    line-height: 1.5;
    margin: 0 0 18px;
    padding: 0 10px;
    max-width: 32em;
  }

  .hero-controls-row {
    margin-top: 0;
    gap: 12px;
    width: 100%;
    justify-content: center;
  }

  .hero-nav-btn {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
  }

  .btn-yellow-pill {
    padding: 14px 28px;
    font-size: 0.78rem;
  }

  .hero-corner-left,
  .hero-corner-right {
    bottom: 14px;
  }

  .yellow-accent-ring {
    inset: -10px;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
  }

  .feature-banner-text {
    font-size: 0.8rem;
  }

  .sig-img-side {
    width: 130px;
  }

  .sig-img-main {
    width: 170px;
  }

  .carousel-track {
    min-height: 240px;
  }

  .carousel-item {
    width: 76px;
    height: 76px;
    margin: 0 -12px;
    border-radius: 50%;
  }

  .carousel-item.side-2 {
    width: 96px;
    height: 96px;
    margin: 0 -18px;
    opacity: .48;
    filter: blur(1.8px) saturate(.7);
  }

  .carousel-item.side-1 {
    width: 132px;
    height: 132px;
    margin: 0 -14px;
    opacity: .78;
    filter: blur(0.6px) saturate(.9);
  }

  .carousel-item.active {
    width: 188px;
    height: 188px;
    margin: 0 -2px;
    box-shadow:
      0 0 0 4px rgba(255, 255, 255, .75),
      0 0 0 8px rgba(155, 79, 188, .28),
      0 16px 40px -10px rgba(107, 47, 136, .5),
      0 0 24px rgba(139, 66, 173, 0.16);
  }

  .carousel-controls {
    margin-top: 18px;
  }
}
