/* ==========================================================================
   Seven · Programme de Parrainage
   Feuille de style · édition privée, partenariat apporteurs d'affaires & clients
   ========================================================================== */

:root {
  /* Empilement système moderne, sans dépendance externe (pas de webfont chargé) */
  --font-display: -apple-system, BlinkMacSystemFont, "Segoe UI", "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  /* Palette éditoriale existante, réutilisée pour Seven (mark recoloré en --ink) */
  --ink: #142330;
  --ink-2: #1c3140;
  --ink-3: #24404f;
  --paper: #faf7f0;
  --paper-2: #f1ead9;
  --paper-3: #e9e0c9;
  --cream-ink: #efe9da;
  --line-on-paper: rgba(20, 35, 48, 0.14);
  --line-on-ink: rgba(239, 233, 218, 0.16);
  --text-ink: #16232c;
  --text-ink-soft: rgba(22, 35, 44, 0.68);
  --text-cream: #f4efe1;
  --text-cream-soft: rgba(244, 239, 225, 0.72);
  --green: #3f8f68;
  --green-deep: #2c6b4c;
  --green-pale: #e2eee7;
  --blue: #55636d;
  --blue-deep: #3b4750;
  --blue-pale: #e8ebed;
  --brass: #c9a96e;
  --brass-deep: #a3814a;
  --brass-pale: #f2e8d5;
  --shadow-soft: 0 30px 60px -30px rgba(20, 35, 48, 0.35);
  --shadow-card: 0 18px 40px -24px rgba(20, 35, 48, 0.28);
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --maxw: 1180px;
}

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

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

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--text-ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Inter", Helvetica, Arial, sans-serif;
  font-size: 16.5px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

.font-display {
  font-family: var(--font-display);
  font-weight: 750;
  letter-spacing: -0.025em;
}

.font-script {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 600;
}

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

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

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

svg {
  display: block;
}

::selection {
  background: var(--brass);
  color: var(--ink);
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 56px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--blue-deep);
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}
[data-tone="ink"] .eyebrow {
  color: var(--brass);
}

h1, h2, h3, h4 {
  margin: 0;
  color: inherit;
}

h2.section-title {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.14;
  margin-top: 14px;
  max-width: 16ch;
}

.section-head {
  margin-bottom: clamp(36px, 6vw, 64px);
}

.section-head p.lede {
  margin-top: 18px;
  max-width: 56ch;
  color: var(--text-ink-soft);
  font-size: 17px;
}

[data-tone="ink"] .section-head p.lede {
  color: var(--text-cream-soft);
}

section {
  position: relative;
  padding: clamp(64px, 10vw, 128px) 0;
}

section[data-tone="ink"] {
  background: var(--ink);
  color: var(--text-cream);
}

section[data-tone="ink"] h2,
section[data-tone="ink"] h3,
section[data-tone="ink"] h4 {
  color: var(--text-cream);
}

/* -------------------------------------------------------------- ornament */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--brass-deep);
  opacity: 0.75;
  margin: 0 auto;
  width: fit-content;
}
[data-tone="ink"] .ornament {
  color: var(--brass);
  opacity: 0.7;
}
.ornament .rule {
  width: clamp(36px, 8vw, 96px);
  height: 1px;
  background: currentColor;
}
.ornament svg {
  width: 14px;
  height: 14px;
}

/* -------------------------------------------------------------------- reveal */
.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger > * {
  transition-delay: calc(var(--i, 0) * 90ms);
}

