:root {
  --bg: #050506;
  --panel: rgba(23, 23, 26, 0.76);
  --panel-strong: rgba(14, 14, 16, 0.88);
  --text: #f6f3ef;
  --muted: #c8c2bd;
  --red: #ff2638;
  --red-deep: #9c0d18;
  --gold: #f3c453;
  --line: rgba(255, 255, 255, 0.14);
  --glass: rgba(255, 255, 255, 0.08);
  --shadow: 0 24px 90px rgba(0, 0, 0, 0.45);
  color-scheme: dark;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 8% 35%, rgba(255, 38, 56, 0.16), transparent 28rem),
    radial-gradient(circle at 96% 62%, rgba(243, 196, 83, 0.1), transparent 24rem),
    var(--bg);
  color: var(--text);
  font-family: "Noto Sans TC", "Microsoft JhengHei", system-ui, sans-serif;
  overflow-x: hidden;
}

.admin-page {
  min-height: 100vh;
}

.admin-page .admin-panel {
  min-height: 100vh;
  display: grid;
  align-content: center;
}

.admin-page h1 {
  margin: 0;
  font-size: clamp(2.9rem, 5vw, 5.4rem);
  line-height: 1;
  font-weight: 1000;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  padding: .75rem 1rem;
  background: var(--red);
  color: white;
  border-radius: 8px;
}

.skip-link:focus { top: 1rem; }

.hud-progress {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 90;
  height: 3px;
  background: rgba(255,255,255,.05);
}

.hud-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform-origin: left;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--red), var(--gold), var(--red));
  box-shadow: 0 0 18px rgba(255,38,56,.9);
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 1.5rem;
  padding: 0 clamp(1rem, 4vw, 4.5rem);
  background: rgba(0, 0, 0, 0.58);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  line-height: 1;
  filter: drop-shadow(0 0 18px rgba(255,38,56,.38));
  animation: logo-glow 3.2s ease-in-out infinite;
  padding: .45rem .7rem .4rem;
  border: 1px solid rgba(255, 214, 10, .42);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 38, 56, .22), rgba(0, 0, 0, .78));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08), 0 0 22px rgba(255, 38, 56, .18);
}

.brand-title {
  display: block;
  font-size: clamp(1.75rem, 2.45vw, 2.6rem);
  font-weight: 950;
  letter-spacing: 0;
  color: var(--gold);
  text-shadow: 2px 2px 0 #000, 0 0 18px rgba(255, 214, 10, .34);
}

.brand-mark {
  display: block;
  margin-top: .28rem;
  color: var(--red);
  font-size: .86rem;
  font-weight: 900;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 3vw, 3.2rem);
  font-weight: 800;
}

.nav-links a {
  position: relative;
  color: rgba(255,255,255,.78);
  padding: 1.6rem .1rem;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1rem;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform .25s ease;
}

.nav-links a:hover,
.nav-links a.is-active { color: white; }
.nav-links a:hover::after,
.nav-links a.is-active::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: .7rem; }
.icon-button,
.lang-toggle,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 8px;
  font-weight: 900;
}

.icon-button {
  width: 44px;
  border: 1px solid transparent;
  color: white;
  font-size: 1.8rem;
}

.lang-toggle {
  padding: 0 1rem;
  border: 1px solid rgba(243,196,83,.42);
  background: rgba(243,196,83,.08);
  color: var(--gold);
  cursor: pointer;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--glass);
  border-radius: 8px;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: white;
}

.promo-carousel {
  position: relative;
  min-height: auto;
  display: grid;
  align-items: center;
  padding: clamp(3.5rem, 7vw, 6rem) clamp(1rem, 4vw, 4.5rem);
  border-bottom: 1px solid rgba(255,255,255,.08);
  background:
    radial-gradient(circle at 75% 28%, rgba(255,38,56,.18), transparent 24rem),
    radial-gradient(circle at 28% 74%, rgba(243,196,83,.1), transparent 26rem),
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(0,0,0,.34));
  overflow: hidden;
}

.promo-carousel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .18;
  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: 58px 58px;
  mask-image: linear-gradient(180deg, transparent, #000 14%, #000 88%, transparent);
}

.promo-carousel-shell {
  position: relative;
  z-index: 1;
  width: min(88rem, 100%);
  min-height: clamp(24rem, 42vw, 34rem);
  margin: 0 auto;
  border: 1px solid rgba(255, 38, 56, .35);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255,38,56,.2), transparent 36%),
    rgba(9,9,12,.78);
  box-shadow: 0 34px 98px rgba(0,0,0,.55), inset 0 1px 0 rgba(255,255,255,.1);
}

.promo-carousel-track {
  display: flex;
  min-height: inherit;
  transition: transform .55s ease;
  will-change: transform;
}

.promo-slide {
  position: relative;
  min-width: 100%;
  min-height: inherit;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(19rem, 1fr);
  align-items: center;
  gap: clamp(1rem, 4vw, 4rem);
  padding: clamp(2rem, 5vw, 5.2rem);
  overflow: hidden;
}

.promo-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0,0,0,.76), rgba(0,0,0,.22), rgba(0,0,0,.78)),
    radial-gradient(circle at 72% 48%, rgba(255,38,56,.2), transparent 28rem);
}

.promo-copy,
.promo-visual {
  position: relative;
  z-index: 1;
}

.promo-copy h2 {
  margin: 0;
  font-size: clamp(2.4rem, 4.8vw, 5rem);
  line-height: .95;
  font-weight: 1000;
  text-shadow: 0 0 34px rgba(255,38,56,.28);
}

.promo-copy p:not(.eyebrow) {
  max-width: 36rem;
  margin: 1.1rem 0;
  color: rgba(255,255,255,.84);
  font-size: clamp(1rem, 1.45vw, 1.25rem);
  line-height: 1.8;
}

.promo-deal {
  display: inline-flex;
  align-items: center;
  min-height: 2.25rem;
  padding: 0 .9rem;
  border: 1px solid rgba(255,214,10,.55);
  border-radius: 999px;
  color: var(--gold);
  background: rgba(255,214,10,.12);
  font-weight: 950;
}

.promo-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: .65rem;
  margin: 1rem 0 1.35rem;
}

.promo-price strong {
  color: var(--gold);
  font-size: clamp(2rem, 3.6vw, 3.4rem);
  font-weight: 1000;
}

.promo-price s {
  color: rgba(255,255,255,.48);
  font-weight: 850;
}

.promo-price em {
  color: white;
  border-radius: 999px;
  padding: .18rem .55rem;
  background: rgba(255,38,56,.85);
  font-style: normal;
  font-weight: 950;
}

.promo-visual {
  display: grid;
  place-items: center;
  min-height: clamp(16rem, 28vw, 26rem);
}

.promo-visual img {
  max-height: clamp(16rem, 28vw, 26rem);
  width: min(100%, 36rem);
  object-fit: contain;
  padding: clamp(.6rem, 1.5vw, 1rem);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,38,56,.08)),
    rgba(0,0,0,.34);
  filter: drop-shadow(0 26px 44px rgba(0,0,0,.42));
}

.promo-arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  color: white;
  background: rgba(0,0,0,.54);
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
  backdrop-filter: blur(10px);
}

.promo-arrow:hover {
  border-color: rgba(255,214,10,.65);
  color: var(--gold);
}

.promo-arrow-left { left: 1rem; }
.promo-arrow-right { right: 1rem; }

.promo-dots {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 1rem;
  display: flex;
  gap: .45rem;
  transform: translateX(-50%);
}

.promo-dots button {
  width: .58rem;
  height: .58rem;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 999px;
  padding: 0;
  background: rgba(255,255,255,.4);
  cursor: pointer;
}

.promo-dots button.is-active {
  width: 1.65rem;
  border-color: var(--gold);
  background: var(--gold);
}

.hero {
  position: relative;
  min-height: 100svh;
  isolation: isolate;
  overflow: hidden;
  padding: 164px clamp(1rem, 4vw, 4.5rem) 112px;
  display: grid;
  align-items: center;
}

