/* =============================================================
   Monica De Valen, production styles
   v1, mai 2026
   Validated design system applied to live site mockup.
   ============================================================= */

/* Fonts are self-hosted via assets/css/fonts.css, enqueued separately. */

:root {
  /* Palette */
  --bg-primary: #F5EFE6;
  --bg-secondary: #FAF7F2;
  --bg-deep: #EEE4D2;
  --ink: #2A2520;
  --ink-mid: #5C5247;
  --ink-soft: #8C8175;
  --gold: #B89968;
  --gold-deep: #9A7D52;
  --gold-light: #D4C5A9;
  --paper-edge: #E8DFD0;

  /* Type */
  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --display: 'Italiana', serif;
  --sans: 'Inter', system-ui, sans-serif;
  --script: 'Caveat', cursive;

  /* Spacing */
  --gutter: clamp(1.25rem, 5vw, 5rem);
  --section-gap: clamp(4rem, 9vw, 8rem);
  --section-gap-sm: clamp(2.5rem, 5vw, 5rem);
  --header-h: 76px;
}

/* =================== RESET =================== */

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select, button { font: inherit; }

body {
  background: var(--bg-primary);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "kern", "liga", "lnum";
  position: relative;
  overflow-x: hidden;
  padding-top: var(--header-h);
}

body::before {
  content: '';
  position: fixed;
  inset: -10%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 240 240' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.16 0 0 0 0 0.14 0 0 0 0 0.13 0 0 0 0.55 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.06;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: multiply;
}

/* =================== UTILITIES =================== */

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 2;
}

.container-narrow {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 2;
}

.container-prose {
  max-width: 64ch;
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 2;
}

main { position: relative; z-index: 2; }

/* Gutenberg, neutralize wp-block-group__inner-container only inside flow contexts.
   For grid/flex layouts we use wp:html blocks directly to preserve the exact markup. */
.wp-block-group > .wp-block-group__inner-container.is-layout-flow > * {
  margin-block-start: 0;
}

.hairline {
  border: 0;
  height: 1px;
  background: var(--gold-light);
  margin: 0;
}

.section {
  padding: var(--section-gap) 0;
  position: relative;
}

.section-sm { padding: var(--section-gap-sm) 0; }
.section-bg { background: var(--bg-secondary); }
.section-bg-deep { background: var(--bg-deep); }

/* Dark section, re-establishes rhythm between adjacent light sections
   (used on /reserver/ for the mail form). Text inverts like .cta-banner. */
.section-dark { background: var(--ink); color: var(--bg-secondary); }
.section-dark .section-overline { color: var(--gold-light); }
.section-dark .h2 { color: var(--bg-secondary); }
.section-dark .h2 em { color: var(--gold-light); }
.section-dark .lead { color: rgba(245, 239, 230, 0.78); }

/* On a dark section, the form sits in a light panel (echoes the tariff cards). */
.section-dark .mdv-form-wrapper--two-cols {
  background: var(--bg-secondary);
  border: 1px solid var(--paper-edge);
  border-radius: 2px;
  padding: clamp(2rem, 4vw, 3.25rem);
  box-shadow: 0 30px 60px -30px rgba(42, 37, 32, 0.45);
}

.section-overline {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--gold-deep);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  margin-bottom: 1.25rem;
}

.section-overline span,
.section-overline::before,
.section-overline::after {
  display: inline-block;
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.section-overline.left { justify-content: flex-start; }
.section-overline.left::before { display: none; }

/* Section number editorial */
.section-num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1;
  color: var(--gold);
  font-feature-settings: "onum";
}

/* Star ornaments */
.star { display: inline-block; color: var(--gold); flex-shrink: 0; }
.star-sm { width: 14px; height: 14px; }
.star-md { width: 22px; height: 22px; }
.star-lg { width: 38px; height: 38px; }

/* Section star rule */
.section-rule {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  color: var(--gold);
  margin: 0 auto 3rem;
  max-width: 1320px;
  padding: 0 var(--gutter);
}

.section-rule::before,
.section-rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gold-light);
}

/* =================== TYPOGRAPHY =================== */

.h1, h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.25rem, 4.5vw, 3.6rem);
  line-height: 1.1;
  letter-spacing: -0.012em;
  color: var(--ink);
}

.h1 em, h1 em {
  font-style: italic;
  color: var(--gold-deep);
  font-weight: 400;
}

.h2, h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  line-height: 1.2;
  letter-spacing: -0.008em;
  color: var(--ink);
}

.h2 em, h2 em {
  font-style: italic;
  color: var(--gold-deep);
  font-weight: 400;
}

.h3, h3 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.3rem, 1.8vw, 1.65rem);
  line-height: 1.25;
  color: var(--ink);
}

.lead {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  line-height: 1.55;
  color: var(--ink-mid);
}

.body, p {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink);
}

.text-mid { color: var(--ink-mid); }
.text-soft { color: var(--ink-soft); }
.text-gold { color: var(--gold-deep); }
.text-center { text-align: center; }

.label {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--gold-deep);
  text-transform: uppercase;
}

.label-ink { color: var(--ink); }
.label-mid { color: var(--ink-mid); }

.small {
  font-size: 0.875rem;
  color: var(--ink-mid);
}

/* Prose typography for article body */
.prose p { margin-bottom: 1.25rem; max-width: 64ch; }
.prose p:last-child { margin-bottom: 0; }
.prose h2 { margin-top: 3rem; margin-bottom: 1rem; }
.prose h3 { margin-top: 2.5rem; margin-bottom: 0.75rem; }
.prose blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--ink);
  margin: 2.5rem 0;
  padding-left: 2rem;
  border-left: 2px solid var(--gold);
  max-width: 60ch;
}
.prose img { margin: 2rem 0; border-radius: 2px; }
.prose a { color: var(--gold-deep); border-bottom: 1px solid var(--gold-light); transition: border 0.3s ease; }
.prose a:hover { border-bottom-color: var(--gold-deep); }

