/* ============================================================
   PROVENDO — design tokens
   ============================================================ */
:root {
  --paper: #f5f2ea;
  --paper-dim: #efeade;
  --linen: #e9e2d2;
  --ink: #262420;
  --ink-soft: #4a453c;
  --stone: #8a8371;
  --stone-light: #b6ae9a;
  --stamp: #6e2a26;
  --stamp-dim: rgba(110, 42, 38, 0.1);
  --line: rgba(38, 36, 32, 0.14);

  --font-display: "Ibarra Real Nova", "Iowan Old Style", Georgia, serif;
  --font-body: "Schibsted Grotesk", "Helvetica Neue", Arial, sans-serif;
  --font-stencil: "Big Shoulders Stencil Text", "Arial Narrow", sans-serif;

  --container: 1360px;
  --gutter: clamp(24px, 5vw, 72px);
  --section-pad: clamp(72px, 10vw, 160px);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ============================================================
   Reset
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: auto; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, p { margin: 0; }
button {
  font-family: inherit;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
}
input {
  font-family: inherit;
  font-size: inherit;
}

::selection { background: var(--stamp); color: var(--paper); }

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

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stamp);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--stamp);
  display: inline-block;
}

/* ============================================================
   Nav
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px var(--gutter);
  transition: transform 0.5s var(--ease-in-out), background-color 0.4s ease, box-shadow .4s ease;
  mix-blend-mode: normal;
}
.nav.is-hidden { transform: translateY(-110%); }
.nav__mark, .nav__links a, .nav__cta {
  color: var(--paper);
  transition: color 0.4s ease, background-color 0.3s var(--ease-out), border-color 0.4s ease;
}
.nav__cta { border-color: var(--paper); }
.nav.is-scrolled {
  background: rgba(245, 242, 234, 0.86);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--line);
}
.nav.is-scrolled .nav__mark,
.nav.is-scrolled .nav__links a,
.nav.is-scrolled .nav__cta {
  color: var(--ink);
}
.nav.is-scrolled .nav__cta { border-color: var(--ink); }
.nav__mark {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.01em;
}
.nav__mark span { color: var(--stamp); font-style: normal; }
.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
}
.nav__links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -4px;
  height: 1px;
  background: currentColor;
  transition: right 0.35s var(--ease-out);
}
.nav__links a:hover::after { right: 0; }
.nav__cta {
  border: 1px solid var(--paper);
  padding: 9px 20px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
  border-radius: 999px;
}
.nav__cta:hover { background: var(--paper); color: var(--ink); }
.nav.is-scrolled .nav__cta:hover { background: var(--ink); color: var(--paper); }
.nav__menu-btn { display: none; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 640px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background: var(--ink);
}
.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 18, 15, 0.15) 0%, rgba(20, 18, 15, 0) 32%, rgba(20, 18, 15, 0) 55%, rgba(20, 18, 15, 0.55) 100%);
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 var(--gutter) clamp(56px, 8vw, 96px);
  color: var(--paper);
}
.hero__eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper);
  opacity: 0.86;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}
.hero__eyebrow::before {
  content: "";
  width: 22px; height: 1px;
  background: var(--paper);
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 7.4vw, 108px);
  line-height: 0.98;
  letter-spacing: -0.01em;
  max-width: 15ch;
}
.hero__title em {
  font-style: italic;
  font-weight: 350;
}
.hero__sub {
  margin-top: 26px;
  max-width: 34ch;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.6;
  color: var(--paper);
  opacity: 0.86;
}
.hero__row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-top: 48px;
}
.hero__scroll {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paper);
  opacity: 0.75;
}
.hero__scroll-line {
  width: 1px; height: 40px;
  background: rgba(245, 242, 234, 0.4);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: "";
  position: absolute;
  top: -100%; left: 0; right: 0; height: 100%;
  background: var(--paper);
  animation: scrollline 2.2s var(--ease-in-out) infinite;
}
@keyframes scrollline {
  0% { top: -100%; }
  60% { top: 100%; }
  100% { top: 100%; }
}

/* stamp mark */
.stamp {
  width: clamp(96px, 9vw, 128px);
  height: clamp(96px, 9vw, 128px);
  color: var(--paper);
  opacity: 0.92;
  flex-shrink: 0;
  animation: stamp-spin 34s linear infinite;
}
@keyframes stamp-spin { to { transform: rotate(360deg); } }
.stamp--ink { color: var(--stamp); }

