/* =========================================================================
   THAÏTI — Système de design sur-mesure
   Luxe discret · nature · sérénité. Vert olive & or camel sur ivoire.
   ========================================================================= */

/* ---------- 1. Tokens ---------- */
:root {
  /* Couleurs principales */
  --olive:        #484b38;   /* vert olive foncé — principal */
  --olive-deep:   #363829;   /* variante profonde (footer, hero) */
  --olive-soft:   #5c604a;
  --gold:         #c69456;   /* or camel — accent / CTA */
  --gold-deep:    #ac7b3f;
  --gold-soft:    #d9b487;

  /* Fonds / surfaces */
  --ivory:        #f6f1e7;   /* fond principal */
  --ivory-warm:   #efe7d8;   /* sections alternées */
  --card:         #fbf8f1;
  --line:         #e2d8c6;   /* bordures fines */

  /* Texte */
  --ink:          #2e3025;   /* texte principal */
  --ink-soft:     #63665a;   /* texte secondaire */
  --on-dark:      #f2ecdf;
  --on-dark-soft: #c8c3b3;

  /* Typographie */
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans:  "Jost", "Helvetica Neue", Arial, sans-serif;

  /* Rythme */
  --wrap: 1240px;
  --gutter: clamp(1.25rem, 5vw, 4rem);
  --section-y: clamp(4.5rem, 10vw, 9rem);
  --radius: 4px;
  --radius-lg: 10px;

  /* Mouvement */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.7s;

  --shadow-soft: 0 24px 60px -30px rgba(54, 56, 41, 0.45);
  --shadow-card: 0 20px 50px -34px rgba(54, 56, 41, 0.55);
}