.particle-layer,
.hero-bg,
.hero-grid,
.hero-vignette,
.hud-lines,
.neon-bar {
  position: absolute;
  inset: 0;
}

.particle-layer { z-index: 4; opacity: .58; pointer-events: none; }

.performance-lite .particle-layer {
  display: none;
}

.performance-lite .hero-grid,
.performance-lite .hud-lines,
.performance-lite .pulse-button,
.performance-lite .manager,
.performance-lite .black-cat,
.performance-lite .white-poodle,
.performance-lite .speech-bubble {
  animation: none !important;
}

.performance-lite .hero-grid,
.performance-lite .hud-lines {
  opacity: .14;
}

.performance-lite .hero-vignette {
  box-shadow: inset 0 0 8rem rgba(0,0,0,.82);
}

.hero-bg {
  z-index: 0;
  transform: scale(1.05);
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.9) 0%, rgba(0,0,0,.55) 28%, rgba(0,0,0,.24) 58%, rgba(0,0,0,.68) 100%),
    linear-gradient(180deg, rgba(0,0,0,.58), transparent 42%, rgba(0,0,0,.9));
}

.hero-grid {
  z-index: 1;
  opacity: .24;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, transparent, black 25%, black 80%, transparent);
  animation: grid-flow 24s linear infinite;
}

.hud-lines {
  z-index: 3;
  opacity: .24;
  background:
    linear-gradient(115deg, transparent 0 28%, rgba(255,38,56,.35) 29%, transparent 30% 100%),
    linear-gradient(65deg, transparent 0 64%, rgba(243,196,83,.2) 65%, transparent 66% 100%);
  background-size: 260px 180px;
  animation: hud-flow 18s linear infinite;
}

.hero-vignette {
  z-index: 2;
  pointer-events: none;
  box-shadow: inset 0 0 14rem rgba(0,0,0,.9);
}

.neon-bar {
  z-index: 6;
  top: auto;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--red), var(--gold), var(--red), transparent);
  filter: drop-shadow(0 0 18px var(--red));
}

.hero-copy {
  position: relative;
  z-index: 12;
  width: min(43rem, 47vw);
  margin-top: -3rem;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--red);
  font-size: .82rem;
  font-weight: 950;
  letter-spacing: .34em;
}

.hero h1 {
  margin: 0;
  font-size: clamp(4.4rem, 11vw, 11.2rem);
  line-height: .86;
  font-weight: 1000;
  text-shadow: 0 0 34px rgba(255,255,255,.22), 0 0 52px rgba(255,38,56,.28);
}

.hero-subtitle {
  margin: .85rem 0 0;
  color: var(--red);
  font-size: clamp(2rem, 4.4vw, 4.6rem);
  line-height: 1;
  font-weight: 950;
}

.hero-text,
.section-note {
  max-width: 42rem;
  color: rgba(255,255,255,.84);
  font-size: clamp(1rem, 1.5vw, 1.28rem);
  line-height: 1.8;
}

.section-note {
  margin: 1rem auto 0;
  color: var(--muted);
  text-align: center;
}

.hero-feature-row,
.hero-cta,
.hero-category-strip {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

.hero-feature-row span {
  min-width: 8.5rem;
  padding: .95rem 1rem;
  border: 1px solid var(--line);
  background: rgba(0,0,0,.42);
  border-radius: 8px;
  font-weight: 850;
  backdrop-filter: blur(12px);
}

.hero-cta { margin-top: 2rem; }

.primary-button,
.secondary-button {
  min-width: min(100%, 17rem);
  padding: 0 1.35rem;
  border: 1px solid var(--line);
  cursor: pointer;
}

.primary-button {
  background: linear-gradient(135deg, #ff1f35, #bd111f);
  box-shadow: 0 0 34px rgba(255,38,56,.42);
  color: white;
}

.secondary-button {
  background: rgba(0,0,0,.48);
  color: white;
  backdrop-filter: blur(12px);
}

.pulse-button {
  animation: button-breathe 4.2s ease-in-out infinite;
}

.mobile-hero-flow,
.mobile-feature-band { display: none; }

.character-stage {
  position: absolute;
  inset: 0;
  z-index: 10;
  pointer-events: none;
}

.manager {
  position: absolute;
  right: clamp(16rem, 24vw, 34rem);
  bottom: -15vh;
  width: min(41vw, 43rem);
  filter: drop-shadow(0 32px 44px rgba(0,0,0,.7));
  animation: float 6s ease-in-out infinite;
}

.black-cat {
  position: absolute;
  right: clamp(39rem, 49vw, 57rem);
  bottom: 6vh;
  width: min(17vw, 15rem);
  filter: drop-shadow(0 20px 30px rgba(0,0,0,.7));
  transform-origin: 50% 82%;
  animation: pet-breathe 3.4s ease-in-out infinite;
}

.white-poodle {
  position: absolute;
  right: clamp(4rem, 10vw, 13rem);
  bottom: 5vh;
  width: min(21vw, 18rem);
  filter: drop-shadow(0 20px 32px rgba(0,0,0,.74));
  transform-origin: 50% 88%;
  animation: pet-breathe 3s ease-in-out infinite .3s;
}

.speech-bubble {
  position: absolute;
  z-index: 16;
  max-width: 16.5rem;
  padding: 1.05rem 1.2rem;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 8px;
  background: rgba(255,255,255,.88);
  color: #171717;
  font-weight: 950;
  line-height: 1.65;
  box-shadow: var(--shadow);
  animation: float 5s ease-in-out infinite;
}

.speech-bubble::after {
  content: "";
  position: absolute;
  left: 22%;
  bottom: -14px;
  width: 24px;
  height: 24px;
  background: inherit;
  transform: rotate(45deg);
  border-right: 1px solid rgba(255,255,255,.5);
  border-bottom: 1px solid rgba(255,255,255,.5);
}

.bubble-main { right: 25vw; top: 17vh; }
.bubble-cat { right: 51vw; top: 38vh; max-width: 9.2rem; }
.bubble-dog { right: 11vw; top: 47vh; max-width: 12rem; }

.quick-rail {
  position: fixed;
  z-index: 45;
  right: 1.4rem;
  top: 50%;
  transform: translateY(-50%);
  width: 96px;
  display: grid;
  border: 1px solid var(--line);
  background: rgba(12,12,13,.62);
  border-radius: 8px;
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.quick-rail a {
  min-height: 84px;
  display: grid;
  place-items: center;
  padding: .8rem;
  border-bottom: 1px solid var(--line);
  color: rgba(255,255,255,.8);
  text-align: center;
  font-size: .84rem;
  font-weight: 850;
}

.quick-rail a:last-child { border-bottom: 0; }
.quick-rail a:hover { color: var(--gold); background: rgba(255,255,255,.08); }

.hero-category-strip {
  position: absolute;
  z-index: 17;
  left: clamp(1rem, 4vw, 4.5rem);
  right: clamp(1rem, 9vw, 8rem);
  bottom: 1.45rem;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: .75rem;
}

.hero-category-strip a {
  min-height: 70px;
  display: flex;
  align-items: center;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(0,0,0,.54);
  font-weight: 950;
  backdrop-filter: blur(14px);
}

.section {
  position: relative;
  padding: clamp(5rem, 9vw, 8rem) clamp(1rem, 6vw, 7rem);
  border-top: 1px solid rgba(255,255,255,.08);
}

.home-priority {
  padding-block: clamp(3.75rem, 7vw, 6rem);
  background:
    radial-gradient(circle at 14% 16%, rgba(255, 38, 56, .18), transparent 22rem),
    radial-gradient(circle at 86% 82%, rgba(255, 214, 10, .12), transparent 24rem),
    linear-gradient(180deg, rgba(255,255,255,.035), rgba(0,0,0,.18));
}

.home-priority .section-heading {
  margin-bottom: clamp(1.6rem, 3vw, 2.4rem);
}

.home-priority .offer-grid {
  width: min(78rem, 100%);
  margin-inline: auto;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(90deg, transparent, rgba(255,38,56,.08), transparent);
  opacity: .5;
  transform: translateX(-100%);
  animation: section-scan 7s linear infinite;
}

.section-heading {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section h2,
.store h2 {
  margin: 0;
  font-size: clamp(2.9rem, 5vw, 5.4rem);
  line-height: 1;
  font-weight: 1000;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-card,
.offer-grid article,
.feature-grid article,
.review-layout,
.local-review-form,
.admin-form,
.store-grid a {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255,255,255,.1), rgba(255,255,255,.035));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 13.5rem;
  padding: clamp(1.25rem, 2.4vw, 2rem);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent, rgba(255,38,56,.18), transparent);
  transform: translateX(-120%);
  transition: transform .7s ease;
}

.service-card:hover::before { transform: translateX(120%); }

.service-card span,
.offer-grid span,
.feature-grid span {
  color: var(--gold);
  font-weight: 950;
}

.service-card h3,
.offer-grid h3,
.feature-grid h3,
.local-review-form h3 {
  margin: .65rem 0 .7rem;
  font-size: clamp(1.45rem, 2vw, 2.1rem);
}

.service-card p,
.offer-grid p,
.feature-grid p,
.store-copy p,
.local-review-form p,
.admin-status {
  color: var(--muted);
  line-height: 1.8;
}

.offer-grid,
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.feature-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.offer-grid article,
.feature-grid article {
  padding: clamp(1.35rem, 3vw, 2.1rem);
  min-height: 13rem;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.service-card:hover,
.offer-grid article:hover,
.feature-grid article:hover,
.store-grid a:hover {
  transform: translateY(-8px);
  border-color: rgba(255,38,56,.5);
  background: linear-gradient(135deg, rgba(255,38,56,.16), rgba(255,255,255,.04));
}

.review-layout {
  display: grid;
  grid-template-columns: minmax(14rem, 22rem) 1fr;
  gap: 1rem;
  padding: 1rem;
}

.rating-panel {
  display: grid;
  place-items: center;
  gap: .8rem;
  text-align: center;
  min-height: 20rem;
  background: rgba(0,0,0,.38);
  border-radius: 8px;
  padding: 1.5rem;
}

.rating-panel strong { font-size: 5rem; }
.rating-panel span,
.review-list span { color: #ffc400; letter-spacing: .1em; }
.rating-panel p { color: var(--muted); }
.review-list { display: grid; gap: .8rem; }
.review-list article {
  padding: 1rem 1.2rem;
  border-bottom: 1px solid var(--line);
}
.review-list article:last-child { border-bottom: 0; }
.review-list p { color: var(--muted); }

.local-review-form,
.admin-form {
  width: min(58rem, 100%);
  margin: 1.5rem auto 0;
  padding: clamp(1.25rem, 3vw, 2rem);
}

.local-review-form label,
.admin-form label {
  display: grid;
  gap: .45rem;
  color: rgba(255,255,255,.82);
  font-weight: 800;
}

.local-review-form input,
.local-review-form textarea,
.admin-form input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(0,0,0,.38);
  color: white;
  padding: .9rem 1rem;
  font: inherit;
}

.admin-form input:focus,
.local-review-form input:focus,
.local-review-form textarea:focus {
  border-color: rgba(255,38,56,.72);
  outline: 2px solid rgba(255,38,56,.18);
}

.local-review-form {
  display: grid;
  gap: 1rem;
}

.thank-you-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(0,0,0,.66);
  backdrop-filter: blur(12px);
}

.thank-you-modal[hidden] { display: none; }

.thank-you-card {
  position: relative;
  width: min(28rem, 100%);
  padding: 2rem;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255,38,56,.16), rgba(18,18,20,.96));
  box-shadow: 0 0 80px rgba(255,38,56,.28);
  text-align: center;
  animation: pop-in .32s ease-out both;
}

