/* ============================================================
   MELTED MAGIC — Luxury Handmade Chocolate • Gifting • Resin Art
   Premium design system
   ============================================================ */

:root {
  --blush: #CFA3AE;
  --blush-light: #E8CDD4;
  --blush-deep: #B98795;
  --lavender: #B9A5E8;
  --lavender-soft: #D9CCF4;
  --gold: #D9B95B;
  --gold-light: #F0DCA0;
  --gold-deep: #B8973A;
  --cream: #FFF7F2;
  --choco: #4B241A;
  --choco-deep: #2E140E;
  --wine: #7A2E3A;
  --floral: #F3B7C6;

  --font-display: 'Playfair Display', 'Cormorant Garamond', serif;
  --font-script: 'Great Vibes', cursive;
  --font-body: 'Poppins', 'Inter', sans-serif;

  --shadow-soft: 0 18px 45px rgba(75, 36, 26, 0.12);
  --shadow-deep: 0 30px 80px rgba(75, 36, 26, 0.25);
  --shadow-gold: 0 10px 40px rgba(217, 185, 91, 0.35);

  --radius-lg: 28px;
  --radius-md: 18px;

  --ease-luxe: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--choco);
  overflow-x: hidden;
  min-height: 100vh;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--gold); color: var(--choco-deep); }

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* ------------------------------------------------------------
   Fine grain + ambient background
   ------------------------------------------------------------ */
.grain-overlay {
  position: fixed; inset: 0; pointer-events: none; z-index: 9990;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

.ambient-bg {
  position: fixed; inset: 0; z-index: -2; overflow: hidden;
  background:
    radial-gradient(1200px 800px at 85% -10%, rgba(185, 165, 232, 0.20), transparent 60%),
    radial-gradient(1000px 700px at -10% 30%, rgba(243, 183, 198, 0.30), transparent 65%),
    radial-gradient(900px 900px at 50% 110%, rgba(217, 185, 91, 0.12), transparent 60%),
    linear-gradient(180deg, #FBEFF0 0%, var(--cream) 45%, #F6E8EA 100%);
}
.ambient-bg::before {
  content: ""; position: absolute; inset: -20%;
  background:
    radial-gradient(closest-side, rgba(207,163,174,0.25), transparent) 15% 20% / 42vw 42vw no-repeat,
    radial-gradient(closest-side, rgba(185,165,232,0.20), transparent) 85% 65% / 46vw 46vw no-repeat,
    radial-gradient(closest-side, rgba(217,185,91,0.14), transparent) 45% 95% / 38vw 38vw no-repeat;
  animation: ambientDrift 26s ease-in-out infinite alternate;
}
@keyframes ambientDrift {
  0%   { transform: translate3d(-2%, -1%, 0) scale(1); }
  100% { transform: translate3d(2%, 2%, 0) scale(1.06); }
}

/* ------------------------------------------------------------
   Custom cursor
   ------------------------------------------------------------ */
.cursor-glow, .cursor-dot { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9995; }
.cursor-glow {
  width: 300px; height: 300px; margin: -150px 0 0 -150px; border-radius: 50%;
  background: radial-gradient(circle, rgba(217,185,91,0.16) 0%, rgba(243,183,198,0.10) 35%, transparent 70%);
  transition: transform 0.18s var(--ease-luxe), opacity 0.3s;
  will-change: transform;
}
.cursor-dot {
  width: 9px; height: 9px; margin: -4.5px 0 0 -4.5px; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 12px rgba(217,185,91,0.9);
  transition: transform 0.12s ease-out, background 0.25s;
  will-change: transform;
}
body.cursor-hovering .cursor-dot { transform: scale(2.6); background: var(--wine); }
@media (hover: none), (max-width: 820px) { .cursor-glow, .cursor-dot { display: none; } }

/* ------------------------------------------------------------
   Preloader
   ------------------------------------------------------------ */
.preloader {
  position: fixed; inset: 0; z-index: 10000;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 22px;
  background: linear-gradient(160deg, #E9CDD5, var(--blush) 55%, #BC8A97);
  transition: opacity 0.9s var(--ease-luxe), visibility 0.9s;
}
.preloader.done { opacity: 0; visibility: hidden; }
.preloader__ring {
  width: 130px; height: 130px; border-radius: 50%; position: relative;
  border: 2px solid rgba(255,247,242,0.35);
}
.preloader__ring::before {
  content: ""; position: absolute; inset: -2px; border-radius: 50%;
  border: 2px solid transparent; border-top-color: var(--gold-light); border-right-color: var(--gold);
  animation: spin 1.15s linear infinite;
}
.preloader__ring img {
  position: absolute; inset: 12px; width: calc(100% - 24px); height: calc(100% - 24px);
  border-radius: 50%; object-fit: cover; box-shadow: 0 10px 30px rgba(75,36,26,0.35);
}
.preloader__text {
  font-family: var(--font-script); font-size: 2rem; color: var(--cream);
  text-shadow: 0 4px 18px rgba(75,36,26,0.35); letter-spacing: 1px;
}
.preloader__bar {
  width: 180px; height: 2px; background: rgba(255,247,242,0.3); border-radius: 2px; overflow: hidden;
}
.preloader__bar span {
  display: block; height: 100%; width: 40%; border-radius: 2px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  animation: loadslide 1.2s ease-in-out infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes loadslide { 0% { transform: translateX(-120%);} 100% { transform: translateX(420%);} }

/* ------------------------------------------------------------
   Page transition veil (chocolate melt)
   ------------------------------------------------------------ */
.page-veil {
  position: fixed; inset: 0; z-index: 9999; pointer-events: none;
  transform: translateY(-102%);
  background: linear-gradient(180deg, var(--choco-deep), var(--choco) 60%, var(--wine));
}
.page-veil::after {
  content: ""; position: absolute; left: 0; right: 0; top: 100%; height: 90px;
  background-repeat: repeat-x; background-size: 220px 90px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 90'%3E%3Cpath d='M0 0 h220 v8 c-12 0 -14 44 -26 44 s-12 -30 -24 -30 s-14 58 -28 58 s-13 -40 -25 -40 s-13 24 -26 24 s-14 -48 -28 -48 s-12 34 -24 34 s-13 -20 -26 -20 s-8 10 -13 10 z' fill='%234B241A'/%3E%3C/svg%3E");
}
.page-veil.enter { transition: transform 0.7s var(--ease-luxe); transform: translateY(0); }
.page-veil.leave { transition: transform 0.9s var(--ease-luxe) 0.15s; transform: translateY(102%); }

/* ------------------------------------------------------------
   Navbar
   ------------------------------------------------------------ */
.navbar {
  position: fixed; top: 18px; left: 50%; transform: translateX(-50%);
  width: min(1240px, calc(100% - 36px));
  z-index: 950;
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 26px 10px 14px;
  border-radius: 60px;
  background: rgba(255, 247, 242, 0.55);
  backdrop-filter: blur(22px) saturate(1.4);
  -webkit-backdrop-filter: blur(22px) saturate(1.4);
  border: 1px solid rgba(217, 185, 91, 0.35);
  box-shadow: 0 12px 40px rgba(75, 36, 26, 0.10), inset 0 1px 0 rgba(255,255,255,0.6);
  transition: box-shadow 0.4s, background 0.4s, top 0.4s;
}
.navbar.scrolled {
  top: 10px;
  background: rgba(255, 247, 242, 0.85);
  box-shadow: 0 16px 50px rgba(75, 36, 26, 0.16), inset 0 1px 0 rgba(255,255,255,0.7);
}
.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-brand__logo {
  width: 52px; height: 52px; border-radius: 50%; overflow: hidden; position: relative; flex: 0 0 auto;
  box-shadow: 0 6px 18px rgba(75,36,26,0.25), 0 0 0 2px rgba(217,185,91,0.55);
}
.nav-brand__logo img { width: 100%; height: 100%; object-fit: cover; }
.nav-brand__logo::after {
  content: ""; position: absolute; inset: -40%;
  background: linear-gradient(115deg, transparent 40%, rgba(255,255,255,0.75) 50%, transparent 60%);
  transform: translateX(-80%); animation: logoshine 4.5s ease-in-out infinite;
}
@keyframes logoshine { 0%, 60% { transform: translateX(-80%);} 90%, 100% { transform: translateX(80%);} }
.nav-brand__name {
  font-family: var(--font-script); font-size: 1.65rem; color: var(--choco); line-height: 1;
  text-shadow: 0 2px 8px rgba(217,185,91,0.35);
}
.nav-brand__tag {
  display: block; font-family: var(--font-body); font-size: 0.56rem; letter-spacing: 3.5px;
  text-transform: uppercase; color: var(--wine); margin-top: 4px; font-weight: 500;
}

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  position: relative; padding: 9px 15px; font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.8px; color: var(--choco); border-radius: 40px;
  transition: color 0.3s, background 0.3s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 50%; bottom: 4px; width: 0; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: translateX(-50%); transition: width 0.35s var(--ease-luxe);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 55%; }
.nav-links a.active { color: var(--wine); }
.nav-links a.nav-cta {
  margin-left: 10px; color: var(--choco-deep); font-weight: 600;
  background: linear-gradient(120deg, var(--gold-light), var(--gold) 55%, var(--gold-deep));
  box-shadow: 0 8px 22px rgba(217,185,91,0.45);
}
.nav-links a.nav-cta::after { display: none; }
.nav-links a.nav-cta:hover { box-shadow: 0 10px 32px rgba(217,185,91,0.7); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 10px;
}
.nav-toggle span {
  width: 26px; height: 2px; border-radius: 2px; background: var(--choco);
  transition: transform 0.35s var(--ease-luxe), opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1020px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute; top: calc(100% + 12px); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    padding: 18px;
    border-radius: 26px;
    background: rgba(255, 247, 242, 0.96);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(217, 185, 91, 0.35);
    box-shadow: var(--shadow-deep);
    opacity: 0; visibility: hidden; transform: translateY(-14px);
    transition: opacity 0.4s var(--ease-luxe), transform 0.4s var(--ease-luxe), visibility 0.4s;
  }
  .nav-links.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav-links a { text-align: center; padding: 13px; }
  .nav-links a.nav-cta { margin: 8px 0 0; }
}

/* ------------------------------------------------------------
   Buttons — premium gold
   ------------------------------------------------------------ */
.btn {
  position: relative; display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 34px; border-radius: 60px; border: 0;
  font-family: var(--font-body); font-size: 0.86rem; font-weight: 600; letter-spacing: 1.6px;
  text-transform: uppercase; color: var(--choco-deep);
  background:
    linear-gradient(var(--cream), var(--cream)) padding-box,
    linear-gradient(120deg, var(--gold-light), var(--gold) 40%, var(--gold-deep) 80%, var(--gold-light)) border-box;
  border: 2px solid transparent;
  box-shadow: 0 10px 30px rgba(75, 36, 26, 0.14);
  transition: transform 0.35s var(--ease-luxe), box-shadow 0.35s var(--ease-luxe), color 0.35s;
  overflow: hidden;
  will-change: transform;
}
.btn::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; opacity: 0;
  background: linear-gradient(120deg, var(--gold-light), var(--gold) 50%, var(--gold-deep));
  transition: opacity 0.4s var(--ease-luxe); z-index: 0;
}
.btn::after {
  content: ""; position: absolute; top: -60%; bottom: -60%; width: 44px;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,0.85), transparent);
  transform: translateX(-160px) rotate(18deg);
  transition: transform 0.7s var(--ease-luxe);
}
.btn > * { position: relative; z-index: 1; }
.btn:hover { transform: translateY(-4px); box-shadow: var(--shadow-gold), 0 18px 45px rgba(75,36,26,0.2); }
.btn:hover::before { opacity: 1; }
.btn:hover::after { transform: translateX(340px) rotate(18deg); }
.btn:active { transform: translateY(-1px) scale(0.98); }

