/* ============================================================
   luxe æternai — style.css partagé v2
   Chemin : ~/Drive/tsakiris-workspace/homepage-v2/style.css
   ============================================================ */

/* === VARIABLES === */
:root {
  --bg: #FAF8F5;
  --bg-alt: #F0EEE9;
  --text: #1A1A1A;
  --text-secondary: #6B6B6B;
  --text-light: #999;
  --accent: #1a2332;
  --accent-dark: #2C3E50;
  --border: #E5DDD3;
  --deep-blue: #1a2332;
  --coral: #D4816B;
  --nav-height: 72px;
}

/* === RESET === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; scroll-behavior: smooth; }
body {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 21px;
  line-height: 1.8;
  color: var(--text);
  background: var(--bg);
  padding-top: var(--nav-height);
}

/* === PROGRESS BAR === */
.progress-bar {
  position: fixed; top: 0; left: 0;
  width: 0%; height: 3px;
  background: var(--coral); z-index: 1200;
  transition: width 0.1s linear;
}

/* === TOP NAV === */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-height);
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  z-index: 900;
  display: flex; align-items: center;
}
.nav-inner {
  max-width: 900px; width: 100%;
  margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center;
  text-decoration: none; flex-shrink: 0;
  padding: 16px 0;           /* zone de protection verticale */
  margin-right: 32px;        /* zone de protection horizontale côté nav */
}
.nav-logo img {
  width: 132px; height: auto;
  display: block;
}
.nav-links {
  display: flex; align-items: center;
  list-style: none; gap: 0;
}
.nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-secondary); text-decoration: none;
  padding: 8px 14px; transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--accent); }

/* Burger */
.nav-burger {
  display: none;
  background: none; border: none;
  cursor: pointer; padding: 10px;
  flex-direction: column; justify-content: center;
  gap: 5px; min-width: 44px; min-height: 44px;
  align-items: center;
}
.nav-burger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--accent);
  transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1),
              opacity 0.2s ease,
              width 0.3s ease;
  transform-origin: center;
}
/* Animated X */
.nav-burger.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-burger.active span:nth-child(2) {
  opacity: 0; width: 0;
}
.nav-burger.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile overlay nav — slide down */
.nav-mobile {
  position: fixed;
  top: var(--nav-height); left: 0; right: 0; bottom: 0;
  background: var(--bg); z-index: 800;
  flex-direction: column; padding: 40px 32px;
  border-top: 1px solid var(--border);
  overflow-y: auto;
  /* hidden by default */
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  display: flex; /* always flex, controlled by opacity/pointer-events */
}
.nav-mobile.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.nav-mobile a {
  font-family: 'Inter', sans-serif;
  font-size: 18px; font-weight: 400;
  color: var(--text); text-decoration: none;
  padding: 18px 0; border-bottom: 1px solid var(--border);
  letter-spacing: 0.02em;
}
.nav-mobile a:last-child { border-bottom: none; }

/* === CONTAINER === */
.container {
  max-width: 820px;
  margin: 0 auto;
  padding: 32px 32px 120px;
}

/* === HERO (homepage) === */
.hero { padding: 100px 0 64px; margin-bottom: 56px; }
.hero h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 300; line-height: 1.12;
  letter-spacing: -0.035em; color: var(--text);
  max-width: 680px;
}
.hero-bridge {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 300; font-style: italic;
  color: var(--coral); margin-top: 20px;
  line-height: 1.3;
}
.hero-meta {
  font-family: 'Inter', sans-serif;
  font-size: 12px; color: var(--text-light);
  line-height: 1.7; margin-top: 14px;
  max-width: 480px; font-weight: 300;
  letter-spacing: 0.01em;
}

