/* ==========================================================
   LDRV — Stylesheet
   Editorial · Bricolage Grotesque + Instrument Serif
   ========================================================== */

:root {
  /* — Couleurs — */
  --bg:        #0D0D0B;
  --bg-soft:   #15140F;
  --bg-elev:   #1C1B16;
  --ink:       #F2EFE6;
  --ink-soft:  #B4B0A5;
  --ink-muted: #7B7869;
  --line:      rgba(242, 239, 230, 0.10);
  --line-2:    rgba(242, 239, 230, 0.18);

  --lime:      #CFFF50;
  --lime-soft: #E4FF8A;
  --coral:     #FF6B3D;
  --violet:    #B8A8FF;
  --gold:      #F2C46B;
  --mist:      #DCE5DA;

  /* — Type — */
  --display: 'Instrument Serif', 'Times New Roman', serif;
  --sans:    'Bricolage Grotesque', system-ui, -apple-system, sans-serif;
  --mono:    'JetBrains Mono', ui-monospace, monospace;

  /* — Layout — */
  --container: 1280px;
  --gutter: clamp(20px, 4vw, 48px);
  --radius: 18px;
  --radius-lg: 28px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
*::selection { background: var(--lime); color: var(--bg); }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img, svg, video { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }

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

.sr-only { position: absolute; left: -9999px; }

/* ---------- Grain overlay ---------- */
.grain {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: .035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ---------- Ticker ---------- */
.ticker {
  background: var(--lime);
  color: var(--bg);
  overflow: hidden;
  border-bottom: 1px solid #000;
  padding: 7px 0;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.ticker__track {
  display: inline-flex;
  white-space: nowrap;
  animation: ticker 50s linear infinite;
  gap: 28px;
  padding-left: 28px;
}
.ticker__dot { opacity: .5; }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-33.33%); }
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 13, 11, 0.78);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  height: 72px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.logo__mark {
  display: inline-block;
  font-size: 22px;
  color: var(--lime);
  transform: translateY(-1px);
  animation: spinSlow 12s linear infinite;
}
.logo__text sup { font-size: 0.5em; opacity: .55; font-weight: 500; }
.logo--big { font-size: 32px; }
.logo--big .logo__mark { font-size: 40px; }
@keyframes spinSlow { to { transform: rotate(360deg); } }

.nav {
  display: flex;
  gap: 4px;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
}
.nav a {
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--ink-soft);
  transition: color .2s, background .2s;
}
.nav a:hover { color: var(--ink); background: var(--bg-elev); }
.nav a[aria-current="page"] { color: var(--lime); }

.header-actions { display: flex; align-items: center; gap: 10px; }

.cart-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: all .2s;
}
.cart-pill:hover { color: var(--ink); border-color: var(--ink-muted); }
.cart-pill__count {
  background: var(--lime);
  color: var(--bg);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  padding: 1px 6px;
  border-radius: 999px;
  margin-left: 2px;
}

