/* ==========================================================================
   RDIMPORT by Grupo DCM - one-page presentation site
   Plain CSS. No framework, no build step.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Palette: three hues plus tints */
  --paper: #f4f1ec;
  --paper-deep: #e9e4db;
  --ink: #121212;
  --ink-soft: #6b6660;
  --red: #ef010c;
  --red-deep: #c4000a;
  --red-wash: #fbe9e6;
  --line: rgba(18, 18, 18, 0.12);
  --line-strong: rgba(18, 18, 18, 0.22);
  --line-dark: rgba(244, 241, 236, 0.16);

  /* Type */
  --font-display: "Anton", Impact, "Arial Narrow", sans-serif;
  --font-sans: "Archivo", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Space */
  --nav-h: 76px;
  --gutter: clamp(20px, 4.5vw, 64px);
  --maxw: 1280px;
  --section-y: clamp(72px, 10vw, 150px);

  /* Motion: spring-derived easing palette */
  --spring-snappy: linear(
    0, 0.009, 0.035 2.1%, 0.141 4.4%, 0.723 12.9%, 0.938 16.7%,
    1.017 19.4%, 1.067 22.5%, 1.089 26%, 1.079 30.3%, 1.049 36%,
    1.024 42.6%, 1.011 50.3%, 1.004 59.2%, 1.001 69.3%, 1
  );
  --spring-smooth: linear(
    0, 0.004, 0.016 2.3%, 0.063 4.7%, 0.141 7.2%, 0.25 9.9%,
    0.601 16.5%, 0.815 21%, 0.929 25.2%, 0.987 29%, 1.025 33.5%,
    1.042 38%, 1.04 43.5%, 1.027 50%, 1.013 57.5%, 1.005 67%,
    1.001 79%, 1
  );
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-snap: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* --------------------------------------------------------------------------
   2. Reset and base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background-color: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.0625rem);
  line-height: 1.6;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, p, ul, figure, blockquote {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none;
}

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

:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
  border-radius: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* --------------------------------------------------------------------------
   3. Type helpers
   -------------------------------------------------------------------------- */
.eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.h2 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5.4vw, 4.6rem);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  text-wrap: balance;
  max-width: 16ch;
}

.h2--sm {
  font-size: clamp(1.7rem, 3.4vw, 2.9rem);
  max-width: 24ch;
}

.lede {
  max-width: 46ch;
  font-size: clamp(1.02rem, 0.98rem + 0.35vw, 1.22rem);
  color: var(--ink-soft);
}

.lede--wide {
  max-width: 56ch;
}

.body-copy {
  max-width: 52ch;
  color: var(--ink-soft);
}

.is-red {
  color: var(--red);
}

/* --------------------------------------------------------------------------
   4. Buttons and links
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.8em 1.5em;
  border: 0;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 0.5s var(--spring-snappy),
    box-shadow 0.4s var(--ease-snap),
    background-color 0.3s var(--ease-in-out);
  will-change: transform;
}

.btn--red {
  background-color: var(--red);
  color: var(--paper);
}

.btn--red:hover {
  background-color: var(--red-deep);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(239, 1, 12, 0.28);
}

.btn--red:active {
  transform: translateY(0) scale(0.98);
  transition-duration: 0.1s;
}

.btn--lg {
  font-size: 0.95rem;
  padding: 1em 2em;
}

.link-underline {
  position: relative;
  display: inline-block;
  font-weight: 600;
}

.link-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1.5px;
  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s var(--ease-snap);
}

.link-underline:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.price-chip {
  display: inline-block;
  padding: 0.42em 0.7em 0.38em;
  border-radius: 3px;
  background-color: var(--red);
  color: var(--paper);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
}

.price-chip--inline {
  box-shadow: none;
  font-size: 0.78rem;
}

/* --------------------------------------------------------------------------
   5. Nav
   -------------------------------------------------------------------------- */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition:
    background-color 0.5s var(--ease-in-out),
    box-shadow 0.5s var(--ease-in-out),
    backdrop-filter 0.5s var(--ease-in-out);
}

