/* ==========================================================================
   L'Aube — Design System
   A year in Paris, one gentle day at a time.
   --------------------------------------------------------------------------
   Palette: dawn over Paris slate. Type: Fraunces (display & prose) + Inter (UI).
   Built for readers 55+: 18px base, generous leading, AA+ contrast throughout.
   ========================================================================== */

/* ----- Tokens ----- */
:root {
  /* Color */
  --ink: #20263a;          /* Paris slate night */
  --ink-2: #2b3149;        /* raised ink */
  --ink-soft: #3a4258;
  --paper: #fbf7f0;        /* warm cream */
  --paper-2: #f4ede1;      /* deeper cream */
  --card: #fffdf9;
  --line: #e6dcc9;         /* hairline on paper */
  --line-ink: #39415c;     /* hairline on ink */
  --gold: #b8863b;         /* dawn gold — large text & decoration on paper */
  --gold-deep: #8a6224;    /* link-safe gold, 5.2:1 on paper */
  --gold-bright: #dcae63;  /* gold on ink */
  --rose: #e5bba7;         /* dawn blush, decorative */
  --mist: #8d9bb5;         /* muted morning blue */
  --text: #2a2f42;         /* 12:1 on paper */
  --text-soft: #565d74;    /* 6.6:1 on paper */
  --text-on-ink: #f5efe3;
  --text-on-ink-soft: #c9c3b4;
  --focus: #1e5aa8;

  /* Dawn gradient — the brand horizon */
  --dawn: linear-gradient(180deg, #1f2440 0%, #33395c 34%, #6e5877 56%, #b97f6d 72%, #e0af78 86%, #f3d9a4 96%, #fbf7f0 100%);
  --dawn-flat: linear-gradient(135deg, #2b3149 0%, #4a4468 45%, #8a6a70 70%, #c9995f 100%);

  /* Type */
  --font-display: "Fraunces", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --font-ui: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --size-0: clamp(2.6rem, 6.5vw, 4.4rem);   /* hero display */
  --size-1: clamp(2rem, 4.4vw, 3rem);       /* h1 interior */
  --size-2: clamp(1.55rem, 3vw, 2.1rem);    /* h2 */
  --size-3: clamp(1.22rem, 2vw, 1.45rem);   /* h3 */
  --size-body: 1.125rem;                    /* 18px */
  --size-lede: clamp(1.22rem, 2vw, 1.4rem);
  --size-small: 0.94rem;
  --leading: 1.72;

  /* Rhythm */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.75rem;
  --space-4: 3rem;
  --space-5: 5rem;
  --space-6: 7.5rem;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-1: 0 1px 2px rgba(32, 38, 58, 0.06), 0 8px 28px rgba(32, 38, 58, 0.09);
  --shadow-2: 0 2px 6px rgba(32, 38, 58, 0.08), 0 22px 60px rgba(32, 38, 58, 0.16);
  --wrap: 72rem;
  --wrap-text: 44rem;
}

/* ----- Reset & base ----- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--font-ui);
  font-size: var(--size-body);
  line-height: var(--leading);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 560;
  line-height: 1.14;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 0 0 var(--space-2);
  text-wrap: balance;
}
h1 { font-size: var(--size-1); }
h2 { font-size: var(--size-2); }
h3 { font-size: var(--size-3); }
p { margin: 0 0 var(--space-2); }
a { color: var(--gold-deep); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--ink); }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; border-radius: 3px; }
::selection { background: var(--rose); color: var(--ink); }

.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 2.5rem); }
.wrap-text { max-width: var(--wrap-text); margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 2.5rem); }
.center { text-align: center; }
.lede { font-size: var(--size-lede); line-height: 1.55; color: var(--text-soft); font-weight: 400; text-wrap: pretty; }
.small { font-size: var(--size-small); color: var(--text-soft); }
.eyebrow {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 var(--space-2);
}
.rule { border: 0; border-top: 1px solid var(--line); margin: var(--space-4) 0; }
.rule-gold { border: 0; width: 64px; border-top: 2px solid var(--gold); margin: var(--space-3) auto; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--ink); color: var(--text-on-ink); padding: 0.8rem 1.2rem; border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; }

/* ----- Header / nav ----- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 247, 240, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-header.on-dark {
  background: rgba(31, 36, 64, 0.72);
  border-bottom: 1px solid rgba(230, 220, 201, 0.14);
}
.nav {
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-2);
  min-height: 4.4rem;
}
.brand {
  font-family: var(--font-display); font-style: italic; font-weight: 600;
  font-size: 1.55rem; letter-spacing: 0.01em;
  color: var(--ink); text-decoration: none; display: inline-flex; align-items: baseline; gap: 0.55rem;
}
.brand .mark { width: 26px; height: 26px; align-self: center; }
.on-dark .brand { color: var(--text-on-ink); }
.nav-links { display: flex; align-items: center; gap: clamp(0.8rem, 2vw, 1.6rem); list-style: none; margin: 0; padding: 0; }
.nav-links a {
  font-size: 1rem; font-weight: 530; color: var(--text); text-decoration: none; white-space: nowrap;
  padding: 0.4rem 0.1rem; border-bottom: 2px solid transparent;
}
.on-dark .nav-links a { color: var(--text-on-ink); }
.nav-links a:hover { border-bottom-color: var(--gold); color: var(--ink); }
.on-dark .nav-links a:hover { color: #fff; border-bottom-color: var(--gold-bright); }
.nav-links a[aria-current="page"] { border-bottom-color: var(--gold); }
.nav-toggle {
  display: none; background: none; border: 1px solid var(--line); border-radius: 10px;
  padding: 0.5rem 0.7rem; cursor: pointer; color: inherit;
}
@media (max-width: 1080px) {
  .nav-toggle { display: inline-flex; align-items: center; gap: 0.5rem; font: inherit; }
  .nav-links {
    display: none; position: absolute; inset: 100% 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--card); border-bottom: 1px solid var(--line); box-shadow: var(--shadow-1);
    padding: 0.5rem 0;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.9rem clamp(1.25rem, 4vw, 2.5rem); border-bottom: 0; }
  .nav-links .btn { margin: 0.6rem clamp(1.25rem, 4vw, 2.5rem) 0.8rem; text-align: center; }
}

/* ----- Buttons ----- */
.btn {
  display: inline-block; font-family: var(--font-ui); font-weight: 620; font-size: 1.02rem;
  padding: 0.85rem 1.7rem; border-radius: 999px; text-decoration: none; cursor: pointer;
  border: 1.5px solid transparent; transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--ink); color: var(--text-on-ink); box-shadow: var(--shadow-1); }
.btn-primary:hover { background: var(--ink-2); color: #fff; box-shadow: var(--shadow-2); }
.btn-gold { background: linear-gradient(120deg, var(--gold) 0%, var(--gold-bright) 100%); color: #241c0d; box-shadow: var(--shadow-1); }
.btn-gold:hover { color: #241c0d; box-shadow: var(--shadow-2); }
.btn-ghost { border-color: var(--line); color: var(--ink); background: transparent; }
.btn-ghost:hover { border-color: var(--gold); color: var(--ink); }
.on-dark .btn-ghost, .btn-ghost.on-dark { border-color: rgba(245, 239, 227, 0.4); color: var(--text-on-ink); }
.on-dark .btn-ghost:hover { border-color: var(--gold-bright); color: #fff; }
.btn-lg { padding: 1.05rem 2.2rem; font-size: 1.12rem; }

/* ----- Hero ----- */
.hero-dawn {
  position: relative; color: var(--text-on-ink);
  background: var(--dawn);
  padding: clamp(4rem, 10vw, 8rem) 0 clamp(5rem, 11vw, 9rem);
  overflow: hidden;
}
.hero-dawn::after { /* film grain */
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.5; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.28'/%3E%3C/svg%3E");
}
.hero-dawn > .wrap { position: relative; z-index: 1; }
.hero-dawn h1 {
  font-size: var(--size-0); color: #fff; font-weight: 480; margin-bottom: var(--space-2);
}
.hero-dawn h1 em { font-style: italic; color: #f7dfae; }
.hero-dawn .lede { color: rgba(245, 239, 227, 0.92); max-width: 38rem; }
.hero-kicker {
  font-size: 0.85rem; font-weight: 650; letter-spacing: 0.18em; text-transform: uppercase;
  color: #f0cf95; margin-bottom: var(--space-2);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--space-2); margin-top: var(--space-3); align-items: center; }
.hero-note { font-size: var(--size-small); color: rgba(245, 239, 227, 0.75); margin-top: var(--space-2); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); gap: clamp(2rem, 6vw, 5rem); align-items: center; }
@media (max-width: 960px) { .hero-grid { grid-template-columns: 1fr; } }

/* ----- Sections ----- */
.section { padding: var(--space-6) 0; }
.section-tight { padding: var(--space-5) 0; }
.section-ink { background: var(--ink); color: var(--text-on-ink); }
.section-ink h2, .section-ink h3 { color: var(--text-on-ink); }
.section-ink .lede, .section-ink p { color: var(--text-on-ink-soft); }
.section-ink .eyebrow { color: var(--gold-bright); }
.section-paper2 { background: var(--paper-2); }
.section-head { max-width: 46rem; margin-bottom: var(--space-4); }
.section-head.center { margin-inline: auto; }

/* ----- Cards & grids ----- */
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--space-3); }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--space-3); }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: var(--space-3); }
@media (max-width: 960px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: var(--space-3); box-shadow: var(--shadow-1);
}
.card h3 { margin-top: var(--space-1); }
.card .icon { width: 44px; height: 44px; color: var(--gold); }
.card-quiet { background: transparent; box-shadow: none; }
.section-ink .card { background: var(--ink-2); border-color: var(--line-ink); box-shadow: none; }
.section-ink .card h3 { color: var(--text-on-ink); }
.section-ink .card p { color: var(--text-on-ink-soft); }

/* ----- Feature rows ----- */
.feature-row {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 5rem); align-items: center; padding: var(--space-4) 0;
}
.feature-row + .feature-row { border-top: 1px solid var(--line); }
.feature-row.flip > .feature-media { order: 2; }
@media (max-width: 900px) {
  .feature-row, .feature-row.flip > .feature-media { grid-template-columns: 1fr; order: 0; }
}
.feature-media { border-radius: var(--radius-lg); overflow: hidden; }

