/* ─── TOKENS ─────────────────────────────────────────────── */
:root {
  --cream:  #F8F4EC;
  --ink:    #1A1816;
  --terra:  #8A5240;
  --sand:   #C8A882;
  --muted:  #7A7068;
  --border: rgba(26,24,22,0.1);
  --serif:  'Fraunces', Georgia, serif;
  --sans:   'Outfit', sans-serif;
}

/* ─── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--cream); color: var(--ink); font-family: var(--sans); font-weight: 300; line-height: 1.6; overflow-x: hidden; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── ANIMATIONS ─────────────────────────────────────────── */
@keyframes fadeWord {
  from { opacity: 0; filter: blur(6px); transform: translateY(8px); }
  to   { opacity: 1; filter: blur(0);   transform: translateY(0); }
}
@keyframes heroImageLoad {
  from { transform: scale(1.04); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.section-line { display: block; height: 1px; background: var(--terra); width: 0; transition: width 0.6s ease; }
.section-line.visible { width: 100%; }
.ep-slide-left  { opacity: 0; transform: translateX(-30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.ep-slide-right { opacity: 0; transform: translateX(30px);  transition: opacity 0.8s ease, transform 0.8s ease; }
.ep-slide-left.visible, .ep-slide-right.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .ep-slide-left, .ep-slide-right { opacity: 1 !important; transform: none !important; transition: none !important; }
  .section-line { width: 100% !important; }
  .word { opacity: 1 !important; animation: none !important; }
}

/* ─── NAV — plate, 5 liens ───────────────────────────────── */
#nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--cream); border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem; height: 60px;
}
.nav-logo { font-family: var(--serif); font-weight: 400; font-size: 1.18rem; letter-spacing: 0.01em; color: var(--ink); flex-shrink: 0; }
.nav-logo em { font-style: italic; color: var(--terra); }
.nav-links { display: flex; align-items: center; gap: 1.8rem; font-size: 0; }
.nav-links li { font-size: 0; }
.nav-links a {
  font-family: var(--sans); font-size: 0.82rem; font-weight: 400;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted);
  position: relative; padding-bottom: 2px; transition: color 0.25s; white-space: nowrap;
}
.nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px; background: var(--terra); transition: width 0.25s; }
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }
.nav-links .current-menu-item > a,
.nav-links .current-menu-item > a::after { color: var(--ink); width: 100%; }
.nav-cta {
  font-family: var(--sans); font-size: 0.76rem; font-weight: 400;
  text-transform: uppercase; letter-spacing: 0.08em;
  border: 1px solid var(--ink); color: var(--ink) !important;
  padding: 7px 16px; transition: all 0.25s; flex-shrink: 0;
}
.nav-cta:hover { background: var(--ink); color: var(--cream) !important; }
.nav-cta::after { display: none !important; }
.nav-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.nav-burger span { display: block; width: 22px; height: 1.5px; background: var(--ink); }
.mobile-nav {
  display: flex; position: fixed; inset: 0; background: var(--ink); z-index: 998;
  flex-direction: column; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease; overflow: hidden;
}
.mobile-nav.open { opacity: 1; pointer-events: auto; }

/* Deco circles */
.mobile-nav::before {
  content: ''; position: absolute; top: -80px; left: -80px;
  width: 340px; height: 340px; border-radius: 50%;
  border: 1px solid rgba(200,168,130,0.07); pointer-events: none;
}
.mobile-nav::after {
  content: ''; position: absolute; bottom: -100px; right: -100px;
  width: 420px; height: 420px; border-radius: 50%;
  border: 1px solid rgba(200,168,130,0.05); pointer-events: none;
}

/* Logo */
.mobile-nav-logo {
  font-family: var(--serif); font-weight: 300; font-size: 1.3rem;
  color: rgba(255,255,255,0.85); letter-spacing: 0.02em; margin-bottom: 1.6rem;
}
.mobile-nav-logo em { font-style: italic; color: var(--sand); }

/* Terra divider */
.mobile-nav-divider {
  width: 36px; height: 1px; background: var(--terra); margin-bottom: 2.2rem;
}