.nav__inner {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 40px);
}

.nav.is-scrolled {
  background-color: rgba(244, 241, 236, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line), 0 12px 40px rgba(18, 18, 18, 0.06);
}

.wordmark {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  line-height: 1;
}

.wordmark__name {
  font-family: var(--font-display);
  font-size: 1.42rem;
  letter-spacing: 0.01em;
  color: var(--paper);
  transition: color 0.5s var(--ease-in-out);
}

.wordmark__descriptor {
  padding: 0.3em 0.6em 0.26em;
  border-radius: 999px;
  background-color: var(--red);
  color: var(--paper);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition:
    background-color 0.5s var(--ease-in-out),
    color 0.5s var(--ease-in-out),
    padding 0.5s var(--ease-in-out);
}

.nav.is-scrolled .wordmark__name {
  color: var(--ink);
}

.nav.is-scrolled .wordmark__descriptor {
  padding-inline: 0;
  background-color: transparent;
  color: var(--ink-soft);
}

.nav__links {
  display: flex;
  gap: clamp(14px, 2vw, 30px);
  margin-inline-start: auto;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--paper);
  transition: color 0.5s var(--ease-in-out);
}

.nav.is-scrolled .nav__links {
  color: var(--ink);
}

.nav__links a {
  position: relative;
  padding-block: 0.5rem;
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.2rem;
  width: 100%;
  height: 1.5px;
  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s var(--ease-snap);
}

.nav__links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav__cta {
  flex: none;
}

.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}

.nav__toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  margin: 4px auto;
  background-color: var(--paper);
  transition: transform 0.4s var(--ease-snap), background-color 0.4s var(--ease-in-out);
}

.nav.is-scrolled .nav__toggle {
  border-color: var(--line);
}

.nav.is-scrolled .nav__toggle span {
  background-color: var(--ink);
}

/* --------------------------------------------------------------------------
   6. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-h) + clamp(24px, 5vh, 64px));
  padding-bottom: clamp(48px, 8vh, 96px);
  background-color: var(--ink);
  color: var(--paper);
  overflow: hidden;
}

.hero__glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 26% 42%, rgba(239, 1, 12, 0.22) 0%, transparent 68%),
    radial-gradient(ellipse 50% 40% at 78% 78%, rgba(244, 241, 236, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.05;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}

.hero__copy .eyebrow {
  color: rgba(244, 241, 236, 0.62);
}

.hero__title {
  margin-top: clamp(14px, 2vh, 26px);
  font-family: var(--font-display);
  font-size: clamp(3rem, 7.4vw, 7.4rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  max-width: 13ch;
  text-wrap: balance;
}

.hero__sub {
  margin-top: clamp(18px, 2.6vh, 30px);
  max-width: 42ch;
  color: rgba(244, 241, 236, 0.72);
  font-size: clamp(1rem, 0.96rem + 0.3vw, 1.16rem);
}

.hero__actions {
  margin-top: clamp(26px, 3.6vh, 42px);
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.4vw, 28px);
  flex-wrap: wrap;
}

.hero__note {
  font-size: 0.85rem;
  color: rgba(244, 241, 236, 0.55);
}

.hero__media {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: clamp(10px, 1.3vw, 18px);
  align-items: start;
}

.hero__shot {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background-color: #1c1c1c;
}

.hero__shot--main {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.hero__shot--main img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 22%;
}

.hero__shot--side {
  grid-column: 2;
  grid-row: 1;
}

.hero__shot--side img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center 18%;
}

.hero__shot img {
  width: 100%;
  transition: transform 1s var(--ease-out);
}

.hero__shot:hover img {
  transform: scale(1.04);
}

.hero__shot .price-chip {
  position: absolute;
  left: clamp(10px, 1.2vw, 16px);
  bottom: clamp(10px, 1.2vw, 16px);
}

.hero__mark {
  grid-column: 2;
  grid-row: 2;
  align-self: center;
  justify-self: center;
  margin-top: clamp(12px, 2vw, 28px);
  width: min(58%, 124px);
  height: auto;
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}

/* --------------------------------------------------------------------------
   7. Story
   -------------------------------------------------------------------------- */
