/* Feutré — palette identitaire : logo (#543D28), crème #F5F2ED, taupe citation #938D87, chocolat #4A3224 + menu mobile type Atias */

:root {
  /* Maquette + logo */
  --cream: #F5F2ED;
  --white: #FFFFFF;
  --page-bg: #F5F2ED;
  --brand: #543D28;
  --brand-hover: #3f2d1e;
  --brand-muted: #6B5343;
  --chocolate: #4A3224;
  --taupe: #938D87;
  --charcoal: #2D2824;
  --text: #2D2824;
  --text-light: #6B6560;
  --sand: #D8D2CA;
  --fog: #EBE6E0;

  /* Bandeau « Nos missions » : fond blanc pur */
  --warm-white: #FFFFFF;

  /* Rétrocompat : anciennes variables → teintes marque */
  --moss: var(--brand);
  --moss-light: var(--brand-muted);
  --moss-dark: var(--chocolate);
  --terracotta: var(--brand);
  --terracotta-light: #C9B8A4;
  --bark: var(--brand-hover);

  --nav-h: 72px;

  /* Accueil : hero + vision partagent la même grille (séparation verticale alignée) */
  --home-2col-left: 1.15fr;
  --home-2col-right: 1fr;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-weight: 400;
  background: var(--page-bg);
  color: var(--text);
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.35;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ─── NAV (desktop + hamburger comme Atias) ─── */
#navbar, nav#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.2rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: #fff;
  border-bottom: 1px solid rgba(84, 61, 40, 0.1);
  transition: box-shadow 0.3s;
}
#navbar.scrolled { box-shadow: 0 4px 28px rgba(74, 50, 36, 0.07); }

.nav-logo {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
}
.nav-logo-img {
  max-height: 56px;
  width: auto;
  display: block;
  object-fit: contain;
}
.nav-logo-accent { color: var(--taupe); font-weight: 300; }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--brand);
  transition: width 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--brand); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--brand);
  color: #fff !important;
  padding: 0.55rem 1.35rem;
  border-radius: 0;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s;
}
.nav-cta:hover { background: var(--brand-hover); }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--moss-dark);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: #fff;
  z-index: 99;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(84, 61, 40, 0.12);
  box-shadow: 0 20px 40px rgba(74, 50, 36, 0.08);
  flex-direction: column;
  gap: 0.25rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--moss-dark);
  font-weight: 500;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(84, 61, 40, 0.08);
  transition: color 0.2s;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--brand); }
.mobile-menu-cta {
  margin-top: 0.5rem;
  background: var(--brand) !important;
  color: #fff !important;
  border-radius: 0;
  text-align: center;
  padding: 0.85rem !important;
  border: none !important;
}
.mobile-menu-cta:hover { background: var(--chocolate) !important; color: #fff !important; }

@media (max-width: 900px) {
  #navbar, nav#navbar { padding: 1rem 1.5rem; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
}

#main-content { padding-top: var(--nav-h); }

/* ─── HOME SECTIONS (refonte) ─── */
.hero {
  min-height: calc(100vh - var(--nav-h));
  display: grid;
  grid-template-columns: var(--home-2col-left) var(--home-2col-right);
  column-gap: 0;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 4rem 4rem 5rem;
  z-index: 2;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 1.5rem;
}
.hero-tag::before {
  content: '';
  width: 2rem;
  height: 1px;
  background: var(--taupe);
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 1.1;
  color: var(--charcoal);
  font-weight: 400;
  margin-bottom: 1.5rem;
}
.hero-line2, .hero-line-accent { font-style: italic; }
.cta-title .hero-line2.hero-line-accent { font-style: italic; }
.hero-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.02rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-light);
  max-width: 420px;
  margin-bottom: 2rem;
  font-style: normal;
}
.hero-actions { display: flex; gap: 1.2rem; align-items: center; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #fff;
  color: var(--charcoal);
  padding: 0.95rem 1.85rem;
  border-radius: 0;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  border: 1px solid rgba(45, 40, 36, 0.12);
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.btn-primary:hover {
  background: var(--cream);
  color: var(--brand);
  border-color: rgba(84, 61, 40, 0.25);
}
.btn-secondary {
  font-size: 0.85rem;
  color: var(--brand);
  text-decoration: none;
  border-bottom: 1px solid var(--taupe);
  padding-bottom: 2px;
}
.hero-scroll-hint {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}
.scroll-line {
  width: 40px;
  height: 1px;
  background: var(--sand);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--brand);
  animation: scrollAnim 2s ease infinite;
}
@keyframes scrollAnim {
  0% { left: -100%; }
  100% { left: 100%; }
}
.hero-right {
  position: relative;
  min-height: 320px;
  overflow: hidden;
}
.hero-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, var(--chocolate) 0%, var(--brand) 52%, #352518 100%);
  z-index: 1;
}
/* Accueil : images en plein cadre + léger voile pour la citation */
.hero-right--slides::before {
  background: linear-gradient(to top, rgba(30, 24, 20, 0.82) 0%, rgba(30, 24, 20, 0.35) 38%, transparent 62%),
    linear-gradient(90deg, rgba(74, 50, 36, 0.45) 0%, transparent 55%);
  z-index: 2;
  pointer-events: none;
}
.hero-right--slides .hero-wool-pattern,
.hero-right--slides .hero-circles {
  display: none;
}