/* === PAGE HERO (sous-pages) === */
.page-hero {
  padding: 56px 0 32px;
  margin-bottom: 48px;
}
.page-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--coral); margin-bottom: 16px; display: block;
}
.page-hero h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 300; line-height: 1.15;
  letter-spacing: -0.025em; color: var(--text);
}
.page-desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px; color: var(--text-secondary);
  line-height: 1.75; margin-top: 20px; max-width: 560px;
}

/* === SECTION === */
.section { padding-top: 72px; }
.section-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 10px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--coral) !important;
  margin-bottom: 32px; line-height: 1.5;
}
.section-filet {
  display: block; width: 48px; height: 3px;
  background: var(--coral); margin-bottom: 32px;
}

/* === TEXT === */
p { margin-bottom: 22px; }
strong { font-weight: 600; }
.chapo {
  font-family: 'Inter', sans-serif;
  font-size: 15px; font-weight: 300;
  line-height: 1.8; color: var(--text-secondary);
}
.punchline {
  font-family: 'Inter', sans-serif;
  font-size: 15px; font-weight: 500;
  letter-spacing: 0.01em; line-height: 1.7;
  padding: 16px 0 16px 20px;
  border-left: 2px solid var(--coral);
  margin: 32px 0;
}
.pull-quote {
  font-family: 'Inter', sans-serif;
  font-size: 19px; font-weight: 300;
  color: var(--accent-dark); padding: 40px;
  margin: 32px 0; text-align: center;
  line-height: 1.6; letter-spacing: -0.01em;
}
.inline-accent {
  font-family: 'Inter', sans-serif;
  font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--coral);
}

/* === WHAT I DO === */
.what-i-do {
  background: #F5F0EB; padding: 48px;
  margin: 40px -32px; border-radius: 4px;
}
.what-i-do h3 {
  font-family: 'Inter', sans-serif; font-size: 13px;
  font-weight: 500; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--coral) !important;
  margin-bottom: 24px;
}
.what-i-do ul { list-style: none; padding: 0; }
.what-i-do li {
  padding: 14px 0; border-bottom: 1px solid var(--border);
  font-size: 20px;
}
.what-i-do li:last-child { border-bottom: none; }
.what-i-do li span {
  font-family: 'Inter', sans-serif;
  font-size: 15px; color: var(--text-secondary);
  display: block; margin-top: 6px; line-height: 1.65;
}
.what-i-do li em {
  display: block; margin-top: 8px;
  font-style: italic; font-size: 12px;
  color: var(--coral); font-family: 'Inter', sans-serif;
}

/* === CONCEPTS GRID === */
.concepts-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; margin: 40px 0;
}
.concept-card {
  padding: 32px 28px; border-bottom: 1px solid var(--border);
}
.concept-card:nth-child(odd) { border-right: 1px solid var(--border); }
.concept-card:nth-last-child(-n+2) { border-bottom: none; }
.moment-label {
  font-family: 'Inter', sans-serif; font-size: 10px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--coral); margin-bottom: 6px; display: block;
}
.moment-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px; font-weight: 400; color: var(--text);
  margin-bottom: 10px; line-height: 1.25; display: block;
}
.concept-desc {
  font-family: 'Inter', sans-serif; font-size: 13px;
  line-height: 1.65; color: var(--text-secondary); margin: 0;
}

/* === TRACK RECORD === */
.track-record { margin: 40px 0; }
.track-phase { margin-bottom: 36px; }
.track-phase-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--deep-blue); margin-bottom: 12px;
}
.track-phase p { font-size: 19px; line-height: 1.75; margin-bottom: 8px; }
.track-phase .detail {
  font-family: 'Inter', sans-serif;
  font-size: 13px; color: var(--text-secondary); line-height: 1.65;
}
.track-phase .detail a {
  color: var(--accent); text-decoration: underline;
  text-underline-offset: 3px; text-decoration-color: var(--border);
  transition: text-decoration-color 0.2s;
}
.track-phase .detail a:hover { text-decoration-color: var(--accent); }

