:root {
  --ink: #080808;
  --ink-soft: #151515;
  --gold: #f5b800;
  --gold-bright: #ffcb2f;
  --red: #dc241f;
  --paper: #f2f0e9;
  --white: #fff;
  --muted: #706d65;
  --line: rgba(8, 8, 8, .14);
  --display: "Arial Black", "Helvetica Neue", Arial, sans-serif;
  --body: "Helvetica Neue", Arial, sans-serif;
  --header-height: 78px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body { margin: 0; overflow-x: hidden; background: var(--paper); color: var(--ink); font-family: var(--body); -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
::selection { background: var(--gold); color: var(--ink); }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.skip-link { position: fixed; z-index: 999; left: 16px; top: 10px; transform: translateY(-150%); padding: 12px 16px; background: white; color: black; font-weight: 800; }
.skip-link:focus { transform: translateY(0); }
.scroll-progress { position: fixed; z-index: 100; inset: 0 0 auto; height: 3px; pointer-events: none; }
.scroll-progress span { display: block; width: 100%; height: 100%; transform: scaleX(0); transform-origin: left; background: var(--red); }

.topbar { background: var(--gold); color: var(--ink); border-bottom: 1px solid #d79f00; }
.topbar__inner { min-height: 34px; display: flex; align-items: center; justify-content: center; gap: 42px; font-size: 11px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.header { position: sticky; z-index: 80; top: 0; color: white; background: rgba(8, 8, 8, .94); border-bottom: 1px solid rgba(255, 255, 255, .12); backdrop-filter: blur(14px); transition: background .25s ease, box-shadow .25s ease; }
.header.is-scrolled { background: rgba(8, 8, 8, .985); box-shadow: 0 12px 40px rgba(0, 0, 0, .24); }
.header__inner { min-height: var(--header-height); display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 13px; margin-right: auto; }
.brand img { width: 54px; height: 54px; flex: 0 0 auto; border: 1px solid rgba(245, 184, 0, .5); border-radius: 7px; object-fit: cover; }
.brand__text strong { display: block; font-size: 17px; font-weight: 800; letter-spacing: .035em; line-height: 1.2; text-transform: uppercase; }
.brand__text small { display: block; margin-top: 6px; color: var(--gold); font-size: 9px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.nav { display: flex; align-items: center; gap: 30px; }
.nav a { position: relative; color: #d4d4d4; font-size: 12px; font-weight: 750; }
.nav a::after { position: absolute; right: 0; bottom: -8px; left: 0; height: 2px; transform: scaleX(0); transform-origin: right; background: var(--gold); content: ""; transition: transform .2s ease; }
.nav a:hover::after, .nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.menu-toggle { display: none; width: 48px; height: 44px; padding: 10px; border: 0; background: transparent; color: white; cursor: pointer; }
.menu-toggle span { display: block; height: 2px; margin: 5px 0; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
.menu-toggle em { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.button { min-height: 53px; display: inline-flex; align-items: center; justify-content: center; gap: 15px; padding: 0 24px; border: 2px solid var(--gold); background: var(--gold); color: var(--ink); font-size: 11px; font-weight: 850; letter-spacing: .065em; text-transform: uppercase; transition: transform .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease; }
.button:hover { transform: translateY(-3px); background: var(--gold-bright); box-shadow: 0 13px 34px rgba(245, 184, 0, .2); }
.button--small { min-height: 44px; padding-inline: 17px; font-size: 9px; }
.button--outline { background: transparent; color: var(--gold); }
.button--outline:hover { background: var(--gold); color: var(--ink); }
.button--dark { border-color: var(--ink); background: var(--ink); color: white; }
.button--dark:hover { border-color: white; background: white; color: var(--ink); box-shadow: 0 13px 34px rgba(0, 0, 0, .15); }
.text-link { padding-bottom: 5px; border-bottom: 1px solid rgba(255, 255, 255, .34); color: white; font-size: 11px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.text-link:hover { color: var(--gold); border-color: var(--gold); }
.text-link--dark { color: var(--ink); border-color: rgba(0, 0, 0, .45); }
a:focus-visible, button:focus-visible, summary:focus-visible { outline: 3px solid var(--red); outline-offset: 4px; }

.hero { position: relative; isolation: isolate; min-height: calc(100svh - 34px); overflow: hidden; display: flex; align-items: center; background: var(--ink); color: white; }
.hero__grid-lines { position: absolute; z-index: -2; inset: 0; opacity: .28; background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 50px 50px; mask-image: linear-gradient(90deg, #000, transparent 72%); }
.hero__shape { position: absolute; z-index: -1; top: 4%; right: -10%; width: 58%; height: 94%; background: linear-gradient(135deg, rgba(245,184,0,.18), rgba(220,36,31,.04)); clip-path: polygon(22% 0, 100% 8%, 88% 88%, 5% 100%, 0 22%); }
.hero__layout { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(400px, .95fr); align-items: center; gap: 54px; padding-block: 54px 66px; }
.eyebrow { display: flex; align-items: center; gap: 11px; margin: 0 0 19px; color: var(--gold); font-size: 10px; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow span { width: 29px; height: 3px; background: currentColor; }
.eyebrow--dark { color: #987000; }
.hero__title { margin: 0; font-family: var(--display); font-size: clamp(48px, 5.7vw, 82px); font-weight: 900; letter-spacing: -.025em; line-height: .97; text-transform: uppercase; }
.title-line { display: block; overflow: hidden; padding-bottom: .04em; }
.title-line > span { display: block; }
.title-line--gold { color: var(--gold); }
.hero__lead { max-width: 600px; margin: 27px 0 0; color: #bdbdbd; font-size: 16px; line-height: 1.7; }
.hero__actions { display: flex; align-items: center; gap: 26px; margin-top: 34px; }
.hero__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 19px; margin: 46px 0 0; padding-top: 23px; border-top: 1px solid rgba(255, 255, 255, .15); }
.hero__stats dt { font-size: 14px; font-weight: 800; }
.hero__stats dd { margin: 5px 0 0; color: #858585; font-size: 9px; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
.hero__visual { position: relative; width: min(100%, 440px); align-self: start; justify-self: center; padding: 18px 0 42px 20px; }
.hero__visual::before { position: absolute; z-index: -1; top: 0; right: -20px; width: 94%; height: 88%; border: 2px solid var(--gold); content: ""; }
.hero__visual::after { position: absolute; z-index: -2; right: -44px; bottom: 20px; width: 88%; height: 86%; background: linear-gradient(145deg, rgba(245,184,0,.18), rgba(72,53,0,.08)); clip-path: polygon(12% 0, 100% 7%, 90% 100%, 0 91%); content: ""; }
.hero__frame { position: relative; z-index: 1; overflow: hidden; background: #090909; border: 1px solid rgba(255,255,255,.2); clip-path: polygon(8% 0, 100% 0, 100% 90%, 92% 100%, 0 100%, 0 10%); box-shadow: 0 30px 80px rgba(0,0,0,.55); }
.hero__frame img { width: 100%; height: auto; aspect-ratio: 1 / 1; object-fit: contain; transform: none; }
.hero__stamp { position: absolute; z-index: 2; top: 35px; right: 18px; transform: rotate(2deg); padding: 11px 16px 10px; background: var(--red); box-shadow: 6px 6px 0 rgba(0,0,0,.78); font-family: var(--display); line-height: 1; text-align: center; text-transform: uppercase; }
.hero__stamp span, .hero__stamp strong { display: block; }
.hero__stamp span { font-size: 13px; }
.hero__stamp strong { margin-top: 3px; font-size: 21px; }
.hero__availability { position: absolute; z-index: 3; bottom: 0; left: -14px; display: flex; align-items: center; gap: 14px; padding: 16px 20px; background: white; color: var(--ink); box-shadow: 0 18px 50px rgba(0,0,0,.4); }
.hero__availability i { width: 11px; height: 11px; border-radius: 50%; background: #11a348; box-shadow: 0 0 0 6px rgba(17,163,72,.12); }
.hero__availability small, .hero__availability strong { display: block; }
.hero__availability small { margin-bottom: 4px; color: #767676; font-size: 8px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.hero__availability strong { font-size: 11px; }
.hero__scroll-hint { position: absolute; bottom: 28px; left: 50%; display: flex; align-items: center; gap: 10px; transform: translateX(-50%); color: #747474; font-size: 8px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.hero__scroll-hint span { width: 35px; height: 1px; background: var(--gold); }

.retailers { border-block: 1px solid rgba(245,184,0,.35); background: #181818; color: white; }
.retailers__inner { min-height: 96px; display: flex; align-items: center; justify-content: center; gap: 46px; }
.retailers__inner > span { color: #999; font-size: 10px; font-weight: 750; letter-spacing: .15em; text-transform: uppercase; }
.retailers__names { display: flex; align-items: center; gap: 38px; }
.retailers__names strong { color: #f2f2f2; font-family: var(--body); font-size: 20px; font-weight: 700; letter-spacing: .075em; line-height: 1.3; text-transform: uppercase; }
.retailers__names i { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }

.section { padding-block: 110px; }
.section-heading { display: grid; grid-template-columns: 1.15fr .85fr; gap: 82px; align-items: end; margin-bottom: 49px; }
.section-heading h2, .process h2, .location h2, .faq h2, .final-cta h2, .motion-banner h2, .shipping h2 { margin: 0; font-family: var(--display); font-weight: 900; letter-spacing: -.02em; line-height: .98; text-transform: uppercase; }
.section-heading h2, .process h2, .location h2, .faq h2 { font-size: clamp(42px, 4.7vw, 66px); }
.section-heading > p { max-width: 470px; margin: 0; color: var(--muted); font-size: 15px; line-height: 1.72; }
.products__grid { max-width: 1080px; display: grid; grid-template-columns: repeat(4, 1fr); align-items: stretch; gap: 18px; margin-inline: auto; }
.product-card { position: relative; height: 100%; overflow: hidden; display: flex; flex-direction: column; background: white; border: 1px solid var(--line); transition: transform .22s ease, box-shadow .22s ease; }
.product-card:hover { transform: translateY(-7px); box-shadow: 0 22px 48px rgba(0,0,0,.12); }
.product-card figure { position: relative; overflow: hidden; margin: 0; background: #111; }
.product-card figure img { width: 100%; height: auto; aspect-ratio: 1 / 1; object-fit: cover; transition: transform .45s ease; }
.product-card:hover figure img { transform: scale(1.035); }
.product-card figure span { position: absolute; top: 0; left: 0; min-width: 48px; padding: 10px; background: var(--gold); font-family: var(--display); font-size: 17px; text-align: center; }
.product-card__body { flex: 1; display: flex; flex-direction: column; padding: 19px 18px 18px; }
.product-card__body small { color: #997100; font-size: 8px; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.product-card__body h3 { margin: 7px 0 9px; font-family: var(--display); font-size: 22px; letter-spacing: -.01em; line-height: 1.05; text-transform: uppercase; }
.product-card__body p { min-height: 58px; margin: 0; color: var(--muted); font-size: 12px; line-height: 1.55; }
.product-card__body a { display: flex; justify-content: space-between; gap: 12px; margin-top: auto; padding-top: 14px; border-top: 1px solid var(--line); font-size: 8px; font-weight: 850; letter-spacing: .05em; text-transform: uppercase; }
.product-card__body a:hover { color: #966e00; }
.category-cloud { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 27px; }
.category-cloud span { padding: 11px 14px; border: 1px solid #d5d0c4; background: #e7e2d7; font-size: 9px; font-weight: 800; letter-spacing: .055em; text-transform: uppercase; }
.stock-note { margin: 20px 0 0; color: #7f7b72; font-size: 10px; }

.motion-banner { position: relative; isolation: isolate; min-height: 630px; overflow: hidden; display: flex; align-items: center; color: white; background: #080808; }
.motion-banner__image, .motion-banner__overlay { position: absolute; z-index: -2; inset: 0; }
.motion-banner__image img { width: 100%; height: 120%; object-fit: cover; object-position: center; transform: translateY(-8%); }
.motion-banner__overlay { z-index: -1; background: linear-gradient(90deg, rgba(0,0,0,.94) 0%, rgba(0,0,0,.76) 43%, rgba(0,0,0,.18) 100%); }
.motion-banner__content { padding-block: 90px; }
.motion-banner h2 { max-width: 650px; font-size: clamp(55px, 7vw, 94px); }
.motion-banner .button { margin-top: 34px; }

.process { position: relative; overflow: hidden; background: var(--ink); color: white; }
.process__letter { position: absolute; right: -35px; top: -140px; color: rgba(255,255,255,.027); font-family: var(--display); font-size: 570px; line-height: 1; }
.process__layout { position: relative; display: grid; grid-template-columns: .8fr 1.2fr; gap: 110px; }
.process__intro > p:not(.eyebrow) { max-width: 450px; margin: 25px 0 34px; color: #9b9b9b; line-height: 1.7; }
.steps { list-style: none; margin: 0; padding: 0; border-top: 1px solid rgba(255,255,255,.16); }
.steps li { display: grid; grid-template-columns: 90px 1fr; gap: 20px; padding: 30px 0; border-bottom: 1px solid rgba(255,255,255,.16); }
.steps > li > strong { color: var(--gold); font-family: var(--display); font-size: 33px; }
.steps h3 { margin: 0 0 8px; font-family: var(--display); font-size: 26px; letter-spacing: -.01em; text-transform: uppercase; }
.steps p { margin: 0; color: #999; font-size: 14px; line-height: 1.6; }

.shipping { position: relative; overflow: hidden; background: var(--gold); }
.shipping__word { position: absolute; top: -65px; right: -15px; color: rgba(0,0,0,.06); font-family: var(--display); font-size: 205px; line-height: 1; }
.shipping__inner { position: relative; min-height: 235px; display: grid; grid-template-columns: 125px 1fr auto; align-items: center; gap: 35px; }
.shipping__icon { font-size: 72px; filter: grayscale(1) contrast(2); }
.shipping p { margin: 0 0 6px; font-size: 9px; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
.shipping h2 { max-width: 700px; font-size: clamp(36px, 4vw, 60px); }

.location { background: #111; color: white; }
.location__layout { display: grid; grid-template-columns: .8fr 1.2fr; min-height: 610px; border: 1px solid rgba(255,255,255,.13); }
.location__info { padding: 58px; background: #0a0a0a; }
.address { display: grid; grid-template-columns: 48px 1fr; gap: 16px; margin: 38px 0 30px; }
.address > span { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: var(--gold); color: var(--ink); font-size: 23px; }
.address strong { font-size: 14px; }
.address p { margin: 7px 0 0; color: #999; font-size: 13px; line-height: 1.56; }
.hours { margin: 0 0 32px; border-top: 1px solid rgba(255,255,255,.14); }
.hours div { display: flex; justify-content: space-between; gap: 20px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.14); font-size: 12px; }
.hours dt { color: #8e8e8e; }
.hours dd { margin: 0; font-weight: 750; }
.hours .closed { color: #ff5d55; text-transform: uppercase; }
.map { position: relative; min-height: 540px; overflow: hidden; background: #222; }
.map iframe { width: 100%; height: 100%; min-height: 610px; display: block; border: 0; filter: saturate(.8) contrast(1.03); }
.map__directions { position: absolute; right: 24px; bottom: 24px; min-width: 235px; display: grid; grid-template-columns: 43px 1fr auto; align-items: center; gap: 13px; padding: 14px 16px; border: 2px solid var(--ink); background: var(--gold); color: var(--ink); box-shadow: 7px 7px 0 rgba(0,0,0,.72); transition: transform .18s ease, background .18s ease; }
.map__directions:hover { transform: translateY(-3px); background: var(--gold-bright); }
.map__directions > span { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: var(--ink); color: var(--gold); font-size: 23px; }
.map__directions small, .map__directions strong { display: block; }
.map__directions small { margin-bottom: 3px; font-size: 8px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.map__directions strong { font-size: 14px; }
.map__directions b { font-size: 20px; }

.faq__layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; }
.faq header > p:not(.eyebrow) { max-width: 370px; margin-top: 22px; color: var(--muted); line-height: 1.65; }
.faq__items { border-top: 2px solid var(--ink); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { min-height: 77px; display: flex; align-items: center; justify-content: space-between; gap: 20px; list-style: none; cursor: pointer; font-size: 14px; font-weight: 800; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary span { font-size: 26px; font-weight: 500; transition: transform .2s ease, color .2s ease; }
.faq details[open] summary span { transform: rotate(45deg); color: var(--red); }
.faq details p { max-width: 680px; margin: -4px 40px 25px 0; color: var(--muted); font-size: 14px; line-height: 1.7; }

.final-cta { position: relative; overflow: hidden; padding-block: 96px; background: var(--gold); }
.final-cta__lines { position: absolute; inset: 0; opacity: .12; background: repeating-linear-gradient(130deg, transparent 0 28px, #000 29px 30px); }
.final-cta__inner { position: relative; text-align: center; }
.final-cta__inner > p { margin: 0 0 12px; font-size: 10px; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
.final-cta h2 { font-size: clamp(52px, 7vw, 92px); }
.final-cta__inner > div { display: flex; align-items: center; justify-content: center; gap: 26px; margin-top: 34px; }

.footer { padding-top: 55px; background: #080808; color: white; }
.footer__top { display: flex; align-items: center; justify-content: space-between; gap: 35px; }
.footer__top nav { display: flex; gap: 28px; }
.footer__top nav a { color: #c8c8c8; font-size: 10px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.footer__top nav a:hover { color: var(--gold); }
.footer__bottom { display: flex; justify-content: space-between; gap: 25px; margin-top: 38px; padding-block: 24px; border-top: 1px solid rgba(255,255,255,.1); color: #666; font-size: 9px; font-weight: 750; letter-spacing: .04em; text-transform: uppercase; }
.whatsapp-float { position: fixed; z-index: 90; right: 20px; bottom: 20px; min-height: 54px; display: flex; align-items: center; gap: 12px; padding: 0 11px 0 19px; border-radius: 99px; background: #14a74a; color: white; box-shadow: 0 12px 35px rgba(0,0,0,.3); font-size: 10px; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; transition: transform .2s ease; }
.whatsapp-float:hover { transform: translateY(-3px); }
.whatsapp-float__icon { width: 35px; height: 35px; flex: 0 0 35px; display: grid; place-items: center; border-radius: 50%; background: white; color: #14a74a; }
.whatsapp-float__icon svg { width: 21px; height: 21px; display: block; fill: currentColor; }

@media (max-width: 1050px) {
  .header__inner { gap: 20px; }
  .nav { display: none; }
  .hero__layout { grid-template-columns: minmax(0, 1fr) minmax(360px, .86fr); gap: 34px; }
  .hero__visual { width: min(100%, 410px); }
  .products__grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .process__layout, .faq__layout { gap: 60px; }
  .location__info { padding: 44px; }
}

@media (max-width: 780px) {
  :root { --header-height: 69px; }
  .container { width: min(100% - 28px, 1180px); }
  .topbar__inner { justify-content: flex-start; overflow: hidden; gap: 24px; white-space: nowrap; }
  .topbar__inner span:nth-child(2) { display: none; }
  .header__inner { position: relative; }
  .header__cta { display: none; }
  .brand img { width: 44px; height: 44px; }
  .brand__text strong { font-size: 14px; letter-spacing: .045em; }
  .brand__text small { font-size: 7px; }
  .menu-toggle { display: block; }
  .nav { position: fixed; inset: calc(34px + var(--header-height)) 0 auto; display: grid; gap: 0; padding: 10px 24px 28px; transform: translateY(-130%); visibility: hidden; background: rgba(8,8,8,.99); border-bottom: 1px solid rgba(245,184,0,.35); transition: transform .28s ease, visibility .28s ease; }
  .nav.is-open { transform: translateY(0); visibility: visible; }
  .nav a { padding: 19px 0; border-bottom: 1px solid rgba(255,255,255,.12); font-size: 14px; }
  .nav a::after { display: none; }
  .hero { min-height: auto; }
  .hero__layout { grid-template-columns: 1fr; padding-block: 62px 78px; }
  .hero__copy { text-align: center; }
  .hero .eyebrow { justify-content: center; }
  .hero__title { font-size: clamp(46px, 13.2vw, 78px); }
  .hero__lead { margin-inline: auto; font-size: 15px; }
  .hero__actions { justify-content: center; }
  .hero__stats { max-width: 560px; margin-inline: auto; }
  .hero__visual { width: min(100%, 440px); margin: 10px auto 0; padding-left: 0; }
  .hero__shape { top: 44%; width: 110%; height: 58%; }
  .hero__availability { left: -5px; }
  .hero__scroll-hint { display: none; }
  .retailers__inner { min-height: 0; display: block; padding-block: 25px; text-align: center; }
  .retailers__inner > span { display: block; margin-bottom: 20px; }
  .retailers__names { justify-content: center; flex-wrap: wrap; gap: 17px 27px; }
  .retailers__names strong { font-size: 18px; letter-spacing: .085em; }
  .section { padding-block: 80px; }
  .products__grid { grid-template-columns: repeat(2, 1fr); }
  .section-heading, .process__layout, .location__layout, .faq__layout { grid-template-columns: 1fr; }
  .section-heading { gap: 22px; margin-bottom: 38px; }
  .motion-banner { min-height: 540px; }
  .motion-banner__overlay { background: rgba(0,0,0,.72); }
  .process__layout { gap: 50px; }
  .shipping__inner { grid-template-columns: 70px 1fr; padding-block: 46px; }
  .shipping__icon { font-size: 52px; }
  .shipping .button { grid-column: 1 / -1; justify-self: start; }
  .location__layout { min-height: 0; }
  .map, .map iframe { min-height: 500px; }
  .final-cta__inner > div { flex-direction: column; }
  .footer__top { align-items: flex-start; flex-direction: column; }
  .footer__top nav { flex-wrap: wrap; }
}

@media (max-width: 520px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .button { width: 100%; }
  .hero__stats { gap: 10px; }
  .hero__stats dt { font-size: 11px; }
  .hero__stats dd { font-size: 7px; }
  .hero__stamp { top: 28px; right: 8px; }
  .hero__stamp strong { font-size: 18px; }
  .hero__availability { right: -4px; left: auto; }
  .retailers__names { display: grid; grid-template-columns: 1fr; gap: 16px; }
  .retailers__names i { display: none; }
  .retailers__names strong { font-size: 19px; }
  .products__grid { grid-template-columns: 1fr; }
  .product-card__body p { min-height: 0; }
  .section-heading h2, .process h2, .location h2, .faq h2 { font-size: 41px; }
  .motion-banner h2 { font-size: 55px; }
  .steps li { grid-template-columns: 52px 1fr; }
  .shipping__inner { grid-template-columns: 1fr; gap: 20px; }
  .shipping .button { grid-column: 1; width: 100%; }
  .location__info { padding: 35px 24px; }
  .location__info .button { width: 100%; padding-inline: 12px; font-size: 9px; }
  .hours div { flex-direction: column; gap: 6px; }
  .map, .map iframe { min-height: 420px; }
  .map__directions { right: 14px; bottom: 14px; left: 14px; min-width: 0; }
  .final-cta h2 { font-size: 55px; }
  .final-cta .button { width: 100%; padding-inline: 14px; font-size: 9px; }
  .footer__bottom { flex-direction: column; }
  .whatsapp-float { padding: 8px; min-height: 0; }
  .whatsapp-float__label { display: none; }
  .whatsapp-float__icon { width: 42px; height: 42px; flex-basis: 42px; }
  .whatsapp-float__icon svg { width: 24px; height: 24px; }
}

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