:root {
  --bg: #0E0E10;
  --bg-2: #16161A;
  --bg-3: #1F1F25;
  --ink: #F4F2EE;
  --ink-2: #B7B5B0;
  --ink-3: #7A7773;
  --line: rgba(244, 242, 238, 0.10);
  --line-2: rgba(244, 242, 238, 0.20);
  --accent: #FF5A1F;
  --accent-2: #FFB347;
  --radius: 18px;
  --radius-s: 10px;
  --shadow: 0 30px 60px -20px rgba(0,0,0,0.55), 0 12px 24px -12px rgba(0,0,0,0.45);
  --ease: cubic-bezier(.2,.7,.2,1);
  --container: 1240px;
  --gutter: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }

h1, h2, h3, h4 {
  font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0 0 0.5em;
  overflow-wrap: break-word;
  word-break: break-word;
}
h1 { font-size: clamp(2.4rem, 6.5vw, 5.4rem); line-height: 1.02; letter-spacing: -0.035em; }
h2 { font-size: clamp(1.8rem, 3.8vw, 3.2rem); line-height: 1.08; letter-spacing: -0.025em; }
h3 { font-size: clamp(1.2rem, 1.8vw, 1.5rem); line-height: 1.2; }
p { margin: 0 0 1em; color: var(--ink-2); }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
button, a { touch-action: manipulation; -webkit-tap-highlight-color: transparent; -webkit-touch-callout: none; -webkit-user-select: none; user-select: none; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.eyebrow { font-family: 'Space Grotesk', sans-serif; text-transform: uppercase; letter-spacing: 0.22em; font-size: 0.74rem; color: var(--ink-3); display: inline-flex; align-items: center; gap: 10px; margin-bottom: 22px; }
.eyebrow::before { content: ''; width: 0; height: 0; border-style: solid; border-width: 5px 0 5px 8px; border-color: transparent transparent transparent var(--accent); }
.lead { font-size: clamp(1.05rem, 1.4vw, 1.25rem); color: var(--ink-2); max-width: 64ch; }

.btn { position: relative; display: inline-flex; align-items: center; gap: 14px; padding: 18px 28px; border-radius: 100px; background: var(--ink); color: var(--bg); font-weight: 500; font-size: 0.95rem; letter-spacing: 0.01em; transition: transform .4s var(--ease), background .3s var(--ease), color .3s var(--ease); overflow: hidden; }
.btn .arrow { width: 16px; height: 16px; transition: transform .4s var(--ease); }
.btn:hover { background: var(--accent); color: var(--bg); transform: translateY(-2px); }
.btn:hover .arrow { transform: translate(4px, -4px) rotate(0deg); }
.btn--ghost { flex-shrink: 0; background: transparent; color: var(--ink); border: 1px solid var(--line-2); transition: transform .4s var(--ease), background .3s var(--ease), border-color .3s var(--ease); }
.btn--ghost:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.btn--accent { background: var(--accent); color: #1a0d04; }
.btn--accent:hover { background: var(--accent-2); }

/* HEADER */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 50; padding: 20px 0; transition: background .35s var(--ease), backdrop-filter .35s var(--ease), padding .35s var(--ease); }
.header.is-scrolled { background: rgba(14, 14, 16, 0.75); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); padding: 14px 0; border-bottom: 1px solid var(--line); }
.header__row { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-family: 'Space Grotesk', sans-serif; font-weight: 500; font-size: 1.05rem; letter-spacing: -0.01em; }
.brand__mark { width: 36px; height: 36px; }
.brand__name { line-height: 1; }
.brand__name small { display: block; font-size: 0.66rem; font-weight: 400; color: var(--ink-3); letter-spacing: 0.18em; text-transform: uppercase; margin-top: 4px; }
.nav { display: flex; align-items: center; gap: 36px; }
.nav a { position: relative; font-size: 0.95rem; color: var(--ink-2); transition: color .25s var(--ease); }
.nav a::after { content: ''; position: absolute; left: 0; bottom: -6px; height: 1px; width: 0; background: var(--accent); transition: width .35s var(--ease); }
.nav a:hover, .nav a.is-active { color: var(--ink); }
.nav a.btn--ghost:hover { color: var(--bg); }
.nav a:hover::after, .nav a.is-active::after { width: 100%; }
.header__right { display: flex; align-items: center; gap: 18px; }
.burger { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.burger span { width: 22px; height: 1.5px; background: var(--ink); transition: transform .35s var(--ease), opacity .25s var(--ease); }
.burger.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* HERO */
.hero { position: relative; min-height: 100vh; padding: 160px 0 120px; display: flex; align-items: flex-end; overflow: hidden; background-color: var(--bg); }
.hero__bg { position: absolute; inset: 0; background-image: url('/assets/img/hero/hero-bg.avif'); background-size: cover; background-position: center; transform: scale(1.08); transition: transform 8s var(--ease); }
.hero.is-ready .hero__bg { transform: scale(1.0); }
.hero__veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(14,14,16,0.55) 0%, rgba(14,14,16,0.35) 35%, rgba(14,14,16,0.92) 100%); }
.hero__grain { position: absolute; inset: 0; opacity: 0.06; mix-blend-mode: overlay; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence baseFrequency='0.9' numOctaves='2'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>"); pointer-events: none; }
.hero__inner { position: relative; width: 100%; }
.hero__meta { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; margin-bottom: 40px; color: var(--ink-2); font-size: 0.85rem; letter-spacing: 0.06em; }
.hero__meta span { display: inline-flex; align-items: center; gap: 10px; }
.hero__meta .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 0 rgba(255,90,31,0.7); animation: pulse 2.4s var(--ease) infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(255,90,31,0.7);} 70% { box-shadow: 0 0 0 14px rgba(255,90,31,0);} 100% { box-shadow: 0 0 0 0 rgba(255,90,31,0);} }
.hero__title { max-width: 22ch; }
.hero__title em { font-style: normal; color: var(--accent-2); }
.hero__sub { max-width: 56ch; margin: 28px 0 38px; color: var(--ink-2); font-size: clamp(1.05rem, 1.4vw, 1.2rem); }
.hero__row { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; }
.scroll-cue { position: absolute; right: var(--gutter); bottom: 30px; display: inline-flex; align-items: center; gap: 10px; color: var(--ink-3); font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; writing-mode: vertical-rl; transform: rotate(180deg); }
.scroll-cue::after { content: ''; display: block; width: 1px; height: 60px; background: linear-gradient(180deg, var(--accent), transparent); animation: scrollLine 2.2s var(--ease) infinite; }
@keyframes scrollLine { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* SECTION FOUNDATION */
section { padding: clamp(80px, 12vw, 160px) 0; position: relative; }
.section__head { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: end; margin-bottom: 80px; }
.section__head h2 { max-width: 14ch; }
.section__head .lead { max-width: 52ch; }

/* MARQUEE */
.marquee { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 22px 0; overflow: hidden; }
.marquee__track { display: flex; gap: 60px; white-space: nowrap; animation: scroll-x 38s linear infinite; }
.marquee__track span { font-family: 'Space Grotesk', sans-serif; font-size: clamp(1.1rem, 1.5vw, 1.6rem); color: var(--ink); letter-spacing: 0.02em; display: inline-flex; align-items: center; gap: 60px; }
.marquee__track span::after { content: '◆'; color: var(--accent); }
@keyframes scroll-x { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ABOUT INTRO */
.intro { background: var(--bg); }
.intro__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(40px, 6vw, 100px); align-items: center; }
.intro__media { position: relative; aspect-ratio: 4/5; border-radius: var(--radius); overflow: hidden; background: var(--bg-3); }
.intro__media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(14,14,16,0.6)); }
.intro__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.8s var(--ease); }
.intro__media:hover img { transform: scale(1.04); }
.intro__caption { position: absolute; left: 24px; bottom: 24px; z-index: 2; color: var(--ink); font-size: 0.85rem; letter-spacing: 0.06em; }
.intro__list { margin-top: 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 30px; }
.intro__list li { list-style: none; display: flex; align-items: center; gap: 14px; padding: 18px 0; border-top: 1px solid var(--line); }
.intro__list li svg { width: 22px; height: 22px; color: var(--accent); flex-shrink: 0; }

