/* ===================================================================
   Touski Marketing Site — style.css
   Design system: «Reçu» — ink-on-paper, single stamp-red accent,
   Spline Sans + Spline Sans Mono. (CSS var names kept from the
   pre-rebrand palette and remapped to new values, so the whole
   cascade re-skins — see Touski Website.html / design CHANGELOG v0.21.)
   =================================================================== */

/* ---------- Design tokens ---------- */
:root {
  --sirop:      #C4361F;  /* stamp red — primary accent */
  --sirop-deep: #9A2A16;
  --sirop-soft: #D98A76;
  --sirop-soft-bg: #F1DCD6;

  /* legacy "jardin" slots remapped to ink/gris (no second hue) */
  --jardin:      #3A352C;
  --jardin-deep: #14120F;
  --jardin-soft: #8C887D;
  --jardin-soft-bg: #E7E4DB;

  /* legacy "beurre" slots remapped to pale paper highlights */
  --beurre:      #E9E3D3;
  --beurre-soft: #F2EEE2;

  --creme:      #F4F3EE;  /* paper background */
  --creme-warm: #EBE9E1;  /* alt section paper */
  --papier:     #FBFAF6;  /* card paper */

  --charbon:    #181613;  /* ink */
  --encre:      #2C2820;
  --brume:      #8C887D;  /* receipt gris */
  --brume-l:    #D8D4C8;

  /* type — mono superfamily, no serif; Bricolage for the wordmark */
  --serif: "Spline Sans Mono", ui-monospace, "SF Mono", monospace;
  --sans:  "Spline Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --mono:  "Spline Sans Mono", ui-monospace, "SF Mono", monospace;
  --display: "Bricolage Grotesque", "Spline Sans", -apple-system, system-ui, sans-serif;
}

/* de-slop: no decorative italics anywhere; emphasis carries via
   color + weight (matches the «Reçu» brand voice). */
em, i, [style*="italic"] { font-style: normal !important; }

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  font-family: var(--sans);
  background: var(--creme);
  color: var(--charbon);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body { text-wrap: pretty; }
::selection { background: var(--sirop); color: var(--papier); }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
input { font-family: inherit; }

/* ---------- Layout ---------- */
.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 56px;
}
@media (max-width: 1080px) { .wrap { padding: 0 24px; } }

/* ---------- Shared components ---------- */
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brume);
  display: flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--brume);
  opacity: 0.4;
}
.eyebrow--light { color: var(--beurre); }
.eyebrow--light::before { background: var(--beurre); }
.eyebrow--beurre { color: var(--beurre); }
.eyebrow--beurre::before { background: var(--beurre); }

.big-headline {
  font-family: var(--serif);
  font-variation-settings: "SOFT" 100, "opsz" 144;
  font-weight: 400;
  font-size: clamp(48px, 7.5vw, 104px);
  line-height: 0.96;
  letter-spacing: -0.02em;
  color: var(--charbon);
}
.big-headline em {
  font-style: normal;
  color: var(--sirop);
}
.big-headline--light { color: var(--creme); }
.big-headline--light em { color: var(--sirop); }
.big-headline__em--beurre { color: var(--sirop) !important; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 22px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s;
}
.btn:hover { opacity: 0.88; }
.btn--dark { background: var(--charbon); color: var(--papier); }
.btn--light { background: var(--papier); color: var(--sirop-deep); }
.btn__icon { flex-shrink: 0; }

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
}
.nav--scrolled {
  background: rgba(244, 243, 238, 0.92);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: rgba(24, 22, 19, 0.08);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav__mark {
  width: auto;
  height: 34px;
  display: block;
}
.nav__wordmark {
  font-family: var(--display);
  font-weight: 800;
  font-size: 24px;
  color: var(--charbon);
  line-height: 1;
  letter-spacing: -0.05em;
  position: relative;
}
.nav__wordmark em { font-style: normal; }
.nav__wordmark::after {
  content: '';
  position: absolute;
  top: 1px;
  right: -2px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sirop);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 500;
}
.nav__links a {
  color: var(--encre);
  text-decoration: none;
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--sirop); }
.nav__lang {
  display: flex;
  align-items: center;
  border: 1px solid var(--brume-l);
  border-radius: 100px;
  padding: 2px;
  background: var(--papier);
}
.nav__lang-btn {
  border: none;
  border-radius: 100px;
  padding: 5px 11px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  background: transparent;
  color: var(--brume);
  transition: background 0.2s, color 0.2s;
}
.nav__lang-btn.active {
  background: var(--charbon);
  color: var(--papier);
}
.nav__cta {
  background: var(--sirop) !important;
  color: var(--papier) !important;
  padding: 10px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
}
.nav__mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--charbon);
  padding: 4px;
}

@media (max-width: 860px) {
  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--papier);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--brume-l);
    box-shadow: 0 12px 24px -12px rgba(24, 22, 19, 0.15);
  }
  .nav__links--open { display: flex; }
  .nav__mobile-toggle { display: block; }
  .nav__inner { position: relative; }
}

/* ---------- HERO ---------- */
.hero {
  padding: 24px 0 72px;
  position: relative;
  overflow: hidden;
}
.hero__inner { position: relative; }
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 64px;
  align-items: start;
  margin-top: 24px;
}

