@import url('fonts/fonts.css');

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream: #fefbf4;
  --terracotta: #9B6A3C;
  --cta: #c8644f;
  --gold: #C39268;
  --navy: #154a6d;
  --dark: #2c2c2c;
  --white: #ffffff;
  --light-gold: rgba(195, 146, 104, 0.12);
  --light-terra: rgba(155, 106, 60, 0.07);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--cream);
  color: var(--dark);
  line-height: 1.75;
  font-size: 18px;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  color: var(--navy);
  line-height: 1.15;
}

h1 { font-size: clamp(2.6rem, 5.5vw, 4.8rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.7rem); }

p { margin-bottom: 1rem; color: var(--dark); }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ===== NAVIGATION ===== */
nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(254, 251, 244, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(195, 146, 104, 0.25);
  padding: 1.1rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: var(--navy);
  font-weight: 600;
  letter-spacing: 0.03em;
  word-spacing: -0.08em;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark);
  transition: color 0.25s;
}
.nav-links a:hover { color: var(--terracotta); }

.btn-nav {
  background: var(--cta);
  color: white;
  padding: 0.65rem 1.4rem;
  border-radius: 2px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.25s;
}
.btn-nav:hover { background: #a8533f; }

/* hamburger (mobile only) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: all 0.3s;
}
.nav-toggle { display: none; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.25s;
  border: none;
  line-height: 1;
}
.btn-primary { background: var(--cta); color: white; }
.btn-primary:hover { background: #a8533f; transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: white; }
.btn-white { background: white; color: var(--navy); }
.btn-white:hover { background: var(--cream); }

/* ===== LAYOUT HELPERS ===== */
.container { max-width: 1180px; margin: 0 auto; }
section { padding: 6rem 5%; }

.eyebrow {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  display: block;
  margin-bottom: 1rem;
}

.gold-line {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 1.5rem 0;
}
.gold-line.centered { margin: 1.5rem auto; }

.section-heading {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 3.5rem;
}
.section-heading h2 { margin-bottom: 1rem; }
.section-heading p { color: #666; font-size: 0.95rem; }

/* ===== IMAGE PLACEHOLDERS ===== */
.img-placeholder {
  background: linear-gradient(135deg, rgba(195,146,104,0.2) 0%, rgba(155,106,60,0.12) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}
.img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 20px,
      rgba(195,146,104,0.05) 20px,
      rgba(195,146,104,0.05) 21px
    );
}
.img-placeholder span {
  position: relative;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--gold);
  font-size: 0.9rem;
  text-align: center;
  padding: 1rem;
  opacity: 0.7;
}

/* ===== HOMEPAGE — HERO ===== */
.hero {
  min-height: 88vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding: 4rem 5%;
  max-width: 1320px;
  margin: 0 auto;
}

.hero-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-title {
  font-size: clamp(3.2rem, 6.5vw, 6rem);
  color: var(--navy);
  line-height: 1.02;
  margin: 0.6rem 0 1.5rem;
}

.hero-sub {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  color: #555;
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 2.5rem;
}

.hero-image {
  height: 620px;
}

/* ===== STATS BAND ===== */
.stats-band {
  background: var(--gold);
  padding: 4rem 5%;
}

.stats-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: center;
}

.stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.2);
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: white;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.6rem;
}

.stat-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  line-height: 1.45;
}

/* ===== ABOUT ===== */
.about-inner {
  display: flex;
  align-items: stretch;
  gap: 5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.about-text { flex: 1; }
.about-photo { flex: 1; }

.about-photo {
  position: relative;
}

.about-photo::after { display: none; }

.about-text p { font-size: 0.95rem; line-height: 1.85; color: #444; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: white; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--cream);
  padding: 2.5rem 2rem;
  border-radius: 3px;
  border-top: 3px solid var(--gold);
  display: flex;
  flex-direction: column;
}

.quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 4.5rem;
  color: var(--gold);
  opacity: 0.25;
  line-height: 0.6;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1rem;
  color: #444;
  line-height: 1.72;
  margin-bottom: 1.5rem;
  flex: 1;
}