/* ----- Phone mockup (pure CSS rendering of the Today ritual) ----- */
.phone {
  width: min(340px, 88vw); margin-inline: auto;
  background: #101322; border-radius: 44px; padding: 12px;
  box-shadow: var(--shadow-2), inset 0 0 0 2px rgba(255,255,255,0.06);
}
.phone-screen {
  background: var(--paper); border-radius: 34px; overflow: hidden;
  padding: 1.4rem 1.15rem 1.3rem; min-height: 560px;
  font-size: 0.86rem; line-height: 1.5;
}
.phone-date { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-soft); }
.phone-greet { font-family: var(--font-display); font-size: 1.7rem; font-weight: 560; color: var(--ink); margin: 0.2rem 0 0.9rem; }
.phone-card {
  background: var(--card); border: 1px solid var(--line); border-radius: 16px;
  padding: 0.85rem 0.95rem; margin-bottom: 0.7rem; box-shadow: 0 1px 2px rgba(32,38,58,0.05);
}
.phone-card .k { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; color: var(--gold-deep); display: block; margin-bottom: 0.28rem; }
.phone-card .fr { font-family: var(--font-display); font-style: italic; font-size: 1.02rem; color: var(--ink); }
.phone-card .en { color: var(--text-soft); font-size: 0.8rem; }
.phone-song { display: flex; align-items: center; gap: 0.7rem; }
.phone-song .disc {
  width: 38px; height: 38px; border-radius: 50%; flex: none;
  background: radial-gradient(circle at 34% 32%, #f3d9a4 0 18%, #2b3149 19% 100%);
}
.phone-quest { border-left: 3px solid var(--gold); }
.phone-quest .t { font-family: var(--font-display); font-size: 1.06rem; font-weight: 600; color: var(--ink); margin-bottom: 0.2rem; }
.phone-cta {
  display: inline-block; margin-top: 0.55rem; background: var(--ink); color: var(--text-on-ink);
  font-weight: 640; font-size: 0.8rem; border-radius: 999px; padding: 0.5rem 1rem;
}
.phone-caption { text-align: center; margin-top: var(--space-2); }

/* ----- Quote block ----- */
.quoteblock {
  max-width: 46rem; margin: 0 auto; text-align: center; padding: var(--space-4) 0;
}
.quoteblock .fr {
  font-family: var(--font-display); font-style: italic; font-weight: 480;
  font-size: clamp(1.5rem, 3.4vw, 2.2rem); line-height: 1.35; color: var(--ink);
}
.section-ink .quoteblock .fr { color: #f7dfae; }
.quoteblock .en { color: var(--text-soft); margin-top: var(--space-2); }
.section-ink .quoteblock .en { color: var(--text-on-ink-soft); }
.quoteblock cite { display: block; margin-top: var(--space-2); font-style: normal; font-size: var(--size-small); letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold-deep); }
.section-ink .quoteblock cite { color: var(--gold-bright); }

/* ----- Steps (how it works) ----- */
.steps { counter-reset: step; list-style: none; margin: 0; padding: 0; display: grid; gap: var(--space-3); }
.steps > li { position: relative; padding-left: 4.2rem; }
.steps > li::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  position: absolute; left: 0; top: 0.1rem;
  font-family: var(--font-display); font-size: 1.9rem; font-weight: 500; color: var(--gold);
}
.steps h3 { margin-bottom: 0.35rem; }