/* Links */
.mobile-nav-links { display: flex; flex-direction: column; align-items: center; gap: 0.15rem; margin-bottom: 2.4rem; }
.mobile-nav-links a {
  font-family: var(--serif); font-style: italic; font-size: 1.65rem;
  color: rgba(255,255,255,0.65); padding: 0.35rem 0; transition: color 0.2s;
  opacity: 0; transform: translateY(10px);
}
.mobile-nav.open .mobile-nav-links a {
  animation: mnLinkIn 0.4s ease forwards;
}
.mobile-nav.open .mobile-nav-links a:nth-child(1) { animation-delay: 0.06s; }
.mobile-nav.open .mobile-nav-links a:nth-child(2) { animation-delay: 0.12s; }
.mobile-nav.open .mobile-nav-links a:nth-child(3) { animation-delay: 0.18s; }
.mobile-nav.open .mobile-nav-links a:nth-child(4) { animation-delay: 0.24s; }
.mobile-nav.open .mobile-nav-links a:nth-child(5) { animation-delay: 0.30s; }
.mobile-nav-links a:hover { color: var(--sand); }
@keyframes mnLinkIn {
  to { opacity: 1; transform: translateY(0); }
}

/* Contact CTA */
.mobile-nav-contact {
  font-family: var(--sans) !important; font-style: normal !important;
  font-size: 0.76rem !important; font-weight: 400 !important;
  text-transform: uppercase !important; letter-spacing: 0.1em !important;
  border: 1px solid var(--terra) !important; color: var(--terra) !important;
  padding: 10px 30px; transition: all 0.25s; opacity: 0;
}
.mobile-nav.open .mobile-nav-contact {
  animation: mnLinkIn 0.4s ease 0.38s forwards;
}
.mobile-nav-contact:hover { background: var(--terra) !important; color: #fff !important; }

/* Close button */
.mobile-nav .close-btn {
  position: absolute; top: 1.4rem; right: 1.8rem;
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,0.35); font-family: var(--sans); font-size: 1.3rem;
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  transition: color 0.2s;
}
.mobile-nav .close-btn:hover { color: rgba(255,255,255,0.8); }


/* ─── BUTTONS ────────────────────────────────────────────── */
.btn-primary { font-family: var(--sans); font-size: 1.02rem; font-weight: 400; letter-spacing: 0.04em; background: var(--terra); color: #fff; padding: 12px 26px; border: 1px solid var(--terra); transition: all 0.25s; display: inline-block; }
.btn-primary:hover { background: transparent; color: var(--terra); }
.btn-ghost { font-family: var(--sans); font-size: 1.02rem; font-weight: 400; letter-spacing: 0.04em; color: var(--muted); border-bottom: 1px solid transparent; padding-bottom: 2px; transition: all 0.25s; }
.btn-ghost:hover { color: var(--ink); border-bottom-color: var(--border); }

/* ─── HERO ────────────────────────────────────────────────── */
.hero { min-height: calc(100vh - 60px); display: grid; grid-template-columns: 1fr 1fr; }
.hero-left { background: var(--cream); padding: 5rem 4rem 4rem; display: flex; flex-direction: column; justify-content: center; }
.hero-eyebrow { font-family: var(--sans); font-size: 0.82rem; font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 2.5rem; opacity: 0; animation: fadeWord 0.6s ease 0.2s forwards; }
.hero-h1 { font-family: var(--serif); font-weight: 300; font-size: clamp(3.2rem, 5.5vw, 6rem); line-height: 1.1; color: var(--ink); margin-bottom: 2.5rem; }
.hero-h1 .word { display: inline-block; opacity: 0; animation: fadeWord 0.8s ease forwards; }
.hero-h1 .word:nth-child(1) { animation-delay: 0.35s; }
.hero-h1 .word:nth-child(2) { animation-delay: 0.50s; }
.hero-h1 .word:nth-child(3) { animation-delay: 0.65s; }
.hero-h1 .word:nth-child(4) { animation-delay: 0.80s; color: var(--terra); font-style: italic; }
.hero-h1 .word + .word::before { content: ' '; }
.hero-subtitle { font-family: var(--serif); font-style: italic; font-weight: 300; font-size: 1.45rem; color: var(--muted); line-height: 1.65; max-width: 400px; margin-bottom: 2.5rem; opacity: 0; animation: fadeWord 0.6s ease 1.1s forwards; }
.hero-intro { font-family: var(--sans); font-size: 1.12rem; font-weight: 300; color: var(--muted); line-height: 1.8; max-width: 420px; margin-bottom: 3rem; opacity: 0; animation: fadeWord 0.6s ease 1.25s forwards; }
.hero-intro a { color: var(--ink); border-bottom: 1px solid var(--terra); transition: color 0.2s; }
.hero-intro a:hover { color: var(--terra); }
.hero-actions { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; opacity: 0; animation: fadeWord 0.6s ease 1.4s forwards; }
.hero-right { overflow: hidden; position: relative; }
.hero-image-inner { width: 100%; height: 100%; animation: heroImageLoad 1.2s cubic-bezier(0.4,0,0.2,1) 0.1s both; }
.hero-image-inner img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform 0.7s ease; }
.hero-right:hover .hero-image-inner img { transform: scale(1.03); }

