/* ═══════════════════════════════════════════
   ANGE GIMENEZ — V8 CSS
   Fichier principal — tous les styles inline
═══════════════════════════════════════════ */

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

:root {
  --nacre:     #FDFBF8;
  --lin:       #F5F0EA;
  --sable:     #E6DDD3;
  --champagne: #D4C4B0;
  --dore:      #C8B59E;
  --orange:    #E0933A;
  --orange-h:  #CC832F;
  --ink:       #000000;
  --ease-organic: cubic-bezier(.16,1,.3,1);
}

html { scroll-behavior: auto; }

body {
  background: var(--nacre);
  color: var(--ink);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: auto;
}

/* ─── Main landmark (A11y WCAG 1.3.1) — transparent to layout ─── */
main { display: contents; }

/* ─── Skip link (A11y WCAG 2.4.1) ─── */
.skip-link {
  position: absolute;
  top: -60px;
  left: 0;
  background: var(--ink);
  color: var(--nacre);
  padding: 14px 22px;
  z-index: 10000;
  font-family: 'Jost', sans-serif;
  font-size: .88rem;
  font-weight: 400;
  letter-spacing: .04em;
  text-decoration: none;
  border-radius: 0 0 4px 0;
  transition: top .18s ease-out;
}
.skip-link:focus-visible,
.skip-link:focus {
  top: 0;
  outline: 2px solid var(--orange);
  outline-offset: -2px;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
a:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; }
/* Prose body inline links : sublime underline brand */
.prose a, p a, .about-text a, .venue-prose a, .destination-prose a, .portfolio-series-prose a, .series-text a {
  color: inherit;
  border-bottom: 1px solid rgba(184, 112, 90, .35);
  transition: border-color .25s ease;
}
.prose a:hover, p a:hover, .about-text a:hover, .venue-prose a:hover,
.destination-prose a:hover, .portfolio-series-prose a:hover, .series-text a:hover {
  border-bottom-color: var(--orange);
}

/* ─── CUSTOM CURSOR — DISABLED ─── */
#cursor, #cursor-dot { display: none !important; }
#cursor-disabled {
  position: fixed;
  top: 0; left: 0;
  width: 28px; height: 28px;
  border: 1px solid var(--orange);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%) scale(1);
  transition: transform .35s var(--ease-organic), border-color .3s, background .3s, opacity .3s;
  mix-blend-mode: multiply;
}
#cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 5px; height: 5px;
  background: var(--orange);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform .1s, opacity .3s;
}
body.cursor-hover #cursor {
  transform: translate(-50%, -50%) scale(2.4);
  background: rgba(224,147,58,.08);
  border-color: var(--orange);
}
body.cursor-hover #cursor-dot {
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
}
@media (hover: none), (max-width: 768px) {
  #cursor, #cursor-dot { display: none; }
}

/* ─── KEYFRAMES ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scrollPulse {
  0%   { transform: translateY(-100%); opacity: 0; }
  30%  { opacity: 1; }
  100% { transform: translateY(100%); opacity: 0; }
}
@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-100% - 16px)); }
}
@keyframes auroraBlob1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(-90px, 70px) scale(1.18); }
  66%       { transform: translate(70px, -50px) scale(0.88); }
}
@keyframes auroraBlob2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  40%       { transform: translate(100px, -110px) scale(1.22); }
  75%       { transform: translate(-75px, 90px) scale(0.85); }
}

/* ─── CTA STYLES ─── */
.cta-glass {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  background: rgba(253,251,248, .20);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(253,251,248, .25);
  border-radius: 8px;
  color: var(--nacre);
  font-family: 'Jost', sans-serif;
  font-size: .68rem;
  font-weight: 300;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all .4s var(--ease-organic);
}
.cta-glass:hover {
  background: rgba(224,147,58,.15);
  border-color: var(--orange);
  color: #fff;
  box-shadow: 0 4px 24px rgba(224,147,58,.12);
}
.cta-glass--light {
  background: rgba(253,251,248, .45);
  border-color: rgba(212,196,176, .35);
  color: var(--ink);
}
.cta-glass--light:hover {
  background: rgba(224,147,58,.10);
  border-color: var(--orange);
  color: var(--orange);
}
.cta-text {
  font-family: 'Jost', sans-serif;
  font-size: .82rem;
  font-weight: 300;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--orange);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: gap .3s;
}
.cta-text::after {
  content: '→';
  transition: transform .3s;
}
.cta-text:hover { gap: 20px; }
.cta-text:hover::after { transform: translateX(5px); }

/* ─── SECTION TAG ─── */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: 'Jost', sans-serif;
  font-size: .78rem;
  font-weight: 300;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--orange);
}
.section-tag::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--orange);
  opacity: .5;
}