/* ----- Pricing ----- */
.price-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--space-3); max-width: 56rem; margin-inline: auto; align-items: stretch; }
@media (max-width: 760px) { .price-grid { grid-template-columns: 1fr; } }
.price-card { position: relative; display: flex; flex-direction: column; }
.price-card .amount { font-family: var(--font-display); font-size: 3rem; font-weight: 560; color: var(--ink); line-height: 1; }
.price-card .amount span { font-family: var(--font-ui); font-size: 1rem; color: var(--text-soft); font-weight: 480; }
.price-card ul { list-style: none; margin: var(--space-2) 0 var(--space-3); padding: 0; display: grid; gap: 0.6rem; }
.price-card li { padding-left: 1.7rem; position: relative; }
.price-card li::before { content: "✓"; position: absolute; left: 0; color: var(--gold-deep); font-weight: 700; }
.price-card .btn { margin-top: auto; text-align: center; }
.price-flag {
  position: absolute; top: -0.95rem; left: 50%; transform: translateX(-50%);
  background: var(--ink); color: var(--gold-bright); font-size: 0.76rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; padding: 0.35rem 1rem; border-radius: 999px; white-space: nowrap;
}
.price-card.featured { border-color: var(--gold); box-shadow: var(--shadow-2); }

/* ----- FAQ ----- */
.faq { max-width: var(--wrap-text); margin-inline: auto; }
.faq details { border-bottom: 1px solid var(--line); padding: 0.35rem 0; }
.faq summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
  font-family: var(--font-display); font-size: 1.22rem; font-weight: 580; color: var(--ink); padding: 0.9rem 0;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--font-ui); color: var(--gold-deep); font-size: 1.4rem; line-height: 1; transition: transform 160ms ease; flex: none; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .faq-a { padding: 0 0 var(--space-2); color: var(--text-soft); max-width: 40rem; }

