/* ============================================================
   Hightech - one page presentation site
   Design tokens sampled from the client logo (orange to teal).
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --paper: #F7F4F0;
  --paper-deep: #EDE7E0;
  --sand: #F1E7DA;
  --orange: #ED9448;
  --orange-deep: #D57C28;
  --teal: #4F8483;
  --teal-deep: #3A6B6A;
  --ink: #14171A;
  --ink-soft: #5C6467;
  --line: rgba(20, 23, 26, 0.12);

  --font-display: "Archivo", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  --nav-h: 76px;
  --radius: 16px;
  --ease: cubic-bezier(0.16, 0.84, 0.44, 1);
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section-y: clamp(4.5rem, 11vh, 9rem);
}

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

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

body {
  margin: 0;
  background-color: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.125rem);
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 {
  font-family: var(--font-display);
  margin: 0;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}

p { margin: 0; }

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

button { font: inherit; color: inherit; }

ul, ol, dl, dd, dt, figure { margin: 0; padding: 0; }

li { list-style: none; }

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

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: 1320px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}

section { scroll-margin-top: calc(var(--nav-h) + 8px); }

/* ---------- Typography ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: clamp(0.6875rem, 0.66rem + 0.14vw, 0.75rem);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.eyebrow--orange { color: var(--orange); }
.eyebrow--teal { color: var(--teal); }

.h2 {
  font-size: clamp(2rem, 1.3rem + 3.4vw, 4.25rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  max-width: 20ch;
}

.lede {
  font-size: clamp(1.0625rem, 1rem + 0.5vw, 1.375rem);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 52ch;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85em 1.6em;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: background-color 0.35s var(--ease), color 0.35s var(--ease),
              border-color 0.35s var(--ease), transform 0.35s var(--ease);
}

.btn--primary {
  background-color: var(--orange);
  color: var(--ink);
}
.btn--primary:hover {
  background-color: var(--orange-deep);
  transform: translateY(-2px);
}

.btn--pill {
  background-color: var(--orange);
  color: var(--ink);
  padding: 0.6em 1.25em;
  min-height: 44px;
}
.btn--pill:hover { background-color: var(--orange-deep); }

.btn--ghost {
  background-color: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn--ghost:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}

/* ============================================================
   1. NAV
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background-color: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color 0.45s var(--ease), border-color 0.45s var(--ease),
              box-shadow 0.45s var(--ease), backdrop-filter 0.45s var(--ease);
}

.nav.is-scrolled {
  background-color: rgba(247, 244, 240, 0.86);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px rgba(20, 23, 26, 0.06);
}

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

/* lockup */
.lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-right: auto;
  min-height: 44px;
}

.lockup__mark {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex: 0 0 auto;
}

.lockup__text {
  display: flex;
  flex-direction: column;
  gap: 0.28em;
  align-items: flex-start;
}

.lockup__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1875rem;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--paper);
  transition: color 0.45s var(--ease);
}

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

/* descriptor gets its own backing only over the hero photo */
.lockup__descriptor {
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
  padding: 0.42em 0.7em;
  border-radius: 999px;
  background-color: var(--orange);
  color: var(--ink);
  transition: background-color 0.45s var(--ease), color 0.45s var(--ease),
              padding 0.45s var(--ease);
}

.nav.is-scrolled .lockup__descriptor {
  background-color: transparent;
  color: var(--ink-soft);
  padding: 0.42em 0;
}

/* links */
.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 2rem);
}

.nav__links a {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(247, 244, 240, 0.9);
  transition: color 0.45s var(--ease);
}

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

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 14px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

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

.nav__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* burger */
.burger {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
}

.burger span {
  position: absolute;
  left: 13px;
  width: 22px;
  height: 2px;
  background-color: var(--paper);
  transition: transform 0.4s var(--ease), background-color 0.4s var(--ease),
              opacity 0.3s var(--ease);
}

.burger span:first-child { top: 19px; }
.burger span:last-child { top: 27px; }

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