/* COLLECTION */
.collection { background: var(--bg); }
.collection__grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px; }
.product { grid-column: span 4; position: relative; border-radius: var(--radius); overflow: hidden; background: var(--bg-2); transition: transform .6s var(--ease); }
.product:nth-child(1), .product:nth-child(4) { grid-column: span 5; }
.product:nth-child(2), .product:nth-child(5) { grid-column: span 4; }
.product:nth-child(3) { grid-column: span 3; }

/* COLLECTION SLOT (partner-b) — two-column layout: head left, slot right */
.collection--slot .container { display: grid; grid-template-columns: minmax(260px, 1fr) 2fr; gap: clamp(20px, 6vw, 40px); align-items: start; }
.collection--slot .section__head { display: block; grid-column: 1; gap: 0; margin: 0; position: sticky; top: 110px; }
.collection--slot .section__head h2 { max-width: 14ch; }
.collection--slot .section__head .lead { margin-top: 24px; max-width: 40ch; }
.collection--slot > .container > .slot,
.collection--slot > .container > .slot__note { grid-column: 2; max-width: 100%; margin-left: 0; margin-right: 0; }
.product__media { position: relative; aspect-ratio: 4/5; overflow: hidden; background: var(--bg-3); }
.product__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease), filter .6s var(--ease); filter: saturate(0.95); }
.product:hover .product__media img { transform: scale(1.06); filter: saturate(1.1); }
.product__num { position: absolute; top: 22px; left: 22px; font-family: 'Space Grotesk', sans-serif; font-size: 0.78rem; color: var(--ink); letter-spacing: 0.18em; text-transform: uppercase; z-index: 2; mix-blend-mode: difference; }
.product__body { padding: 26px 24px 30px; display: flex; flex-direction: column; gap: 8px; }
.product__title { font-family: 'Space Grotesk', sans-serif; font-size: 1.3rem; letter-spacing: -0.02em; }
.product__desc { color: var(--ink-2); font-size: 0.95rem; }
.product__tag { display: inline-block; margin-top: 12px; padding: 6px 12px; border-radius: 100px; border: 1px solid var(--line-2); font-size: 0.78rem; color: var(--ink-2); width: fit-content; }
.collection__note { margin-top: 50px; padding-top: 30px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 24px; align-items: center; color: var(--ink-3); font-size: 0.92rem; }