.story {
  padding-block: var(--section-y);
  background-color: var(--paper);
}

.story__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(36px, 6vw, 96px);
  align-items: start;
}

.story__copy .h2 {
  margin-top: 14px;
}

.story__copy .lede {
  margin-top: clamp(18px, 2.4vw, 28px);
  color: var(--ink);
}

.story__copy .body-copy {
  margin-top: 16px;
}

.story__media {
  position: relative;
  margin-top: clamp(0px, 4vw, 56px);
}

.story__media::before {
  content: "";
  position: absolute;
  inset: 16px -16px -16px 16px;
  background-color: var(--red);
  z-index: 0;
}

.story__media img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 30%;
  border-radius: 4px;
}

.story__media figcaption {
  position: relative;
  z-index: 1;
  margin-top: 12px;
  font-size: 0.82rem;
  font-style: italic;
  color: var(--ink-soft);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 48px);
  margin-top: clamp(56px, 8vw, 110px);
  padding-top: clamp(24px, 3vw, 40px);
  border-top: 1px solid var(--line-strong);
}

.stats__value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.6vw, 4rem);
  line-height: 1;
  letter-spacing: -0.01em;
}

.stats__value--text {
  font-size: clamp(1.7rem, 3.4vw, 3rem);
  color: var(--red);
}

.stats__label {
  display: block;
  margin-top: 10px;
  font-size: 0.86rem;
  color: var(--ink-soft);
  max-width: 24ch;
}

/* --------------------------------------------------------------------------
   8. Pillars
   -------------------------------------------------------------------------- */
.pillars {
  padding-block: var(--section-y);
  background-color: var(--red);
  color: var(--paper);
}

.pillars__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 3vw, 44px);
}

.pillars__item {
  padding-left: clamp(18px, 2vw, 32px);
  border-left: 1px solid rgba(244, 241, 236, 0.32);
}

.pillars__item:first-child {
  padding-left: 0;
  border-left: 0;
}

.pillars__num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.6vw, 4.2rem);
  line-height: 1;
  color: rgba(244, 241, 236, 0.5);
}