/* ═══════════════════════════════════════════
   NAV — split symétrique, logo centre
═══════════════════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 32px 48px;
  background: transparent;
  transition: all .5s var(--ease-organic);
}
nav.scrolled {
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  right: auto;
  width: calc(100% - 48px);
  max-width: 1140px;
  background: rgba(253,251,248, .50);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(212,196,176, .30);
  border-radius: 12px;
  padding: 16px 32px;
  box-shadow: 0 2px 20px rgba(0,0,0,.04);
}
.nav-social {
  display: flex;
  gap: 16px;
  align-items: center;
}
.nav-social a {
  color: rgba(253,251,248,.7);
  transition: color .3s;
  display: inline-flex;
  align-items: center;
  line-height: 1;
}
.nav-social a:hover { color: var(--orange); }
nav.scrolled .nav-social a { color: var(--ink); opacity: .8; }
nav.scrolled .nav-social a:hover { color: var(--orange); opacity: 1; }
.nav-social svg {
  width: 18px; height: 18px;
  display: block;
  vertical-align: middle;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}
.nav-left {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-left: 40px;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: .03em;
  color: var(--nacre);
  text-decoration: none;
  transition: color .4s;
  margin: 0 auto;
  padding: 0 32px;
}
nav.scrolled .nav-logo { color: var(--ink); }
.nav-right {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-right: 40px;
}
.nav-left a, .nav-right a:not(.nav-cta) {
  font-family: 'Jost', sans-serif;
  font-size: .68rem;
  font-weight: 300;
  letter-spacing: .2em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  line-height: 1;
  color: rgba(253,251,248,.9);
  text-decoration: none;
  position: relative;
  transition: color .3s;
  text-shadow: 0 1px 10px rgba(0,0,0,.3);
}
nav.scrolled .nav-left a,
nav.scrolled .nav-right a:not(.nav-cta) {
  color: var(--ink);
  opacity: .88;
  text-shadow: none;
}
.nav-left a:hover,
.nav-right a:not(.nav-cta):hover {
  color: var(--orange) !important;
  opacity: 1 !important;
}
.nav-left a::after,
.nav-right a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--orange);
  transition: width .4s var(--ease-organic);
}
.nav-left a:hover::after,
.nav-right a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
  font-family: 'Jost', sans-serif;
  font-size: .65rem;
  font-weight: 300;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(253,251,248,.85);
  border: 1px solid rgba(253,251,248,.22);
  padding: 10px 28px;
  text-decoration: none;
  transition: border-color .3s, color .3s, background .3s;
}
nav.scrolled .nav-cta {
  color: var(--ink);
  border-color: var(--champagne);
}
.nav-cta:hover {
  border-color: var(--orange) !important;
  color: var(--orange) !important;
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  color: var(--ink);
  transition: color .3s;
  /* Halo drop-shadow pour visibilité sur tout fond (clair ou foncé) */
  filter: drop-shadow(0 0 2px rgba(0,0,0,.35)) drop-shadow(0 0 1px rgba(255,255,255,.4));
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: currentColor;
  transition: transform .4s var(--ease-organic), opacity .3s, background .3s;
}
/* Sous-pages hero foncé · hamburger blanc avant scroll */
body.page-inner nav:not(.scrolled) .nav-hamburger { color: var(--nacre); }
/* Scrolled · noir + retire halo (nav cream backdrop suffit) */
nav.scrolled .nav-hamburger {
  color: var(--ink);
  filter: none;
}
/* Open state · X formation */
.nav-hamburger.open {
  color: var(--ink);
  filter: none;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.nav-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--nacre);
  z-index: 490;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s;
}
.nav-mobile-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.nav-mobile-overlay a {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 2.8rem;
  color: var(--ink);
  text-decoration: none;
  transition: color .3s;
}
.nav-mobile-overlay a:hover { color: var(--orange); }
.nav-mobile-social {
  display: flex;
  gap: 24px;
  margin-top: 32px;
}
.nav-mobile-social a {
  font-size: 1rem !important;
  font-family: 'Jost', sans-serif !important;
  font-style: normal !important;
}

/* ═══════════════════════════════════════════
   S1 — HERO
═══════════════════════════════════════════ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--lin);
}
#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 1;
}
.hero-img-reveal {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0;
  will-change: opacity;
}
.hero-img-reveal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  transform: scale(1.06);
  transition: transform 2s var(--ease-organic);
}
.hero-img-reveal.revealed img { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.06) 0%,
    rgba(0,0,0,.22) 50%,
    rgba(0,0,0,.68) 100%
  );
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 4;
  text-align: center;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-eyebrow {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: .75rem;
  letter-spacing: .36em;
  text-transform: uppercase;
  color: var(--nacre);
  opacity: 0;
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 32px;
  text-shadow: 0 1px 12px rgba(0,0,0,.4);
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: '';
  display: block;
  width: 36px; height: 1px;
  background: var(--nacre);
  opacity: .5;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(3.8rem, 9.5vw, 9.5rem);
  line-height: 1.0;
  color: var(--nacre);
  letter-spacing: -.01em;
}
.hero-title .word-line {
  display: block;
  overflow: visible;
  padding-bottom: 0.18em;
}
.hero-title .word-line-inner {
  display: block;
  transform: translateY(105%);
  opacity: 0;
}
.hero-sub {
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: clamp(.68rem, 1vw, .84rem);
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(253,251,248,.55);
  margin-top: 28px;
  opacity: 0;
  animation: fadeIn 1.2s ease 2s forwards;
}
.hero-cta {
  margin-top: 40px;
  opacity: 0;
  animation: fadeIn 1s ease 2.4s forwards;
}
.hero-scroll {
  position: absolute;
  bottom: 48px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 4;
  opacity: 0;
  animation: fadeIn 1s ease 2.6s forwards;
}
.hero-scroll-line {
  width: 1px; height: 54px;
  background: rgba(253,251,248,.1);
  overflow: hidden;
}
.hero-scroll-line::after {
  content: '';
  display: block;
  width: 100%; height: 100%;
  background: var(--orange);
  animation: scrollPulse 2.2s ease 2.8s infinite;
}
.hero-scroll-label {
  font-family: 'Jost', sans-serif;
  font-size: .52rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(253,251,248,.35);
  writing-mode: vertical-rl;
  margin-top: 6px;
}

/* ═══════════════════════════════════════════
   S2 — TESTIMONIALS (Carousel V7)
═══════════════════════════════════════════ */
#testimonials {
  background: var(--sable);
  padding: 120px 60px 100px;
  position: relative;
  overflow: hidden;
}
.tm-inner {
  max-width: 840px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.tm-tag {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: 'Jost', sans-serif;
  font-size: .72rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(20px);
}
.tm-tag::before, .tm-tag::after {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--orange);
  opacity: .5;
}
.tm-slide { display: none; }
.tm-slide.active { display: block; }
.tm-stars {
  color: var(--orange);
  font-size: .9rem;
  letter-spacing: .28em;
  margin-bottom: 40px;
}
.tm-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.5rem, 2.8vw, 2.7rem);
  line-height: 1.45;
  color: var(--ink);
  margin-bottom: 48px;
  position: relative;
  padding: 0 24px;
}
.tm-quote::before {
  content: '\201C';
  font-size: 6rem;
  line-height: 0;
  position: absolute;
  top: 18px; left: -4px;
  color: var(--orange);
  opacity: .12;
  font-family: 'Cormorant Garamond', serif;
}
.tm-author {
  font-family: 'Jost', sans-serif;
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: .88;
  font-weight: 500;
  margin-top: 24px;
}
.tm-arrow {
  background: none;
  border: 1px solid rgba(0,0,0,.15);
  color: var(--ink);
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: border-color .3s, color .3s, transform .3s;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
.tm-arrow:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-50%) scale(1.1);
}
.tm-arrow--left  { left: 24px; }
.tm-arrow--right { right: 24px; }