/* WHY */
.why { background: var(--bg); }
.why__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 100px); align-items: stretch; }
.why__copy h2 { max-width: 14ch; }
.why__list { margin-top: 30px; display: flex; flex-direction: column; gap: 4px; }
.why__list li { list-style: none; display: grid; grid-template-columns: 80px 1fr; gap: 28px; padding: 28px 0; border-top: 1px solid var(--line); align-items: start; }
.why__list li:last-child { border-bottom: 1px solid var(--line); }
.why__list .num { font-family: 'Space Grotesk', sans-serif; font-size: 1rem; color: var(--accent); letter-spacing: 0.1em; }
.why__list h3 { margin-bottom: 6px; }
.why__list p { margin: 0; font-size: 0.95rem; }
.why__media { aspect-ratio: 4/5; border-radius: var(--radius); overflow: hidden; background: var(--bg-3); position: relative; }
.why__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.6s var(--ease); }
.why__media:hover img { transform: scale(1.05); }

/* EVENT */
.event { background: var(--bg-2); }
.event__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.event__card { padding: clamp(28px, 4vw, 50px); border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(180deg, var(--bg-3), var(--bg-2)); }
.event__date { font-family: 'Space Grotesk', sans-serif; font-size: clamp(2.4rem, 5vw, 3.6rem); letter-spacing: -0.02em; color: var(--ink); line-height: 1; margin-bottom: 14px; }
.event__date small { display: block; font-size: 0.78rem; font-weight: 400; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-3); margin-top: 14px; }
.event__details { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin: 30px 0 36px; }
.event__details div { border-top: 1px solid var(--line); padding-top: 16px; }
.event__details span { display: block; font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 8px; }
.event__details strong { font-weight: 500; color: var(--ink); font-size: 1.02rem; }
.event__map { aspect-ratio: 4/3; border-radius: var(--radius); overflow: hidden; background: var(--bg-3); position: relative; border: 1px solid var(--line); }
.event__map iframe { display: block; width: 100%; height: 100%; border: 0; filter: invert(0.92) hue-rotate(180deg) saturate(0.55) brightness(0.95); transition: filter .4s var(--ease); }
.event__map:hover iframe { filter: invert(0.88) hue-rotate(180deg) saturate(0.8) brightness(1); }