.pillars__title {
  margin-top: clamp(14px, 2vw, 22px);
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.pillars__text {
  margin-top: 10px;
  font-size: 0.94rem;
  color: rgba(244, 241, 236, 0.82);
  max-width: 30ch;
}

/* --------------------------------------------------------------------------
   9. Catalog
   -------------------------------------------------------------------------- */
.catalog {
  padding-block: var(--section-y);
  background-color: var(--paper);
}

.section-head .h2 {
  margin-top: 14px;
}

.section-head .lede {
  margin-top: clamp(16px, 2vw, 24px);
}

.tiers {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(10px, 1.4vw, 16px);
  margin-top: clamp(28px, 4vw, 44px);
}

.tier {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 0.7em 1.1em 0.66em;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  transition:
    border-color 0.4s var(--ease-in-out),
    background-color 0.4s var(--ease-in-out);
}

.tier:hover {
  border-color: var(--red);
  background-color: var(--red-wash);
}

.tier__label {
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.tier__note {
  font-size: 0.78rem;
  color: var(--ink-soft);
}

.catalog__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: clamp(20px, 3vw, 44px);
  row-gap: clamp(48px, 7vw, 100px);
  align-items: start;
  margin-top: clamp(48px, 7vw, 96px);
}

.product--a { grid-column: 1 / 5; }
.product--b { grid-column: 8 / 13; margin-top: clamp(0px, 6vw, 84px); }
.product--c { grid-column: 3 / 7; }
.product--d { grid-column: 7 / 13; margin-top: clamp(0px, 4vw, 56px); }
.product--e { grid-column: 1 / 5; }
.product--f { grid-column: 5 / 10; margin-top: clamp(0px, 5vw, 72px); }

.product__media {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background-color: var(--paper-deep);
  transition:
    transform 0.5s var(--ease-snap),
    box-shadow 0.5s var(--ease-snap);
}

.product__media img {
  width: 100%;
  height: auto;
  transition: transform 1s var(--ease-out);
}

.product:hover .product__media {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(18, 18, 18, 0.14);
}

.product:hover .product__media img {
  transform: scale(1.05);
}

.product__info {
  margin-top: 18px;
}

.product__name {
  font-size: clamp(1.02rem, 1.3vw, 1.2rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.product__price {
  margin-top: 10px;
  font-size: 0.88rem;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.product__meta {
  margin-top: 8px;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.catalog__more {
  margin-top: clamp(48px, 7vw, 88px);
  padding-top: clamp(20px, 3vw, 32px);
  border-top: 1px solid var(--line);
  font-size: 0.95rem;
  color: var(--ink-soft);
}

/* --------------------------------------------------------------------------
   10. Routes
   -------------------------------------------------------------------------- */
.routes {
  position: relative;
  padding-block: var(--section-y);
  background-color: var(--ink);
  color: var(--paper);
  overflow: hidden;
}

.routes::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.05;
  pointer-events: none;
}

.routes .container {
  position: relative;
  z-index: 1;
}

.section-head--dark .eyebrow {
  color: rgba(244, 241, 236, 0.6);
}

.section-head--dark .lede {
  color: rgba(244, 241, 236, 0.7);
}

.routes__strip {
  position: relative;
  z-index: 1;
  margin-top: clamp(40px, 6vw, 76px);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}

.routes__strip::-webkit-scrollbar {
  display: none;
}

.routes__strip.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.routes__track {
  display: flex;
  gap: clamp(14px, 2vw, 24px);
  width: max-content;
  padding-inline: var(--gutter);
}

.route {
  scroll-snap-align: start;
}

.route__media {
  position: relative;
  width: clamp(230px, 26vw, 330px);
  border-radius: 4px;
  overflow: hidden;
  background-color: #1c1c1c;
}

.route__media img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 1.1s var(--ease-out);
}

.route:hover .route__media img {
  transform: scale(1.05);
}

.route__chip {
  position: absolute;
  left: 12px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.5em 0.85em 0.46em;
  border-radius: 3px;
  background-color: var(--paper);
  color: var(--ink);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.route__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--red);
}

.routes__hint {
  margin-top: clamp(20px, 3vw, 32px);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(244, 241, 236, 0.5);
}

/* --------------------------------------------------------------------------
   11. Brands
   -------------------------------------------------------------------------- */
.brands {
  padding-block: var(--section-y);
  background-color: var(--paper);
}

.brands__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.95fr);
  gap: clamp(16px, 2.4vw, 32px);
  margin-top: clamp(44px, 6vw, 84px);
}

.brand-card {
  padding: clamp(24px, 3.4vw, 52px);
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  background-color: transparent;
  transition:
    transform 0.5s var(--ease-snap),
    border-color 0.4s var(--ease-in-out),
    box-shadow 0.5s var(--ease-snap);
}

.brand-card--b,
.brand-card--d {
  margin-top: clamp(0px, 5vw, 72px);
}

.brand-card:hover {
  transform: translateY(-5px);
  border-color: var(--red);
  box-shadow: 0 16px 40px rgba(18, 18, 18, 0.08);
}