/* =================== BUTTONS =================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 1rem 2.1rem;
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 1px;
  cursor: pointer;
  transition: all 0.4s ease;
  border: 1px solid transparent;
  font-weight: 600;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--bg-secondary);
  border-color: var(--gold);
}

.btn-primary:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
  letter-spacing: 0.22em;
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.btn-secondary:hover {
  background: var(--ink);
  color: var(--bg-secondary);
  letter-spacing: 0.22em;
}

.btn-ghost {
  background: transparent;
  color: var(--gold-deep);
  border-color: transparent;
  border-bottom: 1px solid var(--gold);
  border-radius: 0;
  padding: 0.4rem 0;
  letter-spacing: 0.16em;
}

.btn-ghost:hover {
  color: var(--ink);
  border-bottom-color: var(--ink);
  letter-spacing: 0.2em;
}

.btn-light {
  background: var(--bg-secondary);
  color: var(--ink);
  border-color: var(--gold-light);
}

.btn-light:hover {
  background: var(--bg-primary);
  border-color: var(--gold);
  letter-spacing: 0.22em;
}

.btn .arrow {
  width: 14px;
  height: 1px;
  background: currentColor;
  position: relative;
  transition: transform 0.4s ease;
}

.btn .arrow::after {
  content: '';
  position: absolute;
  right: 0;
  top: -3px;
  width: 7px;
  height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}

.btn:hover .arrow { transform: translateX(4px); }

/* CTA breathing room, spacing between text content and inline buttons */
.body + .btn,
.body + .btn-row,
.body + .hero-cta,
.body + .ex-hero-cta,
.lead + .btn,
.lead + .btn-row,
.lead + .hero-cta,
.lead + .ex-hero-cta,
p + .btn,
p + .btn-row,
p + .hero-cta,
p + .ex-hero-cta,
.engagement-list + .btn,
.engagement-list + .btn-row,
.tariff-feats + .btn { margin-top: 1.75rem; }

/* Safety net, text-block wrappers around CTAs always have spacing */
.text-block > .btn,
.text-block > .btn-row,
.text-block > .hero-cta,
.text-block > p:has(> .btn),
p:has(> .btn) + p,
.body + p:has(> .btn),
.lead + p:has(> .btn) { margin-top: 1.75rem; }

/* CTA after a row of cards or a grid section, breathing room. */
.cards-row + p,
.cards-row + .btn,
.cards-row + .btn-row,
.grid-2 + p,
.grid-2 + .btn,
.grid-3 + p,
.grid-3 + .btn,
.pillars-grid + p,
.pillars-grid + .btn,
.image-fragments + p,
.image-fragments + .btn,
.image-pair + p,
.image-pair + .btn,
.image-triple + p,
.image-triple + .btn,
.steps + p,
.steps + .btn,
.manifesto-list + p,
.manifesto-list + .btn,
.tariff-feats + p { margin-top: 2.5rem; }

/* =================== HEADER =================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  background: rgba(245, 239, 230, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gold-light);
  z-index: 50;
  display: flex;
  align-items: center;
  transition: background 0.3s ease;
}

.site-header-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.site-logo {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: -0.01em;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  line-height: 1;
}

.site-logo .star {
  color: var(--gold);
  width: 18px;
  height: 18px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  flex-wrap: wrap;
}

.site-nav a {
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mid);
  position: relative;
  padding: 0.4rem 0;
  transition: color 0.3s ease;
}

.site-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.site-nav a:hover { color: var(--ink); }
.site-nav a:hover::after,
.site-nav a.active::after { transform: scaleX(1); }
.site-nav a.active { color: var(--ink); }

.site-nav a.btn {
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.7rem 1.5rem;
  font-size: 0.74rem;
  border-radius: 1px;
}

.site-nav a.btn-primary {
  background: var(--gold);
  border: 1px solid var(--gold);
  color: var(--bg-secondary);
}

.site-nav a.btn-primary:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
  color: var(--bg-secondary);
  letter-spacing: 0.22em;
}

.site-nav a.btn::after { display: none; }

/* Header on scroll */
.site-header.scrolled {
  background: rgba(245, 239, 230, 0.98);
  box-shadow: 0 1px 0 rgba(212, 197, 169, 0.55);
}

/* Mobile burger */
.nav-toggle {
  display: none;
  width: 30px;
  height: 18px;
  position: relative;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.nav-toggle span {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--ink);
  transition: all 0.3s ease;
}

.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 50%; }
.nav-toggle span:nth-child(3) { bottom: 0; }

@media (max-width: 1080px) {
  .site-nav { display: none; }
  .site-nav.open {
    display: flex;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--bg-primary);
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem var(--gutter);
    gap: 0.6rem;
    border-bottom: 1px solid var(--gold-light);
  }
  .site-nav.open a { padding: 0.8rem 0; border-bottom: 1px solid var(--paper-edge); }
  .nav-toggle { display: flex; flex-direction: column; justify-content: space-between; }
}

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

.hero {
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(3rem, 6vw, 5rem);
  position: relative;
}

.hero-tall {
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(3.5rem, 7vw, 6rem);
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
}

.hero-short {
  padding: clamp(3rem, 5vw, 4.5rem) 0 clamp(2.5rem, 4vw, 3.5rem);
  text-align: center;
}

.hero-short .h1 { max-width: 18ch; margin: 0 auto 1rem; }
.hero-short .lead { max-width: 50ch; margin: 0 auto; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-content > .label { margin-bottom: 1.5rem; display: inline-block; }
.hero-content > .h1 { margin-bottom: 1.25rem; max-width: 16ch; }
.hero-content > .lead { margin-bottom: 2rem; max-width: 32em; }

.hero-cta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero-cta-center { justify-content: center; margin-top: 2rem; }

.hero-trust {
  margin-top: 2.5rem;
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--ink-mid);
  text-transform: uppercase;
  border-top: 1px solid var(--gold-light);
  padding-top: 1.25rem;
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(42, 37, 32, 0.18);
}

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

.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(245, 239, 230, 0.18));
  pointer-events: none;
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* Hero Editorial Split (validé V1, intégré comme hero principal) */
.hero-ep {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  align-items: stretch;
  height: calc(100vh - var(--header-h));
  min-height: 560px;
  max-height: 900px;
  position: relative;
  overflow: hidden;
}

.hero-ep-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 4vw, 4rem) clamp(3rem, 6vw, 5rem) var(--gutter);
  max-width: 660px;
  margin-left: auto;
  width: 100%;
  position: relative;
}