/* ---------- 2. Reset léger ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.7;
  font-size: clamp(1rem, 0.55vw + 0.9rem, 1.075rem);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
::selection { background: var(--gold-soft); color: var(--olive-deep); }

/* ---------- 3. Typographie ---------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.08; color: var(--olive); letter-spacing: 0.01em; }
h1 { font-size: clamp(2.7rem, 6vw, 5rem); font-weight: 500; }
h2 { font-size: clamp(2.1rem, 4.4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 2.4vw, 2rem); }
p { max-width: 68ch; }
strong { font-weight: 500; }

.eyebrow {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: var(--gold); opacity: 0.7; }
.eyebrow.is-centered::after { content: ""; width: 34px; height: 1px; background: var(--gold); opacity: 0.7; }

.lead { font-size: clamp(1.1rem, 1.4vw, 1.3rem); color: var(--ink-soft); font-weight: 300; }
.serif-accent { font-family: var(--serif); font-style: italic; color: var(--gold-deep); }

/* ---------- 4. Layout ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--narrow { max-width: 880px; }
.section { padding-block: var(--section-y); }
.section--warm { background: var(--ivory-warm); }
.section--olive { background: var(--olive-deep); color: var(--on-dark); }
.section--olive h1, .section--olive h2, .section--olive h3 { color: var(--on-dark); }
.stack > * + * { margin-top: 1.25rem; }
.center { text-align: center; }
.center .eyebrow { justify-content: center; }
.center p { margin-inline: auto; }

.section-head { max-width: 720px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head.center { margin-inline: auto; }
.section-head .eyebrow { margin-bottom: 1.4rem; }
.section-head p { margin-top: 1.4rem; }

/* ---------- 5. Boutons ---------- */
.btn {
  --btn-bg: var(--olive);
  --btn-fg: var(--ivory);
  display: inline-flex; align-items: center; gap: 0.65rem;
  padding: 1.02rem 2rem;
  background: var(--btn-bg); color: var(--btn-fg);
  font-family: var(--sans); font-weight: 500;
  font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase;
  border: 1px solid var(--btn-bg); border-radius: 100px;
  position: relative; overflow: hidden;
  transition: transform 0.5s var(--ease), background 0.5s var(--ease), color 0.5s var(--ease), border-color 0.5s var(--ease);
}
.btn span { position: relative; z-index: 1; }
.btn svg { width: 17px; height: 17px; position: relative; z-index: 1; }
.btn:hover { transform: translateY(-2px); }
.btn--gold { --btn-bg: var(--gold); --btn-fg: #fff; border-color: var(--gold); }
.btn--gold:hover { background: var(--gold-deep); border-color: var(--gold-deep); }
.btn--olive:hover { background: var(--olive-deep); }
.btn--ghost {
  --btn-bg: transparent; --btn-fg: var(--olive);
  border-color: rgba(72, 75, 56, 0.35);
}
.btn--ghost:hover { --btn-fg: #fff; background: var(--olive); border-color: var(--olive); }
.btn--on-dark { --btn-bg: transparent; --btn-fg: var(--on-dark); border-color: rgba(242,236,223,0.4); }
.btn--on-dark:hover { background: var(--gold); border-color: var(--gold); --btn-fg: #fff; }
.btn--lg { padding: 1.15rem 2.4rem; }

.textlink {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--sans); font-weight: 500; font-size: 0.8rem;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-deep);
}
.textlink svg { width: 16px; transition: transform 0.4s var(--ease); }
.textlink:hover svg { transform: translateX(5px); }

/* ---------- 6. Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding-block: 1.15rem;
  transition: background 0.5s var(--ease), padding 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 2rem; max-width: 1360px; }
.site-header.is-scrolled {
  background: rgba(246, 241, 231, 0.9);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(226, 216, 198, 0.8);
  padding-block: 0.7rem;
}
.brand { display: inline-flex; align-items: center; line-height: 0; }
.brand svg, .brand img { height: 58px; width: auto; transition: height 0.5s var(--ease); }
.is-scrolled .brand svg, .is-scrolled .brand img { height: 46px; }

.nav-menu { display: flex; align-items: center; gap: 2.1rem; }
.nav-menu a {
  font-family: var(--sans); font-weight: 400; font-size: 0.82rem;
  letter-spacing: 0.06em; color: var(--on-dark); position: relative; padding-block: 0.3rem;
  transition: color 0.4s var(--ease);
}
.is-scrolled .nav-menu a { color: var(--ink); }
.nav-menu a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--gold); transition: width 0.4s var(--ease);
}
.nav-menu a:hover::after, .nav-menu .current-menu-item > a::after { width: 100%; }
.nav-menu a:hover { color: var(--gold); }
.is-scrolled .nav-menu a:hover { color: var(--gold-deep); }

.header-cta { display: flex; align-items: center; gap: 1.2rem; }
.header-actions { display: flex; align-items: center; gap: 1.1rem; }
.primary-nav .btn { display: none; } /* visible seulement en menu mobile */

/* Burger */
.nav-toggle { display: none; width: 44px; height: 44px; background: none; border: 0; position: relative; z-index: 120; }
.nav-toggle span { position: absolute; left: 10px; right: 10px; height: 1.5px; background: var(--on-dark); transition: transform 0.4s var(--ease), opacity 0.3s; }
.is-scrolled .nav-toggle span, .nav-open .nav-toggle span { background: var(--ink); }
.nav-toggle span:nth-child(1) { top: 16px; }
.nav-toggle span:nth-child(2) { top: 22px; }
.nav-toggle span:nth-child(3) { top: 28px; }
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- 7. Hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; color: var(--on-dark); overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; transform: scale(1.08); animation: heroZoom 14s var(--ease) forwards; }
@keyframes heroZoom { to { transform: scale(1); } }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(28,29,22,0.82) 0%, rgba(28,29,22,0.28) 45%, rgba(28,29,22,0.45) 100%);
}
.hero .wrap { position: relative; z-index: 1; padding-bottom: clamp(3.5rem, 8vh, 7rem); padding-top: 8rem; max-width: 1360px; width: 100%; }
.hero__inner { max-width: 780px; }
.hero .eyebrow { color: var(--gold-soft); margin-bottom: 1.6rem; }
.hero .eyebrow::before { background: var(--gold-soft); }
.hero h1 { color: #fff; font-weight: 500; }
.hero h1 em { font-style: italic; color: var(--gold-soft); }
.hero__sub { color: var(--on-dark-soft); font-size: clamp(1.05rem, 1.3vw, 1.28rem); max-width: 46ch; margin-top: 1.8rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.6rem; }
.hero__scroll { position: absolute; left: 50%; bottom: 1.6rem; transform: translateX(-50%); z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 0.6rem; color: var(--on-dark-soft); font-size: 0.62rem; letter-spacing: 0.28em; text-transform: uppercase; }
.hero__scroll i { width: 1px; height: 46px; background: linear-gradient(var(--gold-soft), transparent); animation: scrollPulse 2.4s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100% { transform: scaleY(0.5); opacity: 0.4; transform-origin: top; } 50% { transform: scaleY(1); opacity: 1; } }

/* ---------- 8. Marquee valeurs ---------- */
.trust { background: var(--olive-deep); color: var(--on-dark-soft); padding-block: 1.15rem; overflow: hidden; }
.trust__track { display: flex; gap: 3.5rem; white-space: nowrap; width: max-content; animation: marquee 34s linear infinite; }
.trust:hover .trust__track { animation-play-state: paused; }
.trust__track span { display: inline-flex; align-items: center; gap: 3.5rem; font-size: 0.78rem; letter-spacing: 0.24em; text-transform: uppercase; }
.trust__track span::after { content: "❋"; color: var(--gold); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- 9. Intro / split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media { position: relative; }
.split__media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); aspect-ratio: 4/5; object-fit: cover; }
.split__media .badge {
  position: absolute; background: var(--card); border-radius: var(--radius-lg); padding: 1.4rem 1.6rem;
  box-shadow: var(--shadow-card); display: flex; align-items: center; gap: 1rem; max-width: 250px;
}
.split__media .badge--br { right: -8%; bottom: 8%; }
.split__media .badge b { font-family: var(--serif); font-size: 2.4rem; color: var(--gold-deep); line-height: 1; }
.split__media .badge small { font-size: 0.78rem; color: var(--ink-soft); letter-spacing: 0.04em; }
@media (max-width: 620px) { .split__media .badge--br { right: 4%; } }

