/* ==============================================================
   LE RECORD — Maison éditoriale de records du monde
   Direction Bistrot : Nuit Profonde · Cuivre · Ivoire · Sang de Bœuf
   ============================================================== */

:root {
  --c-night: #0F2440;
  --c-night-deep: #081628;
  --c-copper: #E89A4A;
  --c-copper-soft: #f0b375;
  --c-ivory: #F1EBDE;
  --c-ivory-warm: #e8e1d0;
  --c-bull: #7A3D2E;
  --c-rule: #d4cdb8;
  --c-muted: #5a6478;

  --f-display: 'Fraunces', 'Times New Roman', serif;
  --f-italic: 'Cormorant Garamond', 'Times New Roman', serif;
  --f-text: 'Archivo', system-ui, sans-serif;
  --f-mono: 'Space Mono', 'Courier New', monospace;

  --maxw: 1240px;
  --pad-x: clamp(20px, 5vw, 64px);
  --r: 2px;

  --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--c-ivory);
  color: var(--c-night);
  font-family: var(--f-text);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

::selection { background: var(--c-copper); color: var(--c-night); }

/* ==============================================================
   NAV
   ============================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(241, 235, 222, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--c-rule);
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 18px var(--pad-x);
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-mark {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--c-night);
  flex-shrink: 0;
}
.nav-mark em {
  font-family: var(--f-italic);
  font-style: italic;
  font-weight: 400;
  color: var(--c-copper);
  text-transform: none;
  letter-spacing: 0;
}
.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.nav-links a {
  position: relative;
  padding: 4px 0;
  transition: color 0.2s var(--ease);
}
.nav-links a:hover { color: var(--c-bull); }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--c-copper);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-links a:hover::after { transform: scaleX(1); }

.nav-lang {
  display: flex;
  gap: 2px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid var(--c-rule);
  border-radius: var(--r);
  overflow: hidden;
}
.nav-lang a {
  padding: 6px 9px;
  color: var(--c-muted);
  transition: background 0.2s, color 0.2s;
}
.nav-lang a:hover { color: var(--c-night); background: var(--c-ivory-warm); }
.nav-lang a[aria-current="true"] {
  background: var(--c-night);
  color: var(--c-ivory);
}

.nav-burger { display: none; }

@media (max-width: 820px) {
  .nav-inner { gap: 16px; }
  .nav-links { display: none; }
  .nav-lang { font-size: 9px; }
  .nav-lang a { padding: 5px 7px; }
}

/* ==============================================================
   HERO
   ============================================================== */
.hero {
  position: relative;
  background: var(--c-night);
  color: var(--c-ivory);
  padding: clamp(60px, 10vw, 120px) var(--pad-x) clamp(80px, 12vw, 140px);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 88% 18%, rgba(232, 154, 74, 0.16), transparent 42%),
    repeating-linear-gradient(90deg, transparent 0, transparent 12mm, rgba(241, 235, 222, 0.025) 12mm, rgba(241, 235, 222, 0.025) 12.3mm);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
}
.hero-eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-copper);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--c-copper);
}
.hero-title {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(64px, 13vw, 200px);
  line-height: 0.86;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  color: var(--c-ivory);
}
.hero-title em {
  display: block;
  font-family: var(--f-italic);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 5vw, 72px);
  letter-spacing: 0;
  text-transform: none;
  color: var(--c-copper);
  margin-top: 18px;
  line-height: 1.05;
  max-width: 18ch;
}
.hero-lead {
  margin-top: clamp(32px, 5vw, 56px);
  font-family: var(--f-text);
  font-weight: 400;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.55;
  max-width: 60ch;
  color: var(--c-ivory-warm);
}
.hero-lead strong { color: var(--c-ivory); font-weight: 600; }
.hero-actions {
  margin-top: clamp(36px, 4vw, 48px);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: center;
}
.hero-meta {
  position: absolute;
  right: var(--pad-x);
  top: 0;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-copper);
  text-align: right;
}
.hero-meta b { display: block; font-weight: 700; color: var(--c-ivory); margin-bottom: 4px; }