/* ─── BANDEAU ─────────────────────────────────────────────── */
.bandeau { background: var(--ink); padding: 5rem 6rem; position: relative; overflow: hidden; }
.bandeau-inner { max-width: 820px; margin: 0 auto; text-align: center; }
.bandeau blockquote { font-family: var(--serif); font-style: italic; font-weight: 300; font-size: clamp(1.6rem, 2.8vw, 2.4rem); color: #fff; line-height: 1.55; margin-bottom: 1.5rem; }
.bandeau .word-reveal { display: inline-block; opacity: 0; transform: translateY(10px); transition: opacity 0.5s ease, transform 0.5s ease; }
.bandeau .word-reveal.visible { opacity: 1; transform: translateY(0); }
.bandeau cite { display: block; font-family: var(--sans); font-size: 0.8rem; font-weight: 400; text-transform: uppercase; letter-spacing: 0.14em; color: var(--sand); font-style: normal; }
.bandeau-deco  { position: absolute; bottom: -40px; right: -40px; width: 200px; height: 200px; border: 1px solid rgba(200,168,130,0.1); border-radius: 50%; pointer-events: none; }
.bandeau-deco-2{ position: absolute; bottom: -80px; right: -80px; width: 320px; height: 320px; border: 1px solid rgba(200,168,130,0.05); border-radius: 50%; pointer-events: none; }

/* ─── SECTION HEADER ─────────────────────────────────────── */
.section-head { margin-bottom: 3.5rem; }
.section-head-label { font-family: var(--sans); font-size: 0.8rem; font-weight: 400; text-transform: uppercase; letter-spacing: 0.16em; color: var(--muted); margin-bottom: 0.75rem; }
.section-head h2, .section-head .apropos-h2 { font-family: var(--serif); font-weight: 300; font-size: clamp(2.2rem, 3.8vw, 3.3rem); color: var(--ink); line-height: 1.15; margin-bottom: 0.75rem; }
.section-head-line-wrap { height: 1px; background: transparent; overflow: hidden; }

/* ─── OFFRES — 2×2 grille avec 4 offres ─────────────────── */
.offres { background: var(--cream); padding: 7rem 4rem 6rem; }
.offres-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.offre-card { padding: 2.5rem; background: rgba(26,24,22,0.03); box-shadow: inset 0 0 24px rgba(26,24,22,0.04); position: relative; overflow: hidden; transition: box-shadow 0.3s ease, transform 0.3s ease; }
.offre-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--terra); }
.offre-card:hover { box-shadow: inset 0 0 36px rgba(26,24,22,0.07), 0 6px 24px rgba(26,24,22,0.06); transform: translateY(-3px); }
.offre-num { font-family: var(--serif); font-weight: 300; font-style: italic; font-size: 3.5rem; color: var(--sand); line-height: 1; margin-bottom: 1.5rem; }
.offre-title { font-family: var(--serif); font-weight: 400; font-size: 1.65rem; line-height: 1.3; color: var(--ink); margin-bottom: 1rem; }
.offre-body { font-family: var(--sans); font-size: 1.12rem; font-weight: 300; line-height: 1.75; color: var(--muted); margin-bottom: 1.5rem; }
.offre-title a { color: inherit; }
.offre-title a:hover { color: var(--terra); }
.offre-link { font-family: var(--sans); font-size: 1rem; font-weight: 400; letter-spacing: 0.04em; color: var(--terra); display: inline-flex; align-items: center; gap: 8px; transition: gap 0.2s; }
.offre-link:hover { gap: 12px; }
.offre-link::after { content: '→'; }