/* LEFT — receipt statement */
.hero__statement {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--brume);
  line-height: 1.7;
  letter-spacing: 0.01em;
  margin-bottom: 28px;
  max-width: 380px;
}
.hero__statement-co {
  color: var(--charbon);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
}
.hero__statement-rule { border-top: 2px dashed var(--brume-l); margin: 10px 0; }
.hero__statement-meta { display: flex; justify-content: space-between; max-width: 360px; }

.hero__h1 {
  font-family: var(--mono);
  font-weight: 700;
  font-size: clamp(52px, 8.5vw, 112px);
  line-height: 0.95;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  margin: 0 0 22px;
  color: var(--charbon);
}
.hero__stamp {
  display: inline-block;
  font-style: normal;
  border: 4px solid var(--sirop);
  color: var(--sirop);
  padding: 0 16px 6px;
  transform: rotate(-1.5deg);
  margin-top: 10px;
}
.hero__sub {
  font-family: var(--sans);
  font-size: clamp(16px, 1.7vw, 19px);
  line-height: 1.5;
  color: var(--encre);
  max-width: 460px;
  margin: 0 0 32px;
}
.hero__cta-list { max-width: 400px; margin-bottom: 14px; }
.hero__cta-rule { border-top: 2px dashed var(--brume-l); }
.hero__note {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brume);
}

/* Receipt rows — shared by the hero CTAs and the receipt artifact */
.receipt-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--encre);
  line-height: 1.9;
  text-decoration: none;
}
.receipt-row--strong { font-size: 15px; font-weight: 700; color: var(--charbon); }
/* Priced-receipt row states — whole-row color; done wins over sale */
.receipt-row--sale .receipt-row__label,
.receipt-row--sale .receipt-row__value { color: var(--sirop); }
.receipt-row--done .receipt-row__label,
.receipt-row--done .receipt-row__value { color: var(--brume); }
.receipt-row__label { white-space: nowrap; }
.receipt-row__label--done { color: var(--brume); }
.receipt-row__value { white-space: nowrap; font-variant-numeric: tabular-nums; }
.receipt-row__leader {
  flex: 1;
  border-bottom: 2px dotted var(--brume);
  opacity: 0.45;
  position: relative;
  top: -3px;
  margin: 0 2px;
}
.receipt-row--cta {
  color: var(--charbon);
  font-weight: 700;
  font-size: 15px;
  transition: color 0.15s;
}
.receipt-row--cta:hover,
.receipt-row--cta:hover .receipt-row__value { color: var(--sirop); }

/* RIGHT — the receipt artifact */
.hero__receipt-wrap { position: relative; padding-top: 6px; }
.receipt {
  background: var(--papier);
  box-shadow: 0 24px 48px -28px rgba(24, 22, 19, 0.4);
  padding: 0 26px;
  max-width: 340px;
  margin: 0 auto;
  position: relative;
}
.receipt__tear {
  height: 12px;
  margin: 0 -26px;
  background-size: 12px 12px;
  background-repeat: repeat-x;
}
.receipt__tear--top { background-image: radial-gradient(circle at 6px 100%, var(--creme) 0 5px, transparent 5.5px); }
.receipt__tear--bottom { background-image: radial-gradient(circle at 6px 0%, var(--creme) 0 5px, transparent 5.5px); }
.receipt__body { padding: 20px 0 22px; }
.receipt__header { text-align: center; font-family: var(--mono); margin-bottom: 16px; }
.receipt__wordmark {
  font-family: var(--display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.05em;
  color: var(--charbon);
  display: inline-flex;
}
.receipt__i { position: relative; display: inline-block; }
.receipt__ring {
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sirop);
  box-sizing: border-box;
}
.receipt__store { font-size: 10.5px; color: var(--brume); letter-spacing: 0.04em; margin-top: 4px; }
.receipt__rule { border-top: 2px dashed var(--brume-l); margin: 8px 0; }
.receipt__rule--double { border-top: 3px double var(--charbon); margin: 8px 0; }
.receipt__barcode {
  height: 44px;
  margin: 6px 0 8px;
  background: repeating-linear-gradient(90deg, var(--charbon) 0 2px, transparent 2px 4px, var(--charbon) 4px 7px, transparent 7px 9px, var(--charbon) 9px 10px, transparent 10px 13px);
}
.receipt__tagline {
  text-align: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--charbon);
}

@media (max-width: 860px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__receipt-wrap { margin-top: 4px; }
  .hero { padding: 16px 0 56px; }
}
@media (max-width: 560px) {
  /* Receipt-row CTAs: drop the dotted leader + iOS/ANDROID value on
     narrow phones (the platform is already named in the label) and let
     the label wrap. Without this the nowrap labels have a ~344px
     min-content that forces horizontal scroll below ~370px. */
  .receipt-row--cta .receipt-row__leader,
  .receipt-row--cta .receipt-row__value { display: none; }
  .receipt-row--cta .receipt-row__label { white-space: normal; }

  /* Section headlines are pinned at 48px down to ~640px, so a long
     unbreakable word (e.g. "construction." in the Québec section)
     overflows phones below ~370px. Scale them down on small screens. */
  .big-headline { font-size: clamp(30px, 8vw, 48px); }
}