/* FAQ */
.faq { background: var(--bg); }
.faq__list { display: flex; flex-direction: column; gap: 4px; }
.faq__item { border-top: 1px solid var(--line); padding: 26px 0; cursor: pointer; transition: padding .35s var(--ease); }
.faq__item:last-child { border-bottom: 1px solid var(--line); }
.faq__q { display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.faq__q h3 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(1.1rem, 1.6vw, 1.4rem); margin: 0; transition: color .25s var(--ease); }
.faq__icon { width: 36px; height: 36px; flex-shrink: 0; border-radius: 50%; border: 1px solid var(--line-2); display: flex; align-items: center; justify-content: center; transition: background .35s var(--ease), border-color .35s var(--ease), transform .45s var(--ease); }
.faq__icon::before, .faq__icon::after { content: ''; position: absolute; width: 12px; height: 1.5px; background: var(--ink); transition: transform .45s var(--ease), background .35s var(--ease); }
.faq__icon { position: relative; }
.faq__icon::after { transform: rotate(90deg); }
.faq__item.is-open .faq__icon { background: var(--accent); border-color: var(--accent); transform: rotate(45deg); }
.faq__item.is-open .faq__icon::before, .faq__item.is-open .faq__icon::after { background: var(--bg); }
.faq__item.is-open .faq__q h3 { color: var(--accent-2); }
.faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .55s var(--ease), padding .35s var(--ease), opacity .35s var(--ease); opacity: 0; padding-top: 0; }
.faq__a > * { overflow: hidden; min-height: 0; }
.faq__item.is-open .faq__a { grid-template-rows: 1fr; padding-top: 16px; opacity: 1; }
.faq__a p { max-width: 70ch; margin: 0; }

/* CHARITY */
.charity { background: var(--bg-2); overflow: hidden; }
.charity__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.charity__media { aspect-ratio: 4/3; border-radius: var(--radius); overflow: hidden; background: var(--bg-3); position: relative; }
.charity__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.6s var(--ease); }
.charity__media:hover img { transform: scale(1.05); }
.charity__quote { margin: 0 0 30px; font-family: 'Space Grotesk', sans-serif; font-size: clamp(1.5rem, 2.5vw, 2.1rem); line-height: 1.25; letter-spacing: -0.02em; color: var(--ink); }
.charity__quote span { color: var(--accent-2); }

/* FINAL */
.final { background: var(--bg); text-align: center; padding-top: clamp(120px, 14vw, 200px); padding-bottom: clamp(120px, 14vw, 200px); }
.final h2 { font-size: clamp(2.4rem, 6vw, 5rem); max-width: 16ch; margin: 0 auto 30px; }
.final h2 em { font-style: italic; color: var(--accent-2); }
.final p { max-width: 50ch; margin: 0 auto 40px; }
.subscribe { display: flex; gap: 12px; max-width: 520px; margin: 0 auto; padding: 8px; background: var(--bg-3); border: 1px solid var(--line); border-radius: 100px; }
.subscribe input { flex: 1; background: transparent; border: 0; outline: none; padding: 14px 22px; color: var(--ink); font: inherit; }
.subscribe input::placeholder { color: var(--ink-3); }
.subscribe button { padding: 14px 24px; border-radius: 100px; background: var(--accent); color: #1a0d04; font-weight: 500; transition: background .3s var(--ease), transform .3s var(--ease); }
.subscribe button:hover { background: var(--accent-2); transform: translateX(2px); }

/* FOOTER */
.footer { margin-top: auto; background: var(--bg); border-top: 1px solid var(--line); padding: 80px 0 40px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 48px; padding-bottom: 60px; }
.footer__col h4 { font-family: 'Space Grotesk', sans-serif; font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 22px; font-weight: 500; }
.footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer__col a { color: var(--ink-2); transition: color .25s var(--ease); }
.footer__col a:hover { color: var(--accent); }
.footer__brand p { color: var(--ink-2); margin: 16px 0 0; font-size: 0.95rem; max-width: 36ch; }
.footer__bottom { display: flex; justify-content: space-between; gap: 24px; padding-top: 30px; border-top: 1px solid var(--line); color: var(--ink-3); font-size: 0.85rem; }
.footer__social { display: flex; gap: 14px; }
.footer__social a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line); display: inline-flex; align-items: center; justify-content: center; transition: background .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease); color: var(--ink-2); }
.footer__social a:hover { background: var(--accent); color: var(--bg); border-color: var(--accent); }
.footer__social svg { width: 18px; height: 18px; }