/* ─── Hero slider (comme Atias : fondu, pas de défilement si une seule image) ─── */
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-slider-track {
  position: absolute;
  inset: 0;
}
.hero-slider-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}
.hero-slider-slide.active {
  opacity: 1;
  pointer-events: auto;
}
.hero-slider-slide .hero-right-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-slider-dots {
  position: absolute;
  bottom: 8.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.45rem;
  z-index: 4;
}
.hero-slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, border-color 0.25s;
}
.hero-slider-dot:hover {
  background: rgba(255, 255, 255, 0.35);
}
.hero-slider-dot.active {
  background: #fff;
  border-color: #fff;
}

.hero-wool-pattern {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.2;
  background-image: radial-gradient(circle at 28% 32%, rgba(255,255,255,0.22) 0%, transparent 45%),
    radial-gradient(circle at 72% 68%, rgba(201, 184, 164, 0.35) 0%, transparent 48%);
}
.hero-circles { position: absolute; inset: 0; z-index: 3; overflow: hidden; }
.circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  animation: slowSpin linear infinite;
}
.circle-1 { width: 400px; height: 400px; top: -80px; right: -80px; animation-duration: 40s; }
.circle-2 { width: 260px; height: 260px; bottom: 40px; left: -40px; animation-duration: 30s; animation-direction: reverse; }
.circle-3 { width: 140px; height: 140px; top: 40%; right: 20%; animation-duration: 22s; border-color: rgba(255,255,255,0.22); }
@keyframes slowSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.hero-quote-block {
  position: absolute;
  bottom: 2.5rem;
  left: 2rem;
  right: 2rem;
  z-index: 5;
}
.hero-quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-style: italic;
  color: rgba(255,255,255,0.92);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}
.hero-quote-author {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.vision {
  padding: 0;
  display: grid;
  grid-template-columns: var(--home-2col-left) var(--home-2col-right);
  column-gap: 0;
  align-items: center;
  background: var(--cream);
  position: relative;
}
.vision-content { padding: 0; }
@media (min-width: 901px) {
  .vision-content {
    /* Espacement texte / photo : padding dans la colonne droite (pas de gap entre tracks) pour aligner le trait avec le hero */
    padding: 6rem 5rem 6rem 4rem;
  }
}
.vision-image-wrap { position: relative; }
.vision-image-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(165deg, var(--brand-muted) 0%, var(--chocolate) 100%);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.vision-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.vision-image-inner { z-index: 1; position: relative; }
.vision-fa-icon { font-size: 4.5rem; color: rgba(255, 255, 255, 0.92); filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.2)); }
.wool-icon { font-size: 5rem; filter: drop-shadow(0 4px 20px rgba(0,0,0,0.2)); }
.vision-badge {
  position: absolute;
  top: 6rem;
  right: -1rem;
  bottom: auto;
  width: 100px;
  height: 100px;
  background: var(--brand);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.75rem;
  font-family: 'Playfair Display', serif;
  color: #fff;
  box-shadow: 0 10px 28px rgba(74, 50, 36, 0.35);
  font-size: 0.65rem;
}
.vision-badge span:first-child { font-size: 1.75rem; font-weight: 600; line-height: 1; }