.burger[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.burger[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

/* ---------- Mobile menu ---------- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background-color: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2.5rem;
  padding: calc(var(--nav-h) + 2rem) var(--gutter) 3rem;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}

.mobile-menu[hidden] { display: none; }
.mobile-menu.is-open { opacity: 1; transform: none; }

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-menu__nav a {
  font-family: var(--font-display);
  font-size: clamp(2rem, 9vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--paper);
  padding-block: 0.35em;
  border-bottom: 1px solid rgba(247, 244, 240, 0.12);
}

.mobile-menu .btn { align-self: flex-start; }

/* ============================================================
   2. HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background-color: #0B0D0F;
}

.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background-image:
    /* vertical vignette */
    linear-gradient(180deg,
      rgba(8, 10, 12, 0.58) 0%,
      rgba(8, 10, 12, 0.03) 30%,
      rgba(8, 10, 12, 0.72) 100%),
    /* dark pool under the text, fading out toward the product */
    radial-gradient(130% 95% at 6% 92%,
      rgba(8, 10, 12, 0.96) 0%,
      rgba(8, 10, 12, 0.80) 32%,
      rgba(8, 10, 12, 0.36) 58%,
      rgba(8, 10, 12, 0) 82%);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1320px;
  margin-inline: auto;
  padding-inline: var(--gutter);
  padding-bottom: clamp(2.5rem, 9vh, 7rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(0.75rem, 1.6vw, 1.25rem);
}

.hero__title {
  font-size: clamp(2.6rem, 1.2rem + 7.6vw, 7.5rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
  font-weight: 800;
  font-stretch: 105%;
  color: var(--paper);
  max-width: 15ch;
}

.hero__sub {
  font-size: clamp(1rem, 0.95rem + 0.35vw, 1.1875rem);
  color: rgba(247, 244, 240, 0.82);
  max-width: 44ch;
}

.hero__content .btn { margin-top: clamp(0.5rem, 1.5vw, 1rem); }

.hero__scroll {
  position: absolute;
  right: var(--gutter);
  bottom: clamp(2.5rem, 9vh, 7rem);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.hero__scroll-line {
  width: 1px;
  height: 52px;
  background-image: linear-gradient(180deg, transparent, var(--orange));
  animation: scrollPulse 2.4s var(--ease) infinite;
  transform-origin: top;
}

.hero__scroll-text {
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247, 244, 240, 0.6);
  writing-mode: vertical-rl;
}

@keyframes scrollPulse {
  0%   { transform: scaleY(0.3); opacity: 0.3; }
  50%  { transform: scaleY(1);   opacity: 1; }
  100% { transform: scaleY(0.3); opacity: 0.3; }
}

/* hero entry */
.reveal-hero {
  opacity: 0;
  animation: heroIn 0.9s var(--ease) forwards;
}
.hero__content .reveal-hero:nth-child(1) { animation-delay: 0.1s; }
.hero__content .reveal-hero:nth-child(2) { animation-delay: 0.22s; }
.hero__content .reveal-hero:nth-child(3) { animation-delay: 0.34s; }
.hero__content .reveal-hero:nth-child(4) { animation-delay: 0.46s; }

@keyframes heroIn {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: none; }
}

/* ============================================================
   3. STORY
   ============================================================ */
.story { padding-block: var(--section-y); }

.story__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.story__text {
  display: flex;
  flex-direction: column;
  gap: clamp(0.9rem, 2vw, 1.4rem);
}

.story__media {
  /* deliberately breaks the column grid */
  margin-top: clamp(1.5rem, 5vw, 4.5rem);
  margin-right: calc(-1 * var(--gutter));
  border-radius: var(--radius);
  overflow: hidden;
  background-color: var(--paper-deep);
}

.story__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 45%;
}

/* stat strip */
.stats {
  margin-top: clamp(3rem, 8vw, 6rem);
  padding-top: clamp(1.5rem, 3vw, 2.5rem);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
}

.stats__item {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.stats__num {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1rem + 2vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink);
}

.stats__label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ============================================================
   4. PILLARS
   ============================================================ */
.pillars {
  background-color: var(--sand);
  padding-block: var(--section-y);
}

.pillars__head {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
}

.pillars__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.pillar {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding-top: clamp(1rem, 2vw, 1.5rem);
  border-top: 1px solid rgba(20, 23, 26, 0.16);
}

.pillar__num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 1.5rem + 3.5vw, 4.5rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.05em;
  background-image: linear-gradient(120deg, var(--orange) 0%, var(--orange) 35%, var(--teal) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  width: fit-content;
}

.pillar__title {
  font-size: clamp(1.125rem, 1rem + 0.5vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.pillar__text {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 34ch;
}

/* ============================================================
   5. CATALOG
   ============================================================ */
.catalog { padding-block: var(--section-y); }

.catalog__head {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
}

.catalog__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem) clamp(1rem, 2vw, 2rem);
}

.cat-card {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.cat-card__media {
  overflow: hidden;
  border-radius: var(--radius);
  background-color: var(--paper-deep);
}

.cat-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.75s var(--ease);
}

.cat-card:hover .cat-card__media img { transform: scale(1.045); }

.cat-card__media--4-3  { aspect-ratio: 4 / 3; }
.cat-card__media--3-4  { aspect-ratio: 3 / 4; }
.cat-card__media--4-5  { aspect-ratio: 4 / 5; }
.cat-card__media--1-1  { aspect-ratio: 1 / 1; }
.cat-card__media--16-10 { aspect-ratio: 16 / 10; }

.cat-card__label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 0.35rem;
}

