:root {
  --white: #F8F5F0;
  --cream: #EDE8DF;
  --beige: #C9B99A;
  --gold: #B8933A;
  --gold-light: #D4AC5A;
  --dark: #0E0C09;
  --dark-2: #1A1713;
  --charcoal: #2C2820;
  --text-muted: #8A7E6E;
}

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

html { font-size: 10px; scroll-behavior: smooth; }

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

/* NOISE OVERLAY - désactivé sur la section menu (z-index plus bas que #menu) */
body::after {
  content: '';
  position: fixed;
  inset: -50%;
  width: 200%; height: 200%;
  background: 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='1'/%3E%3C/svg%3E") repeat;
  background-size: 200px;
  opacity: 0;
  pointer-events: none;
  z-index: 9997;
  animation: noiseShift 0.4s steps(3) infinite;
}
@keyframes noiseShift { 0%{transform:translate(0,0)} 33%{transform:translate(-2%,-1%)} 66%{transform:translate(1%,-2%)} 100%{transform:translate(-1%,1%)} }

/* PRELOADER */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.preloader-stack {
  position: relative;
  width: 90vw;
  max-width: 900px;
  height: 50vh;
  max-height: 420px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.preloader-stack .pl-slide,
.preloader-stack .pl-img {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: inset(100% 0 0 0);
}
.preloader-stack #pl-2,
.preloader-stack #pl-3 {
  opacity: 0;
}
.preloader-stack #pl-1 {
  opacity: 1;
}
.preloader-stack .pl-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(8rem, 22vw, 18rem);
  font-weight: 300;
  color: var(--dark);
  letter-spacing: -0.02em;
  line-height: 0.9;
  white-space: nowrap;
  transform: scale(1.15);
}
#pl-2 .pl-text { font-style: italic; font-weight: 400; color: var(--gold); }
#pl-3 .pl-text { font-size: clamp(6rem, 18vw, 14rem); letter-spacing: 0.12em; font-weight: 300; }
.preloader-count {
  position: fixed;
  bottom: 4rem;
  right: 4rem;
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  z-index: 1000;
}
.preloader-brand {
  position: fixed;
  bottom: 4rem;
  left: 4rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--dark);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  z-index: 1000;
  opacity: 0;
}
.preloader-line {
  position: fixed;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  z-index: 1000;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 8rem;
  padding: 0 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  mix-blend-mode: normal;
  overflow: visible;
}
.nav-toggle {
  display: none;
}
.nav-toggle-label {
  display: none;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  position: relative;
  z-index: 2;
}
nav::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #F8F6F3;
  pointer-events: none;
  z-index: 0;
}
.nav-logo {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-decoration: none;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 0.4rem;
  background: #F8F6F3;
  margin-left: -0.4rem;
}
.nav-logo img {
  height: 100%;
  max-height: 8rem;
  width: auto;
  display: block;
  object-fit: contain;
  vertical-align: middle;
}
.nav-links {
  display: flex;
  gap: 4rem;
  list-style: none;
  position: relative;
  z-index: 2;
}
.nav-links a {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: var(--dark);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: #0E0C09 !important;
  text-decoration: none;
  text-transform: uppercase;
  border: 1px solid #0E0C09;
  padding: 0.8rem 2.4rem;
  transition: all 0.3s;
  position: relative;
  z-index: 1;
}
.nav-cta:hover { background: transparent; color: #0E0C09; opacity: 0.85; }

/* HERO */
#hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: left center;
  transform-origin: center bottom;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(14,12,9,0.15) 0%,
    rgba(14,12,9,0.05) 30%,
    rgba(14,12,9,0.25) 65%,
    rgba(14,12,9,0.35) 78%,
    rgba(248,245,240,0.2) 88%,
    rgba(248,245,240,1) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 120rem;
  padding: 0 5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.hero-eyebrow {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 2vw, 2.4rem);
  font-weight: 400;
  letter-spacing: 0.45em;
  color: rgba(248, 245, 240, 0.95);
  text-transform: uppercase;
  margin-bottom: 3.5rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
  overflow: hidden;
  letter-spacing: 0.5em;
}
.hero-eyebrow span { display: inline-block; transform: translateY(100%); }
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(10rem, 20vw, 24rem);
  font-weight: 600;
  line-height: 0.85;
  letter-spacing: -0.03em;
  color: #FDFBF7;
  overflow: hidden;
  margin-bottom: 4rem;
  text-shadow: 0 4px 40px rgba(0,0,0,0.4);
}
.hero-title .line { overflow: hidden; display: block; }
.hero-title .line span { display: block; transform: translateY(100%); }
.hero-title em { font-style: italic; font-weight: 400; color: var(--gold-light); }
.hero-sub {
  font-family: 'Jost', sans-serif;
  font-size: clamp(1.6rem, 1.8vw, 2.2rem);
  font-weight: 400;
  letter-spacing: 0.35em;
  color: rgba(245, 233, 210, 0.95);
  text-transform: uppercase;
  text-shadow: 0 2px 16px rgba(0,0,0,0.6);
  overflow: hidden;
  max-width: 56rem;
  line-height: 1.5;
}
.hero-sub span { display: inline-block; transform: translateY(100%); }
.hero-scroll-hint {
  position: absolute;
  bottom: 8rem;
  right: 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.hero-scroll-hint .scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{transform:scaleY(1);opacity:1} 50%{transform:scaleY(0.5);opacity:0.3} }

/* SECTIONS GENERAL */
section { position: relative; }