.btn--solid {
  background:
    linear-gradient(120deg, var(--choco), var(--wine)) padding-box,
    linear-gradient(120deg, var(--gold-light), var(--gold) 50%, var(--gold-deep)) border-box;
  color: var(--cream);
}
.btn--solid:hover { color: var(--choco-deep); }
.btn--ghost {
  background:
    linear-gradient(rgba(255,247,242,0.14), rgba(255,247,242,0.14)) padding-box,
    linear-gradient(120deg, rgba(255,247,242,0.8), rgba(217,185,91,0.9)) border-box;
  color: var(--cream);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { color: var(--choco-deep); }
.btn .btn-ico { font-size: 1.05rem; line-height: 0; }

.sparkle {
  position: absolute; width: 7px; height: 7px; pointer-events: none; z-index: 2;
  background: radial-gradient(circle, #fff, var(--gold-light) 45%, transparent 70%);
  border-radius: 50%;
  animation: sparklePop 0.75s var(--ease-luxe) forwards;
}
@keyframes sparklePop {
  0% { transform: scale(0) translateY(0); opacity: 1; }
  100% { transform: scale(1.8) translateY(-22px); opacity: 0; }
}

/* ------------------------------------------------------------
   Typography helpers
   ------------------------------------------------------------ */
.script { font-family: var(--font-script); font-weight: 400; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 4.5px; text-transform: uppercase;
  color: var(--wine);
}
.eyebrow::before, .eyebrow::after {
  content: ""; width: 38px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.eyebrow::after { background: linear-gradient(90deg, var(--gold), transparent); }

.section-head { text-align: center; max-width: 760px; margin: 0 auto 64px; position: relative; }
.section-head h2 {
  font-family: var(--font-display); font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  font-weight: 600; line-height: 1.16; margin: 14px 0 18px; color: var(--choco);
}
.section-head h2 em {
  font-family: var(--font-script); font-style: normal; font-weight: 400;
  font-size: 1.18em; color: var(--wine);
  background: linear-gradient(120deg, var(--wine), var(--gold-deep));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.section-head p { color: rgba(75, 36, 26, 0.72); font-size: 1rem; }

section { position: relative; padding: 110px 0; }
.container { width: min(1240px, calc(100% - 48px)); margin: 0 auto; position: relative; z-index: 2; }

/* ------------------------------------------------------------
   HERO
   ------------------------------------------------------------ */
.hero {
  min-height: 100vh; padding: 150px 0 40px;
  display: flex; align-items: center; position: relative; overflow: hidden;
}
#hero-canvas {
  position: absolute; inset: 0; z-index: 1;
}
.hero__watermark {
  position: absolute; z-index: 0; right: -8%; top: 50%; transform: translateY(-50%);
  width: min(58vw, 780px); aspect-ratio: 1; opacity: 0.14; pointer-events: none;
  border-radius: 50%; overflow: hidden;
}
.hero__watermark img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.9); }
.hero__rings {
  position: absolute; z-index: 0; right: -8%; top: 50%; transform: translateY(-50%);
  width: min(58vw, 780px); aspect-ratio: 1; pointer-events: none;
}
.hero__rings span {
  position: absolute; inset: 0; border-radius: 50%;
  border: 1.5px solid rgba(217, 185, 91, 0.4);
  border-top-color: transparent; border-left-color: transparent;
  animation: ringSpin 18s linear infinite;
}
.hero__rings span:nth-child(2) { inset: -7%; opacity: 0.6; animation-duration: 26s; animation-direction: reverse; }
.hero__rings span:nth-child(3) { inset: -15%; opacity: 0.35; animation-duration: 38s; }
@keyframes ringSpin { to { transform: rotate(360deg); } }

.hero__grid {
  position: relative; z-index: 3;
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center; gap: 40px;
}
.hero__content { max-width: 640px; }
.hero__kicker {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 9px 22px; border-radius: 50px; margin-bottom: 26px;
  background: rgba(255, 247, 242, 0.5);
  border: 1px solid rgba(217, 185, 91, 0.5);
  backdrop-filter: blur(10px);
  font-size: 0.7rem; letter-spacing: 3.4px; text-transform: uppercase; font-weight: 600; color: var(--wine);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6), 0 8px 24px rgba(75,36,26,0.08);
}
.hero__kicker i {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 10px var(--gold);
  animation: pulseDot 2.2s ease-in-out infinite;
}
@keyframes pulseDot { 0%,100% { transform: scale(1);} 50% { transform: scale(1.5);} }

.hero__title {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(3rem, 7.2vw, 5.6rem); line-height: 1.02; color: var(--choco);
}
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line > span { display: inline-block; transform: translateY(110%); animation: riseUp 1.1s var(--ease-luxe) forwards; }
.hero__title .line:nth-child(2) > span { animation-delay: 0.15s; }
.hero__title .script-line {
  font-family: var(--font-script); font-size: clamp(3.4rem, 8vw, 6.4rem); line-height: 1.15;
  background: linear-gradient(115deg, var(--wine) 10%, var(--gold-deep) 45%, var(--gold) 60%, var(--wine) 90%);
  background-size: 220% auto;
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  animation: goldFlow 7s ease-in-out infinite, riseUp 1.1s var(--ease-luxe) 0.15s forwards;
  padding-right: 0.35em;
}
@keyframes goldFlow { 0%,100% { background-position: 0% center;} 50% { background-position: 100% center;} }
@keyframes riseUp { to { transform: translateY(0); } }

.hero__sub {
  margin: 26px 0 38px; max-width: 480px;
  color: rgba(75, 36, 26, 0.78); font-size: 1.04rem; font-weight: 300;
  opacity: 0; animation: fadeRise 1s var(--ease-luxe) 0.55s forwards;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 18px; opacity: 0; animation: fadeRise 1s var(--ease-luxe) 0.75s forwards; }
@keyframes fadeRise { from { opacity: 0; transform: translateY(26px);} to { opacity: 1; transform: translateY(0);} }

.hero__stats {
  display: flex; gap: 40px; margin-top: 56px;
  opacity: 0; animation: fadeRise 1s var(--ease-luxe) 0.95s forwards;
}
.hero__stats .stat b {
  display: block; font-family: var(--font-display); font-size: 1.9rem; color: var(--wine); line-height: 1.1;
}
.hero__stats .stat span { font-size: 0.72rem; letter-spacing: 2.2px; text-transform: uppercase; color: rgba(75,36,26,0.62); }

.hero__stage { position: relative; min-height: 520px; z-index: 2; }