@media (max-width: 720px) {
  .hero-meta { display: none; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: var(--r);
  transition: transform 0.25s var(--ease), background 0.25s, color 0.25s, border-color 0.25s;
}
.btn-primary {
  background: var(--c-copper);
  color: var(--c-night);
  font-weight: 700;
}
.btn-primary:hover { background: var(--c-copper-soft); transform: translateY(-1px); }
.btn-ghost {
  border: 1px solid var(--c-copper);
  color: var(--c-copper);
}
.btn-ghost:hover { background: var(--c-copper); color: var(--c-night); }
.btn-ghost.on-light {
  border-color: var(--c-night);
  color: var(--c-night);
}
.btn-ghost.on-light:hover { background: var(--c-night); color: var(--c-ivory); }
.btn-arrow::after { content: "↗"; font-family: var(--f-text); font-size: 14px; line-height: 1; }

/* ==============================================================
   SECTION SCAFFOLD
   ============================================================== */
section { padding: clamp(72px, 10vw, 130px) var(--pad-x); }
.section-inner { max-width: var(--maxw); margin: 0 auto; }

.section-head { margin-bottom: clamp(48px, 7vw, 90px); display: grid; grid-template-columns: 200px 1fr; gap: clamp(20px, 4vw, 60px); align-items: start; }
.section-num {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-bull);
  padding-top: 18px;
  border-top: 1.5px solid var(--c-night);
}
.section-num b { display: block; font-weight: 700; color: var(--c-night); margin-bottom: 4px; font-size: 13px; }
.section-title {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(40px, 6vw, 84px);
  line-height: 0.9;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--c-night);
  max-width: 18ch;
}
.section-title em {
  font-family: var(--f-italic);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--c-copper);
}
.section-lead {
  margin-top: 24px;
  font-family: var(--f-italic);
  font-style: italic;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.4;
  color: var(--c-bull);
  max-width: 50ch;
}
@media (max-width: 720px) {
  .section-head { grid-template-columns: 1fr; gap: 16px; }
  .section-num { padding-top: 12px; }
}

/* ==============================================================
   MANIFESTO (concept)
   ============================================================== */
.manifesto { background: var(--c-ivory); }
.manifesto-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 56px);
}
.pillar { padding-top: 18px; border-top: 1.5px solid var(--c-night); }
.pillar .k {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-bull);
  margin-bottom: 8px;
}
.pillar h3 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(22px, 2.5vw, 30px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.pillar h3 em { font-family: var(--f-italic); font-style: italic; font-weight: 400; color: var(--c-copper); }
.pillar p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-muted);
}
@media (max-width: 820px) {
  .manifesto-grid { grid-template-columns: 1fr; }
}

/* ==============================================================
   FEATURED RECORD (Edouard)
   ============================================================== */
.featured { background: var(--c-night); color: var(--c-ivory); position: relative; overflow: hidden; }
.featured::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 90%, rgba(232, 154, 74, 0.18), transparent 45%),
    repeating-linear-gradient(90deg, transparent 0, transparent 12mm, rgba(241, 235, 222, 0.03) 12mm, rgba(241, 235, 222, 0.03) 12.3mm);
  pointer-events: none;
}
.featured .section-num { color: var(--c-copper-soft); border-top-color: var(--c-copper); }
.featured .section-num b { color: var(--c-ivory); }
.featured .section-title { color: var(--c-ivory); }
.featured .section-title em { color: var(--c-copper); }
.featured .section-lead { color: var(--c-copper-soft); }

.record-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 70px);
  background: var(--c-ivory);
  color: var(--c-night);
  padding: clamp(36px, 5vw, 64px);
  border-radius: var(--r);
  align-items: center;
}
.record-card::before {
  content: "";
  position: absolute;
  inset: 6mm;
  border: 1px solid var(--c-night);
  pointer-events: none;
}
.record-card > * { position: relative; }
.record-tag {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-bull);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.record-tag .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #e8523a;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}
.record-name {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(48px, 8vw, 110px);
  line-height: 0.85;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.record-name em {
  display: block;
  font-family: var(--f-italic);
  font-style: italic;
  font-weight: 400;
  font-size: 0.42em;
  letter-spacing: 0;
  text-transform: none;
  color: var(--c-copper);
  margin-top: 8px;
}
.record-pitch {
  font-family: var(--f-italic);
  font-style: italic;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.45;
  color: var(--c-bull);
  margin-bottom: 28px;
  max-width: 30ch;
}
.record-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 24px;
  padding-top: 20px;
  border-top: 1px solid var(--c-rule);
  margin-bottom: 28px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.record-meta b {
  display: block;
  font-family: var(--f-italic);
  font-style: italic;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--c-bull);
  margin-bottom: 4px;
}

