/* minne — site styles
   Voice: quiet, earned, emotional. Ivory base, burnt orange acts, charcoal commands.
   Layout philosophy: editorial space; the product image is the argument;
   typography (DM Sans 900 display) does the rest. */

@import "./styles.css";

/* ============================================================
   Layout primitives
   ============================================================ */
.section {
  padding: var(--space-8) var(--space-6);
}
.section.is-inverse {
  background: var(--surface-inverse);
  color: var(--text-inverse);
}
.section.is-sunken {
  background: var(--color-paper-shade);
}
.section + .section {
  border-top: var(--border-subtle);
}
.section.is-inverse + .section { border-top: none; }
.section.is-inverse,
.section.is-inverse + .section { border-top: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* ============================================================
   Buttons — pill with soft orange + ivory under-glow
   ============================================================ */
.btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: -0.005em;
  white-space: nowrap;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  cursor: pointer;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 120ms ease;
  -webkit-appearance: none;
  appearance: none;
}
.btn:active { transform: translateY(1px); }
.btn[disabled],
.btn.is-disabled {
  cursor: not-allowed;
  background: var(--color-neutral-300);
  border-color: var(--color-neutral-300);
  color: var(--color-paper);
  transform: none;
}
.btn.is-sm { padding: 8px 16px;  font-size: 0.8125rem; }
.btn.is-md { padding: 12px 22px; font-size: 0.9375rem; }
.btn.is-lg { padding: 16px 28px; font-size: 1rem; }

/* Solid orange primary button — outer glow at rest, ivory cursor-tracked torch
   on hover, pressed dent on tap/select. No gradient fills. */
.btn.is-primary {
  background: var(--color-primary);
  color: var(--color-paper);
  border-color: var(--color-primary);
  --torch-x: 50%;
  --torch-y: 50%;
  --torch-opacity: 0;
  box-shadow:
    0 0 0 0 rgba(240, 148, 77, 0),
    0 12px 32px -4px rgba(240, 148, 77, 0.45),
    0 4px 12px -2px rgba(240, 148, 77, 0.35);
  transition:
    background 160ms ease,
    box-shadow 220ms ease,
    transform 80ms ease;
}
.btn.is-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(140px 140px at var(--torch-x) var(--torch-y),
              rgba(246, 241, 231, 0.55), transparent 70%);
  opacity: var(--torch-opacity);
  transition: opacity 220ms ease;
  mix-blend-mode: screen;
}
.btn.is-primary:hover {
  background: var(--color-primary);
  --torch-opacity: 1;
  box-shadow:
    0 0 0 6px rgba(240, 148, 77, 0.18),
    0 18px 42px -6px rgba(240, 148, 77, 0.55),
    0 6px 18px -2px rgba(240, 148, 77, 0.4);
}
.btn.is-primary:active,
.btn.is-primary.is-pressed {
  transform: translateY(1px);
  box-shadow:
    inset 0 4px 10px rgba(28, 28, 30, 0.28),
    inset 0 1px 2px rgba(28, 28, 30, 0.32),
    0 4px 12px -4px rgba(240, 148, 77, 0.3);
  background: var(--color-primary-active);
}

/* Inverse: charcoal pill, used by nav order chip's hover state below */
.btn.is-inverse {
  background: var(--color-ink);
  color: var(--color-paper);
  border-color: var(--color-ink);
  transition: background 160ms ease, transform 80ms ease;
}
.btn.is-inverse:hover { background: var(--color-neutral-800); }
.btn.is-inverse:active { transform: translateY(1px); }

/* Header Pre-order: charcoal ring, fills solid charcoal on hover and select. */
.btn.is-outline {
  background: transparent;
  color: var(--color-ink);
  border-color: var(--color-ink);
  transition: background 180ms ease, color 180ms ease, transform 80ms ease, box-shadow 200ms ease;
}
.btn.is-outline:hover,
.btn.is-outline:focus-visible {
  background: var(--color-ink);
  color: var(--color-paper);
  border-color: var(--color-ink);
  box-shadow: 0 8px 22px -6px rgba(28, 28, 30, 0.35);
}
.btn.is-outline:active {
  transform: translateY(1px);
  background: var(--color-neutral-800);
  border-color: var(--color-neutral-800);
  box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.35);
}

.btn.is-ghost     { background: transparent; color: var(--color-ink); border-color: transparent; }
.btn.is-ghost:hover     { color: var(--color-primary); }

.btn .btn__strike {
  font-weight: 400;
  text-decoration: line-through;
  opacity: 0.6;
  margin-left: 6px;
}

