/*
Theme Name: Kizen
Theme URI: https://kizen.ch
Author: Kizen
Description: Thème WordPress multi-pages pour Kizen — Hypnose & Sei-ki, Zürich. Ambiance naturelle, organique et apaisante. Menu hamburger.
Version: 3.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: kizen
*/

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

:root {
  --moss: #1F2E28;
  --moss-light: #3D4C46;
  --sage: #8FAF7A;
  --sage-pale: #C8D9B8;
  --cream: #F4EFE4;
  --linen: #EAE3D2;
  --bark: #7C5C3A;
  --sand: #C4A97A;
  --charcoal: #2C2C28;
  --warm-gray: #6B6660;
  --white: #FDFAF5;
  --radius: 12px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--charcoal);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* ═══════════════════════════════════════
   HEADER + HAMBURGER MENU
   ═══════════════════════════════════════ */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 5vw;
  background: transparent;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, padding 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(253,250,245,0.94);
  backdrop-filter: blur(12px);
  border-bottom-color: rgba(143,175,122,0.2);
  padding: 1rem 5vw;
}

/* Pages without the fullscreen carousel: header is always solid from the start */
body.has-carousel .site-header:not(.scrolled) {
  background: transparent;
  border-bottom-color: transparent;
}

body:not(.has-carousel) .site-header {
  background: rgba(253,250,245,0.94);
  backdrop-filter: blur(12px);
  border-bottom-color: rgba(143,175,122,0.2);
}

.site-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--cream);
  transition: color 0.3s ease;
  z-index: 101;
  position: relative;
}

body.has-carousel .site-header.scrolled .site-logo,
body:not(.has-carousel) .site-logo {
  color: var(--moss);
}

/* ── Hamburger button ── */
.hamburger-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.28);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  z-index: 101;
  position: relative;
  transition: background 0.25s;
}

.hamburger-btn:hover { background: rgba(255,255,255,0.24); }

.hamburger-btn span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--cream);
  border-radius: 2px;
  transition: background 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
}

body.has-carousel .site-header.scrolled .hamburger-btn,
body:not(.has-carousel) .hamburger-btn {
  background: rgba(59,92,46,0.08);
  border-color: rgba(143,175,122,0.35);
}
body.has-carousel .site-header.scrolled .hamburger-btn:hover,
body:not(.has-carousel) .hamburger-btn:hover {
  background: rgba(59,92,46,0.16);
}
body.has-carousel .site-header.scrolled .hamburger-btn span,
body:not(.has-carousel) .hamburger-btn span {
  background: var(--moss);
}

body.nav-open .hamburger-btn span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
body.nav-open .hamburger-btn span:nth-child(2) { opacity: 0; }
body.nav-open .hamburger-btn span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
body.nav-open .hamburger-btn span { background: var(--cream) !important; }

/* ── Overlay ── */
.offcanvas-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 26, 16, 0.55);
  backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 98;
}

body.nav-open .offcanvas-overlay {
  opacity: 1;
  pointer-events: auto;
}

/* ── Offcanvas panel ── */
.offcanvas-nav {
  position: fixed;
  top: 0; right: 0;
  height: 100vh;
  width: min(400px, 88vw);
  background: var(--moss);
  z-index: 99;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
  padding: 6rem 3rem 3rem;
  box-shadow: -20px 0 60px rgba(0,0,0,0.25);
  overflow-y: auto;
}

body.nav-open .offcanvas-nav { transform: translateX(0); }

.offcanvas-close {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--cream);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.offcanvas-close:hover { background: rgba(255,255,255,0.2); }

.offcanvas-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-style: italic;
  color: var(--sage-pale);
  margin-bottom: 2.5rem;
}

.offcanvas-nav ul {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  flex-grow: 1;
}

.offcanvas-nav li {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.offcanvas-nav ul a {
  display: block;
  padding: 1.05rem 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--cream);
  text-decoration: none;
  transition: color 0.25s, padding-left 0.25s;
}