/* ================================================================ header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: padding 0.4s var(--ease), background-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(250, 247, 240, 0.94);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line-on-paper);
}
.site-header.is-scrolled {
  padding: 12px 0;
}
.site-header.is-scrolled::before {
  background: rgba(250, 247, 240, 0.98);
  box-shadow: var(--shadow-card);
}

.site-header .wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img {
  width: auto;
  height: 22px;
  transition: height 0.4s var(--ease);
}
.site-header.is-scrolled .brand img {
  height: 18px;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.brand-text strong {
  font-family: var(--font-display);
  font-size: 17px;
  letter-spacing: 0.05em;
  color: var(--ink);
}
.brand-text span {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-deep);
  font-weight: 600;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
}
.main-nav a:not(.btn) {
  font-size: 13.5px;
  letter-spacing: 0.03em;
  color: var(--text-ink-soft);
  position: relative;
  padding: 4px 0;
}
.main-nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--brass-deep);
  transition: right 0.3s var(--ease);
}
.main-nav a:not(.btn):hover {
  color: var(--ink);
}
.main-nav a:not(.btn):hover::after {
  right: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.6vw, 30px);
}

.nav-toggle {
  display: none;
  background: var(--paper);
  border: 1px solid var(--line-on-paper);
  border-radius: 10px;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-card);
  flex: none;
  margin-left: auto;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 18px;
  height: 1px;
  background: var(--ink);
  position: relative;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav-toggle span::before {
  position: absolute;
  top: -6px;
}
.nav-toggle span::after {
  position: absolute;
  top: 6px;
}
.nav-open .nav-toggle span {
  background: transparent;
}
.nav-open .nav-toggle span::before {
  transform: translateY(6px) rotate(45deg);
}
.nav-open .nav-toggle span::after {
  transform: translateY(-6px) rotate(-45deg);
}

/* --------------------------------------------------------------- buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.35s var(--ease), background-color 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.btn svg {
  width: 15px;
  height: 15px;
  flex: none;
}
.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: var(--ink);
  color: var(--text-cream);
  box-shadow: var(--shadow-card);
}
.btn-primary:hover {
  background: var(--blue-deep);
  transform: translateY(-2px);
}

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

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

.btn-brass {
  background: linear-gradient(135deg, var(--brass), var(--brass-deep));
  color: #fff;
}
.btn-brass:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px -14px rgba(201, 169, 110, 0.55);
}

.btn-sm {
  padding: 10px 18px;
  font-size: 11.5px;
}

.btn-block {
  width: 100%;
  justify-content: center;
}

/* ==================================================================== hero */
.hero {
  position: relative;
  background: var(--paper);
  color: var(--text-ink);
  padding-top: clamp(150px, 20vw, 210px);
  padding-bottom: clamp(80px, 12vw, 140px);
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 55% at 82% 8%, rgba(127, 161, 90, 0.16), transparent 60%),
    radial-gradient(50% 50% at 8% 92%, rgba(61, 111, 143, 0.18), transparent 60%);
  z-index: -2;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.5;
  z-index: -1;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/></svg>");
  mix-blend-mode: overlay;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}

.hero h1 {
  font-size: clamp(34px, 5.4vw, 60px);
  line-height: 1.08;
  margin-top: 22px;
}
.hero h1 em {
  display: block;
  font-style: normal;
  color: transparent;
  background: linear-gradient(100deg, var(--brass-deep), var(--brass) 55%, var(--ink) 130%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-lede {
  margin-top: 24px;
  font-size: 17.5px;
  color: var(--text-ink-soft);
  max-width: 52ch;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 4vw, 40px);
  margin-top: 54px;
  padding-top: 30px;
  border-top: 1px solid var(--line-on-paper);
}
.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 30px);
  color: var(--text-ink);
}
.hero-stat span {
  font-size: 11.5px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-ink-soft);
}

.hero-seal {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  align-self: flex-start;
  width: 100%;
  max-width: 540px;
  margin-inline: auto;
}
.hero-seal-glow {
  position: absolute;
  inset: 6% 4% 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(127, 161, 90, 0.2), rgba(61, 111, 143, 0.12) 55%, transparent 75%);
  filter: blur(32px);
}
.hero-person {
  position: relative;
  width: min(100%, 480px);
  height: auto;
  filter: drop-shadow(0 24px 34px rgba(20, 35, 48, 0.22));
}
.hero-seal-badge {
  position: absolute;
  bottom: -16px;
  right: 6%;
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--line-on-paper);
  border-radius: 999px;
  padding: 10px 18px 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.03em;
  font-weight: 600;
  box-shadow: var(--shadow-soft);
}
.hero-seal-badge svg {
  width: 16px;
  height: 16px;
  color: var(--brass-deep);
}