/* ============================================================
   Tag pill (small label on hero)
   ============================================================ */
.tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  border: 1px solid currentColor;
}
.tag.is-on-dark { color: var(--color-primary); border-color: var(--color-primary-dim-border); background: var(--color-primary-dim); }
.tag.is-on-light { color: var(--color-primary-ink); border-color: var(--color-primary); background: var(--color-primary-soft); }

/* ============================================================
   Form controls — minimal, ivory-friendly
   ============================================================ */
.input, .select {
  display: block;
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-ink);
  background: var(--color-paper);
  border: 1px solid var(--color-neutral-300);
  border-radius: var(--radius-md);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color 120ms ease, box-shadow 120ms ease;
}
.input:focus, .select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-soft);
}
.input::placeholder { color: var(--color-neutral-500); font-weight: 400; }
.input.is-invalid, .select.is-invalid { border-color: var(--color-danger); }

.select {
  background-image:
    linear-gradient(45deg, transparent 50%, var(--color-ink) 50%),
    linear-gradient(135deg, var(--color-ink) 50%, transparent 50%);
  background-position:
    calc(100% - 22px) calc(50% - 2px),
    calc(100% - 16px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 44px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.field__label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-neutral-700);
}
.field__hint {
  font-size: 0.8125rem;
  color: var(--text-muted);
}
.field__label .req { color: var(--color-primary); margin-left: 2px; }

/* ============================================================
   Site chrome — nav + footer
   ============================================================ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
  padding: 18px 32px;
  background: rgba(246, 241, 231, 0.9);
  backdrop-filter: saturate(150%) blur(10px);
  -webkit-backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid var(--color-neutral-200);
}
.site-nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  border-bottom: none;
  color: var(--color-ink);
}
.site-nav__mark-svg {
  display: block;
  height: 22px;
  width: auto;
  flex: none;
}
.site-nav__wordmark {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--color-ink);
  line-height: 1;
  text-transform: lowercase;
}
.site-nav__links {
  display: flex;
  gap: var(--space-6);
}
.site-nav__link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--color-neutral-700);
  text-decoration: none;
  border-bottom: none;
}
.site-nav__link:hover { color: var(--color-primary); }
.site-nav__link.is-active { color: var(--color-ink); }
.site-nav__actions {
  display: flex;
  gap: var(--space-3);
  align-items: center;
}

.site-footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 56px 32px 40px;
  background: var(--surface-inverse);
  color: var(--color-neutral-300);
  font-size: 0.875rem;
}
.site-footer__couplet {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.5;
  color: var(--color-paper);
  margin: 0 0 32px;
  max-width: 32ch;
  width: 100%;
  text-wrap: balance;
}
.site-footer__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-5);
  width: 100%;
  padding-top: 24px;
  border-top: 1px solid var(--color-neutral-800);
}
.site-footer__brand {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--color-paper); border-bottom: none;
}
.site-footer__mark-svg { display: block; height: 18px; width: auto; }
.site-footer__wordmark {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--color-paper);
  line-height: 1;
  text-transform: lowercase;
}
.site-footer__tag { color: var(--color-neutral-400); }
.site-footer__links { margin-left: auto; display: flex; gap: var(--space-5); flex-wrap: wrap; }
.site-footer__links a { color: var(--color-neutral-300); border-bottom: none; }
.site-footer__links a:hover { color: var(--color-primary); }
.site-footer__copy { color: var(--color-neutral-500); }

/* ============================================================
   HERO — type-first on ivory; product photo floats behind
   the text at lower right, like a quiet watermark.
   ============================================================ */
.hero {
  position: relative;
  background: var(--surface-page);
  color: var(--color-ink);
  padding: 96px 32px 160px;
  overflow: hidden;
  /* Taller hero gives the 2x trophy room to travel top-right to bottom-left
     across scroll without ever hitting a viewport edge. */
  min-height: clamp(820px, 110vh, 1180px);
  display: flex;
  align-items: center;
  /* Give the trophy a 3D stage so GSAP rotateY / rotateX reads as depth. */
  perspective: 1600px;
  perspective-origin: 50% 50%;
}
.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.hero__copy { margin: 0 auto; position: relative; z-index: 2; }
.hero__product {
  /* Anchored to hero center; GSAP owns the full transform (centering
     via xPercent/yPercent: -50, plus travel via x/y px). ~2x size.
     Scroll-only motion now — no hover, no pointer events. */
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: clamp(360px, min(60vw, 70vh), 700px);
  max-height: 72%;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 30px 60px rgba(28, 28, 30, 0.28));
}
.hero__product img {
  width: auto;
  height: 100%;
  display: block;
  transform-style: preserve-3d;
  will-change: transform;
  backface-visibility: hidden;
}