/* MANIFESTO */
#manifesto {
  padding: 14rem 5rem;
  background: var(--white);
  color: var(--dark);
  overflow: hidden;
}
.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
}
.manifesto-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18rem;
  font-weight: 300;
  color: transparent;
  -webkit-text-stroke: 1px rgba(185,147,58,0.15);
  line-height: 1;
  position: absolute;
  left: -2rem;
  top: -4rem;
  pointer-events: none;
}
.manifesto-text-side { position: relative; }
.manifesto-tag {
  font-family: 'Jost', sans-serif;
  font-size: 1.25rem;
  font-weight: 300;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 3rem;
}
.manifesto-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(4rem, 6vw, 7rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 3rem;
}
.manifesto-heading em { font-style: italic; color: var(--beige); }
.manifesto-body {
  font-family: 'Jost', sans-serif;
  font-size: 1.85rem;
  font-weight: 200;
  line-height: 1.8;
  color: #6B5F4E;
  max-width: 50rem;
}
.manifesto-image-side {
  position: relative;
  height: 70vh;
}
.manifesto-img-frame {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.manifesto-img-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.1);
}
.manifesto-img-border {
  position: absolute;
  top: 3rem; right: -3rem;
  width: 100%; height: 100%;
  border: 1px solid rgba(185,147,58,0.25);
  pointer-events: none;
  z-index: -1;
}
.manifesto-stats {
  display: flex;
  gap: 5rem;
  margin-top: 5rem;
  padding-top: 4rem;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.stat-item {}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 1.2rem;
  font-weight: 200;
  letter-spacing: 0.2em;
  color: #6B5F4E;
  text-transform: uppercase;
  margin-top: 0.5rem;
}

/* PROCESS */
#process {
  padding: 12rem 0;
  background: var(--cream);
  color: var(--dark);
  overflow: hidden;
}
.process-header {
  padding: 0 5rem;
  margin-bottom: 8rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.process-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(4.5rem, 6.5vw, 7.5rem);
  font-weight: 300;
  line-height: 1;
}
.process-title em { font-style: italic; color: var(--beige); }
.process-desc {
  max-width: 35rem;
  font-size: 1.65rem;
  font-weight: 200;
  color: #6B5F4E;
  line-height: 1.7;
  letter-spacing: 0.05em;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(0,0,0,0.08);
}
.process-step {
  padding: 6rem 5rem;
  border-right: 1px solid rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
}
.process-step:last-child { border-right: none; }
.step-num {
  font-family: 'Cinzel', serif;
  font-size: 1.25rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 4rem;
}
.step-icon {
  font-size: 5rem;
  margin-bottom: 2rem;
  opacity: 0.6;
}
.step-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.8rem;
  font-weight: 300;
  margin-bottom: 2rem;
  line-height: 1.1;
}
.step-text {
  font-size: 1.65rem;
  font-weight: 200;
  color: #6B5F4E;
  line-height: 1.7;
}
.step-bg-num {
  position: absolute;
  bottom: -4rem; right: -2rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18rem;
  color: transparent;
  -webkit-text-stroke: 1px rgba(185,147,58,0.06);
  line-height: 1;
  pointer-events: none;
}

/* MENU SECTION */
#menu {
  position: relative;
  z-index: 10000;
  padding: 5rem 5rem 8rem;
  background: var(--white);
  color: var(--dark);
  overflow: visible;
  opacity: 1;
}
/* Force la visibilité du menu (GSAP peut laisser opacity: 0 si ScrollTrigger ne se déclenche pas) */
#menu .menu-header,
#menu .menu-tag,
#menu .menu-title,
#menu .menu-divider,
#menu .menu-section-label,
#menu .size-selector,
#menu .size-option,
#menu .size-bowl-icon,
#menu .size-name,
#menu .toppings-container,
#menu .toppings-label,
#menu .topping-pill,
#menu .extras-section,
#menu .extras-label,
#menu .extras-text,
#menu .extras-list,
#menu .menu-best-sellers,
#menu .menu-subtitle,
#menu .bestseller-card,
#menu .menu-create-bowl,
#menu .menu-create-note,
#menu .size-price,
#menu .smoothie-prices,
#menu .smoothie-price-row,
#menu .menu-section-title,
#menu .extras-item-name,
#menu .extras-item-price,
#menu .smoothie-label,
#menu .smoothie-amount,
#menu .hot-drinks-section,
#menu .hot-drinks-grid,
#menu .hot-drinks-col,
#menu .hot-drinks-heading,
#menu .hot-drinks-list,
#menu .toppings-panel,
#menu .hot-drinks-card,
#menu .menu-composer,
#menu .menu-composer__header,
#menu .menu-composer__eyebrow,
#menu .menu-composer__title,
#menu .menu-composer__lede,
#menu .menu-composer__lower,
#menu .menu-composer__toppings-wrap,
#menu .menu-composer__extras-aside,
#menu .toppings-unlimited,
#menu .toppings-intro,
#menu .extras-intro,
#menu .hot-drinks-lede,
#menu .hot-drinks-list--priced,
#menu .hot-drinks-item-name,
#menu .hot-drinks-item-price,
#menu .hot-drinks-item-detail,
#menu .hot-drinks-subheading,
#menu .extras-card,
#menu .bestseller-card__list {
  opacity: 1 !important;
}
.menu-header {
  text-align: center;
  margin-bottom: 4rem;
}
.menu-tag {
  font-family: 'Jost', sans-serif;
  font-size: 1.25rem;
  font-weight: 300;
  letter-spacing: 0.5em;
  color: #8B6914;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.menu-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(5.5rem, 8.5vw, 9.5rem);
  font-weight: 300;
  line-height: 0.95;
  color: var(--dark);
}
.menu-title em { font-style: italic; color: var(--beige); }
.menu-divider {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 2rem auto;
}

/* Blocs menu : respiration entre sections */
#menu .menu-best-sellers {
  margin-bottom: 6.75rem;
}
#menu .menu-composer,
#menu .hot-drinks-section {
  margin-bottom: 4.5rem;
}