.thank-you-card button {
  position: absolute;
  right: .85rem;
  top: .65rem;
  border: 0;
  background: transparent;
  color: white;
  font-size: 1.8rem;
  cursor: pointer;
}

.thank-you-card strong {
  display: block;
  font-size: 2rem;
  margin-bottom: .8rem;
}

.store {
  display: grid;
  grid-template-columns: minmax(18rem, .8fr) 1.2fr;
  gap: 2rem;
  align-items: center;
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.store-grid a {
  display: grid;
  gap: .5rem;
  padding: 1.5rem;
  min-height: 7.5rem;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.store-grid b { font-size: 1.35rem; }
.store-grid span { color: var(--muted); }

.admin-panel {
  background: linear-gradient(180deg, rgba(255,38,56,.05), rgba(0,0,0,.22));
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.25rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem clamp(1rem, 6vw, 7rem);
  color: rgba(255,255,255,.58);
  border-top: 1px solid rgba(255,255,255,.08);
}

.reveal-ready,
.reveal-card {
  opacity: 0;
  transform: translateY(28px) scale(.98);
  transition: opacity .46s ease, transform .46s cubic-bezier(.2, .75, .22, 1);
  transition-delay: var(--delay, 0ms);
}

.service-card,
.offer-grid > article,
.feature-grid > article,
.review-layout,
.local-review-form,
.store-grid > a {
  content-visibility: auto;
  contain-intrinsic-size: 320px;
}

.reveal-ready.is-visible,
.reveal-card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes logo-glow {
  0%, 100% { filter: drop-shadow(0 0 12px rgba(255,38,56,.32)); }
  50% { filter: drop-shadow(0 0 24px rgba(255,38,56,.72)); }
}

@keyframes button-breathe {
  0%, 100% { transform: scale(1); box-shadow: 0 0 24px rgba(255,38,56,.32); }
  50% { transform: scale(1.025); box-shadow: 0 0 42px rgba(255,38,56,.56); }
}

@keyframes grid-flow {
  from { background-position: 0 0; }
  to { background-position: 112px 112px; }
}

@keyframes hud-flow {
  from { background-position: 0 0, 0 0; }
  to { background-position: 260px 180px, -260px 180px; }
}

@keyframes section-scan {
  0%, 40% { transform: translateX(-100%); }
  70%, 100% { transform: translateX(100%); }
}

@keyframes float {
  0%, 100% { transform: translate3d(var(--mx, 0), var(--my, 0), 0); }
  50% { transform: translate3d(calc(var(--mx, 0) + 0px), calc(var(--my, 0) - 12px), 0); }
}

@keyframes pet-breathe {
  0%, 100% { transform: translate3d(var(--mx, 0), var(--my, 0), 0) scale(1); }
  50% { transform: translate3d(var(--mx, 0), calc(var(--my, 0) - 8px), 0) scale(1.025); }
}

@keyframes pop-in {
  from { opacity: 0; transform: translateY(14px) scale(.94); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 1180px) {
  .site-header { grid-template-columns: auto 1fr auto; }
  .nav-links {
    position: fixed;
    inset: 76px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: rgba(0,0,0,.92);
    border-bottom: 1px solid var(--line);
  }
  body.menu-open .nav-links { display: flex; }
  .nav-links a { padding: .9rem; }
  .menu-button { display: block; }
  .hero {
    min-height: 980px;
    padding: 158px 2rem 150px;
  }
  .hero-bg img { object-position: center bottom; }
  .hero-copy {
    width: min(38rem, 58vw);
    margin-top: -1.5rem;
  }
  .hero h1 { font-size: clamp(4rem, 12vw, 7rem); }
  .hero-subtitle { font-size: clamp(2.1rem, 5vw, 3.6rem); }
  .manager {
    right: 4vw;
    bottom: 13.5rem;
    width: min(52vw, 35rem);
    opacity: .94;
  }
  .black-cat {
    right: 32vw;
    bottom: 13.5rem;
    width: min(20vw, 13rem);
  }
  .white-poodle {
    right: 2vw;
    bottom: 13rem;
    width: min(23vw, 15rem);
  }
  .bubble-main { right: 10vw; top: 17vh; }
  .bubble-cat,
  .bubble-dog { display: none; }
  .quick-rail { display: none; }
  .hero-category-strip {
    left: 2rem;
    right: 2rem;
    bottom: 1.8rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .service-grid,
  .feature-grid,
  .admin-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 780px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }
  .site-header {
    min-height: 68px;
    padding-inline: 24px 20px;
  }
  .site-marquee {
    inset: 68px 20px auto;
    min-height: 3.85rem;
  }
  .site-marquee-label {
    min-width: 6.35rem;
    padding: 0 .75rem;
    font-size: .82rem;
  }
  .site-marquee-track {
    gap: 3rem;
    animation-duration: 22s;
  }
  .site-marquee-track p {
    font-size: .98rem;
  }
  .header-actions { gap: .4rem; }
  .icon-button { display: none; }
  .brand-title { font-size: 1.55rem; }
  .brand-mark { font-size: .72rem; }
  .nav-links {
    inset: 68px 0 auto 0;
    padding: .8rem 20px 1rem;
  }
  .hero {
    min-height: 1080px;
    min-height: clamp(1000px, 126svh, 1100px);
    padding: 150px 24px 172px;
    align-items: start;
    display: block;
    overflow: hidden;
  }
  .hero-bg {
    transform: scale(1.12) translate3d(calc(var(--mx, 0) * .16), calc(var(--my, 0) * .12), 0);
  }
  .hero-bg img { object-position: center bottom; }
  .hero-bg::after {
    background:
      linear-gradient(180deg, rgba(0,0,0,.96) 0%, rgba(0,0,0,.82) 24%, rgba(0,0,0,.5) 52%, rgba(0,0,0,.96) 100%),
      radial-gradient(circle at 63% 48%, rgba(255,255,255,.2), transparent 18%),
      radial-gradient(circle at 55% 60%, rgba(255,38,56,.24), transparent 38%);
  }
  .hero-vignette {
    box-shadow:
      inset 0 0 7rem rgba(0,0,0,.95),
      inset 0 -16rem 10rem rgba(0,0,0,.86);
  }
  .hud-lines {
    opacity: .2;
    background-size: 190px 132px;
    transform: translate3d(calc(var(--mx, 0) * .35), calc(var(--my, 0) * .35), 0);
  }
  .hero-copy {
    display: flex;
    flex-direction: column;
    gap: .68rem;
    width: 100%;
    max-width: 22.5rem;
    margin-top: 0;
    padding-left: .35rem;
    padding-bottom: 0;
    position: relative;
    z-index: 24;
  }
  .hero .eyebrow {
    font-size: .72rem;
    line-height: 1.45;
    max-width: 19rem;
    margin-bottom: .45rem;
  }
  .hero h1 {
    font-size: clamp(3.25rem, 16vw, 4rem);
    line-height: .92;
    max-width: 8.5em;
  }
  .hero-subtitle {
    margin: 0;
    font-size: clamp(1.56rem, 7.9vw, 2.02rem);
    line-height: 1.08;
  }
  .hero-text {
    margin: .1rem 0 0;
    max-width: 21rem;
    font-size: .98rem;
    line-height: 1.65;
  }
  .hero-copy > .hero-feature-row,
  .hero-copy > .hero-cta {
    display: none;
  }
  .mobile-hero-flow {
    position: absolute;
    z-index: 26;
    left: 24px;
    right: 24px;
    bottom: 8.55rem;
    display: grid;
    gap: .85rem;
  }
  .mobile-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .7rem;
    width: 100%;
  }
  .mobile-feature-grid span {
    min-width: 0;
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: .8rem .65rem;
    border-color: rgba(255,255,255,.18);
    background:
      linear-gradient(145deg, rgba(255,255,255,.16), rgba(255,255,255,.045)),
      rgba(0,0,0,.34);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.16), 0 12px 34px rgba(0,0,0,.3);
    backdrop-filter: blur(18px);
    line-height: 1.25;
    text-align: center;
    font-weight: 950;
    border-radius: 8px;
  }
  .mobile-hero-cta {
    display: grid;
    grid-template-columns: 1fr;
    gap: .75rem;
    width: 100%;
  }
  .primary-button,
  .secondary-button {
    width: 100%;
    min-width: 0;
    min-height: 54px;
    padding: 0 1rem;
    line-height: 1.25;
    text-align: center;
  }
  .hero .primary-button,
  .hero .secondary-button {
    border-color: rgba(255,255,255,.18);
    background:
      linear-gradient(145deg, rgba(255,255,255,.16), rgba(255,255,255,.045)),
      rgba(0,0,0,.46);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.16), 0 14px 42px rgba(0,0,0,.42);
    backdrop-filter: blur(18px);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  }
  .hero .primary-button {
    background:
      linear-gradient(135deg, rgba(255,42,60,.96), rgba(189,17,31,.94)),
      rgba(255,38,56,.32);
    box-shadow: 0 0 24px rgba(255,38,56,.34), 0 18px 44px rgba(0,0,0,.48);
  }
  .hero .primary-button:hover,
  .hero .secondary-button:hover {
    transform: translateY(-2px);
    border-color: rgba(243,196,83,.5);
    box-shadow: 0 0 32px rgba(255,38,56,.35), 0 20px 48px rgba(0,0,0,.52);
  }
  .character-stage {
    z-index: 12;
  }
  .character-stage::before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 15%;
    right: -18%;
    top: 29%;
    height: 36%;
    background:
      radial-gradient(circle at 58% 46%, rgba(255,255,255,.2), transparent 24%),
      radial-gradient(circle at 55% 54%, rgba(255,38,56,.2), transparent 46%);
    filter: blur(18px);
    opacity: .86;
  }
  .manager {
    right: -12.4rem;
    bottom: 23.3rem;
    width: clamp(28rem, 123vw, 34.2rem);
    max-width: none;
    opacity: .98;
    z-index: 9;
    filter:
      drop-shadow(0 34px 44px rgba(0,0,0,.72))
      drop-shadow(0 0 30px rgba(255,38,56,.26));
  }
  .black-cat {
    left: 1rem;
    right: auto;
    bottom: 27.1rem;
    width: clamp(7.5rem, 30vw, 9.5rem);
    z-index: 10;
    filter:
      drop-shadow(0 18px 24px rgba(0,0,0,.72))
      drop-shadow(0 0 18px rgba(243,196,83,.2));
  }
  .white-poodle {
    right: 2rem;
    bottom: 25.8rem;
    width: clamp(8rem, 33vw, 10.5rem);
    z-index: 10;
    filter:
      drop-shadow(0 18px 26px rgba(0,0,0,.72))
      drop-shadow(0 0 18px rgba(255,255,255,.18));
  }
  .speech-bubble {
    max-width: 12.5rem;
    padding: .86rem .95rem;
    font-size: .88rem;
    line-height: 1.55;
    box-shadow: 0 18px 44px rgba(0,0,0,.34);
  }
  .bubble-main {
    right: 1.05rem;
    top: auto;
    bottom: 41.4rem;
    z-index: 30;
    transform: translate3d(calc(var(--mx, 0) * .55), calc(var(--my, 0) * .55), 0);
  }
  .hero-category-strip {
    left: 24px;
    right: 24px;
    bottom: 1.15rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .65rem;
  }
  .hero-category-strip a {
    min-height: 56px;
    padding: .8rem .75rem;
    justify-content: center;
    text-align: center;
    font-size: .9rem;
    line-height: 1.25;
    background:
      linear-gradient(145deg, rgba(255,255,255,.14), rgba(255,255,255,.04)),
      rgba(0,0,0,.56);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.14), 0 12px 28px rgba(0,0,0,.28);
  }
  .section {
    padding: 4.5rem 22px;
  }
  .service-grid,
  .offer-grid,
  .feature-grid,
  .review-layout,
  .store,
  .store-grid,
  .admin-grid {
    grid-template-columns: 1fr;
  }
  .site-footer { flex-direction: column; }
}