.section-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.section-eyebrow::before {
  content: '';
  width: 1.5rem;
  height: 1px;
  background: var(--taupe);
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.85rem, 3vw, 2.6rem);
  font-weight: 400;
  line-height: 1.25;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
}
.section-body {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.98rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-light);
  margin-bottom: 1.25rem;
}
.values-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.5rem; }
.pill {
  background: var(--fog);
  color: var(--brand);
  padding: 0.4rem 1rem;
  border-radius: 0;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid var(--sand);
}

.missions { padding: 6rem 5rem; background: var(--white); }
.missions-header { text-align: center; max-width: 560px; margin: 0 auto 3rem; }
.missions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.mission-card {
  background: var(--cream);
  border: 1px solid var(--sand);
  border-radius: 0;
  padding: 2rem 1.5rem;
  transition: transform 0.3s, box-shadow 0.3s;
}
.mission-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(84, 61, 40, 0.1);
}
.mission-icon {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 1rem;
  background: none;
  border-radius: 0;
  width: auto;
  height: auto;
}
.mission-icon .mission-icon-img {
  width: auto;
  height: auto;
  max-width: 2.75rem;
  max-height: 2.75rem;
  object-fit: contain;
  display: block;
}
.mission-icon i {
  color: var(--brand);
  font-size: 1.65rem;
  line-height: 1;
}
.mission-icon svg.svg-inline--fa {
  height: 1.65rem;
  color: var(--brand);
  vertical-align: -0.125em;
}
.mission-icon .mission-icon-empty {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sand);
}
.mission-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--charcoal);
}
.mission-body { font-size: 0.88rem; font-weight: 300; line-height: 1.7; color: var(--text-light); }

.quote-strip {
  background: var(--taupe);
  padding: 5rem 4rem;
  text-align: center;
  position: relative;
}
.quote-strip-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-style: italic;
  color: rgba(255,255,255,0.92);
  line-height: 1.5;
  max-width: 760px;
  margin: 0 auto 1.5rem;
}
.quote-strip-decoration { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-bottom: 1rem; }
.quote-strip-decoration span { width: 36px; height: 1px; background: rgba(255,255,255,0.2); }
.quote-strip-decoration-icon {
  font-size: 1.35rem;
  line-height: 1;
  color: var(--moss);
}
.quote-strip-decoration-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
}
.quote-strip-author {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

.cta-section {
  padding: 6rem 5rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  background: var(--cream);
}
.cta-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 3.5vw, 3.2rem); font-weight: 400; line-height: 1.2; margin-bottom: 1rem; }
.cta-title em, .cta-title .hero-line-accent { font-style: italic; }
.cta-body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}
.cta-email {
  font-size: 1.02rem;
  color: var(--brand);
  text-decoration: none;
  border-bottom: 2px solid var(--taupe);
  font-weight: 500;
}
.cta-card {
  background: linear-gradient(160deg, var(--chocolate) 0%, var(--brand) 100%);
  border-radius: 0;
  padding: 2.5rem 2rem;
  color: #fff;
}
.cta-card-title { font-family: 'Playfair Display', serif; font-size: 1.35rem; margin-bottom: 0.75rem; font-style: italic; }
.cta-card-body { font-size: 0.9rem; line-height: 1.65; color: rgba(255,255,255,0.82); margin-bottom: 1.5rem; }
.cta-card-btn {
  display: inline-flex;
  background: #fff;
  color: var(--chocolate);
  padding: 0.85rem 1.65rem;
  border-radius: 0;
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}
.cta-card-btn:hover { background: var(--cream); color: var(--brand); }