/* ---------- 10. Massages (cartes) ---------- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: clamp(1.4rem, 2.4vw, 2rem); }
.card {
  position: relative; background: var(--card); border-radius: var(--radius-lg); overflow: hidden;
  display: flex; flex-direction: column; box-shadow: var(--shadow-card);
  transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -30px rgba(54,56,41,0.6); }
.card__media { position: relative; aspect-ratio: 4/5; overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.card:hover .card__media img { transform: scale(1.06); }
.card__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(46,48,37,0.6), transparent 55%); }
.card__num { position: absolute; top: 1.1rem; left: 1.2rem; z-index: 1; font-family: var(--serif); font-style: italic; font-size: 1.1rem; color: var(--gold-soft); }
.card__body { padding: 1.7rem 1.7rem 1.9rem; display: flex; flex-direction: column; gap: 0.75rem; flex: 1; }
.card__body h3 { font-size: 1.55rem; }
.card__body p { font-size: 0.95rem; color: var(--ink-soft); flex: 1; }
.card__meta { display: flex; align-items: center; justify-content: space-between; padding-top: 0.9rem; border-top: 1px solid var(--line); margin-top: 0.4rem; }
.card__price { font-family: var(--serif); font-size: 1.3rem; color: var(--olive); }
.card__price small { font-family: var(--sans); font-size: 0.72rem; color: var(--ink-soft); letter-spacing: 0.05em; }
.card__link { color: var(--gold-deep); display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500; }
.card__link svg { width: 15px; transition: transform 0.4s var(--ease); }
.card:hover .card__link svg { transform: translateX(4px); }

/* ---------- 11. Bienfaits ---------- */
.benefits { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: clamp(1.6rem, 3vw, 2.6rem); }
.benefit { text-align: left; }
.benefit__icon { width: 54px; height: 54px; display: grid; place-items: center; border: 1px solid var(--gold); border-radius: 50%; color: var(--gold-deep); margin-bottom: 1.3rem; }
.benefit__icon svg { width: 26px; height: 26px; }
.benefit h3 { font-size: 1.35rem; margin-bottom: 0.5rem; }
.benefit p { font-size: 0.94rem; color: var(--ink-soft); }
.section--olive .benefit p { color: var(--on-dark-soft); }
.section--olive .benefit__icon { border-color: var(--gold-soft); color: var(--gold-soft); }