.menu-best-sellers {
  max-width: 96rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.menu-best-sellers .menu-section-label {
  display: block;
  margin-bottom: 0.75rem;
  line-height: 1.6;
  text-align: center;
}
.menu-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.2rem, 5.5vw, 5.2rem);
  font-weight: 300;
  color: var(--dark);
  margin: 0 auto 2.5rem;
  padding-bottom: 1.75rem;
  max-width: 52rem;
  border-bottom: 1px solid rgba(184, 147, 58, 0.14);
  line-height: 1.05;
}
.bestseller-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem 2.5rem;
  text-align: left;
  margin-top: 0.5rem;
}
.bestseller-card {
  position: relative;
  border: 1px solid rgba(212, 196, 168, 0.85);
  padding: 2.4rem 2.6rem 2.5rem 2.8rem;
  background:
    linear-gradient(145deg, rgba(255, 252, 248, 0.95) 0%, rgba(248, 245, 240, 0.88) 100%);
  border-radius: 14px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.85) inset,
    0 12px 40px rgba(14, 12, 9, 0.055);
  transition: box-shadow 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
  overflow: hidden;
}
.bestseller-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  border-radius: 14px 0 0 14px;
  opacity: 0.85;
}
.bestseller-card:hover {
  border-color: rgba(184, 147, 58, 0.45);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 16px 48px rgba(14, 12, 9, 0.08);
  transform: translateY(-2px);
}
.bestseller-name {
  font-family: 'Cinzel', serif;
  font-size: 1.05rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(184, 147, 58, 0.2);
}
.bestseller-card__list {
  max-width: 100%;
  width: 100%;
  margin: 0;
}
.bestseller-card__list li {
  padding-left: 0;
}
.bestseller-card__list li:first-child {
  padding-top: 0.35rem;
}
.bestseller-card__list li:last-child {
  border-bottom: none;
  padding-bottom: 0.5rem;
}
.bestseller-card__list .extras-item-name {
  flex: 1 1 auto;
  padding-right: 0;
}

/* Bloc composeur : tailles + toppings / extras */
.menu-composer {
  max-width: 112rem;
  margin-left: auto;
  margin-right: auto;
  padding: 0 0.5rem;
}
.menu-composer__header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 3rem;
}
.menu-composer__eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 0.88rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.menu-composer__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  font-weight: 300;
  color: var(--dark);
  line-height: 1.12;
  margin-bottom: 1.1rem;
}
.menu-composer__title em {
  font-style: italic;
  color: var(--beige);
}
.menu-composer__lede {
  font-family: 'Jost', sans-serif;
  font-size: 1.38rem;
  font-weight: 300;
  line-height: 1.65;
  color: #6B5F4E;
  letter-spacing: 0.04em;
}
.menu-composer__lower {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  gap: 2.5rem 3.5rem;
  align-items: start;
  margin-top: 2.5rem;
}
.menu-composer__extras-aside .extras-section {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding: 0;
  text-align: left;
}
.menu-composer__extras-aside .extras-label {
  margin-bottom: 0.5rem;
}
.menu-create-bowl__label {
  font-size: 1.05rem !important;
  letter-spacing: 0.36em !important;
}
.toppings-label--left {
  text-align: left !important;
  margin-bottom: 0.45rem !important;
}
.toppings-intro {
  font-family: 'Jost', sans-serif;
  font-size: 1.22rem;
  font-weight: 300;
  color: #6B5F4E;
  line-height: 1.5;
  margin-bottom: 1.35rem;
  max-width: 38rem;
}
.extras-intro {
  font-family: 'Jost', sans-serif;
  font-size: 1.15rem;
  font-weight: 300;
  color: #6B5F4E;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

.menu-create-bowl {
  max-width: 76rem;
  margin-left: auto;
  margin-right: auto;
  padding: 3.2rem 2.4rem 3.4rem;
  text-align: center;
  background: linear-gradient(165deg, rgba(237, 232, 223, 0.55) 0%, rgba(248, 245, 240, 0.92) 55%, rgba(255, 255, 255, 0.55) 100%);
  border: 1px solid rgba(212, 196, 168, 0.55);
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(14, 12, 9, 0.05);
}
.menu-create-bowl .toppings-label {
  margin-bottom: 0.35rem;
  line-height: 1.45;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.15rem;
  letter-spacing: 0.32em;
}
.menu-create-bowl .toppings-label::after {
  content: '';
  display: block;
  width: 48px;
  height: 1px;
  margin: 1.35rem auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.6;
}
.menu-create-note {
  margin-top: 2.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: #5C5346;
  text-transform: uppercase;
}
.menu-create-note::before {
  content: '✦';
  font-size: 0.65em;
  color: var(--gold);
  opacity: 0.9;
}
.size-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.85rem, 2.5vw, 2.2rem);
  color: var(--gold);
  margin-top: 0.4rem;
  letter-spacing: 0.06em;
  font-weight: 500;
  line-height: 1.15;
}

.toppings-container {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}
.toppings-container .toppings-label {
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.toppings-panel {
  padding: 1.85rem 1.65rem 2.1rem;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 245, 240, 0.78) 100%);
  border: 1px solid rgba(212, 196, 168, 0.5);
  border-radius: 18px;
  box-shadow:
    0 10px 36px rgba(14, 12, 9, 0.045),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
.toppings-panel .extras-list {
  max-width: 100%;
  margin: 0;
}
.toppings-panel .extras-list li {
  padding-left: 0.15rem;
}
.toppings-panel .extras-list li:first-child {
  padding-top: 0.35rem;
}
.toppings-panel .extras-list li:last-child {
  padding-bottom: 0.35rem;
}
.toppings-unlimited .extras-item-name {
  flex: 1 1 auto;
  padding-right: 0;
}