/* COOKIE */
.cookie { position: fixed; left: 24px; right: 24px; bottom: 24px; z-index: 90; padding: 22px 26px; background: var(--bg-2); border: 1px solid var(--line-2); border-radius: var(--radius); display: flex; gap: 24px; align-items: center; justify-content: space-between; max-width: 720px; margin-left: auto; box-shadow: var(--shadow); transform: translateY(140%); transition: transform .6s var(--ease); }
.cookie.is-shown { transform: translateY(0); }
.cookie p { margin: 0; color: var(--ink-2); font-size: 0.92rem; }
.cookie__btns { display: flex; gap: 10px; flex-shrink: 0; }
.cookie__btns button { padding: 10px 18px; border-radius: 100px; font-size: 0.88rem; transition: background .3s var(--ease), color .3s var(--ease); }
.cookie__accept { background: var(--accent); color: #1a0d04; }
.cookie__reject { background: transparent; border: 1px solid var(--line-2); color: var(--ink-2); }
.cookie__accept:hover { background: var(--accent-2); }
.cookie__reject:hover { background: var(--bg-3); color: var(--ink); }

/* NOTIFICATION */
.notify { position: fixed; top: 24px; left: 50%; transform: translate(-50%, -200%); z-index: 100; padding: 14px 24px; background: var(--accent); color: #1a0d04; border-radius: 100px; font-size: 0.95rem; font-weight: 500; transition: transform .55s var(--ease), opacity .35s var(--ease), visibility .35s var(--ease); box-shadow: var(--shadow); opacity: 0; visibility: hidden; pointer-events: none; }
.notify.is-shown { transform: translate(-50%, 0); opacity: 1; visibility: visible; pointer-events: auto; }
.notify:empty { display: none; }

/* SUPPORT CHAT */
.support { position: fixed; right: 24px; bottom: 24px; z-index: 80; }
.support__toggle { width: 60px; height: 60px; border-radius: 50%; background: var(--accent); color: #1a0d04; display: inline-flex; align-items: center; justify-content: center; box-shadow: var(--shadow); transition: transform .35s var(--ease), background .3s var(--ease); }
.support__toggle:hover { transform: scale(1.08); background: var(--accent-2); }
.support__toggle svg { width: 26px; height: 26px; }
.support__panel { position: absolute; bottom: 76px; right: 0; width: min(360px, calc(100vw - 48px)); background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transform-origin: bottom right; transform: scale(.92) translateY(8px); opacity: 0; pointer-events: none; transition: transform .35s var(--ease), opacity .3s var(--ease); box-shadow: var(--shadow); }
.support__panel.is-open { transform: scale(1) translateY(0); opacity: 1; pointer-events: auto; }
.support__header { padding: 18px 22px; background: var(--bg-3); display: flex; align-items: center; gap: 12px; border-bottom: 1px solid var(--line); }
.support__header strong { font-family: 'Space Grotesk', sans-serif; font-size: 1rem; }
.support__header small { display: block; color: var(--ink-3); font-size: 0.78rem; }
.support__avatar { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: var(--bg); display: inline-flex; align-items: center; justify-content: center; font-family: 'Space Grotesk', sans-serif; font-weight: 500; flex-shrink: 0; }
.support__body { padding: 22px; max-height: 340px; overflow-y: auto; display: flex; flex-direction: column; gap: 14px; }
.support__msg { background: var(--bg-3); padding: 12px 16px; border-radius: 14px 14px 14px 4px; font-size: 0.92rem; max-width: 80%; }
.support__msg.user { background: var(--accent); color: #1a0d04; align-self: flex-end; border-radius: 14px 14px 4px 14px; }
.support__form { display: flex; gap: 10px; padding: 16px; border-top: 1px solid var(--line); background: var(--bg-3); }
.support__form input { flex: 1; background: var(--bg); border: 1px solid var(--line); border-radius: 100px; padding: 10px 16px; color: var(--ink); outline: none; font: inherit; }
.support__form button { padding: 0 16px; border-radius: 100px; background: var(--accent); color: var(--bg); font-size: 0.85rem; font-weight: 500; }

/* PAGE-SPECIFIC: PARTNERS */
.partner-hero { padding: 220px 0 80px; position: relative; overflow: hidden; }
.partner-hero__bg { position: absolute; inset: 0; background-image: url('/assets/img/sections/partner-bg.avif'); background-size: cover; background-position: center; opacity: 0.4; }
.partner-hero__veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(14,14,16,0.65), rgba(14,14,16,0.92)); }
.partner-hero__inner { position: relative; }
.partners-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.partner-card { padding: 26px; background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); transition: transform .5s var(--ease), border-color .35s var(--ease); position: relative; display: flex; flex-direction: column; gap: 12px; }
.partner-card:hover { transform: translateY(-6px); border-color: var(--accent); }
.partner-card__rank { font-family: 'Space Grotesk', sans-serif; font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); }
.partner-card__logo { width: 100%; padding: 0; border: 0; border-radius: 0; background: none; display: flex; align-items: center; justify-content: flex-start; }
.partner-card__logo img { width: 100%; height: auto; max-height: 30px; object-fit: contain; object-position: left center; }
.partner-card__name { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.partner-card__rate { display: flex; align-items: baseline; gap: 8px; }
.partner-card__rate strong { font-family: 'Space Grotesk', sans-serif; font-size: 2.2rem; line-height: 1; }
.partner-card__rate span { color: var(--ink-3); font-size: 0.82rem; letter-spacing: 0.14em; }
.partner-card ul { list-style: none; padding: 0; margin: 0 0 8px; display: flex; flex-direction: column; gap: 6px; color: var(--ink-2); font-size: 0.76rem; line-height: 1.35; }
.partner-card ul li { display: flex; gap: 10px; align-items: flex-start; }
.partner-card ul li svg { width: 12px; height: 12px; color: var(--accent); flex-shrink: 0; margin-top: 3px; }
.partner-card__bonus { margin: auto 0 12px; padding: 0; color: var(--accent-2); font-size: 0.78rem; line-height: 1.3; }
.partner-card .btn { justify-content: center; }
.articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.article-card { padding: 30px; background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); transition: transform .5s var(--ease), border-color .35s var(--ease); }
.article-card:hover { transform: translateY(-4px); border-color: var(--line-2); }
.article-card .meta { font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 18px; }
.article-card h3 { font-family: 'Space Grotesk', sans-serif; font-size: 1.4rem; line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 14px; }
.article-card p { font-size: 0.95rem; }
.help-logos { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; align-items: stretch; }
.help-logo { padding: 26px 20px; background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius-s); display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; transition: background .3s var(--ease), border-color .3s var(--ease), transform .35s var(--ease); }
.help-logo:hover { background: var(--bg-3); border-color: var(--accent); transform: translateY(-4px); }
.help-logo__img { width: 64px; height: 64px; padding: 10px; border-radius: 12px; background: var(--ink); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.help-logo__img img { width: 100%; height: 100%; object-fit: contain; }
.help-logo strong { font-family: 'Space Grotesk', sans-serif; font-size: 0.98rem; line-height: 1.25; }
.help-logo small { color: var(--ink-3); font-size: 0.78rem; }
.legal-strip { margin-top: 80px; padding: 30px; background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); display: flex; gap: 30px; align-items: center; }
.legal-strip .badge { width: 64px; height: 64px; border-radius: 50%; border: 2px solid var(--accent); color: var(--accent); display: flex; align-items: center; justify-content: center; font-family: 'Space Grotesk', sans-serif; font-weight: 500; font-size: 1.05rem; flex-shrink: 0; }
.legal-strip p { margin: 0; font-size: 0.92rem; }