.brand-card__name {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.1vw, 2.8rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.brand-card__text {
  margin-top: clamp(14px, 2vw, 22px);
  font-size: 0.95rem;
  color: var(--ink-soft);
  max-width: 34ch;
}

.brand-card--d {
  background-color: var(--red);
  border-color: var(--red);
  color: var(--paper);
}

.brand-card--d .brand-card__text {
  color: rgba(244, 241, 236, 0.85);
}

/* --------------------------------------------------------------------------
   12. Voice
   -------------------------------------------------------------------------- */
.voice {
  padding-block: var(--section-y);
  background-color: var(--ink);
  color: var(--paper);
  overflow: hidden;
}

.marquee {
  margin-top: clamp(36px, 5vw, 64px);
  display: grid;
  gap: clamp(10px, 1.4vw, 20px);
}

.marquee__row {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 44px);
  width: max-content;
  animation: marquee 42s linear infinite;
}

.marquee__row--reverse {
  animation-direction: reverse;
}

.marquee__item {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4.2vw, 3.4rem);
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  color: rgba(244, 241, 236, 0.9);
}

.marquee__row--reverse .marquee__item {
  color: transparent;
  -webkit-text-stroke: 1px rgba(244, 241, 236, 0.55);
}

.marquee__sep {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4.2vw, 3.4rem);
  line-height: 1;
  color: var(--red);
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.voice__cta {
  margin-top: clamp(44px, 6vw, 80px);
  text-align: center;
}

/* --------------------------------------------------------------------------
   13. Contact
   -------------------------------------------------------------------------- */
.contact {
  padding-block: var(--section-y);
  background-color: var(--paper);
}

.contact__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 2.6vw, 36px);
  margin-top: clamp(44px, 6vw, 80px);
}

.contact__card {
  padding-top: clamp(18px, 2.4vw, 28px);
  border-top: 1px solid var(--line-strong);
}

.contact__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.contact__value {
  display: inline-block;
  margin-top: 12px;
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.contact__hint {
  margin-top: 10px;
  font-size: 0.84rem;
  color: var(--ink-soft);
  word-break: break-word;
}

.zones {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 44px);
  margin-top: clamp(56px, 8vw, 110px);
  padding-top: clamp(24px, 3vw, 40px);
  border-top: 1px solid var(--line);
}

.zone__name {
  font-size: 1.05rem;
  font-weight: 700;
}