.extras-section {
  max-width: 46rem;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1rem;
  text-align: center;
}
.extras-section .extras-label {
  margin-bottom: 1.5rem;
  font-size: 1.15rem;
  letter-spacing: 0.35em;
}
.menu-composer__extras-aside .extras-card {
  padding: 1.15rem 1.5rem 1.25rem;
}
.extras-card {
  padding: 0.5rem 2rem 0.75rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 245, 240, 0.7) 100%);
  border: 1px solid rgba(212, 196, 168, 0.5);
  border-radius: 14px;
  box-shadow: 0 8px 28px rgba(14, 12, 9, 0.04);
}

.smoothie-prices {
  margin-top: 2.75rem;
  max-width: 100%;
  width: 100%;
}
.smoothie-price-row {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: baseline;
  gap: 2rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
}
.smoothie-label {
  flex: 1 1 auto;
  min-width: 0;
  padding-right: 1.5rem;
}
.smoothie-amount {
  flex: 0 0 auto;
  color: var(--gold);
  font-weight: 400;
  white-space: nowrap;
  text-align: right;
}
.smoothies-content > div:first-child {
  min-width: 0;
}
.smoothie-visual-wrap {
  height: 50vh;
  min-height: 28rem;
  overflow: hidden;
  position: relative;
  border-radius: 6px;
}
.smoothie-visual-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.menu-size-wrap {
  text-align: center;
  margin-bottom: 1.5rem;
  clear: both;
}
.extras-section {
  clear: both;
}

/* Bowl builder */
.menu-section-label {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  letter-spacing: 0.4em;
  color: #8B6914;
  margin-bottom: 1rem;
}
.menu-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.5rem;
  font-weight: 300;
  color: var(--dark);
  margin-bottom: 1.5rem;
}
.menu-section-subtitle {
  font-size: 1.2rem;
  font-weight: 200;
  color: #6B5F4E;
  letter-spacing: 0.1em;
}

/* Section Smoothies — polices plus grandes */
.smoothies-section .menu-section-label {
  font-size: 1.25rem;
}
.smoothies-section .menu-section-title {
  font-size: clamp(3.5rem, 6vw, 6.5rem);
  line-height: 0.95;
  margin-bottom: 1.25rem;
}
.smoothies-section .menu-section-subtitle {
  font-size: 1.45rem;
  line-height: 1.65;
  letter-spacing: 0.06em;
  max-width: 34rem;
}

/* SIZE SELECTOR — bande 3 colonnes + silhouette bol açaï */
.size-selector {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 62rem;
  margin: 2.35rem auto 0;
  gap: 0;
  background: linear-gradient(180deg, rgba(255, 252, 248, 0.92) 0%, rgba(248, 245, 240, 0.88) 100%);
  border: 1px solid rgba(212, 196, 168, 0.55);
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    0 10px 36px rgba(14, 12, 9, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}
.size-option {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  cursor: default;
  min-width: 0;
  margin: 0;
  padding: 2.4rem 1.25rem 2.6rem;
  text-align: center;
  border: none;
  border-radius: 0;
  border-right: 1px solid rgba(212, 196, 168, 0.42);
  background: transparent;
  box-shadow: none;
  transition: background 0.35s ease;
}
.size-option:last-child {
  border-right: none;
}
.size-option:hover {
  background: rgba(255, 255, 255, 0.72);
  transform: none;
  box-shadow: none;
  border-color: transparent;
}
.size-option--md {
  --bowl-w: 62px;
  --bowl-h: 36px;
  background: rgba(255, 255, 255, 0.38);
}
.size-option--md::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 5%, var(--gold) 50%, transparent 95%);
  opacity: 0.85;
  pointer-events: none;
}
.size-bowl-icon {
  position: relative;
  flex-shrink: 0;
  width: var(--bowl-w, 56px);
  height: var(--bowl-h, 34px);
  margin-bottom: 0.5rem;
  border-radius: 50% 50% 48% 48% / 72% 72% 28% 28%;
  background:
    radial-gradient(ellipse 88% 58% at 50% 16%, rgba(255, 255, 255, 0.38), transparent 58%),
    radial-gradient(ellipse 70% 45% at 50% 100%, rgba(0, 0, 0, 0.12), transparent 65%),
    linear-gradient(168deg, #4a3260 0%, #2e1f3d 38%, #5c3d72 72%, #3d2848 100%);
  box-shadow:
    inset 0 -8px 18px rgba(0, 0, 0, 0.2),
    inset 0 4px 12px rgba(255, 255, 255, 0.14),
    0 6px 16px rgba(14, 12, 9, 0.12);
  border: 1px solid rgba(184, 147, 58, 0.42);
}
.size-bowl-icon::after {
  content: '';
  position: absolute;
  left: 6%;
  right: 6%;
  top: 10%;
  height: 22%;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), transparent);
  pointer-events: none;
}
.size-option--sm {
  --bowl-w: 48px;
  --bowl-h: 28px;
}
.size-option--lg {
  --bowl-w: 76px;
  --bowl-h: 44px;
}
.size-name {
  font-family: 'Cinzel', serif;
  font-size: 0.92rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #3a342c;
  margin-top: 0.15rem;
}

/* TOPPINGS */
.toppings-container {
  clear: both;
}
.toppings-label {
  font-family: 'Cinzel', serif;
  font-size: 1.25rem;
  letter-spacing: 0.4em;
  color: #8B6914;
  margin-bottom: 1rem;
  text-align: center;
}
.toppings-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  align-items: start;
  min-width: 0;
}
.topping-pill {
  border: 1px solid #D4C4A8;
  padding: 1.4rem 2.2rem;
  font-size: 1.45rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: #2C2820;
  opacity: 1;
  transition: all 0.3s;
  text-align: center;
  position: relative;
  overflow: hidden;
  cursor: default;
  min-width: 0;
}
.topping-pill::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: -1;
}
.topping-pill:hover { color: white; border-color: var(--gold); }
.topping-pill:hover::before { transform: scaleX(1); }

