@font-face {
  font-family: "Pace Oswald";
  src: url("assets/fonts/Oswald-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Pace Oswald";
  src: url("assets/fonts/Oswald-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Pace Oswald";
  src: url("assets/fonts/Oswald-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Pace Bebas";
  src: url("assets/fonts/BebasNeue-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: light;
  --paper: #fafaf7;
  --paper-warm: #f2eadf;
  --ink: #18182f;
  --ink-soft: #4f5261;
  --orange: #ff5722;
  --orange-dark: #a13f16;
  --teal: #0f766e;
  --gold: #c28618;
  --line: #ded8cd;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(24, 24, 47, 0.16);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    repeating-linear-gradient(0deg, rgba(24, 24, 47, 0.025) 0, rgba(24, 24, 47, 0.025) 1px, transparent 1px, transparent 12px),
    var(--paper);
  color: var(--ink);
  font-family: "Pace Oswald", "Avenir Next Condensed", "Helvetica Neue", sans-serif;
  font-size: 18px;
  line-height: 1.45;
  letter-spacing: 0;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(var(--max), calc(100% - 32px));
  margin: 14px auto 0;
  padding: 10px 0;
  color: var(--ink);
  transition:
    background-color 200ms ease,
    box-shadow 200ms ease;
}

.site-header.is-solid {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 10px max(16px, calc((100% - var(--max)) / 2 + 16px));
  background: rgba(250, 250, 247, 0.94);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 28px rgba(24, 24, 47, 0.06);
  backdrop-filter: blur(10px);
}

.nav-link--mobile {
  display: none;
}

.brand,
.top-actions {
  display: inline-flex;
  align-items: center;
}

.brand {
  gap: 8px;
  text-decoration: none;
  font-size: 18px;
  line-height: 1;
}

.brand-mark {
  width: 30px;
  height: 30px;
}

.brand-word {
  padding-top: 1px;
  font-weight: 400;
}

.brand-word strong {
  font-weight: 700;
}

.site-header:not(.is-solid) .brand-mark {
  display: none;
}

.top-actions {
  gap: 18px;
  font-size: 15px;
}

.nav-link,
.nav-cta {
  text-decoration: none;
}

.nav-link {
  color: var(--ink-soft);
}

.nav-cta {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(24, 24, 47, 0.18);
  border-radius: 999px;
  padding: 8px 16px 10px;
  background: rgba(250, 250, 247, 0.84);
  box-shadow: 0 8px 30px rgba(24, 24, 47, 0.08);
}

.hero {
  position: relative;
  min-height: 92svh;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 104px 20px 46px;
  border-bottom: 1px solid var(--line);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(250, 250, 247, 0.08) 0%, rgba(250, 250, 247, 0.72) 58%, var(--paper) 100%),
    linear-gradient(90deg, rgba(250, 250, 247, 0.97) 0%, rgba(250, 250, 247, 0.78) 42%, rgba(250, 250, 247, 0.28) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding-bottom: 8px;
}

.hero-map {
  position: absolute;
  left: 20px;
  bottom: 38px;
  z-index: 0;
  width: min(420px, 72vw);
  max-width: 100%;
  opacity: 0.58;
  pointer-events: none;
}

.hero-map-svg {
  display: block;
  width: 100%;
  height: auto;
}

.hero-map-route {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: hero-route-draw 1.8s ease-out forwards;
}

.hero-map-start,
.hero-map-arrow {
  opacity: 0;
  animation: hero-route-markers 0.4s ease-out 1.5s forwards;
}

@keyframes hero-route-draw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes hero-route-markers {
  to {
    opacity: 1;
  }
}

.kicker {
  margin: 0 0 12px;
  color: var(--orange);
  font-family: "Pace Bebas", "Impact", sans-serif;
  font-size: 19px;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 14px;
  font-size: 74px;
  line-height: 0.9;
}

#hero-title {
  font-weight: 400;
}

#hero-title .brand-word {
  padding-top: 0;
  font-size: 1em;
  line-height: 0.9;
  font-weight: 400;
}

#hero-title .brand-word strong {
  font-weight: 700;
}

.hero-emblem {
  position: absolute;
  z-index: 2;
  top: clamp(88px, 13vh, 124px);
  right: max(16px, calc((100vw - var(--max)) / 2 + 16px));
  width: clamp(56px, 12vw, 92px);
  pointer-events: none;
}

.hero-emblem::before {
  content: "";
  position: absolute;
  inset: -14%;
  z-index: -1;
  border-radius: 50%;
  background: rgba(250, 250, 247, 0.78);
  box-shadow: 0 14px 36px rgba(24, 24, 47, 0.14);
}

.hero-emblem img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 28px rgba(24, 24, 47, 0.28));
}