@media (max-width: 820px) {
  .record-card { grid-template-columns: 1fr; }
}

/* ==============================================================
   UPCOMING records
   ============================================================== */
.upcoming { background: var(--c-ivory-warm); }
.upcoming-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 32px);
}
.up-card {
  background: var(--c-ivory);
  border: 1px solid var(--c-rule);
  padding: clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  min-height: 280px;
  position: relative;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.up-card:hover { border-color: var(--c-copper); transform: translateY(-2px); }
.up-card.is-mystery {
  background: transparent;
  border-style: dashed;
  color: var(--c-muted);
}
.up-tag {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-bull);
  margin-bottom: 16px;
}
.up-title {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.up-title em {
  font-family: var(--f-italic);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--c-copper);
}
.up-desc {
  font-size: 15px;
  line-height: 1.55;
  color: var(--c-muted);
  margin-bottom: auto;
  padding-bottom: 24px;
}
.up-foot {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding-top: 18px;
  border-top: 1px solid var(--c-rule);
  display: flex;
  justify-content: space-between;
  color: var(--c-bull);
}

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

/* ==============================================================
   PROPOSE FORM
   ============================================================== */
.propose { background: var(--c-ivory); position: relative; }
.propose::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, transparent 0, transparent 24mm, rgba(15, 36, 64, 0.025) 24mm, rgba(15, 36, 64, 0.025) 24.3mm);
  pointer-events: none;
}
.propose .section-inner { position: relative; }
.propose-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
.propose-side p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-muted);
  margin-bottom: 18px;
  max-width: 36ch;
}
.propose-side .why-list {
  margin-top: 28px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.why-list li {
  display: flex;
  gap: 12px;
  font-size: 15px;
  line-height: 1.5;
  padding-top: 12px;
  border-top: 1px solid var(--c-rule);
  color: var(--c-night);
}
.why-list li::before {
  content: "→";
  color: var(--c-copper);
  font-weight: 700;
  flex-shrink: 0;
  width: 16px;
}
form.propose-form {
  background: var(--c-night);
  color: var(--c-ivory);
  padding: clamp(28px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-radius: var(--r);
}
.form-row { display: flex; flex-direction: column; gap: 8px; }
.form-row.two { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-row label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-copper);
  font-weight: 700;
}
.form-row input, .form-row textarea {
  background: transparent;
  border: 1px solid rgba(241, 235, 222, 0.25);
  color: var(--c-ivory);
  padding: 14px 14px;
  font-family: var(--f-text);
  font-size: 16px;
  border-radius: var(--r);
  transition: border-color 0.25s, background 0.25s;
}
.form-row textarea { resize: vertical; min-height: 100px; line-height: 1.5; }
.form-row input:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--c-copper);
  background: rgba(232, 154, 74, 0.06);
}
.form-row input::placeholder, .form-row textarea::placeholder { color: rgba(241, 235, 222, 0.4); }

.form-submit {
  margin-top: 8px;
  align-self: flex-start;
}
.form-note {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(241, 235, 222, 0.5);
  margin-top: 4px;
}
.form-status {
  display: none;
  font-family: var(--f-italic);
  font-style: italic;
  font-size: 17px;
  color: var(--c-copper);
  padding: 16px;
  border-left: 2px solid var(--c-copper);
  background: rgba(232, 154, 74, 0.08);
}
.form-status.is-shown { display: block; }
.form-status.is-error { color: #f0a89a; border-color: #f0a89a; background: rgba(240, 168, 154, 0.06); }

@media (max-width: 820px) {
  .propose-grid { grid-template-columns: 1fr; }
  .form-row.two { grid-template-columns: 1fr; }
}

/* ==============================================================
   FOOTER
   ============================================================== */
.foot {
  background: var(--c-night-deep);
  color: var(--c-ivory);
  padding: clamp(56px, 8vw, 90px) var(--pad-x) 32px;
}
.foot-inner { max-width: var(--maxw); margin: 0 auto; }
.foot-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(241, 235, 222, 0.15);
}
.foot-mark {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 38px;
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--c-ivory);
  margin-bottom: 12px;
}
.foot-mark em {
  font-family: var(--f-italic);
  font-style: italic;
  font-weight: 400;
  color: var(--c-copper);
  text-transform: none;
  letter-spacing: 0;
}
.foot-tag {
  font-family: var(--f-italic);
  font-style: italic;
  font-size: 17px;
  color: rgba(241, 235, 222, 0.7);
  max-width: 32ch;
  line-height: 1.5;
}
.foot-col h4 {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-copper);
  margin-bottom: 16px;
  font-weight: 700;
}
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.foot-col a {
  font-family: var(--f-text);
  font-size: 14px;
  color: var(--c-ivory);
  opacity: 0.85;
  transition: opacity 0.2s, color 0.2s;
}
.foot-col a:hover { opacity: 1; color: var(--c-copper); }