/* Footer */
.site-footer { background: var(--chocolate); padding: 3rem 5rem 2rem; color: rgba(255,255,255,0.62); }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-col--brand .footer-logo-img { margin-bottom: 1rem; }
.footer-logo-img { max-height: 52px; width: auto; object-fit: contain; display: block; }
.footer-brand-name { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: #fff; margin-bottom: 0.5rem; }
.footer-brand-name em { color: var(--terracotta-light); font-style: italic; }
.footer-brand-desc { font-size: 0.88rem; line-height: 1.7; max-width: 280px; }
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.1rem;
}
.footer-social-link { margin: 0; }
.site-footer .social-link {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}
.site-footer .social-link:hover {
  background: rgba(255, 255, 255, 0.26);
  color: #fff;
  filter: none;
}
.footer-address {
  margin: 0.75rem 0 0;
  font-size: 0.86rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.55);
}
.footer-newsletter { margin-top: 1.25rem; }
.footer-newsletter-title {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin: 0 0 0.65rem;
}
.footer-newsletter-embed { font-size: 0.8rem; line-height: 1.5; }
.footer-newsletter-embed iframe { max-width: 100%; }
.footer-newsletter-fields { display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; }
.footer-newsletter-input {
  flex: 1 1 160px;
  min-width: 0;
  padding: 0.5rem 0.65rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 2px;
  background: rgba(0,0,0,0.15);
  color: #fff;
  font-size: 0.82rem;
  font-family: inherit;
}
.footer-newsletter-input::placeholder { color: rgba(255,255,255,0.4); }
.footer-newsletter-btn {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 2px;
  background: var(--terracotta-light, #c17a5a);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  font-family: inherit;
}
.footer-newsletter-btn:hover { filter: brightness(1.08); }
.footer-flash {
  padding: 0.75rem 1rem;
  margin: 0 0 1.25rem;
  border-radius: 4px;
  font-size: 0.88rem;
}
.footer-flash--ok { background: rgba(80, 160, 90, 0.35); color: rgba(255,255,255,0.95); }
.footer-flash--err { background: rgba(180, 60, 50, 0.35); color: rgba(255,255,255,0.95); }
.footer-col-title {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1rem;
}
.footer-links { list-style: none; }
.footer-links a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.86rem;
  display: block;
  padding: 0.35rem 0;
}
.footer-links a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.75rem;
}
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: rgba(255,255,255,0.35); text-decoration: none; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.75); }

/* Reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.75s ease, transform 0.75s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.4s; }
.reveal-delay-6 { transition-delay: 0.48s; }

/* Page hero */
.page-hero {
  min-height: 32vh;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  background: var(--chocolate);
  position: relative;
  overflow: hidden;
}
.page-hero-left { padding: 4rem 4rem 4rem 5rem; z-index: 2; display: flex; flex-direction: column; justify-content: center; }
.page-hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta-light);
  margin-bottom: 1rem;
}
.page-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.1;
}
.page-hero-title .hero-line2.hero-line-accent { font-style: italic; }
.page-hero-title em, .page-hero-title .hero-line-orange { font-style: italic; color: var(--terracotta-light); }
.page-hero-desc { margin-top: 1rem; color: rgba(255,255,255,0.75); max-width: 420px; line-height: 1.7; }
.page-hero-right { position: relative; }
.page-hero-deco {
  position: absolute;
  right: 2rem;
  bottom: 1rem;
  font-family: 'Playfair Display', serif;
  font-size: 8rem;
  color: rgba(255,255,255,0.04);
}
.page-hero--with-bg .page-hero-bg {
  position: absolute;
  inset: 0;
}
.page-hero--with-bg .page-hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.page-hero--with-bg .page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgb(10 9 9 / 68%) 0%, rgb(5 5 5 / 27%) 100%);
}
.page-hero--with-bg .page-hero-left,
.page-hero--with-bg .page-hero-right { position: relative; z-index: 2; }

