/* ============================================
   AERIE WUHRLIN — EDITORIAL STYLESHEET
   Design: ultra-refined, elegant, timeless
   ============================================ */

:root {
  --ivory: #f5f2ec;
  --cream: #efece4;
  --paper: #faf8f4;
  --ink: #1a1a1a;
  --ink-soft: #2b2a28;
  --muted: #6b685f;
  --line: rgba(26, 26, 26, 0.12);
  --line-soft: rgba(26, 26, 26, 0.06);
  --gold: #967d50;
  --shadow: 0 30px 80px -30px rgba(26, 26, 26, 0.25);
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 248, 244, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line-soft);
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.monogram {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--ink);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-menu a {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--ink-soft);
  transition: color 0.3s;
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--ink);
  transition: width 0.4s var(--ease);
}

.nav-menu a:hover::after {
  width: 100%;
}

/* ============================================
   HERO
   ============================================ */

.hero {
  min-height: 100vh;
  padding: 140px 48px 80px;
  display: flex;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}

.hero-text {
  padding-right: 40px;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 32px;
}

.hero-name {
  font-family: var(--serif);
  font-size: clamp(72px, 10vw, 148px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 40px;
}

.hero-name em {
  font-style: italic;
  font-weight: 300;
  color: var(--ink-soft);
}

.hero-lede {
  font-family: var(--serif);
  font-size: 24px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.4;
  color: var(--muted);
  margin-bottom: 48px;
  max-width: 400px;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
  transition: gap 0.4s var(--ease);
}

.link-arrow:hover {
  gap: 20px;
}

.arrow {
  font-family: var(--serif);
  font-size: 18px;
}

.hero-image {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(15%) contrast(1.02);
  transition: transform 1.2s var(--ease);
}

.hero-image:hover img {
  transform: scale(1.03);
}

.hero-caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--paper);
  background: rgba(26, 26, 26, 0.6);
  padding: 6px 12px;
  backdrop-filter: blur(10px);
}

/* ============================================
   SECTIONS GÉNÉRIQUES
   ============================================ */

.section {
  padding: 140px 48px;
  max-width: 1400px;
  margin: 0 auto;
}

.section.dark {
  background: var(--ink);
  color: var(--ivory);
  max-width: none;
  margin: 0;
  padding: 140px 48px;
}

.two-col {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 80px;
}

.col-label {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.section-num {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
}

.section-num.light {
  color: var(--ivory);
  opacity: 0.6;
}

.section-label {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
}

.serif-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 32px;
}

.serif-title em {
  font-style: italic;
  color: var(--gold);
}

.lead {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 20px;
  max-width: 640px;
}

.meta-line {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

.meta-line .dot {
  color: var(--gold);
}

/* ============================================
   SECTION TITLE BLOCK
   ============================================ */

.section-title-block {
  text-align: center;
  margin-bottom: 80px;
}

.section-title-block .section-num {
  display: block;
  margin-bottom: 16px;
}

.display {
  font-family: var(--serif);
  font-size: clamp(56px, 8vw, 96px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 16px;
}

.dark .display { color: var(--ivory); }

.subtitle {
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  font-weight: 300;
  color: var(--muted);
}

.dark .subtitle { color: rgba(245, 242, 236, 0.6); }

/* ============================================
   UNIVERS
   ============================================ */

.univers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.univers-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.univers-img {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #222;
}

.univers-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(25%);
  transition: transform 1.2s var(--ease), filter 0.6s;
}

.univers-card:hover .univers-img img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

.univers-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.num-small {
  font-family: var(--serif);
  font-size: 14px;
  font-style: italic;
  color: rgba(245, 242, 236, 0.5);
  letter-spacing: 0.1em;
}

.univers-card h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--ivory);
  letter-spacing: -0.01em;
}

.univers-card p {
  font-size: 14px;
  color: rgba(245, 242, 236, 0.65);
  line-height: 1.6;
  max-width: 280px;
}

/* ============================================
   GALERIE
   ============================================ */

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  grid-auto-rows: 280px;
}