.burger { display: none; width: 36px; height: 36px; border-radius: 999px; background: var(--bg-elev); position: relative; }
.burger span { position: absolute; left: 9px; right: 9px; height: 1.5px; background: var(--ink); transition: .3s; }
.burger span:nth-child(1) { top: 13px; }
.burger span:nth-child(2) { bottom: 13px; }
.burger[aria-expanded="true"] span:nth-child(1) { top: 17px; transform: rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { bottom: 17px; transform: rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 16px 24px 28px;
  border-top: 1px solid var(--line);
  gap: 4px;
}
.mobile-nav a { padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 18px; }
.mobile-nav a:last-child { border-bottom: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.005em;
  transition: transform .2s, background .2s, color .2s, border-color .2s, box-shadow .3s;
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn--sm { padding: 9px 16px; font-size: 13px; }
.btn--lg { padding: 18px 30px; font-size: 16px; }
.btn--primary { background: var(--lime); color: var(--bg); }
.btn--primary:hover { background: var(--lime-soft); transform: translateY(-2px); box-shadow: 0 10px 30px -10px var(--lime); }
.btn--ghost { color: var(--ink); border-color: var(--line-2); }
.btn--ghost:hover { background: var(--bg-elev); border-color: var(--ink-muted); }
.btn--dark { background: var(--ink); color: var(--bg); }
.btn--dark:hover { background: #fff; transform: translateY(-2px); }
.btn--block { width: 100%; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-weight: 700; letter-spacing: -0.025em; line-height: 1.05; }
h1 { font-size: clamp(48px, 9vw, 132px); }
h2 { font-size: clamp(36px, 5.5vw, 72px); }
h3 { font-size: clamp(22px, 2.4vw, 32px); }
h4 { font-size: 14px; font-family: var(--mono); font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-muted); }

.serif { font-family: var(--display); font-weight: 400; font-style: italic; letter-spacing: -0.015em; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-muted);
}
.eyebrow::before { content: "●"; color: var(--lime); font-size: 8px; }

/* ==========================================================
   HERO
   ========================================================== */
.hero {
  position: relative;
  padding: 80px 0 120px;
  overflow: hidden;
}
.hero__inner { position: relative; z-index: 2; }
.hero__eyebrow { margin-bottom: 28px; }

.hero h1 {
  margin-bottom: 32px;
  max-width: 14ch;
}
.hero h1 .serif { display: inline-block; transform: translateY(0.05em); color: var(--lime); }
.hero h1 .strike { position: relative; }
.hero h1 .strike::after {
  content: ""; position: absolute; left: -2%; right: -2%; top: 52%;
  height: 0.08em; background: var(--coral);
  transform: rotate(-3deg);
}

.hero__lede {
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 52ch;
  margin-bottom: 40px;
}

.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.hero__meta {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  padding-top: 32px;
}
.hero__meta > div { padding-right: 24px; border-right: 1px solid var(--line); }
.hero__meta > div:last-child { border-right: 0; }
.hero__meta b {
  display: block;
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.hero__meta span {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
}

/* Hero decoration */
.hero__deco {
  position: absolute;
  right: -10%;
  top: 10%;
  width: 60vw;
  max-width: 800px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(207, 255, 80, 0.15), transparent 60%);
  filter: blur(60px);
  z-index: 0;
}
.hero__orbit {
  position: absolute; right: 6%; top: 18%;
  width: 320px; height: 320px;
  z-index: 1;
  opacity: .5;
}
.hero__orbit svg { width: 100%; height: 100%; animation: spinSlow 30s linear infinite; }

/* ==========================================================
   MARQUEE
   ========================================================== */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 32px 0;
  overflow: hidden;
  background: var(--bg-soft);
}
.marquee__track {
  display: inline-flex;
  gap: 64px;
  white-space: nowrap;
  animation: ticker 40s linear infinite;
  padding-left: 64px;
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 400;
  letter-spacing: -0.02em;
}
.marquee__track span { display: inline-flex; align-items: center; gap: 64px; }
.marquee__track span::after { content: "✦"; color: var(--lime); font-style: normal; font-family: var(--sans); }

/* ==========================================================
   SECTIONS
   ========================================================== */
section { padding: 100px 0; }
.section-head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 64px;
}
.section-head h2 .serif { color: var(--lime); }
.section-head__intro { color: var(--ink-soft); font-size: 18px; line-height: 1.5; max-width: 50ch; }

/* ==========================================================
   PRODUITS — Bento Grid
   ========================================================== */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(200px, auto);
  gap: 16px;
}
.product-card {
  position: relative;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), border-color .35s, background .35s;
}
.product-card:hover { transform: translateY(-4px); border-color: var(--line-2); background: var(--bg-elev); }
.product-card::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 0%), var(--glow), transparent 50%);
  opacity: 0;
  transition: opacity .35s;
  pointer-events: none;
}
.product-card:hover::before { opacity: .15; }

.product-card--lime   { --glow: var(--lime); }
.product-card--coral  { --glow: var(--coral); }
.product-card--violet { --glow: var(--violet); }
.product-card--gold   { --glow: var(--gold); }
.product-card--mist   { --glow: var(--mist); }

/* Bento sizing */
.product-card[data-size="sm"]   { grid-column: span 2; }
.product-card[data-size="md"]   { grid-column: span 3; }
.product-card[data-size="lg"]   { grid-column: span 4; }
.product-card[data-size="wide"] { grid-column: span 6; }
.product-card[data-size="tall"] { grid-column: span 3; grid-row: span 2; }

.product-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}
.product-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--bg-elev);
  border: 1px solid var(--line-2);
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
}
.product-card--lime  .product-card__badge { background: var(--lime); color: var(--bg); border-color: transparent; }
.product-card--gold  .product-card__badge { background: var(--gold); color: var(--bg); border-color: transparent; }

.product-card__category {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-muted);
}