/* SLOT (partner-b) */
.slot { padding: clamp(28px, 5vw, 56px); background: linear-gradient(135deg, var(--bg-2), var(--bg-3)); border: 1px solid var(--line); border-radius: var(--radius); max-width: 720px; margin: 0 auto; text-align: center; box-shadow: var(--shadow); }
.slot__reels { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; margin: 0 auto 30px; padding: 18px; background: var(--bg); border-radius: 16px; border: 1px solid var(--line-2); max-width: 440px; position: relative; }
.slot__reels::before, .slot__reels::after { content: ''; position: absolute; left: 18px; right: 18px; height: 28px; pointer-events: none; z-index: 2; }
.slot__reels::before { top: 18px; background: linear-gradient(180deg, var(--bg), transparent); border-radius: 12px 12px 0 0; }
.slot__reels::after { bottom: 18px; background: linear-gradient(0deg, var(--bg), transparent); border-radius: 0 0 12px 12px; }
.slot__reel { height: 88px; overflow: hidden; background: var(--bg-2); border: 1px solid var(--line); border-radius: 12px; position: relative; }
.slot__strip { display: flex; flex-direction: column; transform: translateY(0); }
.slot__strip span { flex-shrink: 0; height: 88px; display: flex; align-items: center; justify-content: center; font-size: 2.4rem; line-height: 1; }
.slot__controls { display: inline-flex; align-items: center; gap: 22px; flex-wrap: wrap; justify-content: center; }
.slot__spin { padding: 16px 38px; border-radius: 100px; background: var(--accent); color: #1a0d04; font-weight: 500; font-size: 1rem; transition: background .3s var(--ease), transform .25s var(--ease); letter-spacing: 0.02em; }
.slot__spin:hover { background: var(--accent-2); transform: translateY(-2px); }
.slot__spin:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.slot__counter { font-size: 0.85rem; color: var(--ink-3); letter-spacing: 0.06em; }
.slot__counter strong { color: var(--ink); font-family: 'Space Grotesk', sans-serif; }
.slot__result { margin: 30px auto 0; max-width: 50ch; font-size: 1rem; color: var(--ink-2); min-height: 3.2em; opacity: 1; transform: translateY(0); transition: opacity .35s var(--ease), transform .45s var(--ease), color .3s var(--ease); }
.slot__result.is-fading { opacity: 0; transform: translateY(10px); }
.slot__result.is-win { color: var(--accent-2); font-weight: 500; }
.slot__result.is-near { color: var(--ink); }
.slot__legend { display: flex; flex-wrap: wrap; gap: 14px 22px; justify-content: center; margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line); color: var(--ink-3); font-size: 0.82rem; }
.slot__legend span { display: inline-flex; align-items: center; gap: 8px; }
.slot__legend b { font-size: 1.2rem; font-weight: 400; }
.slot__note { max-width: 720px; margin: 0 auto 0; padding: 24px 28px; background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius-s); }
.slot__note p { margin: 0; font-size: 0.92rem; color: var(--ink-2); }