/* ---------- MARQUEE — flyer banners ---------- */
.marquee {
  background: var(--charbon);
  color: var(--creme);
  padding: 22px 0;
  border-top: 1px solid rgba(255, 252, 243, 0.08);
  border-bottom: 1px solid rgba(255, 252, 243, 0.08);
  overflow: hidden;
}
.marquee__inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  align-items: center;
}
.marquee__label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--beurre);
  max-width: 240px;
  line-height: 1.5;
}
.marquee__star { color: var(--sirop); }
.marquee__track-mask {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0, black 5%, black 95%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, black 5%, black 95%, transparent 100%);
}
.marquee__track {
  display: flex;
  gap: 44px;
  width: max-content;
  animation: mq 38s linear infinite;
  white-space: nowrap;
  font-family: var(--mono);
  font-size: 26px;
  letter-spacing: -0.01em;
  color: var(--creme-warm);
  align-items: center;
}
.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 13px;
}
.marquee__logo {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  object-fit: cover;
  box-shadow: inset 0 0 0 1px rgba(24, 22, 19, 0.1);
  flex-shrink: 0;
}
.marquee__dot { color: var(--sirop); font-size: 15px; margin-left: 6px; }
@keyframes mq {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
}
@media (max-width: 700px) {
  .marquee__inner { grid-template-columns: 1fr; gap: 16px; }
  .marquee__track { font-size: 22px; }
}

/* ---------- SECTION 03 — DEALS ---------- */
.deals-section { padding: 120px 0; background: var(--creme-warm); }
.deals-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 72px;
  align-items: center;
  margin-top: 28px;
}
.deals-section__copy h2 { margin: 12px 0 24px; }
.deals-section__lede {
  font-size: 19px;
  line-height: 1.55;
  color: var(--encre);
  max-width: 52ch;
  margin: 0 0 36px;
}
.deals-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  padding: 28px 0;
  border-top: 1px solid rgba(24, 22, 19, 0.12);
  border-bottom: 1px solid rgba(24, 22, 19, 0.12);
  margin-bottom: 28px;
}
.deals-stat__n {
  font-family: var(--mono);
  font-size: clamp(38px, 5vw, 56px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--sirop);
}
.deals-stat__l {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brume);
  margin-top: 6px;
}
.deals-section__foot {
  font-size: 17px;
  line-height: 1.55;
  color: var(--encre);
  max-width: 48ch;
  margin: 0;
}
.deals-store-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 36px;
  max-width: 460px;
}
.deals-store {
  background: var(--papier);
  border: 1px solid rgba(24, 22, 19, 0.1);
  border-radius: 12px;
  padding: 14px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.deals-store img {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  object-fit: cover;
}
.deals-store span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--encre);
}