.foot-bot {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(241, 235, 222, 0.45);
}

@media (max-width: 820px) {
  .foot-top { grid-template-columns: 1fr 1fr; }
  .foot-mark { font-size: 30px; }
}
@media (max-width: 540px) {
  .foot-top { grid-template-columns: 1fr; }
}

/* ==============================================================
   REVEAL ON SCROLL
   ============================================================== */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .record-tag .dot { animation: none; }
  html { scroll-behavior: auto; }
}

/* ==============================================================
   TEASER (coming-soon)
   ============================================================== */
body.teaser-body { background: var(--c-night); color: var(--c-ivory); }

.teaser-wrap {
  min-height: 100vh;
  background: var(--c-night);
  color: var(--c-ivory);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.teaser-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 88% 12%, rgba(232, 154, 74, 0.16), transparent 42%),
    radial-gradient(circle at 6% 92%, rgba(232, 154, 74, 0.10), transparent 38%),
    repeating-linear-gradient(90deg, transparent 0, transparent 12mm, rgba(241, 235, 222, 0.025) 12mm, rgba(241, 235, 222, 0.025) 12.3mm);
  pointer-events: none;
}

.teaser-head {
  position: relative;
  padding: 24px var(--pad-x);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(241, 235, 222, 0.55);
  z-index: 2;
}
.teaser-head .mark {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 18px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--c-ivory);
}
.teaser-head .mark em {
  font-family: var(--f-italic);
  font-style: italic;
  font-weight: 400;
  color: var(--c-copper);
  letter-spacing: 0;
  text-transform: none;
}
.teaser-head .stamp {
  display: flex;
  align-items: center;
  gap: 10px;
}
.teaser-head .stamp .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--c-copper);
  animation: pulse 2.4s ease-in-out infinite;
}

.teaser-main {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px var(--pad-x) 32px;
  z-index: 1;
}
.teaser-content {
  max-width: 760px;
  width: 100%;
  text-align: center;
}
.teaser-eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-copper);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
}
.teaser-eyebrow::before, .teaser-eyebrow::after {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--c-copper);
}
.teaser-title {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(72px, 16vw, 220px);
  line-height: 0.84;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  color: var(--c-ivory);
  margin-bottom: 18px;
}
.teaser-italic {
  font-family: var(--f-italic);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 5vw, 56px);
  line-height: 1.1;
  color: var(--c-copper);
  max-width: 22ch;
  margin: 0 auto 32px;
}
.teaser-lead {
  font-family: var(--f-text);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.6;
  color: rgba(241, 235, 222, 0.78);
  max-width: 50ch;
  margin: 0 auto 44px;
}

.teaser-form {
  max-width: 480px;
  margin: 0 auto;
  position: relative;
}
.teaser-form .field {
  display: flex;
  border: 1px solid rgba(241, 235, 222, 0.25);
  border-radius: var(--r);
  overflow: hidden;
  background: rgba(8, 22, 40, 0.55);
  transition: border-color 0.25s var(--ease), background 0.25s;
}
.teaser-form .field:focus-within {
  border-color: var(--c-copper);
  background: rgba(8, 22, 40, 0.85);
}
.teaser-form input[type="email"] {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--c-ivory);
  padding: 16px 18px;
  font-family: var(--f-text);
  font-size: 16px;
  outline: none;
  min-width: 0;
}
.teaser-form input[type="email"]::placeholder { color: rgba(241, 235, 222, 0.4); }
.teaser-form button {
  background: var(--c-copper);
  color: var(--c-night);
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0 22px;
  cursor: pointer;
  transition: background 0.2s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  white-space: nowrap;
}
.teaser-form button:hover { background: var(--c-copper-soft); }
.teaser-form button:disabled { opacity: 0.6; cursor: wait; }
.teaser-form button .arrow { font-family: var(--f-text); font-size: 14px; }