/* Actus */
.actus-section { padding: 4rem 5rem 5rem; max-width: 1200px; margin: 0 auto; }
.actus-search { display: flex; gap: 0.5rem; margin-bottom: 2rem; max-width: 400px; }
.actus-search input {
  flex: 1;
  padding: 0.65rem 1rem;
  border: 1px solid var(--sand);
  border-radius: 4px;
  font-family: inherit;
}
.actus-search button {
  padding: 0.65rem 1.2rem;
  background: var(--brand);
  color: #fff;
  border: none;
  border-radius: 0;
  cursor: pointer;
}
.actus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.actus-card {
  background: var(--cream);
  border: 1px solid var(--fog);
  border-radius: 0;
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.actus-card:hover { box-shadow: 0 12px 32px rgba(84, 61, 40, 0.12); }
.actus-card-image img { width: 100%; height: 200px; object-fit: cover; display: block; }
.actus-card-body { padding: 1.25rem; }
.actus-card-tag { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--brand); }
.actus-card-title { margin: 0.5rem 0; font-family: 'Playfair Display', serif; font-size: 1.15rem; }
.actus-card-title a { color: var(--charcoal); text-decoration: none; }
.actus-card-title a:hover { color: var(--moss); }
.actus-card-meta { font-size: 0.8rem; color: var(--text-light); }
.actus-card-excerpt { margin-top: 0.5rem; font-size: 0.88rem; color: var(--text-light); line-height: 1.5; }
.actus-pagination { margin-top: 2.5rem; display: flex; gap: 0.5rem; justify-content: center; flex-wrap: wrap; }
.actus-pagination a, .actus-pagination .current {
  padding: 0.4rem 0.75rem;
  border-radius: 4px;
  text-decoration: none;
  color: var(--moss-dark);
  border: 1px solid var(--sand);
}
.actus-pagination .current { background: var(--brand); color: #fff; border-color: var(--brand); }

/* Article */
.read-progress { position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 200; background: transparent; }
.read-progress-bar { height: 100%; width: 0; background: var(--terracotta); transition: width 0.1s; }
.article-hero { position: relative; min-height: 42vh; display: flex; align-items: flex-end; }
.article-hero-bg { position: absolute; inset: 0; }
.article-hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.article-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(45,40,36,0.95), rgba(84,61,40,0.45)); }
.article-hero-content { position: relative; z-index: 2; padding: 5rem 5rem 3rem; max-width: 900px; }
.article-breadcrumb { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem; }
.article-breadcrumb a { color: rgba(255,255,255,0.65); text-decoration: none; }
.article-breadcrumb span { color: rgba(255,255,255,0.4); margin: 0 0.35rem; }
.article-tag { display: inline-block; font-size: 0.72rem; letter-spacing: 0.12em; color: var(--terracotta-light); margin-bottom: 0.75rem; text-transform: uppercase; }
.article-hero-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3rem); color: #fff; line-height: 1.15; }
.article-meta { margin-top: 1rem; color: rgba(255,255,255,0.6); font-size: 0.88rem; }
.article-layout { max-width: 720px; margin: 3rem auto; padding: 0 1.5rem; }
.article-body { font-family: 'Montserrat', sans-serif; font-weight: 400; line-height: 1.85; color: var(--text); overflow-wrap: break-word; }
.article-body p { margin-bottom: 1rem; }
.article-body ul, .article-body ol { margin: 1rem 0 1rem 1.25rem; }
.article-body li { margin-bottom: 0.45rem; }