.cat-card__label--accent { color: var(--orange-deep); }

.cat-card__name {
  font-size: clamp(1.125rem, 1rem + 0.6vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  max-width: 22ch;
}

/* editorial placement */
.cat-card--wide { grid-column: span 7; }
.cat-card--tall { grid-column: span 5; margin-top: clamp(1.5rem, 5vw, 4.5rem); }
.catalog__grid > .cat-card:nth-child(3) { grid-column: span 4; }
.catalog__grid > .cat-card:nth-child(4) { grid-column: span 4; margin-top: clamp(1rem, 3vw, 2.5rem); }
.catalog__grid > .cat-card:nth-child(5) { grid-column: span 4; }
.cat-card--full { grid-column: span 8; }
.cat-card--price { grid-column: span 4; }

/* price card */
.cat-card--price {
  justify-content: center;
  gap: 1.1rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background-color: var(--ink);
  border-radius: var(--radius);
  color: var(--paper);
}

.cat-card--price .cat-card__name { color: var(--paper); }

.pricelist {
  display: flex;
  flex-direction: column;
}

.pricelist__row {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas: "name value" "meta value";
  align-items: center;
  gap: 0.15rem 1rem;
  padding-block: 0.85rem;
  border-top: 1px solid rgba(247, 244, 240, 0.16);
}

.pricelist__name {
  grid-area: name;
  font-size: 0.9375rem;
  font-weight: 500;
}

.pricelist__value {
  grid-area: value;
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 1rem + 0.5vw, 1.375rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--orange);
  white-space: nowrap;
}

.pricelist__meta {
  grid-area: meta;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247, 244, 240, 0.55);
}

.pricelist__note {
  font-size: 0.875rem;
  color: rgba(247, 244, 240, 0.7);
}

/* ============================================================
   6. PRE-ORDER BAND
   ============================================================ */
.preorder {
  background-image: linear-gradient(160deg, var(--teal-deep) 0%, #2C5251 55%, var(--ink) 100%);
  color: var(--paper);
  padding-top: var(--section-y);
  overflow: hidden;
}

.preorder .container {
  display: flex;
  flex-direction: column;
  gap: clamp(0.9rem, 2vw, 1.5rem);
}

.preorder__title {
  font-size: clamp(2.25rem, 1.4rem + 4.4vw, 5.5rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.04em;
  max-width: 18ch;
}

.preorder__sub {
  font-size: clamp(1.0625rem, 1rem + 0.5vw, 1.375rem);
  color: rgba(247, 244, 240, 0.75);
  max-width: 40ch;
}

/* horizontal overflowing strip */
.strip {
  display: flex;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-inline: var(--gutter);
  padding-block: clamp(2.5rem, 6vw, 4.5rem) clamp(3rem, 7vw, 5rem);
}

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

.strip__item {
  flex: 0 0 clamp(230px, 30vw, 400px);
  scroll-snap-align: start;
}

.strip__item img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 14px;
}

/* ============================================================
   7. STAGGERED GEAR GRID
   ============================================================ */
.gear { padding-block: var(--section-y); }

.gear__head {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

.gear__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2vw, 1.75rem);
  align-items: start;
}

.gear-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.gear-card:nth-child(2) { margin-top: clamp(1.5rem, 5vw, 4.5rem); }
.gear-card:nth-child(3) { margin-top: clamp(0.5rem, 2vw, 1.5rem); }
.gear-card:nth-child(4) { margin-top: clamp(2rem, 7vw, 6rem); }

.gear-card__media {
  overflow: hidden;
  border-radius: var(--radius);
  background-color: var(--paper-deep);
}

.gear-card__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 0.75s var(--ease);
}

.gear-card:hover .gear-card__media img { transform: scale(1.045); }

