/* =========================================================
   EL GALLERO — sitio estático listo para Cloudflare Pages
   Estructura: index.html + css/style.css + js/main.js
   ========================================================= */

:root {
  --bg: #0b0807;
  --bg-soft: #15100e;
  --surface: #1c1411;
  --surface-2: #251915;
  --red: #d31318;
  --red-dark: #7d080b;
  --red-deep: #3a0506;
  --gold: #d9b45b;
  --gold-light: #f3dd9a;
  --cream: #f6efdf;
  --white: #fffdf8;
  --muted: #cdbfaf;
  --brown: #5e3524;
  --line: rgba(217, 180, 91, .27);
  --shadow: 0 24px 70px rgba(0, 0, 0, .42);
  --radius: 26px;
  --header-h: 84px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 12% 10%, rgba(211, 19, 24, .14), transparent 26rem),
    radial-gradient(circle at 90% 45%, rgba(217, 180, 91, .06), transparent 26rem),
    var(--bg);
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--cream);
  color: var(--bg);
  transform: translateY(-160%);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header-h);
  border-bottom: 1px solid transparent;
  transition: background-color .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}

.site-header.scrolled {
  background: rgba(11, 8, 7, .84);
  border-color: rgba(217, 180, 91, .14);
  backdrop-filter: blur(18px);
}

.header-shell {
  width: min(1180px, calc(100% - 36px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-mini {
  width: 116px;
  height: 58px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(217, 180, 91, .28);
  border-radius: 14px;
  background: rgba(255, 255, 255, .035);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .2);
}

.brand-mini img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
  color: var(--cream);
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 1px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(217, 180, 91, .25);
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  color: var(--white);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--gold-light);
  transition: transform .25s ease, opacity .25s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* HERO */
.hero {
  position: relative;
  min-height: 100svh;
  padding: calc(var(--header-h) + 76px) 0 72px;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(115deg, rgba(6, 4, 4, .95) 8%, rgba(43, 5, 6, .78) 53%, rgba(11, 8, 7, .9) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -4;
  opacity: .13;
  background-image:
    linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 92%);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -3;
  width: 68vw;
  height: 68vw;
  max-width: 900px;
  max-height: 900px;
  right: -20vw;
  top: 6vh;
  border: 1px solid rgba(217, 180, 91, .13);
  border-radius: 50%;
  box-shadow:
    0 0 0 90px rgba(217, 180, 91, .018),
    0 0 0 180px rgba(217, 180, 91, .01);
}

.hero-glow {
  position: absolute;
  z-index: -2;
  border-radius: 999px;
  filter: blur(90px);
  pointer-events: none;
}

.hero-glow-a {
  width: 410px;
  height: 410px;
  left: -180px;
  top: 23%;
  background: rgba(211, 19, 24, .28);
}

.hero-glow-b {
  width: 320px;
  height: 320px;
  right: 14%;
  bottom: 4%;
  background: rgba(217, 180, 91, .11);
}

.hero-grid {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  align-items: center;
  gap: clamp(34px, 6vw, 96px);
}

.eyebrow {
  margin: 0 0 15px;
  color: var(--gold-light);
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .23em;
  text-transform: uppercase;
}

.hero-copy h1,
.section-heading h2,
.brand-content h2,
.closing h2 {
  margin: 0;
  font-family: Rockwell, "Roboto Slab", "Palatino Linotype", Georgia, serif;
  line-height: .95;
  text-transform: uppercase;
}

.hero-copy h1 {
  max-width: 690px;
  font-size: clamp(4rem, 9.5vw, 8.6rem);
  letter-spacing: -.065em;
  color: var(--cream);
  text-shadow:
    0 4px 0 rgba(0,0,0,.45),
    0 0 44px rgba(211,19,24,.15);
}

.hero-copy h1 span {
  display: block;
  color: var(--gold-light);
  -webkit-text-stroke: 1px rgba(255, 255, 255, .08);
}

.hero-subtitle {
  margin: 22px 0 30px;
  color: var(--muted);
  font-family: Georgia, serif;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  min-height: 58px;
  padding: 0 12px 0 24px;
  border: 1px solid rgba(217, 180, 91, .42);
  border-radius: 999px;
  background: linear-gradient(120deg, rgba(211,19,24,.88), rgba(125,8,11,.88));
  box-shadow: 0 15px 40px rgba(211,19,24,.2);
  font-size: .86rem;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
  transition: transform .2s ease, box-shadow .2s ease;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 48px rgba(211,19,24,.3);
}

.cta-arrow {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold-light);
  color: var(--bg);
  font-size: 1.2rem;
}