h2 {
  margin-bottom: 0;
  font-size: 40px;
  line-height: 1.02;
}

h3 {
  margin-bottom: 8px;
  font-size: 24px;
  line-height: 1.1;
}

.hero-copy {
  max-width: 610px;
  margin-bottom: 24px;
  color: var(--ink-soft);
  font-size: 22px;
}

.hero-actions {
  display: grid;
  gap: 14px;
  max-width: 620px;
}

.button {
  display: inline-flex;
  width: fit-content;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 28px 16px;
  text-decoration: none;
  font-weight: 700;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 16px 34px rgba(255, 87, 34, 0.28);
}

.button-primary:hover {
  background: #f04d1d;
}

.store-note {
  margin: 0;
  max-width: 520px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.4;
}

.store-note strong {
  color: var(--ink);
  font-weight: 600;
}

.section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 92px 0 0;
}

.section-heading {
  display: grid;
  gap: 6px;
  max-width: 760px;
  margin-bottom: 28px;
}

.section-lead {
  margin: 0;
  max-width: 640px;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.45;
}

.showcase {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 72px 0 0;
}

.showcase-heading {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto 24px;
}

.showcase-trust {
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.4;
}

.showcase-bridge {
  margin-top: 8px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto 28px;
  padding: 0;
  list-style: none;
}

.process-step {
  --step-accent: var(--orange);
  --step-tint: rgba(255, 87, 34, 0.1);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: linear-gradient(145deg, var(--step-tint) 0%, var(--white) 55%);
  box-shadow: inset 3px 0 0 var(--step-accent);
}

.process-step--strava {
  --step-accent: var(--orange);
  --step-tint: rgba(255, 87, 34, 0.12);
}

.process-step--design {
  --step-accent: var(--teal);
  --step-tint: rgba(0, 168, 150, 0.1);
}

.process-step--print {
  --step-accent: var(--gold);
  --step-tint: rgba(212, 160, 23, 0.12);
}

.process-step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 10px;
  color: var(--step-accent);
  background: color-mix(in srgb, var(--step-accent) 14%, var(--white));
}

.process-step-svg {
  width: 26px;
  height: 26px;
}

.process-step-body {
  min-width: 0;
}

.process-step-label {
  display: block;
  margin-bottom: 4px;
  color: var(--step-accent);
  font-family: "Pace Bebas", "Impact", sans-serif;
  font-size: 14px;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
}

.process-steps h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.15;
}

.showcase-stage {
  position: relative;
  min-height: min(62vh, 720px);
  max-height: 720px;
  overflow: hidden;
  background: var(--ink);
}

.showcase-stage picture {
  position: absolute;
  inset: 0;
}

.showcase-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  transition: opacity 650ms ease;
  pointer-events: none;
}

.showcase-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.showcase-stage-shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(24, 24, 47, 0.08) 0%,
    rgba(24, 24, 47, 0.22) 55%,
    rgba(24, 24, 47, 0.55) 100%
  );
}

.showcase-cta-wrap {
  display: flex;
  justify-content: center;
  padding: 20px 20px 0;
  background: var(--ink);
}

.button-on-dark {
  min-width: 200px;
}

.showcase-pillars {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.03) 0,
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px,
      transparent 48px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.02) 0,
      rgba(255, 255, 255, 0.02) 1px,
      transparent 1px,
      transparent 12px
    ),
    linear-gradient(180deg, #1f1f35 0%, var(--ink) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.showcase-pillar {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 88px;
  padding: 16px 18px;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  text-align: left;
  font: inherit;
  transition:
    color 200ms ease,
    background 200ms ease,
    box-shadow 200ms ease;
}

.showcase-pillar:last-child {
  border-right: 0;
}

.showcase-pillar:hover,
.showcase-pillar:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
}

.showcase-pillar.is-active {
  color: var(--white);
  box-shadow: inset 0 -3px 0 var(--orange);
}

.showcase-pillar--accent .showcase-pillar-text {
  color: var(--orange);
}

.showcase-pillar--accent.is-active .showcase-pillar-text {
  color: var(--orange);
}

.showcase-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
}