/* Tablet: still 2x of the original tablet size, slightly tighter cap. */
@media (min-width: 720px) and (max-width: 1024px) {
  .hero__product { height: clamp(420px, 60vw, 620px); max-height: 62%; }
}

.hero__headline {
  font-family: var(--font-caption);
  font-weight: 700;
  font-size: clamp(2.75rem, 7.5vw, 6.5rem);
  line-height: 1.05;
  letter-spacing: 0;
  color: var(--color-ink);
  margin: 0 0 48px;
  text-wrap: balance;
  max-width: 12ch;
  margin-left: auto;
  margin-right: auto;
  /* Ivory halo keeps the charcoal type legible when the trophy crosses it. */
  text-shadow:
    0 0 30px rgba(246, 241, 231, 0.95),
    0 0 60px rgba(246, 241, 231, 0.7),
    0 0 12px rgba(246, 241, 231, 0.95);
  position: relative;
  z-index: 2;
}
.hero__headline em {
  font-style: normal;
  color: inherit;
}
.hero__ctas {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-5);
  margin-top: 24px;
}
.hero__price-note {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-neutral-500);
}

/* ============================================================
   FEATURE MOMENTS — title-first; no-bg images float and
   overlap text (Pocketman-style); each section ends with a
   close-up banner whose base aligns flush with the edge.
   ============================================================ */
.features {
  padding: 80px 32px 40px;
  background: var(--surface-page);
}
.feature {
  position: relative;
  padding: 56px 0;
  overflow: visible;
}

/* ============================================================
   Section-break banner: a full-bleed close-up route image
   that separates the order section from the features.
   ============================================================ */
.section-break {
  width: 100%;
  height: clamp(220px, 30vw, 380px);
  overflow: hidden;
  background: var(--color-ink);
  display: block;
}
.section-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Animated hairline divider between features — scroll parallax extends it
   from center outward as the next feature enters the viewport. */
.feature-divider {
  position: relative;
  height: 1px;
  margin: 0 32px;
  display: flex;
  justify-content: center;
}
.feature-divider span {
  display: block;
  height: 1px;
  width: 12%;
  background: var(--color-neutral-200);
  transform-origin: center;
  transition: none;
}
.feature__inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}
.feature__num {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.feature__title {
  font-family: var(--font-caption);
  font-weight: 700;
  font-size: clamp(2.5rem, 6.5vw, 5rem);
  line-height: 1.02;
  letter-spacing: 0;
  margin: 0;
  color: var(--color-ink);
  text-wrap: balance;
  max-width: 16ch;
  position: relative;
  z-index: 2;
}
.feature__title em { font-style: normal; color: var(--color-primary); }

/* No-background product image floating into the headline,
   like the Pocketman device crossing the type. */
.feature__float {
  position: absolute;
  right: -4%;
  top: 50%;
  transform: translateY(-30%);
  width: clamp(280px, 42%, 540px);
  z-index: 1;
  pointer-events: none;
  filter: drop-shadow(0 30px 40px rgba(28, 28, 30, 0.25));
}
.feature__float img { width: 100%; height: auto; display: block; }
.feature--right .feature__inner { display: flex; flex-direction: column; align-items: flex-end; }
.feature--right .feature__num { text-align: right; }
.feature--right .feature__title { margin-left: auto; text-align: right; }
.feature--right .feature__float { right: auto; left: -4%; transform: translateY(-35%); }

/* Banner image that closes a section flush with its edge. */
.feature__banner {
  margin-top: 80px;
  margin-left: -32px;
  margin-right: -32px;
  height: clamp(220px, 32vw, 360px);
  overflow: hidden;
  background: var(--color-ink);
}
.feature__banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================================
   HOW IT WORKS — three numbered steps
   ============================================================ */
.howto {
  position: relative;
  background: var(--surface-inverse);
  color: var(--text-inverse);
  padding: 120px 32px;
  overflow: hidden;
  isolation: isolate;
}
.howto::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("uploads/banner-short.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.18;
  z-index: 0;
  pointer-events: none;
  filter: saturate(1.05);
}
.howto__inner { position: relative; z-index: 1; max-width: 1100px; margin: 0 auto; }
.howto__heading {
  font-family: var(--font-caption);
  font-weight: 700;
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
  margin: 0 0 64px;
  color: var(--color-paper);
  max-width: 14ch;
}
.howto__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-7);
}
.howto__step {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 24px;
}
.howto__num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1rem;
  color: var(--color-primary);
  letter-spacing: 0;
}
.howto__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--color-paper);
}
.howto__body {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: rgba(246, 241, 231, 0.78);  /* ivory at 78% on charcoal */
  margin: 0;
}