.product-card__title {
  font-size: clamp(26px, 2.4vw, 38px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 8px;
}
.product-card__tagline {
  font-family: var(--display);
  font-style: italic;
  font-size: 18px;
  color: var(--ink-soft);
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}
.product-card__features { margin-top: auto; margin-bottom: 28px; list-style: none; }
.product-card__features li {
  display: flex;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
}
.product-card__features li::before {
  content: "→"; color: var(--lime); flex-shrink: 0;
}
.product-card__features li:last-child { border-bottom: 0; }

.product-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  margin-top: auto;
}
.product-card__price {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1;
}
.product-card__price small { font-size: 0.4em; font-family: var(--mono); font-style: normal; color: var(--ink-muted); display: block; margin-top: 4px; letter-spacing: 0.05em; }

/* ==========================================================
   PROCESS
   ========================================================== */
.process {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.process__step {
  padding: 40px 32px 40px 0;
  border-right: 1px solid var(--line);
  position: relative;
}
.process__step:last-child { border-right: 0; }
.process__step:nth-child(n+2) { padding-left: 32px; }
.process__num {
  font-family: var(--display);
  font-style: italic;
  font-size: 72px;
  font-weight: 400;
  color: var(--lime);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.04em;
}
.process__step h3 { margin-bottom: 12px; }
.process__step p { color: var(--ink-soft); font-size: 15px; line-height: 1.55; }

/* ==========================================================
   PRICING TABLE (Tarifs)
   ========================================================== */
.pricing-table {
  border-top: 1px solid var(--line);
}
.pricing-row {
  display: grid;
  grid-template-columns: 0.6fr 1.8fr 1.4fr 0.8fr 0.8fr;
  gap: 24px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  transition: padding .25s;
}
.pricing-row:hover { padding-left: 16px; padding-right: 16px; background: var(--bg-soft); }
.pricing-row__name { font-size: 22px; font-weight: 600; letter-spacing: -0.02em; }
.pricing-row__name small { display: block; font-family: var(--mono); font-size: 11px; color: var(--ink-muted); margin-top: 6px; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 400; }
.pricing-row__desc { color: var(--ink-soft); font-size: 14px; line-height: 1.5; }
.pricing-row__cat { font-family: var(--mono); font-size: 12px; color: var(--ink-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.pricing-row__price { font-family: var(--display); font-style: italic; font-size: 36px; font-weight: 400; text-align: right; letter-spacing: -0.025em; }
.pricing-row__cta { text-align: right; }

/* ==========================================================
   FAQ
   ========================================================== */
.faq { display: grid; gap: 0; max-width: 900px; margin: 0 auto; }
.faq__item { border-top: 1px solid var(--line); }
.faq__item:last-child { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%;
  text-align: left;
  padding: 28px 0;
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 600;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--ink);
}
.faq__q::after { content: "+"; font-family: var(--display); font-size: 32px; color: var(--lime); transition: transform .3s; }
.faq__item[open] .faq__q::after { transform: rotate(45deg); }
.faq__a { padding: 0 0 28px; color: var(--ink-soft); font-size: 16px; line-height: 1.6; max-width: 70ch; }

/* ==========================================================
   CTA Band
   ========================================================== */
.cta-band {
  background: var(--lime);
  color: var(--bg);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-band__inner { display: grid; grid-template-columns: 1.6fr 1fr; gap: 48px; align-items: end; position: relative; z-index: 2; }
.cta-band h2 { font-size: clamp(40px, 6vw, 88px); line-height: 0.95; }
.cta-band h2 .serif { font-style: italic; }
.cta-band p { font-size: 18px; line-height: 1.5; max-width: 38ch; margin-bottom: 24px; }
.cta-band__deco {
  position: absolute;
  right: -120px; top: -120px;
  width: 360px; height: 360px;
  border: 1px solid rgba(0,0,0,0.3);
  border-radius: 50%;
  animation: spinSlow 40s linear infinite;
}
.cta-band__deco::before {
  content: ""; position: absolute; inset: 40px;
  border: 1px solid rgba(0,0,0,0.3); border-radius: 50%;
}
.cta-band__deco::after {
  content: "◆"; position: absolute; top: -6px; left: 50%; transform: translateX(-50%);
  color: rgba(0,0,0,0.7);
}

/* ==========================================================
   PAGE HEADERS (sous-pages)
   ========================================================== */
.page-header {
  padding: 80px 0 60px;
  border-bottom: 1px solid var(--line);
}
.page-header h1 {
  font-size: clamp(48px, 8vw, 112px);
  margin-bottom: 24px;
  max-width: 18ch;
}
.page-header h1 .serif { color: var(--lime); }
.page-header__lede { color: var(--ink-soft); font-size: 20px; max-width: 60ch; }

/* ==========================================================
   PRODUCT DETAIL
   ========================================================== */
.product-detail {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  padding: 80px 0;
}
.product-detail__visual {
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--bg-soft) 0%, var(--bg-elev) 100%);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.product-detail__visual::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 30%, var(--lime), transparent 60%);
  opacity: 0.08;
}
.product-detail__visual .big-num {
  font-family: var(--display); font-style: italic; font-size: 30vw; max-font-size: 360px;
  color: var(--lime); opacity: 0.15; line-height: 0.85;
}
.product-detail__title { margin-bottom: 16px; }
.product-detail__tagline {
  font-family: var(--display); font-style: italic; font-size: 22px;
  color: var(--ink-soft); margin-bottom: 32px;
}
.product-detail__price-row {
  display: flex; align-items: baseline; gap: 16px;
  padding: 24px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  margin-bottom: 32px;
}
.product-detail__price {
  font-family: var(--display); font-style: italic; font-size: 64px; font-weight: 400; letter-spacing: -0.025em;
}
.product-detail__price small { font-family: var(--mono); font-size: 12px; font-style: normal; color: var(--ink-muted); margin-left: 8px; }