.hero-chips {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-chips span {
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 999px;
  background: rgba(255,255,255,.035);
  color: var(--muted);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
}

.logo-frame {
  position: relative;
  padding: 16px;
  border: 1px solid rgba(217, 180, 91, .28);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.012)),
    rgba(11, 8, 7, .42);
  box-shadow: var(--shadow);
  transform: rotate(1.2deg);
  isolation: isolate;
}

.logo-frame::before {
  content: "";
  position: absolute;
  inset: 12%;
  z-index: -1;
  background: rgba(211, 19, 24, .35);
  filter: blur(64px);
}

.logo-frame img {
  width: 100%;
  aspect-ratio: 1080 / 718;
  object-fit: cover;
  border-radius: 23px;
  border: 1px solid rgba(255,255,255,.1);
}

.corner {
  position: absolute;
  width: 30px;
  height: 30px;
  border-color: var(--gold);
  z-index: 2;
}

.corner-tl {
  top: 7px; left: 7px;
  border-top: 2px solid; border-left: 2px solid;
}
.corner-tr {
  top: 7px; right: 7px;
  border-top: 2px solid; border-right: 2px solid;
}
.corner-bl {
  bottom: 7px; left: 7px;
  border-bottom: 2px solid; border-left: 2px solid;
}
.corner-br {
  bottom: 7px; right: 7px;
  border-bottom: 2px solid; border-right: 2px solid;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 20px;
  width: 26px;
  height: 42px;
  transform: translateX(-50%);
  border: 1px solid rgba(217, 180, 91, .34);
  border-radius: 999px;
}

.scroll-cue span {
  position: absolute;
  left: 50%;
  top: 8px;
  width: 4px;
  height: 8px;
  margin-left: -2px;
  border-radius: 99px;
  background: var(--gold-light);
  animation: scrollDot 1.8s ease-in-out infinite;
}

/* TICKER */
.ticker-section {
  overflow: hidden;
  border-block: 1px solid rgba(217, 180, 91, .15);
  background: linear-gradient(90deg, var(--red-deep), var(--red), var(--red-deep));
}

.ticker {
  overflow: hidden;
  padding: 13px 0;
}

.ticker-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 18px;
  animation: ticker 38s linear infinite;
}

.ticker-track span {
  color: var(--cream);
  font-family: Rockwell, Georgia, serif;
  font-size: .88rem;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker-track i {
  color: var(--gold-light);
  font-size: .48rem;
  font-style: normal;
}

/* GENERAL SECTIONS */
.section-pad {
  padding: clamp(82px, 10vw, 130px) 0;
}

.products {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 54px;
}

.section-heading h2 {
  font-size: clamp(3rem, 7vw, 6rem);
  letter-spacing: -.04em;
  color: var(--cream);
}

.section-heading > p:last-child {
  max-width: 560px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.category-label {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0 0 22px;
}

.category-label span {
  color: var(--gold-light);
  font-family: Rockwell, Georgia, serif;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.category-label .line {
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, rgba(217,180,91,.42), transparent);
}

.accessories-label {
  margin-top: 58px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
}

.product-card {
  position: relative;
  min-height: 230px;
  grid-column: span 4;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border: 1px solid rgba(217, 180, 91, .16);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 88% 8%, rgba(211,19,24,.16), transparent 10rem),
    linear-gradient(145deg, rgba(255,255,255,.035), transparent 55%),
    var(--surface);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.035);
  isolation: isolate;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: auto -36px -64px auto;
  width: 155px;
  height: 155px;
  border: 1px solid rgba(217,180,91,.12);
  border-radius: 50%;
  box-shadow: 0 0 0 22px rgba(217,180,91,.025), 0 0 0 44px rgba(217,180,91,.012);
  z-index: -1;
}

.product-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 54%;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  transform: scaleX(.28);
  transform-origin: left;
  transition: transform .25s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(217,180,91,.42);
  box-shadow: 0 22px 48px rgba(0,0,0,.24);
}

.product-card:hover::after {
  transform: scaleX(1);
}

.product-card.featured {
  grid-column: span 6;
  min-height: 270px;
  background:
    linear-gradient(135deg, rgba(211,19,24,.22), transparent 46%),
    linear-gradient(160deg, rgba(217,180,91,.07), transparent 62%),
    var(--surface-2);
}