@media (min-width: 520px) and (max-width: 780px) {
  .hero {
    min-height: 1040px;
    padding-inline: 24px;
  }
  .hero-copy { max-width: 30rem; }
  .mobile-hero-cta { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .manager {
    right: -6rem;
    width: clamp(33rem, 82vw, 39rem);
  }
  .mobile-hero-flow,
  .hero-category-strip {
    left: 28px;
    right: 28px;
  }
}

@media (max-width: 420px) {
  .hero {
    min-height: 1070px;
    padding-inline: 22px;
    padding-bottom: 178px;
  }
  .mobile-feature-grid { gap: .55rem; }
  .mobile-feature-grid span {
    min-height: 54px;
    font-size: .86rem;
  }
  .mobile-hero-flow {
    left: 22px;
    right: 22px;
    bottom: 8.45rem;
  }
  .manager {
    right: -13.5rem;
    bottom: 23.8rem;
    width: 32.2rem;
  }
  .black-cat { bottom: 27.6rem; }
  .white-poodle {
    right: 1.7rem;
    bottom: 26.2rem;
  }
  .bubble-main {
    right: .75rem;
    bottom: 41rem;
  }
  .hero-category-strip {
    left: 22px;
    right: 22px;
  }
}

@media (max-width: 780px) {
  .hero {
    min-height: 820px;
    min-height: clamp(780px, 100svh, 850px);
    padding: 92px 24px 0;
    display: block;
  }
  .hero-bg {
    transform: scale(1.08) translate3d(calc(var(--mx, 0) * .12), calc(var(--my, 0) * .1), 0);
  }
  .hero-bg img {
    object-position: center bottom;
  }
  .hero-bg::after {
    background:
      linear-gradient(180deg, rgba(0,0,0,.94) 0%, rgba(0,0,0,.74) 30%, rgba(0,0,0,.42) 58%, rgba(0,0,0,.88) 100%),
      radial-gradient(circle at 58% 57%, rgba(255,255,255,.2), transparent 22%),
      radial-gradient(circle at 56% 66%, rgba(255,38,56,.18), transparent 42%);
  }
  .hero-vignette {
    box-shadow: inset 0 0 6rem rgba(0,0,0,.9), inset 0 -10rem 7rem rgba(0,0,0,.7);
  }
  .hero-copy {
    max-width: 21.8rem;
    padding-left: .9rem;
    gap: .58rem;
    z-index: 28;
  }
  .hero .eyebrow {
    margin-bottom: .8rem;
    max-width: 17rem;
    font-size: .68rem;
  }
  .hero h1 {
    font-size: clamp(3.25rem, 15.5vw, 4rem);
    line-height: .9;
  }
  .hero-subtitle {
    font-size: clamp(1.45rem, 7.2vw, 1.9rem);
  }
  .hero-text {
    max-width: 19.5rem;
    margin-top: .15rem;
    font-size: .94rem;
    line-height: 1.62;
  }
  .hero-copy > .hero-feature-row {
    display: none;
  }
  .hero-copy > .hero-cta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .7rem;
    width: min(100%, 20.5rem);
    margin-top: .72rem;
  }
  .hero .primary-button,
  .hero .secondary-button {
    min-height: 52px;
    min-width: 0;
    width: 100%;
    padding: 0 .85rem;
    border-color: rgba(255,255,255,.18);
    background:
      linear-gradient(145deg, rgba(255,255,255,.16), rgba(255,255,255,.045)),
      rgba(0,0,0,.46);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.16), 0 14px 36px rgba(0,0,0,.42);
    backdrop-filter: blur(18px);
    font-size: .86rem;
    line-height: 1.2;
  }
  .hero .primary-button {
    background:
      linear-gradient(135deg, rgba(255,42,60,.96), rgba(189,17,31,.94)),
      rgba(255,38,56,.32);
    box-shadow: 0 0 24px rgba(255,38,56,.34), 0 18px 42px rgba(0,0,0,.48);
  }
  .hero .primary-button:hover,
  .hero .secondary-button:hover {
    transform: translateY(-2px);
    border-color: rgba(243,196,83,.5);
    box-shadow: 0 0 30px rgba(255,38,56,.3), 0 20px 44px rgba(0,0,0,.52);
  }
  .mobile-hero-flow,
  .hero-category-strip {
    display: none;
  }
  .character-stage {
    z-index: 15;
  }
  .character-stage::before {
    left: 10%;
    right: 2%;
    top: 40%;
    height: 42%;
    opacity: .82;
  }
  .manager {
    right: 1.1rem;
    bottom: 2.3rem;
    width: clamp(19.2rem, 80vw, 23rem);
    max-width: none;
    opacity: .99;
    z-index: 9;
    filter:
      drop-shadow(0 28px 36px rgba(0,0,0,.76))
      drop-shadow(0 0 24px rgba(255,38,56,.22));
  }
  .black-cat {
    left: 1.35rem;
    right: auto;
    bottom: 3.15rem;
    width: clamp(6.25rem, 27vw, 7.6rem);
    z-index: 12;
  }
  .white-poodle {
    right: 1.75rem;
    bottom: 3.1rem;
    width: clamp(7rem, 30vw, 8.6rem);
    z-index: 12;
  }
  .speech-bubble {
    max-width: 11.2rem;
    padding: .82rem .9rem;
    font-size: .84rem;
    line-height: 1.5;
  }
  .bubble-main {
    right: 1.15rem;
    top: auto;
    bottom: 29rem;
    z-index: 32;
    transform: translate3d(calc(var(--mx, 0) * .45), calc(var(--my, 0) * .45), 0);
  }
  .mobile-feature-band {
    display: block;
    padding: 1.3rem 24px 4.5rem;
    background:
      radial-gradient(circle at 30% 0%, rgba(255,38,56,.14), transparent 32%),
      #060608;
    border-top: 1px solid rgba(255,255,255,.08);
  }
  .mobile-feature-band .mobile-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .7rem;
  }
  .mobile-feature-band .mobile-feature-grid span {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 8px;
    background:
      linear-gradient(145deg, rgba(255,255,255,.15), rgba(255,255,255,.045)),
      rgba(0,0,0,.5);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.16), 0 12px 32px rgba(0,0,0,.34);
    backdrop-filter: blur(18px);
    font-weight: 950;
    text-align: center;
  }
  .section {
    padding-inline: 24px;
  }
}