/* === SERVICES === */
.service-item {
  padding: 32px 0; border-top: 1px solid var(--border);
}
.service-header {
  display: flex; justify-content: space-between;
  align-items: baseline; flex-wrap: wrap; gap: 12px; margin-bottom: 12px;
}
.service-header h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 24px; font-weight: 400; color: var(--text); margin: 0;
}
.service-tag {
  font-family: 'Inter', sans-serif; font-size: 10px;
  font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--coral);
}
.service-punchline {
  font-family: 'Cormorant Garamond', serif; font-size: 20px;
  font-weight: 400; color: var(--text); line-height: 1.4;
  margin: 0 0 16px; font-style: italic;
}
.service-desc {
  font-family: 'Inter', sans-serif; font-size: 14px;
  color: var(--text-secondary); line-height: 1.75; margin: 0 0 12px;
}
.service-livrables {
  font-family: 'Inter', sans-serif; font-size: 12px;
  color: var(--text-secondary); line-height: 1.7; margin: 12px 0 16px;
  padding-top: 12px; border-top: 1px solid var(--border);
}
.service-for {
  font-family: 'Inter', sans-serif; font-size: 12px; color: var(--text-light);
}

/* === FAQ === */
.faq-item {
  padding: 28px 0; border-top: 1px solid var(--border);
}
.faq-q {
  font-family: 'Inter', sans-serif; font-size: 15px;
  font-weight: 600; color: var(--text); margin: 0 0 10px;
}
.faq-a {
  font-family: 'Inter', sans-serif; font-size: 14px;
  color: var(--text-secondary); line-height: 1.75; margin: 0;
}

/* === DISPATCH GRID (newsletter rubriques) === */
.dispatch-grid { margin-top: 32px; }
.dispatch-item {
  display: flex; gap: 48px; align-items: baseline;
  padding: 22px 0; border-top: 1px solid var(--border);
}
.di-rubrique {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--accent); min-width: 180px; flex-shrink: 0; margin: 0;
}
.di-desc {
  font-family: 'Inter', sans-serif; font-size: 14px;
  color: var(--text-secondary); line-height: 1.65; margin: 0;
}

/* === MANIFESTO === */
.manifesto { padding-top: 0; }
.manifesto .chapo { margin-bottom: 24px; }

/* === WHAT I DO PROSE === */
.what-i-do-prose {
  padding: 56px 0 48px;
  border-top: 1px solid var(--border);
  margin: 0 0 80px;
}
.prose-statement {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-weight: 400; line-height: 1.7;
  color: var(--text); margin-bottom: 32px;
  max-width: 720px;
}

/* === NEWSLETTER BLOCK === */
.newsletter-block {
  padding: 48px 0;
  margin: 64px 0;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}
.nl-left { }
.nl-right { }
.nl-right p { font-family: 'Inter', sans-serif; font-size: 15px; line-height: 1.75; color: var(--text-secondary); margin-bottom: 24px; }
.nl-tag {
  font-family: 'Inter', sans-serif; font-size: 10px;
  font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.15em; color: var(--coral);
  display: block; margin-bottom: 14px;
}
.nl-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 26px; font-weight: 400; font-style: italic;
  color: var(--text); line-height: 1.3; margin: 0;
}
.nl-cta {
  display: inline-block; margin-top: 20px;
  font-family: 'Inter', sans-serif; font-size: 12px;
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--accent); text-decoration: none;
  border-bottom: 1px solid var(--border); padding-bottom: 2px;
  transition: border-color 0.2s;
}
.nl-cta:hover { border-color: var(--accent); }