.hero-ep-title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(2.4rem, 5.2vw, 4.4rem);
  line-height: 1.04;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin-bottom: 1.5rem;
}

.hero-ep-title em { color: var(--gold-deep); font-weight: 400; font-style: italic; }

.hero-ep-lead {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.1rem, 1.5vw, 1.32rem);
  line-height: 1.55;
  color: var(--ink-mid);
  margin-bottom: 2.25rem;
  max-width: 32em;
}

.hero-ep-cta {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  flex-wrap: wrap;
}

.hero-ep-image {
  position: relative;
  overflow: hidden;
  background: var(--bg-deep);
}

.hero-ep-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.hero-ep-image-star {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 36px;
  height: 36px;
  color: var(--bg-secondary);
  z-index: 2;
  filter: drop-shadow(0 2px 8px rgba(42, 37, 32, 0.25));
}

@media (max-width: 980px) {
  .hero-ep { grid-template-columns: 1fr; height: auto; min-height: auto; max-height: none; }
  .hero-ep-text { padding: 4rem var(--gutter) 3rem; max-width: none; margin-left: 0; }
  .hero-ep-image { aspect-ratio: 4/3; min-height: 380px; }
}

/* =================== CARDS =================== */

.cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 900px) { .cards-row { grid-template-columns: 1fr; } }

/* Two-up variant, used on /reserver/ for 15min vs 30min Cal.com options. */
.cards-row.cards-cal {
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 820px;
  margin-inline: auto;
}

.cards-row.cards-cal .btn { align-self: flex-start; margin-top: 0.5rem; }

@media (max-width: 700px) {
  .cards-row.cards-cal { grid-template-columns: 1fr; }
}

.card {
  background: var(--bg-secondary);
  padding: 2.25rem 2rem;
  border: 1px solid var(--paper-edge);
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}

.card-clickable { cursor: pointer; }

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s ease;
}

.card:hover { border-color: var(--gold-light); }
.card:hover::before { transform: scaleX(1); }

.card-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 1.5rem;
  color: var(--gold-deep);
  stroke-width: 0.7;
}

.card-overline {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold-deep);
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.card-title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--ink);
  margin-bottom: 0.7rem;
  line-height: 1.2;
}

.card-text {
  font-family: var(--sans);
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--ink-mid);
  margin-bottom: 1.4rem;
  flex: 1;
}

.card-link {
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--gold-deep);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  align-self: flex-start;
  border-bottom: 1px solid var(--gold-light);
  padding-bottom: 0.3rem;
  transition: all 0.4s ease;
}

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

.card-link .arrow {
  width: 12px;
  height: 1px;
  background: currentColor;
  position: relative;
  transition: transform 0.4s ease;
}

.card-link .arrow::after {
  content: '';
  position: absolute;
  right: 0;
  top: -3px;
  width: 6px;
  height: 6px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}

.card-link:hover .arrow { transform: translateX(4px); }

/* Tariff cards */
.tariff-card {
  text-align: center;
  padding: 2.5rem 1.75rem;
  background: var(--bg-secondary);
  border: 1px solid var(--paper-edge);
  border-radius: 2px;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

/* Push the CTA to the bottom so every card's button aligns on one line,
   regardless of how many features each card lists. */
.tariff-card .btn { align-self: center; margin-top: auto; }

.tariff-card.featured {
  background: var(--ink);
  color: var(--bg-secondary);
  border-color: var(--gold);
  transform: translateY(-12px);
  box-shadow: 0 30px 60px -30px rgba(42, 37, 32, 0.3);
}

.tariff-card.featured .tariff-price,
.tariff-card.featured .tariff-name { color: var(--bg-secondary); }
.tariff-card.featured .tariff-spec { color: rgba(245, 239, 230, 0.7); }
.tariff-card.featured .tariff-feat { color: rgba(245, 239, 230, 0.85); }
.tariff-card.featured .tariff-feat::before { background: var(--gold); }

.tariff-overline {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--gold-deep);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.tariff-name {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.tariff-price {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 0.4rem;
  color: var(--ink);
}

.tariff-spec {
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--ink-mid);
  margin-bottom: 1.75rem;
}

.tariff-feats { list-style: none; padding: 0; margin: 0 0 2rem; }
.tariff-feat {
  font-family: var(--sans);
  font-size: 0.92rem;
  color: var(--ink);
  padding: 0.4rem 0;
  position: relative;
  padding-left: 1.4rem;
  text-align: left;
}
.tariff-feat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1em;
  width: 8px;
  height: 1px;
  background: var(--gold);
}

/* =================== FORM =================== */

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem 2rem;
}

.form-grid .full { grid-column: 1 / -1; }

@media (max-width: 700px) { .form-grid { grid-template-columns: 1fr; } }

.field-label {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  display: block;
  margin-bottom: 0.7rem;
}

.field {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--gold-light);
  padding: 0.7rem 0;
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--ink);
  transition: border-color 0.3s ease;
  font-style: italic;
  font-weight: 400;
}

.field::placeholder { color: var(--ink-soft); font-style: italic; }
.field:focus { outline: none; border-bottom-color: var(--gold); }

textarea.field { resize: vertical; min-height: 100px; line-height: 1.5; }

select.field {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath stroke='%239A7D52' stroke-width='1' fill='none' d='M3 6l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.4rem center;
  background-size: 14px;
  padding-right: 1.5rem;
}

/* =================== WPFORMS BRAND OVERRIDE =================== */
/* WPForms Modern markup ships with high-specificity rules + its own CSS vars.
   Strategy:
   1. Override the WPForms CSS variables on the container, so var-driven
      properties (button bg, field border-radius, etc.) follow our brand.
   2. Force-override the rest with !important on a tighter scope, since
      `wpforms-full.min.css` is enqueued after the theme css. */