.offcanvas-nav ul a:hover {
  color: var(--sand);
  padding-left: 0.5rem;
}

.offcanvas-cta {
  display: inline-block;
  text-align: center;
  background: var(--sand);
  color: var(--charcoal) !important;
  padding: 0.9rem 1.5rem;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  margin-bottom: 1.8rem;
  transition: background 0.25s, transform 0.2s;
}

.offcanvas-cta:hover {
  background: #d4bc8f;
  transform: translateY(-1px);
}

.offcanvas-contact {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: rgba(244,239,228,0.7);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.2rem;
}

@media (max-width: 480px) {
  .offcanvas-nav { padding: 5.5rem 2rem 2rem; width: 100vw; }
  .offcanvas-nav ul a { font-size: 1.3rem; }
}

/* ═══════════════════════════════════════
   SECTIONS — generic
   ═══════════════════════════════════════ */
section { padding: 6rem 5vw; }

.section-tag, .hero-tag {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bark);
  font-weight: 500;
  display: block;
}

.hero-tag {
  display: inline-block;
  border: 1px solid var(--sand);
  padding: 0.3rem 0.9rem;
  border-radius: 40px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 1.2rem;
}

.section-title em { font-style: italic; color: var(--moss); }

.divider {
  width: 48px; height: 2px;
  background: linear-gradient(to right, var(--sage), var(--sand));
  border-radius: 4px;
  margin-bottom: 2rem;
}

.btn-primary {
  background: var(--moss);
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-primary:hover { background: var(--moss-light); transform: translateY(-1px); }

.btn-ghost {
  color: var(--moss);
  padding: 0.85rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  border: 1.5px solid var(--sage);
  transition: all 0.2s;
  display: inline-block;
}
.btn-ghost:hover { background: var(--sage-pale); }

.btn-ghost-light {
  color: var(--white);
  padding: 0.85rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.6);
  transition: all 0.25s;
  display: inline-block;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(4px);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.16); border-color: var(--white); }

/* ═══════════════════════════════════════
   CARROUSEL HERO (page d'accueil)
   ═══════════════════════════════════════ */
#cabinet-carousel { padding: 0; margin: 0; background: var(--charcoal); }

.cabinet-carousel {
  position: relative;
  width: 100%;
  height: 92vh;
  min-height: 540px;
  max-height: 760px;
  overflow: hidden;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease;
  z-index: 1;
}
.carousel-slide.active { opacity: 1; z-index: 2; }

.carousel-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.carousel-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 6vw;
  background: linear-gradient(90deg, rgba(20,30,15,0.72) 0%, rgba(20,30,15,0.42) 50%, rgba(20,30,15,0.2) 100%);
  z-index: 3;
}

.carousel-tag {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-pale);
  font-weight: 500;
  margin-bottom: 1.5rem;
  display: block;
}

.carousel-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--white);
  margin: 0 0 1.2rem;
  line-height: 1.05;
  max-width: 680px;
}
.carousel-title em { font-style: italic; color: var(--sand); }

.carousel-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-style: italic;
  color: rgba(244,239,228,0.95);
  max-width: 540px;
  font-weight: 300;
  line-height: 1.5;
  margin: 0 0 2.5rem;
}

.carousel-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.carousel-dots {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 12px;
  z-index: 4;
}

.carousel-dot {
  width: 11px; height: 11px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: 1.5px solid rgba(255,255,255,0.85);
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, transform 0.2s;
}
.carousel-dot:hover { transform: scale(1.18); }
.carousel-dot.active { background: var(--sand); border-color: var(--sand); }

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(253,250,245,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  font-size: 1.8rem;
  font-family: 'Cormorant Garamond', serif;
  cursor: pointer;
  z-index: 4;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
  transition: background 0.25s, transform 0.2s;
}
.carousel-nav:hover { background: rgba(253,250,245,0.32); transform: translateY(-50%) scale(1.08); }
.carousel-prev { left: 24px; padding-bottom: 4px; }
.carousel-next { right: 24px; padding-bottom: 4px; }