.gal-item {
  overflow: hidden;
  position: relative;
  background: #eee;
}

.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}

.gal-item:hover img {
  transform: scale(1.06);
}

.gal-item figcaption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-family: var(--serif);
  font-size: 13px;
  font-style: italic;
  color: var(--paper);
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.4s var(--ease);
  background: rgba(26, 26, 26, 0.7);
  padding: 6px 12px;
  backdrop-filter: blur(8px);
}

.gal-item:hover figcaption {
  opacity: 1;
  transform: translateY(0);
}

.gal-tall { grid-row: span 2; }
.gal-wide { grid-column: span 2; }

/* ============================================
   PULL QUOTE
   ============================================ */

.pull-quote {
  padding: 160px 48px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.pull-quote::before,
.pull-quote::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60px;
  background: var(--line);
}

.pull-quote::before { top: 0; }
.pull-quote::after { bottom: 0; }

.pull-quote blockquote {
  font-family: var(--serif);
  font-size: clamp(28px, 3.8vw, 44px);
  font-style: italic;
  font-weight: 300;
  line-height: 1.4;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 32px;
  position: relative;
}

.quote-mark {
  font-family: var(--serif);
  font-size: 90px;
  color: var(--gold);
  display: block;
  line-height: 0.5;
  margin-bottom: 24px;
  font-style: normal;
}

.pull-quote cite {
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  font-style: normal;
}

/* ============================================
   JOURNAL
   ============================================ */

.journal-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.journal-item {
  display: grid;
  grid-template-columns: 160px 1fr auto;
  gap: 40px;
  align-items: center;
  padding: 40px 0;
  border-top: 1px solid var(--line);
  transition: background 0.3s;
  position: relative;
}

.journal-item:last-child {
  border-bottom: 1px solid var(--line);
}

.journal-item:hover {
  padding-left: 16px;
}

.j-date {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: none;
}

.journal-item h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
  color: var(--ink);
}

.journal-item p {
  font-size: 15px;
  color: var(--muted);
  max-width: 520px;
}

.journal-item .read-more {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  transition: letter-spacing 0.4s;
}

.journal-item:hover .read-more {
  letter-spacing: 0.3em;
}

/* ============================================
   CONTACT
   ============================================ */

.contact-section {
  background: var(--cream);
  max-width: none;
  margin: 0;
  padding: 140px 48px;
}

.contact-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.contact-inner .section-num {
  display: block;
  margin-bottom: 16px;
}

.contact-lede {
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  color: var(--muted);
  margin: 24px 0 56px;
  line-height: 1.5;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.contact-form label {
  display: block;
}

.contact-form label span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 17px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.3s;
  resize: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-bottom-color: var(--ink);
}

.btn-elegant {
  align-self: center;
  margin-top: 24px;
  padding: 16px 48px;
  background: var(--ink);
  color: var(--paper);
  border: none;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  font-weight: 400;
}

.btn-elegant:hover {
  background: var(--gold);
  letter-spacing: 0.35em;
}

.contact-alt {
  margin-top: 48px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--muted);
}

.contact-alt a {
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  transition: border-color 0.3s;
}

.contact-alt a:hover {
  border-bottom-color: var(--ink);
}

/* ============================================
   NEWSLETTER
   ============================================ */

.newsletter-section {
  background: var(--ink);
  color: var(--ivory);
  padding: 140px 48px;
  text-align: center;
}

.newsletter-inner {
  max-width: 640px;
  margin: 0 auto;
}

.newsletter-section .eyebrow {
  color: var(--gold);
}

.newsletter-section .serif-title {
  color: var(--ivory);
  margin-bottom: 16px;
}

.newsletter-section .serif-title em {
  color: var(--gold);
}

.newsletter-section .contact-lede {
  color: rgba(245, 242, 236, 0.75);
  margin-bottom: 40px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
  max-width: 480px;
  margin: 0 auto 20px;
  flex-wrap: wrap;
  align-items: stretch;
}

.newsletter-form input {
  flex: 1;
  min-width: 220px;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(245, 242, 236, 0.15);
  color: var(--ivory);
  font-family: var(--serif);
  font-size: 16px;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
}