/* ----- Blog ----- */
.post-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--space-3); }
@media (max-width: 760px) { .post-list { grid-template-columns: 1fr; } }
.post-card { display: flex; flex-direction: column; text-decoration: none; color: inherit; transition: transform 160ms ease, box-shadow 160ms ease; }
.post-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); color: inherit; }
.post-card .post-tag { font-size: 0.78rem; font-weight: 680; letter-spacing: 0.13em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 0.5rem; }
.post-card h3 { font-size: 1.4rem; }
.post-card .post-meta { margin-top: auto; padding-top: var(--space-2); font-size: var(--size-small); color: var(--text-soft); }
.post-hero { background: var(--dawn-flat); color: var(--text-on-ink); padding: var(--space-5) 0 var(--space-4); }
.post-hero h1 { color: #fff; max-width: 46rem; }
.post-hero .post-meta { color: rgba(245, 239, 227, 0.8); font-size: var(--size-small); }
.prose { max-width: var(--wrap-text); margin-inline: auto; font-family: var(--font-display); font-size: 1.19rem; line-height: 1.78; }
.prose p, .prose li { color: var(--text); }
.prose h2 { margin-top: var(--space-4); font-size: 1.75rem; }
.prose h3 { margin-top: var(--space-3); font-size: 1.35rem; }
.prose ul, .prose ol { padding-left: 1.4rem; }
.prose li { margin-bottom: 0.55rem; }
.prose blockquote {
  margin: var(--space-3) 0; padding: 0.4rem 0 0.4rem 1.4rem; border-left: 3px solid var(--gold);
  font-style: italic; color: var(--ink-soft);
}
.prose .dropcap::first-letter {
  font-size: 3.4em; float: left; line-height: 0.82; padding: 0.06em 0.12em 0 0; color: var(--gold-deep); font-weight: 560;
}
.prose table { width: 100%; border-collapse: collapse; font-family: var(--font-ui); font-size: 1rem; margin: var(--space-3) 0; }
.prose th, .prose td { text-align: left; padding: 0.65rem 0.8rem; border-bottom: 1px solid var(--line); vertical-align: top; }
.prose th { font-weight: 660; color: var(--ink); }
.prose .note {
  font-family: var(--font-ui); font-size: 0.98rem; background: var(--paper-2); border: 1px solid var(--line);
  border-radius: var(--radius); padding: var(--space-2) var(--space-3); color: var(--text-soft); margin: var(--space-3) 0;
}
.post-footer-cta { margin-top: var(--space-5); }

/* ----- Callout band ----- */
.band {
  background: var(--dawn-flat); color: var(--text-on-ink); border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3.6rem); text-align: center; box-shadow: var(--shadow-2);
}
.band h2 { color: #fff; }
.band p { color: rgba(245, 239, 227, 0.88); max-width: 36rem; margin-inline: auto; }

/* ----- Footer ----- */
.site-footer { background: var(--ink); color: var(--text-on-ink-soft); padding: var(--space-5) 0 var(--space-4); margin-top: var(--space-6); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--space-4); }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer .brand { color: var(--text-on-ink); font-size: 1.7rem; }
.footer-tag { margin-top: var(--space-2); max-width: 20rem; }
.footer-col h4 { color: var(--text-on-ink); font-family: var(--font-ui); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: var(--space-2); }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.55rem; }
.footer-col a { color: var(--text-on-ink-soft); text-decoration: none; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: var(--space-2); justify-content: space-between; align-items: center;
  border-top: 1px solid var(--line-ink); margin-top: var(--space-4); padding-top: var(--space-3); font-size: var(--size-small);
}
.footer-quote { font-family: var(--font-display); font-style: italic; color: var(--gold-bright); }