.product-card.wide {
  grid-column: span 6;
}

.card-number {
  position: absolute;
  top: 22px;
  left: 24px;
  color: rgba(243,221,154,.65);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .14em;
}

.product-card h3 {
  max-width: 90%;
  margin: 0;
  color: var(--cream);
  font-family: Rockwell, "Palatino Linotype", Georgia, serif;
  font-size: clamp(1.45rem, 2.4vw, 2.45rem);
  line-height: 1.04;
  text-transform: uppercase;
}

.card-mark {
  position: absolute;
  top: 14px;
  right: 18px;
  color: rgba(255,255,255,.025);
  font-family: Rockwell, Georgia, serif;
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  transform: rotate(-7deg);
  user-select: none;
}

/* BRAND */
.brand-showcase {
  position: relative;
  padding: clamp(90px, 12vw, 150px) 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 24% 50%, rgba(217,180,91,.12), transparent 27rem),
    linear-gradient(115deg, #3c0506 0%, #b20e12 48%, #3b0506 100%);
}

.brand-showcase::before,
.brand-showcase::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(243,221,154,.16);
}

.brand-showcase::before {
  width: 420px;
  height: 420px;
  left: -170px;
  top: -210px;
}

.brand-showcase::after {
  width: 620px;
  height: 620px;
  right: -320px;
  bottom: -380px;
}

.brand-showcase-inner {
  position: relative;
  z-index: 1;
  width: min(1040px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(34px, 7vw, 90px);
  align-items: center;
}

.brand-logo {
  position: relative;
  display: grid;
  place-items: center;
}

.brand-logo-ring {
  position: absolute;
  width: 88%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(243,221,154,.22);
  box-shadow:
    0 0 0 24px rgba(243,221,154,.025),
    0 0 0 48px rgba(243,221,154,.012);
}

.brand-logo img {
  position: relative;
  width: 100%;
  border-radius: 26px;
  box-shadow: 0 28px 60px rgba(0,0,0,.32);
  transform: rotate(-1deg);
}

.brand-content .eyebrow {
  color: var(--cream);
  opacity: .78;
}

.brand-content h2 {
  color: var(--gold-light);
  font-size: clamp(3.1rem, 7.5vw, 7rem);
  letter-spacing: -.04em;
  text-shadow: 0 6px 0 rgba(70,0,0,.32);
}

.brand-tagline {
  margin: 18px 0 26px;
  color: var(--cream);
  font-family: Georgia, serif;
  font-size: clamp(1.25rem, 2.5vw, 1.8rem);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.brand-rule {
  width: min(320px, 100%);
  height: 1px;
  background: rgba(243,221,154,.24);
}

.brand-rule span {
  display: block;
  width: 42%;
  height: 2px;
  background: var(--gold-light);
}

/* CLOSING */
.closing {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.closing-card {
  position: relative;
  padding: clamp(32px, 6vw, 70px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: end;
  border: 1px solid rgba(217,180,91,.2);
  border-radius: 32px;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 12%, rgba(211,19,24,.18), transparent 18rem),
    linear-gradient(145deg, rgba(255,255,255,.038), transparent 45%),
    var(--surface);
  box-shadow: var(--shadow);
}

.closing-card::after {
  content: "EG";
  position: absolute;
  right: 7%;
  top: -18px;
  color: rgba(255,255,255,.025);
  font-family: Rockwell, Georgia, serif;
  font-size: clamp(8rem, 20vw, 17rem);
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}

.closing h2 {
  max-width: 700px;
  font-size: clamp(2.7rem, 6vw, 5.3rem);
  color: var(--cream);
}

.closing-list {
  max-width: 820px;
  margin: 26px 0 0;
  color: var(--muted);
}

.back-top {
  position: relative;
  z-index: 1;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  flex: none;
  border: 1px solid rgba(217,180,91,.4);
  border-radius: 50%;
  background: var(--red-dark);
  color: var(--gold-light);
  font-size: 1.45rem;
  transition: transform .2s ease, background-color .2s ease;
}

.back-top:hover {
  transform: translateY(-4px);
  background: var(--red);
}

/* FOOTER */
.footer {
  border-top: 1px solid rgba(217,180,91,.13);
  background: #070504;
}

.footer-inner {
  width: min(1180px, calc(100% - 36px));
  min-height: 116px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
}

.footer img {
  width: 88px;
  height: 56px;
  object-fit: cover;
  border: 1px solid rgba(217,180,91,.18);
  border-radius: 10px;
}

.footer strong {
  display: block;
  color: var(--gold-light);
  font-family: Rockwell, Georgia, serif;
  font-size: 1.02rem;
  letter-spacing: .08em;
}

.footer span,
.footer p {
  color: #9f9284;
  font-size: .8rem;
}

.footer p {
  margin: 0;
  text-align: right;
}

/* REVEAL
   Safe-by-default: the site is always visible even when JavaScript is blocked.
   JavaScript only adds subtle motion and interaction; it is never required
   to render the page. */
.reveal {
  opacity: 1;
  transform: none;
  transition:
    opacity .7s cubic-bezier(.2,.7,.2,1),
    transform .7s cubic-bezier(.2,.7,.2,1);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ANIMATIONS */
@keyframes ticker {
  to { transform: translateX(-50%); }
}

@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 0; }
  28% { opacity: 1; }
  100% { transform: translateY(17px); opacity: 0; }
}

/* TABLET */
@media (max-width: 900px) {
  :root { --header-h: 76px; }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-h) + 54px);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy h1 {
    margin-inline: auto;
  }

  .hero-chips {
    justify-content: center;
  }

  .hero-visual {
    width: min(720px, 100%);
    margin: 0 auto;
  }

  .scroll-cue {
    display: none;
  }

  .brand-showcase-inner {
    grid-template-columns: 1fr;
  }

  .brand-logo {
    width: min(620px, 100%);
    margin: 0 auto;
  }

  .brand-content {
    text-align: center;
  }

  .brand-rule {
    margin-inline: auto;
  }

  .product-card,
  .product-card.featured,
  .product-card.wide {
    grid-column: span 6;
  }
}