.mdv-form-wrapper .wpforms-container {
  /* Field vars */
  --wpforms-field-border-color: var(--gold-light);
  --wpforms-field-border-radius: 0;
  --wpforms-field-border-size: 0;
  --wpforms-field-background-color: transparent;
  --wpforms-field-text-color: var(--ink);
  /* Label vars */
  --wpforms-label-color: var(--ink);
  --wpforms-label-error-color: #B33A3A;
  --wpforms-label-sublabel-color: var(--ink-soft);
  /* Button vars */
  --wpforms-button-background-color: var(--gold);
  --wpforms-button-text-color: var(--bg-secondary);
  --wpforms-button-border-color: var(--gold);
  --wpforms-button-border-radius: 0;
  --wpforms-button-border-size: 1px;
  /* Reset container, fit our layout */
  margin: 0 !important;
  max-width: none !important;
}

.mdv-form-wrapper .wpforms-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem 2rem;
}

/* Two-column variant, used on /reserver/ where prénom + e-mail sit side by side. */
.mdv-form-wrapper--two-cols .wpforms-form {
  grid-template-columns: 1fr 1fr;
}

.mdv-form-wrapper--two-cols .wpforms-field-textarea,
.mdv-form-wrapper--two-cols .wpforms-submit-container {
  grid-column: 1 / -1;
}

@media (max-width: 700px) {
  .mdv-form-wrapper--two-cols .wpforms-form {
    grid-template-columns: 1fr;
  }
}

.mdv-form-wrapper .wpforms-field-container {
  display: contents;
}

.mdv-form-wrapper .wpforms-field {
  padding: 0 !important;
  margin: 0 !important;
}

/* Labels */
.mdv-form-wrapper .wpforms-field-label {
  font-family: var(--sans) !important;
  font-size: 0.78rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  color: var(--ink) !important;
  display: block !important;
  margin: 0 0 0.7rem 0 !important;
}

.mdv-form-wrapper .wpforms-required-label {
  color: var(--gold);
  margin-left: 0.25rem;
  font-weight: 400;
}

/* Inputs / textareas, underline-only style */
.mdv-form-wrapper .wpforms-field input[type="text"],
.mdv-form-wrapper .wpforms-field input[type="email"],
.mdv-form-wrapper .wpforms-field input[type="tel"],
.mdv-form-wrapper .wpforms-field input[type="url"],
.mdv-form-wrapper .wpforms-field input[type="number"],
.mdv-form-wrapper .wpforms-field textarea,
.mdv-form-wrapper .wpforms-field select {
  width: 100% !important;
  background: transparent !important;
  border: none !important;
  border-bottom: 1px solid var(--gold-light) !important;
  border-radius: 0 !important;
  padding: 0.7rem 0 !important;
  font-family: var(--serif) !important;
  font-size: 1.05rem !important;
  color: var(--ink) !important;
  transition: border-color 0.3s ease !important;
  font-style: italic !important;
  font-weight: 400 !important;
  box-shadow: none !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  height: auto !important;
  line-height: 1.4 !important;
}

.mdv-form-wrapper .wpforms-field input::placeholder,
.mdv-form-wrapper .wpforms-field textarea::placeholder {
  color: var(--ink-soft) !important;
  font-style: italic !important;
  opacity: 1 !important;
}

.mdv-form-wrapper .wpforms-field input:focus,
.mdv-form-wrapper .wpforms-field textarea:focus,
.mdv-form-wrapper .wpforms-field select:focus {
  outline: none !important;
  border-bottom-color: var(--gold) !important;
  box-shadow: none !important;
}

.mdv-form-wrapper .wpforms-field textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.5 !important;
}

/* Submit button */
.mdv-form-wrapper .wpforms-submit-container {
  margin-top: 0.5rem !important;
  padding: 0 !important;
}

.mdv-form-wrapper button.wpforms-submit,
.mdv-form-wrapper input.wpforms-submit {
  display: inline-flex !important;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--sans) !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  padding: 1rem 2rem !important;
  border: 1px solid var(--gold) !important;
  background: var(--gold) !important;
  color: var(--bg-secondary) !important;
  cursor: pointer !important;
  border-radius: 0 !important;
  height: auto !important;
  line-height: 1.2 !important;
  width: auto !important;
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease !important;
}

.mdv-form-wrapper button.wpforms-submit:hover,
.mdv-form-wrapper button.wpforms-submit:focus,
.mdv-form-wrapper input.wpforms-submit:hover,
.mdv-form-wrapper input.wpforms-submit:focus {
  background: var(--gold-deep) !important;
  border-color: var(--gold-deep) !important;
  color: var(--bg-secondary) !important;
  outline: none !important;
}

/* Validation messages */
.mdv-form-wrapper .wpforms-error {
  font-family: var(--sans) !important;
  font-size: 0.8rem !important;
  color: #B33A3A !important;
  margin-top: 0.4rem !important;
  font-style: normal !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  font-weight: 400 !important;
}

.mdv-form-wrapper .wpforms-field input.wpforms-error,
.mdv-form-wrapper .wpforms-field textarea.wpforms-error,
.mdv-form-wrapper .wpforms-field select.wpforms-error {
  border-bottom-color: #B33A3A !important;
}

/* Confirmation, after AJAX submit */
.mdv-form-wrapper .wpforms-confirmation-container,
.mdv-form-wrapper .wpforms-confirmation-container-full,
.mdv-form-wrapper div.wpforms-confirmation-container-full:not(.wpforms-redirection-message) {
  background: var(--bg-deep) !important;
  border: 1px solid var(--gold-light) !important;
  border-radius: 2px !important;
  padding: 1.5rem 1.75rem !important;
  font-family: var(--serif) !important;
  font-size: 1.05rem !important;
  font-style: italic !important;
  color: var(--ink) !important;
  margin: 0 !important;
}

.mdv-form-wrapper .wpforms-confirmation-container p {
  margin: 0 !important;
}

.mdv-form-wrapper .wpforms-submit-spinner {
  margin-left: 0.5rem;
  filter: invert(1) brightness(2);
}

.mdv-form-wrapper .wpforms-error-noscript {
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--ink-mid);
}

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

.quote {
  position: relative;
  padding: 2.5rem 1rem 2rem 4rem;
  max-width: 56ch;
  margin: 0 auto;
}

.quote::before {
  content: '"';
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 7rem;
  line-height: 0.8;
  color: var(--gold-light);
}

.quote-text {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.3rem, 1.8vw, 1.65rem);
  line-height: 1.5;
  color: var(--ink);
}