.testimonial-author { font-size: 0.78rem; font-weight: 600; color: var(--navy); letter-spacing: 0.05em; }
.testimonial-role { font-size: 0.73rem; color: var(--terracotta); margin-top: 0.25rem; }

/* ===== WAYS TO FOLLOW ===== */
.ways-section { background: var(--cream); }

.ways-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.way-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 3px;
  text-align: center;
  border: 1px solid rgba(195,146,104,0.2);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.way-card:hover { border-color: var(--gold); transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,0.06); }

.way-icon { font-size: 2rem; margin-bottom: 1.2rem; display: block; }
.way-card h3 { font-size: 1.25rem; margin-bottom: 0.8rem; }
.way-card p { font-size: 0.85rem; color: #666; line-height: 1.65; flex: 1; margin-bottom: 0; }
.way-card .btn { margin-top: 1.8rem; }

/* ===== NEWSLETTER BAND ===== */
.newsletter-band {
  background: var(--gold);
  padding: 5.5rem 5%;
  text-align: center;
}
.newsletter-band h2 { color: white; margin-bottom: 1rem; }
.newsletter-band h2 em { color: rgba(255,255,255,0.72); font-style: italic; }
.newsletter-band .lead { color: rgba(255,255,255,0.9); max-width: 560px; margin: 0 auto 2.5rem; font-size: 0.95rem; line-height: 1.75; }

.newsletter-form {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  max-width: 520px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.newsletter-form input {
  flex: 1;
  min-width: 160px;
  padding: 0.9rem 1.2rem;
  border: none;
  border-radius: 2px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  background: rgba(255,255,255,0.95);
  color: var(--dark);
  outline: none;
}
.newsletter-form input::placeholder { color: #aaa; }
.newsletter-form button {
  background: var(--navy);
  color: white;
  padding: 0.9rem 1.8rem;
  border: none;
  border-radius: 2px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s;
  white-space: nowrap;
}
.newsletter-form button:hover { background: #0e3450; }

/* ===== FOOTER ===== */
footer {
  background: rgba(254, 251, 244, 0.97);
  border-top: 1px solid rgba(195, 146, 104, 0.25);
  padding: 3.5rem 5%;
  text-align: center;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: var(--navy);
  display: block;
  margin-bottom: 1.8rem;
}
.footer-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.footer-links a {
  color: var(--dark);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.25s;
}
.footer-links a:hover { color: var(--terracotta); }
.footer-copy { font-size: 0.72rem; color: rgba(44,44,44,0.5); }

/* ===== FOOTER SOCIAL ===== */
.footer-social {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.footer-social a {
  color: var(--dark);
  transition: color 0.25s;
  display: flex;
  align-items: center;
}
.footer-social a:hover { color: var(--terracotta); }

/* ===== SALES PAGE (realignement.html) ===== */
.sales-hero {
  min-height: 55vh;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 7rem 5% 5rem;
}
.sales-hero-inner {
  max-width: 780px;
  margin: 0 auto;
}
.sales-hero h1 { font-size: clamp(1.9rem, 4vw, 3.2rem); margin-bottom: 1.5rem; }
.sales-lead {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: #555;
  line-height: 1.75;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.sales-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 5% 6rem;
}

.sales-block { padding: 4rem 0; border-bottom: 1px solid rgba(195,146,104,0.15); }
.sales-block:last-child { border-bottom: none; }

.sales-block h2 { font-size: clamp(1.5rem, 2.8vw, 2.2rem); margin-bottom: 1.5rem; }
.sales-block h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); margin-bottom: 1rem; }

.overline {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  display: block;
  margin-bottom: 0.75rem;
}

/* Pain list */
.pain-list { list-style: none; margin: 2rem 0; }
.pain-list li {
  padding: 1rem 0 1rem 1.8rem;
  border-bottom: 1px solid rgba(195,146,104,0.18);
  position: relative;
  font-size: 0.93rem;
  line-height: 1.65;
}
.pain-list li::before { content: '—'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.pain-list li:last-child { border-bottom: none; }

/* Inner voice block */
.voice-block {
  background: white;
  border: 1px solid rgba(195,146,104,0.22);
  border-top: 2px solid rgba(195,146,104,0.45);
  padding: 2rem 2.5rem;
  margin: 2rem 0;
  border-radius: 3px;
}
.voice-block p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--navy);
  font-size: 1.02rem;
  margin-bottom: 0.5rem;
}
.voice-block p:last-child { margin-bottom: 0; }

/* Entrepreneur voices grid */
.voices-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 0;
}
.entrepreneur-voice {
  background: white;
  padding: 2rem;
  border-radius: 3px;
  border-top: 2px solid rgba(195,146,104,0.35);
  margin: 0;
}
.entrepreneur-voice p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.97rem;
  color: var(--navy);
  line-height: 1.75;
  margin-bottom: 1.2rem;
}
.entrepreneur-voice cite {
  font-size: 0.72rem;
  color: var(--terracotta);
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.05em;
  display: block;
}