/* Titres issus du rich text (TinyMCE) : hiérarchie cohérente sur tout le site */
:is(.article-body, .page-static-content, .contact-intro, .faq-item-answer) h1,
:is(.article-body, .page-static-content, .contact-intro, .faq-item-answer) h2,
:is(.article-body, .page-static-content, .contact-intro, .faq-item-answer) h3,
:is(.article-body, .page-static-content, .contact-intro, .faq-item-answer) h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.22;
  color: var(--charcoal);
}
:is(.article-body, .page-static-content, .contact-intro, .faq-item-answer) h1 {
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  margin: 2.25rem 0 0.85rem;
  letter-spacing: -0.01em;
}
:is(.article-body, .page-static-content, .contact-intro, .faq-item-answer) h2 {
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  margin: 2rem 0 0.7rem;
  color: var(--moss-dark);
}
:is(.article-body, .page-static-content, .contact-intro, .faq-item-answer) h3 {
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  margin: 1.65rem 0 0.55rem;
  font-weight: 600;
}
:is(.article-body, .page-static-content, .contact-intro, .faq-item-answer) h4 {
  font-size: 1.05rem;
  margin: 1.35rem 0 0.45rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
:is(.article-body, .page-static-content, .contact-intro, .faq-item-answer) > h1:first-child,
:is(.article-body, .page-static-content, .contact-intro, .faq-item-answer) > h2:first-child,
:is(.article-body, .page-static-content, .contact-intro, .faq-item-answer) > h3:first-child,
:is(.article-body, .page-static-content, .contact-intro, .faq-item-answer) > h4:first-child {
  margin-top: 0;
}

/* Liens dans les contenus éditoriaux (articles, pages CMS, FAQ…) */
:is(.article-body, .page-static-content, .contact-intro, .faq-item-answer) a,
:is(.article-body, .page-static-content, .contact-intro, .faq-item-answer) a u,
:is(.article-body, .page-static-content, .contact-intro, .faq-item-answer) u a {
  color: var(--brand-muted);
  text-decoration: underline;
  text-decoration-color: rgba(107, 83, 67, 0.45);
  text-underline-offset: 0.18em;
  transition: color 0.15s ease, text-decoration 0.15s ease;
}
:is(.article-body, .page-static-content, .contact-intro, .faq-item-answer) a:hover,
:is(.article-body, .page-static-content, .contact-intro, .faq-item-answer) a:hover u,
:is(.article-body, .page-static-content, .contact-intro, .faq-item-answer) u a:hover {
  color: var(--brand);
  text-decoration: none;
}
:is(.article-body, .page-static-content, .contact-intro, .faq-item-answer) a:visited,
:is(.article-body, .page-static-content, .contact-intro, .faq-item-answer) a:visited u,
:is(.article-body, .page-static-content, .contact-intro, .faq-item-answer) u a:visited {
  color: var(--chocolate);
}
:is(.article-body, .page-static-content, .contact-intro, .faq-item-answer) a:focus-visible {
  outline: 2px solid var(--brand-muted);
  outline-offset: 2px;
  border-radius: 2px;
}

:is(.article-body, .page-static-content, .contact-intro, .faq-item-answer) img {
  display: block;
  max-width: 100%;
  width: auto;
  height: auto;
  margin: 1.5rem 0;
}
:is(.article-body, .page-static-content, .contact-intro, .faq-item-answer) figure {
  margin: 1.5rem 0;
  max-width: 100%;
}
:is(.article-body, .page-static-content, .contact-intro, .faq-item-answer) figure img {
  margin: 0;
}
:is(.article-body, .page-static-content, .contact-intro, .faq-item-answer) iframe,
:is(.article-body, .page-static-content, .contact-intro, .faq-item-answer) video {
  display: block;
  max-width: 100%;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  margin: 1.5rem 0;
  border: 0;
}

.article-back { text-align: center; margin: 3rem 0 5rem; }
.article-back a {
  color: var(--brand-muted);
  text-decoration: underline;
  text-decoration-color: rgba(107, 83, 67, 0.45);
  text-underline-offset: 0.18em;
  transition: color 0.15s ease, text-decoration 0.15s ease;
}
.article-back a:hover {
  color: var(--brand);
  text-decoration: none;
}

/* Static page */
.page-static { padding: 4rem 5rem 6rem; overflow-x: clip; }
.page-static.page-static--gallery-before { padding-top: clamp(1.25rem, 3vw, 2rem); }
.page-static-inner { max-width: 720px; margin: 0 auto; }
.page-static-title { font-family: 'Playfair Display', serif; font-size: 2.2rem; margin-bottom: 1.5rem; color: var(--charcoal); }
.page-static-content { line-height: 1.85; color: var(--text); overflow-wrap: break-word; }
.page-static-content p { margin-bottom: 1rem; }
.page-static-content .lead { font-size: 1.12rem; font-family: 'Montserrat', sans-serif; font-weight: 300; color: var(--text-light); }
.page-static-content ul { margin: 1rem 0 1rem 1.25rem; }
.page-static-content ol { margin: 1rem 0 1rem 1.25rem; }
.page-static-content li { margin-bottom: 0.45rem; }

/* Galerie produit — bandeau pleine largeur */
.product-gallery {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 0;
  background: transparent;
  overflow: hidden;
}
.product-gallery--after {
  margin-top: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}
.product-gallery--before {
  margin-top: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: clamp(1rem, 2.5vw, 1.75rem);
}
.product-gallery__frame {
  position: relative;
}
.product-gallery__nav {
  display: none;
}
.product-gallery__scroller {
  display: flex;
  gap: clamp(0.65rem, 2vw, 1.25rem);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 clamp(0.75rem, 3vw, 2rem);
  cursor: grab;
}
.product-gallery__scroller::-webkit-scrollbar {
  display: none;
}
.product-gallery__scroller.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}
.product-gallery__item {
  flex: 0 0 clamp(220px, 28vw, 320px);
  scroll-snap-align: start;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.product-gallery__media {
  background: transparent;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.product-gallery__zoom {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: transparent;
  cursor: zoom-in;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.product-gallery__zoom:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}
.product-gallery__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.product-gallery__caption {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(0.78rem, 1.6vw, 0.92rem);
  line-height: 1.45;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  color: var(--charcoal);
  padding: 0 0.25rem;
}
@media (min-width: 900px) {
  .product-gallery__frame {
    padding: 0 clamp(2.5rem, 5vw, 4rem);
  }
  .product-gallery__scroller {
    padding: 0;
  }
  .product-gallery__nav {
    display: flex;
    position: absolute;
    top: 38%;
    z-index: 2;
    transform: translateY(-50%);
    width: 2.25rem;
    height: 2.25rem;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.88);
    color: var(--charcoal);
    box-shadow: 0 2px 12px rgba(45, 40, 36, 0.1);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    transition: background 0.2s, color 0.2s;
  }
  .product-gallery__nav:hover {
    background: var(--brand);
    color: #fff;
  }
  .product-gallery__nav--prev { left: 0.35rem; }
  .product-gallery__nav--next { right: 0.35rem; }
}

.product-gallery-lightbox {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(3.5rem, 8vw, 5rem) clamp(1rem, 4vw, 2.5rem) clamp(1rem, 4vw, 2rem);
  box-sizing: border-box;
}
.product-gallery-lightbox[hidden] {
  display: none !important;
}
.product-gallery-lightbox__backdrop {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background: rgba(18, 16, 14, 0.96);
}
.product-gallery-lightbox__figure {
  position: relative;
  z-index: 1;
  margin: 0;
  width: 100%;
  max-width: min(96vw, 1200px);
  max-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
}
.product-gallery-lightbox__img {
  display: block;
  max-width: min(96vw, 1200px);
  max-height: calc(100dvh - 6.5rem);
  width: auto;
  height: auto;
  object-fit: contain;
}
.product-gallery-lightbox__caption {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 0.9rem;
  line-height: 1.45;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  color: rgba(255, 255, 255, 0.88);
  max-width: 36rem;
}
.product-gallery-lightbox__caption:empty {
  display: none;
}
.product-gallery-lightbox__close,
.product-gallery-lightbox__nav {
  position: fixed;
  z-index: 2;
  border: none;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.product-gallery-lightbox__close:hover,
.product-gallery-lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.22);
}
.product-gallery-lightbox__close {
  top: clamp(0.85rem, 2.5vw, 1.35rem);
  right: clamp(0.85rem, 2.5vw, 1.35rem);
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  font-size: 1.15rem;
}
.product-gallery-lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  font-size: 1rem;
}
.product-gallery-lightbox__nav--prev { left: clamp(0.75rem, 2.5vw, 1.5rem); }
.product-gallery-lightbox__nav--next { right: clamp(0.75rem, 2.5vw, 1.5rem); }
html.product-gallery-lightbox-open,
body.product-gallery-lightbox-open {
  overflow: hidden;
}