.newsletter-form input::placeholder {
  color: rgba(245, 242, 236, 0.4);
}

.newsletter-form input:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.1);
}

.newsletter-form button {
  background: var(--gold);
  color: var(--ink);
  border: none;
  padding: 14px 32px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  font-weight: 500;
}

.newsletter-form button:hover {
  background: var(--ivory);
  letter-spacing: 0.3em;
}

.newsletter-micro {
  font-size: 12px;
  color: rgba(245, 242, 236, 0.5);
  letter-spacing: 0.1em;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--ink);
  color: var(--ivory);
  padding: 80px 48px 40px;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
}

.monogram-large {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--ivory);
}

.footer-meta {
  display: flex;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245, 242, 236, 0.5);
  justify-self: center;
}

.footer-social {
  display: flex;
  gap: 24px;
  justify-self: end;
}

.footer-social a {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 242, 236, 0.7);
  transition: color 0.3s;
}

.footer-social a:hover {
  color: var(--ivory);
}

/* ============================================
   KPI HERO (page partenaires)
   ============================================ */

.kpi-hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  background: var(--ink);
  color: var(--ivory);
  border: 1px solid var(--ink);
}

.kpi {
  padding: 56px 32px;
  text-align: center;
  border-right: 1px solid rgba(245, 242, 236, 0.1);
}

.kpi:last-child { border-right: none; }

.kpi-value {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 400;
  font-style: italic;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.kpi-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 242, 236, 0.7);
}

@media (max-width: 700px) {
  .kpi { border-right: none; border-bottom: 1px solid rgba(245,242,236,0.1); }
  .kpi:last-child { border-bottom: none; }
}

/* ============================================
   WORKS GRID (publique)
   ============================================ */

.works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.work-card {
  background: #fff;
  border: 1px solid var(--line);
  cursor: pointer;
  transition: all 0.4s var(--ease);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.work-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -30px rgba(26, 26, 26, 0.2);
}

.work-img {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--cream);
}

.work-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}

.work-card:hover .work-img img {
  transform: scale(1.05);
}

.work-body {
  padding: 28px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.work-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.work-cat {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.work-year {
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
  color: var(--muted);
}

.work-card h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  line-height: 1.2;
}

.work-card p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 16px;
  flex: 1;
}

.work-link {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  padding-bottom: 4px;
  display: inline-block;
  align-self: flex-start;
  transition: border-color 0.3s;
}

.work-card:hover .work-link {
  border-bottom-color: var(--gold);
}

/* WORK MODAL */
.work-modal-img {
  margin: -56px -48px 32px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.work-modal-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-modal-meta {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 16px;
}

.work-modal-desc {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 24px 0 32px;
}

/* FILTER PILLS */
.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 24px;
}

.filter-pill {
  padding: 8px 18px;
  background: transparent;
  border: 1px solid var(--line);
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.3s;
}

.filter-pill:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.filter-pill.active {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

/* ============================================
   COUPONS
   ============================================ */

.coupons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.coupon-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  transition: all 0.4s var(--ease);
  overflow: hidden;
}

.coupon-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--gold), #6e5a3a, var(--gold));
}

.coupon-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -30px rgba(150, 125, 80, 0.4);
}

.coupon-img {
  margin: -40px -32px 24px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.coupon-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.coupon-discount {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--ink), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.coupon-card h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.coupon-desc {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 24px;
  flex: 1;
}

.coupon-code-row {
  margin-bottom: 16px;
}

.coupon-code {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--ink);
  color: var(--paper);
  border: 1px dashed var(--gold);
  font-family: 'Courier New', monospace;
  cursor: pointer;
  transition: all 0.3s;
}

.coupon-code:hover {
  background: var(--gold);
  color: var(--ink);
}

.code-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.7;
  font-family: var(--sans);
}

.code-value {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
}

.code-action {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: var(--sans);
  opacity: 0.8;
}

.coupon-meta {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
  font-family: var(--serif);
}