@media (max-width: 760px) {
  .cabinet-carousel { height: 78vh; min-height: 460px; }
  .carousel-overlay { padding: 2rem 1.5rem; background: linear-gradient(180deg, rgba(20,30,15,0.35) 0%, rgba(20,30,15,0.7) 100%); }
  .carousel-nav { display: none; }
}

/* ═══════════════════════════════════════
   APPROACH CARDS (Séances)
   ═══════════════════════════════════════ */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.approach-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 2.2rem 2rem;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(143,175,122,0.2);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.approach-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(59,92,46,0.12);
  border-color: var(--sage);
}

.approach-card-highlight {
  background: linear-gradient(135deg, var(--cream) 70%, var(--sage-pale) 100%);
  border: 1.5px solid rgba(143,175,122,0.45);
}

.approach-icon {
  width: 52px; height: 52px;
  background: var(--sage-pale);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
}
.approach-icon svg { width: 26px; height: 26px; }

.approach-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--charcoal);
  margin: 0 0 0.6rem;
}

.approach-card p {
  font-size: 0.9rem;
  color: var(--warm-gray);
  line-height: 1.75;
  font-weight: 300;
  margin: 0 0 1.2rem;
  flex-grow: 1;
}

.approach-link { font-size: 0.82rem; font-weight: 500; color: var(--moss); letter-spacing: 0.04em; }

/* ═══════════════════════════════════════
   TWO-COL LAYOUT (Hypnose)
   ═══════════════════════════════════════ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.two-col p { font-size: 0.95rem; color: var(--warm-gray); line-height: 1.85; font-weight: 300; margin-bottom: 1.2rem; }

.info-box {
  background: var(--white);
  padding: 2rem 2.2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(143,175,122,0.2);
}

.info-box h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--charcoal);
  margin: 0 0 1rem;
}

.info-box ul { list-style: none; padding: 0; margin: 0; }

.info-box li {
  display: flex; align-items: center; gap: 0.7rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(143,175,122,0.15);
  font-size: 0.88rem;
  color: var(--warm-gray);
  font-weight: 300;
}
.info-box li:last-child { border-bottom: none; }

.li-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--sage); flex-shrink: 0; }

/* ═══════════════════════════════════════
   SEI-KI PILLARS
   ═══════════════════════════════════════ */
.seiki-pillar {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem;
  text-align: center;
  backdrop-filter: blur(4px);
}

.pillar-char {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-style: italic;
  color: var(--sand);
  margin-bottom: 0.6rem;
  line-height: 1;
}

.seiki-pillar p { font-size: 0.85rem; color: rgba(244,239,228,0.88); line-height: 1.7; font-weight: 300; margin: 0; }

/* ═══════════════════════════════════════
   SERVICES / TARIFS
   ═══════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid rgba(143,175,122,0.2);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative; overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 3px; height: 100%;
  background: linear-gradient(to bottom, var(--sage), var(--sand));
}

.service-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(59,92,46,0.1); }

.service-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.6rem;
}

.service-desc { font-size: 0.88rem; color: var(--warm-gray); line-height: 1.75; font-weight: 300; }

.service-price { margin-top: 1.2rem; display: flex; justify-content: space-between; align-items: center; }

.price-tag { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 600; color: var(--moss); }

.price-duration {
  font-size: 0.78rem; color: var(--warm-gray);
  background: var(--linen); padding: 0.25rem 0.7rem;
  border-radius: 40px; font-weight: 400;
}

/* ═══════════════════════════════════════
   ABOUT / MON PARCOURS visual
   ═══════════════════════════════════════ */
.about-visual { position: relative; }

.about-img-wrapper {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 40% 60% 60% 40% / 50% 50% 50% 50%;
  overflow: hidden;
}