/* ============================================================
   Section shell
   ============================================================ */
.section {
  padding: var(--section-pad) 0;
  position: relative;
}
.section--tight { padding-top: calc(var(--section-pad) * 0.6); }
.section__head {
  max-width: 640px;
  margin-bottom: clamp(40px, 6vw, 76px);
}
.section__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-top: 18px;
}
.section__sub {
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: 16px;
  max-width: 46ch;
  line-height: 1.6;
}
.rule {
  border: none;
  border-top: 1px solid var(--line);
  margin: 0;
}

/* ============================================================
   Gallery — horizontal marquee of the most-clicked live products
   ============================================================ */
.marquee {
  margin-top: clamp(40px, 6vw, 76px);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.marquee__track {
  display: flex;
  width: max-content;
  gap: clamp(14px, 2vw, 24px);
  animation: marquee-scroll 42s linear infinite;
  padding: 0 var(--gutter);
}
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee__empty {
  color: var(--stone);
  font-size: 14px;
  padding: 40px 0;
}
.marquee__card {
  position: relative;
  flex: 0 0 auto;
  width: clamp(200px, 20vw, 260px);
  aspect-ratio: 4 / 5;
  border-radius: 2px;
  overflow: hidden;
  background: var(--linen);
  cursor: pointer;
}
.marquee__card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}
.marquee__card:hover img { transform: scale(1.05); }
.marquee__card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,18,15,0) 55%, rgba(20,18,15,0.6) 100%);
}
.marquee__tag {
  position: absolute;
  left: 14px; right: 14px; bottom: 12px;
  z-index: 2;
  color: var(--paper);
}
.marquee__tag b {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.2;
}
.marquee__tag span {
  display: block;
  margin-top: 3px;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.85;
}
.marquee__rank {
  position: absolute;
  top: 12px; left: 14px;
  z-index: 2;
  font-family: var(--font-stencil);
  font-size: 12px;
  color: var(--paper);
  background: rgba(20, 18, 15, 0.4);
  padding: 3px 9px;
  border-radius: 999px;
}

/* ============================================================
   Services (pinned index)
   ============================================================ */
.services {
  background: var(--linen);
}
.services__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 6vw, 96px);
  align-items: start;
}
.services__stage {
  position: sticky;
  top: 120px;
  aspect-ratio: 4 / 5;
  border-radius: 2px;
  overflow: hidden;
  background: var(--stone-light);
}
.services__stage img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 0.9s var(--ease-in-out), transform 1.4s var(--ease-in-out);
}
.services__stage img.is-active {
  opacity: 1;
  transform: scale(1);
}
.services__stage-frame {
  position: absolute; inset: 0;
}
.services__stamp-corner {
  position: absolute;
  right: 18px; bottom: 18px;
  width: 74px; height: 74px;
  color: var(--paper);
  opacity: .9;
}

.services__list { border-top: 1px solid var(--line); }
.services__row {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 24px;
  align-items: baseline;
  padding: clamp(22px, 3vw, 34px) 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
}
.services__num {
  font-family: var(--font-stencil);
  font-size: 14px;
  letter-spacing: 0.05em;
  color: var(--stone);
  transition: color 0.3s ease;
}
.services__body {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.services__body h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(22px, 2.6vw, 32px);
  transition: color 0.3s ease, transform 0.4s var(--ease-out);
}
.services__desc {
  display: grid;
  grid-template-rows: 0fr;
  max-width: 46ch;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.6;
  opacity: 0;
  transition: grid-template-rows 0.5s var(--ease-out), opacity 0.4s ease;
}
.services__desc > span {
  overflow: hidden;
  min-height: 0;
}
.services__arrow {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--stamp);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.3s ease, transform 0.3s var(--ease-out);
}
.services__row.is-active .services__num { color: var(--stamp); }
.services__row.is-active .services__body h3 { transform: translateX(6px); }
.services__row.is-active .services__desc { grid-template-rows: 1fr; opacity: 1; }
.services__row.is-active .services__body { gap: 8px; }
.services__row.is-active .services__arrow { opacity: 1; transform: translateX(0); }