.product-detail__features { margin-bottom: 40px; }
.product-detail__features li {
  list-style: none;
  display: flex; gap: 12px; padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}
.product-detail__features li::before { content: "✓"; color: var(--lime); font-weight: 700; }
.product-detail__cta { display: flex; gap: 12px; }

/* ==========================================================
   CART
   ========================================================== */
.cart { padding: 60px 0; }
.cart__layout { display: grid; grid-template-columns: 1.6fr 1fr; gap: 48px; align-items: start; }
.cart__items { border-top: 1px solid var(--line); }
.cart__item {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 24px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.cart__item-name { font-size: 18px; font-weight: 600; letter-spacing: -0.015em; }
.cart__item-name small { display: block; font-family: var(--mono); font-size: 11px; color: var(--ink-muted); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 400; }
.qty {
  display: inline-flex; align-items: center;
  border: 1px solid var(--line-2); border-radius: 999px; overflow: hidden;
}
.qty button { padding: 8px 12px; color: var(--ink-soft); transition: color .2s, background .2s; }
.qty button:hover { color: var(--ink); background: var(--bg-elev); }
.qty span { padding: 0 12px; font-family: var(--mono); font-size: 14px; min-width: 32px; text-align: center; }
.cart__item-price { font-family: var(--display); font-style: italic; font-size: 24px; min-width: 100px; text-align: right; }
.cart__remove { color: var(--ink-muted); font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; padding: 6px 0; }
.cart__remove:hover { color: var(--coral); }

.cart__summary {
  position: sticky; top: 100px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.cart__summary h3 { margin-bottom: 24px; }
.cart__row { display: flex; justify-content: space-between; padding: 10px 0; font-size: 15px; color: var(--ink-soft); }
.cart__row--total { font-size: 22px; color: var(--ink); padding-top: 20px; border-top: 1px solid var(--line); margin-top: 12px; font-weight: 600; }
.cart__row--total b { font-family: var(--display); font-style: italic; font-size: 36px; font-weight: 400; letter-spacing: -0.025em; }

.cart-empty { padding: 80px 0; text-align: center; }
.cart-empty h2 { font-size: clamp(40px, 6vw, 80px); margin-bottom: 16px; }
.cart-empty p { color: var(--ink-soft); font-size: 18px; margin-bottom: 32px; }

/* ==========================================================
   FORMS / Contact
   ========================================================== */
.form { display: grid; gap: 18px; max-width: 640px; }
.form__row { display: grid; gap: 8px; }
.form__row--split { grid-template-columns: 1fr 1fr; gap: 12px; }
.form label { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-muted); }
.form input, .form select, .form textarea {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--ink);
  font-size: 15px;
  transition: border-color .2s, background .2s;
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none; border-color: var(--lime); background: var(--bg-elev);
}
.form textarea { min-height: 160px; resize: vertical; font-family: var(--sans); }
.form button[type="submit"] { margin-top: 8px; align-self: start; }

