/*
 * Main layout + section-specific styles (v2).
 * Reusable building blocks live in components.css.
 */

/* ─── Shared section helpers ──────────────────────────── */

.section { padding: var(--section-padding); }
.section--cream  { background: var(--cream); }
.section--linen  { background: var(--linen); }
.section--dark   { background: var(--ink); color: var(--cream); }
.section__inner  { max-width: var(--max-width); margin: 0 auto; }
.section__intro {
  margin-bottom: 2.5rem;
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.8;
}

.section + .section { border-top: 1px solid var(--kaki); }

/* ─── HERO (video + bilingual subtitle) ──────────────── */

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__video-fallback {
  position: absolute;
  inset: 0;
  background: var(--ink);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 26, 20, 0.55);
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  text-align: center;
  max-width: 760px;
}
.hero__logo {
  height: 160px;
  width: auto;
  margin: 0 auto 2rem;
  filter: invert(1) brightness(2);
}
@media (max-width: 768px) {
  .hero__logo { height: 120px; }
}
.hero__title {
  margin: 1rem auto;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-style: italic;
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
  max-width: 600px;
}
/* New v2 — two-line subtitle */
.hero__sub-wrap { margin-top: 0.8rem; margin-bottom: 2rem; }
.hero__sub-main {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(253, 251, 245, 0.75);
  margin-bottom: 0.6rem;
}
.hero__sub-lang {
  font-family: var(--font-display);
  font-size: 13px;
  font-style: italic;
  color: var(--kaki-light);
  letter-spacing: 0.05em;
}

/* ─── QUOTE BAND ─────────────────────────────────────── */

.quote-band {
  padding: 3rem 2rem;
  background: var(--ink);
  text-align: center;
}
.quote-band__inner { max-width: 640px; margin: 0 auto; }
.quote-band__text {
  margin: 0 auto 0.8rem;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-style: italic;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.6;
  max-width: 520px;
}
.quote-band__attr {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--kaki);
  font-style: normal;
}

/* ─── À PROPOS (v2 — text left, photo right, kaki bg) ── */

.apropos {
  padding: var(--section-padding);
  background: var(--kaki-deep);   /* #8A8462 — matches portrait bg */
  color: var(--cream);
}
.apropos__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: var(--max-width);
  margin: 0 auto;
  align-items: center;
}
.apropos__grid--reversed {
  /* same column count, but content (text) on left, image (photo) on right */
  grid-template-areas: "text photo";
}
.apropos__content { grid-area: text; }
.apropos__img-wrap {
  grid-area: photo;
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--kaki-deep);
}
.apropos__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  display: block;
}
.apropos__title {
  margin-bottom: 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--cream);
  line-height: 1.15;
}
.apropos__title em {
  color: var(--cream);
  font-style: italic;
}
.apropos__text {
  margin-bottom: 1rem;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: rgba(253, 251, 245, 0.88);
  line-height: 1.9;
}
.apropos__text--accent {
  font-style: italic;
  color: var(--cream);
  border-left: 3px solid var(--cream);
  padding-left: 1rem;
  margin: 1.2rem 0;
}
.apropos__text--accent strong { color: var(--white); font-weight: 500; }
.apropos__tags {
  margin: 1.5rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.apropos .tag {
  background: rgba(253, 251, 245, 0.08);
  color: var(--cream);
  border-color: rgba(253, 251, 245, 0.3);
}
.apropos .tag--accent {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}
.apropos .section-label { color: var(--kaki-light); }
.apropos .rule { background: var(--kaki-light); }
.apropos__cta {
  margin-top: 1rem;
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}
.apropos__cta:hover {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

@media (max-width: 768px) {
  .apropos__grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "photo"
      "text";
    gap: 2rem;
  }
  .apropos__img-wrap { aspect-ratio: 4/5; }
}

/* ─── NOTRE APPROCHE (Services + Méthode merged) ────── */

.approche {
  padding: var(--section-padding);
  background: var(--linen);
}
.approche__inner { max-width: var(--max-width); margin: 0 auto; }
.approche__title {
  margin-bottom: 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--ink);
}
.approche__intro {
  margin-bottom: 2rem;
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.8;
}
.approche__tabs {
  display: flex;
  gap: 0;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--cream-mid);
}
.approche-tab {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 1rem 1.5rem;
  border: none;
  border-bottom: 2px solid transparent;
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
}
.approche-tab.is-active,
.approche-tab:hover {
  color: var(--ink);
  border-bottom-color: var(--kaki);
}
.approche__cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 3rem;
}

/* Services grid (used inside the Services tab) */
.services__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 768px) {
  .services__grid { grid-template-columns: 1fr; }
}