.showcase-pillar-text {
  display: grid;
  gap: 0;
  font-family: "Pace Oswald", "Avenir Next Condensed", "Helvetica Neue", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.showcase-pillar-text span {
  display: block;
}

.section-styles {
  overflow: hidden;
}

.style-rail {
  position: relative;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}

.style-rail::after {
  content: "Swipe";
  position: absolute;
  top: 8px;
  right: max(20px, calc((100vw - var(--max)) / 2 + 20px));
  padding: 4px 10px 6px;
  border-radius: 999px;
  background: rgba(24, 24, 47, 0.72);
  color: var(--paper);
  font-family: "Pace Bebas", "Impact", sans-serif;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  pointer-events: none;
}

.style-rail-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: max(20px, calc((100vw - var(--max)) / 2 + 20px));
  padding: 4px max(20px, calc((100vw - var(--max)) / 2 + 20px)) 8px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(24, 24, 47, 0.25) transparent;
}

.style-rail-track::-webkit-scrollbar {
  height: 6px;
}

.style-rail-track::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(24, 24, 47, 0.22);
}

.style-rail-card {
  flex: 0 0 min(78vw, 320px);
  scroll-snap-align: start;
  border-radius: 8px;
  overflow: hidden;
  background: var(--ink);
  box-shadow: 0 18px 50px rgba(24, 24, 47, 0.12);
}

.style-rail-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.style-rail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  transition: transform 450ms ease;
}

.style-rail-media--top img {
  object-position: center 22%;
}

.style-rail-card:hover .style-rail-media img {
  transform: scale(1.04);
}

.style-rail-overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 48px 18px 18px;
  background: linear-gradient(180deg, transparent 0%, rgba(24, 24, 47, 0.88) 72%);
  color: var(--paper);
}

.style-rail-overlay .style-tag {
  color: #ffb199;
}

.style-rail-overlay h3 {
  margin-bottom: 6px;
  color: var(--paper);
  font-size: 26px;
}

.style-rail-overlay p {
  margin: 0;
  color: rgba(250, 250, 247, 0.82);
  font-size: 15px;
  line-height: 1.4;
}

.style-tag {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--orange-dark);
  font-family: "Pace Bebas", "Impact", sans-serif;
  font-size: 17px;
  line-height: 1;
  text-transform: uppercase;
}

.final-cta p {
  color: var(--ink-soft);
}

.final-cta {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto 32px;
  padding: 54px 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 87, 34, 0.12), transparent 42%),
    var(--ink);
  color: var(--paper);
}

.final-cta h2 {
  color: var(--paper);
}

.final-cta .kicker {
  color: #ffb199;
}

.final-cta > p {
  max-width: 620px;
  color: rgba(250, 250, 247, 0.78);
  font-size: 20px;
}

.final-cta-strava {
  margin: 0 0 22px;
  max-width: 620px;
  color: rgba(250, 250, 247, 0.58);
  font-size: 15px;
}

.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button-secondary {
  color: var(--paper);
  border: 1px solid rgba(250, 250, 247, 0.34);
  background: transparent;
  box-shadow: none;
}

.button-secondary:hover {
  background: rgba(250, 250, 247, 0.08);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0 36px;
  color: var(--ink-soft);
  font-size: 15px;
}

.footer-name {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-weight: 700;
}

.footer-tagline {
  margin: 0;
  max-width: 360px;
  font-size: 14px;
  line-height: 1.4;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 20px;
}

.footer-links a {
  text-decoration-color: rgba(79, 82, 97, 0.4);
  text-underline-offset: 4px;
}

@media (min-width: 860px) {
  .hero {
    align-items: center;
    padding-top: 114px;
    padding-bottom: 70px;
  }

  .hero-image img {
    object-position: 72% 34%;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, var(--paper) 0%, rgba(250, 250, 247, 0.96) 34%, rgba(250, 250, 247, 0.54) 63%, rgba(250, 250, 247, 0.04) 100%),
      linear-gradient(180deg, rgba(250, 250, 247, 0.08) 0%, rgba(250, 250, 247, 0.15) 58%, var(--paper) 100%);
  }

  .hero-content {
    padding-top: 32px;
  }

  .hero-emblem {
    top: clamp(108px, 15vh, 140px);
    right: max(24px, calc((100vw - var(--max)) / 2 + 24px));
    width: clamp(64px, 8vw, 96px);
  }

  .hero-map {
    left: max(20px, calc((100vw - var(--max)) / 2));
    bottom: 72px;
    width: min(460px, 48vw);
    opacity: 0.62;
  }
}

@media (min-width: 900px) {
  .style-rail-card {
    flex-basis: min(42vw, 380px);
  }

  .style-rail::after {
    display: none;
  }
}