/* ═══════════════════════════════════════════
   S3 — FEATURED (As Featured In)
═══════════════════════════════════════════ */
#featured {
  padding: 80px 48px;
  background: var(--nacre);
  text-align: center;
}
#featured .section-tag {
  margin-bottom: 32px;
  justify-content: center;
  display: flex;
}
.feat-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}
.feat-name {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: .92;
  transition: opacity .3s, color .3s;
  white-space: nowrap;
}
.feat-name:hover { opacity: 1; color: var(--orange); }

/* ═══════════════════════════════════════════
   S4 — PORTFOLIO (Zoom Parallax)
═══════════════════════════════════════════ */
#portfolio {
  position: relative;
  height: 280vh;
  background: var(--nacre);
}
.zp-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: var(--nacre);
}
.zp-layer {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform;
}
.zp-frame {
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
  box-shadow: 0 12px 60px rgba(0,0,0,.09);
  border-radius: 2px;
}
.zp-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
#zpL0 .zp-frame { width: 28vw; height: 40vh; }
#zpL1 .zp-frame {
  width: 24vw; height: 32vh;
  position: absolute;
  top: calc(50% - 32vh); left: calc(50% + 10vw);
}
#zpL2 .zp-frame {
  width: 22vw; height: 36vh;
  position: absolute;
  top: calc(50% - 30vh); left: calc(50% - 32vw);
}
#zpL3 .zp-frame {
  width: 20vw; height: 26vh;
  position: absolute;
  top: 50%; left: calc(50% + 30vw);
  transform: translateY(-50%);
}
#zpL4 .zp-frame {
  width: 22vw; height: 30vh;
  position: absolute;
  top: calc(50% + 10vh); left: calc(50% + 8vw);
}
#zpL5 .zp-frame {
  width: 24vw; height: 28vh;
  position: absolute;
  top: calc(50% + 12vh); left: calc(50% - 36vw);
}
#zpL6 .zp-frame {
  width: 16vw; height: 18vh;
  position: absolute;
  top: calc(50% + 22vh); left: calc(50% + 26vw);
}
.zp-text-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  pointer-events: none;
  opacity: 0;
}
.zp-text-overlay p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2rem, 4.5vw, 5rem);
  color: var(--nacre);
  text-shadow: 0 2px 24px rgba(0,0,0,.5);
  text-align: center;
  line-height: 1.2;
  padding: 0 60px;
  letter-spacing: .01em;
}
.zp-section-tag {
  position: absolute;
  top: 72px; left: 80px;
  z-index: 10;
  pointer-events: none;
  font-family: 'Jost', sans-serif;
  font-size: .85rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 12px;
}
.zp-section-tag::before {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--orange);
  opacity: .6;
}
.zp-cta {
  position: absolute;
  bottom: 40px;
  right: 80px;
  left: auto;
  transform: none;
  z-index: 10;
}

/* Portfolio mobile grid */
#portfolio-mobile-grid { display: none; }

/* ═══════════════════════════════════════════
   S5 — STATEMENT (Typewriter)
═══════════════════════════════════════════ */
#statement {
  background: var(--lin);
  min-height: 30vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 60px 8vw;
}
.stmt-wrap {
  text-align: left;
  max-width: 900px;
}
.stmt-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2rem, 5vw, 4.5rem);
  line-height: 1.2;
  color: var(--orange);
}
.stmt-cursor {
  font-weight: 100;
  color: var(--orange);
  animation: cursorBlink .8s step-end infinite;
}

/* ═══════════════════════════════════════════
   S6 — THE DESIGNER
═══════════════════════════════════════════ */
#designer {
  background: var(--nacre);
  padding: 160px 64px;
}
.designer-wrap {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}
.designer-img-col {
  display: flex;
  justify-content: center;
  align-items: center;
}
.designer-img-reveal {
  max-width: 480px;
  width: 100%;
  clip-path: inset(0 100% 0 0);
  will-change: clip-path;
}
.designer-img-reveal img {
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1.05);
  transition: transform 2.2s var(--ease-organic);
}
.designer-img-reveal.revealed img { transform: scale(1); }
.designer-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.designer-tag {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: 'Jost', sans-serif;
  font-size: .78rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--orange);
  opacity: 0;
  transform: translateY(20px);
}
.designer-tag::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--orange);
  opacity: .6;
}
.designer-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2.2rem, 3.6vw, 3.4rem);
  line-height: 1.1;
  color: var(--ink);
  opacity: 0;
  transform: translateY(28px);
}
.designer-hr {
  width: 48px; height: 1px;
  background: var(--sable);
  opacity: 0;
}
.designer-p {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.92;
  color: var(--ink);
  opacity: 0;
  transform: translateY(18px);
  max-width: 500px;
  will-change: opacity, transform;
}
.designer-p.visible {
  opacity: .9;
  transform: translateY(0);
  transition: opacity .9s var(--ease-organic), transform .9s var(--ease-organic);
}
.designer-ctas {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(14px);
}