.zone__link {
  margin-top: 10px;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

/* --------------------------------------------------------------------------
   14. Footer
   -------------------------------------------------------------------------- */
.footer {
  padding-block: clamp(56px, 8vw, 110px) clamp(32px, 4vw, 56px);
  background-color: var(--ink);
  color: var(--paper);
}

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.footer__wordmark {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 8vw, 7rem);
  line-height: 0.9;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.footer__descriptor {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
}

.footer__line {
  margin-top: clamp(28px, 4vw, 48px);
  max-width: 52ch;
  color: rgba(244, 241, 236, 0.7);
}

.footer__legal {
  margin-top: clamp(28px, 4vw, 44px);
  padding-top: clamp(18px, 2vw, 28px);
  border-top: 1px solid var(--line-dark);
  font-size: 0.8rem;
  color: rgba(244, 241, 236, 0.45);
}

/* --------------------------------------------------------------------------
   15. Motion: entry, reveals, reduced motion
   -------------------------------------------------------------------------- */
@keyframes enter-up {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes enter-scale {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes enter-down {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.enter-up {
  animation: enter-up 0.8s var(--ease-out) both;
  animation-delay: var(--stagger, 0ms);
}

.enter-scale {
  animation: enter-scale 0.9s var(--ease-out) both;
  animation-delay: var(--stagger, 0ms);
}

.nav__inner {
  animation: enter-down 0.7s var(--ease-out) both;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.8s var(--ease-out),
    transform 0.8s var(--ease-out);
}

[data-reveal="scale"] {
  transform: scale(0.95);
}

[data-reveal="blur"] {
  transform: translateY(24px);
}

[data-reveal].is-visible,
[data-reveal="scale"].is-visible,
[data-reveal="blur"].is-visible {
  opacity: 1;
  transform: none;
}

[data-reveal-stagger] > * {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.7s var(--ease-out),
    transform 0.7s var(--ease-out);
}

[data-reveal-stagger].is-visible > * {
  opacity: 1;
  transform: none;
}

[data-reveal-stagger].is-visible > *:nth-child(1) { transition-delay: 0ms; }
[data-reveal-stagger].is-visible > *:nth-child(2) { transition-delay: 90ms; }
[data-reveal-stagger].is-visible > *:nth-child(3) { transition-delay: 180ms; }
[data-reveal-stagger].is-visible > *:nth-child(4) { transition-delay: 270ms; }

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

  .enter-up,
  .enter-scale,
  .nav__inner {
    animation: none;
  }

  [data-reveal],
  [data-reveal-stagger] > * {
    opacity: 1;
    transform: none;
    transition: opacity 0.3s ease;
  }

  .marquee__row {
    animation: none;
  }

  .btn,
  .product__media,
  .brand-card,
  .hero__shot img,
  .route__media img,
  .product__media img {
    transition: none;
  }

  .btn:hover,
  .brand-card:hover,
  .product:hover .product__media {
    transform: none;
  }
}

/* --------------------------------------------------------------------------
   16. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1080px) {
  .hero__inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero__media {
    grid-template-columns: 1.2fr 1fr;
    margin-top: 0;
  }

  .hero__mark {
    width: min(38%, 120px);
  }

  .pillars__list {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(28px, 4vw, 44px);
  }

  .pillars__item:nth-child(odd) {
    padding-left: 0;
    border-left: 0;
  }

  .contact__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .nav__links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    padding: 8px var(--gutter) 24px;
    background-color: var(--paper);
    color: var(--ink);
    box-shadow: 0 24px 40px rgba(18, 18, 18, 0.12);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition:
      transform 0.45s var(--ease-snap),
      opacity 0.35s var(--ease-in-out);
  }

  .nav__links a {
    padding-block: 14px;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }

  .nav.is-open .nav__links {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav__toggle {
    display: block;
    margin-inline-start: auto;
  }

  .nav.is-open .nav__toggle span:first-child {
    transform: translateY(2.75px) rotate(45deg);
  }

  .nav.is-open .nav__toggle span:last-child {
    transform: translateY(-2.75px) rotate(-45deg);
  }

  .nav__cta {
    display: none;
  }

  .nav.is-scrolled,
  .nav.is-open {
    background-color: rgba(244, 241, 236, 0.92);
  }

  .story__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .story__media {
    margin-top: 0;
    max-width: 520px;
  }

  .catalog__grid {
    grid-template-columns: repeat(2, 1fr);
    column-gap: clamp(16px, 3vw, 28px);
  }

  .product--a,
  .product--b,
  .product--c,
  .product--d,
  .product--e,
  .product--f {
    grid-column: auto;
    margin-top: 0;
  }

  .brands__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .brand-card--b,
  .brand-card--d {
    margin-top: 0;
  }

  .zones {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }

  .stats {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: auto;
    padding-top: calc(var(--nav-h) + 40px);
    padding-bottom: 56px;
  }

  .hero__title {
    font-size: clamp(2.5rem, 12.5vw, 3.4rem);
  }

  .hero__media {
    grid-template-columns: 1fr 1fr;
  }

  .hero__mark {
    width: min(52%, 104px);
  }

  .catalog__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .pillars__list {
    grid-template-columns: minmax(0, 1fr);
  }

  .pillars__item {
    padding-left: 0;
    border-left: 0;
    padding-top: 20px;
    border-top: 1px solid rgba(244, 241, 236, 0.32);
  }

  .pillars__item:first-child {
    padding-top: 0;
    border-top: 0;
  }

  .contact__grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* ---- qa: touch targets >= 44px ---- */
a.wordmark { min-height: 44px; justify-content: center; }

.nav__links a,
.contact__value,
.zone__link,
a[href^="tel:"] {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.link-underline {
  display: inline-block;
  min-height: 44px;
  line-height: 44px;
}

.link-underline::after { bottom: 10px; }

/* ---- qa: render at real pixel size (no upscale) ---- */
.product__media { max-width: 484px; }
