*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  width: 100%; height: 100%; overflow: hidden;
  font-family: 'Inter', sans-serif;
}

/* ── App container ──────────────────────────────────── */
#app {
  position: fixed; inset: 0; z-index: 1;
  overflow: hidden;
}

/* ── Glitch layers ──────────────────────────────────── */
#gc {
  position: fixed; inset: 0; z-index: 50;
  pointer-events: none; opacity: 0;
}


#blackout {
  position: fixed; inset: 0; z-index: 52;
  background: #000; opacity: 0; pointer-events: none;
}

/* ── Intro screen ──────────────────────────────────── */
#intro-screen {
  position: fixed; inset: 0; z-index: 300;
  background: #000;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}

#intro-inner {
  display: flex; flex-direction: column;
  align-items: center; gap: 1.8rem;
  text-align: center;
}

#intro-logo img {
  height: 100px;
  width: auto;
  display: block;
}

#intro-text {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300; font-style: italic;
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.02em;
}

/* ── Overlay + Pill ─────────────────────────────────── */
#overlay {
  position: fixed; inset: 0; z-index: 100;
  pointer-events: none;
}

#pill {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  pointer-events: auto;
  perspective: 900px;
  transition: transform 0.25s;
}
#pill:hover { transform: translateX(-50%) scale(1.03); }

.pill-inner {
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
#pill.flipped .pill-inner { transform: rotateX(180deg); }

.pill-face {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 8px;
}
.pill-face--front {
  display: flex; align-items: center; gap: 16px;
  padding: 10px 20px;
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 0.5px solid rgba(255, 255, 255, 0.12);
  white-space: nowrap;
  transition: border-color 0.35s, box-shadow 0.25s;
}
#pill:hover .pill-face--front {
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.32), 0 0 0 1px rgba(255,255,255,0.07);
}
.pill-face--back {
  position: absolute; inset: 0;
  transform: rotateX(180deg);
  background: #c8a96e;
  display: flex; align-items: center; justify-content: center;
}
.pill-back-cta {
  color: #1a0f00;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 16px; font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

#pill-text {
  display: flex; flex-direction: column; gap: 2px;
}

#pill-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 400;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.45);
}

#pill-accroche {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-weight: 400; font-style: italic;
  color: rgba(255, 255, 255, 0.88);
}

#pill-sep {
  width: 1px; height: 28px; flex-shrink: 0;
  background: rgba(255, 255, 255, 0.12);
}

#cta-btn {
  pointer-events: auto;
  display: inline-block;
  padding: 7px 14px;
  background: #c8a96e;
  color: #000;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 5px;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
#cta-btn:hover { opacity: 0.82; }


#dots {
  display: flex; align-items: center; gap: 6px;
  pointer-events: auto;
  margin-left: 6px;
}

.dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none; cursor: pointer;
  padding: 0; position: relative; flex-shrink: 0;
  transition: background 0.3s, transform 0.2s;
}
.dot::before {
  content: ''; position: absolute; inset: -8px;
}
.dot:hover { background: rgba(255, 255, 255, 0.6); }
.dot.active { background: #fff; box-shadow: 0 0 5px rgba(255,255,255,0.55); }

/* ── Accents dot actif par univers ───────────────────── */
[data-site="0"] .dot.active { background: rgba(228,217,204,.9); }
[data-site="1"] .dot.active { background: #ff6b00; }
[data-site="2"] .dot.active { background: rgba(120,148,90,.9); }
[data-site="3"] .dot.active { background: #c05a00; }
[data-site="4"] .dot.active { background: #c9a84c; }


/* ══════════════════════════════════════════════════════
   SITE 0 — AQUA STUDIO
   Hero split: texte gauche | marbre droite
   ══════════════════════════════════════════════════════ */
.aq {
  height: 100vh; width: 100%;
  background: #e4d9cc;
  font-family: 'Inter', sans-serif; color: #3a3028;
  overflow: hidden; position: relative;
}

/* ── Navigation ── */
.aq-nav {
  position: absolute; top: 0; left: 0; right: 0; z-index: 10;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 3.5rem;
}

.aq-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem; font-weight: 400;
  letter-spacing: .12em; color: #3a3028; text-decoration: none;
}
.aq-logo span { color: #b08060; }

.aq-nav-links { display: flex; gap: 2.2rem; list-style: none; }
.aq-nav-links li {
  font-size: .75rem; letter-spacing: .14em;
  text-transform: uppercase; color: #7a6e65;
  cursor: pointer; transition: color .25s;
}
.aq-nav-links li:hover { color: #b08060; }

.aq-nav-cta {
  font-size: .72rem; letter-spacing: .14em;
  text-transform: uppercase; color: #3a3028;
  border: 1px solid #b5a898; padding: .55rem 1.4rem;
  text-decoration: none; transition: all .25s;
}
.aq-nav-cta:hover { background: #3a3028; color: #e4d9cc; border-color: #3a3028; }

/* ── Hero ── */
.aq-hero {
  height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  position: relative; overflow: hidden;
}

/* Colonne texte */
.aq-text {
  display: flex; flex-direction: column; justify-content: center;
  padding: 9rem 3.5rem 5rem 5rem;
  position: relative; z-index: 2;
}

.aq-eyebrow {
  font-size: .68rem; letter-spacing: .28em; text-transform: uppercase;
  color: #b08060; margin-bottom: 1.6rem;
  opacity: 0; animation: aq-up .8s .3s forwards;
}

.aq-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 4.5vw, 5.2rem);
  font-weight: 300; line-height: 1.08; letter-spacing: -.01em;
  color: #3a3028; margin-bottom: 1.8rem;
  opacity: 0; animation: aq-up .8s .5s forwards;
}
.aq-title em { font-style: italic; color: #b08060; }

.aq-sub {
  font-size: .92rem; font-weight: 300; line-height: 1.85;
  color: #7a6e65; max-width: 360px; margin-bottom: 3rem;
  opacity: 0; animation: aq-up .8s .7s forwards;
}

.aq-actions {
  display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
  opacity: 0; animation: aq-up .8s .9s forwards;
}

.aq-btn-primary {
  display: inline-block; padding: 1rem 2.4rem;
  background: #3a3028; color: #e4d9cc;
  font-size: .72rem; letter-spacing: .16em; text-transform: uppercase;
  text-decoration: none; transition: background .25s, transform .2s;
}
.aq-btn-primary:hover { background: #b08060; transform: translateY(-1px); }

.aq-btn-ghost {
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  color: #7a6e65; text-decoration: none;
  display: flex; align-items: center; gap: .6rem; transition: color .25s;
}
.aq-btn-ghost::after {
  content: ''; display: block; width: 24px; height: 1px;
  background: #b5a898; transition: width .3s, background .25s;
}
.aq-btn-ghost:hover { color: #b08060; }
.aq-btn-ghost:hover::after { width: 38px; background: #b08060; }

/* Scroll hint */
.aq-scroll-hint {
  position: absolute; bottom: 2.5rem; left: 5rem;
  display: flex; align-items: center; gap: .75rem;
  font-size: .6rem; letter-spacing: .22em; text-transform: uppercase;
  color: #7a6e65; opacity: 0; animation: aq-up .8s 1.2s forwards;
}
.aq-scroll-line {
  width: 1px; height: 44px; background: #b5a898;
  position: relative; overflow: hidden;
}
.aq-scroll-line::after {
  content: ''; position: absolute; top: -100%; left: 0;
  width: 100%; height: 100%; background: #b08060;
  animation: aq-scroll 2s 1.5s ease-in-out infinite;
}

/* Colonne image — marbre naturel CSS */
.aq-image-wrap {
  position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse at 72% 28%, rgba(255,248,235,.18) 0%, transparent 48%),
    linear-gradient(155deg,
      #cec5bc 0%, #c6bdb2 15%,
      #d0c7bc 32%, #cac1b6 52%,
      #c4bbb0 72%, #ccc3b8 88%,
      #c0b7ac 100%
    );
}

.aq-img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  display: block;
  opacity: 0; animation: aq-up 1s .4s forwards;
}

/* Dégradé de fondu gauche: image → fond beige */
.aq-image-wrap::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to right,
    #e4d9cc 0%,
    rgba(228,217,204,.9) 5%,
    rgba(228,217,204,.5) 18%,
    rgba(228,217,204,.08) 34%,
    transparent 50%
  );
}

/* Fondu haut */
.aq-image-wrap::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 150px; z-index: 1;
  background: linear-gradient(to bottom, #e4d9cc 0%, transparent 100%);
}

/* Animations */
@keyframes aq-up {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes aq-scroll {
  0%   { top: -100%; }
  60%  { top: 100%; }
  100% { top: 100%; }
}


/* ══════════════════════════════════════════════════════
   SITE 1 — MELT BURGER
   ══════════════════════════════════════════════════════ */
.hero {
  --black:  #090908;
  --red:    #E8321A;
  --amber:  #F5A623;
  --cream:  #F2EBD9;
  --dim:    rgba(242,235,217,.13);
  width: 100vw; height: 100vh;
  display: flex; flex-direction: column; overflow: hidden; position: relative;
  background: var(--black); color: var(--cream);
  font-family: 'Barlow Condensed', sans-serif;
}

.site-header {
  position: relative; z-index: 10;
  display: grid; grid-template-columns: auto 1fr auto;
  border-bottom: 1px solid var(--dim);
  opacity: 0; animation: melt-fadein .5s .05s ease forwards; flex-shrink: 0;
}

.header-logo {
  background: var(--red); padding: 0 32px;
  display: flex; align-items: center; gap: 12px; position: relative;
}
.header-logo::after {
  content: ''; position: absolute; right: -13px; top: 0; bottom: 0; width: 13px;
  background: var(--red); clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.logo-mark {
  font-family: 'Bebas Neue', sans-serif; font-size: 2rem;
  letter-spacing: .15em; color: #fff; line-height: 1;
}
.logo-sub {
  border-left: 1px solid rgba(255,255,255,.2); padding-left: 12px;
  display: flex; flex-direction: column; gap: 2px;
}
.logo-sub span { font-size: .5rem; letter-spacing: .2em; text-transform: uppercase; line-height: 1; }
.logo-sub-top { color: rgba(255,255,255,.85); }
.logo-sub-bot { color: rgba(255,255,255,.45); }

.header-center {
  display: flex; flex-direction: column; justify-content: center;
  align-items: center; padding: 14px 48px; gap: 8px;
}
.header-manifesto {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: .92rem; color: rgba(242,235,217,.6); letter-spacing: .03em; text-align: center;
}
.header-manifesto strong {
  font-style: normal; color: var(--cream); font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; letter-spacing: .08em; font-size: .9rem;
}
.header-meta-row { display: flex; align-items: center; gap: 14px; }
.header-meta-item {
  font-size: .57rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(242,235,217,.3);
}
.meta-dot {
  width: 3px; height: 3px; border-radius: 50%;
  background: var(--red); opacity: .5; flex-shrink: 0;
}

.header-nav { display: flex; align-items: stretch; border-left: 1px solid var(--dim); }
.header-nav-links { display: flex; align-items: center; list-style: none; padding: 0 8px; }
.header-nav-links li a {
  display: flex; align-items: center; height: 100%; padding: 0 18px;
  font-size: .6rem; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(242,235,217,.4); text-decoration: none; transition: color .2s, background .2s;
}
.header-nav-links li a:hover { color: var(--cream); background: rgba(242,235,217,.04); }
.header-nav-cta {
  background: var(--amber); color: var(--black); border: none; padding: 0 28px;
  font-family: 'Barlow Condensed', sans-serif; font-size: .64rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase; cursor: pointer;
  border-left: 1px solid var(--dim); transition: background .2s; white-space: nowrap;
}
.header-nav-cta:hover { background: #e89810; }
.header-menu-icon {
  display: flex; flex-direction: column; justify-content: center;
  gap: 5px; padding: 0 22px; cursor: pointer; border-left: 1px solid var(--dim);
}
.menu-bar { width: 20px; height: 1.5px; background: rgba(242,235,217,.45); transition: background .2s; }
.menu-bar:last-child { width: 13px; }
.header-menu-icon:hover .menu-bar { background: var(--cream); }

.stage {
  flex: 1; position: relative; display: flex; flex-direction: column;
  align-items: center; justify-content: center; overflow: hidden;
}
.text-line {
  position: relative; z-index: 1; display: flex; align-items: center;
  justify-content: center; line-height: .85; pointer-events: none; width: 100%;
}
.text-line--top { margin-bottom: -11vw; }
.text-line--bot { margin-top: -4vw; }
.big-word {
  font-family: 'Bebas Neue', sans-serif; letter-spacing: .01em;
  display: block; text-align: center; opacity: 0;
}
.word-smash-ghost {
  font-size: 25vw; -webkit-text-stroke: 1.5px rgba(242,235,217,.2); color: transparent;
  animation: melt-slideInTop .9s .2s cubic-bezier(.16,1,.3,1) forwards;
}
.word-smash-solid {
  font-size: 25vw; color: #fff;
  animation: melt-slideInTop .9s .1s cubic-bezier(.16,1,.3,1) forwards;
}
.word-burger-outline {
  font-size: 21vw; -webkit-text-stroke: 1.5px rgba(242,235,217,.2); color: transparent;
  animation: melt-slideInBot .9s .15s cubic-bezier(.16,1,.3,1) forwards;
}
.word-burger-red {
  font-size: 21vw; color: var(--red);
  text-shadow: 0 0 80px rgba(232,50,26,.35), 0 0 180px rgba(232,50,26,.15);
  animation: melt-slideInBot .9s .28s cubic-bezier(.16,1,.3,1) forwards;
}

@keyframes melt-slideInTop {
  from { opacity: 0; transform: translateY(-36px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes melt-slideInBot {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes melt-fadein { to { opacity: 1; } }

.burger-wrap {
  position: relative; z-index: 5;
  width: 34vw; height: 34vw; max-width: 500px; max-height: 500px;
  opacity: 0; animation: melt-burstIn .85s .45s cubic-bezier(.34,1.4,.64,1) forwards;
}
@keyframes melt-burstIn {
  from { opacity: 0; transform: scale(.82) rotate(-5deg); }
  to   { opacity: 1; transform: scale(1) rotate(-3deg); }
}

/* clip container — rings sit outside this, image is clipped inside */
.burger-photo-clip {
  width: 100%; height: 100%; border-radius: 50%; overflow: hidden;
  position: relative; z-index: 2;
}
.burger-photo {
  width: 100%; height: 100%; display: block;
  object-fit: cover; object-position: center 30%;
  filter: contrast(1.08) saturate(1.1) brightness(1.05);
  transform: scale(1.25);
}

.burger-ring-1 {
  position: absolute; inset: -8px; border-radius: 50%;
  border: 2px solid rgba(245,166,35,.6); pointer-events: none;
  animation: melt-ringpulse 2.8s 1.2s ease-in-out infinite;
}
.burger-ring-2 {
  position: absolute; inset: -20px; border-radius: 50%;
  border: 1px solid rgba(245,166,35,.22); pointer-events: none;
}
.burger-ring-3 {
  position: absolute; inset: -36px; border-radius: 50%;
  border: 1px dashed rgba(245,166,35,.1); pointer-events: none;
  animation: melt-spin 28s linear infinite;
}
@keyframes melt-ringpulse {
  0%, 100% { opacity: .6; transform: scale(1); }
  50%       { opacity: 1; transform: scale(1.015); }
}
@keyframes melt-spin { to { transform: rotate(360deg); } }

.tag {
  position: absolute; background: rgba(9,9,8,.94);
  border: 1.5px solid var(--amber); padding: 9px 16px 9px 20px;
  white-space: nowrap; opacity: 0;
  box-shadow: 0 0 0 1px rgba(245,166,35,.08), 0 0 24px rgba(245,166,35,.12), 0 4px 20px rgba(0,0,0,.6);
}
.tag::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--amber);
}
.tag-label {
  font-size: .54rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--amber); display: block; margin-bottom: 3px;
}
.tag-value {
  font-family: 'Bebas Neue', sans-serif; font-size: 1.2rem;
  letter-spacing: .07em; color: var(--cream); line-height: 1;
}
.tag-connector {
  position: absolute; top: 50%; transform: translateY(-50%);
  display: flex; align-items: center; gap: 0;
}
.tag-connector-line {
  width: 20px; height: 1px;
  background: linear-gradient(to right, rgba(245,166,35,.6), rgba(245,166,35,.0));
}
.tag-connector-dot {
  width: 5px; height: 5px; border-radius: 50%; background: var(--amber);
  box-shadow: 0 0 6px rgba(245,166,35,.7); flex-shrink: 0;
}

.tag--tl { top: 8%; left: -48%; animation: melt-tagSlideR .55s 1s ease forwards; }
.tag--tl .tag-connector { right: -26px; flex-direction: row; }
.tag--tl .tag-connector-line { background: linear-gradient(to right, rgba(245,166,35,.0), rgba(245,166,35,.6)); }

.tag--tr { top: 6%; right: -48%; animation: melt-tagSlideL .55s 1.1s ease forwards; }
.tag--tr .tag-connector { left: -26px; flex-direction: row-reverse; }
.tag--tr .tag-connector-line { background: linear-gradient(to left, rgba(245,166,35,.0), rgba(245,166,35,.6)); }

.tag--bl { bottom: 14%; left: -44%; animation: melt-tagSlideR .55s 1.2s ease forwards; }
.tag--bl .tag-connector { right: -26px; flex-direction: row; }
.tag--bl .tag-connector-line { background: linear-gradient(to right, rgba(245,166,35,.0), rgba(245,166,35,.6)); }

@keyframes melt-tagSlideR {
  from { opacity: 0; transform: translateX(-12px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes melt-tagSlideL {
  from { opacity: 0; transform: translateX(12px); }
  to   { opacity: 1; transform: translateX(0); }
}

.sticker {
  position: absolute; bottom: 0; right: -8%; width: 84px; height: 84px;
  background: var(--red); border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; transform: rotate(12deg); opacity: 0;
  animation: melt-fadein .5s 1.35s ease forwards;
  box-shadow: 0 0 28px rgba(232,50,26,.35);
}
.sticker-num { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; color: #fff; line-height: 1; }
.sticker-txt { font-size: .44rem; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.75); line-height: 1.5; }

.side-label {
  position: absolute; bottom: 70px; font-size: .54rem; letter-spacing: .28em;
  text-transform: uppercase; color: rgba(242,235,217,.14); writing-mode: vertical-lr;
  opacity: 0; animation: melt-fadein .8s 1.5s ease forwards;
}
.side-label--l { left: 20px; transform: rotate(180deg); }
.side-label--r { right: 20px; }

.accent-line {
  position: absolute; bottom: 60px; left: 50%; transform: translateX(-50%);
  width: 0; height: 2px; background: var(--red);
  animation: melt-grow 1s .8s cubic-bezier(.4,0,.2,1) forwards;
}
@keyframes melt-grow { to { width: 52px; } }

.bottom-bar {
  flex-shrink: 0; position: relative; z-index: 10;
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 48px; border-top: 1px solid var(--dim);
  opacity: 0; animation: melt-fadein .7s 1.1s ease forwards;
}
.bottom-info { display: flex; gap: 36px; }
.info-lbl { font-size: .54rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(242,235,217,.26); margin-bottom: 3px; }
.info-val { font-size: .82rem; letter-spacing: .06em; color: rgba(242,235,217,.65); }
.bottom-tagline {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: .9rem; color: rgba(242,235,217,.5);
}
.bottom-tagline strong {
  font-style: normal; font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; color: var(--cream); letter-spacing: .05em;
}
.bottom-cta { display: flex; align-items: center; gap: 24px; }
.cta-sub {
  font-size: .57rem; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(242,235,217,.28); text-align: right; line-height: 1.6;
}
.btn-main {
  background: var(--amber); color: var(--black); border: none; padding: 13px 30px;
  font-family: 'Barlow Condensed', sans-serif; font-size: .7rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase; cursor: pointer;
  transition: background .2s, transform .15s;
}
.btn-main:hover { background: #e89810; transform: translateY(-1px); }


/* ══════════════════════════════════════════════════════
   SITE 2 — FILO CUCINA ITALIANA
   ══════════════════════════════════════════════════════ */
body[data-site="2"] #app { overflow-y: auto; }
.filo-v2 { background: var(--ivory); color: var(--ink); font-family: 'Cormorant Garamond', Georgia, serif; overflow-x: hidden; }

body[data-site="2"] {
      --cream:        #F5F0E6;
      --ivory:        #FDFAF4;
      --olive-dark:   #2B3520;
      --olive-mid:    #4A5838;
      --olive-light:  #8A9B72;
      --olive-pale:   #C8D4B0;
      --sand:         #C4B896;
      --ink:          #1C2016;
      --warm-white:   #F9F6EF;
    }
    
    
    

    /* HERO */
    .filo-v2 .hero { height: 100vh; min-height: 700px; display: grid; grid-template-columns: 1fr 1fr; position: relative; }

    .filo-v2 .hero-text {
      background: var(--ivory);
      display: flex; flex-direction: column; justify-content: center;
      padding: 5rem 5rem 5rem 7rem;
      position: relative; z-index: 2;
    }
    .filo-v2 .hero-text::after {
      content: ''; position: absolute;
      left: 7rem; top: 5rem; bottom: 5rem; width: 1px;
      background: linear-gradient(to bottom, transparent, var(--olive-pale) 20%, var(--olive-pale) 80%, transparent);
    }
    .filo-v2 .hero-eyebrow {
      font-family: 'Jost', sans-serif; font-weight: 200; font-size: 0.63rem;
      letter-spacing: 0.38em; text-transform: uppercase; color: var(--olive-mid);
      margin-bottom: 2rem; padding-left: 2.5rem;
    }
    .filo-v2 .hero-title {
      font-family: 'Cormorant', serif; font-weight: 300;
      font-size: clamp(6rem, 11vw, 12rem); line-height: 0.88;
      color: var(--ink); letter-spacing: -0.02em; padding-left: 2.2rem;
    }
    .filo-v2 .hero-title em { font-style: italic; color: var(--olive-mid); }
    .filo-v2 .hero-rule { width: 3rem; height: 1px; background: var(--olive-mid); margin: 2.5rem 0 2rem 2.5rem; }
    .filo-v2 .hero-tagline {
      font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.15rem;
      font-weight: 300; color: var(--olive-mid); line-height: 1.72; max-width: 30ch; padding-left: 2.5rem;
    }
    .filo-v2 .hero-cta-row { display: flex; align-items: center; gap: 2.5rem; margin-top: 3rem; padding-left: 2.5rem; }
    .filo-v2 .btn-reserve {
      font-family: 'Jost', sans-serif; font-weight: 300; font-size: 0.68rem;
      letter-spacing: 0.22em; text-transform: uppercase; color: var(--ivory);
      background: var(--olive-dark); border: none; padding: 0.95rem 2rem;
      cursor: pointer; text-decoration: none; transition: background 0.3s;
    }
    .filo-v2 .btn-reserve:hover { background: var(--olive-mid); }
    .filo-v2 .hero-address {
      font-family: 'Jost', sans-serif; font-weight: 200; font-size: 0.63rem;
      letter-spacing: 0.18em; text-transform: uppercase; color: var(--sand);
    }

    .filo-v2 .hero-image { position: relative; background: var(--olive-dark); overflow: hidden; }
    .filo-v2 .hero-image::before {
      content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
      background: radial-gradient(ellipse at 50% 45%, rgba(180,200,140,0.1) 0%, transparent 65%);
    }
    .filo-v2 .hero-fork-img {
      position: absolute; inset: 0; width: 100%; height: 100%;
      object-fit: cover; object-position: center 20%;
      mix-blend-mode: screen; z-index: 2;
    }
    .filo-v2 .hero-image-fade {
      position: absolute; bottom: 0; left: 0; right: 0; height: 40%;
      background: linear-gradient(to bottom, transparent, var(--olive-dark));
      z-index: 3; pointer-events: none;
    }
    .filo-v2 .hero-caption { position: absolute; bottom: 7rem; left: 2.8rem; z-index: 4; }
    .filo-v2 .hero-caption .dish {
      font-family: 'Cormorant', serif; font-style: italic; font-size: 1.5rem;
      font-weight: 300; color: rgba(245,240,230,0.82); display: block;
    }
    .filo-v2 .hero-caption .sub {
      font-family: 'Jost', sans-serif; font-weight: 200; font-size: 0.58rem;
      letter-spacing: 0.28em; text-transform: uppercase;
      color: rgba(200,212,176,0.5); margin-top: 0.3rem; display: block;
    }
    .filo-v2 .hero-num {
      position: absolute; top: 2.5rem; right: 2.8rem;
      font-family: 'Jost', sans-serif; font-weight: 200; font-size: 0.58rem;
      letter-spacing: 0.28em; color: rgba(200,212,176,0.3); z-index: 4;
    }

    /* BANDEAU — centré, flottant */
    .filo-v2 .hero-band {
      position: absolute;
      bottom: 2.5rem;
      left: 50%;
      transform: translateX(-50%);
      z-index: 10;
      background: var(--cream);
      border: 1px solid var(--olive-pale);
      display: flex;
      align-items: stretch;
      height: 4rem;
      white-space: nowrap;
      box-shadow: 0 4px 24px rgba(28,32,22,0.08);
    }
    .filo-v2 .band-item {
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      gap: 0.18rem; padding: 0 2.2rem;
      border-right: 1px solid var(--olive-pale);
    }
    .filo-v2 .band-item:last-child { border-right: none; }
    .filo-v2 .band-item .b-label {
      font-family: 'Jost', sans-serif; font-weight: 200; font-size: 0.54rem;
      letter-spacing: 0.28em; text-transform: uppercase; color: var(--olive-light);
    }
    .filo-v2 .band-item .b-value {
      font-family: 'Jost', sans-serif; font-weight: 300; font-size: 0.8rem;
      letter-spacing: 0.12em; color: var(--ink);
    }

    /* SECTION ÉDITORIALE */
    .filo-v2 .section-editorial { background: var(--warm-white); padding: 7rem 0 6rem; position: relative; overflow: hidden; }
    .filo-v2 .section-editorial::before {
      content: 'F'; position: absolute; top: -3rem; right: -1rem;
      font-family: 'Cormorant', serif; font-style: italic; font-size: 30rem;
      font-weight: 300; color: var(--olive-pale); opacity: 0.28;
      line-height: 1; pointer-events: none; user-select: none;
    }
    .filo-v2 .ed-grid {
      max-width: 1380px; margin: 0 auto; padding: 0 6rem;
      display: grid; grid-template-columns: 1.1fr 1.5fr 1fr;
      position: relative; z-index: 1;
    }
    .filo-v2 .ed-left { padding-right: 4rem; display: flex; flex-direction: column; gap: 3.5rem; }
    .filo-v2 .ed-tag {
      font-family: 'Jost', sans-serif; font-weight: 200; font-size: 0.62rem;
      letter-spacing: 0.32em; text-transform: uppercase; color: var(--olive-mid);
    }
    .filo-v2 .ed-heading { font-family: 'Cormorant', serif; font-weight: 300; font-size: 3rem; line-height: 1.05; color: var(--ink); margin-top: 1.2rem; }
    .filo-v2 .ed-heading em { font-style: italic; color: var(--olive-mid); }
    .filo-v2 .ed-body { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 300; line-height: 1.8; color: #5A5440; }
    .filo-v2 .ed-quote { border-top: 1px solid var(--olive-pale); padding-top: 2rem; }
    .filo-v2 .ed-quote blockquote {
      font-family: 'Cormorant', serif; font-style: italic; font-size: 1.2rem;
      font-weight: 300; line-height: 1.65; color: var(--ink);
      padding-left: 1.2rem; border-left: 2px solid var(--olive-mid);
    }
    .filo-v2 .ed-quote cite {
      display: block; margin-top: 0.8rem; font-family: 'Jost', sans-serif;
      font-style: normal; font-weight: 200; font-size: 0.6rem;
      letter-spacing: 0.22em; text-transform: uppercase; color: var(--olive-light);
    }

    .filo-v2 .ed-center { position: relative; min-height: 580px; }
    .filo-v2 .ed-center-wrap { position: absolute; inset: 0; background: var(--olive-dark); overflow: hidden; }
    .filo-v2 .ed-food-img {
      position: absolute; inset: 0; width: 100%; height: 100%;
      object-fit: cover; object-position: center 30%;
      mix-blend-mode: screen; z-index: 1;
    }
    .filo-v2 .ed-center-fade {
      position: absolute; bottom: 0; left: 0; right: 0; height: 35%;
      background: linear-gradient(to bottom, transparent, var(--olive-dark));
      z-index: 2; pointer-events: none;
    }
    .filo-v2 .ed-center-label { position: absolute; bottom: 2rem; left: 2rem; z-index: 3; }
    .filo-v2 .ed-center-label .dish {
      font-family: 'Cormorant', serif; font-style: italic; font-size: 1.4rem;
      font-weight: 300; color: rgba(245,240,230,0.9); display: block;
    }
    .filo-v2 .ed-center-label .origin {
      font-family: 'Jost', sans-serif; font-weight: 200; font-size: 0.58rem;
      letter-spacing: 0.25em; text-transform: uppercase;
      color: rgba(200,212,176,0.5); display: block; margin-top: 0.25rem;
    }

    .filo-v2 .ed-right { padding-left: 3.5rem; border-left: 1px solid var(--olive-pale); display: flex; flex-direction: column; justify-content: space-between; }
    .filo-v2 .ed-right-top { display: flex; flex-direction: column; gap: 0.6rem; }
    .filo-v2 .ed-num { font-family: 'Cormorant', serif; font-weight: 300; font-size: 6rem; line-height: 1; color: var(--olive-pale); }
    .filo-v2 .ed-right-title { font-family: 'Cormorant', serif; font-size: 1.35rem; font-weight: 400; color: var(--ink); line-height: 1.3; }
    .filo-v2 .ed-right-sub { font-family: 'Cormorant Garamond', serif; font-size: 0.95rem; font-weight: 300; line-height: 1.75; color: #6A6050; margin-top: 0.4rem; }
    .filo-v2 .ed-ingredient-list { list-style: none; margin-top: auto; }
    .filo-v2 .ed-ingredient-list li {
      display: flex; align-items: baseline; justify-content: space-between;
      gap: 1rem; padding: 0.75rem 0; border-bottom: 1px solid rgba(200,212,176,0.4);
      font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-weight: 300; color: var(--ink);
    }
    .filo-v2 .ing-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--olive-mid); flex-shrink: 0; }
    .filo-v2 .ing-name { flex: 1; }
    .filo-v2 .ing-origin { font-style: italic; font-size: 0.88rem; color: var(--olive-light); }

    .filo-v2 .fade-up { opacity: 0; transform: translateY(22px); animation: filo-fadeUp 0.85s cubic-bezier(0.22,1,0.36,1) forwards; }
    @keyframes filo-fadeUp { to { opacity: 1; transform: translateY(0); } }
    .filo-v2 .d1{animation-delay:0.1s} .filo-v2 .d2{animation-delay:0.25s} .filo-v2 .d3{animation-delay:0.42s}
    .filo-v2 .d4{animation-delay:0.58s} .filo-v2 .d5{animation-delay:0.75s} .filo-v2 .d6{animation-delay:0.92s}


/* ══════════════════════════════════════════════════════
   SITE 3 — ATELIER ROUX
   ══════════════════════════════════════════════════════ */
.ar {
  position: relative;
  height: 100vh; width: 100%;
  background: url('paint-drip.jpg') right center / auto 100% no-repeat;
  display: flex; flex-direction: column;
  justify-content: space-between;
  font-family: 'Inter', sans-serif;
}

.ar::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(232, 218, 198, 0.88) 0%,
    rgba(228, 214, 194, 0.70) 28%,
    rgba(220, 208, 188, 0.30) 52%,
    rgba(220, 208, 188, 0.00) 72%
  );
}

.ar-navbar {
  position: relative; z-index: 2;
  display: flex; justify-content: space-between; align-items: center;
  height: 80px; padding: 0 60px;
  background: rgba(58, 62, 55, 0.52);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.ar-logo {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
}

.ar-logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 500; letter-spacing: 3px; color: #fff;
}

.ar-logo-subtitle {
  font-size: 10px; font-weight: 300; letter-spacing: 3px;
  color: rgba(255,255,255,0.80); text-transform: uppercase;
}

.ar-menu {
  display: flex; gap: 40px;
}

.ar-menu a {
  text-decoration: none; color: rgba(255,255,255,0.90);
  font-size: 13px; letter-spacing: 1.5px; padding-bottom: 4px;
}

.ar-cta-btn {
  border: 1.5px solid rgba(255,255,255,0.85);
  padding: 10px 18px; text-decoration: none; color: #fff;
  font-size: 12px; letter-spacing: 1.5px; font-weight: 400;
}

.ar-hero-content {
  position: relative; z-index: 2;
  max-width: 660px; padding: 0 60px 90px;
  margin-top: auto; margin-bottom: auto;
}

.ar h1 {
  font-family: 'Playfair Display', serif;
  font-size: 44px; line-height: 1.15; font-weight: 500;
  margin-bottom: 20px; color: #1e1e1e;
  text-transform: uppercase; letter-spacing: 1px;
}

.ar-separator {
  width: 36px; height: 2px;
  background-color: #6f8f7a; margin-bottom: 20px;
}

.ar-hero-content p {
  font-size: 17px; color: #444; line-height: 1.65; margin-bottom: 34px;
}

.ar-btn {
  display: inline-block; background: #6f8f7a;
  color: white; padding: 14px 26px;
  text-decoration: none; font-size: 13px;
  letter-spacing: 1.5px; border-radius: 2px;
}


/* ══════════════════════════════════════════════════════
   SITE 4 — MANOIR DE BEAUVAL
   ══════════════════════════════════════════════════════ */
.mn {
  height: 100vh; width: 100%;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  font-family: 'Jost', sans-serif;
}

.mn-video-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 60%, rgba(40,32,20,0.6) 0%, transparent 60%),
    radial-gradient(ellipse at 75% 35%, rgba(20,25,35,0.5) 0%, transparent 55%),
    linear-gradient(160deg, #0d0b08 0%, #1a1510 35%, #0e1118 70%, #080808 100%);
}
.mn-video-bg video {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}

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

.mn-veil {
  position: absolute; inset: 0; z-index: 1;
  background: rgba(0,0,0,0.45);
}

.mn-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom,
    rgba(8,8,8,0.08) 0%, rgba(8,8,8,0) 30%,
    rgba(8,8,8,0) 55%, rgba(8,8,8,0.65) 85%, rgba(8,8,8,1) 100%);
}

.mn-nav {
  position: absolute; top: 0; left: 0; right: 0; z-index: 10;
  padding: 2.2rem 4rem;
  display: flex; align-items: center; justify-content: space-between;
}

.mn-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem; font-weight: 300;
  letter-spacing: 0.18em; color: #f5f0e8;
  text-transform: uppercase; text-decoration: none;
}
.mn-logo span { color: #b89a6a; }

.mn-nav-links {
  display: flex; gap: 3rem; list-style: none;
}
.mn-nav-links li {
  font-size: 0.68rem; font-weight: 300;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(245,240,232,0.7); cursor: pointer;
}

.mn-cta {
  font-size: 0.65rem; font-weight: 300;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: #080808; background: #b89a6a;
  padding: 0.75rem 1.8rem; text-decoration: none;
}

.mn-hero-content {
  position: relative; z-index: 2;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
}

.mn-eyebrow {
  font-size: 0.62rem; font-weight: 300;
  letter-spacing: 0.5em; text-transform: uppercase;
  color: #b89a6a;
  animation: mn-fadeUp 1.2s cubic-bezier(0.16,1,0.3,1) 0.4s both;
}

.mn-divider {
  width: 40px; height: 1px;
  background: #b89a6a; margin: 1.2rem auto;
  animation: mn-fadeIn 1s ease 0.8s both;
}

.mn-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(4rem, 8vw, 8.5rem);
  font-weight: 300; line-height: 0.92; color: #f5f0e8;
  animation: mn-fadeUp 1.4s cubic-bezier(0.16,1,0.3,1) 0.6s both;
}
.mn-title em { font-style: italic; color: #faf8f4; }

.mn-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 1.8vw, 1.4rem);
  font-weight: 300; font-style: italic;
  color: rgba(245,240,232,0.55); letter-spacing: 0.08em; margin-top: 1.6rem;
  animation: mn-fadeUp 1.2s cubic-bezier(0.16,1,0.3,1) 1s both;
}

.mn-actions {
  display: flex; gap: 1.4rem; margin-top: 3.2rem;
  animation: mn-fadeUp 1.2s cubic-bezier(0.16,1,0.3,1) 1.3s both;
}

.mn-btn-primary {
  font-size: 0.65rem; font-weight: 300;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: #080808; background: #b89a6a;
  padding: 1.05rem 2.8rem; text-decoration: none;
  transition: background 0.35s;
}
.mn-btn-primary:hover { background: #d4b98a; }

.mn-btn-ghost {
  font-size: 0.65rem; font-weight: 300;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(245,240,232,0.75);
  border: 1px solid rgba(184,154,106,0.35);
  padding: 1.05rem 2.8rem; text-decoration: none;
  transition: border-color 0.35s, color 0.35s;
}
.mn-btn-ghost:hover { border-color: rgba(184,154,106,0.7); color: #f5f0e8; }

.mn-scroll {
  position: absolute; bottom: 3rem; left: 50%;
  transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  animation: mn-fadeIn 1s ease 2s both;
}
.mn-scroll span {
  font-size: 0.55rem; letter-spacing: 0.4em;
  text-transform: uppercase; color: rgba(184,154,106,0.6);
}
.mn-scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, rgba(184,154,106,0.6), transparent);
  animation: mn-scrollPulse 2.5s ease-in-out infinite;
}

@keyframes mn-fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes mn-fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes mn-scrollPulse {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}


/* ══════════════════════════════════════════════════════
   PAGE CONTACT
   ══════════════════════════════════════════════════════ */
.page-contact {
  background: #f5f5f7; color: #1d1d1f; overflow: auto;
}

.contact-wrapper {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
}

.contact-content {
  display: flex; flex-direction: column;
  align-items: center; gap: 1.25rem;
  text-align: center; padding: 2rem;
}

.contact-name {
  font-family: 'Inter', sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700; color: #1d1d1f; letter-spacing: -0.03em;
}

.contact-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem; font-weight: 300;
  color: #6e6e73; letter-spacing: 0.02em;
}

.contact-email {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem; font-weight: 400;
  color: #1d1d1f; text-decoration: none;
  border-bottom: 1px solid #1d1d1f; padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.contact-email:hover { color: #0066cc; border-color: #0066cc; }

.contact-back {
  margin-top: 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem; color: #6e6e73;
  text-decoration: none; transition: color 0.2s;
}
.contact-back:hover { color: #1d1d1f; }


/* ── Body backgrounds — iOS safe area color match ──────── */
body[data-site="0"] { background: #e4d9cc; }
body[data-site="1"] { background: #090908; }
body[data-site="2"] { background: #fdfaf4; }
body[data-site="3"] { background: #e8dac6; }
body[data-site="4"] { background: #080808; }

/* ══════════════════════════════════════════════════════
   RESPONSIVE — MOBILE FIRST (≤768px)
   Redesign complet pour smartphone vertical
   ══════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* ═══════════════════════════════════════════════
     PILL — navigation mobile repensée
     Full-width, hauteur tactile, dots agrandis
  ═══════════════════════════════════════════════ */
  #pill {
    left: 14px;
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom, 0px));
    transform: none;
  }
  #pill:hover { transform: none; }

  .pill-inner { width: 100%; }

  .pill-face--front {
    width: 100%;
    padding: 10px 14px;
    gap: 12px;
    justify-content: space-between;
    white-space: normal;
    min-height: 48px;
  }

  #pill-text { display: none; }
  #pill-sep  { display: none; }

  #dots {
    gap: 12px;
    margin-left: 0;
  }

  .dot {
    width: 8px;
    height: 8px;
  }
  .dot::before { inset: -12px; }

  #cta-btn {
    font-size: 10px;
    padding: 9px 14px;
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
  }

  /* ═══════════════════════════════════════════════
     SITE 0 — AQUA STUDIO
     Image plein écran, texte overlay ancré en bas
  ═══════════════════════════════════════════════ */
  .aq { overflow: hidden; }

  .aq-nav {
    padding: 1.2rem 1.4rem;
    background: transparent;
  }
  .aq-nav-links, .aq-nav-cta { display: none; }

  .aq-hero {
    display: block;
    height: 100vh;
    position: relative;
  }

  .aq-image-wrap {
    position: absolute;
    inset: 0;
    display: block;
  }

  .aq-image-wrap::before {
    background: linear-gradient(
      to bottom,
      rgba(228,217,204,0.10) 0%,
      transparent 28%,
      rgba(228,217,204,0.55) 58%,
      rgba(228,217,204,0.94) 76%,
      #e4d9cc 100%
    );
    z-index: 1;
  }
  .aq-image-wrap::after { display: none; }

  .aq-img {
    animation: none;
    opacity: 1;
    object-position: center 20%;
  }

  .aq-text {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    z-index: 2;
    padding: 0 1.5rem calc(6.5rem + env(safe-area-inset-bottom, 0px));
    justify-content: flex-end;
  }

  .aq-eyebrow { margin-bottom: 0.8rem; color: #6e3f1c; }

  .aq-title {
    font-size: clamp(2.8rem, 13vw, 4.2rem);
    margin-bottom: 1rem;
    line-height: 1.05;
  }

  .aq-sub {
    font-size: 0.85rem;
    max-width: none;
    margin-bottom: 1.6rem;
    line-height: 1.7;
  }

  .aq-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }

  .aq-btn-primary {
    padding: 0.85rem 2rem;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .aq-btn-ghost {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .aq-scroll-hint { display: none; }

  /* ═══════════════════════════════════════════════
     SITE 1 — MELT BURGER
     Impact typographique préservé, structure verticale
  ═══════════════════════════════════════════════ */
  .hero { height: 100vh; overflow: hidden; }

  .site-header {
    grid-template-columns: auto 1fr auto;
    min-height: 52px;
  }

  .header-logo { padding: 0 14px; }
  .header-logo::after { display: none; }
  .header-center { display: none; }
  .header-nav-links { display: none; }
  .header-nav-cta { display: none; }
  .logo-mark { font-size: 1.5rem; }
  .header-menu-icon { padding: 0 14px; }

  .stage {
    justify-content: center;
    padding: 0;
  }

  .text-line--top { margin-bottom: -14vw; }
  .text-line--bot { margin-top:   -6vw; }

  .word-smash-ghost,
  .word-smash-solid  { font-size: 28vw; }
  .word-burger-outline,
  .word-burger-red   { font-size: 23vw; }

  .burger-wrap {
    width: 60vw; height: 60vw;
    max-width: 260px; max-height: 260px;
  }

  .tag        { display: none; }
  .side-label { display: none; }
  .accent-line { display: none; }

  .sticker {
    width: 68px; height: 68px;
    right: -3%;
  }
  .sticker-num { font-size: 1.65rem; }

  .bottom-bar {
    padding: 12px 16px;
    justify-content: flex-end;
  }
  .bottom-tagline, .bottom-info, .cta-sub { display: none; }

  .btn-main {
    padding: 12px 26px;
    min-height: 44px;
    font-size: 0.68rem;
  }

  /* ═══════════════════════════════════════════════
     SITE 2 — FILO CUCINA ITALIANA
     Image 42vh en haut, texte en bas, édito scrollable
  ═══════════════════════════════════════════════ */
  .filo-v2 .hero {
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 100vh;
  }

  .filo-v2 .hero-image {
    height: 42vh;
    flex-shrink: 0;
    order: 0;
  }

  .filo-v2 .hero-text {
    flex: 1;
    padding: 2rem 1.5rem 5.5rem;
    justify-content: center;
    order: 1;
  }

  .filo-v2 .hero-text::after { display: none; }

  .filo-v2 .hero-eyebrow {
    padding-left: 0;
    margin-bottom: 1rem;
  }

  .filo-v2 .hero-title {
    padding-left: 0;
    font-size: clamp(5rem, 22vw, 7.5rem);
  }

  .filo-v2 .hero-rule {
    margin-left: 0;
    margin-top: 1.8rem;
    margin-bottom: 1.5rem;
  }

  .filo-v2 .hero-tagline {
    padding-left: 0;
    max-width: none;
    font-size: 0.95rem;
  }

  .filo-v2 .hero-cta-row {
    padding-left: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-top: 1.8rem;
  }

  .filo-v2 .btn-reserve {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding: 0.85rem 1.8rem;
  }

  .filo-v2 .hero-band { display: none; }

  .filo-v2 .hero-fork-img {
    transform: rotate(-90deg) scale(1.15);
    transform-origin: center center;
    object-position: center center;
  }

  .filo-v2 .hero-caption {
    bottom: 1.2rem;
    left: 1.4rem;
  }

  .filo-v2 .section-editorial { padding: 3rem 0 5rem; }

  .filo-v2 .ed-grid {
    grid-template-columns: 1fr;
    padding: 0 1.5rem;
    gap: 2.5rem;
  }

  .filo-v2 .ed-left  { padding-right: 0; gap: 2rem; }
  .filo-v2 .ed-heading { font-size: 2rem; }

  .filo-v2 .ed-center {
    min-height: 220px;
    margin: 0 -1.5rem;
  }

  .filo-v2 .ed-right {
    padding-left: 0;
    border-left: none;
    border-top: 1px solid var(--olive-pale);
    padding-top: 2rem;
  }

  /* ═══════════════════════════════════════════════
     SITE 3 — ATELIER ROUX
     Image cover plein viewport, contenu ancré bas
  ═══════════════════════════════════════════════ */
  .ar {
    background-size: cover;
    background-position: center 25%;
    height: 100vh;
    justify-content: flex-start;
  }

  .ar::before {
    background: linear-gradient(
      to bottom,
      rgba(58, 48, 38, 0.18) 0%,
      rgba(58, 48, 38, 0.06) 28%,
      rgba(228, 214, 194, 0.68) 60%,
      rgba(228, 214, 194, 0.96) 100%
    );
  }

  .ar-navbar {
    padding: 0 1.4rem;
    height: 58px;
    background: rgba(58, 62, 55, 0.35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  .ar-menu { display: none; }

  .ar-cta-btn {
    font-size: 10px;
    padding: 8px 12px;
    min-height: 36px;
    display: flex;
    align-items: center;
    border-color: rgba(255,255,255,0.6);
  }

  .ar-hero-content {
    margin-top: 0;
    margin-bottom: 0;
    padding: 2rem 1.4rem calc(3rem + env(safe-area-inset-bottom, 0px));
    max-width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .ar h1 {
    font-size: clamp(1.9rem, 9vw, 2.8rem);
    margin-bottom: 0.9rem;
  }

  .ar-hero-content p {
    font-size: 0.92rem;
    margin-bottom: 1.6rem;
  }

  .ar-btn {
    padding: 14px 22px;
    font-size: 12px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  /* ═══════════════════════════════════════════════
     SITE 4 — MANOIR DE BEAUVAL
     Logo centré, boutons larges et faciles à taper
  ═══════════════════════════════════════════════ */
  .mn-nav {
    padding: 1.2rem 1.4rem;
    justify-content: center;
  }
  .mn-nav-links { display: none; }
  .mn-cta { display: none; }

  .mn-title { font-size: clamp(3rem, 14vw, 5rem); }

  .mn-subtitle {
    font-size: 0.88rem;
    margin-top: 1.2rem;
  }

  .mn-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.9rem;
    margin-top: 2.2rem;
    width: 80vw;
    max-width: 300px;
  }

  .mn-btn-primary,
  .mn-btn-ghost {
    padding: 1rem 1.5rem;
    text-align: center;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
  }

  .mn-scroll { bottom: 5.5rem; }
}

/* ── iPhone SE / Galaxy A-series ─────────────────────── */
@media (max-width: 375px) {
  .aq-title { font-size: 2.4rem; }
  .word-smash-ghost, .word-smash-solid { font-size: 31vw; }
  .word-burger-outline, .word-burger-red { font-size: 26vw; }
  .filo-v2 .hero-title { font-size: 21vw; }
  .mn-title { font-size: 13vw; }
  .ar h1 { font-size: 1.75rem; }
}