/* SMOOTHIES */
.smoothies-section {
  margin-top: 0;
  padding-top: 4rem;
  border-top: 1px solid #DDD5C5;
}
.smoothies-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
}

/* Café & thé (après extras, avant smoothies) */
.hot-drinks-section {
  margin-top: 0;
  padding-top: 3.75rem;
  border-top: 1px solid rgba(221, 213, 197, 0.85);
  text-align: center;
  max-width: 76rem;
  margin-left: auto;
  margin-right: auto;
}
.hot-drinks-section .menu-section-label {
  margin-bottom: 0.65rem;
}
.hot-drinks-section .toppings-label {
  margin-bottom: 0.65rem;
}
.hot-drinks-lede {
  font-family: 'Jost', sans-serif;
  font-size: 1.22rem;
  font-weight: 300;
  color: #6B5F4E;
  line-height: 1.55;
  max-width: 36rem;
  margin: 0 auto 2.25rem;
  text-align: center;
  letter-spacing: 0.03em;
}
.hot-drinks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 2.5rem;
  text-align: left;
}
.hot-drinks-card {
  height: 100%;
  padding: 2rem 2.1rem 2.15rem;
  background: linear-gradient(160deg, rgba(255, 252, 248, 0.98) 0%, rgba(248, 245, 240, 0.75) 100%);
  border: 1px solid rgba(212, 196, 168, 0.5);
  border-radius: 14px;
  box-shadow: 0 8px 28px rgba(14, 12, 9, 0.045);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.hot-drinks-card:hover {
  border-color: rgba(184, 147, 58, 0.35);
  box-shadow: 0 12px 36px rgba(14, 12, 9, 0.07);
}
.hot-drinks-heading {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1.35rem;
  padding-bottom: 0.95rem;
  border-bottom: 1px solid rgba(184, 147, 58, 0.22);
}
.hot-drinks-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hot-drinks-list li {
  font-family: 'Jost', sans-serif;
  font-size: 1.28rem;
  font-weight: 300;
  color: var(--charcoal);
  padding: 0.65rem 0 0.65rem 1.15rem;
  border: none;
  border-radius: 0;
  background: transparent;
  line-height: 1.4;
  position: relative;
  border-bottom: 1px solid rgba(14, 12, 9, 0.06);
}
.hot-drinks-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.hot-drinks-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 4px;
  margin-top: -2px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.5;
}
.hot-drinks-list--priced li {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding-left: 0;
}
.hot-drinks-list--priced li::before {
  display: none;
}
.hot-drinks-item-name {
  flex: 1 1 auto;
  min-width: 0;
  padding-right: 1rem;
  text-align: left;
}
.hot-drinks-item-detail {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.86em;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: #6B5F4E;
  line-height: 1.35;
}
.hot-drinks-item-price {
  flex: 0 0 auto;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--gold);
  white-space: nowrap;
  text-align: right;
  letter-spacing: 0.04em;
}
.hot-drinks-list--supp {
  margin-top: 0;
}
.hot-drinks-list--supp li {
  border-bottom-color: rgba(14, 12, 9, 0.05);
}
.hot-drinks-subheading {
  font-family: 'Jost', sans-serif;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 1.25rem 0 0.55rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(184, 147, 58, 0.2);
}
.hot-drinks-card--tea {
  background:
    linear-gradient(165deg, rgba(74, 50, 96, 0.07) 0%, rgba(255, 252, 248, 0.96) 38%, rgba(248, 245, 240, 0.85) 100%);
  border-color: rgba(90, 62, 118, 0.22);
}
.hot-drinks-card--tea .hot-drinks-heading {
  color: #6b4f7a;
  border-bottom-color: rgba(90, 62, 118, 0.2);
}
.hot-drinks-card--tea .hot-drinks-item-price {
  color: #7d5a8f;
}
.hot-drinks-card--tea .hot-drinks-list--priced li {
  border-bottom-color: rgba(90, 62, 118, 0.08);
}

/* EXTRAS (titres — voir .extras-section plus haut) */
.extras-label {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  margin-bottom: 1rem;
}
.extras-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-style: italic;
  color: var(--text-muted);
}
.extras-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  max-width: 36rem;
  text-align: left;
}
.extras-card .extras-list {
  max-width: 100%;
}
.extras-list li {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: baseline;
  gap: 2rem;
  padding: 1rem 0.15rem 1rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--dark);
  text-align: left;
}
.extras-card .extras-list li:first-child {
  padding-top: 0.85rem;
}
.extras-card .extras-list li:last-child {
  border-bottom: none;
  padding-bottom: 0.85rem;
}
.extras-item-name {
  flex: 1 1 auto;
  min-width: 0;
  padding-right: 1.5rem;
}
.extras-item-price {
  flex: 0 0 auto;
  color: var(--gold);
  font-weight: 400;
  white-space: nowrap;
  text-align: right;
}

/* PARALLAX MARQUEE */
.marquee-section {
  padding: 8rem 0;
  background: var(--white);
  overflow: hidden;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.marquee-track {
  display: flex;
  gap: 4rem;
  white-space: nowrap;
  will-change: transform;
}
.marquee-track-reverse {
  display: flex;
  gap: 4rem;
  white-space: nowrap;
  will-change: transform;
  margin-top: 2rem;
}
.marquee-item {
  font-family: 'Cormorant Garamond', serif;
  font-size: 7rem;
  font-weight: 300;
  color: transparent;
  -webkit-text-stroke: 1px rgba(184,147,58,0.35);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
  flex-shrink: 0;
}
.marquee-item.filled {
  color: rgba(184,147,58,0.12);
  -webkit-text-stroke: none;
}
.marquee-sep {
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.4;
  align-self: center;
  flex-shrink: 0;
}

/* PHILOSOPHY */
#philosophy {
  padding: 14rem 5rem;
  background: var(--cream);
  color: var(--dark);
  overflow: hidden;
}
.philosophy-inner {
  max-width: 90rem;
  margin: 0 auto;
  text-align: center;
}
.philosophy-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 5.5vw, 6.5rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  color: var(--dark);
  position: relative;
}
.philosophy-quote::before,
.philosophy-quote::after {
  content: '"';
  font-size: 12rem;
  color: var(--gold);
  opacity: 0.15;
  position: absolute;
  font-style: normal;
  line-height: 1;
}
.philosophy-quote::before { top: -4rem; left: -2rem; }
.philosophy-quote::after { content: '"'; bottom: -8rem; right: -2rem; }
.philosophy-author {
  margin-top: 5rem;
  font-family: 'Cinzel', serif;
  font-size: 1.25rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
}