/* ─── GALLERY ─────────────────────────────────────────────── */
.gallery { display: grid; grid-template-columns: repeat(5, 1fr); height: 360px; background: var(--ink); gap: 2px; }
.gallery-cell { overflow: hidden; }
.gallery-cell img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-cell:hover img { transform: scale(1.06); }

/* ─── EP SECTION ──────────────────────────────────────────── */
.ep { background: var(--ink); padding: 0; overflow: hidden; }
.ep-inner { display: grid; grid-template-columns: 1fr 1fr; min-height: 580px; }
.ep-image { overflow: visible; position: relative; }
.ep-main-img { width: 100%; height: 100%; min-height: 580px; object-fit: cover; display: block; }
.ep-float-img { position: absolute; bottom: 2rem; right: -1.5rem; width: 42%; aspect-ratio: 3/4; object-fit: cover; display: block; height: auto; border: 6px solid var(--ink); box-shadow: 0 8px 32px rgba(0,0,0,0.28); z-index: 2; }
.ep-content { padding: 5rem 4.5rem; display: flex; flex-direction: column; justify-content: center; }
.ep-label { font-family: var(--sans); font-size: 0.8rem; font-weight: 400; text-transform: uppercase; letter-spacing: 0.16em; color: var(--sand); margin-bottom: 2rem; }
.ep-heading { font-family: var(--serif); font-weight: 300; font-size: clamp(1.7rem, 3vw, 2.8rem); color: #fff; line-height: 1.25; margin-bottom: 2rem; }
.ep-body { font-family: var(--sans); font-size: 1.02rem; font-weight: 300; line-height: 1.8; color: rgba(255,255,255,0.55); margin-bottom: 1.5rem; }
.ep-quote-text { font-family: var(--serif); font-style: italic; font-weight: 300; font-size: 1.18rem; color: var(--sand); line-height: 1.65; border-left: 2px solid var(--terra); padding-left: 1.5rem; margin-bottom: 1.5rem; }
.ep-founder { font-family: var(--sans); font-size: 0.76rem; font-weight: 400; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.3); }