/* Contact */
.contact-section { display: grid; grid-template-columns: 1fr 1.2fr; gap: 3rem; padding: 4rem 5rem; max-width: 1100px; margin: 0 auto; align-items: start; }
.contact-intro { font-size: 1rem; line-height: 1.75; color: var(--text-light); }
.contact-intro p { margin-bottom: 1rem; }
.contact-intro ul, .contact-intro ol { margin: 1rem 0 1rem 1.25rem; color: var(--text-light); }
.contact-intro li { margin-bottom: 0.45rem; }
.offices-social { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.social-link {
  display: inline-flex;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  background: var(--moss);
  color: var(--cream);
  border-radius: 50%;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1;
  transition: background 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}
.social-link:hover {
  filter: brightness(0.92);
}
.contact-section .social-link:hover {
  background: var(--chocolate);
  color: #fff;
  filter: none;
}
.social-link i {
  line-height: 1;
}
.form-title { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--charcoal); margin: 0.5rem 0 1rem; }
.form-required-note { font-size: 0.85rem; color: var(--text-light); margin-bottom: 1.5rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group.full { grid-column: 1 / -1; }
.form-field-label { display: block; font-size: 0.8rem; margin-bottom: 0.35rem; color: var(--text); }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border: 1px solid var(--sand);
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
}
.form-textarea { min-height: 140px; resize: vertical; }
.form-submit {
  background: var(--brand);
  color: #fff;
  border: none;
  padding: 0.85rem 1.75rem;
  border-radius: 0;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
}
.form-submit:hover { background: var(--brand-hover); }
.form-legal { font-size: 0.82rem; color: var(--text-light); }