.about-img-wrapper img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.about-badge {
  position: absolute; bottom: -1rem; right: -1rem;
  background: var(--bark);
  color: var(--cream);
  padding: 1rem 1.4rem;
  border-radius: var(--radius);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.about-badge span {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sand);
  font-weight: 400;
  margin-top: 0.3rem;
}

/* ═══════════════════════════════════════
   MON PARCOURS body text
   ═══════════════════════════════════════ */
section p:not(.two-col p):not(.approach-card p):not(.seiki-pillar p):not(.carousel-subtitle) {
  font-size: 0.98rem;
  color: var(--warm-gray);
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 1.3rem;
}

/* ═══════════════════════════════════════
   CONTACT / MAP / FORM
   ═══════════════════════════════════════ */
.contact-top {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
}

.contact-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.8rem; }

.contact-icon {
  width: 40px; height: 40px; background: var(--sage-pale);
  border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-icon svg { width: 18px; height: 18px; }

.contact-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--warm-gray); margin-bottom: 0.2rem; font-weight: 400; }
.contact-value { font-size: 0.92rem; color: var(--charcoal); font-weight: 500; }

.contact-form {
  background: var(--cream); padding: 2.5rem;
  border-radius: var(--radius); border: 1px solid rgba(143,175,122,0.2);
}

.map-wrapper { border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(143,175,122,0.2); height: 340px; }
.map-wrapper iframe { width: 100%; height: 100%; border: none; display: block; }

/* ═══════════════════════════════════════
   FAQ
   ═══════════════════════════════════════ */
.faq-item { border-bottom: 1px solid rgba(143,175,122,0.25); padding: 1.3rem 0; cursor: pointer; }

.faq-question { display: flex; justify-content: space-between; align-items: center; gap: 1rem; }

.faq-q-text { font-size: 0.95rem; font-weight: 500; color: var(--charcoal); line-height: 1.5; }

.faq-toggle {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--sage-pale);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.2s;
  color: var(--moss); font-size: 1.1rem; font-weight: 300; line-height: 1;
}

.faq-item.open .faq-toggle { background: var(--moss); color: var(--white); transform: rotate(45deg); }

.faq-answer {
  font-size: 0.88rem; color: var(--warm-gray); line-height: 1.8;
  font-weight: 300; max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 300px; padding-top: 0.8rem; }

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.site-footer {
  background: var(--charcoal); color: var(--cream);
  padding: 3rem 5vw;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1.5rem;
}

.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 600; color: var(--sage-pale); }

.footer-links { display: flex; gap: 1.8rem; list-style: none; flex-wrap: wrap; }

.footer-links a { font-size: 0.8rem; color: rgba(200,217,184,0.6); text-decoration: none; letter-spacing: 0.06em; transition: color 0.2s; }
.footer-links a:hover { color: var(--sage-pale); }

.footer-copy { font-size: 0.75rem; color: rgba(200,217,184,0.4); }

/* ═══════════════════════════════════════
   CONTACT FORM 7 STYLING
   ═══════════════════════════════════════ */
.wpcf7-form .wpcf7-text,
.wpcf7-form .wpcf7-email,
.wpcf7-form .wpcf7-textarea,
.wpcf7-form .wpcf7-select {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1.5px solid rgba(143,175,122,0.3);
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: #2C2C28;
  background: #FDFAF5;
  transition: border-color 0.2s;
  outline: none;
  resize: vertical;
  box-sizing: border-box;
  margin-top: 0.4rem;
}

.wpcf7-form .wpcf7-text:focus,
.wpcf7-form .wpcf7-email:focus,
.wpcf7-form .wpcf7-textarea:focus,
.wpcf7-form .wpcf7-select:focus { border-color: #8FAF7A; }

.wpcf7-form label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6B6660;
  font-weight: 500;
  display: block;
  margin-bottom: 0.2rem;
  margin-top: 1rem;
}

.wpcf7-form .wpcf7-submit {
  width: 100%;
  background: #1F2E28;
  color: #FDFAF5;
  border: none;
  padding: 0.95rem;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.03em;
  margin-top: 1.2rem;
}