/* ---------- 12. Rituel / étapes ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: clamp(1.6rem, 3vw, 2.4rem); counter-reset: step; }
.step { position: relative; padding-top: 2.4rem; }
.step::before { counter-increment: step; content: "0" counter(step); position: absolute; top: 0; left: 0; font-family: var(--serif); font-style: italic; font-size: 1.5rem; color: var(--gold); }
.step::after { content: ""; position: absolute; top: 0.6rem; left: 3rem; right: 0; height: 1px; background: var(--line); }
.step:last-child::after { display: none; }
.step h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.step p { font-size: 0.92rem; color: var(--ink-soft); }
.section--olive .step p { color: var(--on-dark-soft); }
.section--olive .step::after { background: rgba(242,236,223,0.15); }

/* ---------- 13. Témoignages ---------- */
.testimonials { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(1.4rem, 2.5vw, 2rem); }
.quote { background: var(--card); border-radius: var(--radius-lg); padding: 2.2rem 2rem; box-shadow: var(--shadow-card); display: flex; flex-direction: column; gap: 1.2rem; }
.quote__stars { color: var(--gold); letter-spacing: 0.2em; font-size: 0.9rem; }
.quote p { font-family: var(--serif); font-size: 1.28rem; line-height: 1.5; color: var(--olive); font-style: italic; }
.quote footer { display: flex; align-items: center; gap: 0.85rem; margin-top: auto; }
.quote__av { width: 42px; height: 42px; border-radius: 50%; background: var(--olive); color: var(--ivory); display: grid; place-items: center; font-family: var(--serif); font-size: 1.1rem; }
.quote cite { font-style: normal; font-weight: 500; font-size: 0.92rem; color: var(--ink); }
.quote cite small { display: block; font-weight: 300; font-size: 0.78rem; color: var(--ink-soft); }

/* ---------- 14. Galerie ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.75rem; }
.gallery a { position: relative; overflow: hidden; border-radius: var(--radius); }
.gallery img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1; transition: transform 1s var(--ease); }
.gallery a:hover img { transform: scale(1.07); }
.gallery a.tall { grid-row: span 2; }
.gallery a.tall img { aspect-ratio: auto; height: 100%; }
@media (max-width: 780px) { .gallery { grid-template-columns: repeat(2, 1fr); } .gallery a.tall { grid-row: span 1; } }

/* ---------- 15. FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q { width: 100%; background: none; border: 0; text-align: left; padding: 1.5rem 3rem 1.5rem 0; position: relative; font-family: var(--serif); font-size: 1.3rem; color: var(--olive); }
.faq__q::after { content: ""; position: absolute; right: 0.3rem; top: 50%; width: 13px; height: 13px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c69456' stroke-width='2'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E") center/contain no-repeat; transform: translateY(-50%); transition: transform 0.4s var(--ease); }
.faq__item.open .faq__q::after { transform: translateY(-50%) rotate(135deg); }
.faq__a { overflow: hidden; height: 0; transition: height 0.45s var(--ease); }
.faq__a p { padding: 0 0 1.6rem; color: var(--ink-soft); }

/* ---------- 16. CTA final ---------- */
.cta-final { position: relative; text-align: center; color: var(--on-dark); overflow: hidden; }
.cta-final__media { position: absolute; inset: 0; z-index: 0; }
.cta-final__media img { width: 100%; height: 100%; object-fit: cover; }
.cta-final__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(rgba(40,42,31,0.82), rgba(40,42,31,0.88)); }
.cta-final .wrap { position: relative; z-index: 1; }
.cta-final h2 { color: #fff; }
.cta-final .lead { color: var(--on-dark-soft); }
.cta-final .hero__actions { justify-content: center; }

/* ---------- 17. Footer ---------- */
.site-footer { background: var(--olive-deep); color: var(--on-dark-soft); padding-block: clamp(3.5rem, 7vw, 5.5rem) 2rem; }
.footer-map { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); line-height: 0; }
.map-embed iframe { display: block; width: 100%; filter: grayscale(0.25); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: clamp(2rem, 4vw, 3.5rem); }
.site-footer .brand svg { height: 66px; }
.footer-about p { margin-top: 1.3rem; font-size: 0.92rem; max-width: 34ch; }
.footer-col h4 { color: var(--on-dark); font-family: var(--sans); font-weight: 500; font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 1.3rem; }
.footer-col ul { display: grid; gap: 0.75rem; }
.footer-col a { font-size: 0.92rem; transition: color 0.35s; }
.footer-col a:hover { color: var(--gold-soft); }
.footer-contact li { display: flex; gap: 0.7rem; font-size: 0.92rem; margin-bottom: 0.85rem; align-items: flex-start; }
.footer-contact svg { width: 17px; color: var(--gold-soft); flex-shrink: 0; margin-top: 3px; }
.footer-social { display: flex; gap: 0.8rem; margin-top: 1.5rem; }
.footer-social a { width: 40px; height: 40px; border: 1px solid rgba(242,236,223,0.22); border-radius: 50%; display: grid; place-items: center; transition: all 0.4s var(--ease); }
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.footer-social svg { width: 17px; }
.footer-bottom { border-top: 1px solid rgba(242,236,223,0.14); margin-top: 3rem; padding-top: 1.6rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: 0.8rem; }
.footer-bottom a:hover { color: var(--gold-soft); }