/* ============================================================
   ORDER — single card from product data
   ============================================================ */
.order {
  padding: 120px 32px;
  background: var(--color-paper-shade);
}
.order__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: var(--space-8);
  align-items: start;
}
.order__intro { position: sticky; top: 100px; }
.order__eyebrow {
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--color-primary-ink);
  margin-bottom: 16px;
}
.order__title {
  font-family: var(--font-caption);
  font-weight: 700;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.02;
  letter-spacing: 0;
  margin: 0 0 20px;
  text-wrap: balance;
}
.order__lede {
  font-size: 1.0625rem;
  color: var(--color-neutral-700);
  max-width: 38ch;
  margin: 0 0 24px;
}
.order__assurance {
  font-size: 0.875rem;
  color: var(--text-muted);
  display: flex; flex-direction: column; gap: 8px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--color-neutral-200);
}
.order__assurance b { color: var(--color-ink); font-weight: 600; }

.product-card {
  background: var(--color-paper);
  border: 1px solid var(--color-neutral-200);
  border-radius: var(--radius-md);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.product-card__media {
  aspect-ratio: 16 / 11;
  background: var(--color-paper);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.product-card__media img {
  width: 100%;
  height: 100%;
  /* Show the whole photo — the hexagons stay centered in frame with
     no top or bottom crop. Any small horizontal letterbox falls onto
     the ivory media background. */
  object-fit: contain;
  object-position: center;
  display: block;
}
.product-card__row {
  display: flex; align-items: baseline; justify-content: space-between; gap: 16px;
}
.product-card__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.375rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-ink);
}
.product-card__spec {
  font-size: 0.8125rem; color: var(--text-muted);
  letter-spacing: 0.04em; text-transform: uppercase;
}
.product-card__price {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--color-ink);
  letter-spacing: -0.02em;
}
.product-card__price .strike {
  font-weight: 500;
  font-size: 1rem;
  color: var(--color-neutral-400);
  text-decoration: line-through;
  margin-left: 8px;
}

.order-form { display: flex; flex-direction: column; gap: 20px; }
.order-form__row { display: grid; grid-template-columns: 1fr; gap: 20px; }
.order-form__submit { margin-top: 8px; }
.order-form__legal {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin: 0;
}

/* Multi-URL stacker */
.url-stack { display: flex; flex-direction: column; gap: 10px; }
.url-row { display: flex; gap: 8px; align-items: center; }
.url-row .input { flex: 1; }
.url-remove {
  flex: none;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  line-height: 1;
  font-family: var(--font-body);
  color: var(--color-neutral-500);
  background: transparent;
  border: 1px solid var(--color-neutral-300);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: color 120ms ease, border-color 120ms ease, background 120ms ease;
}
.url-remove:hover { color: var(--color-primary); border-color: var(--color-primary); }

.url-add {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  padding: 8px 14px 8px 8px;
  align-self: flex-start;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-ink);
  background: transparent;
  border: 1px dashed var(--color-ink);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, border-style 160ms ease;
}
.url-add:hover,
.url-add:focus-visible,
.url-add.is-pressed {
  background: var(--color-ink);
  color: var(--color-paper);
  border-style: solid;
  border-color: var(--color-ink);
}
.url-add:active { background: var(--color-neutral-800); border-color: var(--color-neutral-800); }
.url-add__plus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-ink);
  color: var(--color-paper);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  transition: background 160ms ease, color 160ms ease;
}
.url-add:hover .url-add__plus,
.url-add:focus-visible .url-add__plus { background: var(--color-paper); color: var(--color-ink); }