.hero__scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 4;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 0.62rem; letter-spacing: 3px; text-transform: uppercase; color: rgba(75,36,26,0.6);
}
.hero__scroll i {
  width: 24px; height: 38px; border: 1.5px solid rgba(122,46,58,0.5); border-radius: 14px; position: relative;
}
.hero__scroll i::after {
  content: ""; position: absolute; top: 7px; left: 50%; margin-left: -1.5px;
  width: 3px; height: 8px; border-radius: 3px; background: var(--gold-deep);
  animation: wheel 1.8s ease-in-out infinite;
}
@keyframes wheel { 0% { transform: translateY(0); opacity: 1;} 70% { transform: translateY(12px); opacity: 0;} 100% { opacity: 0;} }

@media (max-width: 980px) {
  .hero { padding-top: 130px; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__stage { min-height: 380px; order: -1; margin-top: -30px; }
  .hero__watermark, .hero__rings { right: 50%; transform: translate(50%, -50%); top: 32%; width: min(90vw, 500px); }
  .hero__content { text-align: center; margin: 0 auto; }
  .hero__sub { margin-left: auto; margin-right: auto; }
  .hero__actions, .hero__stats { justify-content: center; }
  .hero__stats { gap: 26px; }
}

/* ------------------------------------------------------------
   Chocolate drip separators
   ------------------------------------------------------------ */
.drip { position: relative; z-index: 3; height: 90px; margin: -1px 0; pointer-events: none; }
.drip svg { display: block; width: 100%; height: 100%; }

.section--choco {
  background: linear-gradient(180deg, var(--choco-deep) 0%, var(--choco) 55%, #5C2E20 100%);
  color: var(--cream);
}
.section--choco .section-head h2 { color: var(--cream); }
.section--choco .section-head p { color: rgba(255, 247, 242, 0.7); }
.section--choco .eyebrow { color: var(--gold-light); }

/* Liquid chocolate wave band */
.choco-wave { position: relative; overflow: hidden; }
.choco-wave .wave-layer {
  position: absolute; left: -60%; width: 220%; height: 130px; opacity: 0.5;
  background-repeat: repeat-x; background-size: 900px 130px;
  animation: waveSlide 16s linear infinite;
}
@keyframes waveSlide { to { transform: translateX(450px); } }

/* ------------------------------------------------------------
   Category / product cards
   ------------------------------------------------------------ */
.cards-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(265px, 1fr)); gap: 30px;
  perspective: 1600px;
}
.p-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  display: flex; flex-direction: column;
  background:
    linear-gradient(160deg, rgba(255,247,242,0.92), rgba(255,247,242,0.75)) padding-box,
    linear-gradient(140deg, rgba(217,185,91,0.9), rgba(243,183,198,0.5) 40%, rgba(217,185,91,0.25) 60%, var(--gold)) border-box;
  border: 1.5px solid transparent;
  box-shadow: var(--shadow-soft);
  transform-style: preserve-3d;
  transition: box-shadow 0.5s var(--ease-luxe);
  will-change: transform;
}
.p-card:hover { box-shadow: var(--shadow-deep), 0 0 60px rgba(217,185,91,0.28); }
.p-card::before { /* floating golden aura */
  content: ""; position: absolute; inset: -2px; border-radius: inherit; padding: 2px; opacity: 0;
  background: linear-gradient(120deg, var(--gold-light), transparent 30%, transparent 70%, var(--gold-light));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  transition: opacity 0.5s; animation: borderFloat 4s linear infinite paused;
}
.p-card:hover::before { opacity: 1; animation-play-state: running; }
@keyframes borderFloat { to { filter: hue-rotate(12deg) brightness(1.15); } }

.p-card__imgwrap { position: relative; height: 300px; overflow: hidden; transform: translateZ(40px); }
.p-card__imgwrap::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(46, 20, 14, 0.55));
}
.p-card__imgwrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.9s var(--ease-luxe), filter 0.6s;
}
.p-card:hover .p-card__imgwrap img { transform: scale(1.1) rotate(0.6deg); filter: saturate(1.12); }
.p-card__num {
  position: absolute; top: 18px; left: 20px; z-index: 2;
  font-family: var(--font-display); font-size: 0.95rem; letter-spacing: 2px; color: var(--cream);
  padding: 6px 14px; border-radius: 30px;
  background: rgba(46, 20, 14, 0.4); backdrop-filter: blur(8px);
  border: 1px solid rgba(217, 185, 91, 0.55);
}
.p-card__body {
  position: relative; padding: 28px 26px 30px; transform: translateZ(55px);
  flex: 1; display: flex; flex-direction: column; /* pins View Collection to one line across all cards */
}
.p-card__body h3 { font-family: var(--font-display); font-size: 1.45rem; color: var(--choco); margin-bottom: 10px; }
.p-card__body p { font-size: 0.88rem; color: rgba(75, 36, 26, 0.72); margin-bottom: 20px; flex: 1; }
.p-card__link { margin-top: auto; align-self: flex-start; }
.p-card__link {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 0.76rem; font-weight: 600; letter-spacing: 2.4px; text-transform: uppercase; color: var(--wine);
}
.p-card__link .arr {
  width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center;
  border: 1.5px solid var(--gold); color: var(--gold-deep);
  transition: transform 0.4s var(--ease-luxe), background 0.4s, color 0.4s;
}
.p-card:hover .p-card__link .arr { transform: translateX(6px) rotate(-35deg); background: var(--gold); color: var(--choco-deep); }

.p-card .card-particles { position: absolute; inset: 0; pointer-events: none; z-index: 3; overflow: hidden; }
.card-particles i {
  position: absolute; bottom: -10px; width: 6px; height: 6px; border-radius: 50%;
  background: radial-gradient(circle, var(--gold-light), var(--gold-deep));
  opacity: 0; animation: cardRise 3.4s ease-in infinite;
}
.p-card:hover .card-particles i { opacity: 0.9; }
@keyframes cardRise {
  0% { transform: translateY(0) scale(0.6); opacity: 0; }
  15% { opacity: 0.9; }
  100% { transform: translateY(-330px) scale(1.15) translateX(14px); opacity: 0; }
}

/* ------------------------------------------------------------
   Feature split (about preview, etc.)
   ------------------------------------------------------------ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.split__media { position: relative; }
.split__media .media-main {
  border-radius: var(--radius-lg); overflow: hidden; position: relative;
  box-shadow: var(--shadow-deep);
  border: 1.5px solid rgba(217, 185, 91, 0.5);
}
.split__media .media-main img { width: 100%; height: 520px; object-fit: cover; transition: transform 1.2s var(--ease-luxe); }
.split__media:hover .media-main img { transform: scale(1.06); }
.split__media .media-float {
  position: absolute; right: -34px; bottom: -44px; width: 46%;
  border-radius: var(--radius-md); overflow: hidden;
  border: 5px solid var(--cream);
  box-shadow: var(--shadow-deep);
  animation: floaty 6s ease-in-out infinite;
}
.split__media .media-float img { width: 100%; height: 230px; object-fit: cover; }
.split__media .media-ring {
  position: absolute; left: -55px; top: -55px; width: 150px; height: 150px;
  border-radius: 50%; border: 1.5px dashed rgba(217, 185, 91, 0.75);
  animation: ringSpin 22s linear infinite;
}
.split__media .media-ring::after {
  content: "✦"; position: absolute; top: -12px; left: 50%; color: var(--gold-deep); font-size: 1.1rem;
}
@keyframes floaty { 0%,100% { transform: translateY(0);} 50% { transform: translateY(-16px);} }

.split__text h2 {
  font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); line-height: 1.18;
  margin: 16px 0 22px; color: var(--choco);
}
.split__text h2 em {
  font-family: var(--font-script); font-style: normal; font-size: 1.2em;
  background: linear-gradient(115deg, var(--wine), var(--gold-deep));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.split__text p { color: rgba(75, 36, 26, 0.74); margin-bottom: 16px; font-weight: 300; }
.split__points { margin: 26px 0 34px; display: grid; gap: 16px; }
.split__points li { display: flex; gap: 16px; align-items: flex-start; }
.split__points .pt-ico {
  flex: 0 0 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; font-size: 1.15rem;
  background: linear-gradient(140deg, rgba(217,185,91,0.2), rgba(243,183,198,0.3));
  border: 1px solid rgba(217, 185, 91, 0.55); color: var(--wine);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
}
.split__points b { display: block; font-family: var(--font-display); font-size: 1.05rem; color: var(--choco); }
.split__points span { font-size: 0.85rem; color: rgba(75, 36, 26, 0.68); }

@media (max-width: 980px) {
  .split { grid-template-columns: 1fr; gap: 80px; }
  .split__media .media-main img { height: 400px; }
  .split__media .media-float { right: 6px; bottom: -40px; }
}

/* ------------------------------------------------------------
   Marquee ribbon
   ------------------------------------------------------------ */