/* Deals visual — flyer grid + price-match proof card */
.deals-section__visual {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.flyer-mini {
  position: absolute;
  left: -6px;
  top: 40px;
  width: 232px;
  background: #0c0b0a;
  border-radius: 20px;
  overflow: hidden;
  transform: rotate(-6deg);
  z-index: 1;
  box-shadow: 0 30px 50px -20px rgba(24, 22, 19, 0.3);
}
.flyer-mini__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: var(--papier);
}
.flyer-mini__bar img { width: 22px; height: 22px; border-radius: 6px; object-fit: cover; }
.flyer-mini__bar span {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--charbon);
}
.flyer-mini__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  padding: 12px;
}
.flyer-tile {
  border-radius: 8px;
  background: var(--papier);
  border: 1px solid var(--brume-l);
  padding: 12px 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  opacity: 0.34;
}
.flyer-tile__g { font-size: 24px; line-height: 1; }
.flyer-tile__p { font-family: var(--mono); font-size: 11px; font-weight: 700; color: var(--charbon); }
.flyer-tile--hi {
  opacity: 1;
  border: 2.5px solid var(--sirop);
  animation: touskiPulse 1.9s ease-in-out infinite;
}
.flyer-tile--hi .flyer-tile__p { color: var(--sirop-deep); }
@keyframes touskiPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(196, 54, 31, 0.35); }
  50%      { box-shadow: 0 0 0 6px rgba(196, 54, 31, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .flyer-tile--hi { animation: none; }
}

.proof-card {
  position: relative;
  z-index: 2;
  width: 300px;
  background: var(--creme);
  border-radius: 24px;
  padding: 18px;
  transform: rotate(2deg);
  box-shadow: 0 40px 60px -28px rgba(24, 22, 19, 0.32);
  border: 1px solid rgba(24, 22, 19, 0.06);
}
.proof-card__store {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.proof-card__logo { width: 46px; height: 46px; border-radius: 13px; object-fit: cover; flex-shrink: 0; }
.proof-card__store-name { font-size: 18px; font-weight: 700; color: var(--charbon); }
.proof-card__via { font-family: var(--mono); font-size: 11px; color: var(--brume); }
.flyer-clip {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  height: 130px;
  border: 1px solid var(--brume-l);
  background: var(--papier);
  background-image: repeating-linear-gradient(135deg, var(--creme-warm) 0 10px, transparent 10px 20px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.flyer-clip__emoji { font-size: 46px; line-height: 1; }
.flyer-clip__cap {
  position: absolute;
  bottom: 12px; left: 0; right: 0;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.06em;
  color: var(--brume);
}
.flyer-clip__badge {
  position: absolute;
  top: 8px; right: 8px;
  background: var(--sirop);
  color: var(--papier);
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 7px;
  transform: rotate(3deg);
}
.proof-card__title { font-size: 18px; font-weight: 700; color: var(--charbon); margin-top: 14px; }
.proof-card__sub { font-size: 12.5px; color: var(--brume); margin-top: 2px; }
.proof-card__price-row { display: flex; align-items: baseline; gap: 11px; margin-top: 14px; }
.proof-card__price {
  font-family: var(--mono);
  font-size: 38px;
  font-weight: 700;
  color: var(--sirop);
  letter-spacing: -0.02em;
  line-height: 1;
}
.proof-card__reg-label { font-size: 12px; color: var(--brume); }
.proof-card__reg { font-size: 16px; color: var(--brume); text-decoration: line-through; }
.proof-card__save {
  display: inline-block;
  margin-top: 10px;
  background: var(--sirop-soft-bg);
  color: var(--sirop-deep);
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
}
.proof-card__meta {
  font-size: 11.5px;
  line-height: 1.4;
  color: var(--encre);
  margin-top: 12px;
  padding: 10px 12px;
  background: var(--beurre-soft);
  border: 1px solid var(--beurre);
  border-radius: 10px;
}
.proof-card__cta {
  margin-top: 14px;
  background: var(--sirop);
  color: var(--papier);
  border-radius: 14px;
  padding: 13px 0;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
}
.proof-note {
  position: absolute;
  top: -6px; right: 4px;
  z-index: 3;
  background: var(--beurre);
  border-radius: 4px;
  padding: 12px 16px;
  max-width: 200px;
  transform: rotate(4deg);
  box-shadow: 0 12px 24px -8px rgba(0, 0, 0, 0.25);
  font-family: var(--mono);
  font-size: 13.5px;
  line-height: 1.35;
  color: var(--sirop-deep);
}
.proof-note__k {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 5px;
}

/* Deals feature triplet */
.deals-feats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
  padding-top: 36px;
  border-top: 1px solid rgba(24, 22, 19, 0.12);
}
.deals-feat__k {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
  color: var(--charbon);
  font-weight: 600;
}
.deals-feat__n { color: var(--sirop); }
.deals-feat p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--encre);
  margin: 0;
  max-width: 40ch;
}

@media (max-width: 960px) {
  .deals-section__grid { grid-template-columns: 1fr; gap: 48px; }
  .deals-section__visual {
    flex-direction: column;
    min-height: auto;
    gap: 28px;
    padding-top: 24px;
  }
  .flyer-mini { position: static; transform: none; margin: 0 auto; }
  .proof-card { transform: none; margin: 0 auto; }
  .proof-note { position: static; transform: none; max-width: none; margin: 0 auto; text-align: left; }
}
@media (max-width: 700px) {
  .deals-section { padding: 72px 0; }
  .deals-store-grid { grid-template-columns: repeat(4, 1fr); }
  .deals-feats { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 420px) {
  .deals-store-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- PHONE FRAME (CSS illustration) ---------- */
.phone-frame {
  width: 264px;
  height: 540px;
  background: var(--charbon);
  border-radius: 36px;
  padding: 7px;
  position: relative;
  box-shadow:
    0 30px 80px -30px rgba(24, 22, 19, 0.45),
    0 12px 30px -10px rgba(24, 22, 19, 0.25),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}
.phone-frame--large {
  width: 320px;
  height: 656px;
}
.phone-frame--tilted {
  transform: rotate(3deg);
}
.phone-frame--pantry-overlay {
  position: absolute;
  top: 30px;
  right: -10px;
  width: 276px;
  height: 566px;
}
.phone-frame__island {
  position: absolute;
  left: 50%;
  top: 16px;
  transform: translateX(-50%);
  width: 72px;
  height: 20px;
  border-radius: 12px;
  background: var(--charbon);
  z-index: 5;
}
.phone-frame--large .phone-frame__island {
  width: 88px;
  height: 24px;
  top: 17px;
  border-radius: 14px;
}
.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 29px;
  background: var(--creme);
  overflow: hidden;
  position: relative;
}
.phone-frame--large .phone-screen {
  border-radius: 36px;
}

/* Phone screen content placeholders (CSS-only) */
.phone-screen--lists {
  background: var(--creme);
  background-image:
    linear-gradient(to bottom, var(--creme) 0, var(--creme) 50px, transparent 50px),
    repeating-linear-gradient(to bottom, var(--papier) 0, var(--papier) 72px, var(--creme) 72px, var(--creme) 82px);
}
.phone-screen--lists::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 16px;
  right: 16px;
  height: 26px;
  background: var(--papier);
  border-radius: 8px;
  border: 1px solid rgba(24, 22, 19, 0.06);
}
.phone-screen--lists::after {
  content: '';
  position: absolute;
  bottom: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border-radius: 22px;
  background: var(--sirop);
  box-shadow: 0 8px 16px -6px rgba(196, 54, 31, 0.5);
}

.phone-screen--groceries {
  background: var(--creme);
  background-image:
    linear-gradient(to bottom, var(--creme) 0, var(--creme) 80px, transparent 80px),
    repeating-linear-gradient(to bottom, transparent 0, transparent 35px, var(--brume-l) 35px, var(--brume-l) 35.5px);
}

.phone-screen--pantry {
  background: var(--creme);
  background-image:
    linear-gradient(to bottom, var(--creme) 0, var(--creme) 70px, transparent 70px);
}
.phone-screen--pantry::before {
  content: '';
  position: absolute;
  top: 80px;
  left: 12px;
  right: 12px;
  height: 56px;
  background: var(--beurre-soft);
  border: 1px solid var(--beurre);
  border-radius: 12px;
}

/* ---------- SECTION 01 — LISTS ---------- */
.lists-section { padding: 120px 0; }
.lists-section__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 56px;
  align-items: end;
  margin-top: 24px;
  margin-bottom: 64px;
}
.lists-section__lede {
  font-size: 19px;
  line-height: 1.55;
  color: var(--encre);
  max-width: 52ch;
}
.lists-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.list-card {
  background: var(--papier);
  border: 1px solid rgba(24, 22, 19, 0.08);
  border-radius: 22px;
  padding: 32px 28px 0;
  display: flex;
  flex-direction: column;
  min-height: 480px;
  overflow: hidden;
}
.list-card--jardin { background: var(--jardin-soft-bg); }
.list-card--sirop { background: var(--sirop-soft-bg); }
.list-card--beurre { background: var(--beurre-soft); }
.list-card__tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
}
.list-card--jardin .list-card__tag { color: var(--jardin); }
.list-card--brume .list-card__tag { color: var(--brume); }
.list-card--sirop .list-card__tag { color: var(--sirop); }
.list-card--beurre .list-card__tag { color: #8A6E1F; }
.list-card__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  display: inline-block;
}
.list-card--jardin .list-card__dot { background: var(--jardin); }
.list-card--brume .list-card__dot { background: var(--brume); }
.list-card--sirop .list-card__dot { background: var(--sirop); }
.list-card--beurre .list-card__dot { background: #8A6E1F; }
.list-card__en {
  color: var(--brume);
  opacity: 0.6;
}
.list-card__title {
  font-family: var(--serif);
  font-variation-settings: "SOFT" 100, "opsz" 144;
  font-weight: 400;
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0 0 14px;
  color: var(--charbon);
}
.list-card__body {
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--encre);
  margin: 0 0 20px;
}
.list-card__examples {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  border-top: 1px dashed rgba(24, 22, 19, 0.18);
}
.list-card__examples li {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--encre);
  padding: 8px 0;
  border-bottom: 1px dashed rgba(24, 22, 19, 0.12);
}
.list-card__examples li::before {
  content: '· ';
  color: inherit;
}
.list-card--jardin .list-card__examples li::before { color: var(--jardin); }
.list-card--sirop .list-card__examples li::before { color: var(--sirop); }
.list-card--beurre .list-card__examples li::before { color: #8A6E1F; }

/* Shopping scene (card 2) */
.list-card__scene {
  margin-top: auto;
  margin-left: -28px;
  margin-right: -28px;
  padding: 24px 32px;
  border-top: 1px solid rgba(24, 22, 19, 0.08);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.shopping-row {
  background: var(--papier);
  border: 1px solid rgba(24, 22, 19, 0.08);
  border-radius: 10px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.shopping-check {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1.5px solid var(--brume-l);
  flex-shrink: 0;
}
.shopping-row strong {
  font-size: 13px;
  font-weight: 500;
  color: var(--charbon);
  display: block;
}
.shopping-row span {
  font-size: 10.5px;
  font-family: var(--mono);
  color: var(--brume);
  letter-spacing: 0.4px;
}

@media (max-width: 1080px) {
  .lists-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .lists-section { padding: 72px 0; }
  .lists-section__header { grid-template-columns: 1fr; gap: 24px; }
  .lists-cards { grid-template-columns: 1fr; }
  .list-card { min-height: auto; padding-bottom: 28px; }
}

/* ---------- SECTION 02 — SHARED ---------- */
.shared-section {
  padding: 120px 0;
  background: var(--jardin-deep);
  color: var(--creme);
  position: relative;
  overflow: hidden;
}
.shared-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 80px;
  align-items: center;
  margin-top: 28px;
}
.shared-section__copy h2 { margin: 12px 0 24px; }
.shared-section__lede {
  font-family: var(--serif);
  font-style: normal;
  font-size: 22px;
  line-height: 1.4;
  color: var(--creme-warm);
  max-width: 46ch;
  margin: 0 0 36px;
  font-variation-settings: "SOFT" 100, "opsz" 36;
}
.shared-section__bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(251, 250, 246, 0.18);
}
.shared-section__bullets li {
  padding: 18px 0;
  border-bottom: 1px solid rgba(251, 250, 246, 0.12);
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  align-items: baseline;
}
.shared-section__bullet-k {
  font-family: var(--serif);
  font-style: normal;
  font-variation-settings: "SOFT" 100, "opsz" 36;
  font-size: 22px;
  line-height: 1.1;
  color: var(--beurre);
}
.shared-section__bullet-v {
  font-size: 16px;
  line-height: 1.55;
  color: var(--creme-warm);
}

/* Shared visual */
.shared-section__visual {
  position: relative;
  min-height: 700px;
  display: flex;
  justify-content: center;
}
.shared-section__visual .phone-frame {
  filter: drop-shadow(0 40px 60px rgba(0, 0, 0, 0.35));
}

/* Presence labels */
.presence-label {
  position: absolute;
  background: var(--creme);
  color: var(--charbon);
  border-radius: 100px;
  padding: 8px 14px 8px 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 14px 30px -10px rgba(0, 0, 0, 0.45);
  max-width: 260px;
}
.presence-label__avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: var(--papier);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 13px;
  flex-shrink: 0;
}
.presence-label strong {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.1;
  color: var(--charbon);
}
.presence-label span {
  font-size: 10.5px;
  font-family: var(--mono);
  color: var(--brume);
  letter-spacing: 0.3px;
  margin-top: 1px;
  display: block;
}
.presence-label--1 { top: 50px; left: -20px; }
.presence-label--2 { top: 260px; left: -30px; }
.presence-label--3 { top: 460px; left: -10px; }