.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 80px; padding: 80px 0; align-items: start;
}
.contact-info dt { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-muted); margin-top: 28px; margin-bottom: 6px; }
.contact-info dd { font-size: 20px; letter-spacing: -0.01em; }
.contact-info dd a { border-bottom: 1px solid var(--line-2); }
.contact-info dd a:hover { color: var(--lime); border-color: var(--lime); }

.flash {
  padding: 16px 20px;
  border-radius: 12px;
  background: var(--lime);
  color: var(--bg);
  font-weight: 500;
  margin-bottom: 24px;
}
.flash--err { background: var(--coral); color: var(--bg); }

/* ==========================================================
   LEGAL PAGES
   ========================================================== */
.legal-content {
  max-width: 760px;
  padding: 60px 0 100px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
}
.legal-content h2 {
  color: var(--ink);
  font-size: clamp(26px, 3vw, 36px);
  margin: 56px 0 20px;
  letter-spacing: -0.02em;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { color: var(--ink); font-size: 20px; margin: 32px 0 12px; }
.legal-content p { margin-bottom: 16px; }
.legal-content ul, .legal-content ol { padding-left: 22px; margin-bottom: 16px; }
.legal-content li { margin-bottom: 8px; }
.legal-content strong { color: var(--ink); }
.legal-content a { color: var(--lime); border-bottom: 1px solid var(--line-2); }
.legal-content a:hover { border-color: var(--lime); }

.legal-meta {
  font-family: var(--mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--ink-muted);
  padding: 14px 20px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 40px;
  display: inline-block;
}

/* ==========================================================
   FOOTER
   ========================================================== */
.site-footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  padding: 80px 0 32px;
  margin-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer-tagline { color: var(--ink-soft); font-size: 15px; line-height: 1.6; margin: 20px 0; max-width: 28ch; }
.footer-address { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-muted); }
.footer-col h4 { margin-bottom: 18px; color: var(--ink); }
.footer-col ul { list-style: none; }
.footer-col li { padding: 6px 0; font-size: 14px; }
.footer-col a { color: var(--ink-soft); transition: color .2s; }
.footer-col a:hover { color: var(--lime); }

.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-muted);
}
.footer-credit .dot { color: var(--lime); animation: pulse 2s ease infinite; }
@keyframes pulse { 0%, 100% { opacity: .5; } 50% { opacity: 1; } }

/* ==========================================================
   REVEAL ANIMATIONS
   ========================================================== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal:nth-child(2) { transition-delay: 80ms; }
.reveal:nth-child(3) { transition-delay: 160ms; }
.reveal:nth-child(4) { transition-delay: 240ms; }
.reveal:nth-child(5) { transition-delay: 320ms; }
.reveal:nth-child(6) { transition-delay: 400ms; }

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 980px) {
  .nav { display: none; }
  .burger { display: block; }
  .mobile-nav[hidden="false"], .mobile-nav.open { display: flex; }
  .header-actions .btn--primary { display: none; }

  .hero { padding: 60px 0 80px; }
  .hero__deco, .hero__orbit { display: none; }
  .hero__meta { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .hero__meta > div { padding: 16px 16px 16px 0; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .hero__meta > div:nth-child(2n) { border-right: 0; }
  .hero__meta > div:nth-last-child(-n+2) { border-bottom: 0; }

  .section-head { grid-template-columns: 1fr; gap: 24px; }

  .bento { grid-template-columns: 1fr; }
  .product-card[data-size] { grid-column: span 1; grid-row: auto; }

  .process__steps { grid-template-columns: 1fr 1fr; }
  .process__step { padding: 28px 20px 28px 0 !important; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .process__step:nth-child(2n) { border-right: 0; }
  .process__step:nth-child(2n+1) { padding-left: 0 !important; }
  .process__step:nth-child(2n) { padding-left: 20px !important; }

  .pricing-row { grid-template-columns: 1fr; gap: 8px; padding: 24px 0; }
  .pricing-row__cat { display: none; }
  .pricing-row__price, .pricing-row__cta { text-align: left; }

  .cta-band__inner { grid-template-columns: 1fr; gap: 24px; }
  .cta-band__deco { display: none; }

  .product-detail { grid-template-columns: 1fr; gap: 32px; }
  .cart__layout { grid-template-columns: 1fr; }
  .cart__summary { position: static; }

  .contact-grid { grid-template-columns: 1fr; gap: 40px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 560px) {
  .ticker { font-size: 10px; }
  .hero__meta { grid-template-columns: 1fr; }
  .hero__meta > div { border-right: 0 !important; padding-right: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .form__row--split { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