.coupon-meta .dot {
  color: var(--gold);
}

/* ============================================
   TOAST (public)
   ============================================ */

.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--ink);
  color: var(--paper);
  padding: 14px 28px;
  font-size: 14px;
  letter-spacing: 0.05em;
  border: 1px solid var(--gold);
  z-index: 200;
  opacity: 0;
  transition: all 0.3s var(--ease);
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ============================================
   COOKIE BANNER
   ============================================ */

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 520px;
  margin: 0 auto;
  background: var(--ink);
  color: var(--ivory);
  padding: 28px 32px;
  z-index: 1000;
  border: 1px solid var(--gold);
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.5);
  transform: translateY(150%);
  transition: transform 0.5s var(--ease);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 8px;
  color: var(--ivory);
}

.cookie-banner p {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(245, 242, 236, 0.8);
  margin-bottom: 20px;
}

.cookie-banner p a {
  color: var(--gold);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 10px 20px;
  border: 1px solid rgba(245, 242, 236, 0.3);
  background: transparent;
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}

.cookie-btn:hover {
  border-color: var(--ivory);
}

.cookie-btn.primary {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

.cookie-btn.primary:hover {
  background: var(--ivory);
  border-color: var(--ivory);
}

/* ============================================
   ACCOUNT WIDGET (sur coupons.html)
   ============================================ */

.account-bar {
  background: var(--ink);
  color: var(--ivory);
  padding: 16px 32px;
  margin-top: 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.account-info {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
}

.account-info strong {
  color: var(--gold);
  font-style: normal;
  font-weight: 500;
}

.account-actions {
  display: flex;
  gap: 8px;
}

.account-btn {
  padding: 8px 16px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}

.account-btn:hover {
  background: var(--gold);
  color: var(--ink);
}

/* AUTH MODAL */
.auth-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--line);
}

.auth-tab {
  padding: 12px 20px;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.3s;
}

.auth-tab.active {
  color: var(--ink);
  border-bottom-color: var(--gold);
}

/* ============================================
   PAGES LÉGALES
   ============================================ */

.legal-content h2.serif-title {
  font-size: 28px;
  margin-top: 48px;
  margin-bottom: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.legal-content h2.serif-title:first-of-type {
  margin-top: 0;
  border-top: none;
  padding-top: 0;
}

.legal-content .lead {
  font-size: 17px;
  margin-bottom: 16px;
  line-height: 1.7;
}

.legal-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 24px;
}

.legal-list li {
  padding: 8px 0 8px 24px;
  position: relative;
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line-soft);
}

.legal-list li::before {
  content: '·';
  position: absolute;
  left: 8px;
  color: var(--gold);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.4;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  background: #fff;
  border: 1px solid var(--line);
}

.legal-table th, .legal-table td {
  padding: 14px 18px;
  text-align: left;
  font-size: 14px;
  border-bottom: 1px solid var(--line-soft);
}

.legal-table th {
  background: var(--cream);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.legal-table td:first-child {
  font-family: 'Courier New', monospace;
  color: var(--gold);
  font-size: 13px;
}

/* ============================================
   PAGE HEADER (parcours, services, journal)
   ============================================ */

.page-header {
  padding: 180px 48px 100px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.display-xl {
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--ink);
  margin-top: 24px;
  margin-bottom: 32px;
}

.display-xl em {
  font-style: italic;
  color: var(--gold);
}

.narrow {
  max-width: 760px;
  margin: 0 auto;
}

.lead-big {
  font-size: 24px;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 32px;
  font-weight: 300;
}

/* ============================================
   TIMELINE (parcours)
   ============================================ */

.timeline {
  max-width: 880px;
  margin: 0 auto;
}

.time-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 48px;
  padding: 40px 0;
  border-top: 1px solid rgba(245, 242, 236, 0.12);
}

.time-row:last-child {
  border-bottom: 1px solid rgba(245, 242, 236, 0.12);
}

.time-year {
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.time-body h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--ivory);
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.time-body p {
  color: rgba(245, 242, 236, 0.7);
  font-size: 15px;
  line-height: 1.7;
  max-width: 560px;
}