@media (max-width: 860px) {
  .shared-section { padding: 72px 0; }
  .shared-section__grid { grid-template-columns: 1fr; gap: 48px; }
  .shared-section__visual { min-height: auto; display: none; }
  .shared-section__bullets li { grid-template-columns: 1fr; gap: 6px; }
}

/* ---------- SECTION 03 — PANTRY ---------- */
.pantry-section { padding: 120px 0; }
.pantry-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 80px;
  align-items: center;
  margin-top: 28px;
}
.pantry-section__visual {
  position: relative;
  width: 380px;
  height: 480px;
  margin: 0 auto;
}
.pantry-section__copy h2 { margin: 12px 0 24px; }
.pantry-section__lede {
  font-size: 19px;
  line-height: 1.55;
  color: var(--encre);
  max-width: 52ch;
  margin: 0 0 40px;
}
.pantry-pillars {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.pantry-pillar {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 18px;
  align-items: baseline;
  padding-top: 18px;
  border-top: 1px solid rgba(24, 22, 19, 0.12);
}
.pantry-pillar__num {
  font-family: var(--serif);
  font-style: normal;
  font-size: 32px;
  color: var(--sirop);
  line-height: 1;
  font-variation-settings: "SOFT" 100, "opsz" 144;
}
.pantry-pillar h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-variation-settings: "SOFT" 100, "opsz" 144;
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
  color: var(--charbon);
}
.pantry-pillar p {
  font-size: 16px;
  line-height: 1.55;
  color: var(--encre);
  max-width: 52ch;
}