@media (min-width: 520px) and (max-width: 780px) {
  .hero {
    min-height: 850px;
    padding-inline: 32px;
  }
  .hero-copy {
    max-width: 27rem;
    padding-left: 1rem;
  }
  .manager {
    right: 4.6rem;
    width: clamp(22rem, 58vw, 26rem);
  }
  .black-cat {
    left: 4.5rem;
    width: 8rem;
  }
  .white-poodle {
    right: 4.4rem;
    width: 9rem;
  }
  .bubble-main {
    right: 4.5rem;
    bottom: 30rem;
  }
  .mobile-feature-band {
    padding-inline: 32px;
  }
}

@media (max-width: 380px) {
  .hero {
    min-height: 830px;
    padding-inline: 20px;
  }
  .hero-copy {
    padding-left: .65rem;
  }
  .hero-copy > .hero-cta {
    width: 100%;
    gap: .55rem;
  }
  .hero .primary-button,
  .hero .secondary-button {
    min-height: 50px;
    padding-inline: .55rem;
    font-size: .8rem;
  }
  .manager {
    right: .25rem;
    width: 19rem;
  }
  .black-cat {
    left: 1rem;
    width: 6.15rem;
  }
  .white-poodle {
    right: 1rem;
    width: 6.9rem;
  }
  .bubble-main {
    right: .75rem;
    bottom: 28.7rem;
  }
  .mobile-feature-band {
    padding-inline: 20px;
  }
}

@media (max-width: 780px) {
  .hero-copy > .hero-cta {
    margin-top: 3.65rem;
  }
  .speech-bubble {
    max-width: min(10.75rem, calc(100vw - 2rem));
    padding: .74rem .86rem;
    font-size: .82rem;
    line-height: 1.48;
    z-index: 36;
  }
  .bubble-main {
    top: clamp(23.9rem, 52svh, 27.6rem);
    right: max(1rem, env(safe-area-inset-right));
    bottom: auto;
    transform: translate3d(calc(var(--mx, 0) * .32), calc(var(--my, 0) * .32), 0);
  }
  .bubble-main::after {
    left: auto;
    right: 2.25rem;
  }
}