/* PAGE: ABOUT */
.about-hero { padding: 220px 0 80px; }
.about-hero h1 { max-width: 18ch; }
.about-hero p { max-width: 60ch; font-size: clamp(1.05rem, 1.4vw, 1.25rem); margin-top: 24px; color: var(--ink-2); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 100px); align-items: center; }
.split--rev > :first-child { order: 2; }
.split__media { aspect-ratio: 4/5; border-radius: var(--radius); overflow: hidden; background: var(--bg-3); }
.split__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.6s var(--ease); }
.split__media:hover img { transform: scale(1.05); }
.bigquote { padding: clamp(60px, 8vw, 120px) 0; background: var(--bg-2); }
.bigquote blockquote { font-family: 'Space Grotesk', sans-serif; font-size: clamp(1.7rem, 3.4vw, 2.8rem); line-height: 1.25; letter-spacing: -0.02em; margin: 0; max-width: 22ch; color: var(--ink); }
.bigquote blockquote span { color: var(--accent-2); }
.bigquote cite { display: block; margin-top: 30px; font-style: normal; font-size: 0.85rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-3); }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; padding-top: 50px; border-top: 1px solid var(--line); }
.stat strong { display: block; font-family: 'Space Grotesk', sans-serif; font-size: clamp(2.4rem, 4.5vw, 3.4rem); line-height: 1; letter-spacing: -0.02em; color: var(--ink); }
.stat span { display: block; margin-top: 14px; font-size: 0.92rem; color: var(--ink-2); max-width: 28ch; }

/* PAGE: POLICY */
.policy { padding: 200px 0 100px; }
.policy h1 { margin-bottom: 16px; }
.policy .updated { font-size: 0.85rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 60px; }
.policy__body { max-width: 760px; }
.policy__body h2 { font-size: clamp(1.4rem, 2vw, 1.8rem); margin: 60px 0 18px; }
.policy__body h3 { font-size: 1.15rem; margin: 30px 0 12px; }
.policy__body p, .policy__body li { color: var(--ink-2); font-size: 1rem; line-height: 1.7; }
.policy__body ul { padding-left: 22px; margin: 0 0 20px; }
.policy__body a { color: var(--accent-2); border-bottom: 1px solid var(--line-2); transition: border-color .25s var(--ease); }
.policy__body a:hover { border-color: var(--accent); }