/* ----- App Store badge (text-drawn, replace with official asset when live) ----- */
.store-badge {
  display: inline-flex; align-items: center; gap: 0.7rem; text-decoration: none;
  background: #000; color: #fff; border: 1px solid #3a3a3a; border-radius: 12px; padding: 0.55rem 1.1rem;
}
.store-badge:hover { color: #fff; border-color: #777; }
.store-badge .apple { width: 24px; height: 24px; }
.store-badge .lines { display: flex; flex-direction: column; line-height: 1.15; text-align: left; }
.store-badge .lines .top { font-size: 0.66rem; letter-spacing: 0.02em; }
.store-badge .lines .bottom { font-size: 1.05rem; font-weight: 640; }

/* ----- Reveal on scroll ----- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 640ms ease, transform 640ms ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ----- Utility ----- */
.mt-0 { margin-top: 0; } .mt-2 { margin-top: var(--space-2); } .mt-3 { margin-top: var(--space-3); } .mt-4 { margin-top: var(--space-4); }
.mb-0 { margin-bottom: 0; }
.badge-line { display: flex; flex-wrap: wrap; gap: var(--space-2); align-items: center; }
.checklist { list-style: none; padding: 0; margin: var(--space-2) 0; display: grid; gap: 0.7rem; }
.checklist li { padding-left: 1.8rem; position: relative; }
.checklist li::before { content: "✓"; position: absolute; left: 0; color: var(--gold-deep); font-weight: 700; }
.section-ink .checklist li::before { color: var(--gold-bright); }
.kbd-fr {
  font-family: var(--font-display); font-style: italic; background: var(--paper-2);
  border: 1px solid var(--line); border-radius: 8px; padding: 0.05rem 0.5rem; white-space: nowrap;
}
.breadcrumbs { font-size: var(--size-small); margin: var(--space-3) 0 0; }
.breadcrumbs a { color: var(--text-soft); }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 0.4rem; margin: 0; padding: 0; }
.breadcrumbs li + li::before { content: "›"; margin-right: 0.4rem; color: var(--text-soft); }