/* CONTACT/FOOTER */
#contact {
  padding: 14rem 5rem 4rem;
  background: var(--white);
  color: var(--dark);
  overflow: hidden;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem 6rem;
  align-items: start;
  max-width: 110rem;
  margin: 0 auto;
}
.contact-left {
  min-width: 0;
}
.contact-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(4rem, 5.5vw, 6.5rem);
  font-weight: 300;
  line-height: 0.95;
  margin-bottom: 3.5rem;
}
.contact-heading em { font-style: italic; color: var(--gold); }
.contact-info-block {
  margin-bottom: 2.5rem;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
.contact-info-label {
  font-size: 0.9rem;
  letter-spacing: 0.4em;
  color: #6B5F4E;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.contact-info-label--instagram {
  text-transform: none;
  letter-spacing: 0;
  line-height: 1;
  color: #6B5F4E;
}
.contact-info-label--instagram .social-instagram__icon {
  width: 1.85rem;
  height: 1.85rem;
  display: block;
}
.contact-info-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--dark);
  line-height: 1.4;
}
.contact-info-value a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(184, 147, 58, 0.35);
  transition: color 0.25s, border-color 0.25s;
}
.contact-info-value a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.contact-hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact-hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 2rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--dark);
}
.contact-hours-list li:last-child {
  border-bottom: none;
}
.contact-hours-days {
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 0.02em;
}
.contact-hours-time {
  color: var(--charcoal);
  letter-spacing: 0.05em;
}
.contact-map-col {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-width: 0;
}
.contact-map-wrap {
  width: 100%;
  max-width: none;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 6px 28px rgba(0,0,0,0.08);
  position: relative;
}
.contact-map {
  display: block;
  width: 100%;
  height: 32rem;
  border: 0;
}
.contact-hours-below-map {
  margin-top: 2.5rem;
}
.contact-hours-below-map .contact-info-label {
  margin-bottom: 1rem;
}
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .contact-map-col {
    order: 2;
  }
  .contact-map {
    height: 24rem;
  }
}