/* ---------- 18. WhatsApp flottant ---------- */
.wa-float {
  position: fixed; right: clamp(1rem, 3vw, 2rem); bottom: clamp(1rem, 3vw, 2rem); z-index: 90;
  display: inline-flex; align-items: center; gap: 0.7rem; background: #25923a; color: #fff;
  padding: 0.85rem 1.3rem 0.85rem 0.95rem; border-radius: 100px; box-shadow: 0 14px 34px -12px rgba(37,146,58,0.7);
  font-weight: 500; font-size: 0.85rem; letter-spacing: 0.03em;
  transform: translateY(0); transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.wa-float:hover { transform: translateY(-3px); box-shadow: 0 20px 40px -12px rgba(37,146,58,0.8); }
.wa-float svg { width: 24px; height: 24px; }
.wa-float span { white-space: nowrap; }
@media (max-width: 520px) { .wa-float span { display: none; } .wa-float { padding: 0.9rem; } }

/* ---------- 19. Animations d'apparition ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.09s; }
.reveal[data-delay="2"] { transition-delay: 0.18s; }
.reveal[data-delay="3"] { transition-delay: 0.27s; }

/* ---------- 20. Pages internes (contenu) ---------- */
.page-hero { padding-top: clamp(9rem, 16vh, 12rem); padding-bottom: clamp(3rem, 6vw, 5rem); background: var(--ivory-warm); text-align: center; }
.page-hero .eyebrow { justify-content: center; margin-bottom: 1.3rem; }
.page-hero p { margin: 1.4rem auto 0; }
.breadcrumb { font-size: 0.78rem; letter-spacing: 0.05em; color: var(--ink-soft); margin-bottom: 1.6rem; }
.breadcrumb a:hover { color: var(--gold-deep); }
.prose { max-width: 760px; margin-inline: auto; }
.prose > * + * { margin-top: 1.3rem; }
.prose h2 { margin-top: 2.6rem; }
.prose h3 { margin-top: 2rem; }
.prose ul { display: grid; gap: 0.7rem; }
.prose ul li { position: relative; padding-left: 1.6rem; color: var(--ink-soft); }
.prose ul li::before { content: ""; position: absolute; left: 0; top: 0.65em; width: 7px; height: 7px; background: var(--gold); border-radius: 50%; }

/* ---------- 21. Responsive ---------- */
@media (max-width: 940px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .split__media img { aspect-ratio: 16/11; max-height: 460px; }
}
@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .header-actions .btn { display: none; }
  .primary-nav {
    position: fixed; inset: 0; background: var(--ivory);
    display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 0;
    transform: translateX(100%); transition: transform 0.55s var(--ease); z-index: 110;
  }
  .nav-open .primary-nav { transform: translateX(0); }
  .primary-nav .nav-menu { flex-direction: column; gap: 0.4rem; text-align: center; }
  .primary-nav .nav-menu a { color: var(--olive); font-family: var(--serif); font-size: 1.9rem; }
  .primary-nav .btn { display: inline-flex; margin-top: 2rem; }
}
@media (max-width: 620px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .hero { min-height: 92svh; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}