.wpcf7-form .wpcf7-submit:hover { background: #3D4C46; transform: translateY(-1px); }

.wpcf7-response-output {
  margin-top: 1rem !important;
  padding: 0.7rem 1rem !important;
  border-radius: 8px !important;
  font-size: 0.85rem !important;
  border: none !important;
}

.wpcf7-mail-sent-ok { background: #C8D9B8 !important; color: #1F2E28 !important; }
.wpcf7-validation-errors, .wpcf7-mail-sent-ng { background: #f7c1c1 !important; color: #a32d2d !important; }
.wpcf7-not-valid-tip { font-size: 0.75rem !important; color: #a32d2d !important; margin-top: 0.2rem !important; }

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 760px) {
  .two-col, .contact-top { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-visual { max-width: 300px; margin: 0 auto; }
  .site-footer { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}

/* ═══════════════════════════════════════
   LANGUAGE SWITCHER
   ═══════════════════════════════════════ */
.header-right {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.lang-switch {
  display: flex;
  gap: 2px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 30px;
  padding: 3px;
}

.lang-switch button,
.lang-switch a {
  background: transparent;
  border: none;
  color: rgba(244,239,228,0.8);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 0.4rem 0.65rem;
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.lang-switch button:hover,
.lang-switch a:hover { color: var(--cream); }

.lang-switch button.active,
.lang-switch a.active {
  background: var(--cream);
  color: var(--moss);
}

body.has-carousel .site-header.scrolled .lang-switch,
body:not(.has-carousel) .lang-switch {
  background: rgba(59,92,46,0.07);
  border-color: rgba(143,175,122,0.35);
}
body.has-carousel .site-header.scrolled .lang-switch button,
body:not(.has-carousel) .lang-switch button,
.lang-switch a {
  color: var(--warm-gray);
}
body.has-carousel .site-header.scrolled .lang-switch button:hover,
body.has-carousel .site-header.scrolled .lang-switch a:hover,
body:not(.has-carousel) .lang-switch button:hover,
body:not(.has-carousel) .lang-switch a:hover {
  color: var(--moss);
}
body.has-carousel .site-header.scrolled .lang-switch button.active,
body:not(.has-carousel) .lang-switch button.active,
.lang-switch a.active {
  background: var(--moss);
  color: var(--white);
}

@media (max-width: 480px) {
  .lang-switch button,
.lang-switch a { padding: 0.35rem 0.5rem; font-size: 0.68rem; }
}

/* ── Origin badge (Mon parcours) ── */
.about-badge-location {
  position: absolute;
  bottom: -1rem;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  white-space: nowrap;
  padding: 0.7rem 1.2rem;
}

/* ── Language note (FR only) ── */
.lang-note {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.03em;
  color: var(--bark);
  background: var(--sage-pale);
  padding: 0.3rem 0.8rem;
  border-radius: 30px;
  font-weight: 500;
  margin-top: 1rem;
}

.lang-note-card {
  margin-top: 0.8rem;
  margin-bottom: -0.3rem;
}

/* ═══════════════════════════════════════
   SINGLE POST CONTENT (WordPress editor output)
   ═══════════════════════════════════════ */
.single-post-content p {
  font-size: 1rem;
  color: var(--warm-gray);
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 1.4rem;
}

.single-post-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--charcoal);
  margin: 2.2rem 0 1rem;
}

.single-post-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--charcoal);
  margin: 1.8rem 0 0.8rem;
}

.single-post-content img {
  border-radius: var(--radius);
  margin: 1.5rem 0;
}

.single-post-content a {
  color: var(--moss);
  text-decoration: underline;
}

.single-post-content ul,
.single-post-content ol {
  margin: 0 0 1.4rem 1.4rem;
  color: var(--warm-gray);
  font-weight: 300;
}

.single-post-content blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--moss);
  border-left: 3px solid var(--sage);
  padding-left: 1.2rem;
  margin: 1.8rem 0;
}