/* ============================================================
   About
   ============================================================ */
.about__layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 6vw, 96px);
  align-items: center;
}
.about__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 2px;
  clip-path: inset(0 0 100% 0);
}
.about__media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.12);
}
.about__copy .section__title { max-width: 13ch; }
.about__copy .section__title::first-letter {
  font-size: 1.5em;
  font-family: var(--font-display);
  font-style: italic;
}
.about__body {
  margin-top: 22px;
  max-width: 52ch;
  font-size: 17px;
  line-height: 1.72;
  color: var(--ink-soft);
}
.about__stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(24px, 4vw, 48px);
  margin-top: 44px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.about__stat b {
  display: block;
  font-family: var(--font-stencil);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--stamp);
}
.about__stat span {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: var(--stone);
  max-width: 18ch;
}

/* ============================================================
   Testimonials
   ============================================================ */
.testimonials {
  background: var(--ink);
  color: var(--paper);
}
.testimonials .eyebrow { color: #c98b83; }
.testimonials .eyebrow::before { background: #c98b83; }
.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 96px);
}
.testimonials__col-head {
  font-family: var(--font-stencil);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--stone-light);
  padding-bottom: 20px;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(245,242,234,0.16);
}
.quote {
  padding: 26px 0;
  border-bottom: 1px solid rgba(245,242,234,0.12);
}
.quote:last-child { border-bottom: none; }
.quote p {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.5;
  max-width: 46ch;
}
.quote cite {
  display: block;
  margin-top: 14px;
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--stone-light);
}

/* ============================================================
   CTA / dual path
   ============================================================ */