/* ─── À PROPOS ────────────────────────────────────────────── */
.apropos { background: var(--cream); padding: 7rem 4rem; }
.apropos-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.apropos-h2 { font-family: var(--serif); font-weight: 300; font-size: clamp(2.2rem, 3.8vw, 3.5rem); line-height: 1.15; color: var(--ink); margin-bottom: 2rem; }
.apropos-h2 em { font-style: italic; color: var(--terra); }
.apropos-body { font-family: var(--sans); font-size: 1.18rem; font-weight: 300; line-height: 1.8; color: var(--muted); margin-bottom: 2rem; }
.tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2.5rem; }
.tag { font-family: var(--sans); font-size: 0.73rem; font-weight: 400; letter-spacing: 0.08em; text-transform: uppercase; border: 1px solid var(--terra); color: var(--terra); padding: 5px 12px; transition: all 0.2s; }
.tag:hover { background: var(--terra); color: #fff; }
.apropos-portrait-wrap { position: relative; overflow: visible; }
.apropos-portrait-wrap img { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: center top; display: block; }
.portrait-deco { position: absolute; bottom: -16px; right: -16px; width: 80%; height: 80%; border: 1px solid var(--sand); pointer-events: none; z-index: -1; }

/* ─── AGENDA ──────────────────────────────────────────────── */
.agenda { background: var(--cream); border-top: 1px solid var(--border); padding: 6rem 4rem; }
.agenda-inner { max-width: 860px; margin: 0 auto; }
.agenda-table { width: 100%; border-collapse: collapse; }
.agenda-table thead tr { border-bottom: 1px solid var(--border); }
.agenda-table thead th { font-family: var(--sans); font-size: 0.73rem; font-weight: 400; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); padding: 0 0 1rem; text-align: left; }
.agenda-table thead th:last-child { text-align: right; }
.agenda-row { border-bottom: 1px solid var(--border); }
.agenda-row td { padding: 1.5rem 0; vertical-align: middle; }
.agenda-date-num { font-family: var(--serif); font-weight: 400; font-size: 2.2rem; line-height: 1; color: var(--terra); width: 60px; }
.agenda-date-sub { font-family: var(--sans); font-size: 0.73rem; font-weight: 400; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-top: 2px; }
.agenda-event-title { font-family: var(--serif); font-weight: 400; font-size: 1.25rem; color: var(--ink); margin-bottom: 3px; }
.agenda-location { font-family: var(--sans); font-size: 1.02rem; font-weight: 300; color: var(--muted); }
.agenda-time { font-family: var(--sans); font-size: 0.82rem; font-weight: 400; color: var(--terra); margin-top: 3px; }
.agenda-type-badge { font-family: var(--sans); font-size: 0.8rem; font-weight: 400; text-transform: uppercase; letter-spacing: 0.08em; border: 1px solid var(--border); color: var(--muted); padding: 3px 10px; display: inline-block; }
.agenda-action { text-align: right; }
.btn-agenda { font-family: var(--sans); font-size: 0.82rem; font-weight: 400; letter-spacing: 0.06em; text-transform: uppercase; border: 1px solid var(--terra); color: var(--terra); padding: 9px 20px; display: inline-block; transition: all 0.25s; }
.btn-agenda:hover { background: var(--terra); color: #fff; }

/* ─── FOOTER ──────────────────────────────────────────────── */
footer { background: var(--ink); padding: 3rem 4rem; }
.footer-top { display: flex; align-items: flex-start; justify-content: space-between; flex-wrap: wrap; gap: 2rem; margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand { }
.footer-logo { font-family: var(--serif); font-weight: 300; font-size: 1.25rem; color: #fff; margin-bottom: 6px; }
.footer-logo em { font-style: italic; color: var(--sand); }
.footer-tagline { font-family: var(--sans); font-size: 0.8rem; font-weight: 300; color: rgba(255,255,255,0.35); }
.footer-contact-info { text-align: right; }
.footer-contact-info a { display: block; font-family: var(--sans); font-size: 0.85rem; font-weight: 300; color: rgba(255,255,255,0.5); margin-bottom: 4px; transition: color 0.2s; }
.footer-contact-info a:hover { color: var(--sand); }
.footer-contact-info p { font-family: var(--sans); font-size: 0.8rem; font-weight: 300; color: rgba(255,255,255,0.3); line-height: 1.6; margin-top: 8px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-family: var(--sans); font-size: 0.8rem; font-weight: 300; color: rgba(255,255,255,0.25); }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a { font-family: var(--sans); font-size: 0.8rem; font-weight: 400; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer-links a:hover { color: var(--sand); }

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1280px) {
  .nav-links { gap: 1.4rem; }
  .nav-links a { font-size: 0.82rem; }
}
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .offres { padding: 5rem 2.5rem 4rem; }
  .apropos { padding: 5rem 2.5rem; }
  .apropos-inner { gap: 3rem; }
  .ep-content { padding: 4rem 3rem; }
  .agenda { padding: 5rem 2.5rem; }
}
@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 4rem 2rem 3rem; min-height: 55vh; }
  .hero-right { height: 50vw; min-height: 280px; }
  .hero-h1 { font-size: clamp(2.8rem, 10vw, 5rem); }
  .hero-subtitle { font-size: 1.45rem; }
  .hero-intro { font-size: 1.18rem; }
  .bandeau { padding: 3.5rem 2rem; }
  .bandeau blockquote { font-size: 1.45rem; }
  .offres { padding: 4rem 2rem; }
  .offres-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .gallery { grid-template-columns: repeat(3, 1fr); height: 240px; }
  .gallery-cell:nth-child(4), .gallery-cell:nth-child(5) { display: none; }
  .ep-inner { grid-template-columns: 1fr; }
  .ep-main-img { min-height: 320px; height: 320px; }
  .ep-float-img { display: none; }
  .ep-content { padding: 3.5rem 2rem; }
  .apropos { padding: 4rem 2rem; }
  .apropos-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .apropos-portrait-wrap { order: -1; }
  .portrait-deco { display: none; }
  .agenda { padding: 4rem 2rem; }
  .agenda-table thead { display: none; }
  .agenda-row td { display: block; padding: 0.5rem 0; }
  .agenda-row td:first-child { padding-top: 1.5rem; }
  .agenda-row td:last-child { padding-bottom: 1.5rem; }
  .agenda-date-num { font-size: 1.65rem; }
  .agenda-action { text-align: left; }
  footer { padding: 2rem; }
  .footer-top { flex-direction: column; gap: 1.5rem; }
  .footer-contact-info { text-align: left; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .footer-links { flex-wrap: wrap; gap: 1rem; }
}
@media (max-width: 480px) {
  #nav { padding: 0 1.5rem; }
  .hero-left { padding: 3rem 1.5rem 2.5rem; }
  .hero-h1 { font-size: clamp(2.5rem, 12vw, 4rem); }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .offres { padding: 3rem 1.5rem; }
  .offre-card { padding: 2rem 1.5rem; }
  .gallery { grid-template-columns: 1fr 1fr; height: 200px; }
  .gallery-cell:nth-child(3), .gallery-cell:nth-child(4), .gallery-cell:nth-child(5) { display: none; }
  .ep-content { padding: 2.5rem 1.5rem; }
  .apropos { padding: 3rem 1.5rem; }
  .agenda { padding: 3rem 1.5rem; }
  footer { padding: 1.5rem; }
}

/* ─── INNER PAGES ────────────────────────────────────────── */
.page-hero {
  background: var(--cream);
  padding: 5rem 4rem 4rem;
  border-bottom: 1px solid var(--border);
}
.page-hero-inner { max-width: 860px; margin: 0 auto; }
.page-hero-label {
  font-family: var(--sans); font-size: 0.8rem; font-weight: 400;
  text-transform: uppercase; letter-spacing: 0.16em; color: var(--muted);
  margin-bottom: 1rem;
}
.page-hero h1 {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(2.2rem, 4vw, 3.5rem); color: var(--ink);
  line-height: 1.15; margin-bottom: 1rem;
}
.page-hero h1 em { font-style: italic; color: var(--terra); }
.page-hero-subtitle {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: 1.25rem; color: var(--muted); line-height: 1.6;
  max-width: 640px;
}
.page-hero-line { display: block; height: 1px; background: var(--terra); width: 60px; margin-top: 2rem; }

.page-body { background: var(--cream); padding: 5rem 4rem 6rem; }
.page-body-inner { max-width: 860px; margin: 0 auto; }

.prose {
  font-family: var(--sans); font-size: 1.15rem; font-weight: 300;
  line-height: 1.85; color: var(--muted);
}
.prose p { margin-bottom: 1.4rem; }
.prose h2 {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem); color: var(--ink);
  line-height: 1.2; margin: 3rem 0 1.2rem;
}
.prose h3 {
  font-family: var(--serif); font-weight: 400;
  font-size: 1.25rem; color: var(--ink); margin: 2rem 0 0.8rem;
}
.prose ul { list-style: none; margin-bottom: 1.4rem; }
.prose ul li { padding-left: 1.2rem; margin-bottom: 0.5rem; position: relative; }
.prose ul li::before { content: '—'; position: absolute; left: 0; color: var(--terra); }
.prose blockquote {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: 1.15rem; color: var(--terra); line-height: 1.65;
  border-left: 2px solid var(--terra); padding-left: 1.5rem;
  margin: 2rem 0;
}
.prose cite {
  display: block; font-family: var(--sans); font-size: 0.76rem;
  font-weight: 400; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--muted); font-style: normal; margin-top: 0.5rem;
}