/* Méthode steps (used inside the Méthode tab) */
.methode__steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.step { flex: 1; padding: 0 1.5rem; }
.step__divider {
  flex-shrink: 0;
  align-self: center;
  width: 1px;
  height: 120px;
  background: var(--kaki-light);
}
.step__num {
  margin-bottom: 0.6rem;
  font-family: var(--font-display);
  font-size: 2rem;
  font-style: italic;
  color: var(--brown-light);
  line-height: 1;
}
.step__title {
  margin-bottom: 0.5rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
}
.step__desc {
  font-size: 12px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
}
@media (max-width: 768px) {
  .methode__steps { flex-direction: column; gap: 2rem; }
  .step__divider { width: 40px; height: 1px; }
  .step { padding: 0; }
}

/* ─── PORTFOLIO ──────────────────────────────────────── */

.portfolio { padding: var(--section-padding); background: var(--linen); }
.portfolio__inner { max-width: var(--max-width); margin: 0 auto; }
.portfolio__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--ink);
}
.portfolio__intro {
  margin-bottom: 1.5rem;
  font-size: 13px;
  color: var(--muted);
}
.portfolio__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 1.5rem 0 2rem;
}
.filter-btn {
  padding: 0.3rem 0;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  background: transparent;
  border: none;
  border-bottom: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn.is-active,
.filter-btn:hover {
  color: var(--ink);
  border-bottom-color: var(--kaki);
}
.portfolio__carousel { position: relative; overflow: hidden; }
.portfolio__track {
  display: flex;
  gap: 1rem;
  transition: transform 0.4s ease;
}
.portfolio__item {
  position: relative;
  flex: 0 0 calc(33.33% - 0.67rem);
  cursor: pointer;
  overflow: hidden;
  background: var(--brown-light);
}
.portfolio__item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.portfolio__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(28,26,20,0.4) 100%);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}
.portfolio__item:hover img { transform: scale(1.03); }
.portfolio__item:hover::after { opacity: 1; }
.portfolio__caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0.6rem 0.8rem;
  background: rgba(28, 26, 20, 0.7);
  color: var(--cream);
  font-size: 11px;
  opacity: 0;
  transition: opacity var(--transition);
  z-index: 2;
}
.portfolio__item:hover .portfolio__caption { opacity: 1; }
.carousel-prev,
.carousel-next {
  position: absolute;
  top: 50%;
  z-index: 10;
  width: 40px;
  height: 40px;
  font-size: 16px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--cream-mid);
  transform: translateY(-50%);
  transition: all var(--transition);
}
.carousel-prev { left: 0.5rem; }
.carousel-next { right: 0.5rem; }
.carousel-prev:hover,
.carousel-next:hover { background: var(--ink); color: var(--white); }

@media (max-width: 768px) {
  .portfolio__item { flex: 0 0 100%; }
}

/* ─── LIGHTBOX ───────────────────────────────────────── */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(28, 26, 20, 0.95);
  padding: 2rem;
}
.lightbox[hidden] { display: none; }
.lightbox__img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
}
.lightbox__caption {
  margin-top: 1rem;
  font-size: 12px;
  color: var(--cream);
  text-align: center;
}
.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: absolute;
  font-size: 2rem;
  color: var(--cream);
  background: transparent;
  border: none;
  padding: 1rem;
}
.lightbox__close { top: 1rem; right: 1rem; }
.lightbox__prev  { top: 50%; left: 1rem; transform: translateY(-50%); }
.lightbox__next  { top: 50%; right: 1rem; transform: translateY(-50%); }

/* ─── TÉMOIGNAGES ────────────────────────────────────── */

.temoignages { padding: var(--section-padding); background: var(--cream); }
.temoignages__inner { max-width: var(--max-width); margin: 0 auto; }
.temoignages__title {
  margin-bottom: 2rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--ink);
}
.testi-carousel { position: relative; overflow: hidden; }
.testi-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s ease;
}
.testi-track .testi { flex: 0 0 calc(50% - 0.75rem); }
.testi-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.testi-dot {
  width: 8px;
  height: 8px;
  background: var(--cream-dark);
  border: none;
  cursor: pointer;
  transition: background var(--transition);
}
.testi-dot.is-active { background: var(--kaki); }

@media (max-width: 768px) {
  .testi-track .testi { flex: 0 0 100%; }
}

/* ─── BLOG PREVIEW (home) ────────────────────────────── */

.blog-preview { padding: var(--section-padding); background: var(--linen); }
.blog-preview__inner { max-width: var(--max-width); margin: 0 auto; }
.blog-preview__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}
@media (max-width: 900px) { .blog-preview__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .blog-preview__grid { grid-template-columns: 1fr; } }

/* ─── INSTAGRAM FEED ─────────────────────────────────── */