/* Story cascade */
.story-cascade { margin: 2rem 0; }
.cascade-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  margin-bottom: 1.2rem;
}
.cascade-dot {
  width: 8px;
  height: 8px;
  min-width: 8px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 0.55rem;
}
.cascade-item p { margin: 0; font-size: 0.93rem; line-height: 1.6; }

/* Checklist */
.checklist-block {
  background: white;
  border: 1px solid rgba(195,146,104,0.25);
  border-radius: 4px;
  padding: 2.5rem 3rem;
  margin: 2.5rem 0;
}
.checklist-block h3 { margin-bottom: 1.8rem; }
.check-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.1rem;
  font-size: 0.9rem;
  line-height: 1.55;
}
.check-box {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 1.5px solid var(--gold);
  border-radius: 3px;
  margin-top: 1px;
}
.checklist-block .note {
  margin-top: 1.5rem;
  font-size: 0.82rem;
  color: var(--terracotta);
  font-weight: 500;
  font-style: italic;
}

/* Outcomes grid */
.outcomes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2.5rem 0;
}
.outcome-card {
  background: white;
  padding: 2rem;
  border-radius: 3px;
  border-top: 2px solid var(--gold);
}
.outcome-icon { font-size: 1.5rem; margin-bottom: 1rem; display: block; }
.outcome-card h4 { font-family: 'Playfair Display', serif; font-size: 1.05rem; margin-bottom: 0.6rem; color: var(--navy); }
.outcome-card p { font-size: 0.83rem; color: #666; line-height: 1.65; margin: 0; }

/* About Léa (sales page version) */
.lea-block {
  background: var(--light-gold);
  padding: 3rem;
  border-radius: 4px;
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 2.5rem;
  align-items: start;
  margin: 2.5rem 0;
}
.lea-photo-circle {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(195,146,104,0.3), rgba(155,106,60,0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(195,146,104,0.4);
}
.lea-photo-circle span { font-family: 'Playfair Display', serif; font-style: italic; font-size: 0.8rem; color: var(--gold); text-align: center; padding: 0.5rem; }
.lea-block .lea-name { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--navy); margin-bottom: 0.4rem; }
.lea-block .lea-credentials { font-size: 0.75rem; color: var(--terracotta); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1rem; }
.lea-block p { font-size: 0.88rem; line-height: 1.8; color: #444; margin-bottom: 0.75rem; }
.lea-philosophy {
  border-top: 1px solid rgba(195,146,104,0.3);
  padding-top: 1.2rem;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--navy);
}

/* Loss aversion */
.loss-block {
  background: rgba(155,106,60,0.07);
  border: 1px solid rgba(155,106,60,0.18);
  border-radius: 4px;
  padding: 2.5rem 3rem;
  margin: 3rem 0;
}
.loss-block h3 { color: var(--terracotta); margin-bottom: 1.5rem; font-size: 1.2rem; }
.loss-list { list-style: none; }
.loss-list li {
  padding: 0.65rem 0 0.65rem 1.5rem;
  position: relative;
  font-size: 0.9rem;
  line-height: 1.55;
  border-bottom: 1px solid rgba(155,106,60,0.08);
}
.loss-list li:last-child { border-bottom: none; }
.loss-list li::before { content: '→'; position: absolute; left: 0; color: var(--terracotta); font-weight: 600; }

/* Scarcity indicator */
.scarcity-bar {
  background: var(--navy);
  color: white;
  padding: 1.3rem 2rem;
  border-radius: 4px;
  margin: 2rem 0;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.pulse-dot {
  width: 10px;
  height: 10px;
  min-width: 10px;
  border-radius: 50%;
  background: #5eead4;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(94,234,212,0.4); }
  50% { opacity: 0.5; box-shadow: 0 0 0 5px rgba(94,234,212,0); }
}
.scarcity-bar p { margin: 0; font-size: 0.87rem; color: rgba(255,255,255,0.92); line-height: 1.5; }
.scarcity-bar strong { color: white; }

/* Closing CTA section */
.closing-cta {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--cream);
  border-radius: 4px;
  margin: 3rem 0;
}
.closing-question {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  color: var(--navy);
  max-width: 580px;
  margin: 0 auto 2.5rem;
  line-height: 1.5;
}
.cta-note {
  font-size: 0.78rem;
  color: #888;
  margin-top: 1rem;
  font-style: italic;
}

/* Quote pullout */
.pullquote {
  text-align: center;
  padding: 2.5rem 0;
  border-top: 1px solid rgba(195,146,104,0.2);
  border-bottom: 1px solid rgba(195,146,104,0.2);
  margin: 3rem 0;
}
.pullquote p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--navy);
  max-width: 560px;
  margin: 0 auto;
}