/* ========== RESPONSIVE MOBILE (tablette & téléphone) ========== */
@media (max-width: 768px) {
  /* NAV — menu hamburger */
  nav {
    padding: 0 2rem;
    height: 7rem;
  }
  .nav-logo img {
    max-height: 5rem;
  }
  .nav-toggle:checked ~ .nav-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .nav-toggle-label {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    z-index: 101;
    position: relative;
  }
  .nav-toggle-label span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--dark);
    transition: transform 0.3s, opacity 0.3s;
  }
  .nav-toggle:checked ~ .nav-toggle-label span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .nav-toggle:checked ~ .nav-toggle-label span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle:checked ~ .nav-toggle-label span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .nav-menu {
    position: fixed;
    top: 7rem;
    left: 0;
    right: 0;
    background: #F8F6F3;
    flex-direction: column;
    padding: 4rem 2.5rem 5rem;
    gap: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
  }
  .nav-links {
    flex-direction: column;
    gap: 1.5rem;
    align-items: stretch;
    width: 100%;
  }
  .nav-links a {
    font-size: 1.15rem;
    padding: 1.5rem 1.5rem;
    text-align: center;
    display: block;
  }
  .nav-cta {
    width: 100%;
    text-align: center;
    padding: 1.5rem 2rem;
    margin-top: 1rem;
  }

  /* HERO — mobile : légèrement vers la droite sans coller au bord (ajuster le % si besoin) */
  .hero-bg img {
    object-position: 48% center;
  }
  .hero-content {
    padding: 0 2rem;
  }
  .hero-title {
    font-size: clamp(5rem, 18vw, 12rem);
  }
  .hero-eyebrow {
    font-size: 1.2rem;
    letter-spacing: 0.3em;
    margin-bottom: 2rem;
  }
  .hero-sub {
    font-size: 1.35rem;
    letter-spacing: 0.2em;
  }
  .hero-scroll-hint {
    bottom: 4rem;
    right: 2rem;
    font-size: 0.8rem;
  }
  .hero-scroll-hint .scroll-line {
    height: 40px;
  }

  /* MANIFESTO */
  #manifesto {
    padding: 8rem 2rem;
  }
  .manifesto-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .manifesto-number {
    font-size: 10rem;
    left: 50%;
    transform: translateX(-50%);
    top: -2rem;
  }
  .manifesto-text-side {
    order: 1;
  }
  .manifesto-image-side {
    order: 2;
    height: 50vh;
    min-height: 280px;
  }
  .manifesto-img-border {
    right: 0;
    top: 1.5rem;
  }
  .manifesto-heading {
    font-size: clamp(2.8rem, 8vw, 4.5rem);
  }
  .manifesto-tag {
    font-size: 1.1rem;
    letter-spacing: 0.3em;
  }
  .manifesto-body {
    font-size: 1.5rem;
  }
  .manifesto-stats {
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-top: 3rem;
    padding-top: 3rem;
    justify-content: center;
  }
  .stat-num {
    font-size: 3.5rem;
  }
  .stat-label {
    font-size: 1rem;
  }

  /* PROCESS */
  #process {
    padding: 8rem 0;
  }
  .process-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 2rem;
    margin-bottom: 4rem;
  }
  .process-title {
    font-size: clamp(3rem, 10vw, 5rem);
  }
  .process-desc {
    max-width: 100%;
    font-size: 1.4rem;
    padding: 0 1rem;
  }
  .process-steps {
    grid-template-columns: 1fr;
    border-top: none;
  }
  .process-step {
    padding: 4rem 2rem;
    border-right: none;
    border-bottom: 1px solid rgba(0,0,0,0.08);
  }
  .process-step:last-child {
    border-bottom: none;
  }
  .step-name {
    font-size: 2.8rem;
  }
  .step-text {
    font-size: 1.4rem;
  }
  .step-icon {
    font-size: 4rem;
  }
  .step-bg-num {
    font-size: 12rem;
  }

  /* GALLERY — mobile : galerie en haut, bloc texte bien visible en dessous */
  .gallery-section {
    grid-template-columns: 1fr;
    height: auto;
    min-height: auto;
    padding: 0;
    overflow: visible;
    background: #E5DED4;
  }
  .gallery-main {
    min-height: 50vh;
    order: 1;
    background: #D9D0C4;
  }
  .gallery-info {
    order: 2;
    padding: 3.5rem 2rem 4rem;
    text-align: center;
    max-width: 100%;
    background: #E5DED4;
    border-right: none;
    border-top: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 -4px 24px rgba(0,0,0,0.06);
  }
  .gallery-tag {
    font-size: 1.15rem;
    letter-spacing: 0.35em;
    margin-bottom: 1.5rem;
    color: var(--gold);
  }
  .gallery-title {
    font-size: clamp(2.8rem, 9vw, 4.2rem);
    margin-bottom: 2rem;
    color: var(--dark);
  }
  .gallery-desc {
    font-size: 1.55rem;
    line-height: 1.75;
    max-width: 100%;
    margin: 0 auto 2rem;
    color: #5c5346;
  }
  .gallery-hint {
    font-size: 1.1rem;
    margin-top: 1.5rem;
    color: rgba(44, 40, 32, 0.75);
  }

  /* MARQUEE */
  .marquee-item {
    font-size: 4rem;
  }
  .marquee-sep {
    font-size: 2.5rem;
  }
  .marquee-section {
    padding: 4rem 0;
  }

  /* MENU */
  #menu {
    padding: 3rem 2rem 5rem;
  }
  #menu .menu-best-sellers {
    margin-bottom: 5.25rem;
  }
  .menu-header {
    margin-bottom: 3rem;
  }
  .menu-tag {
    font-size: 1.1rem;
    letter-spacing: 0.35em;
  }
  .menu-title {
    font-size: clamp(3.5rem, 12vw, 6rem);
  }
  .toppings-container {
    margin: 1rem 0;
  }
  .toppings-label {
    font-size: 1.1rem;
    letter-spacing: 0.3em;
    padding: 0 0.5rem;
  }
  .toppings-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  .menu-composer__lower {
    grid-template-columns: 1fr;
    gap: 2.25rem;
    margin-top: 2rem;
  }
  .menu-composer__header {
    margin-bottom: 2.25rem;
  }
  .menu-composer__lede {
    font-size: 1.22rem;
  }
  .toppings-label--left {
    text-align: center !important;
  }
  .toppings-intro {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .menu-composer__extras-aside .extras-section {
    text-align: center;
  }
  .menu-composer__extras-aside .extras-intro {
    margin-left: auto;
    margin-right: auto;
    max-width: 22rem;
  }
  .bestseller-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .bestseller-card {
    padding: 1.6rem 1.5rem;
  }
  .bestseller-card__list li {
    font-size: 1.45rem;
  }
  .menu-create-bowl {
    padding: 2.5rem 1.25rem 2.75rem;
  }
  .toppings-panel {
    padding: 1.5rem 1.1rem 1.75rem;
  }
  .topping-pill {
    font-size: 1.15rem;
    padding: 1rem 1.2rem;
  }
  .size-selector {
    grid-template-columns: 1fr;
    max-width: 22rem;
    margin-top: 2rem;
    border-radius: 14px;
  }
  .size-option {
    border-right: none;
    border-bottom: 1px solid rgba(212, 196, 168, 0.42);
    padding: 2rem 1.5rem 2.15rem;
  }
  .size-option:last-child {
    border-bottom: none;
  }
  .size-option--md::before {
    left: 0;
    right: 0;
    top: 0;
  }
  .size-name {
    font-size: 0.86rem;
    letter-spacing: 0.22em;
  }
  .size-price {
    font-size: 1.75rem;
  }

  /* SMOOTHIES */
  .smoothies-section {
    margin-top: 0;
    padding-top: 3rem;
  }
  .smoothies-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .smoothies-section .menu-section-title {
    font-size: clamp(3rem, 10vw, 5rem);
  }
  .smoothies-section .menu-section-subtitle {
    font-size: 1.5rem;
  }
  .smoothies-section .menu-section-label {
    font-size: 1.1rem;
  }
  .smoothies-content > div:last-child {
    min-height: 40vh;
    height: auto;
  }
  .hot-drinks-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hot-drinks-card {
    padding: 1.5rem 1.35rem 1.6rem;
  }
  .hot-drinks-list li {
    font-size: 1.15rem;
    padding: 0.55rem 0 0.55rem 1rem;
  }
  .hot-drinks-list--priced li {
    padding-left: 0;
  }
  .hot-drinks-item-price {
    font-size: 1.05rem;
  }

  /* PHILOSOPHY */
  #philosophy {
    padding: 8rem 2rem;
  }
  .philosophy-quote {
    font-size: clamp(2.4rem, 7vw, 4rem);
  }
  .philosophy-quote::before,
  .philosophy-quote::after {
    font-size: 6rem;
  }
  .philosophy-quote::before {
    top: -2rem;
    left: 0;
  }
  .philosophy-quote::after {
    bottom: -4rem;
    right: 0;
  }
  .philosophy-author {
    font-size: 1rem;
    letter-spacing: 0.3em;
    margin-top: 3rem;
  }

  /* CONTACT */
  #contact {
    padding: 8rem 2rem 3rem;
  }
  .contact-heading {
    font-size: clamp(2.8rem, 8vw, 4.5rem);
  }
  .contact-info-value {
    font-size: 1.5rem;
  }
  .contact-map {
    height: 20rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  .footer-copy {
    font-size: 1rem;
  }
  .social-row {
    gap: 2rem;
    justify-content: center;
  }
}