/* ----- Plan de Paris (schematic arrondissement map) ----- */
.paris-map-figure { margin: 0; }
.paris-map {
  display: block; width: 100%; height: auto;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-1);
}
.paris-map .city { fill: var(--paper-2); stroke: var(--gold); stroke-width: 1.1; stroke-opacity: 0.55; }
.paris-map .seine { fill: none; stroke: var(--mist); stroke-width: 8; stroke-linecap: round; opacity: 0.45; }
.paris-map .seine-edge { fill: none; stroke: var(--mist); stroke-width: 1; opacity: 0.5; }
.paris-map .ile { fill: var(--card); stroke: var(--mist); stroke-width: 1; opacity: 0.9; }
.paris-map .spiral { fill: none; stroke: var(--gold); stroke-width: 1.4; stroke-dasharray: 1.5 8; stroke-linecap: round; opacity: 0.35; }
.paris-map .arr circle {
  fill: var(--card); stroke: var(--gold); stroke-width: 1.2;
  transition: fill 180ms ease, stroke 180ms ease, transform 180ms ease;
}
.paris-map .arr text {
  font-family: var(--font-display); font-style: italic; font-size: 14px; font-weight: 600;
  fill: var(--ink); text-anchor: middle; pointer-events: none;
  transition: fill 180ms ease;
}
.paris-map .arr:hover circle { fill: var(--gold-bright); stroke: var(--gold-deep); }
.paris-map .arr:hover text { fill: #241c0d; }
.paris-map .arr-home circle { fill: var(--rose); stroke: var(--gold-deep); }
.paris-map .arr-home .halo { fill: none; stroke: var(--gold); stroke-width: 1; opacity: 0.6; }
.paris-map-figure figcaption { margin-top: 0.8rem; font-size: var(--size-small); color: var(--text-soft); }
.paris-map-figure figcaption .dot { color: var(--rose); }

/* ----- Horizon divider (signature rule between sections) ----- */
.horizon-rule {
  border: 0; height: 2px; margin: 0 auto; max-width: var(--wrap); width: calc(100% - 3rem);
  background: linear-gradient(90deg, transparent 0%, var(--rose) 18%, var(--gold-bright) 50%, var(--rose) 82%, transparent 100%);
  opacity: 0.65; border-radius: 2px;
}

/* ----- Homepage polish ----- */
@keyframes phone-drift { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
.phone-float { animation: phone-drift 7s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce) { .phone-float { animation: none; } }

.card { transition: transform 200ms ease, box-shadow 200ms ease; position: relative; }
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow-2); }
.card::before {
  content: ""; position: absolute; inset: 0 auto auto 0; height: 2px; width: 100%;
  background: linear-gradient(90deg, var(--gold) 0%, var(--rose) 100%);
  transform: scaleX(0); transform-origin: left; transition: transform 260ms ease;
}
.card:hover::before { transform: scaleX(1); }
.card-quiet::before { display: none; }

.step-no {
  display: block; font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: 1.05rem; color: var(--gold-deep); letter-spacing: 0.06em; margin-bottom: 0.3rem;
}

.quoteblock { position: relative; }
.quoteblock::before {
  content: "\00AB"; position: absolute; top: 0.4em; left: 50%; transform: translateX(-50%);
  font-family: var(--font-display); font-size: 9rem; line-height: 1; color: var(--rose);
  opacity: 0.16; pointer-events: none;
}
.section-ink .quoteblock::before { opacity: 0.12; }

.band { position: relative; overflow: hidden; }
.band::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.4; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.28'/%3E%3C/svg%3E");
}
.band > * { position: relative; z-index: 1; }

/* Reveal stagger inside grids */
.grid-2 > .reveal:nth-child(2), .grid-3 > .reveal:nth-child(2), .grid-4 > .reveal:nth-child(2) { transition-delay: 90ms; }
.grid-3 > .reveal:nth-child(3), .grid-4 > .reveal:nth-child(3) { transition-delay: 180ms; }
.grid-4 > .reveal:nth-child(4) { transition-delay: 270ms; }

/* ----- Antoine cameo ----- */
.cameo { display: block; height: auto; }
.cameo-hero { width: 150px; margin: 0 auto var(--space-3); }
.cameo-inline { width: 58px; flex: none; }
.card-head { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 0.4rem; }
.card-head .eyebrow { margin-bottom: 0; }

/* ----- Mobile refinements ----- */
.prose table { display: block; overflow-x: auto; }
@media (max-width: 640px) {
  .steps > li { padding-left: 2.9rem; }
  .steps > li::before { font-size: 1.45rem; }
  .price-flag { font-size: 0.66rem; padding: 0.3rem 0.65rem; }
  .phone { width: min(300px, 85vw); }
  .band { padding: 1.8rem 1.25rem; }
  .quoteblock .fr { font-size: 1.32rem; }
  .hero-dawn { padding-top: 3.2rem; }
  .footer-bottom { justify-content: center; text-align: center; }
}

/* Layer quote text above the watermark; long links never overflow */
.quoteblock > * { position: relative; }
.prose a, .faq-a a { overflow-wrap: anywhere; }
.paris-map-figure figcaption { line-height: 1.5; }
.card::before { z-index: 1; }