/* Jar illustration */
.pantry-section__jar {
  position: absolute;
  left: 20px;
  top: 80px;
  width: 200px;
  height: 260px;
}
.jar__lid {
  position: absolute;
  top: 0;
  left: 14px;
  right: 14px;
  height: 30px;
  background: var(--sirop);
  border-radius: 6px 6px 3px 3px;
}
.jar__body {
  position: absolute;
  top: 36px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--beurre);
  border-radius: 12px 12px 22px 22px;
  border: 5px solid var(--charbon);
  box-shadow: inset 0 -30px 0 0 var(--sirop-soft);
  overflow: hidden;
}
.jar__label {
  position: absolute;
  left: 16px;
  right: 16px;
  top: 56px;
  padding: 10px 0;
  border-top: 2px solid var(--charbon);
  border-bottom: 2px solid var(--charbon);
  text-align: center;
  font-family: var(--serif);
  font-style: normal;
  font-size: 32px;
  font-variation-settings: "SOFT" 100, "opsz" 144;
  color: var(--charbon);
  line-height: 1;
}

@media (max-width: 860px) {
  .pantry-section { padding: 72px 0; }
  .pantry-section__grid { grid-template-columns: 1fr; gap: 48px; }
  .pantry-section__visual { display: none; }
}

/* ---------- SECTION 04 — QUEBEC ---------- */
.quebec-section {
  padding: 120px 0;
  background: var(--charbon);
  color: var(--creme);
}
.quebec-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 80px;
  align-items: center;
  margin-top: 28px;
}
.quebec-section__copy h2 { margin: 12px 0 24px; }
.quebec-section__lede {
  font-family: var(--serif);
  font-style: normal;
  font-size: 22px;
  line-height: 1.45;
  color: var(--creme-warm);
  max-width: 50ch;
  font-variation-settings: "SOFT" 100, "opsz" 36;
}
.quebec-words {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}
.quebec-word {
  padding-top: 18px;
  border-top: 1px solid rgba(251, 250, 246, 0.18);
}
.quebec-word__fr {
  font-family: var(--serif);
  font-style: normal;
  font-size: 36px;
  color: var(--beurre);
  line-height: 1;
  font-variation-settings: "SOFT" 100, "opsz" 144;
  display: block;
}
.quebec-word__not {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brume-l);
  margin-top: 8px;
  display: block;
}