/* ===== PODCAST PAGE ===== */
.page-hero {
  padding: 7rem 5% 5rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.page-hero h1 { margin-bottom: 1.2rem; }
.page-hero p { font-size: 1.05rem; color: #555; line-height: 1.8; max-width: 640px; margin: 0 auto 2.5rem; }

.platforms {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 2.5rem auto;
}
.platform-btn {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 1.5rem;
  border: 1.5px solid var(--navy);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--navy);
  transition: all 0.25s;
}
.platform-btn:hover { background: var(--navy); color: white; }
.platform-icon { font-size: 1.1rem; }

.guests-section { background: white; padding: 5rem 5%; }
.guests-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  max-width: 1000px;
  margin: 3rem auto 0;
}
.guest-card { text-align: center; }
.guest-avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  margin: 0 auto 1.1rem;
  background: linear-gradient(135deg, rgba(195,146,104,0.25), rgba(155,106,60,0.15));
  border: 2px solid rgba(195,146,104,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--gold);
  font-style: italic;
}
.guest-name { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 600; color: var(--navy); margin-bottom: 0.25rem; }
.guest-title { font-size: 0.73rem; color: var(--terracotta); line-height: 1.4; }

/* ===== NEWSLETTER PAGE ===== */
.newsletter-page { max-width: 680px; margin: 0 auto; padding: 7rem 5% 6rem; }
.newsletter-page h1 { margin-bottom: 1rem; }
.newsletter-page .sub { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.1rem; color: #555; margin-bottom: 2rem; line-height: 1.7; }
.newsletter-page .count { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 2.5rem; display: block; }

.standalone-form { margin-top: 3rem; }
.standalone-form .form-group { margin-bottom: 1.2rem; }
.standalone-form label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.standalone-form input {
  width: 100%;
  padding: 0.95rem 1.2rem;
  border: 1.5px solid rgba(195,146,104,0.3);
  border-radius: 2px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  background: white;
  color: var(--dark);
  outline: none;
  transition: border-color 0.25s;
}
.standalone-form input:focus { border-color: var(--gold); }

.archive-teaser {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(195,146,104,0.2);
}
.archive-teaser h3 { font-size: 1.3rem; margin-bottom: 1.5rem; }
.letter-preview {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(195,146,104,0.15);
}
.letter-date { font-size: 0.7rem; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.3rem; }
.letter-title { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--navy); margin-bottom: 0.3rem; }
.letter-excerpt { font-size: 0.83rem; color: #666; line-height: 1.6; }

/* ===== CONTACT PAGE ===== */
.contact-page { max-width: 640px; margin: 0 auto; padding: 7rem 5% 6rem; }
.contact-page h1 { margin-bottom: 1rem; }
.contact-page .sub { color: #666; margin-bottom: 0.5rem; font-size: 0.95rem; }
.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--terracotta);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 3rem;
}
.contact-form .form-group { margin-bottom: 1.5rem; }
.contact-form label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.95rem 1.2rem;
  border: 1.5px solid rgba(195,146,104,0.3);
  border-radius: 2px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  background: white;
  color: var(--dark);
  outline: none;
  transition: border-color 0.25s;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--gold); }