/* MOBILE */
@media (max-width: 700px) {
  .header-shell {
    width: min(100% - 24px, 1180px);
  }

  .brand-mini {
    width: 102px;
    height: 52px;
  }

  .menu-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: calc(var(--header-h) - 1px);
    left: 12px;
    right: 12px;
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid rgba(217,180,91,.2);
    border-radius: 18px;
    background: rgba(11, 8, 7, .97);
    box-shadow: 0 28px 60px rgba(0,0,0,.55);
    backdrop-filter: blur(18px);
    transform: translateY(-18px);
    opacity: 0;
    visibility: hidden;
    transition: transform .23s ease, opacity .23s ease, visibility .23s ease;
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .main-nav a {
    padding: 15px 14px;
    border-radius: 12px;
  }

  .main-nav a + a {
    border-top: 1px solid rgba(255,255,255,.055);
  }

  .main-nav a::after {
    display: none;
  }

  .hero-grid,
  .products,
  .closing,
  .brand-showcase-inner,
  .footer-inner {
    width: min(100% - 24px, 1180px);
  }

  .hero {
    padding-bottom: 48px;
  }

  .hero-copy h1 {
    font-size: clamp(3.3rem, 20vw, 5.7rem);
  }

  .hero-subtitle {
    margin-top: 16px;
  }

  .cta {
    min-height: 54px;
  }

  .logo-frame {
    padding: 10px;
    border-radius: 24px;
    transform: none;
  }

  .logo-frame img {
    border-radius: 17px;
  }

  .section-pad {
    padding-block: 78px;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .product-card,
  .product-card.featured,
  .product-card.wide {
    grid-column: auto;
    min-height: 180px;
  }

  .product-card h3 {
    font-size: 1.6rem;
  }

  .accessories-label {
    margin-top: 46px;
  }

  .brand-showcase {
    padding-block: 86px;
  }

  .brand-content h2 {
    font-size: clamp(3rem, 17vw, 5rem);
  }

  .closing-card {
    grid-template-columns: 1fr;
    border-radius: 24px;
  }

  .back-top {
    width: 56px;
    height: 56px;
  }

  .footer-inner {
    min-height: 150px;
    grid-template-columns: auto 1fr;
    padding-block: 22px;
  }

  .footer p {
    grid-column: 1 / -1;
    text-align: left;
    margin-top: -8px;
  }
}

/* SMALL MOBILE */
@media (max-width: 390px) {
  .eyebrow {
    font-size: .7rem;
  }

  .hero-copy h1 {
    font-size: 3.6rem;
  }

  .cta {
    width: 100%;
    justify-content: space-between;
  }

  .product-card {
    padding: 22px;
  }
}

/* REDUCED MOTION */
@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;
  }
}