/* Quebec card */
.quebec-section__card {
  background: rgba(251, 250, 246, 0.05);
  border: 1px solid rgba(251, 250, 246, 0.12);
  border-radius: 22px;
  padding: 36px;
}
.quebec-section__card-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--beurre);
  margin-bottom: 20px;
  display: block;
}
.quebec-meta {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 10px 24px;
  font-size: 14px;
  font-family: var(--mono);
  line-height: 1.5;
}
.quebec-meta dt {
  color: var(--brume-l);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.quebec-meta dd {
  margin: 0;
  color: var(--creme);
}

@media (max-width: 860px) {
  .quebec-section { padding: 72px 0; }
  .quebec-section__grid { grid-template-columns: 1fr; gap: 48px; }
  .quebec-words { grid-template-columns: 1fr; gap: 18px; }
  .quebec-word__fr { font-size: 28px; }
}

/* ---------- SECTION 05 — PRIVACY ---------- */
.privacy-section { padding: 120px 0; }
.privacy-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 80px;
  align-items: start;
  margin-top: 28px;
}
.privacy-section__copy h2 { margin: 12px 0 24px; }
.privacy-section__lede {
  font-size: 19px;
  line-height: 1.55;
  color: var(--encre);
  max-width: 46ch;
}
.privacy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid rgba(24, 22, 19, 0.12);
  border-radius: 22px;
  overflow: hidden;
  background: var(--papier);
}
.privacy-card {
  padding: 28px;
  border-right: 1px solid rgba(24, 22, 19, 0.1);
  border-bottom: 1px solid rgba(24, 22, 19, 0.1);
}
.privacy-card:nth-child(2n) { border-right: none; }
.privacy-card:nth-child(n+3) { border-bottom: none; }
.privacy-card--highlight { background: var(--beurre-soft); }
.privacy-card__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sirop);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.privacy-card p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--encre);
}

@media (max-width: 860px) {
  .privacy-section { padding: 72px 0; }
  .privacy-section__grid { grid-template-columns: 1fr; gap: 48px; }
  .privacy-grid { grid-template-columns: 1fr; }
  .privacy-card { border-right: none !important; border-bottom: 1px solid rgba(24, 22, 19, 0.1) !important; }
  .privacy-card:last-child { border-bottom: none !important; }
}

/* ---------- SECTION 06 — FAQ ---------- */
.faq-section {
  padding: 120px 0;
  background: var(--creme-warm);
}
.faq-section__h2 {
  font-family: var(--serif);
  font-variation-settings: "SOFT" 100, "opsz" 144;
  font-weight: 400;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.96;
  letter-spacing: -0.02em;
  margin: 20px 0 56px;
  color: var(--charbon);
  max-width: 16ch;
}
.faq-section__h2 em {
  font-style: normal;
  color: var(--sirop);
}
.faq-list {
  border-top: 1px solid rgba(24, 22, 19, 0.18);
}
.faq-item {
  border-bottom: 1px solid rgba(24, 22, 19, 0.18);
}
.faq-item summary {
  display: grid;
  grid-template-columns: 60px 1fr 32px;
  gap: 20px;
  align-items: center;
  padding: 24px 0;
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; content: ''; }
.faq-item__num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--brume);
}
.faq-item__q {
  font-family: var(--serif);
  font-variation-settings: "SOFT" 100, "opsz" 144;
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--charbon);
}
.faq-item__icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--brume-l);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 220ms ease, background 220ms ease;
  position: relative;
}
.faq-item__icon::before,
.faq-item__icon::after {
  content: '';
  position: absolute;
  background: var(--charbon);
  border-radius: 1px;
}
.faq-item__icon::before {
  width: 14px;
  height: 2px;
}
.faq-item__icon::after {
  width: 2px;
  height: 14px;
  transition: transform 220ms ease;
}
.faq-item[open] .faq-item__icon {
  background: var(--sirop);
  border-color: var(--sirop);
  transform: rotate(45deg);
}
.faq-item[open] .faq-item__icon::before,
.faq-item[open] .faq-item__icon::after {
  background: var(--papier);
}
.faq-item__a {
  display: grid;
  grid-template-columns: 60px 1fr 32px;
  gap: 20px;
  padding-bottom: 28px;
}
.faq-item__a::before { content: ''; }
.faq-item__a p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--encre);
  max-width: 64ch;
}

@media (max-width: 700px) {
  .faq-section { padding: 72px 0; }
  .faq-item summary { grid-template-columns: 40px 1fr 32px; gap: 12px; }
  .faq-item__q { font-size: 20px; }
  .faq-item__a { grid-template-columns: 40px 1fr 32px; gap: 12px; }
}

/* ---------- SECTION 07 — CTA ---------- */
.cta-section {
  padding: 120px 0;
  background: var(--sirop);
  color: var(--papier);
  position: relative;
  overflow: hidden;
}
.cta-section__inner { position: relative; }
.cta-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 80px;
  align-items: center;
  margin-top: 28px;
}
.cta-section__h2 {
  font-family: var(--serif);
  font-variation-settings: "SOFT" 100, "opsz" 144;
  font-weight: 400;
  font-size: clamp(60px, 9vw, 132px);
  line-height: 0.92;
  letter-spacing: -0.025em;
  margin: 12px 0 24px;
  color: var(--papier);
}
.cta-section__h2 em {
  font-style: normal;
  color: var(--beurre);
}
.cta-section__sub {
  font-family: var(--serif);
  font-style: normal;
  font-size: 22px;
  line-height: 1.4;
  color: var(--beurre-soft);
  max-width: 48ch;
  margin: 0 0 36px;
  font-variation-settings: "SOFT" 100, "opsz" 36;
}
.cta-section__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 32px;
}
.cta-section__newsletter {
  display: flex;
  gap: 0;
  max-width: 460px;
  background: var(--papier);
  border-radius: 100px;
  padding: 6px;
  align-items: center;
  box-shadow: 0 10px 24px -12px rgba(0, 0, 0, 0.35);
}
.cta-section__newsletter input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 10px 18px;
  color: var(--charbon);
  font-size: 14px;
  min-width: 0;
}
.cta-section__newsletter button {
  background: var(--charbon);
  color: var(--papier);
  border: none;
  padding: 12px 22px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 13px;
  white-space: nowrap;
}
.cta-section__newsletter-note {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--beurre);
  margin-top: 16px;
  opacity: 0.8;
}