.ribbon {
  position: relative; padding: 22px 0; overflow: hidden;
  background: linear-gradient(120deg, var(--wine), var(--choco) 50%, var(--wine));
  border-top: 1px solid rgba(217,185,91,0.5); border-bottom: 1px solid rgba(217,185,91,0.5);
  transform: rotate(-1.2deg) scale(1.02); z-index: 5;
}
.ribbon__track { display: flex; gap: 54px; white-space: nowrap; width: max-content; animation: marquee 26s linear infinite; }
.ribbon__track span {
  font-family: var(--font-script); font-size: 1.7rem; color: var(--cream); opacity: 0.95;
  display: inline-flex; align-items: center; gap: 54px;
}
.ribbon__track span::after { content: "✦"; font-family: var(--font-body); font-size: 0.9rem; color: var(--gold); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ------------------------------------------------------------
   Instagram / CTA band
   ------------------------------------------------------------ */
.cta-band { text-align: center; position: relative; overflow: hidden; }
.cta-band .halo {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 720px; height: 720px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(217,185,91,0.22), rgba(243,183,198,0.12) 45%, transparent 70%);
  animation: pulseHalo 6s ease-in-out infinite;
}
@keyframes pulseHalo { 0%,100% { transform: translate(-50%,-50%) scale(1);} 50% { transform: translate(-50%,-50%) scale(1.12);} }
.cta-band h2 {
  font-family: var(--font-display); font-size: clamp(2.2rem, 5vw, 3.6rem); color: var(--cream);
  margin: 16px 0 14px; position: relative;
}
.cta-band h2 em { font-family: var(--font-script); font-style: normal; color: var(--gold-light); font-size: 1.15em; }
.cta-band p { color: rgba(255, 247, 242, 0.75); max-width: 520px; margin: 0 auto 36px; position: relative; }

/* ------------------------------------------------------------
   Footer
   ------------------------------------------------------------ */
.footer {
  position: relative;
  background: linear-gradient(180deg, var(--choco-deep), #1d0c08);
  color: rgba(255, 247, 242, 0.78);
  padding: 90px 0 34px; overflow: hidden;
}
.footer::before {
  content: ""; position: absolute; inset: 0; opacity: 0.12; pointer-events: none;
  background:
    radial-gradient(500px 300px at 15% 20%, var(--blush), transparent 65%),
    radial-gradient(500px 320px at 85% 75%, var(--lavender), transparent 65%);
}
.footer__grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 48px; position: relative;
}
.footer__brand .nav-brand__name { color: var(--cream); font-size: 2rem; }
.footer__brand p { font-size: 0.88rem; margin-top: 16px; max-width: 300px; color: rgba(255,247,242,0.6); }
.footer h4 {
  font-family: var(--font-display); color: var(--gold-light); font-size: 1.02rem;
  letter-spacing: 1.4px; margin-bottom: 20px; font-weight: 600;
}
.footer ul { display: grid; gap: 11px; }
.footer ul a { font-size: 0.88rem; color: rgba(255,247,242,0.68); transition: color 0.3s, padding-left 0.3s; }
.footer ul a:hover { color: var(--gold-light); padding-left: 6px; }
.footer__social { display: flex; gap: 12px; margin-top: 22px; }
.footer__social a {
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid rgba(217, 185, 91, 0.45); color: var(--gold-light); font-size: 1rem;
  transition: transform 0.35s var(--ease-luxe), background 0.35s, color 0.35s;
}
.footer__social a:hover { transform: translateY(-5px) rotate(-8deg); background: var(--gold); color: var(--choco-deep); }
.footer__bottom {
  margin-top: 64px; padding-top: 26px; text-align: center;
  border-top: 1px solid rgba(217, 185, 91, 0.18);
  font-size: 0.78rem; color: rgba(255,247,242,0.45); position: relative;
}
.footer__bottom .script { color: var(--gold-light); font-size: 1.05rem; }
@media (max-width: 980px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; gap: 36px; } }

/* ------------------------------------------------------------
   Inner page hero
   ------------------------------------------------------------ */
.page-hero {
  position: relative; padding: 200px 0 120px; text-align: center; overflow: hidden;
}
.page-hero__watermark {
  position: absolute; left: 50%; top: 54%; transform: translate(-50%, -50%);
  width: 560px; height: 560px; opacity: 0.12; pointer-events: none; z-index: 0;
  border-radius: 50%; overflow: hidden;
}
.page-hero__watermark img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__rings { position: absolute; left: 50%; top: 54%; transform: translate(-50%,-50%); width: 560px; height: 560px; pointer-events: none; }
.page-hero__rings span {
  position: absolute; inset: 0; border-radius: 50%;
  border: 1.5px solid rgba(217,185,91,0.35); border-bottom-color: transparent; border-right-color: transparent;
  animation: ringSpin 20s linear infinite;
}
.page-hero__rings span:nth-child(2) { inset: -8%; opacity: 0.55; animation-direction: reverse; animation-duration: 30s; }
.page-hero h1 {
  position: relative; font-family: var(--font-display); font-weight: 600;
  font-size: clamp(2.6rem, 6vw, 4.6rem); color: var(--choco); line-height: 1.08; margin: 18px 0 20px;
}
.page-hero h1 em {
  font-family: var(--font-script); font-style: normal; font-size: 1.2em;
  background: linear-gradient(115deg, var(--wine) 20%, var(--gold-deep) 55%, var(--gold));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  padding-right: 0.3em;
}
.page-hero p { position: relative; max-width: 620px; margin: 0 auto; color: rgba(75,36,26,0.74); font-weight: 300; }
.breadcrumb {
  position: relative; display: inline-flex; gap: 10px; align-items: center; margin-bottom: 8px;
  font-size: 0.72rem; letter-spacing: 2.6px; text-transform: uppercase; color: var(--wine); font-weight: 600;
}
.breadcrumb a { color: rgba(75,36,26,0.55); transition: color 0.3s; }
.breadcrumb a:hover { color: var(--wine); }
.breadcrumb i { color: var(--gold-deep); font-style: normal; }

/* ------------------------------------------------------------
   Collection rows (category pages)
   ------------------------------------------------------------ */
.collection { display: grid; gap: 90px; }
.col-item { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: center; }
.col-item:nth-child(even) .col-item__media { order: 2; }
.col-item__media { position: relative; perspective: 1200px; }
.col-item__media .frame {
  border-radius: var(--radius-lg); overflow: hidden; position: relative;
  border: 1.5px solid rgba(217,185,91,0.55);
  box-shadow: var(--shadow-deep);
  transform-style: preserve-3d; will-change: transform;
}
.col-item__media .frame img { width: 100%; height: 440px; object-fit: cover; transition: transform 1s var(--ease-luxe); }
.col-item__media:hover .frame img { transform: scale(1.07); }
.col-item__media .badge {
  position: absolute; top: 22px; right: 22px; z-index: 3;
  font-family: var(--font-script); font-size: 1.25rem; color: var(--cream);
  padding: 10px 22px; border-radius: 40px;
  background: linear-gradient(120deg, rgba(122,46,58,0.85), rgba(75,36,26,0.85));
  border: 1px solid rgba(217,185,91,0.6);
  backdrop-filter: blur(6px);
  box-shadow: 0 10px 30px rgba(46,20,14,0.35);
}
.col-item__text .eyebrow { margin-bottom: 4px; }
.col-item__text h3 { font-family: var(--font-display); font-size: clamp(1.7rem, 3vw, 2.4rem); color: var(--choco); margin: 12px 0 16px; }
.col-item__text p { color: rgba(75,36,26,0.74); font-weight: 300; margin-bottom: 14px; }
.col-item__tags { display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0 30px; }
.col-item__tags span {
  font-size: 0.72rem; letter-spacing: 1.6px; text-transform: uppercase; font-weight: 600;
  padding: 8px 18px; border-radius: 30px; color: var(--wine);
  background: rgba(243, 183, 198, 0.25);
  border: 1px solid rgba(217, 185, 91, 0.45);
}
@media (max-width: 980px) {
  .col-item { grid-template-columns: 1fr; gap: 34px; }
  .col-item:nth-child(even) .col-item__media { order: 0; }
  .col-item__media .frame img { height: 340px; }
}

/* ------------------------------------------------------------
   Gallery masonry + lightbox
   ------------------------------------------------------------ */
.masonry { columns: 3 300px; column-gap: 26px; }
.masonry__item {
  position: relative; margin-bottom: 26px; border-radius: var(--radius-md); overflow: hidden;
  border: 1.5px solid rgba(217, 185, 91, 0.45);
  box-shadow: var(--shadow-soft);
  cursor: pointer; break-inside: avoid;
  transform-style: preserve-3d; will-change: transform;
  transition: box-shadow 0.5s;
}
.masonry__item:hover { box-shadow: var(--shadow-deep), 0 0 45px rgba(217,185,91,0.3); }
.masonry__item img { width: 100%; transition: transform 0.9s var(--ease-luxe), filter 0.5s; }
.masonry__item:hover img { transform: scale(1.09); filter: saturate(1.15); }
.masonry__item::after {
  content: ""; position: absolute; inset: 0; opacity: 0; transition: opacity 0.5s;
  background: linear-gradient(180deg, transparent 40%, rgba(46,20,14,0.65));
}
.masonry__item:hover::after { opacity: 1; }
.masonry__item .cap {
  position: absolute; left: 20px; bottom: 16px; z-index: 2; color: var(--cream);
  font-family: var(--font-script); font-size: 1.5rem; opacity: 0; transform: translateY(14px);
  transition: opacity 0.5s var(--ease-luxe), transform 0.5s var(--ease-luxe);
  text-shadow: 0 4px 14px rgba(0,0,0,0.4);
}
.masonry__item .zoom {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,247,242,0.2); border: 1px solid rgba(217,185,91,0.7);
  backdrop-filter: blur(6px); color: var(--cream); font-size: 1rem;
  opacity: 0; transform: scale(0.6) rotate(-30deg);
  transition: opacity 0.45s var(--ease-luxe), transform 0.45s var(--ease-luxe);
}
.masonry__item:hover .cap { opacity: 1; transform: translateY(0); }
.masonry__item:hover .zoom { opacity: 1; transform: scale(1) rotate(0); }

