/* =========================================================
   Smart Namkeen — Joyos. Brand: logo red, pack yellow, pack green.
   ========================================================= */
:root {
    --red: #D7262E;
    --red-deep: #A8161D;
    --yellow: #F6CE1B;
    --yellow-soft: #EFEAFB; /* soft lavender (was khaki) */
    --green: #1F8B3B;
    --green-deep: #146A2B;
    --ink: #1E1A2E;          /* neutral near-black text (was brown) */
    --night: #1D1B3F;        /* footer: deep indigo */
    --ink-soft: #5B5670;
    --cream: #FBFAFF; /* page background: near-white lavender */
    --line: #E9E3F6;
    --lav: #B9B7E6;
    --pink: #F6C9DF;
    --radius: 22px;
    --shadow: 0 18px 40px -18px rgba(45, 25, 80, .35);
    --ease: cubic-bezier(.22, 1, .36, 1);
    --bounce: cubic-bezier(.34, 1.56, .64, 1);
    --header: 76px;
}

*, *::before, *::after { box-sizing: border-box; }
html { overflow-x: clip; scroll-behavior: smooth; scroll-padding-top: var(--header); -webkit-text-size-adjust: 100%; }
body {
    margin: 0; background: var(--cream); color: var(--ink);
    font-family: 'Poppins', system-ui, sans-serif; font-size: 16px; line-height: 1.65;
    -webkit-font-smoothing: antialiased; overflow-x: clip;
}
body.loading { overflow: hidden; }
h1, h2, h3, h4 { font-family: 'Baloo 2', 'Poppins', sans-serif; line-height: 1.08; margin: 0; }
p { margin: 0 0 1em; color: var(--ink-soft); }
a { color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button { font: inherit; }
::selection { background: var(--yellow); color: var(--ink); }
.wrap { width: min(1180px, 100% - 40px); margin-inline: auto; }
section { position: relative; }

/* ---------- Buttons ---------- */
.btn {
    --bg: var(--red);
    display: inline-flex; align-items: center; gap: 10px; padding: 14px 26px; border-radius: 100px;
    background: var(--bg); color: #fff; font-weight: 600; font-size: 15.5px; text-decoration: none;
    border: 2px solid transparent; cursor: pointer; position: relative; overflow: hidden; isolation: isolate;
    box-shadow: 0 10px 22px -10px var(--bg); transition: transform .35s var(--bounce), box-shadow .3s, color .3s;
}
.btn::before {
    content: ''; position: absolute; inset: 0; z-index: -1; border-radius: inherit;
    background: rgba(255, 255, 255, .22); transform: translateX(-101%) skewX(-18deg); transition: transform .5s var(--ease);
}
.btn:hover::before { transform: translateX(0) skewX(0); }
.btn:active { scale: .96; }
.btn .arrow { transition: transform .3s var(--ease); }
.btn:hover .arrow { transform: translateX(5px); }
.btn .ico { width: 20px; height: 20px; }
.btn-red { --bg: var(--red); }
.btn-green { --bg: var(--green); }
.btn-ghost { --bg: transparent; color: var(--ink); border-color: var(--ink); box-shadow: none; }
.btn-ghost::before { background: var(--ink); transform: translateX(-101%); }
.btn-ghost:hover { color: #fff; }
.btn-sm { padding: 10px 18px; font-size: 14px; }

.eyebrow {
    display: inline-flex; align-items: center; gap: 10px; font-weight: 700; font-size: 13px; letter-spacing: 2.2px;
    text-transform: uppercase; color: var(--red); margin-bottom: 14px;
}
.eyebrow::before { content: ''; width: 28px; height: 3px; border-radius: 3px; background: currentColor; }
.eyebrow.light { color: #fff; }
.eyebrow.yellow { color: var(--yellow); }
.h2 { font-size: clamp(30px, 4.2vw, 50px); font-weight: 800; margin-bottom: 20px; letter-spacing: -.5px; }
.h2 em { font-style: normal; font-family: 'Pacifico', cursive; font-weight: 400; color: var(--red); font-size: .9em; }
.h2.light { color: #fff; }

/* ---------- Preloader ---------- */
.loader { display: none; }
.js .loader { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; pointer-events: none; }
.loader-curtain { position: absolute; top: 0; bottom: 0; width: 50.5%; background: var(--red); transition: transform 1s var(--ease); }
.loader-curtain.l { left: 0; }
.loader-curtain.r { right: 0; background: var(--red-deep); }
.loader-core {
    position: relative; background: #fff; padding: 22px 26px 18px; border-radius: 20px;
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .45); animation: popIn .7s var(--bounce) both; transition: transform .5s var(--ease), opacity .4s;
}
.loader-core img { width: 220px; }
.loader-bar { height: 5px; background: #EEE8F8; border-radius: 5px; margin-top: 14px; overflow: hidden; }
.loader-bar span { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--yellow), var(--red)); animation: load .8s var(--ease) forwards; }
.loaded .loader-curtain.l { transform: translateX(-102%); }
.loaded .loader-curtain.r { transform: translateX(102%); }
.loaded .loader-core { transform: scale(.6); opacity: 0; }
.loader.gone { display: none; }
@keyframes load { to { width: 100%; } }
@keyframes popIn { from { transform: scale(.4) rotate(-8deg); opacity: 0; } }

/* ---------- Header ---------- */
.scroll-progress { position: fixed; top: 0; left: 0; height: 4px; width: 100%; z-index: 120; background: linear-gradient(90deg, var(--yellow), var(--red), var(--green)); transform-origin: 0 50%; transform: scaleX(0); }
.site-header {
    position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--header);
    transition: background .35s, box-shadow .35s, height .35s, transform .45s var(--ease);
}
.site-header.scrolled { background: rgba(255, 255, 255, .9); backdrop-filter: blur(14px) saturate(1.4); -webkit-backdrop-filter: blur(14px) saturate(1.4); box-shadow: 0 8px 30px -18px rgba(45, 25, 80, .4); height: 66px; }
.site-header.hide { transform: translateY(-100%); }
.nav-row { height: 100%; width: min(1240px, 100% - 32px); margin-inline: auto; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand img { height: 50px; width: auto; transition: transform .4s var(--bounce), height .35s; }
.scrolled .brand img { height: 44px; }
.brand:hover img { transform: rotate(-4deg) scale(1.06); }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a:not(.btn) {
    text-decoration: none; font-weight: 600; font-size: 15px; padding: 8px 14px; border-radius: 100px; position: relative; color: var(--ink);
    transition: color .25s;
}
.nav-links a:not(.btn)::after {
    content: ''; position: absolute; left: 14px; right: 14px; bottom: 3px; height: 3px; border-radius: 3px; background: var(--red);
    transform: scaleX(0); transform-origin: right; transition: transform .35s var(--ease);
}
.nav-links a:not(.btn):hover::after, .nav-links a.active::after { transform: scaleX(1); transform-origin: left; }
.nav-links a.active { color: var(--red); }
.nav-cta { margin-left: 10px; }
.burger { display: none; position: relative; z-index: 2; width: 46px; height: 46px; border: 0; border-radius: 12px; background: var(--red); cursor: pointer; padding: 12px 11px; }
.burger span { display: block; height: 3px; background: #fff; border-radius: 3px; margin: 4px 0; transition: transform .35s var(--ease), opacity .2s; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
    .burger { display: block; }
    .nav-links {
        position: fixed; inset: 0; flex-direction: column; justify-content: center; gap: 8px;
        background: var(--red); clip-path: circle(0 at calc(100% - 40px) 38px); transition: clip-path .7s var(--ease); visibility: hidden;
    }
    .nav-links.open { clip-path: circle(150% at calc(100% - 40px) 38px); visibility: visible; }
    .nav-links a:not(.btn) { color: #fff; font-family: 'Baloo 2'; font-size: 32px; font-weight: 800; opacity: 0; transform: translateY(20px); transition: opacity .4s, transform .5s var(--ease); }
    .nav-links a:not(.btn)::after { background: var(--yellow); }
    .nav-links.open a { opacity: 1; transform: none; }
    .nav-links.open a:nth-child(2) { transition-delay: .05s; } .nav-links.open a:nth-child(3) { transition-delay: .1s; }
    .nav-links.open a:nth-child(4) { transition-delay: .15s; } .nav-links.open a:nth-child(5) { transition-delay: .2s; }
    .nav-links a.active { color: var(--yellow); }
    .nav-cta { --bg: var(--yellow); color: var(--ink) !important; margin: 18px 0 0; }
    .menu-open .burger { background: #fff; }
    .menu-open .burger span { background: var(--red); }
    .menu-open .brand { position: relative; z-index: 2; }
    .menu-open .site-header { background: transparent; box-shadow: none; backdrop-filter: none; }
}

/* ---------- Hero ---------- */
.hero {
    min-height: 100svh; padding: calc(var(--header) + 30px) 0 120px; overflow: hidden;
    background: linear-gradient(135deg, #F1E9FB 0%, #FCE8F2 45%, #E8ECFB 100%);
    display: flex; align-items: center;
}
.blob { position: absolute; border-radius: 42% 58% 60% 40% / 45% 45% 55% 55%; opacity: .75; animation: morph 14s ease-in-out infinite; }
.b1 { width: 620px; height: 620px; right: -160px; top: -200px; background: radial-gradient(circle at 30% 30%, #CFCCF3, var(--lav)); }
.b2 { width: 420px; height: 420px; left: -160px; bottom: -120px; background: radial-gradient(circle at 60% 40%, #FCDDEB, var(--pink)); animation-delay: -5s; }
.b3 { width: 300px; height: 300px; left: 38%; top: 8%; background: radial-gradient(circle, #FFE0EC, #F9C9DD); opacity: .55; animation-delay: -9s; }
@keyframes morph {
    0%, 100% { border-radius: 42% 58% 60% 40% / 45% 45% 55% 55%; transform: translate(0, 0) rotate(0); }
    33% { border-radius: 60% 40% 35% 65% / 55% 60% 40% 45%; transform: translate(30px, -20px) rotate(20deg); }
    66% { border-radius: 38% 62% 55% 45% / 40% 35% 65% 60%; transform: translate(-20px, 25px) rotate(-12deg); }
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1.05fr; gap: 30px; align-items: center; }
.ribbon {
    display: inline-block; background: var(--red); color: #fff; font-weight: 700; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase;
    padding: 9px 26px 9px 16px; clip-path: polygon(0 0, 100% 0, 94% 50%, 100% 100%, 0 100%); margin-bottom: 22px;
}
.hero-title { font-size: clamp(44px, 6.4vw, 86px); font-weight: 800; color: var(--ink); letter-spacing: -1.5px; line-height: .98; }
.hero-title .line { display: block; }
.hero-title .script {
    display: inline-block; position: relative; font-family: 'Pacifico', cursive; font-weight: 400; color: var(--red); letter-spacing: 0;
    font-size: .74em; line-height: 1.45; margin-top: 4px; text-shadow: 3px 3px 0 rgba(246, 206, 27, .7);
}
.swoosh { position: absolute; left: 4%; bottom: -4px; width: 94%; height: 22px; overflow: visible; }
.swoosh path { fill: none; stroke: var(--green); stroke-width: 6; stroke-linecap: round; stroke-dasharray: 320; stroke-dashoffset: 320; }
.hero .lead { font-size: 18px; max-width: 48ch; margin: 22px 0 30px; }
.hero .lead b { color: var(--ink); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-stats { display: flex; gap: 38px; margin-top: 42px; flex-wrap: wrap; }
.hero-stats b { display: block; font-family: 'Baloo 2'; font-size: 40px; font-weight: 800; color: var(--red); line-height: 1; }
.hero-stats span { font-size: 13.5px; font-weight: 500; color: var(--ink-soft); }

/* split-letter headline */
.word { display: inline-block; overflow: hidden; padding-bottom: .08em; vertical-align: top; }
.char { display: inline-block; transform: translateY(110%) rotate(8deg); opacity: 0; }
.ready .char { animation: charUp .9s var(--ease) forwards; animation-delay: calc(var(--i) * 30ms + .15s); }
@keyframes charUp { to { transform: none; opacity: 1; } }
.js [data-hero] { opacity: 0; transform: translateY(26px); }
.ready [data-hero] { animation: fadeUp .9s var(--ease) forwards; }
.ready [data-hero="1"] { animation-delay: .05s; }
.ready [data-hero="2"] { animation-delay: .55s; }
.ready [data-hero="3"] { animation-delay: .75s; }
.ready [data-hero="4"] { animation-delay: .9s; }
.ready [data-hero="5"] { animation-delay: 1.05s; }
.ready .swoosh path { animation: draw 1.1s var(--ease) 1.2s forwards; }
@keyframes fadeUp { to { opacity: 1; transform: none; } }
@keyframes draw { to { stroke-dashoffset: 0; } }

/* stage */
.hero-stage { position: relative; aspect-ratio: 1 / .92; width: 100%; }
.sun { position: absolute; left: 50%; top: 44%; width: 86%; aspect-ratio: 1; translate: -50% -50%; }
.sun::before { content: ''; position: absolute; inset: 14%; border-radius: 50%; background: radial-gradient(circle at 40% 35%, #F03A42, var(--red) 55%, var(--red-deep)); box-shadow: 0 30px 60px -20px rgba(168, 22, 29, .6), inset 0 -18px 40px rgba(0, 0, 0, .18); }
.rays {
    position: absolute; inset: 0; border-radius: 50%;
    background: repeating-conic-gradient(from 0deg, rgba(246, 206, 27, .7) 0 6deg, transparent 6deg 18deg);
    -webkit-mask: radial-gradient(circle, transparent 36%, #000 37%, #000 58%, transparent 70%);
    mask: radial-gradient(circle, transparent 36%, #000 37%, #000 58%, transparent 70%);
    animation: spin 40s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.podium { position: absolute; height: 9%; border-radius: 50%; background: linear-gradient(#fff, #EDE6F5); box-shadow: 0 16px 30px -12px rgba(90, 60, 120, .45), inset 0 -8px 0 #DCD3EA; }
.p-left { left: 2%; width: 36%; bottom: 7%; }
.p-mid { left: 30%; width: 40%; bottom: 1%; z-index: 1; }
.p-right { right: 2%; width: 36%; bottom: 7%; }
.hero-pack { position: absolute; z-index: 2; }
.js .hero-pack { opacity: 0; }
.hero-pack img { width: 100%; filter: drop-shadow(0 26px 22px rgba(45, 25, 80, .35)); }
.hero-pack.left { left: 3%; bottom: 12%; width: 33%; --r: -10deg; transform: rotate(var(--r)); }
.hero-pack.mid { left: 30%; width: 40%; z-index: 3; bottom: 6%; --r: 0deg; }
.hero-pack.right { right: 3%; bottom: 12%; width: 33%; --r: 9deg; transform: rotate(var(--r)); }
.hero-pack picture { display: block; animation: bob 5s ease-in-out infinite; }
.hero-pack.left picture { animation-delay: -1.5s; }
.hero-pack.right picture { animation-delay: -3s; }
.ready .hero-pack { animation: packDrop 1.2s var(--bounce) forwards; }
.ready .hero-pack.mid { animation-delay: .35s; }
.ready .hero-pack.left { animation-delay: .55s; }
.ready .hero-pack.right { animation-delay: .7s; }
@keyframes packDrop { from { opacity: 0; transform: translateY(-120px) rotate(calc(var(--r) * -2)) scale(.8); } to { opacity: 1; transform: rotate(var(--r)); } }
@keyframes bob { 0%, 100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-14px) rotate(1.5deg); } }
.parallax-layer { transition: translate .25s ease-out; }
.crumb { position: absolute; z-index: 4; width: 46px; height: 46px; animation: drift 7s ease-in-out infinite; filter: drop-shadow(0 6px 6px rgba(0, 0, 0, .15)); }
.c1 { left: 6%; top: 10%; width: 70px; rotate: -30deg; }
.c2 { left: 0; top: 48%; width: 30px; animation-delay: -2s; }
.c3 { right: 10%; top: 6%; width: 26px; animation-delay: -4s; }
.c4 { right: 0; top: 40%; width: 64px; animation-delay: -1s; }
.c5 { left: 24%; top: 0; width: 64px; rotate: 20deg; animation-delay: -3s; }
.c6 { right: 24%; top: -2%; width: 54px; rotate: 150deg; animation-delay: -5s; }
.c7 { left: 12%; bottom: 2%; width: 48px; animation-delay: -6s; }
@keyframes drift { 0%, 100% { transform: translate(0, 0) rotate(0); } 50% { transform: translate(8px, -18px) rotate(25deg); } }
.seal { position: absolute; right: 4%; top: 12%; z-index: 5; width: 104px; height: 104px; display: grid; place-items: center; filter: drop-shadow(0 10px 18px rgba(0, 0, 0, .2)); }
.seal svg { position: absolute; inset: 0; }
.seal text { font: 700 10px 'Poppins'; fill: var(--green); letter-spacing: 1px; }
.spin { transform-origin: center; transform-box: view-box; animation: spin 16s linear infinite; }
.seal span { font-size: 34px; position: relative; }

.scroll-cue { position: absolute; left: 50%; bottom: 96px; translate: -50% 0; z-index: 3; width: 28px; height: 46px; border: 2.5px solid var(--ink); border-radius: 20px; opacity: .6; }
.scroll-cue span { position: absolute; left: 50%; top: 8px; width: 5px; height: 9px; margin-left: -2.5px; border-radius: 3px; background: var(--red); animation: cue 1.8s ease-in-out infinite; }
@keyframes cue { 0% { transform: translateY(0); opacity: 1; } 80% { transform: translateY(16px); opacity: 0; } 100% { opacity: 0; } }
.wave { position: absolute; left: 0; bottom: -1px; width: 100%; height: 90px; z-index: 3; }
.wave path { fill: var(--cream); }

/* ---------- Marquee ---------- */
.marquee-zone { padding: 30px 0 70px; overflow: hidden; }
.marquee { overflow: hidden; padding: 16px 0; white-space: nowrap; }
.marquee.red { background: var(--red); color: #fff; transform: rotate(-2.4deg) scale(1.05); box-shadow: 0 16px 30px -18px rgba(168, 22, 29, .7); position: relative; z-index: 2; }
.marquee.yellow { background: var(--yellow); color: var(--green-deep); transform: rotate(1.8deg) scale(1.05); margin-top: -14px; }
.track { display: inline-flex; align-items: center; gap: 28px; animation: marquee 40s linear infinite; padding-left: 28px; }
.reverse .track { animation-direction: reverse; animation-duration: 34s; }
.marquee span { font-family: 'Baloo 2'; font-weight: 800; font-size: clamp(22px, 3vw, 34px); text-transform: uppercase; letter-spacing: .5px; }
.mstar { width: 22px; height: 22px; flex: none; color: var(--yellow); animation: spin 6s linear infinite; }
.yellow .mstar { color: var(--red); }
.marquee:hover .track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Reveal on scroll ---------- */
.js [data-reveal] { opacity: 0; transform: translateY(40px); transition: opacity .9s var(--ease), transform 1s var(--ease); }
.js [data-reveal="left"] { transform: translateX(-60px); }
.js [data-reveal="right"] { transform: translateX(60px); }
.js [data-reveal="zoom"] { transform: scale(.85); }
.js [data-reveal].in { opacity: 1; transform: none; }
.js [data-stagger] > * { opacity: 0; translate: 0 50px; scale: .96; transition: opacity .8s var(--ease), translate .9s var(--bounce), scale .9s var(--bounce), transform .45s var(--bounce), box-shadow .3s, border-color .3s, background .3s; }
.js [data-stagger].in > * { opacity: 1; translate: 0 0; scale: 1; }
[data-stagger].in > *:nth-child(2) { transition-delay: .12s, .12s, .12s, 0s, 0s, 0s, 0s; }
[data-stagger].in > *:nth-child(3) { transition-delay: .24s, .24s, .24s, 0s, 0s, 0s, 0s; }
[data-stagger].in > *:nth-child(4) { transition-delay: .36s, .36s, .36s, 0s, 0s, 0s, 0s; }

/* ---------- About ---------- */
.about { padding: 60px 0 100px; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.about-visual { position: relative; padding: 0 0 50px 30px; perspective: 1000px; }
.tilt-card { border-radius: var(--radius); overflow: hidden; box-shadow: 0 40px 70px -30px rgba(60, 20, 60, .5); transition: transform .2s ease-out; border: 6px solid #fff; }
.tilt-card img { width: 100%; }
.year-badge {
    position: absolute; left: 0; bottom: 0; z-index: 2; width: 150px; height: 150px; border-radius: 50%; background: var(--red); color: #fff;
    display: flex; flex-direction: column; align-items: center; justify-content: center; box-shadow: 0 20px 40px -14px rgba(168, 22, 29, .7);
    border: 5px solid #fff; animation: bob 4s ease-in-out infinite;
}
.year-badge b { font-family: 'Baloo 2'; font-size: 42px; line-height: 1; font-weight: 800; }
.year-badge small { font-size: 11px; text-transform: uppercase; letter-spacing: 2px; font-weight: 600; opacity: .9; }
.about-copy p { font-size: 16.5px; }
.about-copy b { color: var(--ink); }
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 80px; }
.pillar { background: #fff; border-radius: var(--radius); padding: 34px 30px; box-shadow: var(--shadow); position: relative; overflow: hidden; border: 1px solid var(--line); }
.pillar::after { content: ''; position: absolute; right: -40px; top: -40px; width: 120px; height: 120px; border-radius: 50%; background: var(--yellow-soft); transition: transform .6s var(--ease); z-index: 0; }
.pillar:hover { transform: translateY(-10px); box-shadow: 0 30px 50px -20px rgba(45, 25, 80, .4); }
.pillar:hover::after { transform: scale(5); }
.pillar > * { position: relative; z-index: 1; }
.pillar h3 { font-size: 26px; color: var(--red); margin: 14px 0 8px; }
.pillar p { margin: 0; }
.pillar ul { margin: 0; padding: 0; list-style: none; color: var(--ink-soft); }
.pillar li { padding-left: 20px; position: relative; }
.pillar li::before { content: '▸'; position: absolute; left: 0; color: #F29A0A; }
.draw { width: 64px; height: 64px; }
.draw circle, .draw path { fill: none; stroke: var(--ink); stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 200; stroke-dashoffset: 200; transition: stroke-dashoffset 1.8s var(--ease) .3s; }
.draw circle:first-child { stroke: #F29A0A; }
.draw .fill { fill: #F29A0A; stroke: none; }
.in .draw circle, .in .draw path, .no-js .draw * { stroke-dashoffset: 0; }

/* ---------- Spotlight ---------- */
.spotlight { height: calc(var(--n) * 40vh + 100vh); } /* 40vh of scrolling per range */
.spot-sticky { position: sticky; top: 0; height: 100vh; overflow: hidden; display: flex; align-items: center; background: var(--spot, var(--red)); transition: background .5s var(--ease); }
.spot-sticky::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 70% 50%, rgba(255, 255, 255, .22), transparent 60%); }
.spot-word {
    position: absolute; left: 50%; top: 50%; font-family: 'Pacifico', cursive; font-size: 28vw; line-height: 1;
    color: transparent; -webkit-text-stroke: 2px rgba(255, 255, 255, .18); white-space: nowrap; pointer-events: none;
    transform: translate(calc(-50% + var(--wx, 0px)), -55%);
}
.spot-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1.1fr; gap: 40px; align-items: center; color: #fff; }
.spot-texts { position: relative; min-height: 320px; }
.spot-text { position: absolute; inset: 0; opacity: 0; transform: translateY(40px); transition: opacity .4s var(--ease), transform .45s var(--ease); pointer-events: none; }
.spot-text.on { opacity: 1; transform: none; pointer-events: auto; }
.spot-text h2 { font-size: clamp(46px, 7vw, 96px); font-weight: 800; color: #fff; letter-spacing: -1px; }
.spot-text p { color: rgba(255, 255, 255, .9); font-size: 19px; margin: 10px 0 18px; }
.spot-text ul { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.spot-text li a { display: inline-block; color: #fff; text-decoration: none; background: rgba(255, 255, 255, .18); border: 1.5px solid rgba(255, 255, 255, .45); padding: 7px 16px; border-radius: 100px; font-weight: 600; font-size: 14.5px; transition: background .3s, color .3s, transform .35s var(--bounce); }
.spot-text li a:hover, .spot-text li a:focus-visible { background: #fff; color: var(--ink); transform: translateY(-3px); }
.spot-text li a::after { content: " →"; opacity: 0; margin-left: -8px; transition: opacity .3s, margin .3s; }
.spot-text li a:hover::after { opacity: 1; margin-left: 0; }
.spot-dots { display: flex; gap: 10px; margin-top: 30px; }
.spot-dots button { width: 12px; height: 12px; padding: 0; border: 0; cursor: pointer; border-radius: 12px; background: rgba(255, 255, 255, .4); transition: width .5s var(--ease), background .3s; }
.spot-dots button:hover { background: rgba(255, 255, 255, .75); }
.spot-dots button.on { width: 42px; background: #fff; }
.spot-stage { position: relative; height: min(70vh, 560px); }
.spot-ring { position: absolute; left: 50%; top: 50%; width: min(80%, 480px); aspect-ratio: 1; translate: -50% -50%; border-radius: 50%; border: 3px dashed rgba(255, 255, 255, .45); animation: spin 30s linear infinite; }
.spot-ring::after { content: ''; position: absolute; inset: 12%; border-radius: 50%; background: rgba(255, 255, 255, .14); }
.spot-packs { position: absolute; inset: 0; }
.sp { position: absolute; left: 30%; top: 50%; width: 40%; margin-top: -25%; opacity: 0; transition: transform .65s var(--bounce), opacity .35s; transform: translateY(120px) scale(.6) rotate(-20deg); }
.sp img { width: 100%; filter: drop-shadow(0 30px 30px rgba(0, 0, 0, .35)); }
.spot-packs.on .sp { opacity: 1; }
.spot-packs.on .sp-0 { transform: scale(1.05); z-index: 3; }
.spot-packs.on .sp-1 { transform: translateX(-62%) scale(.8) rotate(-12deg); transition-delay: .1s; }
.spot-packs.on .sp-2 { transform: translateX(62%) scale(.8) rotate(12deg); transition-delay: .18s; }
.spot-packs.n1.on .sp-0 { transform: scale(1.2) rotate(-4deg); }
.spot-packs.n2.on .sp-0 { transform: translateX(-32%) rotate(-7deg); }
.spot-packs.n2.on .sp-1 { transform: translateX(36%) scale(.95) rotate(8deg); }
.spot-packs.out .sp { opacity: 0; transform: translateY(-140px) scale(.6) rotate(20deg); transition-delay: 0s; }

/* ---------- Products ---------- */
.products { padding: 120px 0 80px; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 36px; }
.section-head .eyebrow { justify-content: center; }
.filters { position: relative; display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; margin: 0 auto 46px; background: #fff; padding: 6px; border-radius: 100px; width: fit-content; max-width: 100%; box-shadow: var(--shadow); border: 1px solid var(--line); }
.filter { position: relative; z-index: 1; border: 0; background: none; padding: 11px 22px; border-radius: 100px; font-weight: 600; font-size: 14.5px; cursor: pointer; color: var(--ink-soft); transition: color .3s; }
.filter.on { color: #fff; }
.filter-pill { position: absolute; z-index: 0; top: 0; left: 0; width: 0; height: 0; border-radius: 100px; background: var(--pill, var(--ink)); transition: transform .5s var(--bounce), width .5s var(--bounce), height .3s, background .4s; }
.grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.card {
    --c: var(--red); position: relative; display: flex; flex-direction: column; align-items: center; text-align: center;
    background: #fff; border: 1px solid var(--line); border-radius: 26px; padding: 26px 18px 22px; cursor: pointer; color: inherit;
    box-shadow: var(--shadow); overflow: hidden;
    transition: transform .25s ease-out, box-shadow .3s, opacity .4s var(--ease), scale .4s var(--ease), translate .6s var(--ease);
}
.card:hover { box-shadow: 0 30px 50px -22px rgba(45, 25, 80, .45); }
.card:focus-visible { outline: 3px solid var(--c); outline-offset: 3px; }
.card.hidden { display: none; }
.card.fading { opacity: 0; scale: .85; }
.card.entering { opacity: 0; scale: .85; translate: 0 30px; }
.card-blob { position: absolute; left: 50%; top: 22px; width: 190px; height: 190px; margin-left: -95px; border-radius: 42% 58% 60% 40% / 45% 45% 55% 55%; background: var(--c); opacity: .13; transition: opacity .4s; animation: morph 10s ease-in-out infinite; }
.card:hover .card-blob { opacity: .9; }
.card picture { position: relative; width: 78%; margin-bottom: 14px; transition: transform .6s var(--bounce); }
.card img { filter: drop-shadow(0 16px 14px rgba(45, 25, 80, .28)); }
.card:hover picture { transform: translateY(-14px) rotate(-5deg) scale(1.07); }
.card .tag, .modal .tag { position: relative; display: inline-block; background: var(--c); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 4px 12px; border-radius: 100px; margin-bottom: 8px; }
.card-name { position: relative; font-family: 'Baloo 2'; font-weight: 800; font-size: 21px; line-height: 1.15; }
.card-desc { position: relative; font-size: 13.5px; min-height: 60px; color: var(--ink-soft); margin: 6px 0 14px; line-height: 1.5; }
.card-foot { position: relative; margin-top: auto; display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.size { font-size: 12px; font-weight: 600; padding: 5px 12px; border-radius: 100px; background: var(--yellow-soft); color: #4B2E8A; }

/* ---------- Sizes ---------- */
.sizes { padding: 20px 0 110px; }
.sizes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.size-card { background: #fff; border-radius: var(--radius); padding: 38px 32px; border: 2px dashed #D9CFF1; text-align: center; }
.size-card:hover { transform: translateY(-8px) rotate(-1deg); border-color: var(--red); }
.size-card.hot { background: var(--green); border: 2px solid var(--green); color: #fff; }
.size-card.hot p, .size-card.hot h3 { color: #fff; }
.size-card.hot .size-num { color: var(--yellow); }
.size-num { font-family: 'Baloo 2'; font-weight: 800; color: var(--red); line-height: 1; }
.size-num b { font-size: 76px; }
.size-num small { font-size: 30px; margin-left: 4px; }
.size-card h3 { font-size: 26px; margin: 8px 0 10px; }
.size-card p { margin: 0; }

/* ---------- Promise ---------- */
.promise { background: var(--green); padding: 110px 0; overflow: hidden; }
.promise::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(-45deg, rgba(255, 255, 255, .035) 0 22px, transparent 22px 44px); }
.promise-grid { position: relative; display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: center; }
.promise-seal { position: relative; width: min(100%, 380px); aspect-ratio: 1; margin: auto; filter: drop-shadow(0 30px 40px rgba(0, 0, 0, .3)); }
.promise-seal svg { width: 100%; height: 100%; }
.promise-seal text { font: 700 15px 'Poppins'; fill: var(--red); letter-spacing: 2px; }
.promise-seal .thumb { position: absolute; left: 50%; top: 50%; translate: -50% -50%; font-size: 76px; animation: thumb 2.4s var(--bounce) infinite; }
@keyframes thumb { 0%, 100% { transform: rotate(0) scale(1); } 20% { transform: rotate(-14deg) scale(1.15); } 40% { transform: rotate(0) scale(1); } }
.promise-list { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 10px; }
.promise-list > div { background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .22); border-radius: 18px; padding: 22px; }
.promise-list > div:hover { background: rgba(255, 255, 255, .18); transform: translateY(-6px); }
.promise-list h3 { color: #fff; font-size: 20px; margin: 10px 0 4px; }
.promise-list p { color: rgba(255, 255, 255, .82); margin: 0; font-size: 14.5px; }
.p-ico { font-size: 30px; display: inline-block; }
.promise-list > div:hover .p-ico { animation: wiggle .6s ease; }
@keyframes wiggle { 25% { transform: rotate(-15deg); } 75% { transform: rotate(15deg); } }

/* ---------- Surprise slot ---------- */
.surprise { padding: 110px 0 60px; }
.surprise-box { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; background: linear-gradient(135deg, #F3EDFF, #FCE6F1); border-radius: 36px; padding: 56px; border: 3px solid #D9CFF1; position: relative; overflow: hidden; }
.surprise-box::after { content: ''; position: absolute; right: -80px; bottom: -80px; width: 260px; height: 260px; border-radius: 50%; background: rgba(215, 38, 46, .08); }
#slot-result { font-weight: 600; color: var(--ink); min-height: 52px; font-size: 17px; }
#slot-result b { color: var(--red); }
.slot { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; background: var(--red); padding: 16px; border-radius: 26px; box-shadow: inset 0 -8px 0 var(--red-deep), 0 30px 50px -20px rgba(168, 22, 29, .6); position: relative; z-index: 1; }
.reel { height: 230px; overflow: hidden; background: #fff; border-radius: 16px; position: relative; }
.reel::after { content: ''; position: absolute; inset: 0; pointer-events: none; box-shadow: inset 0 18px 18px -12px rgba(0, 0, 0, .28), inset 0 -18px 18px -12px rgba(0, 0, 0, .28); border-radius: inherit; }
.strip { will-change: transform; }
.strip img { height: 230px; width: 100%; object-fit: contain; padding: 18px 10px; }
.slot.win .reel { animation: winFlash .5s ease 3; }
@keyframes winFlash { 50% { box-shadow: 0 0 0 5px var(--yellow); } }

/* ---------- Brochure ---------- */
.brochure { padding: 60px 0 120px; }
.brochure-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: center; }
.brochure-stack { position: relative; aspect-ratio: 1.35; }
.brochure-stack .page { position: absolute; width: 82%; border-radius: 16px; overflow: hidden; border: 5px solid #fff; box-shadow: 0 30px 60px -24px rgba(40, 10, 60, .5); transition: transform .8s var(--bounce); }
.brochure-stack .p1 { left: 0; top: 0; transform: rotate(-5deg); z-index: 2; }
.brochure-stack .p2 { right: 0; bottom: 0; transform: rotate(6deg); }
.brochure-stack:hover .p1 { transform: rotate(-9deg) translate(-20px, -14px); }
.brochure-stack:hover .p2 { transform: rotate(10deg) translate(20px, 14px); }

/* ---------- Contact ---------- */
.contact { padding: 40px 0 130px; }
.contact-card { display: grid; grid-template-columns: 1fr 1.1fr; border-radius: 32px; overflow: hidden; box-shadow: 0 40px 80px -40px rgba(45, 25, 80, .5); background: #fff; }
.contact-info { background: linear-gradient(150deg, #E33A41 0%, var(--red) 45%, var(--red-deep) 100%); color: #fff; padding: 54px 46px; position: relative; overflow: hidden; }
.contact-info::after { content: ''; position: absolute; right: -90px; bottom: -90px; width: 260px; height: 260px; border-radius: 50%; background: rgba(255, 255, 255, .12); opacity: 1; animation: morph 12s ease-in-out infinite; }
.contact-info > * { position: relative; z-index: 1; }
.contact-info p { color: rgba(255, 255, 255, .88); }
.c-row { display: flex; gap: 14px; align-items: flex-start; margin-top: 18px; color: #fff; text-decoration: none; font-size: 15px; line-height: 1.55; }
.c-row svg { flex: none; width: 40px; height: 40px; padding: 10px; border-radius: 12px; background: rgba(255, 255, 255, .16); color: #fff; transition: transform .4s var(--bounce), background .3s, color .3s; }
.c-row:hover svg { transform: rotate(-12deg) scale(1.1); background: #fff; color: var(--red); }
.c-row a { color: inherit; text-decoration: none; }
.c-row a:hover, a.c-row:hover span { color: var(--yellow); }
.c-row span { padding-top: 8px; }
.contact-form { padding: 50px 46px; }
.contact-form h3 { font-size: 30px; margin-bottom: 22px; }
.field { position: relative; margin-bottom: 16px; }
.field input, .field textarea, .field select {
    width: 100%; font: inherit; font-size: 15.5px; padding: 24px 16px 8px; border: 2px solid var(--line); border-radius: 14px; background: var(--cream); color: var(--ink);
    transition: border-color .25s, box-shadow .25s, background .25s; outline: none; resize: vertical;
}
.field select { appearance: none; cursor: pointer; background-image: linear-gradient(45deg, transparent 50%, var(--ink) 50%), linear-gradient(-45deg, transparent 50%, var(--ink) 50%); background-position: calc(100% - 22px) 55%, calc(100% - 16px) 55%; background-size: 6px 6px; background-repeat: no-repeat; }
.field label { position: absolute; left: 18px; top: 16px; color: #8A7F9E; pointer-events: none; transition: transform .25s var(--ease), color .25s; transform-origin: 0 0; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--red); background: #fff; box-shadow: 0 0 0 5px rgba(215, 38, 46, .12); }
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label, .field label.fixed { transform: translateY(-10px) scale(.76); color: var(--red); font-weight: 600; }
.field.bad input { border-color: var(--red); animation: shake .4s; }
@keyframes shake { 25% { transform: translateX(-6px); } 75% { transform: translateX(6px); } }
.form-note { font-size: 13px; margin: 12px 0 0; }
.form-note.bad { color: var(--red); font-weight: 600; }
.map { margin-top: 34px; border-radius: 26px; overflow: hidden; box-shadow: var(--shadow); height: 340px; border: 5px solid #fff; }
.map iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ---------- Footer ---------- */
.footer { position: relative; background: var(--night); color: #CFCBE6; padding: 60px 0 0; margin-top: 60px; }
.wave.top { top: -89px; bottom: auto; }
.wave.top path { fill: var(--night); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer-grid .footer-logo { display: inline-block; width: auto; background: #fff; padding: 10px 14px 8px; border-radius: 14px; margin-bottom: 18px; box-shadow: 0 10px 24px -12px rgba(0, 0, 0, .6); transition: transform .4s var(--bounce); }
.footer-grid .footer-logo:hover { transform: rotate(-3deg) scale(1.05); }
.footer-logo img { width: 150px; height: auto; }
.footer p { color: #BDB8D8; max-width: 40ch; }
.footer h4 { color: #fff; font-size: 20px; margin-bottom: 14px; }
.footer-grid a, .footer-grid span { display: block; color: #CFCBE6; text-decoration: none; padding: 4px 0; font-size: 14.5px; transition: color .25s, transform .3s var(--ease); }
.footer-grid a:hover { color: var(--yellow); transform: translateX(6px); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .1); text-align: center; padding: 20px; font-size: 13px; }

/* ---------- Floating ---------- */
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 90; width: 60px; height: 60px; border-radius: 50%; background: #25D366; color: #fff; display: grid; place-items: center; box-shadow: 0 12px 26px -8px rgba(37, 211, 102, .8); transition: transform .4s var(--bounce); }
.wa-float::before { content: ''; position: absolute; inset: 0; border-radius: 50%; background: #25D366; animation: ping 2s ease-out infinite; z-index: -1; }
.wa-float svg { width: 32px; height: 32px; }
.wa-float:hover { transform: scale(1.12) rotate(-8deg); }
@keyframes ping { to { transform: scale(1.8); opacity: 0; } }
.to-top { position: fixed; right: 30px; bottom: 96px; z-index: 90; width: 44px; height: 44px; border-radius: 50%; border: 0; background: var(--red); color: #fff; font-size: 20px; cursor: pointer; opacity: 0; transform: translateY(20px); transition: opacity .3s, transform .4s var(--bounce); pointer-events: none; }
.to-top.show { opacity: 1; transform: none; pointer-events: auto; }

/* ---------- Modal ---------- */
.modal { border: 0; padding: 0; border-radius: 30px; width: min(880px, 100% - 32px); max-height: calc(100svh - 40px); background: #fff; color: var(--ink); box-shadow: 0 50px 100px -30px rgba(0, 0, 0, .6); overflow: auto; }
.modal::backdrop { background: rgba(34, 21, 15, .6); backdrop-filter: blur(6px); }
.modal[open] { animation: modalIn .6s var(--bounce); }
@keyframes modalIn { from { transform: translateY(60px) scale(.9); opacity: 0; } }
.modal-body { display: grid; grid-template-columns: 1fr 1.1fr; }
.modal-visual { position: relative; background: var(--c, var(--red)); display: grid; place-items: center; padding: 40px 30px; overflow: hidden; min-height: 380px; }
.modal-blob { position: absolute; width: 90%; aspect-ratio: 1; border-radius: 50%; background: repeating-conic-gradient(rgba(255, 255, 255, .18) 0 8deg, transparent 8deg 22deg); animation: spin 30s linear infinite; }
.modal-visual img { position: relative; width: 78%; filter: drop-shadow(0 30px 30px rgba(0, 0, 0, .35)); }
.modal[open] .modal-visual img { animation: packDrop 1s var(--bounce) both; --r: -4deg; }
.modal-copy { padding: 44px 40px; }
.modal-copy h3 { font-size: 40px; font-weight: 800; margin-bottom: 12px; }
.modal dl { margin: 18px 0 26px; }
.modal dl div { display: flex; justify-content: space-between; gap: 20px; padding: 10px 0; border-bottom: 1px dashed var(--line); font-size: 14.5px; }
.modal dt { color: var(--ink-soft); }
.modal dd { margin: 0; font-weight: 600; text-align: right; }
.modal-close { position: absolute; right: 14px; top: 12px; z-index: 3; width: 42px; height: 42px; border-radius: 50%; border: 0; background: #fff; font-size: 26px; line-height: 1; cursor: pointer; box-shadow: 0 6px 16px rgba(0, 0, 0, .15); transition: transform .4s var(--bounce); }
.modal-close:hover { transform: rotate(90deg); }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
    .grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
    .hero { padding-top: calc(var(--header) + 16px); }
    .hero-grid, .about-grid, .spot-grid, .promise-grid, .surprise-box, .brochure-grid, .contact-card, .modal-body { grid-template-columns: 1fr; }
    .hero-copy { text-align: center; }
    .hero-actions, .hero-stats { justify-content: center; }
    .hero .lead { margin-inline: auto; }
    .hero-stage { max-width: 520px; margin: 10px auto 0; }
    .scroll-cue { display: none; }
    .grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .pillars, .sizes-grid { grid-template-columns: 1fr; }
    .about-grid { gap: 40px; }
    .spot-grid { gap: 0; text-align: center; }
    .spot-copy { order: 2; }
    .spot-copy .eyebrow { display: none; }
    .spot-texts { min-height: 230px; }
    .spot-text ul, .spot-dots { justify-content: center; }
    .spot-text p { font-size: 16px; }
    .spot-stage { height: 42vh; width: min(100%, 50vh); margin-inline: auto; }
    .spot-word { font-size: 44vw; }
    .surprise-box { padding: 34px 22px; }
    .contact-info, .contact-form { padding: 38px 26px; }
    .footer-grid { grid-template-columns: 1fr; }
    .modal-visual { min-height: 260px; }
    .modal-visual img { width: 50%; }
    .modal-copy { padding: 28px 24px; }
    .modal-copy h3 { font-size: 30px; }
}
@media (max-width: 560px) {
    body { font-size: 15px; }
    .wrap { width: calc(100% - 32px); }
    .filters { border-radius: 22px; }
    .filter { padding: 9px 14px; font-size: 13.5px; }
    .card { padding: 18px 10px 16px; border-radius: 20px; }
    .card-name { font-size: 17px; }
    .card-desc { display: none; }
    .card-blob { width: 120px; height: 120px; margin-left: -60px; }
    .reel { height: 150px; }
    .strip img { height: 150px; padding: 10px 6px; }
    .hero-stats { gap: 24px; }
    .hero-stats b { font-size: 32px; }
    .promise-list { grid-template-columns: 1fr; }
    .size-num b { font-size: 60px; }
    .spot-text li a { font-size: 13px; padding: 5px 12px; }
    .seal { width: 80px; height: 80px; }
    .seal span { font-size: 26px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
    .loader { display: none; }
}

/* ---------- Enquiry form states ---------- */
.contact-form { position: relative; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.spinner { display: none; width: 18px; height: 18px; border-radius: 50%; border: 3px solid rgba(255, 255, 255, .4); border-top-color: #fff; animation: spin .8s linear infinite; }
.btn.busy { pointer-events: none; opacity: .85; }
.btn.busy .spinner { display: inline-block; }
.form-done { position: absolute; inset: 0; z-index: 2; background: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 40px; animation: fade .5s ease; }
.form-done[hidden] { display: none; }
.form-done svg { width: 84px; height: 84px; margin-bottom: 14px; }
.form-done circle { fill: none; stroke: var(--green); stroke-width: 3; stroke-dasharray: 160; stroke-dashoffset: 160; animation: draw .8s var(--ease) forwards; }
.form-done path { fill: none; stroke: var(--green); stroke-width: 4; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 40; stroke-dashoffset: 40; animation: draw .5s var(--ease) .6s forwards; }
.form-done h3 { font-size: 32px; color: var(--green); margin-bottom: 8px; }
@keyframes fade { from { opacity: 0; } }

/* ---------- FAQ (home + product pages) ---------- */
.faq { padding: 110px 0 90px; }
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px; align-items: start; }
.faq-head { position: sticky; top: 100px; }
.faq-head a { color: var(--red); font-weight: 600; }
.faq-list { display: grid; gap: 14px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); overflow: hidden; transition: border-color .3s, box-shadow .3s; }
.faq-item[open] { border-color: var(--red); box-shadow: 0 22px 44px -22px rgba(215, 38, 46, .45); }
.faq-item summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 20px 24px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary h3 { font-size: 19px; font-weight: 700; line-height: 1.3; }
.faq-item summary:hover h3 { color: var(--red); }
.faq-icon { flex: none; position: relative; width: 34px; height: 34px; border-radius: 50%; background: var(--yellow-soft); transition: background .3s, transform .5s var(--bounce); }
.faq-icon::before, .faq-icon::after { content: ''; position: absolute; left: 50%; top: 50%; width: 14px; height: 2.5px; margin: -1.25px 0 0 -7px; border-radius: 2px; background: var(--ink); transition: transform .4s var(--ease), background .3s; }
.faq-icon::after { transform: rotate(90deg); }
.faq-item[open] .faq-icon { background: var(--red); transform: rotate(180deg); }
.faq-item[open] .faq-icon::before, .faq-item[open] .faq-icon::after { background: #fff; }
.faq-item[open] .faq-icon::after { transform: rotate(0); }
.faq-a { padding: 0 24px 20px; }
.faq-a p { margin: 0; font-size: 15.5px; }
.faq-item[open] .faq-a { animation: faqIn .45s var(--ease); }
@keyframes faqIn { from { opacity: 0; transform: translateY(-8px); } }

/* ---------- Product page ---------- */
.p-hero {
    min-height: 88svh; padding: calc(var(--header) + 30px) 0 130px; overflow: hidden; display: flex; align-items: center;
    background: linear-gradient(135deg, #F1E9FB 0%, #FCE8F2 45%, #E8ECFB 100%);
}
.p-hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; }
.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: 14px; margin-bottom: 18px; color: var(--ink-soft); }
.crumbs a { text-decoration: none; font-weight: 600; }
.crumbs a:hover { color: var(--red); }
.crumbs [aria-current] { color: var(--red); font-weight: 600; }
.product-page .tag { display: inline-block; background: var(--c); color: #fff; font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 5px 14px; border-radius: 100px; margin-bottom: 14px; }
.p-title { font-size: clamp(42px, 6vw, 80px); font-weight: 800; letter-spacing: -1.2px; line-height: 1; }
.p-title .line { display: block; }
.p-title .script { display: inline-block; position: relative; font-family: 'Pacifico', cursive; font-weight: 400; color: var(--red); font-size: .6em; line-height: 1.5; letter-spacing: 0; text-shadow: 3px 3px 0 rgba(246, 206, 27, .7); }
.p-hero .lead { font-size: 18px; max-width: 50ch; margin: 18px 0 22px; }
.p-facts { margin: 0 0 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; max-width: 560px; }
.p-facts div { background: rgba(255, 255, 255, .7); border: 1px solid rgba(255, 255, 255, .9); border-radius: 14px; padding: 10px 14px; backdrop-filter: blur(4px); }
.p-facts dt { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--ink-soft); font-weight: 600; }
.p-facts dd { margin: 2px 0 0; font-weight: 700; font-size: 15px; }
.p-stage { position: relative; aspect-ratio: 1; width: 100%; max-width: 560px; margin-inline: auto; }
.p-stage .sun::before { background: radial-gradient(circle at 40% 35%, color-mix(in srgb, var(--c) 75%, #fff), var(--c) 55%, color-mix(in srgb, var(--c) 70%, #000)); }
.p-stage .hero-pack.mid { left: 27%; width: 46%; bottom: 10%; }
.p-stage .p-mid { left: 22%; width: 56%; bottom: 5%; }
.related { padding: 40px 0 100px; }
.related .grid .card { color: inherit; text-decoration: none; }
.notfound { min-height: 70vh; display: grid; place-items: center; text-align: center; padding: calc(var(--header) + 60px) 0 80px; }
.notfound h1 { font-size: clamp(36px, 5vw, 60px); margin-bottom: 12px; }
a.card { text-decoration: none; }
.modal-copy > .btn { margin: 0 10px 10px 0; }

@media (max-width: 900px) {
    .faq-grid, .p-hero-grid { grid-template-columns: 1fr; gap: 30px; }
    .faq-head { position: static; }
    .p-copy { text-align: center; }
    .crumbs, .p-hero .hero-actions { justify-content: center; }
    .p-facts { margin-inline: auto; text-align: left; }
    .p-hero .lead { margin-inline: auto; }
    .p-stage { max-width: 420px; }
}
@media (max-width: 560px) {
    .p-facts { grid-template-columns: 1fr; }
    .faq-item summary { padding: 16px 18px; }
    .faq-item summary h3 { font-size: 17px; }

}
@media (max-width: 560px) {
    .p-title .script { font-size: .85em; }
    .p-title .swoosh { bottom: -10px; }
}

/* ---------- Accessibility ---------- */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
/* category tags: darkened brand colour so small white text passes WCAG AA */
.card .tag, .modal .tag, .product-page .tag { background: color-mix(in srgb, var(--c) 62%, #000); }
.modal { --c: #D7262E; }
.contact-info .eyebrow { color: #fff; }
