:root {
  --ink: #111310;
  --ink-soft: #242720;
  --paper: #f7f4ed;
  --paper-2: #ece8df;
  --white: #fff;
  --acid: #d8ff45;
  --green: #1fc76a;
  --cta-green: #00a873;
  --cta-green-dark: #087f5b;
  --cta-highlight: #efffb0;
  --cta-shadow: 0 14px 34px rgba(0, 168, 115, .24);
  --ease-out: cubic-bezier(.2, .75, .2, 1);
  --gold: #bd9450;
  --sun: #e9ddc4;
  --muted: #6d7169;
  --line: rgba(17, 19, 16, .14);
  --shadow: 0 24px 70px rgba(17, 19, 16, .12);
  --radius: 24px;
  --container: min(1240px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
.container { width: var(--container); margin-inline: auto; }

h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .96;
}
h1 em, h2 em { color: var(--gold); font-weight: 400; }

.announcement {
  position: relative;
  z-index: 40;
  min-height: 36px;
  overflow: hidden;
  color: var(--ink);
  background: var(--acid);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.announcement__track {
  min-height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  white-space: nowrap;
}
.announcement__track span + span::before { content: "•"; margin-right: 40px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 35;
  background: rgba(247, 244, 237, .88);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: box-shadow .25s ease, border-color .25s ease;
}
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 8px 35px rgba(17, 19, 16, .07); }
.nav-wrap { min-height: 76px; display: flex; align-items: center; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand__mark {
  width: 40px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--paper);
  background: var(--ink);
  font-family: Georgia, serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -.08em;
}
.brand__name { font-size: 14px; letter-spacing: .08em; }
.brand__name strong { font-weight: 900; }
.site-nav { margin-left: auto; display: flex; align-items: center; gap: 24px; }
.site-nav a { position: relative; color: #454941; font-size: 13px; font-weight: 700; }
.site-nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -7px; height: 2px; background: var(--ink); transform: translate3d(0,0,0) scaleX(0); transform-origin: right center; transition: transform .2s var(--ease-out); }
.site-nav a:hover::after { transform: translate3d(0,0,0) scaleX(1); transform-origin: left center; }
.menu-toggle { display: none; margin-left: auto; padding: 10px; border: 0; background: transparent; }
.menu-toggle span { display: block; width: 24px; height: 2px; margin: 5px; background: var(--ink); transition: transform .2s ease, opacity .2s ease; }

.button {
  position: relative;
  isolation: isolate;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  overflow: hidden;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .015em;
  text-align: center;
  cursor: pointer;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  transition: transform .22s var(--ease-out), background-color .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.button::before {
  content: "";
  position: absolute;
  inset: -35% auto -35% -45%;
  z-index: 0;
  width: 32%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.5), transparent);
  transform: translate3d(-220%, 0, 0) skewX(-18deg);
  transition: transform .55s var(--ease-out);
  pointer-events: none;
}
.button:hover { transform: translate3d(0, -3px, 0) scale(1.015); }
.button:hover::before { transform: translate3d(560%, 0, 0) skewX(-18deg); }
.button:active { transform: translate3d(0, 1px, 0) scale(.98); transition-duration: .08s; }
.button:focus-visible, .whatsapp-float__button:focus-visible, .mobile-cta > a:focus-visible, .product-card:focus-visible { outline: 3px solid #fff; outline-offset: 3px; box-shadow: 0 0 0 5px var(--cta-green-dark); }
.button--small { min-height: 42px; padding-inline: 18px; font-size: 12px; }
.button--dark { color: var(--white); background: var(--ink); border-color: rgba(255,255,255,.12); box-shadow: 0 10px 26px rgba(17,19,16,.18); }
.button--dark:hover { background: #20241d; box-shadow: 0 16px 34px rgba(17,19,16,.26); }
.button--primary { color: #07110c; background: var(--acid); border-color: rgba(17,19,16,.08); box-shadow: 0 14px 34px rgba(143,178,22,.24); }
.button--primary:hover { background: var(--cta-highlight); box-shadow: 0 18px 42px rgba(143,178,22,.3); }
.button--large { min-height: 62px; padding-inline: 30px; font-size: 14px; }
.button.is-clicked { pointer-events: none; opacity: .72; transform: translate3d(0, 1px, 0) scale(.985); }
.is-inquiry-submitting .js-wa-link, .js-wa-link.disabled { pointer-events: none !important; cursor: wait; }
.js-wa-link.loading { opacity: .78; }
.js-wa-link.loading [data-submit-label] { display: inline-flex; align-items: center; justify-content: center; gap: 8px; }
.js-wa-link.loading [data-submit-label]::after { content: ""; width: 12px; height: 12px; flex: 0 0 auto; border: 2px solid currentColor; border-right-color: transparent; border-radius: 50%; animation: cta-spin .65s linear infinite; }
.js-wa-link.loading > [aria-hidden="true"] { opacity: 0; }
.product-card.js-wa-link.loading .product-card__link::after { width: 9px; height: 9px; border-width: 1.5px; transform: none; }
.whatsapp-float.is-loading .whatsapp-float__icon { animation: cta-spin .65s linear infinite; }
@keyframes cta-spin { to { transform: translate3d(0,0,0) rotate(360deg); } }

.hero { position: relative; min-height: 680px; display: flex; align-items: center; padding: 98px 0 96px; overflow: hidden; }
.hero::after { content: "GLOBAL STYLE"; position: absolute; right: -25px; bottom: -12px; color: var(--ink); font-family: Georgia, serif; font-size: clamp(90px, 16vw, 230px); letter-spacing: -.07em; line-height: .75; opacity: .025; white-space: nowrap; pointer-events: none; }
.hero__grid { display: grid; grid-template-columns: minmax(0, 1fr); align-items: center; }
.hero__copy { position: relative; z-index: 2; max-width: 1060px; }
.eyebrow, .section-number {
  margin-bottom: 22px;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow { display: flex; align-items: center; gap: 10px; }
.eyebrow > span { width: 28px; height: 1px; background: currentColor; }
.hero h1 { max-width: 1030px; margin-bottom: 24px; font-size: clamp(68px, 8.8vw, 122px); }
.hero__lead { max-width: 610px; margin-bottom: 28px; color: #4d514a; font-size: 17px; line-height: 1.65; }
.offer-note { width: fit-content; display: flex; align-items: center; gap: 14px; margin-bottom: 28px; padding: 12px 18px 12px 12px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.58); }
.offer-note__icon { width: 48px; aspect-ratio: 1; display: grid; place-items: center; border-radius: 12px; color: var(--acid); background: var(--ink); font-size: 10px; font-weight: 900; letter-spacing: .1em; }
.offer-note p { margin: 0; font-size: 12px; line-height: 1.45; }
.offer-note strong { font-size: 13px; }
.hero__actions { display: flex; align-items: center; gap: 24px; margin-bottom: 24px; }
.text-link { display: inline-block; padding-bottom: 3px; border-bottom: 1px solid currentColor; font-size: 13px; font-weight: 800; transform: translate3d(0,0,0); transition: color .2s ease, transform .2s var(--ease-out); }
.text-link:hover { color: var(--cta-green-dark); transform: translate3d(3px,0,0); }
.text-link:active { transform: translate3d(1px,0,0) scale(.98); }
.text-link span { display: inline-block; margin-left: 7px; }
.text-link--dark { color: var(--ink); }
.trust-row { display: flex; flex-wrap: wrap; gap: 18px; margin: 0; padding: 0; color: var(--muted); font-size: 11px; font-weight: 700; list-style: none; }

.hero__glow { position: absolute; border-radius: 50%; filter: blur(0); pointer-events: none; }
.hero__glow--one { width: 380px; height: 380px; right: -120px; top: 90px; background: rgba(216, 255, 69, .16); }
.hero__glow--two { width: 260px; height: 260px; left: -130px; bottom: -50px; background: rgba(189, 148, 80, .12); }

.stats { color: var(--paper); background: var(--ink); }
.stats__grid { min-height: 150px; display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; }
.stats__grid > div { display: flex; flex-direction: column; align-items: center; gap: 9px; padding: 22px; border-right: 1px solid rgba(255,255,255,.14); text-align: center; }
.stats__grid > div:last-child { border: 0; }
.stats strong { color: var(--acid); font-family: Georgia, serif; font-size: 35px; font-weight: 400; }
.stats span { color: #c2c6be; font-size: 11px; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }

.brand-showcase { overflow: hidden; background: #eee9df; }
.brand-marquee { position: relative; width: 100%; overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper); }
.brand-marquee::before, .brand-marquee::after { content: ""; position: absolute; z-index: 2; top: 0; bottom: 0; width: 90px; pointer-events: none; }
.brand-marquee::before { left: 0; background: linear-gradient(90deg, var(--paper), transparent); }
.brand-marquee::after { right: 0; background: linear-gradient(-90deg, var(--paper), transparent); }
.brand-marquee__track { width: max-content; display: flex; animation: brand-loop 52s linear infinite; }
.brand-marquee:hover .brand-marquee__track { animation-play-state: paused; }
.brand-marquee__group { display: flex; align-items: center; }
.brand-wordmark { position: relative; min-width: 244px; display: flex; align-items: center; justify-content: center; gap: 13px; padding: 20px 24px; overflow: hidden; border-right: 1px solid var(--line); color: var(--brand-text, #22251f); background: var(--brand-cell, #f7f4ed); font-size: 17px; font-weight: 800; line-height: 1; text-align: left; white-space: nowrap; }
.brand-wordmark__logo { width: 68px; height: 48px; display: grid; place-items: center; flex: 0 0 auto; padding: 7px; border: 1px solid var(--brand-logo-border, rgba(17,19,16,.13)); border-radius: 12px; background: var(--brand-logo-panel, #fff); box-shadow: 0 6px 18px rgba(17,19,16,.08); }
.brand-wordmark__logo img { width: 100%; height: 100%; object-fit: contain; }
.brand-wordmark::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 4px; background: var(--brand-accent, #111); }
.brand-wordmark--lv { letter-spacing: .02em; --brand-cell: #f7f4ed; --brand-logo-border: #c89d52; --brand-accent: #c89d52; }
.brand-wordmark--prada { letter-spacing: .13em; --brand-cell: #fff; --brand-accent: #111; }
.brand-wordmark--gucci { letter-spacing: .06em; --brand-cell: #f7f4ed; --brand-logo-border: #155b3a; --brand-accent: linear-gradient(90deg, #155b3a 0 40%, #ad252b 40% 60%, #155b3a 60%); }
.brand-wordmark--hermes { letter-spacing: .08em; --brand-cell: #fff; --brand-logo-border: #f37021; --brand-accent: #f37021; }
.brand-wordmark--zegna { letter-spacing: .12em; --brand-cell: #f1f1ef; --brand-logo-border: #13283e; --brand-accent: #13283e; }
.brand-wordmark--fendi { letter-spacing: .05em; --brand-cell: #fff; --brand-logo-border: #d8b114; --brand-accent: #f3c930; }
.brand-wordmark--dior { --brand-cell: #f7f4ed; --brand-accent: #111; }
.brand-wordmark--loewe { letter-spacing: .08em; --brand-cell: #fff; --brand-logo-border: #9a5938; --brand-accent: #9a5938; }
.brand-wordmark--chanel { letter-spacing: .14em; --brand-text: #fff; --brand-cell: #111; --brand-logo-panel: #fff; --brand-accent: #fff; }
.brand-wordmark--jordan { font-style: italic; letter-spacing: .07em; --brand-text: #fff; --brand-cell: #171717; --brand-logo-panel: #fff; --brand-logo-border: #ce1141; --brand-accent: #ce1141; }
@keyframes brand-loop { to { transform: translate3d(-50%,0,0); } }

.collection-section { padding: 48px 0 52px; overflow: hidden; }
.collection-section--soft { background: var(--paper-2); }
.collection-section--sun { background: var(--sun); }
.collection-section--dark { color: var(--paper); background: var(--ink-soft); }
.section-heading { display: grid; grid-template-columns: 1fr; gap: 0; align-items: end; justify-items: center; margin-bottom: 16px; text-align: center; }
.section-heading h2, .center-heading h2, .reviews-intro h2, .faq-title h2 { margin-bottom: 0; font-size: clamp(46px, 5vw, 76px); }
.product-track { display: block; padding: 2px 2px 2px; overflow: hidden; overscroll-behavior-inline: contain; }
.loop-stage { width: max-content; display: flex; transform: translate3d(0,0,0); will-change: transform; backface-visibility: hidden; }
.product-loop-set { flex: none; display: flex; gap: 8px; padding-right: 8px; }
.product-track.is-user-scrolling { cursor: grabbing; }
.product-track, .review-gallery { touch-action: pan-y pinch-zoom; cursor: grab; user-select: none; contain: layout paint; }
.product-card, .product-track img, .review-gallery img { -webkit-user-drag: none; user-select: none; }
.product-card { position: relative; flex: 0 0 clamp(260px, 23vw, 315px); scroll-snap-align: start; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.72); transition: transform .25s var(--ease-out), box-shadow .25s ease; transform: translate3d(0,0,0); backface-visibility: hidden; }
.product-card:hover { transform: translate3d(0,-6px,0); box-shadow: var(--shadow); }
.collection-section--dark .product-card { border-color: rgba(255,255,255,.12); background: #30342c; }
.product-card__media { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: #deddd8; }
.product-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease-out); transform: translate3d(0,0,0) scale3d(1,1,1); backface-visibility: hidden; }
.product-card__badge { position: absolute; z-index: 2; top: 12px; left: 12px; display: inline-flex; align-items: center; gap: 4px; padding: 6px 9px; border: 1px solid rgba(255,255,255,.35); border-radius: 7px; color: #fff; background: linear-gradient(135deg, #ff7451, #ff4959); box-shadow: 0 7px 18px rgba(38,22,43,.28), inset 0 1px rgba(255,255,255,.24); font-size: 10px; font-weight: 950; line-height: 1; letter-spacing: .04em; text-shadow: 0 1px 2px rgba(0,0,0,.22); }
.product-card__badge-icon { min-width: 10px; font-size: 11px; line-height: 1; text-align: center; }
.product-card__badge--hot { background: linear-gradient(135deg, #ff9b3f, #ff5434); }
.product-card__badge--new { border-radius: 999px; background: linear-gradient(135deg, #10b7d8, #1978e8); }
.product-card__badge--sale { background: linear-gradient(135deg, #ff3c6f, #e01955); }
.product-card__badge--best { border-radius: 999px; color: #241700; background: linear-gradient(135deg, #ffe269, #f7a915); text-shadow: none; }
.product-track--contain .product-card__media { background: #fff; }
.product-track--contain .product-card__media img { object-fit: contain; padding: 10px; }
.product-card:hover .product-card__media img { transform: translate3d(0,0,0) scale3d(1.035,1.035,1); }
.product-card__body { padding: 15px 16px 16px; }
.product-card h3 { margin: 0 0 10px; font-family: Georgia, serif; font-size: 22px; font-weight: 800; text-align: center; }
.product-card__link { min-height: 36px; display: flex; align-items: center; justify-content: center; gap: 7px; padding: 8px 12px; border: 1px solid rgba(17,19,16,.08); border-radius: 999px; color: #07110c; background: var(--acid); box-shadow: 0 8px 20px rgba(143,178,22,.2); font-size: 10px; font-weight: 950; line-height: 1; text-align: center; text-transform: uppercase; letter-spacing: .04em; transition: transform .2s var(--ease-out), background-color .2s ease, box-shadow .2s ease; }
.product-card__link::after { content: "↗"; font-size: 13px; line-height: .8; transition: transform .2s var(--ease-out); }
.product-card:hover .product-card__link { background: var(--cta-highlight); box-shadow: 0 11px 26px rgba(143,178,22,.28); transform: translate3d(0,-1px,0); }
.product-card:hover .product-card__link::after { transform: translate3d(2px,-2px,0); }
.collection-section--dark .product-card__link { color: var(--ink); background: var(--acid); }

.reviews-section { padding: 125px 0; color: var(--paper); background: #171915; }
.reviews-section .container { display: grid; grid-template-columns: .75fr 1.25fr; gap: 70px; align-items: start; }
.reviews-intro { position: sticky; top: 125px; }
.reviews-intro h2 { margin-bottom: 28px; }
.reviews-intro > p:not(.section-number) { max-width: 430px; color: #b8bcb3; font-size: 15px; line-height: 1.7; }
.rating-line { margin-top: 36px; display: grid; grid-template-columns: auto 1fr; gap: 4px 16px; align-items: center; }
.rating-line strong { font-family: Georgia, serif; font-size: 50px; font-weight: 400; }
.rating-line span { color: #f7c94e; letter-spacing: .13em; }
.rating-line small { grid-column: 2; color: #8e9389; }
.review-gallery { display: block; overflow: hidden; overscroll-behavior-inline: contain; }
.review-gallery.is-user-scrolling { cursor: grabbing; }
.review-loop-set { flex: none; display: flex; gap: 8px; padding-right: 8px; }
.review-card { flex: 0 0 clamp(230px, 25vw, 310px); aspect-ratio: 3 / 4; min-height: 0; padding: 0; overflow: hidden; border: 1px solid rgba(255,255,255,.13); border-radius: 20px; background: #ece9e0; cursor: zoom-in; scroll-snap-align: start; }
.review-card img { width: 100%; height: 100%; object-fit: contain; transition: transform .3s var(--ease-out); transform: translate3d(0,0,0) scale3d(1,1,1); backface-visibility: hidden; }
.review-card:hover img { transform: scale(1.018); }

.advantages { padding: 125px 0; }
.center-heading { max-width: 800px; margin: 0 auto 60px; text-align: center; }
.eyebrow--center { justify-content: center; }
.advantage-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.advantage-card { min-height: 280px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.55); }
.advantage-card__icon { width: 54px; aspect-ratio: 1; display: grid; place-items: center; margin-bottom: 55px; border-radius: 50%; color: var(--ink); background: var(--acid); font-family: Georgia, serif; font-size: 18px; }
.advantage-card__icon svg { width: 68%; height: 68%; overflow: visible; fill: none; stroke: currentColor; stroke-width: 1.65; stroke-linecap: round; stroke-linejoin: round; }
.advantage-card__icon svg .accent { stroke: var(--gold); stroke-width: 2; }
.advantage-card h3 { margin-bottom: 12px; font-family: Georgia, serif; font-size: 25px; font-weight: 400; }
.advantage-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }

.offer-banner { padding: 30px 0 125px; }
.offer-banner__inner { position: relative; min-height: 540px; display: grid; grid-template-columns: 1.1fr .9fr; gap: 55px; align-items: center; padding: 70px; overflow: hidden; border-radius: 38px; color: var(--paper); background: var(--ink); }
.offer-banner__inner::before { content: ""; position: absolute; width: 430px; height: 430px; right: -60px; bottom: -200px; border-radius: 50%; background: var(--acid); opacity: .95; }
.offer-banner__copy { position: relative; z-index: 2; }
.offer-banner h2 { margin-bottom: 24px; font-size: clamp(60px, 7vw, 105px); }
.offer-banner__copy > p:not(.section-number) { max-width: 560px; margin-bottom: 28px; color: #bdc1b8; line-height: 1.65; }
.gift-card { position: relative; z-index: 2; width: 330px; aspect-ratio: .8; justify-self: center; display: flex; flex-direction: column; justify-content: space-between; padding: 32px; border: 1px solid rgba(17,19,16,.15); border-radius: 24px; color: var(--ink); background: #f5eee0; box-shadow: 0 25px 80px rgba(0,0,0,.28); transform: rotate(4deg); }
.gift-card::before { content: ""; position: absolute; inset: 13px; border: 1px dashed rgba(17,19,16,.25); border-radius: 16px; }
.gift-card__label, .gift-card__footer { position: relative; font-size: 9px; font-weight: 900; letter-spacing: .15em; }
.gift-card strong { position: relative; font-family: Georgia, serif; font-size: 58px; font-weight: 400; line-height: .86; }

.order-section { padding: 125px 0; background: var(--paper-2); }
.order-steps { max-width: 1060px; margin: 0 auto; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.order-steps li { display: grid; grid-template-columns: 72px 58px 1fr; gap: 22px; align-items: center; padding: 28px 0; border-bottom: 1px solid var(--line); }
.step-number { color: var(--gold); font-family: Georgia, serif; font-size: 34px; }
.step-icon { width: 52px; aspect-ratio: 1; display: grid; place-items: center; border: 1px solid rgba(189,148,80,.35); border-radius: 16px; color: var(--gold); background: rgba(255,255,255,.48); transform: rotate(-3deg); }
.order-steps li:nth-child(even) .step-icon { transform: rotate(3deg); }
.step-icon svg { width: 26px; height: 26px; overflow: visible; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.order-steps h3 { margin: 0 0 8px; font-family: Georgia, serif; font-size: 28px; font-weight: 400; }
.order-steps p { max-width: 690px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }
.order-cta { max-width: 1060px; display: flex; align-items: center; justify-content: space-between; gap: 24px; margin: 34px auto 0; padding: 24px 28px; border-radius: 20px; background: var(--white); }
.order-cta p { margin: 0; font-weight: 700; }

.faq-section { padding: 125px 0; }
.faq-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 100px; }
.faq-title { position: sticky; top: 125px; align-self: start; }
.faq-title h2 { margin-bottom: 26px; }
.faq-title > p:not(.section-number) { max-width: 390px; color: var(--muted); font-size: 14px; line-height: 1.65; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item button { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 26px 0; border: 0; color: inherit; background: transparent; font-family: Georgia, serif; font-size: 24px; text-align: left; cursor: pointer; }
.faq-item button span:last-child { width: 34px; aspect-ratio: 1; display: grid; place-items: center; flex-shrink: 0; border: 1px solid var(--line); border-radius: 50%; font-family: sans-serif; font-size: 16px; }
.faq-answer { padding: 0 55px 26px 0; }
.faq-answer p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.72; }

.final-cta { position: relative; padding: 0 0 100px; overflow: hidden; color: var(--paper); background: var(--ink); }
.final-cta__marquee { display: flex; width: max-content; padding: 19px 0; color: var(--ink); background: var(--acid); font-size: 12px; font-weight: 900; letter-spacing: .12em; white-space: nowrap; animation: marquee 36s linear infinite; }
.final-cta__content { padding-top: 95px; text-align: center; }
.final-cta h2 { margin-bottom: 28px; font-size: clamp(66px, 9vw, 130px); }
.final-cta__content > p:not(.section-number) { max-width: 650px; margin: 0 auto 32px; color: #bfc3ba; font-size: 16px; line-height: 1.65; }
@keyframes marquee { to { transform: translate3d(-50%,0,0); } }

.site-footer { padding: 75px 0 25px; color: #d9ddd5; background: #080a08; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, .6fr); gap: 55px; }
.brand--footer .brand__mark { color: var(--ink); background: var(--acid); }
.footer-grid > div:first-child p { max-width: 290px; margin-top: 22px; color: #777c73; font-size: 13px; line-height: 1.6; }
.footer-grid > div:not(:first-child) { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.footer-grid strong { margin-bottom: 6px; color: #fff; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.footer-grid a, .footer-grid p { margin: 0; color: #8e938a; font-size: 12px; line-height: 1.55; }
.footer-grid a:hover { color: var(--acid); }
.footer-wa { padding-bottom: 3px; border-bottom: 1px solid currentColor; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 65px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); color: #5f645c; font-size: 10px; letter-spacing: .06em; text-transform: uppercase; }

.whatsapp-float { position: fixed; right: 22px; top: 50%; z-index: 30; width: 286px; overflow: hidden; border: 1px solid rgba(20, 32, 25, .12); border-radius: 8px; background: #fff; box-shadow: 0 18px 55px rgba(0, 0, 0, .2); transform: translate3d(0,-50%,0); }
.whatsapp-float__head { display: flex; align-items: center; gap: 12px; padding: 16px; color: #fff; background: #087f5b; }
.whatsapp-float__icon { width: 42px; aspect-ratio: 1; display: grid; place-items: center; flex: 0 0 auto; border-radius: 50%; color: #087f5b; background: #fff; font-size: 11px; font-weight: 900; }
.whatsapp-float__head strong, .whatsapp-float__head small { display: block; }
.whatsapp-float__head strong { font-size: 16px; line-height: 1.1; }
.whatsapp-float__head small { display: flex; align-items: center; gap: 6px; margin-top: 5px; color: #dff8eb; font-size: 10px; }
.whatsapp-float__status { width: 7px; aspect-ratio: 1; border-radius: 50%; background: #9cffc8; box-shadow: 0 0 0 3px rgba(156, 255, 200, .14); }
.whatsapp-float__body { margin: 16px; padding: 14px; border: 1px solid #e7ebe5; border-radius: 6px; background: #f6f8f5; }
.whatsapp-float__body p { margin: 0; color: var(--ink); font-family: Georgia, serif; font-size: 15px; line-height: 1.45; }
.whatsapp-float__body small { display: block; margin-top: 8px; color: #747a72; font-size: 9px; line-height: 1.4; }
.whatsapp-float__button { position: relative; min-height: 48px; display: flex; align-items: center; justify-content: space-between; gap: 12px; overflow: hidden; margin: 0 16px 16px; padding: 0 15px; border: 1px solid rgba(255,255,255,.24); border-radius: 7px; color: #fff; background: var(--cta-green); box-shadow: var(--cta-shadow); font-size: 12px; font-weight: 900; transform: translate3d(0,0,0); transition: background-color .2s ease, transform .2s var(--ease-out), box-shadow .2s ease; }
.whatsapp-float__button::before { content: ""; position: absolute; inset: 0; background: linear-gradient(110deg, transparent 25%, rgba(255,255,255,.3) 48%, transparent 70%); transform: translate3d(-120%,0,0); transition: transform .5s var(--ease-out); pointer-events: none; }
.whatsapp-float__button:hover { background: var(--cta-green-dark); box-shadow: 0 16px 34px rgba(0,135,88,.3); transform: translate3d(0,-2px,0); }
.whatsapp-float__button:hover::before { transform: translate3d(120%,0,0); }
.whatsapp-float__button:active { transform: translate3d(0,1px,0) scale(.98); }
.mobile-cta { display: none; }

.review-modal { width: min(820px, calc(100% - 30px)); max-height: 90vh; padding: 18px; border: 0; border-radius: 24px; background: #fff; box-shadow: 0 30px 100px rgba(0,0,0,.45); }
.review-modal::backdrop { background: rgba(0,0,0,.82); backdrop-filter: blur(5px); }
.review-modal img { max-height: calc(90vh - 36px); margin: auto; object-fit: contain; }
.review-modal__close { position: absolute; right: 14px; top: 14px; z-index: 2; width: 38px; aspect-ratio: 1; border: 0; border-radius: 50%; color: #fff; background: rgba(0,0,0,.75); font-size: 22px; cursor: pointer; }

.reveal { opacity: 0; transform: translate3d(0,24px,0); transition: opacity .65s ease, transform .65s var(--ease-out); backface-visibility: hidden; }
.reveal.is-visible { opacity: 1; transform: none; }

.policy-page { min-height: 100vh; background: var(--paper); }
.policy-header { padding: 24px 0; border-bottom: 1px solid var(--line); }
.policy-header .container { display: flex; align-items: center; justify-content: space-between; }
.policy-main { width: min(760px, calc(100% - 40px)); margin: 0 auto; padding: 80px 0 110px; }
.policy-main h1 { margin-bottom: 18px; font-size: clamp(48px, 8vw, 76px); }
.policy-main .policy-date { margin-bottom: 42px; color: var(--muted); font-size: 12px; }
.policy-main h2 { margin: 42px 0 14px; font-size: 32px; letter-spacing: -.035em; }
.policy-main p, .policy-main li { color: #50544d; font-size: 14px; line-height: 1.75; }
.policy-main ul { padding-left: 20px; }
.policy-note { margin-top: 45px; padding: 24px; border-radius: 18px; background: var(--paper-2); }

@media (max-width: 1080px) {
  .site-nav { gap: 15px; }
  .site-nav a { font-size: 12px; }
  .product-card { flex-basis: 280px; }
  .advantage-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-layout { gap: 60px; }
}

@media (max-width: 860px) {
  :root { --container: min(100% - 32px, 720px); }
  html { scroll-padding-top: 78px; }
  .announcement__track { justify-content: flex-start; padding-inline: 18px; animation: marquee-mobile 30s linear infinite; }
  @keyframes marquee-mobile { to { transform: translate3d(-55%,0,0); } }
  .nav-wrap { min-height: 68px; }
  .menu-toggle { display: block; }
  .nav-wrap > .button { display: none; }
  .site-nav { position: fixed; inset: 104px 16px auto; display: grid; gap: 0; padding: 12px 20px; border: 1px solid var(--line); border-radius: 22px; background: var(--paper); box-shadow: var(--shadow); transform: translate3d(0,-20px,0); opacity: 0; pointer-events: none; transition: opacity .2s ease, transform .2s ease; }
  .site-nav a { padding: 15px 4px; border-bottom: 1px solid var(--line); font-size: 15px; }
  .site-nav a:last-child { border-bottom: 0; }
  .site-nav a::after { display: none; }
  .menu-open .site-nav { opacity: 1; transform: none; pointer-events: auto; }
  .menu-open .menu-toggle span:nth-child(1) { transform: translate3d(0,7px,0) rotate(45deg); }
  .menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
  .menu-open .menu-toggle span:nth-child(3) { transform: translate3d(0,-7px,0) rotate(-45deg); }
  .hero { padding: 65px 0 75px; }
  .hero__grid { grid-template-columns: 1fr; gap: 45px; }
  .hero__copy { text-align: center; }
  .hero__lead { margin-inline: auto; }
  .eyebrow { justify-content: center; }
  .offer-note { margin-inline: auto; text-align: left; }
  .hero__actions { justify-content: center; }
  .trust-row { justify-content: center; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__grid > div:nth-child(2) { border-right: 0; }
  .stats__grid > div:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.14); }
  .collection-section, .reviews-section, .advantages, .order-section, .faq-section { padding-block: 90px; }
  .collection-section { padding-block: 42px; }
  .section-heading { grid-template-columns: 1fr; gap: 25px; }
  .product-card { flex-basis: 290px; }
  .reviews-section .container { grid-template-columns: 1fr; gap: 50px; }
  .reviews-intro, .faq-title { position: static; }
  .offer-banner__inner { grid-template-columns: 1fr; padding: 55px; }
  .gift-card { width: 280px; }
  .faq-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  :root { --container: calc(100% - 28px); --radius: 20px; }
  body { padding-bottom: 74px; }
  .announcement { min-height: 28px; font-size: 9px; }
  .announcement__track { min-height: 28px; gap: 28px; }
  .announcement__track span + span::before { margin-right: 28px; }
  .nav-wrap { min-height: 60px; }
  .brand__mark { width: 32px; }
  .brand__name { font-size: 11px; }
  .site-nav { top: 88px; }
  .hero { min-height: 0; padding: 26px 0 22px; color: #f6fbff; background: radial-gradient(circle at 88% 12%, rgba(0,226,148,.18), transparent 34%), radial-gradient(circle at 8% 92%, rgba(85,56,173,.2), transparent 32%), linear-gradient(145deg, #080b10 0%, #090811 58%, #06100d 100%); }
  .hero .container { width: calc(100% - 16px); }
  .hero::after { right: -12px; bottom: -2px; color: #fff; font-family: Inter, sans-serif; font-size: 92px; font-weight: 900; line-height: .72; opacity: .025; }
  .hero__copy { width: 100%; display: block; max-width: none; margin-inline: auto; text-align: center; }
  .hero .eyebrow { width: fit-content; justify-content: center; gap: 7px; margin: 0 auto 13px; padding: 7px 12px; border: 1px solid rgba(0,224,145,.38); border-radius: 999px; color: #27e39d; background: rgba(0,135,88,.16); font-size: 8px; letter-spacing: .08em; }
  .hero .eyebrow > span { width: 6px; height: 6px; border-radius: 50%; background: #00df91; }
  .hero h1 { width: 100%; max-width: none; margin-bottom: 11px; font-family: Inter, ui-sans-serif, sans-serif; font-size: clamp(29px, 8.7vw, 38px); font-weight: 900; letter-spacing: -.045em; line-height: 1.02; }
  .hero h1 em { display: block; margin-top: 3px; color: #0bdd87; font-family: inherit; font-style: normal; font-weight: 900; letter-spacing: -.045em; }
  .hero__lead { width: 100%; max-width: none; margin: 0 auto 12px; color: #9eb4c5; font-size: 11px; line-height: 1.42; }
  .offer-note { width: 100%; max-width: none; justify-content: center; gap: 8px; margin: 0 0 11px; padding: 7px 10px 7px 7px; border-color: rgba(255,255,255,.12); border-radius: 12px; background: rgba(255,255,255,.055); text-align: left; }
  .offer-note__icon { width: 32px; color: #07110c; border-radius: 9px; background: #16df8d; font-size: 8px; }
  .offer-note p { color: #c9d4dc; font-size: 9.5px; line-height: 1.22; }
  .offer-note strong { color: #fff; font-size: 11px; }
  .hero__actions { width: 100%; justify-content: center; margin-bottom: 11px; }
  .hero__actions .button { width: 100%; max-width: none; min-height: 42px; gap: 8px; padding-inline: 12px; color: #fff; background: linear-gradient(135deg, var(--cta-green-dark), var(--cta-green)); border-color: rgba(255,255,255,.18); box-shadow: var(--cta-shadow); font-size: 14px; white-space: nowrap; }
  .hero__actions .button span:first-child { min-width: 0; overflow: hidden; font-size: inherit; text-overflow: ellipsis; white-space: nowrap; }
  .hero__actions .button span:first-child::after { content: none; }
  .hero__actions .button .hero-button__symbol { display: inline-block; flex: 0 0 auto; font-size: 18px; line-height: 1; transform: rotate(10deg); }
  .hero__actions .text-link { display: none; }
  .trust-row { width: 100%; justify-content: space-between; gap: 6px; color: #a9bbc6; font-size: 10px; font-weight: 800; }
  .trust-row li { white-space: nowrap; }
  .hero__glow--one { width: 190px; height: 190px; right: -90px; top: 18px; background: rgba(0,226,148,.11); }
  .hero__glow--two { width: 130px; height: 130px; left: -80px; bottom: -45px; background: rgba(96,63,190,.13); }
  .stats { border-top: 1px solid rgba(255,255,255,.09); background: #070a0c; }
  .stats__grid { min-height: 0; grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .stats__grid > div, .stats__grid > div:nth-child(-n+2) { min-width: 0; gap: 4px; padding: 10px 3px; border-right: 1px solid rgba(255,255,255,.14); border-bottom: 0; }
  .stats__grid > div:nth-child(2) { border-right: 1px solid rgba(255,255,255,.14); }
  .stats__grid > div:last-child { border-right: 0; }
  .stats strong { color: #fff; font-family: Inter, sans-serif; font-size: 19px; font-weight: 900; }
  .stats span { color: #6eacd0; font-size: 8px; line-height: 1.2; letter-spacing: .02em; }
  .brand-marquee::before, .brand-marquee::after { width: 28px; }
  .collection-section, .reviews-section, .advantages, .order-section, .faq-section { padding-block: 44px; }
  .collection-section { padding-block: 18px; }
  .section-heading { gap: 0; margin-bottom: 13px; }
  .section-heading h2 { max-width: 100%; font-size: clamp(29px, 8vw, 32px); line-height: 1.02; text-wrap: balance; }
  .center-heading h2, .reviews-intro h2, .faq-title h2 { font-size: 35px; }
  .brand-wordmark { min-width: 184px; gap: 8px; padding: 10px 9px; font-size: 11px; }
  .brand-wordmark__logo { width: 52px; height: 38px; padding: 5px; border-radius: 9px; }
  .product-track { width: 100%; padding: 2px 0 4px; }
  .product-loop-set { gap: 1px; padding-right: 1px; }
  .product-card { flex-basis: calc((100vw - 30px) / 3); border-radius: 10px; }
  .product-card:hover { transform: none; box-shadow: none; }
  .product-card__media { aspect-ratio: 4 / 5; }
  .product-card__badge { top: 4px; left: 4px; gap: 2px; padding: 3px 5px; border-radius: 4px; font-size: 8px; letter-spacing: 0; }
  .product-card__badge-icon { min-width: 7px; font-size: 8px; }
  .product-track--contain .product-card__media img { padding: 4px; }
  .product-card__body { min-height: 49px; display: flex; flex-direction: column; padding: 5px 6px; }
  .product-card h3 { min-height: 20px; display: flex; align-items: center; justify-content: center; margin: 0 0 3px; overflow-wrap: anywhere; font-size: 9.5px; font-weight: 850; line-height: 1.05; text-align: center; }
  .product-card__link { min-height: 26px; gap: 3px; margin-top: auto; padding: 4px 2px; border-radius: 5px; font-size: 7.5px; letter-spacing: 0; white-space: nowrap; }
  .product-card__link::after { font-size: 9px; }
  .product-track, .review-gallery { touch-action: pan-y pinch-zoom; -webkit-tap-highlight-color: transparent; }
  .product-track.is-user-scrolling .product-card { pointer-events: none; }
  .product-track.is-user-scrolling .product-card__media img { transform: translate3d(0,0,0) scale3d(1.02,1.02,1); }
  .product-card.js-wa-link.loading { opacity: 1; }
  .product-card.js-wa-link.loading .product-card__media img { filter: brightness(.82); transform: translate3d(0,0,0) scale3d(1.025,1.025,1); }
  .product-card.js-wa-link.loading .product-card__link { position: relative; isolation: isolate; overflow: hidden; color: #fff; background: #087f5b; box-shadow: 0 6px 18px rgba(8,127,91,.34); font-size: 8.2px; animation: mobile-cta-loading .62s ease-in-out infinite alternate; }
  .product-card.js-wa-link.loading .product-card__link::before { content: ""; position: absolute; z-index: -1; inset: 0; background: linear-gradient(100deg, transparent 10%, rgba(255,255,255,.36) 48%, transparent 85%); transform: translate3d(-120%,0,0); animation: mobile-cta-sweep .85s ease-in-out infinite; }
  .product-card.js-wa-link.loading .product-card__link::after { width: 10px; height: 10px; border-width: 1.5px; }
  @keyframes mobile-cta-loading { from { transform: translate3d(0,0,0) scale(.98); } to { transform: translate3d(0,0,0) scale(1); } }
  @keyframes mobile-cta-sweep { to { transform: translate3d(120%,0,0); } }
  .reviews-section .container { gap: 18px; }
  .reviews-intro h2 { margin-bottom: 10px; }
  .reviews-intro > p:not(.section-number) { font-size: 12px; line-height: 1.5; }
  .rating-line { margin-top: 12px; }
  .rating-line strong { font-size: 32px; }
  .review-loop-set { gap: 1px; padding-right: 1px; }
  .review-card { flex-basis: calc((100vw - 30px) / 3); aspect-ratio: 3 / 4; border-radius: 10px; }
  .center-heading { margin-bottom: 18px; }
  .advantage-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 6px; }
  .advantage-card { min-width: 0; min-height: 142px; padding: 13px 10px; border-radius: 12px; text-align: center; }
  .advantage-card__icon { width: 38px; margin: 0 auto 8px; font-size: 11px; }
  .advantage-card h3 { min-height: 0; margin-bottom: 5px; overflow-wrap: normal; font-size: 15px; line-height: 1.08; }
  .advantage-card p { font-size: 9px; line-height: 1.4; }
  .offer-banner { padding: 16px 0 50px; }
  .offer-banner__inner { min-height: 0; gap: 24px; padding: 28px 20px; border-radius: 24px; text-align: center; }
  .offer-banner h2 { margin-bottom: 15px; font-size: 50px; }
  .offer-banner__copy > p:not(.section-number) { margin-bottom: 18px; font-size: 12px; line-height: 1.5; }
  .offer-banner .button { width: 100%; }
  .gift-card { width: 185px; padding: 22px; justify-self: center; text-align: left; }
  .gift-card strong { font-size: 36px; }
  .order-steps { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 6px; border-top: 0; }
  .order-steps li { min-width: 0; min-height: 164px; display: flex; flex-direction: column; gap: 0; align-items: center; padding: 12px 9px; border: 1px solid var(--line); border-radius: 12px; background: rgba(255,255,255,.62); text-align: center; }
  .step-number { padding: 0; margin-bottom: 5px; font-size: 17px; }
  .step-icon { width: 34px; margin: 0 auto 8px; border-radius: 10px; }
  .step-icon svg { width: 17px; height: 17px; }
  .order-steps li > div { min-width: 0; }
  .order-steps h3 { min-height: 0; margin-bottom: 5px; overflow-wrap: normal; font-size: 15px; line-height: 1.08; }
  .order-steps p { font-size: 9px; line-height: 1.4; }
  .order-cta { margin-top: 16px; padding: 13px; flex-direction: column; gap: 10px; align-items: stretch; text-align: center; }
  .order-cta p { font-size: 11px; }
  .order-cta .button { min-height: 42px; }
  .faq-layout { gap: 26px; }
  .faq-title h2 { margin-bottom: 14px; }
  .faq-item button { padding: 18px 0; font-size: 18px; }
  .faq-answer { padding-bottom: 18px; }
  .faq-answer p { font-size: 12px; line-height: 1.55; }
  .final-cta { padding-bottom: 50px; }
  .final-cta__content { padding-top: 50px; }
  .final-cta h2 { margin-bottom: 18px; font-size: 50px; }
  .final-cta__content > p:not(.section-number) { margin-bottom: 22px; font-size: 13px; line-height: 1.5; }
  .final-cta .button { width: 100%; }
  .site-footer { padding-top: 50px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px 24px; }
  .footer-grid > div:first-child, .footer-grid > div:last-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; margin-top: 36px; }
  .whatsapp-float { right: 12px; top: auto; bottom: calc(84px + env(safe-area-inset-bottom)); width: 58px; height: 58px; display: block; overflow: visible; border: 2px solid rgba(255,255,255,.72); border-radius: 50%; background: #18a864; box-shadow: 0 10px 28px rgba(0,0,0,.24), 0 0 0 4px rgba(24,168,100,.18); transform: translate3d(0,0,0); transition: transform .2s var(--ease-out); backface-visibility: hidden; }
  .whatsapp-float::before { content: ""; position: absolute; inset: 5px; z-index: 0; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; background: #087f5b; }
  .whatsapp-float::after { content: ""; position: absolute; z-index: 4; right: -1px; top: 1px; width: 10px; height: 10px; border: 2px solid #fff; border-radius: 50%; background: #9cffc8; box-shadow: 0 2px 7px rgba(0,0,0,.2); }
  .whatsapp-float__head { position: absolute; inset: 0; z-index: 1; justify-content: center; padding: 0; border-radius: 50%; background: transparent; }
  .whatsapp-float__head > div { display: none; }
  .whatsapp-float__icon { position: relative; width: 42px; border: 0; color: #fff; background: transparent; font-size: 0; }
  .whatsapp-float__icon::before { content: "✆"; display: block; font-size: 25px; line-height: 1; transform: rotate(-18deg); }
  .whatsapp-float__body { display: none; }
  .whatsapp-float__button { position: absolute; inset: -2px; z-index: 5; min-height: 0; margin: 0; padding: 0; border-radius: 50%; background: transparent; font-size: 0; }
  .whatsapp-float__button::before { display: none; }
  .whatsapp-float__button:hover { background: transparent; transform: translate3d(0,0,0); box-shadow: none; }
  .whatsapp-float:active { transform: translate3d(0,2px,0) scale(.92); }
  .whatsapp-float__button span { display: none; }
  .mobile-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 50; min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 9px 10px 9px 14px; padding-bottom: max(9px, env(safe-area-inset-bottom)); color: #fff; background: var(--ink); box-shadow: 0 -10px 35px rgba(0,0,0,.2); pointer-events: none; }
  .mobile-cta small, .mobile-cta strong { display: block; }
  .mobile-cta small { margin-bottom: 4px; color: var(--acid); font-size: 8px; font-weight: 900; letter-spacing: .06em; }
  .mobile-cta strong { max-width: 210px; font-family: Georgia, serif; font-size: 13px; line-height: 1.18; font-weight: 400; }
  .mobile-cta > a { position: relative; min-width: 112px; overflow: hidden; padding: 13px 14px; border: 1px solid rgba(255,255,255,.16); border-radius: 999px; color: #07110c; background: var(--acid); box-shadow: 0 8px 24px rgba(216,255,69,.2); font-size: 11px; font-weight: 950; text-align: center; transform: translate3d(0,0,0); transition: transform .18s var(--ease-out), background-color .18s ease, box-shadow .18s ease; pointer-events: auto; }
  .mobile-cta > a:active { background: var(--cta-highlight); box-shadow: 0 4px 12px rgba(216,255,69,.16); transform: translate3d(0,1px,0) scale(.96); }
  .policy-main { width: calc(100% - 28px); padding-top: 55px; }
}

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