.order-confirm {
  background: var(--color-primary-soft);
  border: 1px solid var(--color-primary);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.order-confirm__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.125rem;
  color: var(--color-primary-ink);
  letter-spacing: -0.01em;
  margin: 0;
}
.order-confirm__body { color: var(--color-neutral-700); margin: 0; font-size: 0.9375rem; }

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  padding: 120px 32px;
}
.faq__inner {
  max-width: 880px;
  margin: 0 auto;
}
.faq__heading {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 0 0 48px;
}
.faq__list { display: flex; flex-direction: column; }
.faq__item {
  border-top: 1px solid var(--color-neutral-200);
  padding: 28px 0;
}
.faq__item:last-child { border-bottom: 1px solid var(--color-neutral-200); }
.faq__q {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: -0.015em;
  color: var(--color-ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  list-style: none;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after {
  content: "+";
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--color-neutral-500);
  transition: transform 200ms ease;
}
.faq__item[open] .faq__q::after { content: "−"; }
.faq__a {
  margin-top: 12px;
  color: var(--color-neutral-700);
  font-size: 1rem;
  max-width: 60ch;
}

/* ============================================================
   ABOUT — editorial, mostly type on ivory
   ============================================================ */
.about-hero {
  padding: 140px 32px 80px;
}
.about-hero__inner {
  max-width: 820px;
  margin: 0 auto;
}
.about-hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary-ink);
  margin-bottom: 24px;
}
.about-hero__opening {
  font-family: var(--font-caption);
  font-weight: 700;
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  line-height: 1.02;
  letter-spacing: 0;
  margin: 0;
  color: var(--color-ink);
}

.about-body {
  padding: 40px 32px 120px;
}
.about-body__inner {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.about-body p {
  font-size: 1.1875rem;
  line-height: 1.65;
  color: var(--color-neutral-700);
  margin: 0;
  font-weight: 400;
}
.about-body p.is-lead {
  font-size: 1.375rem;
  color: var(--color-ink);
  font-weight: 500;
}
.about-figure {
  margin: 0;
}
.about-figure__media {
  aspect-ratio: 4 / 3;
  background: var(--color-paper-shade);
  border: 1px solid var(--color-neutral-200);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-neutral-400);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  overflow: hidden;
}
.about-figure__media img { width: 100%; height: 100%; object-fit: cover; }
.about-figure__caption {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 12px;
  text-align: center;
  font-style: italic;
}
.about-close {
  padding: 80px 32px 140px;
  background: var(--color-paper-shade);
  text-align: center;
}
.about-close__line {
  font-family: var(--font-caption);
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: 0;
  max-width: 22ch;
  margin: 0 auto 32px;
  color: var(--color-ink);
  text-wrap: balance;
}
.about-close__cta {
  display: inline-flex;
}

/* ============================================================
   Responsive — mobile first; this site opens from WhatsApp on phones
   ============================================================ */
@media (max-width: 960px) {
  .section { padding: 56px 20px; }

  .site-nav { padding: 14px 20px; }
  .site-nav__links { display: none; }

  .hero { padding: 56px 20px 96px; min-height: 110vh; }
  .hero__headline { font-size: clamp(2.5rem, 11vw, 4.5rem); margin-bottom: 36px; }
  .hero__ctas { gap: 16px; }
  .hero__product {
    /* Mobile sizing: smaller than tablet/desktop so the diagonal scroll
       motion has real travel room on a 375–414px phone — otherwise the
       trophy is so wide it almost can't move sideways. Still recognizable
       at this size since it's now the lone visual element in the hero. */
    width: auto;
    height: clamp(200px, 34vh, 280px);
    max-height: 38%;
    top: 50%;
    left: 50%;
    right: auto;
    bottom: auto;
    opacity: 0.95;
  }
  .hero__product img { width: auto; height: 100%; }

  .feature { padding: 56px 20px; }
  .feature__title { font-size: clamp(2rem, 9vw, 3rem); max-width: 100%; text-align: left; }
  /* When the title left-aligns on small screens, the eyebrow follows it. */
  .feature--right .feature__inner { align-items: flex-start; }
  .feature--right .feature__num { text-align: left; }
  .feature--right .feature__title { margin-left: 0; text-align: left; }
  .feature__float {
    position: relative; right: auto; left: auto;
    top: auto; transform: none;
    width: 100%; max-width: 360px;
    margin: 24px auto 0;
  }
  .feature--right .feature__float { left: auto; transform: none; }

  .howto { padding: 64px 20px; }
  .howto__steps { grid-template-columns: 1fr; gap: 32px; }
  .howto__heading { margin-bottom: 32px; }

  .order { padding: 64px 20px; }
  .order__inner { grid-template-columns: 1fr; gap: 32px; }
  .order__intro { position: static; }
  .product-card { padding: 24px; }

  .faq { padding: 64px 20px; }
  .about-hero { padding: 64px 20px 32px; }
  .about-body { padding: 16px 20px 64px; }
  .about-close { padding: 64px 20px 96px; }

  .site-footer { padding: 32px 20px; }
  .site-footer__links { margin-left: 0; width: 100%; }
}