.insta-feed {
  padding: var(--section-padding);
  background: var(--cream);
  border-top: 1px solid var(--kaki);
  text-align: center;
}
.insta-feed__inner { max-width: var(--max-width); margin: 0 auto; }
.insta-feed__title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.6rem, 3vw, 2rem);
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.insta-feed__intro {
  font-size: 13px;
  color: var(--muted);
  margin: 0 auto 2rem;
  max-width: 480px;
}
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.5rem;
}
.insta-tile {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--cream-dark);
}
.insta-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.insta-tile:hover img { transform: scale(1.05); }
@media (max-width: 900px) { .insta-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 600px) { .insta-grid { grid-template-columns: repeat(3, 1fr); } }

/* ─── CONTACT ────────────────────────────────────────── */

.contact { padding: var(--section-padding); background: var(--cream); }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: var(--max-width);
  margin: 0 auto;
  align-items: start;
}
.contact__title {
  margin-bottom: 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--ink);
}
.contact__body {
  margin-bottom: 1.5rem;
  font-size: 13px;
  font-weight: 300;
  color: var(--ink-mid);
  line-height: 1.8;
}
.contact__email {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--brown);
  border-bottom: 1px solid var(--kaki);
  padding-bottom: 0.2rem;
}
.contact__form { display: flex; flex-direction: column; gap: 1rem; }
.contact__form input,
.contact__form textarea {
  padding: 0.9rem 1rem;
  font-family: var(--font-body);
  font-size: 13px;
  background: var(--white);
  border: 0.5px solid var(--cream-mid);
  border-radius: 2px;
  color: var(--ink);
}
.contact__form textarea { resize: vertical; min-height: 120px; }
.contact__or {
  text-align: center;
  margin: 1.5rem 0;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact__calendly-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.8rem;
  text-align: center;
}
.contact__calendly { text-align: center; }
.contact__note {
  margin-top: 0.8rem;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}
.form__consent {
  font-size: 10px;
  color: var(--muted);
  line-height: 1.5;
  margin-top: 0.3rem;
}

@media (max-width: 768px) {
  .contact__grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ─── CALENDLY FLOATING (sticky bottom-right) ───────── */
/* NOTE: brief v1 forbids box-shadow → using a 1px offset border instead */

.calendly-floating {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.4rem;
  background: var(--ink);
  color: var(--white);
  text-decoration: none;
  border-radius: 2px;
  border: 1px solid var(--cream);
  outline: 4px solid rgba(28, 26, 20, 0.08);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 100;
  transition: all var(--transition);
  animation: slideInRight 0.6s ease 1s both;
}
.calendly-floating:hover {
  background: var(--brown);
  border-color: var(--cream);
  transform: translateY(-2px);
}
.calendly-floating svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}
@media (max-width: 768px) {
  .calendly-floating span { display: none; }
  .calendly-floating {
    padding: 0.9rem;
    border-radius: 999px;  /* circle on mobile — purely decorative, exception to brief */
    bottom: 1rem;
    right: 1rem;
  }
}

/* ─── FOOTER ─────────────────────────────────────────── */

.footer { background: var(--ink); padding: 4rem 2rem 0; color: var(--cream); }
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  max-width: var(--max-width);
  margin: 0 auto 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(253, 251, 245, 0.1);
}
.footer__brand img { height: 40px; width: auto; margin-bottom: 1rem; }
.footer__tagline {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--kaki-light);
}
.footer__col-title {
  margin-bottom: 1rem;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--kaki);
}
.footer__col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__col a {
  font-size: 12px;
  color: rgba(253, 251, 245, 0.7);
  transition: color var(--transition);
}
.footer__col a:hover { color: var(--white); }
.footer__bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 0;
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(253, 251, 245, 0.4);
}
.footer__legal {
  padding: 1rem 0 1.5rem;
  text-align: center;
  border-top: 1px solid rgba(122, 116, 85, 0.18);
}
.footer__legal-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
}
.footer__legal-links a {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(253, 251, 245, 0.4);
  text-decoration: none;
  transition: color var(--transition);
}
.footer__legal-links a:hover { color: var(--kaki-light); }

@media (max-width: 768px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

/* ─── COOKIE BANNER ──────────────────────────────────── */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.2rem 2rem;
  background: var(--ink);
  color: var(--white);
  z-index: 9998;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
  flex-wrap: wrap;
}
.cookie-banner p {
  font-size: 12px;
  line-height: 1.5;
  margin: 0;
  flex: 1;
  min-width: 250px;
}
.cookie-banner a {
  color: var(--kaki-light);
  text-decoration: underline;
}
.cookie-banner__actions {
  display: flex;
  gap: 0.6rem;
}
.cookie-banner .btn-secondary {
  color: var(--white);
  border-color: var(--white);
}
.cookie-banner .btn-secondary:hover {
  background: var(--white);
  color: var(--ink);
}