/* === ÉTUDE PUSH === */
.etude-push {
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  background: var(--bg-alt);
  padding: 48px 56px;
  margin: 0 0 100px;
}
.etude-push .ep-tag {
  font-family: 'Inter', sans-serif; font-size: 10px;
  font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.15em; color: var(--coral); margin-bottom: 20px; display: block;
}
.etude-push .ep-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 400; line-height: 1.25;
  color: var(--text); margin: 0 0 8px;
}
.etude-push .ep-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 300; font-style: italic;
  color: var(--text-secondary); margin: 0 0 28px;
}
.etude-push .ep-stats {
  display: flex; gap: 32px; flex-wrap: wrap;
  border-top: 1px solid var(--border); padding-top: 24px;
  margin-bottom: 28px;
}
.etude-push .ep-stat {
  font-family: 'Inter', sans-serif; font-size: 12px; color: var(--text-secondary);
}
.etude-push .ep-stat strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-weight: 400; color: var(--text);
  display: block; margin-bottom: 2px;
}
.ep-actions {
  display: flex; gap: 16px; align-items: center; flex-wrap: wrap;
  margin-top: 8px;
}
.ep-notify-form {
  display: flex; gap: 10px; align-items: center; flex: 1; min-width: 260px;
}
.ep-notify-form input[type="email"] {
  flex: 1; background: transparent; border: none;
  border-bottom: 1px solid var(--text-light);
  padding: 8px 0; font-family: 'Inter', sans-serif;
  font-size: 13px; color: var(--text); outline: none;
}
.ep-notify-form input[type="email"]::placeholder { color: var(--text-light); }

/* === SHIFT HAPPENS === */
.shift-happens-block {
  background: #F5F0EB;
  padding: 48px;
  border-radius: 4px;
}
.sh-header {
  display: flex; align-items: center; gap: 20px;
  margin-bottom: 28px;
}
.sh-logo { width: 170px; height: auto; }
.sh-tagline {
  font-family: 'Inter', sans-serif; font-size: 12px;
  font-weight: 500; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--coral);
}
.shift-happens-block p {
  font-family: 'Inter', sans-serif;
  font-size: 15px; line-height: 1.75;
  color: var(--text-secondary); margin-bottom: 16px;
}

/* === INSIGHTS GRID === */
.insights-list { margin-top: 48px; }
.insight-item {
  display: grid; grid-template-columns: 1fr auto;
  align-items: baseline; gap: 24px;
  padding: 28px 0; border-top: 1px solid var(--border);
  text-decoration: none; color: var(--text);
  transition: opacity 0.2s;
}
.insight-item:hover { opacity: 0.7; }
.insight-item .ii-tag {
  font-family: 'Inter', sans-serif; font-size: 10px;
  font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--coral); display: block; margin-bottom: 8px;
}
.insight-item .ii-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 400; line-height: 1.2; margin-bottom: 8px; display: block;
}
.insight-item .ii-desc {
  font-family: 'Inter', sans-serif; font-size: 13px;
  color: var(--text-secondary); line-height: 1.6; margin: 0;
}
.insight-item .ii-meta {
  font-family: 'Inter', sans-serif; font-size: 11px;
  color: var(--text-light); white-space: nowrap; text-align: right;
}
.insight-coming {
  padding: 28px 0; border-top: 1px solid var(--border); opacity: 0.5;
}
.insight-coming .ii-tag { color: var(--text-light) !important; }
.insight-coming .ii-title { color: var(--text-secondary); }

/* Éditions newsletter list */
.edition-item {
  display: flex; align-items: baseline; gap: 16px;
  padding: 16px 0; border-top: 1px solid var(--border);
}
.edition-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px; color: var(--text-light);
  min-width: 28px; flex-shrink: 0;
}
.edition-title {
  font-family: 'Inter', sans-serif; font-size: 14px;
  font-weight: 400; color: var(--text); flex: 1;
}
.edition-date {
  font-family: 'Inter', sans-serif; font-size: 11px;
  color: var(--text-light); flex-shrink: 0;
}