.lightbox {
  position: fixed; inset: 0; z-index: 9980; display: grid; place-items: center; padding: 30px;
  background: rgba(29, 12, 8, 0.9); backdrop-filter: blur(14px);
  opacity: 0; visibility: hidden; transition: opacity 0.5s var(--ease-luxe), visibility 0.5s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox__inner {
  position: relative; max-width: min(920px, 92vw);
  transform: scale(0.82) translateY(30px); transition: transform 0.55s var(--ease-luxe);
}
.lightbox.open .lightbox__inner { transform: scale(1) translateY(0); }
.lightbox__inner img {
  max-height: 80vh; width: auto; max-width: 100%; margin: 0 auto;
  border-radius: 20px; border: 2px solid rgba(217, 185, 91, 0.65);
  box-shadow: 0 40px 120px rgba(0,0,0,0.6);
}
.lightbox__cap {
  text-align: center; margin-top: 18px; color: var(--cream);
  font-family: var(--font-script); font-size: 1.7rem;
}
/* Controls anchor to the viewport-filling .lightbox itself, so the
   close button and arrows sit in the SAME place for every image size */
.lightbox__close, .lightbox__nav {
  position: absolute; z-index: 5;
  width: 52px; height: 52px; border-radius: 50%; border: 1px solid rgba(217,185,91,0.65);
  background: rgba(255,247,242,0.08); color: var(--cream); font-size: 1.2rem;
  display: grid; place-items: center; backdrop-filter: blur(8px);
  transition: background 0.3s, color 0.3s, transform 0.3s;
}
.lightbox__close { top: 26px; right: 26px; }
.lightbox__close:hover { background: var(--gold); color: var(--choco-deep); transform: rotate(90deg); }
.lightbox__nav { top: 50%; transform: translateY(-50%); }
.lightbox__nav:hover { background: var(--gold); color: var(--choco-deep); }
.lightbox__nav.prev { left: 26px; }
.lightbox__nav.next { right: 26px; }
@media (max-width: 900px) {
  .lightbox__close, .lightbox__nav { width: 44px; height: 44px; }
  .lightbox__nav.prev { left: 10px; } .lightbox__nav.next { right: 10px; }
  .lightbox__close { right: 10px; top: 14px; }
}

/* ------------------------------------------------------------
   Contact page
   ------------------------------------------------------------ */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: start; }
.contact-info { display: grid; gap: 22px; }
.contact-info__card {
  display: flex; gap: 18px; align-items: center;
  padding: 24px 26px; border-radius: var(--radius-md);
  background:
    linear-gradient(150deg, rgba(255,247,242,0.9), rgba(255,247,242,0.7)) padding-box,
    linear-gradient(140deg, rgba(217,185,91,0.8), rgba(243,183,198,0.5)) border-box;
  border: 1.5px solid transparent;
  box-shadow: var(--shadow-soft);
  transition: transform 0.45s var(--ease-luxe), box-shadow 0.45s;
}
.contact-info__card:hover { transform: translateY(-6px); box-shadow: var(--shadow-deep); }
.contact-info__card .ico {
  flex: 0 0 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; font-size: 1.3rem;
  background: linear-gradient(140deg, var(--wine), var(--choco)); color: var(--gold-light);
  box-shadow: 0 10px 24px rgba(122, 46, 58, 0.35);
}
.contact-info__card b { display: block; font-family: var(--font-display); font-size: 1.06rem; color: var(--choco); }
.contact-info__card span, .contact-info__card a.link { font-size: 0.86rem; color: rgba(75,36,26,0.68); }
.contact-info__card a.link:hover { color: var(--wine); }

.form-shell {
  position: relative; padding: 48px 46px; border-radius: var(--radius-lg);
  background:
    linear-gradient(155deg, rgba(255,247,242,0.94), rgba(255,247,242,0.82)) padding-box,
    linear-gradient(135deg, var(--gold), rgba(243,183,198,0.6) 45%, rgba(185,165,232,0.55) 70%, var(--gold)) border-box;
  border: 2px solid transparent;
  box-shadow: var(--shadow-deep);
  backdrop-filter: blur(16px);
}
.form-shell h3 { font-family: var(--font-display); font-size: 1.8rem; color: var(--choco); margin-bottom: 6px; }
.form-shell .lead { font-size: 0.9rem; color: rgba(75,36,26,0.66); margin-bottom: 32px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.form-grid .full { grid-column: 1 / -1; }
.field { position: relative; }
.field label {
  display: block; font-size: 0.7rem; font-weight: 600; letter-spacing: 2.2px; text-transform: uppercase;
  color: var(--wine); margin-bottom: 9px;
}
.field input, .field select, .field textarea {
  width: 100%; padding: 15px 18px; border-radius: 14px;
  border: 1.5px solid rgba(217, 185, 91, 0.45);
  background: rgba(255, 255, 255, 0.65);
  font-family: var(--font-body); font-size: 0.92rem; color: var(--choco);
  outline: none; transition: border-color 0.35s, box-shadow 0.35s, background 0.35s;
  appearance: none;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--gold-deep);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(217, 185, 91, 0.18), 0 10px 26px rgba(75,36,26,0.08);
}
.field.select::after {
  content: "▾"; position: absolute; right: 18px; bottom: 15px; color: var(--wine); pointer-events: none;
}
.form-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 30px; align-items: center; }
.form-note { font-size: 0.78rem; color: rgba(75,36,26,0.55); margin-top: 18px; }
.form-success {
  display: none; margin-top: 22px; padding: 18px 22px; border-radius: 14px;
  background: rgba(217, 185, 91, 0.16); border: 1px solid rgba(217, 185, 91, 0.6);
  color: var(--choco); font-size: 0.9rem;
}
.form-success.show { display: block; animation: fadeRise 0.6s var(--ease-luxe); }
@media (max-width: 980px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-shell { padding: 36px 26px; }
  .form-grid { grid-template-columns: 1fr; }
}

/* ------------------------------------------------------------
   About page — story blocks
   ------------------------------------------------------------ */
.story-quote {
  max-width: 860px; margin: 0 auto; text-align: center; position: relative;
}
.story-quote .qmark {
  font-family: var(--font-display); font-size: 7rem; line-height: 0.6; color: rgba(217,185,91,0.5); display: block; margin-bottom: 30px;
}
.story-quote blockquote {
  font-family: var(--font-display); font-size: clamp(1.5rem, 3.2vw, 2.3rem); font-weight: 500;
  line-height: 1.5; color: var(--choco);
}
.story-quote blockquote em {
  font-family: var(--font-script); font-style: normal; font-size: 1.15em;
  background: linear-gradient(115deg, var(--wine), var(--gold-deep));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.story-quote .sig { margin-top: 30px; font-family: var(--font-script); font-size: 1.8rem; color: var(--wine); }

.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 26px; }
.value-card {
  position: relative; text-align: center; padding: 44px 28px 38px; border-radius: var(--radius-lg);
  background:
    linear-gradient(165deg, rgba(255,247,242,0.92), rgba(255,247,242,0.78)) padding-box,
    linear-gradient(150deg, rgba(217,185,91,0.75), rgba(185,165,232,0.4) 55%, rgba(217,185,91,0.4)) border-box;
  border: 1.5px solid transparent;
  box-shadow: var(--shadow-soft);
  transition: transform 0.5s var(--ease-luxe), box-shadow 0.5s;
  will-change: transform;
}
.value-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-deep), 0 0 50px rgba(217,185,91,0.25); }
.value-card .v-ico {
  width: 74px; height: 74px; margin: 0 auto 22px; border-radius: 50%;
  display: grid; place-items: center; font-size: 1.8rem;
  background: linear-gradient(145deg, var(--wine), var(--choco));
  color: var(--gold-light);
  box-shadow: 0 14px 34px rgba(122,46,58,0.4), inset 0 1px 0 rgba(255,255,255,0.25);
}
.value-card h3 { font-family: var(--font-display); font-size: 1.25rem; color: var(--choco); margin-bottom: 12px; }
.value-card p { font-size: 0.86rem; color: rgba(75,36,26,0.7); }

.timeline { position: relative; max-width: 800px; margin: 0 auto; padding-left: 40px; }
.timeline::before {
  content: ""; position: absolute; left: 10px; top: 6px; bottom: 6px; width: 2px;
  background: linear-gradient(180deg, var(--gold), rgba(217,185,91,0.15));
}
.timeline__item { position: relative; padding: 0 0 46px 30px; }
.timeline__item::before {
  content: ""; position: absolute; left: -37px; top: 6px; width: 16px; height: 16px; border-radius: 50%;
  background: var(--cream); border: 3px solid var(--gold); box-shadow: 0 0 0 5px rgba(217,185,91,0.2);
}
.timeline__item .t-tag {
  display: inline-block; font-family: var(--font-script); font-size: 1.35rem; color: var(--wine); margin-bottom: 8px;
}
.timeline__item h4 { font-family: var(--font-display); font-size: 1.2rem; color: var(--choco); margin-bottom: 8px; }
.timeline__item p { font-size: 0.9rem; color: rgba(75,36,26,0.7); }