/* CTA visual */
.cta-section__visual {
  display: flex;
  justify-content: center;
  min-height: 660px;
  position: relative;
}
.cta-section__visual .phone-frame {
  filter: drop-shadow(0 40px 60px rgba(0, 0, 0, 0.35));
}

@media (max-width: 860px) {
  .cta-section { padding: 72px 0; }
  .cta-section__grid { grid-template-columns: 1fr; gap: 48px; }
  .cta-section__visual { display: none; }
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--charbon);
  color: var(--creme);
  padding: 64px 0 28px;
}
.footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 56px;
  align-items: end;
  margin-bottom: 48px;
}
.footer__brand {
  display: flex;
  align-items: flex-end;
  gap: 18px;
}
.footer__mark {
  width: auto;
  height: 47px;
  display: block;
  flex-shrink: 0;
}
.footer__tagline {
  font-family: var(--serif);
  font-style: normal;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 0.95;
  color: var(--beurre);
  font-variation-settings: "SOFT" 100, "opsz" 144;
  letter-spacing: -0.02em;
}
.footer__links {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px 22px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brume-l);
}
.footer__links a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--creme); }
.footer__email { color: var(--beurre) !important; }
.footer__bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(251, 250, 246, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brume-l);
}

@media (max-width: 700px) {
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .footer__links { justify-content: flex-start; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* ---------- Editorial pages (privacy / terms) ---------- */
.doc {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 56px;
}
@media (max-width: 700px) { .doc { padding: 0 24px; } }

.topbar {
  padding: 22px 0;
  border-bottom: 1px solid rgba(24, 22, 19, 0.08);
}
.topbar .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.brand-mark {
  width: auto;
  height: 32px;
  display: block;
}
.brand-word {
  font-family: var(--display);
  font-weight: 800;
  font-size: 22px;
  color: var(--charbon);
  letter-spacing: -0.05em;
  position: relative;
}
.brand-word em { font-style: normal; }
.brand-word::after {
  content: '';
  position: absolute;
  top: 1px;
  right: -2px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--sirop);
}
.back {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brume);
  text-decoration: none;
}
.back:hover { color: var(--charbon); }

header.page-head {
  padding: 72px 0 56px;
  border-bottom: 1px solid rgba(24, 22, 19, 0.08);
}
.page-head .eyebrow {
  margin-bottom: 16px;
}
.page-head h1 {
  font-family: var(--serif);
  font-variation-settings: "SOFT" 100, "opsz" 144;
  font-weight: 400;
  font-size: clamp(48px, 8vw, 80px);
  line-height: 0.96;
  letter-spacing: -0.02em;
  color: var(--charbon);
}
.page-head h1 em {
  font-style: normal;
  color: var(--sirop);
}
.page-head .subtitle {
  font-family: var(--serif);
  font-style: normal;
  font-size: 20px;
  line-height: 1.4;
  color: var(--encre);
  margin-top: 16px;
  max-width: 50ch;
  font-variation-settings: "SOFT" 100, "opsz" 36;
}
.page-head .meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brume);
  margin-top: 20px;
}

/* Document content */
.doc-content {
  padding: 56px 0 96px;
}
.tldr {
  background: var(--beurre-soft);
  border: 1px solid var(--beurre);
  border-radius: 16px;
  padding: 28px;
  margin-bottom: 48px;
}
.tldr__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sirop);
  margin-bottom: 12px;
  display: block;
}
.tldr ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.tldr li {
  font-size: 15px;
  line-height: 1.55;
  color: var(--encre);
  padding: 6px 0;
}
.tldr li::before {
  content: '· ';
  color: var(--sirop);
  font-weight: 600;
}
.doc-content h2 {
  font-family: var(--serif);
  font-variation-settings: "SOFT" 100, "opsz" 144;
  font-weight: 400;
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 56px 0 16px;
  color: var(--charbon);
}
.doc-content h2 em {
  font-style: normal;
  color: var(--sirop);
}
.doc-content p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--encre);
  margin-bottom: 16px;
  max-width: 62ch;
}
.doc-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}
.doc-content ul li {
  font-size: 16px;
  line-height: 1.7;
  color: var(--encre);
  padding: 4px 0;
}
.doc-content ul li::before {
  content: '· ';
  color: var(--sirop);
  font-weight: 600;
}
.doc-content a {
  color: var(--sirop);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.doc-content a:hover { color: var(--sirop-deep); }

.doc-footer {
  padding: 28px 0;
  border-top: 1px solid rgba(24, 22, 19, 0.08);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brume);
}

/* Editorial page footer */
.page-foot {
  padding: 48px 0;
  background: var(--charbon);
  color: var(--creme);
}
.page-foot .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 32px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brume-l);
}
.page-foot a { color: var(--beurre); text-decoration: none; }
.page-foot__nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.page-foot__nav a { color: var(--brume-l); }
.page-foot__nav a:hover { color: var(--creme); }