/* ================================================================ app mock */
.app-mock {
  position: relative;
  width: min(100%, 400px);
  background: var(--paper);
  border: 1px solid var(--line-on-paper);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.app-mock-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-on-paper);
}
.app-mock-logo {
  height: 16px;
  width: auto;
}
.app-mock-pill {
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-ink-soft);
  background: var(--paper-2);
  border-radius: 999px;
  padding: 5px 10px;
  white-space: nowrap;
}
.app-mock-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.app-mock-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
}
.app-mock-row .icon {
  width: 18px;
  height: 18px;
  color: var(--brass-deep);
  flex-shrink: 0;
}
.app-mock-row .label {
  color: var(--text-ink);
  flex: 1;
}
.app-mock-row .value {
  font-weight: 600;
  color: var(--text-ink-soft);
  font-size: 12.5px;
}
.app-mock-row .value.ok {
  color: var(--brass-deep);
}
.app-mock-highlight {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: var(--text-cream);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  font-size: 13px;
}
.app-mock-highlight svg {
  width: 18px;
  height: 18px;
  color: var(--brass);
  flex-shrink: 0;
}
.app-mock-highlight strong {
  color: #fff;
}

/* ============================================================= territory bar */
.territory-bar {
  background: var(--paper-2);
  border-bottom: 1px solid var(--line-on-paper);
  overflow: hidden;
  padding: 15px 0;
}
.territory-track {
  display: flex;
  gap: 46px;
  width: max-content;
  animation: scroll-left 42s linear infinite;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-ink-soft);
  font-weight: 600;
}
.territory-track span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.territory-track span::after {
  content: "•";
  color: var(--brass-deep);
  margin-left: 36px;
}
@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .territory-track { animation: none; }
}

/* ============================================================ intro / needs */
.needs-list {
  display: flex;
  flex-direction: column;
}
.need-row {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 26px minmax(0, 1.15fr);
  align-items: center;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid var(--line-on-paper);
}
.needs-list .need-row:last-child {
  border-bottom: 1px solid var(--line-on-paper);
}
.need-row .icon {
  color: var(--brass-deep);
  width: 24px;
  height: 24px;
}
.need-row .need {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--ink);
}
.need-row .arrow {
  color: var(--brass-deep);
  opacity: 0.7;
  width: 20px;
  height: 20px;
}
.need-row .answer {
  color: var(--text-ink-soft);
  font-size: 15px;
}

.intro-cols {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(30px, 6vw, 80px);
  align-items: start;
}
.intro-note {
  margin-top: 22px;
  font-size: 13.5px;
  color: var(--text-ink-soft);
  font-style: italic;
}

@media (max-width: 720px) {
  .need-row {
    grid-template-columns: 28px minmax(0, 1fr);
    grid-template-areas: "icon need" "arrow answer";
    row-gap: 8px;
  }
  .need-row .icon { grid-area: icon; }
  .need-row .need { grid-area: need; }
  .need-row .arrow { display: none; }
  .need-row .answer { grid-area: answer; padding-left: 0; }
}

/* =================================================================== why */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line-on-paper);
  border: 1px solid var(--line-on-paper);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (min-width: 860px) {
  .why-grid { grid-template-columns: repeat(5, 1fr); }
}
.why-card {
  background: var(--paper);
  padding: 34px 28px;
  position: relative;
}
.why-card .num {
  font-family: var(--font-display);
  font-size: 42px;
  color: var(--paper-3);
  -webkit-text-stroke: 1px var(--line-on-paper);
  line-height: 1;
}
.why-card h3 {
  margin-top: 18px;
  font-family: var(--font-display);
  font-size: 18.5px;
  color: var(--ink);
}
.why-card p {
  margin-top: 10px;
  font-size: 14.5px;
  color: var(--text-ink-soft);
}

/* ============================================================== timeline */
.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  max-width: 780px;
  margin: 0 auto;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 28px;
  bottom: 28px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(201, 169, 110, 0.55) 8%, rgba(201, 169, 110, 0.55) 92%, transparent);
  transition: background 0.4s var(--ease);
}
.step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
  padding: 26px 0;
}
.step-num {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--brass);
  color: var(--brass);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  background: var(--ink);
  transition: transform 0.4s var(--ease), background 0.4s var(--ease), color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.step h3 {
  font-family: var(--font-display);
  font-size: 19px;
  padding-top: 12px;
  transition: color 0.35s var(--ease);
}
.step p {
  margin-top: 8px;
  color: var(--text-cream-soft);
  font-size: 15px;
  max-width: 56ch;
  transition: color 0.35s var(--ease);
}