/* ═══════════════════════════════════════════
   S7 — DESTINATIONS (Carousel éditorial)
═══════════════════════════════════════════ */
#destinations {
  background: var(--nacre);
  padding: 120px 48px 100px;
}
.dest-tag {
  text-align: center;
  margin-bottom: 64px;
  display: flex;
  justify-content: center;
}
.dest-carousel {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}
.dest-wash {
  position: absolute;
  inset: 0;
  pointer-events: none;
  transition: background .8s ease;
  border-radius: 16px;
}
.dest-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  min-height: 520px;
}
.dest-content {
  background: rgba(253,251,248, .50);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(212,196,176, .25);
  border-radius: 16px;
  padding: 48px 40px;
  position: relative;
  z-index: 2;
}
.dest-num {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.dest-num-line {
  display: block;
  width: 28px; height: 1px;
  background: var(--ink);
  opacity: .25;
}
.dest-num-text {
  font-family: 'Jost', sans-serif;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .14em;
  color: var(--ink);
  opacity: .85;
}
.dest-title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 12px;
  transition: opacity .4s, transform .4s;
}
.dest-subtitle {
  font-family: 'Jost', sans-serif;
  font-size: .72rem;
  font-weight: 300;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 24px;
  transition: color .6s, opacity .4s, transform .4s;
}
.dest-desc {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--ink);
  opacity: .9;
  margin-bottom: 32px;
  transition: opacity .4s, transform .4s;
}
.dest-nav-arrows {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}
.dest-arrow {
  width: 44px; height: 44px;
  border: 1px solid var(--champagne);
  border-radius: 50%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color .3s, background .3s;
  color: var(--ink);
}
.dest-arrow:hover {
  border-color: var(--orange);
  background: rgba(224,147,58,.06);
  color: var(--orange);
}
.dest-cta { margin-top: 8px; }
.dest-image-container {
  position: relative;
}
.dest-image-frame {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 3/4;
  transition: transform .6s var(--ease-organic);
}
.dest-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .8s var(--ease-organic);
}
.dest-image-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  transition: background .6s;
}
.dest-frame-corner {
  position: absolute;
  width: 24px; height: 24px;
  border: 1px solid;
  transition: border-color .6s;
}
.dest-frame-corner--tl { top: -8px; left: -8px; border-right: none; border-bottom: none; }
.dest-frame-corner--br { bottom: -8px; right: -8px; border-left: none; border-top: none; }
.dest-progress {
  display: flex;
  gap: 8px;
  margin-top: 40px;
  justify-content: center;
}
.dest-progress-item {
  flex: 1;
  max-width: 200px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 12px 0 0;
  text-align: left;
}
.dest-progress-track {
  width: 100%;
  height: 2px;
  background: var(--sable);
  border-radius: 1px;
  overflow: hidden;
  margin-bottom: 8px;
}
.dest-progress-fill {
  height: 100%;
  width: 0;
  border-radius: 1px;
  transition: width .05s linear;
}
.dest-progress-label {
  font-family: 'Jost', sans-serif;
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: .85;
  transition: opacity .3s;
}
.dest-progress-item.active .dest-progress-label {
  opacity: 1;
}