@media (min-width: 1160px) {
  h1 {
    font-size: 112px;
  }

  h2 {
    font-size: 54px;
  }

  .hero-copy {
    font-size: 24px;
  }

  .style-rail-card {
    flex-basis: min(28vw, 340px);
  }
}

@media (max-width: 780px) {
  .site-header {
    width: calc(100% - 28px);
  }

  .top-actions .nav-link:not(.nav-link--mobile) {
    display: none;
  }

  .nav-link--mobile {
    display: inline-flex;
  }

  .hero {
    min-height: 94svh;
    padding-left: 18px;
    padding-right: 18px;
  }

  h1 {
    font-size: 68px;
  }

  h2 {
    font-size: 36px;
  }

  .hero-copy {
    font-size: 19px;
  }

  .button {
    width: 100%;
  }

  .process-steps {
    grid-template-columns: 1fr;
    width: calc(100% - 28px);
  }

  .style-rail-card {
    flex-basis: min(78vw, 320px);
  }

  .hero-map {
    opacity: 0.48;
  }

  .showcase-heading {
    width: calc(100% - 28px);
  }

  .showcase-stage {
    min-height: 52vh;
    max-height: 520px;
  }

  .showcase-pillars {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .showcase-pillar {
    flex: 0 0 min(78vw, 280px);
    scroll-snap-align: start;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }

  .section {
    padding-top: 70px;
  }

}

@media (max-width: 500px) {
  body {
    font-size: 17px;
  }

  .site-header {
    margin-top: 10px;
  }

  .brand-word {
    font-size: 16px;
  }

  .nav-cta {
    min-height: 36px;
    padding: 7px 12px 9px;
    font-size: 14px;
  }

  .hero {
    padding-top: 86px;
    padding-bottom: 38px;
  }

  h1 {
    font-size: 58px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 23px;
  }

  .hero-copy {
    margin-bottom: 18px;
  }

  .final-cta-actions {
    display: grid;
  }

  .final-cta-actions .button {
    width: 100%;
  }

  .section,
  .final-cta,
  .site-footer {
    width: calc(100% - 28px);
  }

  .final-cta {
    padding: 40px 20px;
  }

  .site-footer {
    display: grid;
  }
}

/* ─── Product categories section ───────────────────────────────────────── */
.section-products {
  padding-top: 80px;
}

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

.product-category-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: var(--ink);
  box-shadow: 0 8px 32px rgba(24, 24, 47, 0.13);
  transition: transform 400ms ease, box-shadow 400ms ease;
}

.product-category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 64px rgba(24, 24, 47, 0.26);
}

.product-category-media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  position: relative;
}

.product-category-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 550ms ease;
}

.product-category-card:hover .product-category-img {
  transform: scale(1.05);
}

.product-category-overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 84px 28px 30px;
  background: linear-gradient(0deg, rgba(18, 18, 36, 0.97) 0%, rgba(18, 18, 36, 0.6) 55%, transparent 100%);
  color: var(--paper);
  transition: transform 360ms ease;
}

.product-category-card:hover .product-category-overlay {
  transform: translateY(-6px);
}

.product-category-tag {
  display: inline-block;
  margin-bottom: 8px;
  color: #ffb199;
  font-family: "Pace Bebas", "Impact", sans-serif;
  font-size: 15px;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
}

.product-category-name {
  font-size: 28px;
  font-weight: 700;
  color: var(--paper);
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.product-category-desc {
  margin: 0 0 14px;
  color: rgba(250, 250, 247, 0.78);
  font-size: 15px;
  line-height: 1.45;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 280ms ease 60ms, transform 280ms ease 60ms;
}

.product-category-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--orange);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 280ms ease 110ms, transform 280ms ease 110ms, color 160ms ease;
}

.product-category-cta:hover {
  color: #ff8a65;
}

.product-category-card:hover .product-category-desc,
.product-category-card:hover .product-category-cta {
  opacity: 1;
  transform: translateY(0);
}

/* Touch devices: always show content since there's no hover */
@media (hover: none) {
  .product-category-desc,
  .product-category-cta {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 780px) {
  .product-categories {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .product-category-media {
    aspect-ratio: 5 / 4;
  }

  .section-products {
    padding-top: 56px;
  }
}

@media (min-width: 781px) and (max-width: 1059px) {
  .product-categories {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }

  .showcase-slide {
    transition: none;
  }

  .hero-map-route {
    stroke-dashoffset: 0;
    animation: none;
  }

  .hero-map-start,
  .hero-map-arrow {
    opacity: 1;
    animation: none;
  }
}