.cta { padding: 0; }
.cta__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
}
.cta__panel {
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: clamp(32px, 5vw, 64px);
  overflow: hidden;
  color: var(--paper);
  clip-path: inset(0 0 100% 0);
}
.cta__panel img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease-in-out), filter 0.6s ease;
  filter: grayscale(0.15) brightness(0.72);
}
.cta__panel:hover img { transform: scale(1.06); filter: grayscale(0) brightness(0.62); }
.cta__panel::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,18,15,0.1) 20%, rgba(20,18,15,0.72) 100%);
}
.cta__body { position: relative; z-index: 2; max-width: 420px; }
.cta__tag {
  font-family: var(--font-stencil);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #d8b9a2;
}
.cta__title {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.4vw, 46px);
  margin-top: 14px;
  line-height: 1.05;
}
.cta__desc {
  margin-top: 14px;
  font-size: 15px;
  color: rgba(245,242,234,0.82);
  max-width: 34ch;
}
.cta__btn {
  margin-top: 26px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(245,242,234,0.6);
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.03em;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.cta__btn:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.cta__divider {
  position: absolute;
  left: 50%; top: 0; bottom: 0;
  width: 1px;
  background: rgba(245,242,234,0.35);
  z-index: 3;
  transform: translateX(-0.5px);
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(56px, 8vw, 96px) 0 28px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: clamp(28px, 4vw, 48px);
  padding-bottom: clamp(40px, 6vw, 72px);
  border-bottom: 1px solid rgba(245,242,234,0.14);
}
.footer__mark {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 30px;
}
.footer__mark span { color: #c98b83; font-style: normal; }
.footer__tagline {
  margin-top: 14px;
  color: var(--stone-light);
  font-size: 14px;
  max-width: 26ch;
}
.footer__col h4 {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone-light);
  margin-bottom: 18px;
}
.footer__col ul li { margin-bottom: 12px; }
.footer__col ul a { font-size: 14px; color: var(--paper); opacity: 0.86; }
.footer__col ul a:hover { opacity: 1; text-decoration: underline; }
.footer__form { display: flex; margin-top: 16px; border-bottom: 1px solid rgba(245,242,234,0.4); padding-bottom: 10px; }
.footer__form input {
  background: none; border: none; color: var(--paper); flex: 1; font-size: 14px;
}
.footer__form input::placeholder { color: var(--stone-light); }
.footer__form button { font-size: 13px; letter-spacing: 0.04em; color: #d8b9a2; white-space: nowrap; }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  font-size: 12px;
  color: var(--stone-light);
  flex-wrap: wrap;
  gap: 12px;
}
.footer__legal { display: flex; gap: 20px; }

/* ============================================================
   Sign-up modals
   ============================================================ */
.modal {
  border: none;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  width: min(640px, calc(100vw - 40px));
  max-height: min(760px, calc(100vh - 40px));
  border-radius: 3px;
  box-shadow: 0 30px 80px rgba(20, 18, 15, 0.35);
}
.modal::backdrop {
  background: rgba(20, 18, 15, 0.55);
  backdrop-filter: blur(3px);
}
.modal__form {
  position: relative;
  padding: clamp(28px, 5vw, 48px);
  max-height: min(760px, calc(100vh - 40px));
  overflow-y: auto;
}
.modal__close {
  position: absolute;
  top: 18px; right: 18px;
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  line-height: 1;
  color: var(--stone);
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.modal__close:hover { color: var(--ink); border-color: var(--ink); }
.modal__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(24px, 3vw, 32px);
  margin-top: 10px;
}
.modal__intro {
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.6;
  max-width: 48ch;
}
.modal__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 20px;
  margin-top: 28px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field--wide { grid-column: 1 / -1; }
.field--textarea { display: flex; flex-direction: column; gap: 8px; margin-top: 18px; }
.field span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.field__hint {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--stone);
}
.field input, .field select, .field textarea {
  border: none;
  border-bottom: 1px solid var(--line);
  background: transparent;
  padding: 8px 2px;
  font-size: 15px;
  color: var(--ink);
  font-family: var(--font-body);
  transition: border-color 0.2s ease;
}
.field select { appearance: none; background: transparent; cursor: pointer; }
.field textarea { border: 1px solid var(--line); border-radius: 2px; padding: 10px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--stamp);
}
.field--fieldset { border: none; padding: 0; margin: 24px 0 0; }
.field--fieldset legend {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 0;
  margin-bottom: 12px;
}
.modal__checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  cursor: pointer;
}
.modal__checks .check {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 14px 7px 10px;
}
.check input[type="checkbox"] {
  accent-color: var(--stamp);
  width: 15px; height: 15px;
}
.check--consent {
  margin-top: 22px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.check--consent input { margin-top: 3px; flex-shrink: 0; }
.modal__actions { margin-top: 28px; }
.cta__btn--dark {
  border: 1px solid var(--ink);
  color: var(--ink);
  display: inline-flex;
}
.cta__btn--dark:hover { background: var(--ink); color: var(--paper); }
.modal__legal {
  margin-top: 12px;
  font-size: 12px;
  color: var(--stone);
}
.modal__legal a { text-decoration: underline; }
.modal__error {
  margin-top: 18px;
  padding: 10px 14px;
  background: var(--stamp-dim);
  border: 1px solid var(--stamp);
  color: var(--stamp);
  font-size: 13px;
  border-radius: 2px;
}
.modal__success .modal__title { margin-top: 0; }

/* ============================================================
   Reveal utility (JS toggles .is-visible)
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); }
.reveal.is-visible { opacity: 1; transform: translateY(0); transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .nav__links { display: none; }
  .nav__menu-btn { display: block; }
  .marquee__card { width: clamp(160px, 46vw, 220px); }
  .services__layout { grid-template-columns: 1fr; }
  .services__stage { position: relative; top: 0; margin-bottom: 24px; }
  .about__layout { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .cta__split { grid-template-columns: 1fr; }
  .cta__divider { display: none; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .footer__top { grid-template-columns: 1fr; }
  .modal__grid { grid-template-columns: 1fr; }
  .field--wide { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  .stamp { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__scroll-line::after { animation: none; }
}