/* ═══════════════════════════════════════════
   S8 — CONTACT (Aurora + Glass form)
═══════════════════════════════════════════ */
#contact {
  position: relative;
  overflow: hidden;
  background: var(--nacre);
  padding: 150px 60px;
}
.aurora-layer {
  position: absolute;
  inset: -10px;
  pointer-events: none;
  overflow: hidden;
}
.aurora-layer::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 560px;
  top: -120px;
  right: -80px;
  border-radius: 50%;
  background: radial-gradient(ellipse at 50% 50%, rgba(224,147,58,0.6) 0%, rgba(200,115,38,0.22) 50%, transparent 72%);
  filter: blur(75px);
  animation: auroraBlob1 18s ease-in-out infinite;
  will-change: transform;
}
.aurora-layer::after {
  content: '';
  position: absolute;
  width: 520px;
  height: 620px;
  top: 15%;
  right: 6%;
  border-radius: 50%;
  background: radial-gradient(ellipse at 50% 50%, rgba(253,242,230,0.85) 0%, rgba(224,147,58,0.2) 48%, transparent 70%);
  filter: blur(95px);
  animation: auroraBlob2 24s ease-in-out infinite;
  will-change: transform;
}
.contact-wrap {
  position: relative;
  z-index: 2;
  max-width: 1020px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.55fr;
  gap: 88px;
  align-items: start;
}
.contact-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.08;
  color: var(--ink);
  margin-bottom: 24px;
}
.contact-sub {
  font-family: 'Jost', sans-serif;
  font-size: 1.02rem;
  font-weight: 400;
  line-height: 1.75;
  color: var(--ink);
  opacity: .92;
  margin-bottom: 40px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
}
.contact-detail-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--orange);
  opacity: .6;
  flex-shrink: 0;
}
.contact-detail-text {
  font-family: 'Jost', sans-serif;
  font-size: .92rem;
  font-weight: 400;
  color: var(--ink);
  opacity: .88;
  text-decoration: none;
  transition: color .3s, opacity .3s;
}
a.contact-detail-text:hover { color: var(--orange); opacity: 1; }
/* ── Editorial Letter Form (sync homepage) ── */
.contact-form-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 64px 56px;
  box-shadow: 0 4px 24px rgba(0,0,0,.06), 0 1px 3px rgba(0,0,0,.04);
  opacity: 0;
  transform: translateY(24px);
}
.contact-form-card fieldset { border: none; padding: 0; margin: 0; }
.f-section { padding: 0 0 36px; }
.f-section + .f-section { padding-top: 36px; border-top: 1px solid rgba(0,0,0,.07); }
.f-section:last-of-type { padding-bottom: 8px; }
.f-section-head {
  margin-bottom: 32px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(184, 112, 90, .18);
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
}
.f-section-head::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--orange);
  flex-shrink: 0;
}
.f-section-title {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: .72rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0;
  line-height: 1;
}
.f-section-desc {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 1.4rem;
  line-height: 1.2;
  color: var(--ink);
  margin: 0;
}
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 32px; margin-bottom: 24px; }
.f-row.single { grid-template-columns: 1fr; }
.f-row:last-child { margin-bottom: 0; }
.f-group { position: relative; }
.f-input {
  width: 100%;
  padding: 18px 0 10px;
  border: none;
  border-bottom: 1.5px solid rgba(0,0,0,.14);
  background: transparent;
  font-family: 'Jost', sans-serif;
  font-size: 1rem; font-weight: 300;
  color: var(--ink);
  outline: none;
  transition: border-color .3s;
}
.f-input:focus { border-color: var(--orange); }
.f-input:focus-visible {
  border-color: var(--orange);
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}
.f-label {
  position: absolute;
  top: 18px; left: 0;
  font-family: 'Jost', sans-serif;
  font-size: .82rem; font-weight: 400;
  color: var(--ink); opacity: .85;
  pointer-events: none;
  transition: transform .25s var(--ease-organic), font-size .25s, opacity .25s;
}
.f-input:focus ~ .f-label,
.f-input:not(:placeholder-shown) ~ .f-label,
.f-group.has-value .f-label {
  transform: translateY(-22px);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
}
select.f-input { cursor: pointer; -webkit-appearance: none; appearance: none; }
textarea.f-input { resize: vertical; min-height: 130px; padding-top: 14px; line-height: 1.5; }
.f-required { color: var(--orange); margin-left: 2px; }
.f-field-title {
  font-family: 'Jost', sans-serif;
  font-size: .7rem; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink); opacity: .9;
  margin: 0 0 12px;
}
.f-radio-row { display: flex; gap: 28px; padding-top: 4px; }
.f-radio-label {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Jost', sans-serif;
  font-size: .92rem; font-weight: 300;
  color: var(--ink); cursor: pointer;
}
.f-radio-label input[type="radio"] { width: 15px; height: 15px; accent-color: var(--orange); cursor: pointer; }
.f-event-pills { display: flex; gap: 10px; flex-wrap: wrap; padding-top: 4px; }
.f-event-pill { cursor: pointer; }
.f-event-pill input[type="radio"] { display: none; }
.f-event-pill span {
  display: inline-block;
  padding: 11px 24px;
  border: 1px solid rgba(0,0,0,.28);
  border-radius: 999px;
  font-family: 'Jost', sans-serif;
  font-size: .78rem; font-weight: 400;
  color: var(--ink); opacity: .9;
  transition: all .3s;
}
.f-event-pill input:checked + span { background: var(--ink); color: #fff; border-color: var(--ink); opacity: 1; }
.f-event-pill:hover span { border-color: var(--orange); color: var(--orange); opacity: 1; }
.f-submit {
  width: 100%;
  padding: 20px 32px;
  margin-top: 36px;
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 4px;
  color: #fff;
  font-family: 'Jost', sans-serif;
  font-size: .72rem; font-weight: 400;
  letter-spacing: .22em; text-transform: uppercase;
  cursor: pointer;
  transition: all .4s var(--ease-organic);
}
.f-submit:hover {
  background: var(--orange); border-color: var(--orange);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(224,147,58,.18);
}
.f-note {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  text-align: center;
  color: var(--ink); opacity: .85;
  margin-top: 20px;
}

/* ── Flatpickr — Ange brand override ── */
.flatpickr-calendar { background: #FDFBF8; border: 1px solid rgba(212,196,176,.45); border-radius: 10px; box-shadow: 0 12px 48px rgba(0,0,0,.10), 0 2px 8px rgba(0,0,0,.04); font-family: 'Jost', sans-serif; z-index: 99999; }
.flatpickr-calendar.arrowTop::before, .flatpickr-calendar.arrowTop::after { border-bottom-color: rgba(212,196,176,.4); }
.flatpickr-months { padding: 6px 0 0; }
.flatpickr-months .flatpickr-month { background: transparent; color: #000; height: 48px; }
.flatpickr-current-month { font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 300; font-size: 1.15rem; color: #000; padding-top: 8px; }
.flatpickr-current-month .flatpickr-monthDropdown-months { font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 300; background: #FDFBF8; font-size: 1.1rem; }
.flatpickr-current-month .numInputWrapper input.cur-year { font-family: 'Jost', sans-serif; font-weight: 300; font-size: .9rem; color: rgba(0,0,0,.55); }
.flatpickr-months .flatpickr-prev-month, .flatpickr-months .flatpickr-next-month { fill: rgba(0,0,0,.35); color: rgba(0,0,0,.35); top: 10px; transition: fill .3s; }
.flatpickr-months .flatpickr-prev-month:hover, .flatpickr-months .flatpickr-next-month:hover { background: transparent; }
.flatpickr-months .flatpickr-prev-month:hover svg, .flatpickr-months .flatpickr-next-month:hover svg { fill: #E0933A; }
.flatpickr-weekdays { background: transparent; margin-bottom: 4px; }
span.flatpickr-weekday { background: transparent; color: rgba(0,0,0,.3); font-family: 'Jost', sans-serif; font-size: .6rem; font-weight: 400; letter-spacing: .14em; text-transform: uppercase; }
.flatpickr-days { border: none; }
.dayContainer { padding: 0 6px 8px; }
.flatpickr-day { font-family: 'Jost', sans-serif; font-weight: 300; font-size: .82rem; color: #1C1C1A; border: none; border-radius: 6px; height: 34px; line-height: 34px; transition: background .25s, color .25s; }
.flatpickr-day:hover, .flatpickr-day:focus { background: rgba(224,147,58,.12); border: none; color: #E0933A; }
.flatpickr-day.selected, .flatpickr-day.selected:hover { background: #E0933A; border-color: #E0933A; color: #fff; font-weight: 400; }
.flatpickr-day.today { border-bottom: 2px solid #E0933A; color: #E0933A; font-weight: 400; }
.flatpickr-day.today:hover { background: rgba(224,147,58,.12); border-bottom: 2px solid #E0933A; }
.flatpickr-day.flatpickr-disabled, .flatpickr-day.flatpickr-disabled:hover { color: rgba(0,0,0,.18); background: transparent; }
.flatpickr-day.prevMonthDay, .flatpickr-day.nextMonthDay { color: rgba(0,0,0,.22); }
.numInputWrapper span.arrowUp:after { border-bottom-color: rgba(0,0,0,.35); }
.numInputWrapper span.arrowDown:after { border-top-color: rgba(0,0,0,.35); }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
footer {
  background: var(--lin);
  border-top: 1px solid rgba(212,196,176, .30);
  padding: 64px 48px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: .03em;
  transition: color .3s;
}
.footer-logo:hover { color: var(--orange); }
.footer-hr {
  width: 120px; height: 1px;
  background: var(--sable);
  opacity: .4;
}
.footer-nav {
  display: flex;
  gap: 40px;
  list-style: none;
}
.footer-nav a {
  font-family: 'Jost', sans-serif;
  font-size: .8rem;
  font-weight: 300;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: .88;
  text-decoration: none;
  transition: color .3s, opacity .3s;
}
.footer-nav a:hover { color: var(--orange); opacity: 1; }
.footer-social {
  display: flex;
  gap: 24px;
}
.footer-social a {
  color: var(--ink);
  opacity: .78;
  transition: color .3s, opacity .3s;
}
.footer-social a:hover { color: var(--orange); opacity: 1; }
.footer-social svg {
  width: 18px; height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}
.footer-location {
  font-family: 'Jost', sans-serif;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: .88;
}
.footer-copy {
  font-family: 'Jost', sans-serif;
  font-size: .78rem;
  color: var(--ink);
}

/* ═══════════════════════════════════════════
   TABLET (1024px)
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  #portfolio { height: 220vh; }
  #zpL1 .zp-frame, #zpL2 .zp-frame, #zpL3 .zp-frame,
  #zpL4 .zp-frame, #zpL5 .zp-frame, #zpL6 .zp-frame {
    width: 26vw;
  }
}

/* ═══════════════════════════════════════════
   MOBILE (768px)
═══════════════════════════════════════════ */
@media (max-width: 768px) {
  nav {
    padding: 22px 24px;
    justify-content: space-between;
  }
  nav.scrolled {
    top: 0; left: 0; right: 0;
    width: 100%; max-width: none;
    transform: none;
    border-radius: 0;
    padding: 14px 24px;
  }
  .nav-social, .nav-left, .nav-right { display: none; }
  .nav-logo { margin: 0; padding: 0; }
  .nav-hamburger {
    display: flex;
    margin-left: auto;
    position: relative;
    z-index: 600;
  }
  .nav-mobile-overlay {
    display: flex;
    gap: 28px;
    padding: 80px 24px 40px;
  }
  .nav-mobile-overlay a { font-size: 2.2rem; }
  .nav-mobile-social {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 22px;
    margin-top: 20px;
  }
  .nav-mobile-social a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .8rem !important;
    letter-spacing: .14em;
    text-transform: uppercase;
  }

  .hero-eyebrow { font-size: .66rem; letter-spacing: .22em; }
  .hero-cta { margin-top: 32px; }

  #testimonials { padding: 64px 0; }
  .tm-arrow { display: none; }

  #featured { padding: 60px 24px; }
  .feat-row { flex-direction: column; gap: 24px; }

  #portfolio { height: auto; min-height: unset; }
  .zp-sticky { position: relative; height: auto; overflow: visible; }
  .zp-layer { display: none; }
  .zp-text-overlay { display: none; }
  .zp-section-tag { display: none; }
  #zpTopTitle { display: none !important; }
  #zpBottomDest { display: none !important; }
  .zp-cta { position: relative; bottom: auto; right: auto; left: auto; transform: none; padding: 32px 0; display: flex; justify-content: center; }

  #portfolio-mobile-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 48px 20px 64px;
    align-items: start;
  }
  #portfolio-mobile-grid .pm-item {
    overflow: hidden;
    border-radius: 4px;
    background: var(--lin);
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s var(--ease-organic), transform .6s var(--ease-organic);
  }
  #portfolio-mobile-grid .pm-item.visible {
    opacity: 1;
    transform: translateY(0);
  }
  #portfolio-mobile-grid .pm-item:nth-child(even) {
    margin-top: 40px;
  }
  #portfolio-mobile-grid img {
    width: 100%;
    height: auto;
    display: block;
  }

  #statement { padding: 80px 24px; }

  #designer { padding: 80px 24px; }
  .designer-wrap {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .designer-img-col { order: -1; }
  .designer-img-reveal { max-width: 280px; }
  .designer-content { padding: 0; }

  #destinations { padding: 80px 20px 80px; }
  .dest-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .dest-image-container { order: -1; }
  .dest-image-frame { aspect-ratio: 3/4; }
  .dest-content {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: var(--nacre);
    border: none;
    padding: 24px 0;
  }
  .dest-progress-label { display: none; }
  .dest-progress-item { max-width: 60px; }

  #contact { padding: 80px 20px; }
  .aurora-layer { opacity: .25; }
  .contact-wrap {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .contact-form-card {
    border-radius: 12px;
    padding: 36px 22px;
  }
  .f-row { grid-template-columns: 1fr; gap: 28px; margin-bottom: 22px; }
  .f-section { padding: 0 0 28px; }
  .f-section + .f-section { padding-top: 28px; }
  .f-section-head { margin-bottom: 26px; padding-bottom: 12px; gap: 10px; }
  .f-section-head::before { width: 22px; }
  .f-section-title { font-size: .68rem; letter-spacing: .22em; }
  .f-section-desc { font-size: 1.2rem; }
  .f-input { font-size: .95rem; padding: 16px 0 8px; }
  .f-label { font-size: .78rem; top: 16px; }
  .f-input:focus ~ .f-label,
  .f-input:not(:placeholder-shown) ~ .f-label,
  .f-group.has-value .f-label { transform: translateY(-20px); font-size: .58rem; }
  .f-event-pill span { padding: 9px 18px; font-size: .72rem; }
  .f-radio-row { flex-wrap: wrap; gap: 16px 24px; }
  .f-submit { padding: 18px 24px; font-size: .68rem; }

  footer { padding: 48px 24px 32px; }
  .footer-nav { flex-wrap: wrap; gap: 24px; justify-content: center; }
}

/* ═══════════════════════════════════════════
   REDUCED MOTION
═══════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  #heroCanvas { display: none; }
  .aurora-layer { animation: none; }
  .tm-marquee-group { animation: none; }
}

/* ═══════════════════════════════════════════
   URIEL · PHASE A — BREADCRUMBS / VENUE-BACK / SIBLINGS / NAV DROPDOWN
═══════════════════════════════════════════ */

/* ─── Breadcrumbs (standard, ivory background pages) ─── */
.breadcrumbs {
  max-width: 1400px;
  margin: 0 auto;
  padding: 24px 48px 0;
  position: relative;
  z-index: 5;
}
.breadcrumbs-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  letter-spacing: .04em;
}
.breadcrumbs-item { display: inline-flex; align-items: center; }
.breadcrumbs-item a {
  color: var(--ink);
  text-decoration: none;
  opacity: .85;
  transition: opacity .2s, color .2s;
}
.breadcrumbs-item a:hover {
  opacity: 1;
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.breadcrumbs-sep { color: var(--orange); opacity: .7; }
.breadcrumbs-current {
  opacity: 1;
  color: var(--ink);
  font-weight: 400;
}

/* Hero overlay variant — for full-bleed hero pages */
.breadcrumbs--hero {
  position: absolute;
  top: 92px;
  left: 0;
  right: 0;
  padding: 16px 48px 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.28), transparent);
  z-index: 6;
  max-width: none;
}
.breadcrumbs--hero .breadcrumbs-item a { color: #fff; opacity: .92; }
.breadcrumbs--hero .breadcrumbs-item a:hover { color: var(--orange); opacity: 1; }
.breadcrumbs--hero .breadcrumbs-current { color: #fff; }
.breadcrumbs--hero .breadcrumbs-sep { color: rgba(255,255,255,.7); }

@media (max-width: 768px) {
  .breadcrumbs { padding: 16px 20px 0; }
  .breadcrumbs--hero { padding: 12px 20px 0; top: 80px; }
  .breadcrumbs-list { font-size: 12px; gap: 6px; }
}

/* Breadcrumbs · position bas avant footer */
.breadcrumbs:not(.breadcrumbs--hero) {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 48px 24px;
  border-top: 1px solid rgba(212,196,176,.25);
}
@media (max-width: 768px) {
  .breadcrumbs:not(.breadcrumbs--hero) { padding: 32px 24px 16px; }
}

/* ─── Venue back-link (top of venue pages) ─── */
.venue-back {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 48px 0;
}
.venue-back-link {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  letter-spacing: .06em;
  color: var(--orange);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .25s, color .25s;
}
.venue-back-link:hover {
  color: var(--orange-h);
  gap: 12px;
  text-decoration: underline;
  text-underline-offset: 4px;
}
@media (max-width: 768px) {
  .venue-back { padding: 24px 24px 0; }
}

/* ─── Venue siblings section (bottom of venue pages) ─── */
.venue-siblings {
  padding: 100px 48px;
  background: var(--lin);
}
.siblings-head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
.siblings-head .section-tag { justify-content: center; margin-bottom: 18px; }
.siblings-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--ink);
  margin-top: 12px;
}
.siblings-h2 em { font-style: italic; color: var(--orange); }
.siblings-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.sibling-card {
  display: block;
  text-decoration: none;
  color: var(--ink);
  transition: transform .4s var(--ease-organic);
}
.sibling-card:hover { transform: translateY(-4px); }
.sibling-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 2px;
  margin-bottom: 18px;
  display: block;
}
.sibling-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-style: italic;
  margin-bottom: 8px;
  line-height: 1.2;
}
.sibling-desc {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink);
  opacity: .88;
}
.sibling-card--all {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: var(--nacre);
  border: 1px solid rgba(224,147,58,.25);
  padding: 40px 32px;
  border-radius: 2px;
}
.sibling-card--all .sibling-name {
  color: var(--orange);
  font-style: normal;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.sibling-card--all .sibling-desc { font-size: 13px; }
@media (max-width: 768px) {
  .siblings-grid { grid-template-columns: 1fr; gap: 24px; }
  .venue-siblings { padding: 60px 20px; }
  .sibling-card img { height: auto; aspect-ratio: 3/4; object-fit: cover; }
}

/* ─── Hub cross-link paragraph (between cluster hubs) ─── */
.hub-cross-link {
  text-align: center;
  margin: 32px auto 48px;
  max-width: 720px;
  padding: 0 24px;
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink);
}
.hub-cross-link a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.hub-cross-link a:hover { color: var(--orange-h); }

/* ─── Lang switch (post-hero on /services & /services-fr) ─── */
.lang-switch {
  background: var(--lin);
  border-bottom: 1px solid rgba(212,196,176,.3);
  padding: 18px 48px;
}
.lang-switch-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.lang-switch-current {
  font-family: 'Jost', sans-serif;
  font-size: .72rem;
  font-weight: 300;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: .55;
}
.lang-switch-link {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--orange);
  text-decoration: none;
  transition: color .3s, transform .3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.lang-switch-link:hover {
  color: var(--orange-h);
  transform: translateX(4px);
}
@media (max-width: 768px) {
  .lang-switch { padding: 14px 24px; }
  .lang-switch-inner { gap: 14px; }
  .lang-switch-current { font-size: .65rem; letter-spacing: .18em; }
  .lang-switch-link { font-size: .92rem; }
}

/* ── Cookie notice (RGPD) ─────────────────────────────── */
#cookie-notice {
  position: fixed;
  bottom: 1.25rem;
  left: 1.25rem;
  background: rgba(255,255,255,.96);
  color: rgba(0,0,0,.72);
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: .55rem .9rem;
  border-radius: 6px;
  border: 1px solid rgba(212,196,176,.45);
  font-family: 'Jost', sans-serif;
  font-size: .72rem;
  font-weight: 300;
  letter-spacing: .005em;
  line-height: 1.5;
  z-index: 9999;
  max-width: min(380px, calc(100vw - 2.5rem));
  box-shadow: 0 4px 18px rgba(0,0,0,.08);
  transition: opacity .3s;
}
#cookie-notice p { margin: 0; line-height: 1.5; }
#cookie-notice a { color: #E0933A; text-decoration: none; }
#cookie-notice a:hover { text-decoration: underline; }
#cookie-dismiss {
  background: none;
  border: 1px solid rgba(0,0,0,.18);
  color: rgba(0,0,0,.65);
  padding: .25rem .6rem;
  border-radius: 3px;
  font-family: 'Jost', sans-serif;
  font-size: .68rem;
  font-weight: 400;
  letter-spacing: .08em;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: border-color .2s, color .2s;
}
#cookie-dismiss:hover { border-color: var(--orange); color: var(--orange); }
@media (max-width: 480px) {
  #cookie-notice { flex-direction: column; gap: .5rem; }
}