.page-cta {
  margin-top: 3rem; padding-top: 3rem; border-top: 1px solid var(--border);
}

/* Two-column layout for inner pages */
.page-split { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }
.page-split-img { position: relative; }
.page-split-img img { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: center top; display: block; }
.page-split-deco { position: absolute; bottom: -16px; right: -16px; width: 80%; height: 80%; border: 1px solid var(--sand); pointer-events: none; z-index: -1; }

/* Competences list */
.competences { list-style: none; margin: 1.5rem 0 2rem; }
.competences li {
  font-family: var(--sans); font-size: 1rem; font-weight: 300;
  color: var(--muted); padding: 0.75rem 0 0.75rem 1.5rem;
  border-bottom: 1px solid var(--border); position: relative; line-height: 1.5;
}
.competences li::before { content: ''; position: absolute; left: 0; top: 50%; width: 6px; height: 6px; border-radius: 50%; background: var(--terra); transform: translateY(-50%); }

@media (max-width: 1024px) {
  .page-hero { padding: 4rem 2.5rem 3rem; }
  .page-body { padding: 4rem 2.5rem 5rem; }
  .page-split { gap: 3rem; }
}
@media (max-width: 768px) {
  .page-hero { padding: 3rem 2rem 2.5rem; }
  .page-body { padding: 3rem 2rem 4rem; }
  .page-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .page-split-img { order: -1; }
  .page-split-deco { display: none; }
}
@media (max-width: 480px) {
  .page-hero { padding: 2.5rem 1.5rem 2rem; }
  .page-body { padding: 2.5rem 1.5rem 3rem; }
}