/* ─── BLOG PAGE ──────────────────────────────────────── */

.blog-hero {
  background: var(--cream);
  padding: 8rem 2rem 4rem;
  text-align: center;
  border-bottom: 1px solid var(--kaki);
}
.blog-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-style: italic;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.blog-hero p {
  font-size: 13px;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto 1.5rem;
}

.blog-filter {
  padding: 2rem;
  border-bottom: 1px solid var(--cream-mid);
  background: var(--linen);
}
.blog-filter__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.blog-grid-section { padding: var(--section-padding); background: var(--linen); }
.blog-featured { max-width: var(--max-width); margin: 0 auto 2rem; }
.blog-featured .blog-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
}
.blog-featured .blog-card__img-wrap { aspect-ratio: auto; height: 100%; }
.blog-featured .blog-card__title { font-size: 1.5rem; }

.blog-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-featured .blog-card { grid-template-columns: 1fr; }
}
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } }

/* Ebook offert band */
.ebook-band { padding: var(--section-padding); background: var(--cream); border-top: 1px solid var(--kaki); }
.ebook-band__inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.ebook-band__title {
  margin: 0.6rem 0 0.8rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--ink);
}
.ebook-band__desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--ink-mid);
  line-height: 1.8;
}
.ebook-band__form { display: flex; flex-direction: column; gap: 0.8rem; }
.ebook-band__form input {
  padding: 0.8rem 1rem;
  border: 0.5px solid var(--cream-mid);
  background: var(--white);
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 13px;
}
.ebook-band__note {
  margin-top: 0.3rem;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
}
@media (max-width: 768px) {
  .ebook-band__inner { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* Newsletter band */
.newsletter-band {
  background: var(--ink);
  color: var(--cream);
  padding: 4rem 2rem;
  text-align: center;
  border-top: 1px solid var(--kaki);
}
.newsletter-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-style: italic;
  color: var(--cream);
  margin-bottom: 0.6rem;
}
.newsletter-band p {
  font-size: 13px;
  color: var(--kaki-light);
  margin: 0 auto 1.5rem;
  max-width: 480px;
}
.newsletter-band__form {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  max-width: 480px;
  margin: 0 auto;
}
.newsletter-band__form input {
  flex: 1;
  padding: 0.8rem 1rem;
  background: var(--white);
  border: 0;
  font-family: var(--font-body);
  font-size: 13px;
  border-radius: 2px;
}
@media (max-width: 600px) {
  .newsletter-band__form { flex-direction: column; }
}

/* ─── LEGAL PAGES (mentions, confidentialité, CGV) ──── */

.legal-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 8rem 1.5rem 4rem;
}
.legal-page h1 {
  margin-bottom: 2rem;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--ink);
  font-style: italic;
}
.legal-page section { margin-bottom: 2.5rem; }
.legal-page h2 {
  margin-bottom: 0.8rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--ink);
}
.legal-page p,
.legal-page li {
  font-size: 14px;
  line-height: 1.9;
  color: var(--ink-mid);
  margin-bottom: 0.8rem;
}
.legal-page ul {
  padding-left: 1.5rem;
  list-style: disc;
}
.legal-page a {
  color: var(--brown);
  text-decoration: underline;
}

/* ─── POST PAGE ──────────────────────────────────────── */

.post {
  max-width: 720px;
  margin: 0 auto;
  padding: 8rem 1.5rem 4rem;
}
.post__back {
  display: inline-block;
  margin-bottom: 1.5rem;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brown);
}
.post__title {
  margin: 0.8rem 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--ink);
  line-height: 1.15;
}
.post__meta {
  margin-bottom: 2rem;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.post__hero {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  margin-bottom: 2rem;
  background: var(--brown-light);
}
.post__body { font-size: 15px; line-height: 1.9; color: var(--ink-mid); }
.post__body p { margin-bottom: 1.2rem; }
.post__body h2 {
  margin: 2.5rem 0 1rem;
  font-family: var(--font-display);
  font-size: 1.6rem;
}
.post__body h3 {
  margin: 2rem 0 0.6rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
}
.post__cta-block,
.post__ebook-block {
  margin: 3rem 0;
  padding: 2rem;
  background: var(--cream);
  border-left: 3px solid var(--kaki);
}
.post__cta-block h3,
.post__ebook-block h3 {
  margin-bottom: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--ink);
}
.post__cta-block p,
.post__ebook-block p {
  margin-bottom: 1rem;
  font-size: 13px;
  color: var(--ink-mid);
}
.post__related {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--cream-mid);
}
.post__related h3 {
  margin-bottom: 1.5rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
}
.post__related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 700px) { .post__related-grid { grid-template-columns: 1fr; } }