.step:hover .step-num {
  background: linear-gradient(135deg, var(--brass), var(--brass-deep));
  border-color: var(--brass);
  color: #1b1508;
  transform: scale(1.12);
  box-shadow: 0 10px 26px -10px rgba(201, 169, 110, 0.6);
}
.step:hover h3 {
  color: var(--brass);
}

@media (min-width: 1040px) {
  .timeline {
    flex-direction: row;
    align-items: flex-start;
    max-width: none;
    gap: 0;
  }
  .timeline::before {
    left: 0;
    right: 0;
    top: 28px;
    bottom: auto;
    width: auto;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(201, 169, 110, 0.55) 4%, rgba(201, 169, 110, 0.55) 96%, transparent);
  }
  .step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
    padding: 0 18px;
    transition: transform 0.4s var(--ease);
  }
  .step h3 {
    padding-top: 22px;
    font-size: 16.5px;
    line-height: 1.3;
  }
  .step p {
    font-size: 13.5px;
  }
  .step:hover {
    transform: translateY(-6px);
  }
}

/* ================================================================ reward */
.reward-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(40px, 6vw, 76px);
  align-items: start;
}
.reward-head {
  margin-bottom: 22px;
}

.gift-card-wrap {
  container-type: inline-size;
  container-name: giftcard;
}
.gift-card {
  position: relative;
  min-height: calc(100cqi / 1.85);
  border-radius: 20px;
  padding: clamp(18px, 7cqi, 34px);
  background:
    radial-gradient(130% 160% at 102% -10%, rgba(230, 224, 201, 0.22), transparent 50%),
    radial-gradient(90% 120% at -10% 118%, rgba(75, 63, 143, 0.45), transparent 60%),
    linear-gradient(150deg, var(--ink) 0%, var(--ink-3) 45%, #332a63 100%);
  color: var(--text-cream);
  box-shadow: 0 40px 70px -28px rgba(9, 16, 22, 0.6);
  overflow: hidden;
  transform: rotate(-2.5deg);
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.gift-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(244, 239, 225, 0.25);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
  pointer-events: none;
}
.gift-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.16) 0%, transparent 22%);
  pointer-events: none;
}
.gift-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-shrink: 0;
}
.gift-card-mark {
  width: clamp(36px, 13cqi, 50px);
  height: clamp(36px, 13cqi, 50px);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gift-card-mark img {
  width: 100%;
  height: 100%;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.gift-card-tag {
  font-size: clamp(8.5px, 2.7cqi, 10.5px);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid rgba(244, 239, 225, 0.4);
  border-radius: 999px;
  padding: 0.4em 0.85em;
  white-space: nowrap;
}
.gift-card-mid {
  margin-top: clamp(16px, 5.5cqi, 26px);
  display: flex;
  align-items: center;
  gap: clamp(14px, 5cqi, 24px);
  flex-shrink: 0;
}
.gift-card-chip {
  width: clamp(30px, 9cqi, 38px);
  height: clamp(22px, 6.8cqi, 27px);
  flex-shrink: 0;
  border-radius: 6px;
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent calc(33.33% - 0.5px),
      rgba(20, 35, 48, 0.4) calc(33.33% - 0.5px),
      rgba(20, 35, 48, 0.4) calc(33.33% + 0.5px)
    ),
    repeating-linear-gradient(
      0deg,
      transparent 0,
      transparent calc(50% - 0.5px),
      rgba(20, 35, 48, 0.4) calc(50% - 0.5px),
      rgba(20, 35, 48, 0.4) calc(50% + 0.5px)
    ),
    linear-gradient(155deg, #f1e2b3, #c2a877 45%, #8f7a48 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4), inset 0 1px 2px rgba(255, 255, 255, 0.5);
  position: relative;
  overflow: hidden;
}
.gift-card-chip::before {
  content: "";
  position: absolute;
  inset: 18% 14%;
  border: 1px solid rgba(20, 35, 48, 0.28);
  border-radius: 2px;
}
.gift-card-amount {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 14cqi, 4rem);
  line-height: 1;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}
.gift-card-amount span {
  font-size: 0.32em;
  vertical-align: super;
  opacity: 0.85;
  margin-left: 0.15em;
}
.gift-card-bottom {
  margin-top: auto;
  padding-top: clamp(14px, 4cqi, 22px);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-shrink: 0;
}
.gift-card-bottom .label {
  font-size: clamp(8.5px, 2.6cqi, 10.5px);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-cream-soft);
  white-space: nowrap;
}
.gift-card-bottom .name {
  font-family: var(--font-display);
  font-size: clamp(13px, 4.2cqi, 16px);
  margin-top: 0.3em;
}