.quote-attr {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.quote-rule {
  width: 36px;
  height: 1px;
  background: var(--gold);
}

.quote-name {
  font-family: var(--script);
  font-weight: 500;
  font-size: 1.4rem;
  color: var(--gold-deep);
  line-height: 1;
}

.quote-meta {
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mid);
}

/* Pull quote variant */
.pull-quote {
  text-align: center;
  padding: 2rem 1rem;
  max-width: 60ch;
  margin: 0 auto;
}

.pull-quote .quote-text {
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  color: var(--ink);
}

.pull-quote .quote-attr { justify-content: center; margin-top: 2rem; }

/* =================== STEPS =================== */

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}

@media (max-width: 900px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .steps { grid-template-columns: 1fr; } }

.step {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.step-num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 2.5rem;
  line-height: 1;
  color: var(--gold);
}

.step-title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.35rem;
  color: var(--ink);
}

.step-text {
  font-family: var(--sans);
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--ink-mid);
}

/* =================== FAQ ACCORDION =================== */

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

.faq-item {
  border-bottom: 1px solid var(--gold-light);
  padding: 1.5rem 0;
}

.faq-item summary {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--ink);
  cursor: pointer;
  position: relative;
  padding-right: 2rem;
  list-style: none;
  transition: color 0.3s ease;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.6rem;
  color: var(--gold);
  line-height: 1;
  transition: transform 0.3s ease;
}

.faq-item[open] summary { color: var(--gold-deep); }
.faq-item[open] summary::after { content: '\2014'; }

.faq-answer {
  margin-top: 1rem;
  font-family: var(--sans);
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--ink-mid);
  max-width: 64ch;
}

/* =================== TESTIMONIAL CARD =================== */

.testimonial-card {
  background: var(--bg-secondary);
  border: 1px solid var(--paper-edge);
  border-radius: 2px;
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  transition: border-color 0.4s ease;
}

.testimonial-card:hover { border-color: var(--gold-light); }

.testimonial-card .star { color: var(--gold-deep); }

.testimonial-text {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1.55;
  color: var(--ink);
}

.testimonial-attr {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: auto;
  padding-top: 0.5rem;
  border-top: 1px solid var(--paper-edge);
}

.testimonial-attr .quote-rule { background: var(--gold); }
.testimonial-attr .name { font-family: var(--script); font-weight: 500; font-size: 1.35rem; color: var(--gold-deep); }
.testimonial-attr .meta { font-family: var(--sans); font-size: 0.74rem; letter-spacing: 0.14em; color: var(--ink-mid); text-transform: uppercase; font-weight: 500; }

/* =================== ARTICLE CARD =================== */

.article-card { display: flex; flex-direction: column; gap: 1rem; cursor: pointer; }

.article-card-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 2px;
  background: var(--bg-deep);
  position: relative;
}

.article-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.article-card:hover .article-card-img img { transform: scale(1.04); }

.article-card-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mid);
}

.article-card-meta .dot { width: 4px; height: 4px; background: var(--gold); border-radius: 50%; }

.article-card-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.45rem;
  line-height: 1.25;
  color: var(--ink);
  transition: color 0.3s ease;
}

.article-card:hover .article-card-title { color: var(--gold-deep); }

.article-card-excerpt {
  font-family: var(--sans);
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--ink-mid);
}

/* Featured article */
.article-featured {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 900px) { .article-featured { grid-template-columns: 1fr; } }

.article-featured-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 2px;
}

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

.article-featured-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  line-height: 1.2;
  color: var(--ink);
  margin: 1rem 0;
}

/* =================== CTA BANNER =================== */

.cta-banner {
  background: var(--ink);
  color: var(--bg-secondary);
  padding: clamp(3rem, 6vw, 5rem) 0;
  text-align: center;
  position: relative;
}

.cta-banner .h2 { color: var(--bg-secondary); margin-bottom: 1rem; }
.cta-banner .h2 em { color: var(--gold-light); }
.cta-banner .lead { color: rgba(245, 239, 230, 0.78); margin: 0 auto 2rem; max-width: 50ch; }

.cta-banner .btn-primary {
  background: var(--gold);
  color: var(--bg-secondary);
  border-color: var(--gold);
}
.cta-banner .btn-primary:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
  color: var(--bg-secondary);
  letter-spacing: 0.22em;
}

/* Ghost button on dark backgrounds (CTA banner, editorial-quote) */
.cta-banner .btn-ghost,
.editorial-quote .btn-ghost {
  color: var(--gold-light);
  border-bottom-color: var(--gold);
}

.cta-banner .btn-ghost:hover,
.editorial-quote .btn-ghost:hover {
  color: var(--bg-secondary);
  border-bottom-color: var(--bg-secondary);
}

/* =================== SECTION HEAD STANDARD =================== */

.section-head {
  text-align: center;
  margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
}

.section-head .h2 { max-width: 22ch; margin: 0 auto 1rem; }
.section-head .lead { max-width: 50ch; margin: 0 auto; }

.section-head.left { text-align: left; }
.section-head.left .h2,
.section-head.left .lead { margin-left: 0; }

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

.site-footer {
  background: var(--ink);
  color: rgba(245, 239, 230, 0.72);
  padding: clamp(3rem, 5vw, 4.5rem) 0 2rem;
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

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

.footer-brand .site-logo {
  color: var(--bg-secondary);
  margin-bottom: 1rem;
}

.footer-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.55;
  color: rgba(245, 239, 230, 0.7);
  margin-bottom: 1.5rem;
  max-width: 32ch;
}

.footer-signature {
  font-family: var(--script);
  font-weight: 500;
  font-size: 1.6rem;
  color: var(--gold-light);
  line-height: 1;
}

.footer-col-title {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}

.footer-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.7rem; }

.footer-list a {
  font-family: var(--sans);
  font-size: 0.92rem;
  color: rgba(245, 239, 230, 0.72);
  transition: color 0.3s ease;
}

.footer-list a:hover { color: var(--gold-light); }

.footer-contact-line {
  font-family: var(--sans);
  font-size: 0.92rem;
  color: rgba(245, 239, 230, 0.72);
  margin-bottom: 0.4rem;
}