@media (min-width: 520px) and (max-width: 780px) {
  .hero-copy > .hero-cta {
    margin-top: 3.25rem;
  }
  .bubble-main {
    top: clamp(23.2rem, 50svh, 27rem);
    right: max(4rem, env(safe-area-inset-right));
  }
}

@media (max-width: 420px) {
  .hero-copy > .hero-cta {
    margin-top: 3.45rem;
  }
  .bubble-main {
    top: clamp(24.25rem, 54svh, 28rem);
    right: max(.85rem, env(safe-area-inset-right));
  }
}

@media (max-width: 360px) {
  .hero-copy > .hero-cta {
    margin-top: 3.1rem;
  }
  .speech-bubble {
    max-width: 10rem;
    font-size: .78rem;
  }
  .bubble-main {
    top: clamp(24.75rem, 56svh, 28.4rem);
    right: max(.7rem, env(safe-area-inset-right));
  }
}

@media (max-width: 780px) {
  .hero-copy > .hero-cta {
    position: absolute;
    top: clamp(39.5rem, 78svh, 43.5rem);
    left: .9rem;
    width: calc(100vw - 48px);
    margin-top: 0;
    z-index: 38;
  }
  .bubble-main {
    top: clamp(31rem, 60svh, 34rem);
    left: max(1rem, env(safe-area-inset-left));
    right: auto;
    bottom: auto;
    max-width: min(10.25rem, calc(100vw - 2rem));
    z-index: 36;
  }
  .bubble-main::after {
    left: 2.1rem;
    right: auto;
  }
  .manager {
    right: 1.25rem;
    bottom: 7.65rem;
    width: clamp(17.8rem, 72vw, 21.2rem);
  }
  .black-cat {
    left: 1.45rem;
    bottom: 7.2rem;
    width: clamp(5.85rem, 24vw, 7rem);
  }
  .white-poodle {
    right: 1.85rem;
    bottom: 7.15rem;
    width: clamp(6.5rem, 27vw, 7.8rem);
  }
}

@media (min-width: 520px) and (max-width: 780px) {
  .hero-copy > .hero-cta {
    top: clamp(39rem, 76svh, 43rem);
    left: 1rem;
    width: min(26rem, calc(100vw - 64px));
  }
  .bubble-main {
    top: clamp(30rem, 58svh, 33.5rem);
    left: max(2rem, env(safe-area-inset-left));
  }
  .manager {
    right: 5.2rem;
    bottom: 7.6rem;
    width: clamp(20rem, 52vw, 23.5rem);
  }
  .black-cat {
    left: 5rem;
    bottom: 7.35rem;
    width: 7.3rem;
  }
  .white-poodle {
    right: 5rem;
    bottom: 7.3rem;
    width: 8.1rem;
  }
}

@media (max-width: 420px) {
  .hero-copy > .hero-cta {
    top: clamp(40rem, 79svh, 44rem);
    width: calc(100vw - 44px);
  }
  .bubble-main {
    top: clamp(31.4rem, 61svh, 34.4rem);
    left: max(.9rem, env(safe-area-inset-left));
  }
  .manager {
    right: 1rem;
    bottom: 7.55rem;
    width: clamp(17.8rem, 73vw, 20.5rem);
  }
  .black-cat {
    left: 1.2rem;
    bottom: 7.15rem;
    width: clamp(5.7rem, 24vw, 6.6rem);
  }
  .white-poodle {
    right: 1.35rem;
    bottom: 7.1rem;
    width: clamp(6.3rem, 27vw, 7.4rem);
  }
}

@media (max-width: 360px) {
  .hero-copy > .hero-cta {
    top: clamp(39.2rem, 78svh, 43rem);
    left: .65rem;
    width: calc(100vw - 40px);
  }
  .bubble-main {
    top: clamp(31.8rem, 62svh, 34.8rem);
    max-width: 9.7rem;
  }
  .manager {
    right: .65rem;
    bottom: 7.45rem;
    width: 17.6rem;
  }
  .black-cat {
    left: .9rem;
    bottom: 7.05rem;
    width: 5.55rem;
  }
  .white-poodle {
    right: .95rem;
    bottom: 7rem;
    width: 6.1rem;
  }
}

@media (max-width: 780px) {
  .hero {
    min-height: 880px;
    min-height: clamp(860px, 108svh, 920px);
  }
  .hero-copy > .hero-cta {
    position: absolute;
    top: auto;
    left: 24px;
    right: 24px;
    bottom: 2.15rem;
    width: auto;
    margin-top: 0;
    z-index: 38;
  }
  .hero .primary-button,
  .hero .secondary-button {
    min-height: 56px;
    border-radius: 8px;
  }
  .mobile-feature-band {
    padding-top: 2rem;
  }
}

@media (min-width: 520px) and (max-width: 780px) {
  .hero {
    min-height: 900px;
  }
  .hero-copy > .hero-cta {
    top: auto;
    left: 32px;
    right: 32px;
    bottom: 2.35rem;
    width: auto;
  }
}

@media (max-width: 420px) {
  .hero {
    min-height: 880px;
  }
  .hero-copy > .hero-cta {
    top: auto;
    left: 22px;
    right: 22px;
    bottom: 2.05rem;
    width: auto;
  }
}

@media (max-width: 360px) {
  .hero {
    min-height: 860px;
  }
  .hero-copy > .hero-cta {
    top: auto;
    left: 20px;
    right: 20px;
    bottom: 1.9rem;
    width: auto;
  }
}

@media (max-width: 780px) {
  .hero {
    min-height: 920px;
    min-height: clamp(900px, 112svh, 960px);
  }
  .hero-copy {
    max-width: 21.5rem;
  }
  .hero-copy > .hero-cta {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    width: min(100%, 20.5rem);
    margin-top: 1.15rem;
    z-index: 40;
  }
  .manager {
    bottom: 5.4rem;
  }
  .black-cat,
  .white-poodle {
    bottom: 5rem;
  }
}

@media (min-width: 520px) and (max-width: 780px) {
  .hero-copy > .hero-cta {
    width: min(26rem, 100%);
  }
  .manager {
    bottom: 5.6rem;
  }
  .black-cat,
  .white-poodle {
    bottom: 5.2rem;
  }
}

@media (max-width: 420px) {
  .hero-copy > .hero-cta {
    width: min(100%, 20.25rem);
    margin-top: 1rem;
  }
}

@media (max-width: 780px) {
  .bubble-main {
    top: clamp(27.25rem, 52svh, 30.25rem);
    left: max(1.1rem, env(safe-area-inset-left));
    right: auto;
    bottom: auto;
    max-width: min(11rem, calc(100vw - 2rem));
    padding: .78rem .9rem;
    z-index: 36;
  }
  .bubble-main::after {
    left: auto;
    right: -9px;
    top: 52%;
    bottom: auto;
    width: 18px;
    height: 18px;
    transform: translateY(-50%) rotate(45deg);
  }
}

@media (min-width: 520px) and (max-width: 780px) {
  .bubble-main {
    top: clamp(27rem, 50svh, 30rem);
    left: max(2rem, env(safe-area-inset-left));
  }
}

@media (max-width: 420px) {
  .bubble-main {
    top: clamp(27.8rem, 53svh, 30.8rem);
    left: max(.95rem, env(safe-area-inset-left));
  }
}

@media (max-width: 360px) {
  .bubble-main {
    top: clamp(28.2rem, 54svh, 31.2rem);
    max-width: 10.25rem;
  }
}

.announcement-card {
  width: min(72rem, calc(100% - 2rem));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  border: 1px solid rgba(255, 38, 56, .42);
  border-radius: 8px;
  padding: clamp(1.25rem, 3vw, 2rem);
  background:
    linear-gradient(135deg, rgba(255,38,56,.16), transparent 42%),
    rgba(255,255,255,.055);
  box-shadow: 0 24px 64px rgba(0,0,0,.34);
}