/* ------------------------------------------------------------
   Floating decor (petals & orbs)
   ------------------------------------------------------------ */
.floaters { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 1; }
.floaters .petal {
  position: absolute; top: -40px;
  width: 22px; height: 22px; opacity: 0.75;
  border-radius: 60% 0 60% 60%;
  background: radial-gradient(circle at 30% 30%, var(--floral), var(--blush-deep));
  box-shadow: inset -2px -3px 6px rgba(122,46,58,0.35);
  animation: petalFall linear infinite;
}
.floaters .petal.lav { background: radial-gradient(circle at 30% 30%, var(--lavender-soft), var(--lavender)); box-shadow: inset -2px -3px 6px rgba(90,70,150,0.3); }
.floaters .petal.gold { background: radial-gradient(circle at 30% 30%, var(--gold-light), var(--gold-deep)); border-radius: 50%; width: 10px; height: 10px; }
@keyframes petalFall {
  0% { transform: translateY(-5vh) translateX(0) rotate(0deg); opacity: 0; }
  8% { opacity: 0.85; }
  100% { transform: translateY(115vh) translateX(60px) rotate(340deg); opacity: 0; }
}

.orb {
  position: absolute; border-radius: 50%; pointer-events: none; z-index: 0; filter: blur(2px);
  background: radial-gradient(circle at 32% 30%, rgba(255,255,255,0.9), rgba(217,185,91,0.55) 40%, rgba(122,46,58,0.15) 80%);
  animation: floaty 7s ease-in-out infinite;
}

/* ------------------------------------------------------------
   Reveal-on-scroll
   ------------------------------------------------------------ */
.reveal { opacity: 0; transform: translateY(56px); transition: opacity 1s var(--ease-luxe), transform 1s var(--ease-luxe); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-l { opacity: 0; transform: translateX(-70px); transition: opacity 1.05s var(--ease-luxe), transform 1.05s var(--ease-luxe); }
.reveal-r { opacity: 0; transform: translateX(70px); transition: opacity 1.05s var(--ease-luxe), transform 1.05s var(--ease-luxe); }
.reveal-l.in, .reveal-r.in { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.86); transition: opacity 1s var(--ease-luxe), transform 1s var(--ease-luxe); }
.reveal-scale.in { opacity: 1; transform: scale(1); }
[data-stagger] > * { transition-delay: calc(var(--i, 0) * 0.12s); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001s !important; transition-duration: 0.001s !important; }
}

/* ------------------------------------------------------------
   Back to top
   ------------------------------------------------------------ */
.to-top {
  position: fixed; right: 26px; bottom: 26px; z-index: 940;
  width: 52px; height: 52px; border-radius: 50%; border: 1.5px solid rgba(217,185,91,0.7);
  background: rgba(255,247,242,0.8); backdrop-filter: blur(10px); color: var(--wine); font-size: 1.1rem;
  display: grid; place-items: center;
  opacity: 0; visibility: hidden; transform: translateY(16px);
  transition: opacity 0.4s, transform 0.4s var(--ease-luxe), visibility 0.4s, background 0.3s, color 0.3s;
  box-shadow: var(--shadow-soft);
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--gold); color: var(--choco-deep); }