.teaser-form .note {
  margin-top: 14px;
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(241, 235, 222, 0.42);
}
.teaser-form .status {
  display: none;
  margin-top: 24px;
  font-family: var(--f-italic);
  font-style: italic;
  font-size: 18px;
  line-height: 1.4;
  color: var(--c-copper);
  padding: 16px 20px;
  border-left: 2px solid var(--c-copper);
  background: rgba(232, 154, 74, 0.08);
  text-align: left;
}
.teaser-form .status.is-shown { display: block; }
.teaser-form .status.is-error {
  color: #f0a89a;
  border-color: #f0a89a;
  background: rgba(240, 168, 154, 0.06);
}
.teaser-form.is-done .field, .teaser-form.is-done .note { display: none; }

.teaser-foot {
  position: relative;
  padding: 18px var(--pad-x) 26px;
  border-top: 1px solid rgba(241, 235, 222, 0.10);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(241, 235, 222, 0.4);
  z-index: 2;
}
.teaser-foot a { color: rgba(241, 235, 222, 0.55); transition: color 0.2s; }
.teaser-foot a:hover { color: var(--c-copper); }
.teaser-foot .lang {
  display: flex;
  gap: 2px;
  border: 1px solid rgba(241, 235, 222, 0.15);
  border-radius: var(--r);
  overflow: hidden;
}
.teaser-foot .lang a {
  padding: 5px 9px;
  color: rgba(241, 235, 222, 0.55);
  transition: background 0.2s, color 0.2s;
}
.teaser-foot .lang a:hover { color: var(--c-ivory); background: rgba(241, 235, 222, 0.08); }
.teaser-foot .lang a[aria-current="true"] {
  background: var(--c-copper);
  color: var(--c-night);
}

@media (max-width: 540px) {
  .teaser-form .field { flex-direction: column; }
  .teaser-form button { padding: 14px 22px; justify-content: center; }
  .teaser-eyebrow::before, .teaser-eyebrow::after { width: 16px; }
  .teaser-foot { justify-content: center; text-align: center; }
  .teaser-head { font-size: 9px; }
}

.teaser-foot .links {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 14px;
  align-items: center;
}
.teaser-foot .links a { color: rgba(241, 235, 222, 0.55); }
.teaser-foot .links a:hover { color: var(--c-copper); }
.teaser-foot .links .sep { color: rgba(241, 235, 222, 0.25); }

/* ==============================================================
   CONTACT PAGE
   ============================================================== */
.contact-main {
  position: relative;
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(48px, 7vw, 96px) var(--pad-x) 32px;
  z-index: 1;
}
.contact-content {
  max-width: 620px;
  width: 100%;
}
.contact-eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-copper);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}
.contact-eyebrow::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--c-copper);
}
.contact-title {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(40px, 7vw, 76px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  color: var(--c-ivory);
  margin-bottom: 16px;
}
.contact-title em {
  font-family: var(--f-italic);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--c-copper);
}
.contact-lead {
  font-family: var(--f-italic);
  font-style: italic;
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.45;
  color: var(--c-copper);
  max-width: 50ch;
  margin-bottom: 40px;
}
.contact-back {
  position: absolute;
  top: clamp(20px, 3vw, 32px);
  left: var(--pad-x);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(241, 235, 222, 0.6);
}
.contact-back:hover { color: var(--c-copper); }

.contact-form-block {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-form-block .row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-form-block .row.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.contact-form-block label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-copper);
  font-weight: 700;
}
.contact-form-block input,
.contact-form-block textarea {
  background: rgba(8, 22, 40, 0.55);
  border: 1px solid rgba(241, 235, 222, 0.22);
  color: var(--c-ivory);
  padding: 14px 16px;
  font-family: var(--f-text);
  font-size: 16px;
  border-radius: var(--r);
  transition: border-color 0.2s, background 0.2s;
}
.contact-form-block textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.5;
}
.contact-form-block input:focus,
.contact-form-block textarea:focus {
  outline: none;
  border-color: var(--c-copper);
  background: rgba(8, 22, 40, 0.85);
}
.contact-form-block input::placeholder,
.contact-form-block textarea::placeholder { color: rgba(241, 235, 222, 0.4); }