.announcement-card h2 {
  margin: .25rem 0 .55rem;
  font-size: clamp(1.65rem, 3vw, 2.55rem);
}

.announcement-card p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
}

.site-marquee {
  position: fixed;
  inset: 76px clamp(1rem, 4vw, 4.5rem) auto;
  z-index: 48;
  display: flex;
  align-items: center;
  min-height: 4.35rem;
  border: 1px solid rgba(255, 38, 56, .42);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255,38,56,.3), rgba(255,214,10,.1), rgba(255,38,56,.18)),
    rgba(0,0,0,.8);
  box-shadow: 0 18px 54px rgba(255,38,56,.2), inset 0 1px 0 rgba(255,255,255,.12);
  backdrop-filter: blur(18px);
}

.site-marquee[hidden] {
  display: none;
}

.site-marquee::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255,255,255,.08), transparent 22%, transparent 78%, rgba(255,255,255,.08));
}

.site-marquee-label {
  position: relative;
  z-index: 1;
  align-self: stretch;
  display: grid;
  place-items: center;
  min-width: 8.75rem;
  padding: 0 1.15rem;
  color: #111;
  background: var(--gold);
  font-size: 1rem;
  font-weight: 1000;
  letter-spacing: 0;
  box-shadow: 12px 0 28px rgba(0,0,0,.28);
}

.site-marquee-window {
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.site-marquee-track {
  display: flex;
  align-items: center;
  gap: 5rem;
  width: max-content;
  animation: site-marquee 28s linear infinite;
  will-change: transform;
}

.site-marquee-track p {
  margin: 0;
  color: rgba(255,255,255,.9);
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  line-height: 1.4;
  font-weight: 950;
  white-space: nowrap;
  text-shadow: 0 0 18px rgba(255,38,56,.25);
}

@keyframes site-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 2.5rem)); }
}

.shop {
  background:
    radial-gradient(circle at 16% 12%, rgba(255, 38, 56, .14), transparent 24rem),
    radial-gradient(circle at 88% 20%, rgba(255, 214, 10, .08), transparent 22rem),
    linear-gradient(180deg, rgba(32, 32, 38, .82), rgba(14, 14, 18, .92));
}

.shop .section-heading {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.shop .section-note {
  color: rgba(255,255,255,.78);
}

.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 auto 1.5rem;
  width: min(72rem, calc(100% - 2rem));
  padding: .85rem;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  background: rgba(255,255,255,.065);
  box-shadow: 0 18px 48px rgba(0,0,0,.22);
}

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
}

.category-tabs button,
.cart-toggle,
.cart-close,
.cart-controls button,
.product-admin-head button {
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  background: rgba(255,255,255,.085);
  cursor: pointer;
}

.category-tabs button {
  min-height: 2.7rem;
  padding: 0 1rem;
  font-weight: 900;
}

.category-tabs button.is-active,
.cart-toggle {
  border-color: rgba(255, 38, 56, .72);
  background: linear-gradient(135deg, rgba(255,38,56,.92), rgba(120,0,12,.92));
  box-shadow: 0 16px 36px rgba(255,38,56,.18);
}

.cart-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 2.85rem;
  padding: 0 1.1rem;
  font-weight: 950;
}

.cart-toggle b {
  display: grid;
  place-items: center;
  min-width: 1.55rem;
  height: 1.55rem;
  border-radius: 999px;
  color: #111;
  background: var(--gold);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  width: min(72rem, calc(100% - 2rem));
  margin: 0 auto;
  overflow-anchor: none;
}

.product-card {
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  min-height: 18rem;
  padding: clamp(1.2rem, 2vw, 1.7rem);
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(135deg, rgba(255, 38, 56, .14), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.13), rgba(255,255,255,.075));
  box-shadow: 0 20px 54px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.08);
  overflow-anchor: none;
  content-visibility: visible;
  contain-intrinsic-size: auto;
}

.product-image {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1;
  width: 100%;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: .9rem;
  background:
    linear-gradient(135deg, rgba(255,38,56,.13), rgba(255,214,10,.08)),
    rgba(255,255,255,.12);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: .55rem;
  background: rgba(255,255,255,.08);
}

.product-image span,
.product-image.is-empty::before {
  content: "SIGE 3C";
  color: var(--gold);
  font-size: 1.4rem;
  font-weight: 950;
}

.product-thumbs {
  display: flex;
  gap: .4rem;
  margin: -.35rem 0 .75rem;
  padding-bottom: .2rem;
  overflow-x: auto;
  scrollbar-width: thin;
}

.product-thumbs:empty {
  display: none;
}

.product-thumbs button {
  flex: 0 0 3.1rem;
  width: 3.1rem;
  height: 3.1rem;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 6px;
  padding: .15rem;
  background: rgba(255,255,255,.06);
  cursor: pointer;
}

.product-thumbs button:hover {
  border-color: rgba(255,255,255,.36);
}

.product-thumbs button.is-active {
  border-color: rgba(255,214,10,.86);
  box-shadow: 0 0 0 2px rgba(255,214,10,.12);
}

.product-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.product-card h3 {
  margin: .75rem 0 .65rem;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.product-card p {
  min-height: 4.4rem;
  color: rgba(255,255,255,.76);
  line-height: 1.75;
}

.quantity-deal-row {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 2rem;
  margin: .15rem 0 .2rem;
  padding: 0 .75rem;
  border: 1px solid rgba(255,214,10,.5);
  border-radius: 999px;
  color: var(--gold);
  background: linear-gradient(135deg, rgba(255,214,10,.16), rgba(255,38,56,.12));
  font-size: .88rem;
  font-weight: 950;
}

.product-sku {
  display: block;
  color: rgba(255,255,255,.54);
  margin-top: -.25rem;
  font-weight: 800;
}

.product-options,
.add-on-group {
  display: grid;
  gap: .7rem;
  margin: 1rem 0;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 8px;
  padding: .9rem;
  background: rgba(255,255,255,.075);
}

.product-options > strong,
.add-on-group > strong {
  color: var(--gold);
  font-size: .92rem;
}

.option-required {
  color: rgba(255,255,255,.72);
  font-size: .82rem;
  font-weight: 850;
}

.option-group {
  display: grid;
  gap: .45rem;
}

.option-group > span {
  color: rgba(255,255,255,.82);
  font-weight: 900;
  font-size: .86rem;
}

.option-group div {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
}

.option-group button {
  min-height: 2.25rem;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 8px;
  padding: 0 .75rem;
  color: var(--text);
  background: rgba(255,255,255,.1);
  cursor: pointer;
  font-weight: 850;
}

.option-group button.is-active {
  border-color: rgba(255,214,10,.82);
  color: #111;
  background: var(--gold);
}

.add-on-group label,
.checkout-options label {
  display: flex;
  align-items: center;
  gap: .55rem;
  color: rgba(255,255,255,.84);
  font-weight: 800;
}

.add-on-group input,
.checkout-options input {
  width: 1rem;
  height: 1rem;
  accent-color: var(--red);
}

.product-tag {
  display: inline-flex;
  align-items: center;
  min-height: 1.65rem;
  padding: 0 .65rem;
  border-radius: 999px;
  color: var(--gold);
  border: 1px solid rgba(255,214,10,.38);
  background: rgba(0,0,0,.42);
  font-weight: 950;
  font-size: .78rem;
}

.product-meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin: 1.1rem 0;
}

.product-card > .secondary-button {
  margin-top: auto;
}

.price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: .45rem;
}

.price-row strong {
  color: var(--gold);
  font-size: 1.55rem;
}

.price-row s {
  color: rgba(255,255,255,.48);
}

.price-row em {
  color: #fff;
  border-radius: 999px;
  padding: .16rem .46rem;
  background: rgba(255,38,56,.78);
  font-style: normal;
  font-size: .74rem;
  font-weight: 950;
}

.product-meta > span {
  color: rgba(255,255,255,.66);
  white-space: nowrap;
}

.cart-panel {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(10px);
}