/* Honeypot anti-robot (ne pas retirer du DOM) */
.contact-hp {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.admin-edit-fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--moss);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  z-index: 500;
}
.admin-edit-fab svg { width: 22px; height: 22px; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-right { min-height: 280px; }
  .hero-left { padding: 3rem 1.5rem; }
  .vision, .cta-section { grid-template-columns: 1fr; padding: 4rem 1.5rem; }
  .missions { padding: 4rem 1.5rem; }
  .missions-grid { grid-template-columns: 1fr; }
  .quote-strip { padding: 3.5rem 1.5rem; }
  .site-footer {
    background: var(--chocolate);
    padding: 3rem 1.3rem 2rem;
    color: rgba(255, 255, 255, 0.62);
  }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .page-hero { grid-template-columns: 1fr; }
  .page-hero-left { padding: 3rem 1.5rem; }
  .page-static { padding: 4rem 1.3rem 6rem; }
  .page-static.page-static--gallery-before { padding: 0 1.3rem 6rem; }
  .product-gallery__item { flex-basis: clamp(180px, 72vw, 260px); }
  .actus-section { padding: 4rem 1rem 5rem; }
  .actus-grid { grid-template-columns: 1fr; }
  .contact-section { grid-template-columns: 1fr; padding: 2rem 1.5rem; }
  .form-grid { grid-template-columns: 1fr; }
}

/* ─── FAQ (module type Atias, charte Feutré) ─── */
.faq-section {
  padding: 2.5rem 0 5rem;
}
.faq-empty {
  text-align: center;
  color: var(--brand-muted);
  font-size: 1.05rem;
  max-width: 36rem;
  margin: 2rem auto 0;
}
.faq-layout {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: 3rem 5rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}
.faq-nav {
  position: sticky;
  top: 120px;
  align-self: start;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
  padding: 0;
  scrollbar-width: thin;
}
.faq-nav-label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(84, 61, 40, 0.45);
  margin: 0 0 1rem;
  font-weight: 600;
}
.faq-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.faq-nav-list li {
  margin: 0 0 0.65rem;
}
.faq-nav-list a {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--brand);
  font-weight: 600;
  display: inline-block;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.faq-nav-list a:hover {
  color: #b86d4f;
  border-bottom-color: #b86d4f;
}
.faq-category {
  scroll-margin-top: 7rem;
}
.faq-category + .faq-category {
  margin-top: 3rem;
}
.faq-category-title {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: #b86d4f;
  margin: 0 0 0.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(84, 61, 40, 0.2);
}
.faq-item {
  border-bottom: 1px solid rgba(84, 61, 40, 0.15);
}
.faq-item-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.1rem 0;
  cursor: pointer;
  list-style: none;
  font-size: 1rem;
  font-weight: 500;
  color: var(--brand);
  line-height: 1.45;
}
.faq-item-summary::-webkit-details-marker {
  display: none;
}
.faq-item-question {
  flex: 1;
  min-width: 0;
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
}
.faq-item-toggle {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  position: relative;
  border-radius: 2px;
}
.faq-item-toggle::before,
.faq-item-toggle::after {
  content: "";
  position: absolute;
  background: var(--brand);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s;
}
.faq-item-toggle::before {
  width: 10px;
  height: 2px;
}
.faq-item-toggle::after {
  width: 2px;
  height: 10px;
}
.faq-item[open] .faq-item-toggle::after {
  opacity: 0;
}
.faq-item-answer {
  padding: 0 0 1.25rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(45, 40, 36, 0.85);
  max-width: 52rem;
}
.faq-item-answer p:first-child {
  margin-top: 0;
}
.faq-item-answer p:last-child {
  margin-bottom: 0;
}
.faq-item-answer ul, .faq-item-answer ol { margin: 0.75rem 0 0.75rem 1.25rem; }
.faq-item-answer li { margin-bottom: 0.35rem; }
@media (max-width: 900px) {
  .faq-section {
    padding-top: 1.5rem;
  }
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    padding: 0 clamp(1rem, 4vw, 1.5rem);
  }
  .faq-nav {
    position: static;
    max-height: none;
    overflow: visible;
    padding: 0 0 1rem;
    margin: 0 -0.25rem;
    border-bottom: 1px solid rgba(84, 61, 40, 0.1);
  }
  .faq-nav-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem 1.25rem;
    overflow-x: auto;
    padding-bottom: 0.35rem;
  }
  .faq-nav-list li {
    margin: 0;
  }
  .faq-category {
    scroll-margin-top: 5.5rem;
  }
}