/* REVEAL ANIMATIONS */
[data-reveal] { opacity: 0; transform: translateY(38px); transition: opacity .9s var(--ease), transform .9s var(--ease); transition-delay: var(--delay, 0ms); }
[data-reveal].is-in { opacity: 1; transform: none; }
[data-reveal="fade"] { transform: none; }
[data-reveal="left"] { transform: translateX(-40px); }
[data-reveal="right"] { transform: translateX(40px); }
[data-reveal="left"].is-in, [data-reveal="right"].is-in { transform: none; }

[data-split] { display: inline-block; overflow: hidden; }
h1[data-split], h2[data-split] { display: block; }
[data-split] .word { display: inline-block; overflow: hidden; vertical-align: top; }
[data-split] .word > span { display: inline-block; transform: translateY(110%); transition: transform 1s var(--ease); transition-delay: var(--d, 0ms); }
[data-split].is-in .word > span { transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 1220px) {
  .nav, .header__right .btn { display: none; }
  .burger { display: inline-flex; position: relative; z-index: 70; }
  .collection--slot .container { grid-template-columns: 1fr; gap: 40px; }
  .collection--slot .section__head { position: static; }
  .collection--slot > .container > .slot, .collection--slot > .container > .slot__note { grid-column: 1; }
  .menu { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; height: 100dvh; background: var(--bg); z-index: 60; padding: 120px var(--gutter) 60px; transform: translateY(-100%); transition: transform .6s var(--ease), visibility 0s linear .6s; visibility: hidden; display: flex; flex-direction: column; gap: 24px; overflow-y: auto; }
  .menu.active { transform: translateY(0); visibility: visible; transition: transform .6s var(--ease), visibility 0s linear 0s; }
  .menu a { font-family: 'Space Grotesk', sans-serif; font-size: 1.9rem; letter-spacing: -0.02em; color: var(--ink); }
  .menu a:hover { color: var(--accent); }
  .menu__close { position: absolute; top: 22px; right: var(--gutter); width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; border: 1px solid var(--line-2); background: transparent; color: var(--ink); transition: background .25s var(--ease), border-color .25s var(--ease); z-index: 71; }
  .menu__close:hover { background: var(--bg-2); border-color: var(--accent); }
  .menu__close::before, .menu__close::after { content: ''; position: absolute; width: 18px; height: 1.5px; background: var(--ink); }
  .menu__close::before { transform: rotate(45deg); }
  .menu__close::after { transform: rotate(-45deg); }
  .section__head { grid-template-columns: 1fr; gap: 24px; }
  .intro__grid, .why__inner, .event__grid, .charity__grid, .split { grid-template-columns: 1fr; }
  .split--rev > :first-child { order: 0; }
  .collection__grid { grid-template-columns: repeat(6, 1fr); }
  .product { grid-column: span 3 !important; }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .articles-grid, .stats { grid-template-columns: repeat(2, 1fr); }
  .help-logos { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
  .collection__grid { grid-template-columns: 1fr; }
  .product { grid-column: 1 / -1 !important; }
  .intro__list { grid-template-columns: 1fr; }
  .partners-grid, .articles-grid, .stats { grid-template-columns: 1fr; }
  .help-logos { grid-template-columns: 1fr 1fr; gap: 14px; }
  .help-logo { padding: 18px 14px; gap: 10px; }
  .help-logo strong { font-size: 0.88rem; overflow-wrap: break-word; word-break: break-word; hyphens: auto; }
  .help-logo small { font-size: 0.74rem; }
  .help-logo__img { width: 52px; height: 52px; padding: 8px; }
  .event__details { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 10px; }
  .cookie { flex-direction: column; align-items: flex-start; right: 16px; left: 16px; bottom: 16px; }
  .cookie__btns { width: 100%; justify-content: flex-end; }
  .subscribe { flex-direction: column; padding: 14px; border-radius: 18px; }
  .subscribe button { width: 100%; }
  .hero { padding: 140px 0 100px; min-height: 92vh; }
  .scroll-cue { display: none; }
}
@media (max-width: 480px) {
  .help-logos { grid-template-columns: 1fr; gap: 10px; }
  .help-logo { flex-direction: row; align-items: center; text-align: left; padding: 14px 14px; gap: 14px; }
  .help-logo__img { width: 48px; height: 48px; padding: 6px; flex-shrink: 0; }
  .help-logo strong { font-size: 0.92rem; line-height: 1.2; }
  .help-logo small { font-size: 0.78rem; }
}