/* ── Footer legal line (match footer-copy size, lighter ink) ── */
.footer-legal-line {
  font-family: 'Jost', sans-serif !important;
  font-size: .68rem !important;
  font-weight: 300 !important;
  letter-spacing: .005em !important;
  color: rgba(0,0,0,.45) !important;
  margin: 6px 0 0 !important;
  line-height: 1.5 !important;
}
.footer-legal-line a {
  color: rgba(0,0,0,.45) !important;
  text-decoration: none !important;
  transition: color .2s !important;
}
.footer-legal-line a:hover { color: var(--orange) !important; }
@media (max-width: 768px) {
  .footer-legal-line { font-size: .62rem !important; }
}

/* ── Form section titles in orange (everywhere) ─────────── */
.f-section-title { color: var(--orange) !important; }

/* ── Mobile nav overlay — Fally bg image at 7% (mobile only) ── */
@media (max-width: 768px) {
  .nav-mobile-overlay::before {
    content: '';
    position: fixed;
    inset: 0;
    background: url('/media/fally-luxury-cake-paris-wedding.jpg') center/cover no-repeat;
    opacity: .07;
    pointer-events: none;
    z-index: 0;
  }
  .nav-mobile-overlay > * { position: relative; z-index: 1; }
}

/* ═══════════════════════════════════════════════════════
   LUXURY BODY TYPO — site-wide refinement (2026-05-02)
   Tier 1 = qualitative (weight 300, letter-spacing, ink .82, lh 1.7)
   Tier 2 = cards/secondary (Tier 1 + size .92rem)
═══════════════════════════════════════════════════════ */