.gear-card__name {
  font-size: clamp(1rem, 0.95rem + 0.4vw, 1.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* ============================================================
   8. BRAND VOICE
   ============================================================ */
.voice {
  background-color: var(--ink);
  color: var(--paper);
  padding-block: var(--section-y);
  overflow: hidden;
}

.voice__title {
  color: var(--paper);
  margin-top: clamp(0.75rem, 2vw, 1.25rem);
}

.marquee {
  overflow: hidden;
  margin-top: clamp(2rem, 5vw, 3.5rem);
}

.marquee:last-of-type { margin-top: clamp(0.5rem, 1.5vw, 1rem); }

.marquee__track {
  display: flex;
  width: max-content;
  animation: marqueeX 44s linear infinite;
}

.marquee--reverse .marquee__track { animation-direction: reverse; }

.marquee__group {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  padding-right: clamp(1.25rem, 3vw, 2.5rem);
}

.marquee__item {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1rem + 2.6vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  white-space: nowrap;
  color: var(--paper);
}

.marquee--reverse .marquee__item {
  color: transparent;
  -webkit-text-stroke: 1px rgba(247, 244, 240, 0.55);
}

.marquee__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--orange);
  flex: 0 0 auto;
}

@keyframes marqueeX {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

/* ============================================================
   9. VISIT
   ============================================================ */
.visit { padding-block: var(--section-y); }

.visit__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.visit__text {
  display: flex;
  flex-direction: column;
  gap: clamp(0.9rem, 2vw, 1.4rem);
}

.visit__card {
  background-color: var(--paper-deep);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3.5vw, 2.75rem);
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.visit__list {
  display: flex;
  flex-direction: column;
}

.visit__row {
  display: grid;
  grid-template-columns: minmax(90px, 0.5fr) 1.5fr;
  gap: 1rem;
  padding-block: 0.9rem;
  border-top: 1px solid var(--line);
}

.visit__row dt {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding-top: 0.2em;
}

.visit__row dd {
  font-size: 1rem;
  font-weight: 500;
}

.visit__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ---------- Footer ---------- */
.footer {
  background-color: var(--ink);
  color: var(--paper);
  padding-block: clamp(3rem, 7vw, 5rem);
}

.footer__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.5rem, 4vw, 3rem) clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.footer__brand {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-areas: "mark name" "mark descriptor";
  align-items: center;
  gap: 0 0.7rem;
}

.footer__mark {
  grid-area: mark;
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.footer__name {
  grid-area: name;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}

.footer__descriptor {
  grid-area: descriptor;
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247, 244, 240, 0.55);
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2.25rem);
  justify-content: flex-end;
}

.footer__links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(247, 244, 240, 0.8);
  transition: color 0.35s var(--ease);
}

.footer__links a:hover { color: var(--orange); }

.footer__legal {
  grid-column: 1 / -1;
  font-size: 0.8125rem;
  color: rgba(247, 244, 240, 0.45);
  padding-top: clamp(1.5rem, 4vw, 2.5rem);
  border-top: 1px solid rgba(247, 244, 240, 0.12);
}

/* ============================================================
   Scroll reveals
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}

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

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1080px) {
  .nav__links { gap: 1rem; }
}

@media (max-width: 900px) {
  :root { --nav-h: 68px; }

  .nav__links { display: none; }
  .burger { display: block; }

  .story__grid { grid-template-columns: 1fr; }
  .story__media { margin-right: calc(-1 * var(--gutter)); margin-top: 0; }

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

  .catalog__grid { grid-template-columns: repeat(6, 1fr); }
  .cat-card--wide,
  .cat-card--tall,
  .catalog__grid > .cat-card:nth-child(3),
  .catalog__grid > .cat-card:nth-child(4),
  .catalog__grid > .cat-card:nth-child(5),
  .cat-card--full,
  .cat-card--price { grid-column: span 6; margin-top: 0; }

  .gear__grid { grid-template-columns: repeat(2, 1fr); }
  .gear-card:nth-child(3),
  .gear-card:nth-child(4) { margin-top: 0; }

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

  .footer__inner { grid-template-columns: 1fr; }
  .footer__links { justify-content: flex-start; }

  .hero__scroll { display: none; }
}

@media (max-width: 640px) {
  .nav__actions .btn--pill { display: none; }

  .stats { grid-template-columns: repeat(2, 1fr); }
  .pillars__list { grid-template-columns: 1fr; }
  .gear__grid { grid-template-columns: 1fr; }
  .gear-card:nth-child(2) { margin-top: 0; }

  .visit__row { grid-template-columns: 1fr; gap: 0.35rem; }
  .visit__actions { flex-direction: column; align-items: stretch; }
  .visit__actions .btn { width: 100%; }

  .lockup__descriptor { display: none; }
  .nav.is-scrolled .lockup__descriptor { display: none; }
}

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

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

  .reveal,
  .reveal-hero {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }

  .marquee__track { animation: none !important; }

  .hero__scroll-line { animation: none !important; }

  .btn:hover,
  .cat-card:hover .cat-card__media img,
  .gear-card:hover .gear-card__media img { transform: none !important; }
}
