:root {
  --lavender-50: #fbf7ff;
  --lavender-100: #f2e8fb;
  --lavender-200: #e5d0f4;
  --purple-500: #9a4cb1;
  --purple-700: #6f287f;
  --purple-900: #3d1749;
  --plum: #25102c;
  --cream: #fffaf2;
  --gold: #d9a657;
  --blush: #f4c7d5;
  --ink: #2f2433;
  --muted: #665c6b;
  --line: rgba(75, 30, 87, .14);
  --shadow: 0 24px 70px rgba(67, 25, 78, .14);
  --radius: 28px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body { margin: 0; min-width: 320px; overflow-x: hidden; color: var(--ink); background: var(--lavender-100); font-family: var(--sans); line-height: 1.6; }
body.menu-open, body.modal-open { overflow: hidden; }
img, video { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
a { color: inherit; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 999; padding: 12px 18px; border-radius: 999px; background: #fff; color: var(--purple-900); }
.skip-link:focus { top: 16px; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.section { position: relative; padding: 112px 0; }
.section-white { background: rgba(255,255,255,.78); }
.eyebrow { margin: 0 0 14px; color: var(--purple-700); font-size: .76rem; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.section-heading { max-width: 760px; margin-bottom: 44px; }
.section-heading h2, .about-copy h2, .contact-copy h2 { margin: 0; color: var(--purple-900); font: 700 clamp(2.35rem, 5vw, 4.7rem)/.98 var(--serif); letter-spacing: -.035em; }
.section-heading > p:not(.eyebrow) { max-width: 650px; margin: 22px 0 0; color: var(--muted); font-size: 1.08rem; }
.button { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; gap: 10px; padding: 12px 21px; border: 1px solid transparent; border-radius: 999px; text-decoration: none; font-weight: 760; transition: transform .25s ease, background .25s ease, box-shadow .25s ease; cursor: pointer; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--purple-700); color: white; box-shadow: 0 12px 30px rgba(86, 30, 99, .25); }
.button-primary:hover { background: var(--purple-900); }
.button-secondary { border-color: rgba(255,255,255,.45); background: rgba(255,255,255,.12); color: white; backdrop-filter: blur(10px); }
.button-light { background: white; color: var(--purple-900); }
.button-outline { border-color: var(--purple-700); background: transparent; color: var(--purple-700); }
.full-width { width: 100%; }

.announcement { padding: 9px 20px; background: var(--purple-900); color: #fff5ff; text-align: center; font-size: .78rem; letter-spacing: .04em; }
.site-header { position: sticky; top: 0; z-index: 100; border-bottom: 1px solid rgba(75, 30, 87, .08); background: rgba(248, 239, 253, .88); backdrop-filter: blur(18px); }
.nav { display: flex; min-height: 78px; align-items: center; gap: 28px; }
.brand { display: flex; align-items: center; gap: 12px; margin-right: auto; text-decoration: none; }
.brand img { width: 58px; height: 54px; border-radius: 14px; object-fit: cover; object-position: center; box-shadow: 0 5px 16px rgba(53,20,62,.16); }
.brand span { max-width: 170px; color: var(--purple-900); font: 700 1rem/1.05 var(--serif); }
.nav-links { display: flex; align-items: center; gap: 23px; }
.nav-links > a { position: relative; text-decoration: none; font-size: .88rem; font-weight: 700; }
.nav-links > a:not(.button)::after { content: ""; position: absolute; right: 0; bottom: -7px; left: 0; height: 2px; background: var(--purple-700); transform: scaleX(0); transition: transform .2s ease; }
.nav-links > a:hover::after { transform: scaleX(1); }
.menu-button { display: none; width: 48px; height: 48px; padding: 12px; border: 0; border-radius: 50%; background: rgba(111,40,127,.09); color: var(--purple-900); }
.menu-button span { display: block; height: 2px; margin: 5px 0; background: currentColor; transition: .25s ease; }

.hero { position: relative; min-height: 760px; display: grid; align-items: center; overflow: hidden; isolation: isolate; background: var(--plum); color: white; }
.hero-media, .hero-media::after { position: absolute; inset: 0; }
.hero-media video { width: 100%; height: 100%; object-fit: cover; opacity: .82; }
.hero-media::after { content: ""; background: linear-gradient(90deg, rgba(31,9,39,.93) 0%, rgba(54,17,63,.72) 47%, rgba(44,12,51,.28) 100%), linear-gradient(0deg, rgba(30,8,36,.42), transparent 45%); }
.hero-content { position: relative; z-index: 1; max-width: 770px; padding: 100px 0 130px; }
.hero .eyebrow { color: #f3d8f7; }
.hero h1 { max-width: 760px; margin: 0; font: 700 clamp(3.55rem, 8vw, 7.3rem)/.87 var(--serif); letter-spacing: -.055em; text-wrap: balance; text-shadow: 0 14px 30px rgba(21,4,25,.28); transform: translateZ(30px); }
.hero-lead { max-width: 640px; margin: 26px 0 30px; color: rgba(255,255,255,.86); font-size: clamp(1.05rem, 2vw, 1.3rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-note { display: flex; flex-wrap: wrap; gap: 20px; margin: 34px 0 0; padding: 0; list-style: none; color: rgba(255,255,255,.84); font-size: .86rem; font-weight: 720; }
.hero-note li::before { content: "✦"; margin-right: 8px; color: var(--gold); }
.sprinkle { position: absolute; z-index: 2; width: 9px; height: 34px; border-radius: 999px; background: var(--blush); opacity: .65; animation: float 6s ease-in-out infinite; }
.sprinkle-one { right: 8%; top: 22%; transform: rotate(30deg); }
.sprinkle-two { right: 18%; bottom: 19%; background: var(--gold); transform: rotate(-26deg); animation-delay: -2s; }
.sprinkle-three { left: 48%; top: 15%; height: 21px; transform: rotate(72deg); animation-delay: -4s; }

.notice-banner { position: relative; z-index: 3; width: min(1040px, calc(100% - 40px)); margin: -54px auto 0; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 20px; padding: 24px 28px; border: 1px solid rgba(255,255,255,.6); border-radius: 24px; background: rgba(255,255,255,.86); box-shadow: var(--shadow); backdrop-filter: blur(16px); }
.notice-icon { display: grid; width: 54px; height: 54px; place-items: center; border-radius: 50%; background: var(--lavender-200); color: var(--purple-700); font-size: 1.4rem; }
.notice-banner strong { display: block; color: var(--purple-900); font-family: var(--serif); font-size: 1.24rem; }
.notice-banner p { margin: 3px 0 0; color: var(--muted); }

.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; perspective: 1300px; }
.product-card { --rx: 0deg; --ry: 0deg; overflow: hidden; border: 1px solid rgba(82,32,95,.1); border-radius: var(--radius); background: rgba(255,255,255,.82); box-shadow: 0 16px 45px rgba(63,21,73,.09); transform: rotateX(var(--rx)) rotateY(var(--ry)); transform-style: preserve-3d; transition: transform .24s ease, box-shadow .24s ease; }
.product-card:hover { box-shadow: 0 26px 60px rgba(63,21,73,.16); }
.product-image-wrap { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.product-image-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.8,.2,1); }
.product-card:hover img { transform: scale(1.055); }
.notice-pill { position: absolute; left: 14px; bottom: 14px; padding: 7px 11px; border-radius: 999px; background: rgba(57,17,67,.88); color: white; font-size: .7rem; font-weight: 800; backdrop-filter: blur(8px); }
.reference-pill { position: absolute; top: 14px; right: 14px; padding: 7px 11px; border: 1px solid rgba(255,255,255,.65); border-radius: 999px; background: rgba(255,255,255,.9); color: var(--purple-900); font-size: .68rem; font-weight: 850; box-shadow: 0 7px 18px rgba(37,16,44,.12); }
.product-copy { padding: 22px; }
.card-number { margin: 0 0 12px; color: var(--purple-500); font: 700 .75rem/1 var(--sans); letter-spacing: .12em; }
.product-copy h3, .size-card h3 { margin: 0; color: var(--purple-900); font: 700 1.43rem/1.1 var(--serif); }
.product-copy > p:not(.card-number) { min-height: 78px; margin: 13px 0 18px; color: var(--muted); font-size: .91rem; }
.text-link { color: var(--purple-700); font-size: .88rem; font-weight: 800; text-decoration: none; }

.tiered-layout { display: grid; grid-template-columns: 1.08fr .92fr; min-height: 620px; overflow: hidden; border-radius: 38px; background: var(--purple-900); color: white; box-shadow: var(--shadow); }
.tiered-photo { position: relative; overflow: hidden; }
.tiered-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.tiered-layout:hover .tiered-photo img { transform: scale(1.035); }
.tiered-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 65%, rgba(61,23,73,.5)); }
.tiered-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(42px, 6vw, 84px); }
.tiered-copy .eyebrow { color: #eacaf0; }
.tiered-copy h2 { margin: 0; font: 700 clamp(2.8rem, 5vw, 5.2rem)/.94 var(--serif); }
.tiered-copy p:not(.eyebrow) { margin: 24px 0 30px; color: rgba(255,255,255,.78); }
.tiered-copy .button { align-self: flex-start; }

.size-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.size-card { padding: 26px; border: 1px solid var(--line); border-radius: 24px; background: rgba(255,255,255,.72); }
.size-ring { width: 58px; height: 58px; display: grid; place-items: center; margin-bottom: 20px; border: 2px solid var(--purple-500); border-radius: 50%; box-shadow: inset 0 0 0 7px var(--lavender-100); color: var(--purple-700); font-size: .7rem; font-weight: 850; }
.size-card dl { margin: 20px 0 0; }
.size-card dl > div { display: grid; grid-template-columns: 68px 1fr; gap: 10px; padding: 9px 0; border-top: 1px solid var(--line); }
.size-card dt { color: var(--purple-700); font-size: .72rem; font-weight: 800; text-transform: uppercase; }
.size-card dd { margin: 0; color: var(--muted); font-size: .82rem; }
.size-notice { max-width: 900px; margin: 34px auto 0; padding: 18px 22px; border-left: 4px solid var(--purple-500); background: rgba(255,255,255,.62); color: var(--muted); }

.flavour-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.flavour-card { padding: clamp(26px, 4vw, 42px); border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.86); box-shadow: 0 18px 48px rgba(63,21,73,.09); }
.flavour-card.reveal { transition-delay: var(--stagger, 0ms); }
.flavour-card-heading { display: flex; align-items: center; gap: 15px; margin-bottom: 24px; }
.flavour-card-heading span { display: grid; flex: 0 0 50px; width: 50px; height: 50px; place-items: center; border-radius: 50%; background: var(--purple-700); color: white; font: 700 1.15rem/1 var(--serif); box-shadow: inset 0 0 0 6px rgba(255,255,255,.15); }
.flavour-card-heading h3 { margin: 0; color: var(--purple-900); font: 700 clamp(1.65rem, 3vw, 2.2rem)/1.05 var(--serif); }
.flavour-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 14px; margin: 0; padding: 0; list-style: none; }
.flavour-list li { position: relative; min-height: 44px; display: flex; align-items: center; padding: 9px 12px 9px 32px; border: 1px solid var(--line); border-radius: 13px; background: var(--lavender-50); color: var(--ink); font-size: .88rem; font-weight: 680; overflow-wrap: break-word; }
.flavour-list li::before { content: "✦"; position: absolute; left: 12px; color: var(--purple-500); font-size: .68rem; }
.flavour-note { max-width: 850px; margin: 30px auto 0; padding: 17px 22px; border-left: 4px solid var(--gold); background: rgba(255,250,242,.82); color: var(--muted); }

.trust-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.trust-card { position: relative; min-height: 360px; overflow: hidden; padding: clamp(30px, 5vw, 54px); border: 1px solid var(--line); border-radius: 32px; background: var(--cream); box-shadow: var(--shadow); }
.trust-card::after { content: ""; position: absolute; right: -72px; bottom: -96px; width: 240px; height: 240px; border: 48px solid rgba(154,76,177,.08); border-radius: 50%; pointer-events: none; }
.trust-icon { display: grid; width: 58px; height: 58px; place-items: center; margin-bottom: 28px; border-radius: 18px; background: var(--lavender-200); color: var(--purple-700); font-size: 1.35rem; }
.trust-card h3 { margin: 0 0 18px; color: var(--purple-900); font: 700 clamp(2rem, 4vw, 3.1rem)/1 var(--serif); }
.trust-card p { position: relative; z-index: 1; max-width: 590px; margin: 0 0 16px; color: var(--muted); font-size: 1.02rem; }
.delivery-card { background: var(--purple-900); color: white; }
.delivery-card::after { border-color: rgba(255,255,255,.06); }
.delivery-card .trust-icon { background: rgba(255,255,255,.12); color: var(--gold); }
.delivery-card h3, .delivery-card p { color: white; }
.delivery-card p { color: rgba(255,255,255,.8); }
.delivery-card p strong { color: white; }
.trust-actions { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: 9px; margin-top: 24px; }
.trust-actions a { display: inline-flex; min-height: 44px; align-items: center; padding: 9px 15px; border: 1px solid rgba(255,255,255,.28); border-radius: 999px; color: white; font-size: .8rem; font-weight: 800; text-decoration: none; transition: background .2s ease, transform .2s ease; }
.trust-actions a:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); }