/* Tier 1 — qualitative everywhere */
.intro-body, .intro-text, .intro-signature, .section-intro,
.cb-intro-body, .cb-intro-text, .cb-venue-body, .cb-venue-body-text,
.chess-p, .chess-text,
.designer-p,
.duo-text,
.italy-intro-body, .italy-intro-text,
.offer-body,
.paris-intro-body, .paris-intro-text, .paris-midcta-lead, .paris-sugar-lead,
.philosophy-p, .philosophy-text,
.process-step-body, .process-step-text,
.proof-p,
.prov-intro-body, .prov-intro-text, .prov-process-text, .prov-sugar-text, .prov-sugar-lead, .prov-venue-body,
.riviera-intro-body, .riviera-intro-text, .riviera-venue-card-body,
.sugar-card-body,
.temoignage-text,
.body-text, .body-large, .article-body,
.portfolio-hero-intro, .hero-intro, .hero-tagline,
.monannie-intro,
.venue-card-body, .item-content {
  font-weight: 300 !important;
  letter-spacing: .005em !important;
  color: rgba(0,0,0,.82) !important;
  line-height: 1.7 !important;
}

/* Tier 2 — cards / secondary (qualitative + smaller) */
.venue-card-desc, .riviera-venue-card-desc, .prov-venue-desc,
.sibling-desc, .dest-desc,
.feature-desc, .offer-desc, .phase-desc,
.process-step-desc, .process-detail-text,
.cb-venue-fact-desc,
.action-desc, .step-text, .stmt-text,
.cta-text, .diff-text, .sugar-feature-text,
.faq-a-text,
.subtitle, .sub-title, .sub-head, .section-subtitle,
.dest-subtitle, .paris-venues-subtitle, .prov-venues-subtitle,
.portfolio-series-sub, .contact-sub, .process-sub,
.cb-ambiance-caption, .body-small,
.legal-note, .libelle-note, .sig-note, .vat-note, .f-note,
.dest-num-text, .contact-detail-text, .divider-text,
.about-hero-sub, .cb-hero-sub, .italy-hero-sub, .paris-hero-sub,
.prov-hero-sub, .riviera-hero-sub, .page-hero-sub, .hero-sub,
.cover-sub, .ph-sub, .err-sub, .report-sub, .score-sub {
  font-family: 'Jost', sans-serif !important;
  font-size: .92rem !important;
  font-weight: 300 !important;
  letter-spacing: .005em !important;
  color: rgba(0,0,0,.82) !important;
  line-height: 1.7 !important;
}