.footer-contact-line strong {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: block;
  margin-bottom: 0.4rem;
}

.footer-bottom {
  border-top: 1px solid rgba(212, 197, 169, 0.14);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-legal-links a {
  font-family: var(--sans);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  font-weight: 500;
  text-transform: uppercase;
  color: rgba(245, 239, 230, 0.55);
  transition: color 0.3s ease;
}

.footer-legal-links a:hover { color: var(--gold-light); }

.footer-credit {
  font-family: var(--sans);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  font-weight: 500;
  text-transform: uppercase;
  color: rgba(245, 239, 230, 0.55);
}

/* =================== ARTICLE PAGE =================== */

.article-hero {
  text-align: center;
  padding: clamp(3rem, 5vw, 4.5rem) 0 clamp(2rem, 3vw, 3rem);
}

.article-hero .label { margin-bottom: 1rem; display: inline-block; }
.article-hero .h1 { max-width: 24ch; margin: 0 auto 1.5rem; }

.article-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-mid);
}

.article-meta .dot { width: 4px; height: 4px; background: var(--gold); border-radius: 50%; }

.article-hero-img {
  margin: 2.5rem auto 0;
  max-width: 1100px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 2px;
}

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

/* =================== UTILS GRID =================== */

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

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

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; gap: 2.5rem; } }

.about-img {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 30px 60px -30px rgba(42, 37, 32, 0.18);
}

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

/* Pillars */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 900px) { .pillars-grid { grid-template-columns: 1fr; } }

.pillar {
  position: relative;
  padding-left: 0;
  text-align: left;
}

.pillar-num-roman {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.pillar-title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.4rem;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.pillar-text {
  font-family: var(--sans);
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--ink-mid);
}

/* Code de déontologie, layout avec sceau à droite et liste manifeste à gauche */
.eng-cadre-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  margin-top: 2rem;
}

@media (max-width: 980px) {
  .eng-cadre-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .eng-cadre-grid .eng-cadre-seal { order: -1; max-width: 280px; margin: 0 auto; }
}

.eng-cadre-seal {
  position: sticky;
  top: calc(var(--header-h) + 2.5rem);
  align-self: start;
}

.eng-seal {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.eng-seal-svg {
  width: 100%;
  max-width: 280px;
  height: auto;
  color: var(--gold);
  display: block;
}

.eng-seal-cap {
  margin-top: 1rem;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  color: var(--gold-deep);
  text-transform: uppercase;
  text-align: center;
}

/* Charte éthique, lettrines */
.pillars-grid.dropcaps .pillar-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.pillars-grid.dropcaps .pillar-title::first-letter {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 2.4em;
  line-height: 0.85;
  color: var(--gold-deep);
  float: left;
  margin: 0.05em 0.18em 0 0;
}

/* Parcours story, portrait sticky + 3 chapitres narratifs avec timeline étoilée */
.parcours-story {
  padding: clamp(4rem, 7vw, 6rem) 0;
}

.parcours-story-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.parcours-story-aside {
  position: sticky;
  top: calc(var(--header-h) + 2rem);
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.parcours-story-portrait {
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 30px 60px -28px rgba(42, 37, 32, 0.18);
}

.parcours-story-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.parcours-story-portrait:hover img { transform: scale(1.04); }

.parcours-story-cap {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  color: var(--ink-mid);
  text-transform: uppercase;
  padding-top: 1rem;
  border-top: 1px solid var(--gold-light);
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.parcours-story-cap svg { width: 14px; height: 14px; color: var(--gold); }

.parcours-story-chapters {
  position: relative;
  padding-left: clamp(2rem, 4vw, 3rem);
}

.parcours-story-chapters::before {
  content: '';
  position: absolute;
  left: clamp(0.5rem, 1vw, 0.85rem);
  top: 1rem;
  bottom: 1rem;
  width: 1px;
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-light) 100%);
}

.parcours-story-chapter {
  position: relative;
  padding: 1.5rem 0 2.25rem;
}

.parcours-story-chapter:not(:last-child) { border-bottom: 1px solid var(--paper-edge); }

.parcours-story-chapter::before {
  content: '';
  position: absolute;
  left: calc(-1 * clamp(1.5rem, 3.6vw, 2.59rem));
  top: 1.85rem;
  width: 14px;
  height: 14px;
  background: var(--gold);
  border-radius: 50%;
  border: 3px solid var(--bg-primary);
  box-shadow: 0 0 0 1px var(--gold);
}

.parcours-story-chapter .roman {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
  display: block;
}

.parcours-story-chapter h3 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 1rem;
}

.parcours-story-chapter h3 em { color: var(--gold-deep); }

.parcours-story-chapter p {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-mid);
  margin: 0 0 0.75rem;
  max-width: 56ch;
}

.parcours-story-chapter p:last-child { margin-bottom: 0; }

@media (max-width: 900px) {
  .parcours-story-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .parcours-story-aside { position: static; max-width: 420px; margin: 0 auto; }
}

/* Manifesto list, horizontal numbered rows with hairline dividers */
.manifesto-list {
  display: flex;
  flex-direction: column;
  margin-top: 1rem;
}

.manifesto-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  padding: clamp(1.75rem, 3vw, 2.5rem) 0;
  border-top: 1px solid var(--gold-light);
  align-items: start;
}

.manifesto-row:last-child { border-bottom: 1px solid var(--gold-light); }

.manifesto-row:hover .manifesto-num {
  color: var(--gold-deep);
  transform: translateX(4px);
}

@media (max-width: 720px) {
  .manifesto-row { grid-template-columns: 1fr; gap: 0.5rem; padding: 1.5rem 0; }
}

.manifesto-num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.5rem, 4.5vw, 3.6rem);
  line-height: 0.95;
  color: var(--gold);
  font-feature-settings: "onum";
  transition: color 0.4s ease, transform 0.5s ease;
}

.manifesto-content {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding-top: 0.5rem;
}

.manifesto-row-title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.3rem, 1.8vw, 1.65rem);
  line-height: 1.2;
  color: var(--ink);
  margin: 0;
}

.manifesto-row-text {
  font-family: var(--sans);
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--ink-mid);
  max-width: 64ch;
  margin: 0;
}