.cart-panel[hidden] {
  display: none;
}

.cart-card {
  position: relative;
  width: min(34rem, 100%);
  max-height: min(90vh, 50rem);
  overflow: auto;
  border: 1px solid rgba(255,38,56,.48);
  border-radius: 8px;
  padding: clamp(1.25rem, 3vw, 2rem);
  background:
    linear-gradient(135deg, rgba(255,38,56,.18), transparent 36%),
    linear-gradient(180deg, rgba(34,34,40,.98), rgba(18,18,23,.98));
  box-shadow: 0 34px 90px rgba(0,0,0,.58), inset 0 1px 0 rgba(255,255,255,.08);
}

.cart-close {
  position: absolute;
  top: .9rem;
  right: .9rem;
  width: 2.35rem;
  height: 2.35rem;
  font-size: 1.6rem;
}

.cart-heading h3 {
  margin: .25rem 0 1rem;
  font-size: 2rem;
}

.cart-items {
  display: grid;
  gap: .75rem;
}

.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  padding: .9rem;
  background: rgba(255,255,255,.075);
}

.cart-item span,
.cart-item small,
.cart-empty {
  display: block;
  color: var(--muted);
  margin-top: .2rem;
}

.cart-item .cart-deal {
  color: var(--gold);
  font-weight: 900;
}

.cart-controls {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: .35rem;
}

.cart-controls button {
  min-width: 2.15rem;
  min-height: 2.15rem;
  padding: 0 .55rem;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  margin: 1.2rem 0;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-weight: 950;
}

.cart-total strong {
  color: var(--gold);
  font-size: 1.45rem;
}

.checkout-form {
  display: grid;
  gap: .8rem;
}

.checkout-options {
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  padding: .85rem .95rem;
  display: grid;
  gap: .65rem;
  background: rgba(255,255,255,.075);
}

.checkout-options legend {
  padding: 0 .35rem;
  color: var(--gold);
  font-weight: 950;
}

.checkout-form label {
  display: grid;
  gap: .35rem;
  color: rgba(255,255,255,.84);
  font-weight: 800;
}

.checkout-form input,
.checkout-form textarea,
.admin-form textarea,
.admin-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: .85rem .9rem;
  color: var(--text);
  background: rgba(255,255,255,.08);
  outline: none;
}

.checkout-form .checkout-options label {
  display: flex;
  grid-template-columns: none;
  align-items: center;
  justify-content: flex-start;
  gap: .65rem;
  min-height: 2.35rem;
}

.checkout-form .checkout-options input[type="radio"] {
  flex: 0 0 auto;
  width: 1.05rem;
  height: 1.05rem;
  margin: 0;
  padding: 0;
}

.checkout-form .checkout-options span {
  line-height: 1.35;
}

.checkout-form input:focus,
.checkout-form textarea:focus,
.admin-form textarea:focus,
.admin-form select:focus {
  border-color: rgba(255,38,56,.72);
  box-shadow: 0 0 0 3px rgba(255,38,56,.12);
}

.checkout-status {
  min-height: 1.5rem;
  color: var(--gold);
  font-weight: 800;
}

.admin-page .admin-panel {
  align-content: start;
  gap: 1rem;
}

.admin-page .section-heading {
  margin-bottom: .5rem;
}

.admin-wide {
  width: min(78rem, 100%);
}

.admin-password-card {
  display: grid;
  grid-template-columns: minmax(14rem, 24rem) auto;
  align-items: end;
  gap: 1rem;
}

.admin-section-title {
  margin-bottom: 1.15rem;
}

.admin-section-title h2 {
  margin: .25rem 0;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
}

.admin-section-title p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.product-admin-list {
  display: grid;
  gap: 1rem;
}

.category-admin-box {
  border: 1px solid rgba(255, 214, 10, .22);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, rgba(255, 214, 10, .08), rgba(255, 38, 56, .06));
}

.admin-help {
  color: var(--muted);
  line-height: 1.65;
  margin: .65rem 0 0;
}

.product-admin-row {
  display: grid;
  grid-template-columns: .7fr 1.4fr .85fr .75fr .75fr .65fr .75fr;
  gap: .85rem;
  align-items: end;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1rem;
  background: rgba(255,255,255,.045);
}

.product-admin-head {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.product-admin-head strong {
  color: var(--gold);
  font-size: 1.1rem;
}

.product-admin-head button {
  width: 2.2rem;
  height: 2.2rem;
  font-size: 1.35rem;
}

.admin-checkbox {
  display: flex !important;
  align-items: center;
  gap: .55rem !important;
  min-height: 3.35rem;
}

.admin-checkbox input {
  width: 1.1rem !important;
  height: 1.1rem;
}

.product-admin-desc {
  grid-column: 1 / -1;
}

.product-admin-upload {
  border: 1px dashed rgba(255, 214, 10, .35);
  border-radius: 8px;
  padding: .85rem;
  background: rgba(255, 214, 10, .045);
}

.product-admin-upload input {
  padding: .7rem !important;
  cursor: pointer;
}

.product-admin-upload small {
  display: block;
  color: var(--muted);
  line-height: 1.55;
}

.orders-list {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.order-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1rem;
  background: rgba(255,255,255,.045);
}

.order-card-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: .8rem;
  margin-bottom: .8rem;
}

.order-card h3 {
  margin: .45rem 0 .25rem;
}

.order-card p {
  color: var(--muted);
  line-height: 1.6;
  margin: .35rem 0;
}

.order-card ul {
  display: grid;
  gap: .45rem;
  padding-left: 1.2rem;
}

.order-card li small {
  display: block;
  color: var(--muted);
  margin-top: .2rem;
}

.order-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: 1rem;
}

.order-card-actions select {
  width: min(15rem, 100%);
}

.admin-empty {
  color: var(--muted);
}

@media (max-width: 980px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-admin-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .shop-toolbar,
  .product-meta,
  .cart-item,
  .admin-password-card,
  .order-card-head {
    align-items: stretch;
    flex-direction: column;
  }

  .shop-toolbar,
  .admin-password-card {
    display: grid;
    grid-template-columns: 1fr;
  }

  .product-grid,
  .product-admin-row {
    grid-template-columns: 1fr;
  }

  .cart-toggle,
  .category-tabs button {
    width: 100%;
  }

  .category-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .cart-card {
    max-height: 92vh;
  }

  .announcement-card {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 780px) {
  .site-marquee {
    inset: 68px 20px auto;
    min-height: 3.85rem;
  }

  .site-marquee-label {
    min-width: 6.35rem;
    padding: 0 .75rem;
    font-size: .82rem;
  }

  .site-marquee-track {
    gap: 3rem;
    animation-duration: 22s;
  }

  .site-marquee-track p {
    font-size: .98rem;
  }

  .promo-carousel {
    min-height: auto;
    padding: 3rem 20px;
    align-items: start;
  }

  .promo-carousel-shell {
    min-height: 640px;
  }

  .promo-slide {
    grid-template-columns: 1fr;
    align-content: start;
    gap: 1.2rem;
    padding: 1.35rem 1.2rem 4.3rem;
  }

  .promo-copy h2 {
    font-size: clamp(2.45rem, 13vw, 3.6rem);
  }

  .promo-copy p:not(.eyebrow) {
    font-size: .98rem;
    line-height: 1.65;
  }

  .promo-visual {
    min-height: 20rem;
  }

  .promo-visual img {
    max-height: 20rem;
  }

  .promo-arrow {
    top: auto;
    bottom: .82rem;
    width: 2.55rem;
    height: 2.55rem;
  }

  .promo-arrow-left { left: 1rem; }
  .promo-arrow-right { right: 1rem; }
}

@media (max-width: 420px) {
  .promo-carousel {
    min-height: auto;
    padding-inline: 14px;
  }

  .promo-carousel-shell {
    min-height: 620px;
  }

  .promo-slide {
    padding-inline: 1rem;
  }

  .promo-copy h2 {
    font-size: clamp(2.1rem, 12vw, 3rem);
  }

  .promo-price strong {
    font-size: 2rem;
  }
}

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