/* ============================================
   COLLAB GRID
   ============================================ */

.collab-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 4px;
  max-width: 1000px;
  margin: 0 auto;
}

.collab {
  padding: 32px 28px;
  background: #fff;
  border: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 19px;
  font-style: italic;
  color: var(--ink-soft);
  text-align: center;
  transition: all 0.3s;
}

.collab:hover {
  background: var(--ink);
  color: var(--ivory);
  border-color: var(--ink);
}

/* ============================================
   SERVICES
   ============================================ */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  position: relative;
  padding: 48px 40px;
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: all 0.4s var(--ease);
}

.service-card:hover {
  border-color: var(--gold);
  box-shadow: 0 30px 70px -30px rgba(26, 26, 26, 0.2);
  transform: translateY(-4px);
}

.service-card.featured {
  background: var(--ink);
  color: var(--ivory);
  border-color: var(--ink);
}

.service-card.featured:hover {
  border-color: var(--gold);
}

.service-badge {
  position: absolute;
  top: -12px;
  left: 40px;
  padding: 4px 14px;
  background: var(--gold);
  color: var(--ink);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
}

.service-num {
  font-family: var(--serif);
  font-size: 14px;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.service-card h3 {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.service-card.featured h3 { color: var(--ivory); }

.service-desc {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 28px;
}

.service-card.featured .service-desc { color: rgba(245, 242, 236, 0.8); }

.service-list {
  list-style: none;
  margin-bottom: 32px;
  flex: 1;
}

.service-list li {
  padding: 10px 0 10px 20px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  color: var(--ink-soft);
  position: relative;
}

.service-card.featured .service-list li {
  color: rgba(245, 242, 236, 0.85);
  border-bottom-color: rgba(245, 242, 236, 0.1);
}

.service-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
}

.service-footer {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.service-card.featured .service-footer {
  border-top-color: rgba(245, 242, 236, 0.15);
}

/* ============================================
   PROCESS
   ============================================ */

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.process-step {
  text-align: center;
  padding: 32px 20px;
}

.process-num {
  font-family: var(--serif);
  font-size: 72px;
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  opacity: 0.8;
  line-height: 1;
  margin-bottom: 16px;
}

.process-step h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 10px;
}

.process-step p {
  color: rgba(245, 242, 236, 0.7);
  font-size: 14px;
  line-height: 1.6;
}

/* ============================================
   FEATURED ARTICLE (journal)
   ============================================ */

.featured-article {
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.featured-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.cat-tag {
  padding: 4px 12px;
  border: 1px solid var(--line);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-family: var(--sans);
}

/* ============================================
   CTA MINI
   ============================================ */

.cta-mini {
  padding: 100px 48px;
  background: var(--cream);
  max-width: none;
  margin: 0;
}

.cta-mini h2 {
  margin-bottom: 16px;
}

.cta-mini .lead {
  margin-bottom: 32px;
  font-size: 19px;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .univers-grid { grid-template-columns: 1fr; gap: 64px; }
  .two-col { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .time-row { grid-template-columns: 1fr; gap: 8px; }
  .services-grid { grid-template-columns: 1fr; }
  .page-header { padding: 140px 24px 80px; }
  .newsletter-section { padding: 80px 24px; }
  .cta-mini { padding: 80px 24px; }
}

@media (max-width: 768px) {
  .nav-inner { padding: 16px 24px; }
  .nav-menu { display: none; }
  .hero { padding: 120px 24px 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-text { padding-right: 0; }
  .section, .section.dark, .contact-section { padding: 80px 24px; }
  .pull-quote { padding: 100px 24px; }
  .journal-item { grid-template-columns: 1fr; gap: 8px; }
  .journal-item .read-more { margin-top: 12px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; gap: 24px; }
  .footer-meta, .footer-social { justify-self: center; }
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 320px; }
  .gal-tall, .gal-wide { grid-row: auto; grid-column: auto; }
}

/* ============================================
   SCROLL REVEAL
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s var(--ease), transform 1.2s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