/* Très petits écrans */
@media (max-width: 480px) {
  nav {
    padding: 0 1.5rem;
  }
  .hero-title {
    font-size: clamp(4rem, 16vw, 6rem);
  }
  #manifesto,
  #process,
  #philosophy,
  #contact {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  #menu {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .toppings-grid {
    grid-template-columns: 1fr;
  }
  .topping-pill {
    font-size: 1.05rem;
    padding: 0.9rem 1rem;
  }
  .manifesto-stats {
    gap: 1.5rem;
  }
  .process-step {
    padding: 3rem 1.5rem;
  }
  .marquee-item {
    font-size: 3rem;
  }
  .marquee-sep {
    font-size: 2rem;
  }
}
.opening-table {
  width: 100%;
  border-collapse: collapse;
}
.opening-table tr {
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.opening-table td {
  padding: 1.8rem 0;
  font-size: 1.3rem;
  font-weight: 200;
  letter-spacing: 0.05em;
  color: var(--dark);
}
.opening-table td:last-child {
  text-align: right;
  color: var(--charcoal);
}
.footer-bottom {
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(0,0,0,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo-text {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  letter-spacing: 0.3em;
  color: var(--gold);
}
.footer-copy {
  font-size: 1.1rem;
  font-weight: 200;
  color: #6B5F4E;
  letter-spacing: 0.1em;
}
.social-row {
  display: flex;
  gap: 3rem;
}
.social-row a {
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: #6B5F4E;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s;
}
.social-row a:hover { color: var(--gold); }
.social-instagram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: none;
  letter-spacing: 0;
  padding: 0.35rem;
  line-height: 0;
  border-radius: 10px;
  transition: color 0.25s ease, transform 0.25s ease;
}
.social-instagram:hover {
  transform: scale(1.06);
}
.social-instagram__icon {
  width: 1.85rem;
  height: 1.85rem;
  display: block;
}

/* 3D REVEAL */
.reveal-3d {
  perspective: 1000px;
}
.reveal-3d-inner {
  transform: rotateX(20deg) translateY(60px);
  opacity: 0;
  transform-origin: top center;
}

/* HORIZONTAL SCROLL SECTION */
#horizontal-scroll {
  overflow: hidden;
  height: 100vh;
  position: sticky;
  top: 0;
}
.h-scroll-container {
  display: flex;
  height: 100%;
  width: fit-content;
}
.h-scroll-panel {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.h-scroll-panel:nth-child(1) { background: var(--dark); }
.h-scroll-panel:nth-child(2) { background: var(--dark-2); }
.h-scroll-panel:nth-child(3) { background: var(--charcoal); }

.panel-content {
  text-align: center;
  z-index: 2;
  padding: 4rem;
}
.panel-num {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  letter-spacing: 0.5em;
  color: var(--gold);
  margin-bottom: 2rem;
}
.panel-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 7rem;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 2rem;
}
.panel-title em { font-style: italic; color: var(--beige); }
.panel-body {
  font-size: 1.4rem;
  font-weight: 200;
  color: var(--text-muted);
  max-width: 50rem;
  margin: 0 auto;
  line-height: 1.8;
}

/* SCROLL INDICATOR */
.scroll-indicator {
  position: fixed;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 80;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  opacity: 0;
}
.scroll-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transition: all 0.4s;
}
.scroll-dot.active { background: var(--gold); transform: scale(1.5); }

/* UTILITY */
.clip-reveal { clip-path: inset(0 0 100% 0); }
.gold-text { color: var(--gold); }
.overflow-hidden { overflow: hidden; }

/* GALERIE FLOTTANTE (GSAP) — texte à gauche, galerie à droite */
.gallery-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.38fr) 1fr;
  height: 88rem;
  max-height: 880px;
  background: #E0D9CE;
  overflow: hidden;
}
/* Bloc texte à gauche, compact */
.gallery-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 3rem 3rem 4rem;
  position: relative;
  z-index: 10;
  background: #E5DED4;
  border-right: 1px solid rgba(0,0,0,0.06);
  min-width: 0;
  text-align: left;
}
.gallery-tag {
  font-family: 'Jost', sans-serif;
  font-size: 1.25rem;
  font-weight: 300;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.gallery-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.8rem, 5vw, 6rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--dark);
  margin-bottom: 1.5rem;
}
.gallery-title em {
  font-style: italic;
  color: var(--beige);
}
.gallery-desc {
  font-family: 'Jost', sans-serif;
  font-size: 1.65rem;
  font-weight: 200;
  line-height: 1.55;
  color: #5c5346;
  max-width: 34rem;
  margin-bottom: 0.5rem;
}
.gallery-hint {
  margin-top: 1.25rem;
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  color: rgba(44, 40, 32, 0.7);
  text-transform: uppercase;
}
.gallery-main {
  position: relative;
  width: 100%;
  height: 100%;
  min-width: 0;
  overflow: hidden;
}
.gallery-mainBoxes {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.gallery-mainClose {
  position: absolute;
  width: 60px;
  height: 60px;
  pointer-events: none;
  transform: translate(-50%, -50%);
}
.gallery-mainClose svg {
  display: block;
}
.photoBox {
  position: absolute;
  will-change: transform;
}