/* Page-split text column */
.page-split-body { display: flex; flex-direction: column; gap: 1.5rem; }
.page-split-body p { font-family: var(--serif); font-size: 1.15rem; font-weight: 300; line-height: 1.75; color: var(--ink); }
.page-split-body .competences { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 0.5rem 0; }

/* Contact page layout */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }
.contact-intro { font-family: var(--serif); font-size: 1.2rem; font-weight: 300; line-height: 1.7; color: var(--ink); margin-bottom: 2.5rem; }
.contact-block { margin-bottom: 1.75rem; }
.contact-label { font-family: var(--sans); font-size: 0.7rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--terra); margin-bottom: 0.35rem; }
.contact-value { font-family: var(--serif); font-size: 1.05rem; font-weight: 300; color: var(--ink); text-decoration: none; display: block; line-height: 1.5; }
.contact-value:hover { color: var(--terra); }
.contact-tagline { font-family: var(--sans); font-size: 0.78rem; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-top: 2rem; }

/* CF7 form styling */
.contact-form .wpcf7-form label,
.contact-form .cf7-fallback label { display: block; font-family: var(--sans); font-size: 0.7rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--terra); margin-bottom: 0.4rem; }
.contact-form .wpcf7-form input[type="text"],
.contact-form .wpcf7-form input[type="email"],
.contact-form .wpcf7-form textarea,
.contact-form .cf7-fallback input,
.contact-form .cf7-fallback textarea {
  width: 100%; font-family: var(--serif); font-size: 1rem; font-weight: 300;
  color: var(--ink); background: transparent; border: none; border-bottom: 1px solid var(--border);
  padding: 0.6rem 0; outline: none; transition: border-color 0.2s; box-sizing: border-box;
}
.contact-form .wpcf7-form input:focus,
.contact-form .wpcf7-form textarea:focus,
.contact-form .cf7-fallback input:focus,
.contact-form .cf7-fallback textarea:focus { border-bottom-color: var(--terra); }
.contact-form .wpcf7-form textarea,
.contact-form .cf7-fallback textarea { resize: vertical; min-height: 140px; }
.contact-form .wpcf7-form p,
.contact-form .cf7-row { margin-bottom: 1.5rem; }
.contact-form .wpcf7-submit,
.contact-form .cf7-fallback button {
  font-family: var(--sans); font-size: 1.02rem; font-weight: 400; letter-spacing: 0.04em;
  background: var(--terra); color: #fff; padding: 12px 26px;
  border: 1px solid var(--terra); cursor: pointer; transition: all 0.25s;
  margin-top: 0.5rem;
}
.contact-form .wpcf7-submit:hover,
.contact-form .cf7-fallback button:hover { background: transparent; color: var(--terra); }
.contact-form .wpcf7-not-valid-tip { font-family: var(--sans); font-size: 0.8rem; color: #c0392b; margin-top: 0.25rem; }
.contact-form .wpcf7-response-output { font-family: var(--sans); font-size: 0.85rem; padding: 0.75rem 1rem; margin-top: 1rem; border-radius: 2px; }

@media (max-width: 1024px) {
  .contact-layout { gap: 3rem; }
}
@media (max-width: 768px) {
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
}

/* Thank-you confirmation */
.contact-thanks { display: none; padding: 3rem 2rem; text-align: center; }
.contact-thanks.visible { display: block; }
.contact-thanks-icon { font-size: 2rem; color: var(--terra); margin-bottom: 1rem; line-height: 1; }
.contact-thanks h3 { font-family: var(--serif); font-size: 1.6rem; font-weight: 400; font-style: italic; color: var(--ink); margin-bottom: 0.75rem; }
.contact-thanks p { font-family: var(--sans); font-size: 0.95rem; font-weight: 300; color: var(--muted); }