/* Hero short with decorative footer */
.hero-short-deco {
  margin-top: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mid);
}

.hero-short-deco span.line {
  width: 36px;
  height: 1px;
  background: var(--gold);
  display: block;
}

.hero-short-deco .star { color: var(--gold); width: 14px; height: 14px; }

/* Engagement double col */
.engagement-block {
  background: var(--bg-secondary);
  border: 1px solid var(--paper-edge);
  border-radius: 2px;
  padding: 2.5rem 2.25rem;
}

.engagement-overline {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 1rem;
}

.engagement-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.7rem;
  margin-bottom: 1.5rem;
  color: var(--ink);
}

.engagement-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.engagement-list li {
  font-family: var(--sans);
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--ink-mid);
  position: relative;
  padding-left: 2rem;
}

.engagement-list li::before {
  content: counter(eng-counter, upper-roman) '.';
  counter-increment: eng-counter;
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--gold-deep);
  font-weight: 500;
}

.engagement-list { counter-reset: eng-counter; }

/* Calendly embed placeholder, used in mockup before real widget integration */
.booking-placeholder {
  margin-top: 2rem;
  background: var(--bg-secondary);
  border: 1px solid var(--paper-edge);
  border-radius: 2px;
  padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 4vw, 4rem);
  text-align: center;
  position: relative;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}

.booking-placeholder .star { width: 36px; height: 36px; color: var(--gold); }

.booking-placeholder .placeholder-tag {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.74rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.booking-placeholder .placeholder-title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  color: var(--ink);
  margin: 0;
}

.booking-placeholder .placeholder-text {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-mid);
  max-width: 52ch;
  margin: 0 auto;
}

.booking-placeholder::before,
.booking-placeholder::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  border: 1px solid var(--gold);
}

.booking-placeholder::before {
  top: 0.85rem;
  left: 0.85rem;
  border-right: none;
  border-bottom: none;
}

.booking-placeholder::after {
  bottom: 0.85rem;
  right: 0.85rem;
  border-left: none;
  border-top: none;
}

/* Calendar mock */
.cal-mock {
  background: var(--bg-secondary);
  border: 1px solid var(--paper-edge);
  border-radius: 2px;
  padding: 2rem;
}

.cal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.cal-month {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.4rem;
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.4rem;
}

.cal-day-name {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-align: center;
  padding: 0.5rem 0;
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--ink);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cal-day:hover { background: var(--bg-primary); color: var(--gold-deep); }
.cal-day.muted { color: var(--ink-soft); pointer-events: none; }
.cal-day.available { color: var(--gold-deep); font-weight: 500; }
.cal-day.selected { background: var(--gold); color: var(--bg-secondary); }
.cal-day.unavailable { color: var(--ink-soft); text-decoration: line-through; pointer-events: none; }

/* Slot grid */
.slot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.slot {
  padding: 0.85rem 1rem;
  background: transparent;
  border: 1px solid var(--gold-light);
  border-radius: 1px;
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.slot:hover { border-color: var(--gold); color: var(--gold-deep); }
.slot.selected { background: var(--gold); color: var(--bg-secondary); border-color: var(--gold); }

/* Payment logos row */
.payment-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 1.5rem 0;
}

.payment-chip {
  padding: 0.6rem 1rem;
  border: 1px solid var(--paper-edge);
  border-radius: 1px;
  background: var(--bg-secondary);
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-mid);
  letter-spacing: 0.04em;
}

/* =================== ANIMATIONS =================== */

/* Reveals triggered by intersection observer (animations.js adds .in-view) */
.reveal-up,
.reveal-in,
.reveal-stagger > * {
  will-change: opacity, transform;
}

.reveal-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-up.in-view { opacity: 1; transform: translateY(0); }

.reveal-in {
  opacity: 0;
  transition: opacity 1.3s ease;
}
.reveal-in.in-view { opacity: 1; }

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-stagger.in-view > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.in-view > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.in-view > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger.in-view > *:nth-child(3) { transition-delay: 0.2s; }
.reveal-stagger.in-view > *:nth-child(4) { transition-delay: 0.3s; }
.reveal-stagger.in-view > *:nth-child(5) { transition-delay: 0.4s; }
.reveal-stagger.in-view > *:nth-child(6) { transition-delay: 0.5s; }
.reveal-stagger.in-view > *:nth-child(7) { transition-delay: 0.6s; }
.reveal-stagger.in-view > *:nth-child(8) { transition-delay: 0.7s; }

/* Marquee for editorial line scroll */
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.marquee-wrapper {
  overflow: hidden;
  padding: 1.75rem 0;
  border-top: 1px solid var(--gold-light);
  border-bottom: 1px solid var(--gold-light);
  background: var(--bg-secondary);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 2.75rem;
  animation: marquee 50s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.marquee-item {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.15rem, 1.6vw, 1.55rem);
  color: var(--ink-mid);
  flex-shrink: 0;
}

.marquee-sep {
  color: var(--gold);
  flex-shrink: 0;
}

@media (prefers-reduced-motion: reduce) {
  .reveal-up, .reveal-in, .reveal-stagger > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .marquee-track { animation: none !important; }
}

/* =================== EDITORIAL IMAGE PRESENTATIONS =================== */

.image-bleed {
  width: 100vw;
  position: relative;
  left: 50%;
  margin-left: -50vw;
  height: clamp(380px, 55vh, 620px);
  overflow: hidden;
}

.image-bleed img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.image-bleed::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(245, 239, 230, 0.05), rgba(245, 239, 230, 0.18));
  pointer-events: none;
}

.image-pair {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 1.5rem;
  align-items: end;
}

.image-pair > * {
  overflow: hidden;
  border-radius: 2px;
}

.image-pair .pair-portrait {
  aspect-ratio: 3 / 4;
}

.image-pair .pair-landscape {
  aspect-ratio: 4 / 3;
}

.image-pair img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.image-pair > *:hover img { transform: scale(1.04); }

@media (max-width: 800px) {
  .image-pair { grid-template-columns: 1fr; }
}

/* Fragments diptych, two images same aspect ratio side by side */
.image-fragments {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(0.75rem, 1.5vw, 1.5rem);
  align-items: stretch;
}