.filter-row { display: flex; gap: 10px; margin-bottom: 30px; overflow-x: auto; scrollbar-width: none; padding: 3px 2px 9px; }
.filter-row::-webkit-scrollbar { display: none; }
.filter-button { flex: 0 0 auto; padding: 10px 16px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.7); color: var(--purple-900); font-size: .8rem; font-weight: 750; cursor: pointer; }
.filter-button.active { background: var(--purple-700); color: white; }
.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.gallery-item { position: relative; grid-column: span 4; aspect-ratio: 4 / 5; overflow: hidden; padding: 0; border: 0; border-radius: 22px; background: var(--purple-900); text-align: left; cursor: zoom-in; }
.gallery-item:nth-child(2), .gallery-item:nth-child(6) { grid-column: span 8; aspect-ratio: 8 / 5; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease, filter .55s ease; }
.gallery-item:hover img { transform: scale(1.06); filter: brightness(.78); }
.gallery-caption { position: absolute; right: 0; bottom: 0; left: 0; padding: 60px 20px 18px; color: white; background: linear-gradient(transparent, rgba(38,9,44,.82)); transform: translateY(10px); opacity: .9; transition: .3s ease; }
.gallery-caption small, .gallery-caption strong { display: block; }
.gallery-caption small { color: #edd6f2; font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.gallery-caption strong { margin-top: 4px; font: 700 1.25rem/1.1 var(--serif); }
.gallery-item:hover .gallery-caption { transform: translateY(0); opacity: 1; }

.about-grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: 70px; align-items: center; }
.about-image { position: relative; }
.about-image img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 180px 180px 28px 28px; box-shadow: var(--shadow); }
.about-seal { position: absolute; right: -24px; bottom: 30px; width: 128px; height: 128px; display: grid; place-items: center; border: 7px solid var(--lavender-100); border-radius: 50%; background: var(--purple-700); color: white; text-align: center; font: 700 .78rem/1.25 var(--serif); transform: rotate(-8deg); }
.about-copy > p:not(.eyebrow) { margin: 24px 0; color: var(--muted); font-size: 1.05rem; }
.about-points { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 30px 0; }
.about-point { padding: 18px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.55); }
.about-point strong { display: block; color: var(--purple-900); font-family: var(--serif); }
.about-point span { color: var(--muted); font-size: .82rem; }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; overflow: hidden; border-radius: 34px; background: white; box-shadow: var(--shadow); }
.contact-copy { padding: clamp(36px, 6vw, 72px); background: var(--purple-900); color: white; }
.contact-copy h2 { color: white; }
.contact-copy > p:not(.eyebrow) { color: rgba(255,255,255,.74); }
.contact-list { display: grid; gap: 18px; margin: 34px 0; }
.contact-item { display: grid; grid-template-columns: 42px 1fr; align-items: start; gap: 12px; }
.contact-item i { display: grid; width: 38px; height: 38px; place-items: center; border-radius: 50%; background: rgba(255,255,255,.1); font-style: normal; }
.contact-item strong, .contact-item a, .contact-item span { display: block; }
.contact-item strong { font-size: .7rem; color: #eacaf0; letter-spacing: .1em; text-transform: uppercase; }
.contact-item a { color: white; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.social-buttons { display: flex; flex-wrap: wrap; gap: 10px; }
.contact-form { padding: clamp(32px, 5vw, 64px); }
.contact-form h3 { margin: 0 0 8px; color: var(--purple-900); font: 700 2rem/1 var(--serif); }
.form-intro { margin: 0 0 26px; color: var(--muted); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.field { display: grid; gap: 7px; }
.field-wide { grid-column: 1 / -1; }
.field label { color: var(--purple-900); font-size: .78rem; font-weight: 800; }
.field input, .field select, .field textarea { width: 100%; min-height: 48px; padding: 12px 13px; border: 1px solid rgba(69,30,78,.22); border-radius: 12px; background: #fcf9fd; color: var(--ink); }
.field textarea { min-height: 108px; resize: vertical; }
.field small { color: var(--muted); }
.checkbox { grid-column: 1 / -1; display: grid; grid-template-columns: auto 1fr; gap: 10px; align-items: start; font-size: .8rem; color: var(--muted); }
.checkbox input { margin-top: 4px; }
.form-actions { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 10px; margin-top: 5px; }
.privacy-note { grid-column: 1 / -1; margin: 0; color: var(--muted); font-size: .75rem; }

.site-footer { padding: 72px 0 120px; background: var(--plum); color: rgba(255,255,255,.72); }
.footer-grid { display: grid; grid-template-columns: 1.4fr .8fr .9fr; gap: 50px; }
.footer-brand { display: flex; align-items: center; gap: 14px; color: white; font: 700 1.35rem/1 var(--serif); }
.footer-brand img { width: 72px; height: 66px; border-radius: 16px; object-fit: cover; }
.footer-copy { max-width: 420px; }
.footer-col strong { display: block; margin-bottom: 15px; color: white; font: 700 1rem var(--serif); }
.footer-col a { display: block; margin: 8px 0; color: inherit; text-decoration: none; }
.footer-col a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); font-size: .75rem; }

.whatsapp-float { position: fixed; right: 22px; bottom: 22px; z-index: 90; display: grid; width: 62px; height: 62px; place-items: center; border: 4px solid white; border-radius: 50%; background: #25d366; color: white; text-decoration: none; box-shadow: 0 12px 30px rgba(15,76,38,.32); animation: pulse 2.6s ease-in-out infinite; }
.whatsapp-float svg { width: 30px; height: 30px; fill: currentColor; }

.lightbox { width: min(920px, calc(100% - 28px)); max-height: 92vh; padding: 0; border: 0; border-radius: 22px; overflow: hidden; background: #1d0b22; color: white; box-shadow: 0 40px 100px rgba(0,0,0,.5); }
.lightbox::backdrop { background: rgba(18,5,21,.82); backdrop-filter: blur(8px); }
.lightbox figure { margin: 0; }
.lightbox img { width: 100%; max-height: 78vh; object-fit: contain; }
.lightbox figcaption { padding: 13px 20px; text-align: center; font-weight: 700; }
.lightbox-close, .lightbox-nav { position: absolute; z-index: 2; display: grid; place-items: center; border: 0; border-radius: 50%; background: rgba(255,255,255,.9); color: var(--purple-900); cursor: pointer; }
.lightbox-close { top: 12px; right: 12px; width: 44px; height: 44px; font-size: 1.5rem; }
.lightbox-nav { top: 48%; width: 46px; height: 46px; font-size: 1.4rem; }
.lightbox-nav.prev { left: 12px; }
.lightbox-nav.next { right: 12px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@keyframes float { 0%, 100% { translate: 0 0; } 50% { translate: 0 -17px; } }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.055); } }

@media (max-width: 1050px) {
  .nav-links { position: fixed; inset: 78px 0 auto; display: grid; max-height: 0; overflow: hidden; gap: 0; background: rgba(249,241,253,.98); opacity: 0; transition: max-height .35s ease, opacity .25s ease; }
  .nav-links.open { max-height: calc(100vh - 78px); padding: 20px; opacity: 1; box-shadow: 0 25px 60px rgba(48,16,56,.16); }
  .nav-links > a { padding: 14px 10px; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .nav-links .button { margin-top: 10px; color: white; }
  .menu-button { display: block; }
  .product-grid, .size-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 780px) {
  .container { width: min(100% - 28px, 1180px); }
  .section { padding: 82px 0; }
  .brand span { display: none; }
  .hero { min-height: 690px; }
  .hero-content { padding: 80px 0 120px; }
  .hero h1 { font-size: clamp(3.3rem, 16vw, 5.4rem); }
  .hero-media::after { background: linear-gradient(90deg, rgba(31,9,39,.9), rgba(44,12,51,.52)); }
  .notice-banner { grid-template-columns: auto 1fr; padding: 20px; }
  .notice-banner .button { grid-column: 1 / -1; }
  .tiered-layout { grid-template-columns: 1fr; }
  .tiered-photo { min-height: 420px; }
  .tiered-photo::after { background: linear-gradient(0deg, rgba(61,23,73,.48), transparent 50%); }
  .gallery-item, .gallery-item:nth-child(2), .gallery-item:nth-child(6) { grid-column: span 6; aspect-ratio: 4 / 5; }
  .about-grid { grid-template-columns: 1fr; gap: 54px; }
  .about-image { width: min(500px, 92%); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
  .footer-bottom { display: block; }
  .whatsapp-float { bottom: 18px; right: 16px; width: 58px; height: 58px; }
}

@media (max-width: 520px) {
  .section-heading { margin-bottom: 32px; }
  .section-heading h2, .about-copy h2, .contact-copy h2 { font-size: 2.65rem; }
  .hero-actions .button { width: 100%; }
  .hero-note { display: grid; gap: 8px; }
  .product-grid, .size-grid, .form-grid { grid-template-columns: 1fr; }
  .product-copy > p:not(.card-number) { min-height: auto; }
  .tiered-photo { min-height: 330px; }
  .tiered-copy { padding: 34px 26px 40px; }
  .gallery-grid { gap: 10px; }
  .gallery-item, .gallery-item:nth-child(2), .gallery-item:nth-child(6) { grid-column: 1 / -1; aspect-ratio: 4 / 4.5; }
  .about-points { grid-template-columns: 1fr; }
  .about-seal { width: 108px; height: 108px; right: -10px; }
  .contact-copy, .contact-form { padding: 30px 22px; }
  .field-wide, .checkbox, .form-actions, .privacy-note { grid-column: auto; }
  .form-actions .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > :first-child { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Final responsive image, motion and interaction refinements */
.brand img {
  width: 82px;
  height: 58px;
  padding: 3px;
  border-radius: 12px;
  background: #7d348f;
  object-fit: contain;
  box-shadow: 0 5px 16px rgba(53, 20, 62, .16);
}
.footer-brand img {
  width: 108px;
  height: 76px;
  padding: 4px;
  border-radius: 14px;
  background: #7d348f;
  object-fit: contain;
}
.hero-media {
  display: block;
  overflow: hidden;
}
.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 38%, rgba(227, 160, 231, .23), transparent 23%),
    radial-gradient(circle at 70% 72%, rgba(217, 166, 87, .13), transparent 26%),
    linear-gradient(125deg, #211027 0%, #3c1648 50%, #672a75 100%);
}
.hero-backdrop::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image: radial-gradient(rgba(255,255,255,.7) .75px, transparent .75px);
  background-size: 18px 18px;
  mask-image: linear-gradient(90deg, transparent, #000 58%, #000);
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-media::after {
  background:
    linear-gradient(90deg, rgba(31, 9, 39, .96) 0%, rgba(54, 17, 63, .83) 48%, rgba(44, 12, 51, .2) 100%),
    linear-gradient(0deg, rgba(30, 8, 36, .42), transparent 45%);
}
.hero h1 {
  max-width: 820px;
  font-size: clamp(3.35rem, 7vw, 6.8rem);
}
.hero-content {
  width: min(1240px, calc(100% - 40px));
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(380px, .96fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: center;
}
.hero-copy { min-width: 0; }
.hero-cake-stage {
  --cake-rotate-y: -12deg;
  --cake-rotate-x: 5deg;
  --cake-rotate-z: -2deg;
  --cake-lift: 0px;
  --cake-scale: 1;
  --orbit-turn: 0deg;
  position: relative;
  width: min(520px, 100%);
  aspect-ratio: 1;
  justify-self: end;
  display: grid;
  place-items: center;
  perspective: 1200px;
  transform: translateY(calc(var(--cake-lift) * -1));
  will-change: transform;
}
.hero-cake-card {
  position: relative;
  z-index: 2;
  width: 88%;
  margin: 0;
  overflow: visible;
  border: 1px solid rgba(255,255,255,.52);
  border-radius: 42px;
  background: rgba(255,255,255,.12);
  box-shadow: 0 36px 80px rgba(17,4,21,.44);
  transform:
    rotateX(var(--cake-rotate-x))
    rotateY(var(--cake-rotate-y))
    rotateZ(var(--cake-rotate-z))
    scale(var(--cake-scale));
  transform-style: preserve-3d;
  transition: box-shadow .3s ease;
  will-change: transform;
}
.hero-cake-card::before {
  content: "";
  position: absolute;
  inset: -10px;
  z-index: -1;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 48px;
  transform: translateZ(-34px);
  background: rgba(73,22,83,.52);
}
.cake-card-depth {
  position: absolute;
  inset: 18px -18px -18px 18px;
  z-index: -2;
  border-radius: 42px;
  background: linear-gradient(145deg, #b975c3, #3f174a);
  transform: translateZ(-52px);
  filter: brightness(.72);
}
.hero-cake-card img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 40px;
  object-fit: cover;
  transform: translateZ(34px);
}
.hero-cake-card figcaption {
  position: absolute;
  right: 20px;
  bottom: 18px;
  left: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 15px;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 16px;
  background: rgba(47,17,54,.72);
  color: white;
  backdrop-filter: blur(12px);
  transform: translateZ(54px);
}
.hero-cake-card figcaption strong { font: 700 1rem/1 var(--serif); }
.hero-cake-card figcaption span { font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.cake-orbit {
  position: absolute;
  z-index: 0;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  transform: rotate(var(--orbit-turn));
  transition: border-color .3s ease;
}
.cake-orbit::after {
  content: "";
  position: absolute;
  top: 7%;
  left: 14%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 22px rgba(217,166,87,.8);
}
.cake-orbit-one { inset: 0; }
.cake-orbit-two { inset: 8%; transform: rotate(calc(var(--orbit-turn) * -1)); }
.cake-orbit-two::after { top: auto; right: 7%; bottom: 12%; left: auto; background: var(--blush); }
.cake-spark { position: absolute; z-index: 3; color: #f6dcae; text-shadow: 0 0 20px rgba(246,220,174,.7); }
.cake-spark-one { top: 2%; right: 14%; font-size: 1.8rem; transform: translateZ(80px); }
.cake-spark-two { bottom: 8%; left: 2%; font-size: 1.2rem; transform: translateZ(60px); }
.js .hero-cake-stage { opacity: 0; transform: translateY(36px) scale(.94); }
.page-ready .hero-cake-stage {
  opacity: 1;
  transform: translateY(calc(var(--cake-lift) * -1)) scale(1);
  transition: opacity .9s ease .28s;
}
.js .hero-animate,
.js .hero-actions,
.js .hero-note {
  opacity: 0;
  transform: translateY(24px);
}
.page-ready .hero-animate,
.page-ready .hero-actions,
.page-ready .hero-note {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .75s ease, transform .75s cubic-bezier(.2, .8, .2, 1);
}
.page-ready .hero h1 { transition-delay: 90ms; }
.page-ready .hero-lead { transition-delay: 180ms; }
.page-ready .hero-actions { transition-delay: 270ms; }
.page-ready .hero-note { transition-delay: 350ms; }

.service-overview { padding-bottom: 40px; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  padding: clamp(26px, 4vw, 40px);
  border: 1px solid rgba(82, 32, 95, .1);
  border-radius: 28px;
  background: rgba(255, 255, 255, .76);
  box-shadow: 0 16px 45px rgba(63, 21, 73, .08);
  transition: transform .3s ease, box-shadow .3s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 58px rgba(63, 21, 73, .14);
}
.service-card-media {
  position: relative;
  display: grid;
  width: min(100%, 240px);
  height: auto;
  aspect-ratio: 1 / 1;
  place-items: center;
  margin: 0 auto 24px;
  overflow: hidden;
  border: 1px solid rgba(111,40,127,.1);
  border-radius: 20px;
  background: linear-gradient(145deg, var(--lavender-100), rgba(255,255,255,.86));
}
.service-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  padding: 7px;
  object-fit: contain !important;
  object-position: 50% 50%;
  transition: transform .55s cubic-bezier(.2,.8,.2,1);
}
.service-card:hover .service-card-media img { transform: scale(1.035); }
.service-card > span {
  color: var(--purple-500);
  font-size: .75rem;
  font-weight: 850;
  letter-spacing: .12em;
}
.service-card h3 {
  margin: 20px 0 12px;
  color: var(--purple-900);
  font: 700 1.7rem/1.05 var(--serif);
}
.service-card p { min-height: 78px; margin: 0 0 20px; color: var(--muted); }
.service-card a,
.text-link {
  position: relative;
  display: inline-flex;
  color: var(--purple-700);
  font-size: .88rem;
  font-weight: 800;
  text-decoration: none;
}
.service-card a::after,
.text-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -3px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(.25);
  transform-origin: left;
  transition: transform .25s ease;
}
.service-card a:hover::after,
.text-link:hover::after { transform: scaleX(1); }

.button {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, .22), transparent 70%);
  transform: translateX(-120%);
  transition: transform .55s ease;
}
.button:hover::before { transform: translateX(120%); }
.button:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(67, 25, 78, .2); }
.button:active { transform: translateY(-1px) scale(.99); }

.product-card {
  --reveal-y: 0px;
  transform: translateY(var(--reveal-y)) rotateX(var(--rx)) rotateY(var(--ry));
  transition: opacity .65s ease var(--stagger, 0ms), transform .65s cubic-bezier(.2, .8, .2, 1) var(--stagger, 0ms), box-shadow .24s ease;
}
.js .product-card.reveal { --reveal-y: 24px; }
.js .product-card.reveal.visible { --reveal-y: 0px; }
.product-image-wrap img,
.gallery-item img,
.about-image img {
  object-position: var(--object-position, 50% 50%);
}
.product-image-wrap img.image-contain {
  object-fit: contain;
  padding: 12px;
  background: #f7eff9;
}
.gallery-item img.image-contain {
  object-fit: contain;
  padding: 10px;
  background: #ede0f1;
}
.gallery-item.gallery-wide { grid-column: span 8; aspect-ratio: 8 / 5; }
.gallery-item.gallery-portrait { grid-column: span 4; aspect-ratio: 4 / 5; }
.gallery-item:nth-child(2),
.gallery-item:nth-child(6) {
  grid-column: auto;
  aspect-ratio: auto;
}
.gallery-item.gallery-wide { grid-column: span 8; aspect-ratio: 8 / 5; }
.gallery-item.gallery-portrait { grid-column: span 4; aspect-ratio: 4 / 5; }
.tiered-photo {
  display: grid;
  place-items: center;
  background: #2d1036;
}
.tiered-photo img {
  width: 100%;
  height: 100%;
  padding: 18px;
  object-fit: contain;
  object-position: 50% 50%;
}
.about-image img { aspect-ratio: 4 / 4.4; object-position: 50% 50%; }
.size-ring {
  width: 72px;
  height: 72px;
  padding: 7px;
  text-align: center;
  line-height: 1.05;
}
.contact-item address {
  margin: 2px 0 0;
  color: white;
  font-style: normal;
  line-height: 1.55;
}
.footer-col span { display: block; margin-top: 12px; }

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease var(--stagger, 0ms), transform .7s cubic-bezier(.2, .8, .2, 1) var(--stagger, 0ms);
}
.js .reveal.visible { opacity: 1; transform: translateY(0); }
.js .product-card.reveal,
.js .product-card.reveal.visible { transform: translateY(var(--reveal-y)) rotateX(var(--rx)) rotateY(var(--ry)); }

@media (max-width: 1050px) {
  .nav-links {
    inset: 78px 14px auto;
    max-height: none;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 20px;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-16px) scale(.98);
    transform-origin: top;
    transition: visibility .28s ease, opacity .28s ease, transform .28s ease;
  }
  .nav-links.open {
    max-height: calc(100vh - 100px);
    padding: 14px;
    visibility: visible;
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  .menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 780px) {
  .hero-media::after {
    background: linear-gradient(180deg, rgba(31, 9, 39, .55), rgba(31, 9, 39, .9) 72%);
  }
  .hero-content {
    display: block;
    align-self: end;
    max-width: none;
    padding: 320px 0 120px;
  }
  .hero-copy { position: relative; z-index: 3; }
  .hero-cake-stage {
    position: absolute;
    top: 18px;
    right: -2%;
    width: min(360px, 86vw);
  }
  .hero h1 { font-size: clamp(3rem, 14vw, 5.2rem); }
  .gallery-item.gallery-wide,
  .gallery-item.gallery-portrait {
    grid-column: span 6;
    aspect-ratio: 4 / 5;
  }
  .flavour-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .service-grid { grid-template-columns: 1fr; }
  .service-card p { min-height: 0; }
  .service-card-media { width: min(100%, 270px); height: auto; }
  .flavour-list { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .brand img { width: 74px; height: 52px; }
  .nav { min-height: 72px; }
  .nav-links { inset-block-start: 72px; }
  .hero { min-height: 720px; }
  .hero-content { padding-top: 310px; }
  .hero h1 { font-size: clamp(2.85rem, 15vw, 4.3rem); }
  .notice-banner { width: calc(100% - 24px); }
  .gallery-item.gallery-wide,
  .gallery-item.gallery-portrait {
    grid-column: 1 / -1;
    aspect-ratio: 4 / 4.7;
  }
  .whatsapp-float { bottom: 84px; }
}

@media (prefers-reduced-motion: reduce) {
  .js .hero-animate,
  .js .hero-actions,
  .js .hero-note,
  .js .reveal,
  .js .product-card.reveal {
    opacity: 1;
    transform: none;
  }
  .product-card { transform: none; }
  .hero-cake-stage,
  .hero-cake-card,
  .cake-orbit { transform: none !important; }
}