.contact-form-block .honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.contact-form-block button[type="submit"] {
  align-self: flex-start;
  margin-top: 6px;
  background: var(--c-copper);
  color: var(--c-night);
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 14px 22px;
  border-radius: var(--r);
  transition: background 0.2s, transform 0.2s;
  cursor: pointer;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.contact-form-block button[type="submit"]:hover {
  background: var(--c-copper-soft);
  transform: translateY(-1px);
}
.contact-form-block button[type="submit"]:disabled { opacity: 0.6; cursor: wait; transform: none; }

.contact-form-block .note {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(241, 235, 222, 0.42);
}

.contact-form-block .status {
  display: none;
  margin-top: 8px;
  font-family: var(--f-italic);
  font-style: italic;
  font-size: 17px;
  line-height: 1.45;
  color: var(--c-copper);
  padding: 14px 18px;
  border-left: 2px solid var(--c-copper);
  background: rgba(232, 154, 74, 0.08);
}
.contact-form-block .status.is-shown { display: block; }
.contact-form-block .status.is-error {
  color: #f0a89a;
  border-color: #f0a89a;
  background: rgba(240, 168, 154, 0.06);
}

.contact-form-block.is-done > *:not(.status) { display: none; }

@media (max-width: 540px) {
  .contact-form-block .row.two { grid-template-columns: 1fr; }
}

/* ==============================================================
   LEGAL PAGE — Bistrot dark editorial
   ============================================================== */
body.legal-body { background: var(--c-night); color: var(--c-ivory); }

.legal-wrap {
  min-height: 100vh;
  background: var(--c-night);
  color: var(--c-ivory);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.legal-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 92% 4%, rgba(232, 154, 74, 0.13), transparent 38%),
    radial-gradient(circle at 4% 96%, rgba(232, 154, 74, 0.09), transparent 36%),
    repeating-linear-gradient(90deg, transparent 0, transparent 12mm, rgba(241, 235, 222, 0.022) 12mm, rgba(241, 235, 222, 0.022) 12.3mm);
  pointer-events: none;
  z-index: 0;
}

.legal-head {
  position: relative;
  z-index: 2;
  padding: 22px var(--pad-x);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(241, 235, 222, 0.10);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(241, 235, 222, 0.55);
}
.legal-head .mark {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--c-ivory);
}
.legal-head .mark em {
  font-family: var(--f-italic);
  font-style: italic;
  font-weight: 400;
  color: var(--c-copper);
  letter-spacing: 0;
  text-transform: none;
}
.legal-head .legal-nav { display: flex; align-items: center; gap: 18px; }
.legal-head a {
  color: rgba(241, 235, 222, 0.55);
  transition: color 0.2s var(--ease, ease);
}
.legal-head a:hover { color: var(--c-copper); }
.legal-head .lang {
  display: inline-flex;
  gap: 2px;
  border: 1px solid rgba(241, 235, 222, 0.15);
  border-radius: var(--r);
  overflow: hidden;
}
.legal-head .lang a {
  padding: 5px 9px;
  letter-spacing: 0.14em;
}
.legal-head .lang a:hover { background: rgba(241, 235, 222, 0.08); color: var(--c-ivory); }
.legal-head .lang a[aria-current="true"] {
  background: var(--c-copper);
  color: var(--c-night);
}

.legal-article {
  position: relative;
  z-index: 1;
  flex: 1;
  max-width: 760px;
  width: 100%;
  margin: 0 auto;
  padding: clamp(56px, 8vw, 110px) var(--pad-x) clamp(48px, 6vw, 80px);
}

.legal-eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-copper);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.legal-eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--c-copper);
}

.legal-article h1 {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(48px, 9vw, 110px);
  line-height: 0.86;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--c-ivory);
  margin-bottom: 22px;
}
.legal-article h1 em {
  font-family: var(--f-italic);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--c-copper);
}

.legal-article .updated {
  font-family: var(--f-italic);
  font-style: italic;
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.45;
  color: var(--c-copper);
  max-width: 50ch;
  margin: 0 0 56px;
}