.image-fragments > .image-frame { aspect-ratio: 4/5; }

@media (max-width: 700px) {
  .image-fragments { grid-template-columns: 1fr; }
}

.image-frame {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 2px;
  position: relative;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.image-frame:hover img { transform: scale(1.04); }

.image-frame.landscape { aspect-ratio: 16 / 9; }
.image-frame.square { aspect-ratio: 1; }
.image-frame.tall { aspect-ratio: 3 / 5; }

.image-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 65%, rgba(245, 239, 230, 0.18));
  pointer-events: none;
}

/* Editorial quote on dark image background */
.editorial-quote {
  position: relative;
  padding: clamp(4rem, 8vw, 7rem) 0;
  text-align: center;
  color: var(--bg-secondary);
  overflow: hidden;
}

.editorial-quote-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.editorial-quote-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.editorial-quote-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(42, 37, 32, 0.55), rgba(42, 37, 32, 0.7));
}

.editorial-quote .container {
  position: relative;
  z-index: 1;
}

.editorial-quote .quote-text {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  line-height: 1.5;
  color: var(--bg-secondary);
  max-width: 50ch;
  margin: 0 auto;
}

.editorial-quote .quote-attr {
  justify-content: center;
  margin-top: 2rem;
}

.editorial-quote .quote-name { color: var(--gold-light); }
.editorial-quote .quote-meta { color: rgba(245, 239, 230, 0.7); }
.editorial-quote .quote-rule { background: var(--gold-light); }

/* Editorial split, alternating image/text rows */
.editorial-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.editorial-split.reverse > .image-frame { order: 2; }

@media (max-width: 800px) {
  .editorial-split { grid-template-columns: 1fr; }
  .editorial-split.reverse > .image-frame { order: 0; }
}

.editorial-split .text-block .label { display: inline-block; margin-bottom: 1rem; }
.editorial-split .text-block .h2 { margin-bottom: 1.25rem; }
.editorial-split .text-block .lead { margin-bottom: 1.25rem; }

/* Image triple grid */
.image-triple {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 1rem;
  align-items: center;
}

.image-triple > .image-frame:nth-child(1) { aspect-ratio: 3 / 4; }
.image-triple > .image-frame:nth-child(2) { aspect-ratio: 4 / 5; }
.image-triple > .image-frame:nth-child(3) { aspect-ratio: 3 / 4; transform: translateY(2rem); }

@media (max-width: 800px) {
  .image-triple { grid-template-columns: 1fr 1fr; }
  .image-triple > *:nth-child(3) { display: none; }
}

/* =================== COOKIEYES BANNER, BRAND OVERRIDE =================== */
/* Inline styles set by cky_banner_template are overridden via !important.
   Targets cky-* selectors used by CookieYes Lite (free version). */

.cky-consent-bar,
.cky-preference-center {
  font-family: var(--sans) !important;
  background-color: var(--bg-secondary) !important;
  border-color: var(--gold-light) !important;
  border-radius: 4px !important;
  box-shadow: 0 2px 24px rgba(42, 37, 32, 0.08) !important;
}

.cky-consent-container {
  max-width: 560px !important;
}

.cky-title,
.cky-preference-title {
  font-family: var(--serif) !important;
  font-style: italic !important;
  font-weight: 500 !important;
  font-size: 1.5rem !important;
  letter-spacing: 0.01em !important;
  color: var(--ink) !important;
  margin: 0 0 0.75rem 0 !important;
}

.cky-notice-des,
.cky-preference-content-wrapper,
.cky-accordion-header-des,
.cky-always-active {
  font-family: var(--sans) !important;
  font-size: 0.875rem !important;
  line-height: 1.6 !important;
  color: var(--ink-mid) !important;
}

.cky-notice-des p,
.cky-preference-content-wrapper p {
  font-size: 0.875rem !important;
  line-height: 1.6 !important;
}

/* Buttons, brand styling */
.cky-btn {
  font-family: var(--sans) !important;
  font-weight: 500 !important;
  font-size: 0.875rem !important;
  letter-spacing: 0.02em !important;
  border-radius: 2px !important;
  padding: 0.625rem 1.25rem !important;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease !important;
  border-width: 1px !important;
  border-style: solid !important;
}

.cky-btn-accept {
  background-color: var(--gold) !important;
  border-color: var(--gold) !important;
  color: var(--bg-secondary) !important;
}
.cky-btn-accept:hover,
.cky-btn-accept:focus {
  background-color: var(--gold-deep) !important;
  border-color: var(--gold-deep) !important;
}

.cky-btn-customize,
.cky-btn-reject,
.cky-btn-preferences {
  background-color: transparent !important;
  border-color: var(--ink) !important;
  color: var(--ink) !important;
}
.cky-btn-customize:hover,
.cky-btn-reject:hover,
.cky-btn-preferences:hover {
  background-color: var(--ink) !important;
  color: var(--bg-secondary) !important;
}

/* Preference center, accordion + categories */
.cky-accordion {
  border-color: var(--gold-light) !important;
}
.cky-accordion-header {
  background-color: transparent !important;
}
.cky-accordion-cta {
  font-family: var(--serif) !important;
  font-style: italic !important;
  font-weight: 500 !important;
  font-size: 1.125rem !important;
  color: var(--ink) !important;
}

/* Toggle switches, gold when active */
.cky-switch input[type="checkbox"]:checked + label,
.cky-switch input[type="checkbox"]:checked + .cky-slider {
  background-color: var(--gold) !important;
}

.cky-always-active {
  color: var(--gold) !important;
  font-weight: 500 !important;
}

/* Floating "revisit" badge, sober */
.cky-btn-revisit-wrapper {
  background-color: var(--ink) !important;
  width: 44px !important;
  height: 44px !important;
}
.cky-btn-revisit-wrapper:hover {
  background-color: var(--gold) !important;
}

/* Mobile, tighten paddings */
@media (max-width: 600px) {
  .cky-consent-container,
  .cky-preference-center {
    max-width: 100% !important;
    margin: 0 !important;
    border-radius: 0 !important;
  }
}

/* =================== STAR DEFS =================== */
/* Each page must include the star symbol defs in body. */