.conditions {
  counter-reset: cond;
}
.condition {
  counter-increment: cond;
  position: relative;
  padding: 16px 0 16px 46px;
  border-top: 1px solid var(--line-on-paper);
  font-size: 15px;
  color: var(--text-ink-soft);
}
.condition:last-of-type {
  border-bottom: 1px solid var(--line-on-paper);
}
.condition::before {
  content: counter(cond, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 15px;
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--brass-deep);
}
.condition strong {
  color: var(--ink);
}

.callout {
  margin-top: 26px;
  display: flex;
  gap: 14px;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  background: var(--paper-3);
  border: 1px solid var(--line-on-paper);
  font-size: 14px;
  color: var(--text-ink);
}
.callout svg {
  flex: none;
  width: 20px;
  height: 20px;
  color: var(--brass-deep);
  margin-top: 2px;
}

/* =============================================================== scope */
.scope-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-on-paper);
  border: 1px solid var(--line-on-paper);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.scope-col {
  background: var(--paper);
  padding: clamp(26px, 4vw, 40px);
}
.scope-col h3 {
  font-family: var(--font-display);
  font-size: 17px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.scope-col h3 svg {
  width: 18px;
  height: 18px;
}
.scope-col.yes h3 { color: var(--brass-deep); }
.scope-col.no h3 { color: var(--blue-deep); }
.scope-col ul {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.scope-col li {
  display: flex;
  gap: 10px;
  font-size: 14.5px;
  color: var(--text-ink-soft);
}
.scope-col li svg {
  width: 16px;
  height: 16px;
  flex: none;
  margin-top: 3px;
}
.scope-col.yes li svg { color: var(--brass-deep); }
.scope-col.no li svg { color: var(--blue-deep); }

.pull-quote {
  margin-top: clamp(30px, 5vw, 48px);
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(19px, 2.6vw, 26px);
  color: var(--ink);
  max-width: 46ch;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.4;
}

@media (max-width: 640px) {
  .scope-grid { grid-template-columns: 1fr; }
}

/* ================================================================ projects */
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.tag {
  border: 1px solid var(--line-on-paper);
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 13.5px;
  color: var(--text-ink);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), background-color 0.3s var(--ease);
}
.tag:hover {
  border-color: var(--brass-deep);
  background: var(--brass-pale);
  transform: translateY(-2px);
}

/* ================================================================ territory map */
.territory-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 70px);
  align-items: center;
}
.commune-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 0;
}
.commune-list li {
  font-family: var(--font-display);
  font-size: clamp(16px, 2vw, 19px);
  color: var(--ink);
  position: relative;
  padding-right: 22px;
}
.commune-list li:not(:last-child)::after {
  content: "·";
  color: var(--brass-deep);
  padding-left: 10px;
}
.commune-list li:last-child::after {
  content: ".";
  color: var(--ink);
}

.compass {
  position: relative;
  aspect-ratio: 1;
  max-width: 320px;
  margin: 0 auto;
  border-radius: 50%;
  border: 1px solid var(--line-on-paper);
  display: flex;
  align-items: center;
  justify-content: center;
}
.compass::before,
.compass::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px dashed var(--line-on-paper);
}
.compass::before { inset: 14%; }
.compass::after { inset: 30%; }
.compass svg {
  width: 34%;
  color: var(--brass-deep);
}
.compass span {
  position: absolute;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  color: var(--text-ink-soft);
  text-transform: uppercase;
}
.compass .n { top: 6%; left: 50%; transform: translateX(-50%); }
.compass .s { bottom: 6%; left: 50%; transform: translateX(-50%); }
.compass .e { right: 4%; top: 50%; transform: translateY(-50%); }
.compass .w { left: 4%; top: 50%; transform: translateY(-50%); }