.legal-toc {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin: 0 0 80px;
  padding: 24px 0;
  border-top: 1px solid rgba(241, 235, 222, 0.18);
  border-bottom: 1px solid rgba(241, 235, 222, 0.18);
}
.legal-toc a {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 10px 0;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(241, 235, 222, 0.6);
  transition: color 0.2s var(--ease, ease);
}
.legal-toc a:hover { color: var(--c-copper); }
.legal-toc a span {
  color: var(--c-copper);
  font-weight: 700;
  flex-shrink: 0;
}

.legal-section {
  margin-top: clamp(56px, 7vw, 88px);
  scroll-margin-top: 24px;
}
.legal-section:first-of-type { margin-top: 0; }
.legal-section-num {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(56px, 8vw, 96px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: rgba(232, 154, 74, 0.22);
  margin-bottom: -20px;
  user-select: none;
}

.legal-article h2 {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  color: var(--c-ivory);
  margin-bottom: 20px;
}
.legal-article h2 em {
  font-family: var(--f-italic);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--c-copper);
}

.legal-article h3 {
  font-family: var(--f-italic);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.3;
  color: var(--c-copper);
  margin: 36px 0 12px;
}

.legal-article p,
.legal-article ul,
.legal-article ol {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(241, 235, 222, 0.78);
  margin-bottom: 14px;
}
.legal-article p.lead {
  font-family: var(--f-italic);
  font-style: italic;
  font-size: clamp(18px, 1.7vw, 21px);
  line-height: 1.5;
  color: var(--c-ivory);
  margin-bottom: 24px;
}
.legal-article ul,
.legal-article ol {
  padding: 0;
  list-style: none;
}
.legal-article ul li,
.legal-article ol li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
}
.legal-article ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--c-copper);
  font-weight: 700;
}
.legal-article ol { counter-reset: lr-li; }
.legal-article ol li {
  counter-increment: lr-li;
}
.legal-article ol li::before {
  content: counter(lr-li, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  color: var(--c-copper);
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.legal-article .dl {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) 2fr;
  gap: 0;
  margin-bottom: 14px;
  border-top: 1px solid rgba(241, 235, 222, 0.10);
}
.legal-article .dl > * {
  padding: 12px 0;
  border-bottom: 1px solid rgba(241, 235, 222, 0.10);
}
.legal-article .dl dt,
.legal-article .dl > .k {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-copper);
  font-weight: 700;
  padding-right: 18px;
}
.legal-article .dl dd,
.legal-article .dl > .v {
  margin: 0;
  color: var(--c-ivory);
  font-size: 16px;
  line-height: 1.5;
}

.legal-article a {
  color: var(--c-copper);
  border-bottom: 1px solid rgba(232, 154, 74, 0.4);
  transition: color 0.15s, border-color 0.15s;
}
.legal-article a:hover {
  color: var(--c-copper-soft);
  border-bottom-color: var(--c-copper-soft);
}
.legal-article strong {
  color: var(--c-ivory);
  font-weight: 600;
}
.legal-article em {
  font-family: var(--f-italic);
  font-style: italic;
  color: var(--c-copper);
}
.legal-article code {
  font-family: var(--f-mono);
  font-size: 13px;
  background: rgba(241, 235, 222, 0.06);
  padding: 1px 7px;
  border-radius: var(--r);
  color: var(--c-copper-soft);
  letter-spacing: 0;
}

.legal-article .placeholder {
  display: inline-block;
  background: rgba(232, 154, 74, 0.20);
  color: var(--c-copper-soft);
  padding: 2px 8px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  border-radius: var(--r);
  border: 1px dashed rgba(232, 154, 74, 0.45);
}

.legal-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 64px 0;
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(232, 154, 74, 0.55);
}
.legal-divider::before, .legal-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(232, 154, 74, 0.25);
}

.legal-foot {
  position: relative;
  z-index: 2;
  padding: 22px var(--pad-x) 32px;
  border-top: 1px solid rgba(241, 235, 222, 0.10);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(241, 235, 222, 0.42);
}
.legal-foot a {
  color: rgba(241, 235, 222, 0.55);
  transition: color 0.2s;
}
.legal-foot a:hover { color: var(--c-copper); }
.legal-foot .right {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .legal-toc { grid-template-columns: 1fr; }
  .legal-article .dl { grid-template-columns: 1fr; }
  .legal-article .dl dt, .legal-article .dl > .k { padding: 10px 0 4px; border-bottom: none; }
  .legal-article .dl dd, .legal-article .dl > .v { padding: 0 0 10px; }
}