/* === CONTACT === */
.contact-grid { display: flex; flex-direction: column; gap: 12px; margin: 32px 0; }
.contact-item { display: flex; align-items: baseline; gap: 16px; }
.c-label {
  font-family: 'Inter', sans-serif; font-size: 10px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--accent); min-width: 80px; flex-shrink: 0;
}
.c-value { font-size: 20px; }
.c-value a {
  color: var(--accent-dark); text-decoration: underline;
  text-underline-offset: 4px; text-decoration-color: var(--border);
  transition: text-decoration-color 0.2s;
}
.c-value a:hover { text-decoration-color: var(--accent-dark); }

/* === BREADCRUMB === */
.breadcrumb {
  font-family: 'Inter', sans-serif; font-size: 11px;
  color: var(--text-light); margin-bottom: 32px;
  display: flex; align-items: center; gap: 8px;
}
.breadcrumb a { color: var(--text-secondary); text-decoration: none; }
.breadcrumb a:hover { color: var(--text); }
.breadcrumb span { color: var(--border); }

/* === BUTTONS === */
.btn {
  display: inline-block; padding: 12px 28px;
  font-family: 'Inter', sans-serif; font-size: 11px;
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em;
  border: none; cursor: pointer; text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.btn-primary { background: var(--accent); color: #FAF8F5; }
.btn-primary:hover { background: var(--accent-dark); }
.btn-outline {
  background: transparent; color: var(--accent);
  border: 1px solid var(--accent);
}
.btn-outline:hover { background: var(--accent); color: #FAF8F5; }

/* === FOOTER === */
footer {
  text-align: left; padding-top: 48px;
  margin-top: 72px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex; justify-content: space-between;
  align-items: flex-start; flex-wrap: wrap; gap: 24px;
  margin-bottom: 8px;
}
.footer-logo { display: flex; align-items: center; gap: 12px; }
.footer-name {
  font-family: 'Inter', sans-serif; font-size: 13px;
  font-weight: 500; color: var(--text); letter-spacing: 0.02em;
}
.footer-baseline {
  font-family: 'Inter', sans-serif; font-size: 8px;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--accent); margin-top: 2px; display: block;
}
.footer-nav {
  display: flex; gap: 20px; flex-wrap: wrap;
  align-items: center; list-style: none;
}
.footer-nav a {
  font-family: 'Inter', sans-serif; font-size: 11px;
  color: var(--text-secondary); text-decoration: none;
  letter-spacing: 0.05em; transition: color 0.2s;
}
.footer-nav a:hover { color: var(--text); }
.copyright {
  font-family: 'Inter', sans-serif; font-size: 11px;
  color: var(--text-light); margin-top: 16px; padding-bottom: 40px;
}

/* === ANIMATIONS === */
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* === RESPONSIVE — LARGE TABLET (<1024px) === */
@media (max-width: 1024px) {
  .container { max-width: 700px; padding: 28px 40px 100px; }
}

/* === RESPONSIVE — TABLET (<900px) === */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  body { font-size: 19px; }

  .container { padding: 24px 28px 80px; }
  .hero { padding: 56px 0 40px; }
  .hero h1 { font-size: clamp(32px, 6vw, 48px); }
  .page-hero { padding: 40px 0 24px; margin-bottom: 36px; }
  .page-hero h1 { font-size: clamp(26px, 5vw, 36px); }
  .section { padding-top: 56px; }

  .concepts-grid { grid-template-columns: 1fr; }
  .concept-card:nth-child(odd) { border-right: none; }
  .concept-card:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
  .concept-card:last-child { border-bottom: none; }

  .insight-item { grid-template-columns: 1fr; gap: 8px; }
  .insight-item .ii-meta { text-align: left; }

  .etude-access-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
  .what-i-do { padding: 36px 28px; margin: 32px -28px; }
  .what-i-do-prose { padding: 36px 0 32px; }
  .prose-statement { font-size: 21px; }
  .newsletter-block { grid-template-columns: 1fr; gap: 24px; padding: 36px 0; margin: 48px 0; }
  .etude-push { padding: 32px 28px; }
  .ep-actions { flex-direction: column; align-items: flex-start; }

  .pull-quote { padding: 28px 0; font-size: 17px; }

  .footer-inner { flex-direction: column; gap: 16px; }
  .footer-nav { gap: 16px; }
}

/* === RESPONSIVE — MOBILE (<600px) === */
@media (max-width: 600px) {
  :root { --nav-height: 60px; }
  body { font-size: 18px; line-height: 1.75; }

  .container { padding: 20px 20px 72px; }
  .nav-inner { padding: 0 20px; }
  .nav-logo img { width: 100px; }

  .hero { padding: 40px 0 28px; }
  .hero h1 { font-size: clamp(28px, 8vw, 38px); line-height: 1.15; }
  .hero-meta { font-size: 13px; margin-top: 18px; }

  .page-hero { padding: 32px 0 20px; margin-bottom: 28px; }
  .page-hero h1 { font-size: clamp(24px, 7vw, 32px); }
  .page-desc { font-size: 13px; margin-top: 14px; }

  .section { padding-top: 40px; }
  .section-label { font-size: 9px; }

  .what-i-do { padding: 28px 20px; margin: 28px -20px; }
  .what-i-do li { font-size: 17px; }
  .what-i-do li span { font-size: 13px; }

  .what-i-do-prose { padding: 28px 0 24px; }
  .prose-statement { font-size: 19px; }
  .newsletter-block { grid-template-columns: 1fr; gap: 20px; padding: 28px 0; margin: 40px 0; }
  .nl-name { font-size: 22px; }

  .etude-push { padding: 28px 20px; margin: 48px 0; }
  .etude-push .ep-title { font-size: 22px; }
  .etude-push .ep-stats { gap: 16px; flex-wrap: wrap; }
  .ep-actions { flex-direction: column; align-items: flex-start; gap: 12px; }
  .ep-notify-form { min-width: 0; width: 100%; }

  .pull-quote { padding: 20px 0; font-size: 15px; }

  .service-header h3 { font-size: 20px; }
  .faq-q { font-size: 14px; }
  .faq-a { font-size: 13px; }

  .insight-item .ii-title { font-size: 19px; }

  .track-phase p { font-size: 17px; }
  .contact-item { flex-direction: column; gap: 4px; }
  .c-label { min-width: auto; }
  .c-value { font-size: 17px; }

  .breadcrumb { font-size: 10px; }

  /* Burger touch targets */
  .nav-burger { padding: 12px; }
  .nav-burger span { width: 22px; }

  /* Mobile nav links — large touch targets */
  .nav-mobile { padding: 32px 20px; }
  .nav-mobile a { font-size: 20px; padding: 16px 0; min-height: 56px; display: flex; align-items: center; }

  .footer-nav { gap: 12px; }
  .footer-nav a { font-size: 12px; }

  /* Edition list */
  .edition-item { flex-wrap: wrap; gap: 4px; }
  .edition-date { width: 100%; padding-left: 44px; }
}

/* === RESPONSIVE — PETIT MOBILE (<380px) === */
@media (max-width: 380px) {
  body { font-size: 17px; }
  .hero h1 { font-size: 26px; }
  .container { padding: 16px 16px 64px; }
  .what-i-do { margin: 24px -16px; padding: 24px 16px; }
  .newsletter-block { margin: 24px -16px; padding: 24px 16px; }
  .etude-push { padding: 24px 16px; }
}

/* === CONSENT BANNER === */
.consent-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--accent); color: #FAF8F5;
  padding: 16px 32px; z-index: 999;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.consent-banner p {
  font-family: 'Inter', sans-serif; font-size: 12px;
  line-height: 1.6; margin: 0; color: rgba(255,255,255,0.8);
}
.consent-btn {
  font-family: 'Inter', sans-serif; font-size: 11px;
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em;
  padding: 8px 20px; border: none; cursor: pointer;
  background: var(--coral); color: #FAF8F5;
  white-space: nowrap; flex-shrink: 0;
}