.contact-form textarea { height: 180px; resize: vertical; }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; min-height: auto; gap: 2.5rem; padding: 3.5rem 5%; }
  .hero-image { height: 360px; order: -1; }
  .hero-content { text-align: center; }
  .hero-sub { margin: 0 auto 2rem; }
  .gold-line { margin: 1.5rem auto; }

  .about-inner { flex-direction: column; gap: 2.5rem; }
  .about-text, .about-photo { flex: unset; width: 100%; }
  .about-photo { height: 360px; order: -1; }

  .testimonials-grid,
  .ways-grid,
  .outcomes-grid,
  .voices-grid { grid-template-columns: 1fr; }

  .stats-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  .guests-grid { grid-template-columns: repeat(2, 1fr); }

  .lea-block { grid-template-columns: 1fr; text-align: center; }
  .lea-photo-circle { margin: 0 auto; }

  .checklist-block { padding: 2rem; }
  .loss-block { padding: 2rem; }
}

@media (max-width: 680px) {
  nav { justify-content: flex-start; }
  .nav-links { display: none; }
  .nav-right { display: none; }
  .hamburger { display: flex; margin-left: auto; }
  .btn-nav { display: none; }

  section { padding: 4rem 5%; }

  .newsletter-form { flex-direction: column; }
  .newsletter-form input,
  .newsletter-form button { width: 100%; }

  .guests-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

  .platforms { gap: 0.6rem; }
  .platform-btn { padding: 0.55rem 1.1rem; font-size: 0.73rem; }

  .closig-question { font-size: 1.1rem; }
}

/* ===== MOBILE NAV — menu ouvert ===== */
@media (max-width: 680px) {
  nav:has(.nav-toggle:checked) {
    flex-wrap: wrap;
  }
  nav:has(.nav-toggle:checked) .nav-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    order: 3;
    padding: 0.5rem 0 1rem;
    border-top: 1px solid rgba(195,146,104,0.2);
    gap: 0;
  }
  nav:has(.nav-toggle:checked) .nav-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
  }
  nav:has(.nav-toggle:checked) .nav-links a {
    padding: 0.75rem 0;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(195,146,104,0.12);
    width: 100%;
  }
  nav:has(.nav-toggle:checked) .btn-nav {
    margin-top: 1rem;
  }
  nav:has(.nav-toggle:checked) .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  nav:has(.nav-toggle:checked) .hamburger span:nth-child(2) {
    opacity: 0;
  }
  nav:has(.nav-toggle:checked) .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}