/* WhatsApp float */
.wa-float {
  position: fixed; left: 26px; bottom: 26px; z-index: 940;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 22px; border-radius: 50px;
  background: linear-gradient(140deg, #2e5d3a, #1f4a2c);
  border: 1.5px solid rgba(217,185,91,0.55);
  color: var(--cream); font-size: 0.8rem; font-weight: 600; letter-spacing: 1px;
  box-shadow: 0 14px 40px rgba(31, 74, 44, 0.45);
  transition: transform 0.4s var(--ease-luxe), box-shadow 0.4s;
}
.wa-float:hover { transform: translateY(-5px) scale(1.03); box-shadow: 0 20px 50px rgba(31,74,44,0.6); }
.wa-float .dot { width: 8px; height: 8px; border-radius: 50%; background: #7CE38B; box-shadow: 0 0 10px #7CE38B; animation: pulseDot 2s infinite; }
@media (max-width: 640px) { .wa-float span.txt { display: none; } .wa-float { padding: 13px 16px; } }

/* ============================================================
   3D ENHANCEMENT LAYER v2 — cinematic depth, motion & shine
   ============================================================ */

/* --- slow conic aura rotating behind everything --- */
.ambient-bg::after {
  content: ""; position: absolute; left: 50%; top: 50%;
  width: 165vmax; height: 165vmax; margin: -82.5vmax 0 0 -82.5vmax;
  border-radius: 50%; filter: blur(46px);
  background: conic-gradient(from 0deg,
    rgba(207,163,174,0.12), rgba(185,165,232,0.09) 25%,
    rgba(217,185,91,0.08) 50%, rgba(243,183,198,0.12) 75%,
    rgba(207,163,174,0.12));
  animation: auraSpin 70s linear infinite;
}
@keyframes auraSpin { to { transform: rotate(360deg); } }

/* --- gold shimmer sweep inside the page veil --- */
.page-veil::before {
  content: ""; position: absolute; inset: 0; opacity: 0.7;
  background: linear-gradient(115deg, transparent 32%, rgba(217,185,91,0.28) 50%, transparent 68%);
  background-size: 280% 100%;
  animation: veilShimmer 1.5s ease-in-out infinite;
}
@keyframes veilShimmer { 0% { background-position: 120% 0; } 100% { background-position: -60% 0; } }

/* ------------------------------------------------------------
   Gold dust — fixed rising particles
   ------------------------------------------------------------ */
.gold-dust { position: fixed; inset: 0; pointer-events: none; z-index: 3; overflow: hidden; }
.gold-dust i {
  position: absolute; bottom: -14px; border-radius: 50%; opacity: 0;
  background: radial-gradient(circle at 35% 30%, #fff, var(--gold-light) 40%, rgba(217,185,91,0) 75%);
  box-shadow: 0 0 8px rgba(240, 220, 160, 0.8);
  animation: dustRise linear infinite;
}
@keyframes dustRise {
  0%   { transform: translate3d(0, 0, 0) scale(0.55); opacity: 0; }
  10%  { opacity: 0.85; }
  55%  { opacity: 0.6; }
  100% { transform: translate3d(46px, -108vh, 0) scale(1.15); opacity: 0; }
}

/* ------------------------------------------------------------
   CSS 3D chocolate orb (glossy sphere, pure CSS)
   ------------------------------------------------------------ */
.choco-orb {
  position: relative; display: block;
  width: var(--d, 90px); height: var(--d, 90px);
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 26%, rgba(255,255,255,0.95) 0%, rgba(255,224,190,0.4) 7%, transparent 20%),
    radial-gradient(circle at 70% 80%, rgba(243,183,198,0.28), transparent 42%),
    radial-gradient(circle at 42% 36%, #7a4a2e 0%, var(--choco) 50%, var(--choco-deep) 84%);
  box-shadow:
    inset -14px -18px 30px rgba(20, 8, 5, 0.68),
    inset 8px 10px 18px rgba(255, 214, 173, 0.18),
    0 34px 44px -20px rgba(46, 20, 14, 0.55);
  animation: orbFloat 7.5s ease-in-out infinite;
  will-change: transform;
}
.choco-orb::before { /* travelling gloss sheen */
  content: ""; position: absolute; inset: 5%; border-radius: 50%; filter: blur(1px);
  background: linear-gradient(130deg, transparent 32%, rgba(255,255,255,0.4) 47%, transparent 62%);
  animation: orbSheen 5.5s ease-in-out infinite;
}
.choco-orb::after { /* soft contact shadow below */
  content: ""; position: absolute; left: 6%; right: 6%; bottom: -36%; height: 20%;
  border-radius: 50%; filter: blur(5px);
  background: radial-gradient(ellipse at center, rgba(46,20,14,0.42), transparent 70%);
  animation: orbShadow 7.5s ease-in-out infinite;
}
@keyframes orbFloat  { 0%,100% { transform: translateY(0) rotate(-5deg); } 50% { transform: translateY(-24px) rotate(6deg); } }
@keyframes orbSheen  { 0%,100% { transform: translateX(-9%) rotate(-2deg); } 50% { transform: translateX(11%) rotate(7deg); } }
@keyframes orbShadow { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(0.76); opacity: 0.5; } }

/* milk-chocolate & gold-dusted truffle variants */
.choco-orb--milk {
  background:
    radial-gradient(circle at 32% 26%, rgba(255,255,255,0.95) 0%, rgba(255,236,210,0.45) 7%, transparent 20%),
    radial-gradient(circle at 70% 80%, rgba(217,185,91,0.3), transparent 45%),
    radial-gradient(circle at 42% 36%, #a06a42 0%, #7a4a2e 52%, #4B241A 86%);
}
.choco-orb--truffle {
  background:
    radial-gradient(circle at 32% 26%, rgba(255,255,255,0.9) 0%, transparent 18%),
    radial-gradient(circle at 24% 66%, var(--gold-light) 0 6%, transparent 7%),
    radial-gradient(circle at 66% 30%, var(--gold-light) 0 5%, transparent 6%),
    radial-gradient(circle at 74% 66%, var(--gold) 0 5%, transparent 6%),
    radial-gradient(circle at 46% 84%, var(--gold-light) 0 4%, transparent 5%),
    radial-gradient(circle at 42% 36%, #6b3a26 0%, var(--choco) 52%, var(--choco-deep) 86%);
  animation-duration: 6s;
}
.choco-orb--blush {
  background:
    radial-gradient(circle at 32% 26%, rgba(255,255,255,0.95) 0%, transparent 20%),
    radial-gradient(circle at 42% 36%, var(--floral) 0%, var(--blush-deep) 55%, var(--wine) 92%);
}

/* ------------------------------------------------------------
   CSS 3D chocolate cube (6 faces, preserve-3d tumble)
   ------------------------------------------------------------ */
.choco-cube {
  position: relative; display: block;
  width: var(--s, 46px); height: var(--s, 46px);
  transform-style: preserve-3d;
  animation: cubeTumble 17s linear infinite;
  filter: drop-shadow(0 26px 16px rgba(46, 20, 14, 0.35));
  will-change: transform;
}
.choco-cube i {
  position: absolute; inset: 0; border-radius: 5px;
  border: 1px solid rgba(255, 216, 173, 0.14);
  background: linear-gradient(140deg, #6b3a26 0%, var(--choco) 55%, #35180f 100%);
  box-shadow: inset 0 0 16px rgba(0, 0, 0, 0.38);
}
.choco-cube i:nth-child(1) { transform: rotateY(0deg)   translateZ(calc(var(--s, 46px) / 2)); }
.choco-cube i:nth-child(2) { transform: rotateY(90deg)  translateZ(calc(var(--s, 46px) / 2)); background: linear-gradient(140deg, #57301f, var(--choco-deep)); }
.choco-cube i:nth-child(3) { transform: rotateY(180deg) translateZ(calc(var(--s, 46px) / 2)); }
.choco-cube i:nth-child(4) { transform: rotateY(270deg) translateZ(calc(var(--s, 46px) / 2)); background: linear-gradient(140deg, #57301f, var(--choco-deep)); }
.choco-cube i:nth-child(5) { transform: rotateX(90deg)  translateZ(calc(var(--s, 46px) / 2)); background: linear-gradient(140deg, #8a5a38, #5C2E20); }
.choco-cube i:nth-child(6) { transform: rotateX(-90deg) translateZ(calc(var(--s, 46px) / 2)); background: var(--choco-deep); }
@keyframes cubeTumble {
  0%   { transform: rotateX(0deg) rotateY(0deg) translateY(0); }
  50%  { transform: rotateX(180deg) rotateY(160deg) translateY(-28px); }
  100% { transform: rotateX(360deg) rotateY(360deg) translateY(0); }
}

/* --- golden 3D ring decor --- */
.ring3d {
  position: relative; display: block;
  width: var(--d, 140px); height: var(--d, 140px);
  border-radius: 50%;
  border: 1.5px solid rgba(217, 185, 91, 0.55);
  border-top-color: transparent; border-left-color: transparent;
  box-shadow: 0 0 26px rgba(217, 185, 91, 0.22), inset 0 0 22px rgba(217, 185, 91, 0.12);
  animation: ringSpin 16s linear infinite;
}
.ring3d::after {
  content: "✦"; position: absolute; top: -9px; left: 50%; margin-left: -7px;
  color: var(--gold); font-size: 0.85rem; text-shadow: 0 0 12px var(--gold);
}

/* ------------------------------------------------------------
   Deco layer — floating 3D objects w/ mouse-depth parallax
   ------------------------------------------------------------ */
.deco3d {
  position: absolute; inset: 0; overflow: hidden;
  pointer-events: none; z-index: 1; perspective: 1100px;
}
.deco-p { position: absolute; will-change: transform; }

/* ------------------------------------------------------------
   Mouse-follow shine layer (injected by motion.js)
   ------------------------------------------------------------ */
.shine-layer {
  position: absolute; inset: 0; z-index: 6; pointer-events: none; border-radius: inherit;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 50%),
    rgba(255, 255, 255, 0.3), rgba(240, 220, 160, 0.13) 34%, transparent 62%);
  opacity: 0; transition: opacity 0.45s var(--ease-luxe);
}
.p-card:hover .shine-layer,
.masonry__item:hover .shine-layer,
.frame:hover .shine-layer,
.value-card:hover .shine-layer,
.contact-info__card:hover .shine-layer { opacity: 1; }

/* ------------------------------------------------------------
   Cinematic 3D scroll reveals
   ------------------------------------------------------------ */
.reveal-3d {
  opacity: 0;
  transform: perspective(1200px) rotateX(15deg) translateY(72px) scale(0.94);
  transform-origin: center 85%;
  transition: opacity 1.15s var(--ease-luxe), transform 1.15s var(--ease-luxe);
  will-change: transform, opacity;
}
.reveal-3d.in { opacity: 1; transform: perspective(1200px) rotateX(0deg) translateY(0) scale(1); }

.reveal-blur {
  opacity: 0; filter: blur(16px); transform: translateY(34px);
  transition: opacity 1.25s var(--ease-luxe), filter 1.25s var(--ease-luxe), transform 1.25s var(--ease-luxe);
}
.reveal-blur.in { opacity: 1; filter: blur(0); transform: translateY(0); }

.reveal-flip {
  opacity: 0; transform: perspective(1100px) rotateY(-22deg) translateX(-40px);
  transform-origin: left center;
  transition: opacity 1.2s var(--ease-luxe), transform 1.2s var(--ease-luxe);
}
.reveal-flip.in { opacity: 1; transform: perspective(1100px) rotateY(0) translateX(0); }

/* ------------------------------------------------------------
   Chocolate droplets falling from drip dividers
   ------------------------------------------------------------ */
.drip { overflow: visible; }
.drip .droplet {
  position: absolute; top: 52%; width: 9px; height: 13px; opacity: 0; z-index: 2;
  border-radius: 46% 46% 60% 60%;
  background: radial-gradient(circle at 35% 28%, #7a4a2e, var(--choco-deep) 78%);
  box-shadow: inset -2px -3px 5px rgba(0, 0, 0, 0.4);
  animation: dropFall ease-in infinite;
}
@keyframes dropFall {
  0%   { transform: translateY(0) scale(0.65, 0.5); opacity: 0; }
  14%  { transform: translateY(8px) scale(0.9, 1.15); opacity: 1; }
  78%  { transform: translateY(74px) scale(1, 1.2); opacity: 0.95; }
  100% { transform: translateY(96px) scale(0.85, 0.85); opacity: 0; }
}

/* ------------------------------------------------------------
   Page-hero entrance choreography
   ------------------------------------------------------------ */
.page-hero .breadcrumb { opacity: 0; animation: fadeRise 0.9s var(--ease-luxe) 0.15s forwards; }
.page-hero h1 { opacity: 0; animation: heroTilt 1.15s var(--ease-luxe) 0.3s forwards; }
.page-hero p { opacity: 0; animation: fadeRise 1s var(--ease-luxe) 0.55s forwards; }
@keyframes heroTilt {
  from { opacity: 0; transform: perspective(900px) rotateX(24deg) translateY(56px); }
  to   { opacity: 1; transform: perspective(900px) rotateX(0) translateY(0); }
}

/* ------------------------------------------------------------
   CSS 3D hero chocolate scene
   Visible by default — hidden only once Three.js confirms a
   rendered frame (body.webgl-on), so the stage is never blank.
   ------------------------------------------------------------ */
.css-hero-scene { display: block; position: absolute; inset: 0; pointer-events: none; perspective: 1100px; }
body.webgl-on .css-hero-scene { display: none; }
body.no-webgl #hero-canvas { display: none; }
.css-hero-scene .hero-orb-main {
  position: absolute; left: 50%; top: 44%; transform: translate(-50%, -50%);
}
.css-hero-scene .hero-orb-main .choco-orb { animation-duration: 6.5s; }
.css-hero-scene .sat { position: absolute; }

/* big glossy ball gets a rotating cocoa band + drip crown */
.hero-ball {
  position: relative; display: block;
  width: var(--d, 320px); height: var(--d, 320px); border-radius: 50%;
  background:
    radial-gradient(circle at 32% 24%, rgba(255,255,255,0.95) 0%, rgba(255,224,190,0.4) 6%, transparent 19%),
    radial-gradient(circle at 72% 82%, rgba(243,183,198,0.25), transparent 40%),
    radial-gradient(circle at 42% 36%, #7a4a2e 0%, var(--choco) 48%, var(--choco-deep) 82%);
  box-shadow:
    inset -22px -30px 60px rgba(18, 7, 4, 0.7),
    inset 12px 16px 30px rgba(255, 214, 173, 0.16),
    0 60px 80px -30px rgba(46, 20, 14, 0.6);
  animation: orbFloat 7s ease-in-out infinite;
}
.hero-ball::before { /* rotating glossy streak — reads as 3D spin */
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  background:
    linear-gradient(100deg, transparent 34%, rgba(255, 236, 200, 0.10) 44%, rgba(255,255,255,0.20) 50%, rgba(255, 236, 200, 0.10) 56%, transparent 66%);
  background-size: 300% 100%;
  animation: ballSpinBand 7s linear infinite;
  filter: blur(2px);
  mix-blend-mode: soft-light;
}
.hero-ball::after { /* contact shadow */
  content: ""; position: absolute; left: 4%; right: 4%; bottom: -30%; height: 16%;
  border-radius: 50%; filter: blur(9px);
  background: radial-gradient(ellipse at center, rgba(46,20,14,0.45), transparent 70%);
  animation: orbShadow 7s ease-in-out infinite;
}
@keyframes ballSpinBand { 0% { background-position: 130% 0; } 100% { background-position: -130% 0; } }
.hero-ball .melt { /* melt cap with drips */
  position: absolute; inset: -1% 0.5% auto; height: 42%;
  border-radius: 50% 50% 46% 46% / 92% 92% 34% 34%;
  background: linear-gradient(180deg, #35180f 8%, #24100a 55%, rgba(36, 16, 10, 0.95));
  box-shadow: inset 10px 12px 24px rgba(255, 214, 173, 0.13), inset -12px -8px 22px rgba(0,0,0,0.5);
  overflow: visible;
}
.hero-ball .melt i {
  position: absolute; top: 82%; width: 7.5%; border-radius: 0 0 50px 50px;
  background: linear-gradient(180deg, #24100a, #35180f 80%);
  box-shadow: inset -3px -4px 7px rgba(0,0,0,0.45);
  animation: dripGrow 5.2s ease-in-out infinite;
}
.hero-ball .melt i:nth-child(1) { left: 12%; height: 34%; animation-delay: -1s; }
.hero-ball .melt i:nth-child(2) { left: 32%; height: 58%; animation-delay: -2.6s; }
.hero-ball .melt i:nth-child(3) { left: 55%; height: 42%; animation-delay: -0.4s; }
.hero-ball .melt i:nth-child(4) { left: 76%; height: 52%; animation-delay: -3.4s; }
@keyframes dripGrow { 0%,100% { transform: scaleY(0.86); } 50% { transform: scaleY(1.12); } }
.hero-ball .sprk { /* gold sprinkles */
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff, var(--gold) 55%, var(--gold-deep));
  box-shadow: 0 0 6px rgba(240, 220, 160, 0.8);
}

/* orbiting satellites around the hero ball */
.css-hero-scene .orbiter {
  position: absolute; left: 50%; top: 44%; margin: -20px;
  animation: orbit3d linear infinite;
  will-change: transform;
}
@keyframes orbit3d {
  from { transform: rotate(0deg) translateX(var(--r, 230px)) rotate(0deg); }
  to   { transform: rotate(360deg) translateX(var(--r, 230px)) rotate(-360deg); }
}
@media (max-width: 980px) {
  .hero-ball { --d: min(290px, 62vw) !important; }
  .css-hero-scene .orbiter { --r: 175px !important; }
  .css-hero-scene .sat.ring3d { --d: 400px !important; margin: -200px 0 0 -200px !important; }
}

/* ------------------------------------------------------------
   Gold text shimmer utility (headline accents)
   ------------------------------------------------------------ */
.gold-shimmer {
  background: linear-gradient(115deg, var(--wine) 15%, var(--gold-deep) 40%, var(--gold-light) 50%, var(--gold-deep) 60%, var(--wine) 85%);
  background-size: 240% auto;
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  animation: goldFlow 6s ease-in-out infinite;
}

/* ------------------------------------------------------------
   Responsive / accessibility fallbacks — keep mobile light
   ------------------------------------------------------------ */
@media (max-width: 820px) {
  .deco3d .deco-p:nth-child(n+4) { display: none; }
  .shine-layer { display: none; }
  .gold-dust i:nth-child(n+9) { display: none; }
  .choco-orb, .choco-cube { animation-duration: 10s; }
  .reveal-3d { transform: perspective(1200px) rotateX(8deg) translateY(46px) scale(0.97); }
}
@media (prefers-reduced-motion: reduce) {
  .deco3d, .gold-dust, .drip .droplet { display: none !important; }
  .reveal-3d, .reveal-blur, .reveal-flip { opacity: 1 !important; transform: none !important; filter: none !important; }
}

/* ------------------------------------------------------------
   Video preloader (brand entry animation)
   ------------------------------------------------------------ */
.preloader--video { background: #1d0c08; }
.preloader__video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.preloader__skip {
  position: absolute; right: 26px; bottom: 26px; z-index: 2;
  padding: 10px 22px; border-radius: 40px; border: 1px solid rgba(217,185,91,0.55);
  background: rgba(29, 12, 8, 0.45); backdrop-filter: blur(8px);
  color: var(--cream); font-size: 0.72rem; letter-spacing: 2.4px; text-transform: uppercase; font-weight: 600;
  transition: background 0.3s, color 0.3s;
}
.preloader__skip:hover { background: var(--gold); color: var(--choco-deep); }

/* ------------------------------------------------------------
   Timeline traveller — chocolate ball that rides the line
   ------------------------------------------------------------ */
.timeline { position: relative; }
.timeline__traveler {
  position: absolute; left: 11px; top: 0; z-index: 3;
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition: top 0.25s linear;
}
.timeline__traveler .choco-orb {
  animation: none; /* position is scroll-driven; keep the gloss, drop the float */
  box-shadow:
    inset -8px -10px 16px rgba(20, 8, 5, 0.68),
    inset 5px 6px 10px rgba(255, 214, 173, 0.2),
    0 0 24px rgba(217, 185, 91, 0.55),
    0 12px 22px -8px rgba(46, 20, 14, 0.6);
}
.timeline__traveler .choco-orb::after { display: none; }
.timeline__traveler::before { /* golden comet trail above the ball */
  content: ""; position: absolute; left: 50%; bottom: 92%; width: 3px; height: 46px;
  transform: translateX(-50%); border-radius: 3px;
  background: linear-gradient(180deg, transparent, var(--gold));
  opacity: 0.75;
}

/* ------------------------------------------------------------
   Instagram order panel (contact page)
   ------------------------------------------------------------ */
.insta-order {
  max-width: 820px; margin: 0 auto; text-align: center;
  padding: 58px 52px 46px;
}
.insta-ring {
  display: block; width: 104px; height: 104px; margin: 0 auto 20px;
  border-radius: 50%; padding: 4px;
  background: conic-gradient(from 210deg, #FEDA75, #FA7E1E, #D62976, #962FBF, #4F5BD5, #FEDA75);
  box-shadow: 0 14px 38px rgba(150, 47, 191, 0.28), 0 6px 18px rgba(75, 36, 26, 0.22);
  animation: floaty 5.5s ease-in-out infinite;
}
.insta-ring img {
  width: 100%; height: 100%; border-radius: 50%; object-fit: cover;
  border: 3px solid var(--cream);
}
.insta-order h3 { font-size: clamp(1.9rem, 4vw, 2.5rem); }
.insta-order h3 em { font-size: 1.25em; font-style: normal; padding: 0 0.15em; }
.insta-order .lead { max-width: 480px; margin-left: auto; margin-right: auto; }
.insta-steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin: 36px 0 40px; text-align: center;
}
.istep {
  padding: 28px 20px 24px; border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(217, 185, 91, 0.45);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7), 0 10px 26px rgba(75,36,26,0.07);
  transition: transform 0.45s var(--ease-luxe), box-shadow 0.45s;
}
.istep:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft), 0 0 30px rgba(217,185,91,0.2); }
.istep__num {
  display: grid; place-items: center; width: 44px; height: 44px; margin: 0 auto;
  border-radius: 50%; font-family: var(--font-display); font-size: 1.15rem; color: var(--choco-deep);
  background: linear-gradient(140deg, var(--gold-light), var(--gold) 60%, var(--gold-deep));
  box-shadow: 0 8px 20px rgba(217, 185, 91, 0.45);
}
.istep b { display: block; font-family: var(--font-display); font-size: 1.06rem; color: var(--choco); margin: 14px 0 7px; }
.istep p { font-size: 0.82rem; color: rgba(75, 36, 26, 0.68); }
.insta-cta { font-size: 0.92rem; padding: 19px 42px; }
.contact-info--row {
  grid-template-columns: repeat(3, 1fr); margin-top: 46px;
}
@media (max-width: 860px) {
  .insta-order { padding: 44px 26px 38px; }
  .insta-steps, .contact-info--row { grid-template-columns: 1fr; }
}

/* Search-friendly editorial and FAQ pages */
.prose { max-width: 860px; }
.prose > article, .prose > details {
  margin: 0 0 20px; padding: 28px 30px; border-radius: var(--radius-md);
  background: rgba(255,255,255,.55); border: 1px solid rgba(217,185,91,.38);
  box-shadow: 0 10px 26px rgba(75,36,26,.06);
}
.prose h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--choco); margin: 0 0 12px; }
.prose p { max-width: 72ch; line-height: 1.85; }
.prose a { color: var(--wine); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.prose summary { cursor: pointer; font-family: var(--font-display); font-size: 1.25rem; color: var(--choco); }
.prose details p { margin: 16px 0 0; }
.prose__cta { margin-top: 36px; font-size: 1.08rem; }
@media (max-width: 560px) { .prose > article, .prose > details { padding: 22px 20px; } }