/* =================================================================== faq */
.faq-list {
  max-width: 840px;
  margin: 0 auto;
}
.faq-item {
  border-top: 1px solid var(--line-on-paper);
}
.faq-list .faq-item:last-child {
  border-bottom: 1px solid var(--line-on-paper);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: none;
  border: none;
  text-align: left;
  padding: 24px 4px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: clamp(16px, 2vw, 19px);
  color: var(--ink);
}
.faq-q .plus {
  position: relative;
  width: 20px;
  height: 20px;
  flex: none;
}
.faq-q .plus::before,
.faq-q .plus::after {
  content: "";
  position: absolute;
  background: var(--brass-deep);
  transition: transform 0.3s var(--ease);
}
.faq-q .plus::before {
  left: 0; top: 50%; width: 100%; height: 1px; transform: translateY(-50%);
}
.faq-q .plus::after {
  top: 0; left: 50%; width: 1px; height: 100%; transform: translateX(-50%);
}
.faq-item.is-open .faq-q .plus::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease);
}
.faq-a p {
  padding: 0 4px 26px;
  color: var(--text-ink-soft);
  font-size: 15px;
  max-width: 66ch;
}

/* ================================================================== final CTA */
.final-cta {
  text-align: center;
}
.final-list {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 26px;
  margin-top: 26px;
}
.final-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-cream-soft);
}
.final-list li svg {
  width: 15px;
  height: 15px;
  color: var(--brass-deep);
  flex: none;
}
.final-headline {
  margin: 46px auto 0;
  max-width: 24ch;
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 38px);
  line-height: 1.28;
}
.final-sub {
  margin-top: 20px;
  max-width: 54ch;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-cream-soft);
  font-size: 15.5px;
}
.final-ctas {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
}

.contact-strip {
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid var(--line-on-ink);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(24px, 5vw, 60px);
}
.contact-strip a,
.contact-strip span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  color: var(--text-cream);
}
.contact-strip svg {
  width: 17px;
  height: 17px;
  color: var(--brass);
}
.contact-strip a:hover {
  color: var(--brass);
}

/* ===================================================================== footer */
.site-footer {
  background: var(--paper-2);
  border-top: 1px solid var(--line-on-paper);
  padding: 54px 0 34px;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line-on-paper);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-brand img {
  width: 58px;
  height: 58px;
}
.footer-brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--ink);
}
.footer-brand span {
  font-size: 12px;
  color: var(--text-ink-soft);
}
.footer-links {
  display: flex;
  gap: 30px;
  flex-wrap: nowrap;
}
@media (max-width: 700px) {
  .footer-links {
    flex-wrap: wrap;
  }
}
.footer-links a {
  font-size: 13px;
  color: var(--text-ink-soft);
}
.footer-links a:hover {
  color: var(--ink);
}
.footer-link-btn {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  font-size: 13px;
  color: var(--text-ink-soft);
  cursor: pointer;
}
.footer-link-btn:hover {
  color: var(--ink);
}
.footer-legal {
  margin-top: 26px;
  font-size: 12px;
  line-height: 1.7;
  color: var(--text-ink-soft);
  opacity: 0.85;
}
.footer-bottom {
  margin-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  color: var(--text-ink-soft);
}


/* ===================================================================== responsive nav */
@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
  }
  .nav-links {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(320px, 84vw);
    height: 100vh;
    background: var(--ink);
    color: var(--text-cream);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 26px;
    padding: 40px clamp(28px, 8vw, 44px);
    transform: translateX(100%);
    transition: transform 0.45s var(--ease);
  }
  .nav-open .nav-links {
    transform: translateX(0);
  }
  .main-nav a:not(.btn) {
    color: var(--text-cream-soft);
    font-size: 16px;
  }
  .main-nav .btn-outline {
    border-color: var(--line-on-ink);
    color: var(--text-cream);
  }
  .hero-grid,
  .intro-cols,
  .reward-grid,
  .territory-panel {
    grid-template-columns: 1fr;
  }
  .hero-seal {
    display: none;
  }
  .compass {
    display: none;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  body { font-size: 15.5px; }
  .btn { padding: 13px 20px; }
  .final-ctas .btn { width: 100%; justify-content: center; }
  .brand { margin-left: 16px; }
}
