/* Howlina Tattoo — « l'apothicaire des sous-bois »
   Nuit de forêt, traits du logo dessiné à la main, verre liquide façon iOS.
   Pensé d'abord pour le téléphone, élargi ensuite pour l'ordinateur. */

:root {
  --night: #050907;
  --moss: #12201a;
  --sage: #a8c6b1;
  --fern: #6f9a80;
  --bone: #efe9dc;
  --bone-2: #d8d1c1;
  --mist: #a2ada5;
  --faint: #748078;
  --line: rgba(239, 233, 220, .12);
  --blush: #f3c9b6;
  --nacre: linear-gradient(115deg, #dff3e7 0%, #d3d6f5 30%, #f3dfcf 55%, #d6efe4 80%, #dff3e7 100%);
  --nacre-text: linear-gradient(100deg, #e9f6ee 10%, #cdd3f7 45%, #f4dccb 75%, #d9f1e4 95%);
  --serif: "Bodoni Moda", "Bodoni 72", Didot, Georgia, serif;
  --sans: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --gutter: 20px;
  --max: 1180px;
  --radius: 28px;
  --ease: cubic-bezier(.22, .8, .24, 1);
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --tabbar: 70px;
  --sheen: 0;
  color-scheme: dark;
}

/* ---------- Base ---------- */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-behavior: smooth; background: var(--night); }
body {
  margin: 0;
  min-height: 100vh;
  min-height: 100svh;
  padding-bottom: calc(var(--tabbar) + var(--safe-bottom) + 24px);
  color: var(--bone);
  background: var(--night);
  font: 16px/1.6 var(--sans);
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
}
main { overflow-x: clip; }
@supports not (overflow: clip) { main { overflow-x: hidden; } }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; color: inherit; }
p { margin: 0 0 1em; }
::selection { background: rgba(211, 214, 245, .35); }
:focus-visible { outline: 2px solid var(--sage); outline-offset: 3px; }

.container { width: min(100% - var(--gutter) * 2, var(--max)); margin-inline: auto; }

.skip {
  position: fixed; z-index: 100; left: 12px; top: -80px;
  padding: 10px 16px; border-radius: 999px;
  background: var(--bone); color: var(--night); text-decoration: none; font-weight: 600;
}
.skip:focus { top: calc(var(--safe-top) + 12px); }

h1, h2, h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -.015em;
  text-wrap: balance;
}
h1 { font-size: clamp(46px, 12.6vw, 104px); }
h2 { font-size: clamp(36px, 9.6vw, 64px); }
h3 { font-size: 25px; line-height: 1.15; }
h1 em, h2 em {
  padding-right: .06em;
  font-style: italic;
  color: transparent;
  background: var(--nacre-text);
  -webkit-background-clip: text;
  background-clip: text;
}

.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  margin: 0 0 16px;
  color: var(--sage);
  font: 600 11px/1.2 var(--sans);
  letter-spacing: .24em;
  text-transform: uppercase;
}
.kicker::before {
  content: "";
  width: 11px; height: 15px;
  background: currentColor;
  -webkit-mask: url(../assets/brand/star.png) center / contain no-repeat;
  mask: url(../assets/brand/star.png) center / contain no-repeat;
}

.link-arrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 0;
  color: var(--bone); font-size: 15px; font-weight: 600; text-decoration: none;
}
.link-arrow::after { content: "→"; transition: transform .35s var(--ease); }
.link-arrow:hover::after { transform: translateX(4px); }
.link-arrow[target="_blank"]::after { content: "↗"; }

/* ---------- Décor de fond ---------- */

.backdrop {
  position: fixed; inset: 0; z-index: -1;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(120% 60% at 50% -12%, #1a3127 0%, rgba(26, 49, 39, 0) 62%),
    radial-gradient(80% 45% at 115% 72%, rgba(84, 70, 140, .2), transparent 70%),
    radial-gradient(70% 45% at -20% 96%, rgba(40, 96, 72, .22), transparent 70%),
    var(--night);
}
.backdrop-wreath {
  position: absolute; left: 50%; top: 50%;
  width: max(160vw, 980px); max-width: none;
  opacity: .05;
  transform: translate(-50%, -50%) rotate(-8deg);
  animation: drift 70s linear infinite alternate;
}
.fireflies { position: absolute; inset: 0; width: 100%; height: 100%; }
.backdrop-grain {
  position: absolute; inset: 0;
  opacity: .08;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 .6 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Verre liquide ---------- */

.glass {
  position: relative;
  isolation: isolate;
  border-radius: var(--radius);
  background: linear-gradient(155deg, rgba(255, 255, 255, .11), rgba(255, 255, 255, .035) 42%, rgba(255, 255, 255, .06));
  -webkit-backdrop-filter: blur(22px) saturate(170%);
  backdrop-filter: blur(22px) saturate(170%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .2),
    inset 0 -1px 0 rgba(255, 255, 255, .04),
    0 24px 48px -24px rgba(0, 0, 0, .75);
}
/* reflet sur le pourtour, il tourne doucement avec le défilement */
.glass::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  padding: 1px;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(calc(135deg + var(--sheen) * 120deg),
    rgba(255, 255, 255, .55), rgba(255, 255, 255, .06) 28%, rgba(255, 255, 255, 0) 50%,
    rgba(255, 255, 255, .06) 72%, rgba(255, 255, 255, .32));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

/* ---------- Ornements tirés du logo ---------- */

.orn {
  position: absolute;
  display: block;
  pointer-events: none;
  background: var(--orn-color, var(--bone));
  -webkit-mask: var(--orn) center / contain no-repeat;
  mask: var(--orn) center / contain no-repeat;
}
.orn-emblem { --orn: url(../assets/brand/emblem.png); aspect-ratio: 800 / 956; }
.orn-sprig { --orn: url(../assets/brand/sprig.png); aspect-ratio: 420 / 394; }
.orn-branch { --orn: url(../assets/brand/branch.png); aspect-ratio: 420 / 466; }
.orn-mushroom { --orn: url(../assets/brand/mushroom.png); aspect-ratio: 260 / 431; }
.orn-star { --orn: url(../assets/brand/star.png); aspect-ratio: 200 / 267; }
.orn-wreath { --orn: url(../assets/brand/wreath.png); aspect-ratio: 1200 / 1085; }
.orn-nacre { --orn-color: var(--nacre); background-size: 200% 200%; animation: nacreShift 12s ease-in-out infinite alternate; }

/* Arche : fenêtre de fée pour les photos */
.arch {
  --arch-h: 40%;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-radius: 50% 50% 26px 26px / var(--arch-h) var(--arch-h) 26px 26px;
  background: var(--moss);
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, .9);
}
.arch img { width: 100%; height: 100%; object-fit: cover; }
.arch::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .16), inset 0 1px 0 rgba(255, 255, 255, .25);
  pointer-events: none;
}

/* Phases de lune, utilisées à la place des numéros */
.moon {
  position: relative;
  display: block;
  width: 36px; height: 36px;
  flex: none;
  overflow: hidden;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 34%, #fffaf0, #d9d1bf 70%);
  box-shadow: 0 0 0 1px rgba(239, 233, 220, .3), 0 0 18px rgba(239, 233, 220, .14);
}
.moon::after {
  content: "";
  position: absolute; inset: -1px;
  border-radius: 50%;
  background: #0b130f;
}
.moon-1::after { transform: translateX(-24%); }
.moon-2::after { border-radius: 0; transform: translateX(-50%); }
.moon-3::after { transform: translateX(-76%); }
.moon-4 { box-shadow: 0 0 0 1px rgba(239, 233, 220, .45), 0 0 26px rgba(239, 233, 220, .4); }
.moon-4::after { display: none; }

/* ---------- Boutons ---------- */

.btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  font: 600 15px/1 var(--sans);
  letter-spacing: .005em;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background-color .35s;
}
.btn:active { transform: scale(.96); }
.btn-primary, .btn-light {
  color: #0c1410;
  background: var(--nacre);
  background-size: 200% 100%;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .9),
    inset 0 -3px 8px rgba(40, 50, 80, .14),
    0 12px 32px -12px rgba(205, 212, 245, .55);
  animation: nacre 10s linear infinite;
}
.btn-primary:hover, .btn-light:hover { box-shadow: inset 0 1px 0 #fff, inset 0 -3px 8px rgba(40, 50, 80, .14), 0 16px 40px -12px rgba(205, 212, 245, .75); }
.btn-glass, .btn-outline {
  color: var(--bone);
  background: rgba(255, 255, 255, .07);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  backdrop-filter: blur(16px) saturate(160%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .14), inset 0 1px 0 rgba(255, 255, 255, .22);
}
.btn-glass:hover, .btn-outline:hover { background-color: rgba(255, 255, 255, .12); }
.btn-small { min-height: 40px; padding: 0 16px; font-size: 13.5px; }

.icon-btn {
  display: grid; place-items: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  color: var(--bone);
  background: rgba(255, 255, 255, .07);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .12), inset 0 1px 0 rgba(255, 255, 255, .16);
  text-decoration: none;
}
.icon-btn svg, .tab svg { fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.icon-btn svg { width: 20px; height: 20px; }

/* ---------- Barre du haut ---------- */

.topbar {
  position: fixed; z-index: 40;
  top: calc(var(--safe-top) + 10px); left: 12px; right: 12px;
}
.nav {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  max-width: var(--max);
  height: 58px;
  margin: 0 auto;
  padding: 0 8px 0 16px;
  border-radius: 999px;
  transition: background-color .4s;
}
.topbar.is-scrolled .nav { background-color: rgba(8, 14, 11, .5); }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-emblem {
  width: 24px; height: 29px;
  background: var(--nacre);
  -webkit-mask: url(../assets/brand/emblem.png) center / contain no-repeat;
  mask: url(../assets/brand/emblem.png) center / contain no-repeat;
}
.brand-word { width: 100px; height: auto; }
.navlinks { display: none; }
.nav-actions { display: flex; align-items: center; gap: 8px; }
.desktop-booking { display: none; }

/* ---------- Barre d'onglets (téléphone) ---------- */

.tabbar {
  position: fixed; z-index: 45;
  left: 12px; right: 12px;
  bottom: calc(var(--safe-bottom) + 10px);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  height: var(--tabbar);
  padding: 0 6px;
  border-radius: 999px;
  background-color: rgba(8, 14, 11, .42);
  transition: transform .5s var(--ease);
}
.tab {
  position: relative;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
  height: 58px;
  margin: 0 1px;
  border-radius: 999px;
  color: var(--mist);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .01em;
  text-decoration: none;
  white-space: nowrap;
  transition: color .3s, background-color .3s;
}
.tab svg { width: 24px; height: 24px; }
.tab.active {
  color: var(--bone);
  background: rgba(255, 255, 255, .1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .18), inset 0 0 0 1px rgba(255, 255, 255, .05);
}
.tab-cta, .tab-cta.active { color: var(--bone); background: none; box-shadow: none; }
.tab-orb {
  display: grid; place-items: center;
  width: 52px; height: 52px;
  margin-top: -28px;
  border-radius: 50%;
  background: var(--nacre);
  background-size: 200% 100%;
  box-shadow: inset 0 1px 0 #fff, 0 0 0 5px rgba(8, 14, 11, .55), 0 12px 26px -8px rgba(205, 212, 245, .65);
  animation: nacre 10s linear infinite;
}
.tab-orb i {
  width: 27px; height: 32px;
  background: #0c1410;
  -webkit-mask: url(../assets/brand/emblem.png) center / contain no-repeat;
  mask: url(../assets/brand/emblem.png) center / contain no-repeat;
}
/* le formulaire de rendez-vous prend la place de la barre quand il s'ancre en bas */
body:has(.form-actions.is-docked) .tabbar { transform: translateY(calc(100% + 40px)); }

/* ---------- Pied de page ---------- */

.footer {
  position: relative;
  margin-top: 24px;
  padding: 64px 0 36px;
  border-top: 1px solid var(--line);
  text-align: center;
}
.footer-logo { width: 190px; height: auto; margin: 0 auto 18px; opacity: .9; }
.footer-tag { max-width: 320px; margin: 0 auto 30px; color: var(--mist); }
.footer-top { display: grid; gap: 24px; }
.footer-label {
  display: block;
  margin-bottom: 6px;
  color: var(--sage);
  font-size: 11px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
}
.footer-col p, .footer-col a { display: block; margin: 0; color: var(--bone-2); line-height: 1.8; text-decoration: none; }
.footer-col a:hover { color: var(--bone); }
.footer-bottom {
  display: flex; flex-direction: column; gap: 4px;
  margin-top: 36px; padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--faint);
  font-size: 13px;
}

/* ---------- Apparition au défilement ---------- */

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(6px);
  transition: opacity .9s var(--ease), transform .9s var(--ease), filter .9s var(--ease);
  transition-delay: var(--d, 0s);
}
.js .reveal.in { opacity: 1; transform: none; filter: none; }

/* ---------- Sections ---------- */

.section { position: relative; padding: 76px 0; }
.section-head { max-width: 640px; margin-bottom: 30px; }
.section-head > p:not(.kicker) { margin: 14px 0 0; color: var(--mist); }
.section-head .btn { margin-top: 24px; }

/* ---------- Accueil : ouverture ---------- */

.hero {
  --emblem-h: clamp(160px, calc(100svh - 550px), 430px);
  position: relative;
  display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 100vh;
  min-height: 100svh;
  padding: calc(var(--safe-top) + 80px) 0 calc(var(--tabbar) + var(--safe-bottom) + 28px);
  text-align: center;
}
/* l'emblème prend la hauteur restante de l'écran, sans jamais passer sous le texte */
.hero-art {
  position: relative;
  flex: 1 0 auto;
  display: grid; place-items: center;
  margin-bottom: 18px;
  transform: translateY(calc(var(--hero-shift, 0) * 1px));
}
.hero-halo {
  position: absolute; left: 50%; top: 58%;
  width: calc(var(--emblem-h) * 1.1); aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(190, 235, 210, .2), rgba(190, 235, 210, 0) 65%);
  transform: translate(-50%, -50%);
  animation: breathe 7s ease-in-out infinite;
}
.hero-glow {
  width: calc(var(--emblem-h) * .837);
  height: var(--emblem-h);
  filter: drop-shadow(0 0 18px rgba(200, 235, 215, .3));
  animation: float 8s ease-in-out infinite alternate;
}
.hero-emblem {
  position: relative;
  width: 100%; height: 100%;
  animation: emblemIn 2.8s var(--ease) both, nacreShift 12s ease-in-out infinite alternate;
}
.hero-copy { position: relative; }
.hero-copy h1 { margin: 0 auto; }
.hero-lead { max-width: 440px; margin: 16px auto 0; color: var(--bone-2); font-size: 16.5px; }
.hero-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 24px; }
.hero-actions .btn { flex: 1 1 auto; max-width: 260px; padding: 0 18px; font-size: 14.5px; }
@media (max-height: 700px) { .hero-meta { display: none; } }
.hero-meta {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 4px 0;
  margin: 22px 0 0;
  color: var(--mist);
  font-size: 12.5px;
}
.hero-meta span + span::before { content: "·"; margin: 0 10px; color: var(--fern); }

/* ---------- Accueil : pièces récentes ---------- */

.rail {
  display: flex; gap: 12px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  padding: 6px var(--gutter) 20px;
  scroll-padding-inline: var(--gutter);
  scrollbar-width: none;
}
.rail::-webkit-scrollbar, .vials::-webkit-scrollbar, .chips::-webkit-scrollbar { display: none; }
.rail-card {
  --arch-h: 38%;
  flex: 0 0 min(68vw, 300px);
  aspect-ratio: 4 / 5.2;
  scroll-snap-align: start;
  text-decoration: none;
}
.rail-card img { transition: transform .9s var(--ease); }
.rail-card:hover img { transform: scale(1.04); }
.rail-card::before {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(5, 9, 7, .6), transparent 42%);
  pointer-events: none;
}
.rail-tag {
  position: absolute; z-index: 2;
  left: 10px; right: 10px; bottom: 10px;
  display: flex; flex-direction: column;
  padding: 10px 14px;
  border-radius: 18px;
}
.rail-tag b { font-size: 14.5px; font-weight: 600; line-height: 1.3; }
.rail-tag small { color: var(--mist); font-size: 10.5px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.rail-more {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px;
  background: linear-gradient(160deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .02));
  color: var(--bone);
  text-align: center;
}
.rail-more::before { display: none; }
.rail-more .orn { position: relative; width: 38%; }
.rail-more span { font-family: var(--serif); font-size: 26px; line-height: 1.1; }

/* ---------- Accueil : l'artiste ---------- */

.artist-grid { display: grid; gap: 64px; align-items: center; }
.artist-portrait { position: relative; width: min(78vw, 400px); margin: 12px auto 0; }
.artist-portrait .arch { aspect-ratio: 4 / 5; }
.artist-portrait .arch img { filter: saturate(.9) contrast(1.04); }
.artist-portrait .orn-sprig { top: -11%; right: -15%; width: 46%; transform: rotate(10deg); --orn-color: var(--sage); }
.artist-portrait .orn-branch { bottom: -4%; left: -17%; width: 42%; --orn-color: var(--bone-2); }
.artist-badge {
  position: absolute; left: 50%; bottom: -24px;
  display: flex; flex-direction: column; align-items: center;
  padding: 12px 24px;
  border-radius: 22px;
  white-space: nowrap;
  transform: translateX(-50%);
}
.artist-badge b { font-family: var(--serif); font-size: 23px; font-weight: 400; line-height: 1.1; }
.artist-badge span { color: var(--mist); font-size: 10.5px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
.artist-copy p:not(.kicker) { color: var(--bone-2); }
.artist-copy h2 { margin-bottom: 22px; }

/* ---------- Accueil : signatures (fioles) ---------- */

.vials {
  display: flex; gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  margin: 0 calc(var(--gutter) * -1);
  padding: 8px var(--gutter) 24px;
  scroll-padding-inline: var(--gutter);
  scrollbar-width: none;
}
.vial {
  --arch-h: 34%;
  flex: 0 0 min(72vw, 300px);
  display: flex; flex-direction: column; align-items: center;
  min-height: 410px;
  padding: 40px 24px 30px;
  border-radius: 50% 50% 30px 30px / var(--arch-h) var(--arch-h) 30px 30px;
  text-align: center;
  scroll-snap-align: start;
  overflow: hidden;
}
/* niveau de « potion » au fond de la fiole */
.vial::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0; z-index: -1;
  height: 36%;
  border-top: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50% 50% 0 0 / 14px 14px 0 0;
  background: linear-gradient(to top, rgba(168, 198, 177, .16), rgba(168, 198, 177, .03));
}
.vial .orn { position: relative; margin: 8px 0 26px; filter: drop-shadow(0 0 12px rgba(200, 235, 215, .25)); }
.vial .orn-emblem { width: 104px; }
.vial .orn-branch { width: 112px; }
.vial .orn-star { width: 92px; }
.vial h3 { margin-bottom: 10px; font-size: 27px; }
.vial p { margin: 0; color: var(--mist); font-size: 15px; }

/* ---------- Accueil : rendez-vous ---------- */

.ritual-grid { display: grid; gap: 36px; }
.phases { position: relative; display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.phases::before {
  content: "";
  position: absolute; left: 34px; top: 34px; bottom: 34px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(239, 233, 220, .3) 12%, rgba(239, 233, 220, .3) 88%, transparent);
}
.phase {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  padding: 20px 20px 20px 12px;
  border-radius: 26px;
}
.phase .moon { margin: 2px auto 0; }
.phase h3 { margin: 4px 0 6px; font-size: 24px; }
.phase p { margin: 0; color: var(--mist); font-size: 15px; }

/* ---------- Accueil : studio ---------- */

.studio-grid { display: grid; }
.studio-photo .arch { --arch-h: 44%; aspect-ratio: 5 / 4.4; }
.studio-card { margin: -70px 12px 0; padding: 28px 22px 24px; }
.studio-card p:not(.kicker) { color: var(--bone-2); }
.details { display: grid; margin: 22px 0; }
.details div { display: grid; grid-template-columns: 92px 1fr; gap: 12px; padding: 13px 0; border-top: 1px solid var(--line); }
.details dt { padding-top: 3px; color: var(--faint); font-size: 10.5px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
.details dd { margin: 0; color: var(--bone-2); }
.details a { color: var(--bone); text-decoration-color: rgba(239, 233, 220, .3); text-underline-offset: 3px; overflow-wrap: anywhere; }

/* ---------- Appel final ---------- */

.finale { padding: 32px 0 84px; }
.finale-card {
  overflow: hidden;
  padding: 70px 24px 60px;
  border-radius: 38px;
  text-align: center;
}
.finale-card .orn-wreath { left: 50%; top: 50%; z-index: -1; width: 140%; opacity: .14; transform: translate(-50%, -50%); }
.finale-card h2 { margin: 4px 0 28px; }
.finale-card p:not(.kicker) { max-width: 360px; margin: -12px auto 26px; color: var(--bone-2); }

/* ---------- Pages intérieures ---------- */

.page-hero {
  position: relative;
  padding: calc(var(--safe-top) + 116px) 0 30px;
  text-align: center;
}
.page-hero .orn { position: relative; width: 84px; margin: 0 auto 20px; }
.page-hero .orn-mushroom { width: 50px; }
.page-hero h1 { font-size: clamp(44px, 11.6vw, 86px); }
.page-lead { max-width: 560px; margin: 18px auto 0; color: var(--bone-2); }
.page-hero .link-arrow { margin-top: 10px; }
.section-tight { padding-top: 12px; }

/* ---------- Galerie ---------- */

.chips-bar {
  position: sticky; z-index: 20;
  top: calc(var(--safe-top) + 76px);
  margin: 0 0 18px;
  pointer-events: none;
}
.chips-shell {
  width: max-content; max-width: 100%;
  margin: 0 auto;
  padding: 5px;
  border-radius: 999px;
  background-color: rgba(8, 14, 11, .4);
  pointer-events: auto;
}
.chips { display: flex; gap: 4px; overflow-x: auto; border-radius: 999px; scrollbar-width: none; }
.chip {
  flex: none;
  min-height: 38px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--mist);
  font-size: 14px; font-weight: 600;
  cursor: pointer;
  transition: background-color .3s, color .3s;
}
.chip.active { color: #0c1410; background: var(--bone); box-shadow: 0 6px 16px -8px rgba(239, 233, 220, .6); }

.gallery { columns: 2; column-gap: 10px; }
.gitem {
  position: relative;
  margin: 0 0 10px;
  overflow: hidden;
  isolation: isolate;
  break-inside: avoid;
  border-radius: 20px;
  background: var(--moss);
  cursor: zoom-in;
}
.gitem:nth-child(4n + 1) { border-radius: 50% 50% 20px 20px / 24% 24% 20px 20px; }
.gitem img { width: 100%; height: auto; transition: transform .9s var(--ease); }
.gitem:hover img { transform: scale(1.04); }
.gitem::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .12);
  pointer-events: none;
}
.gitem .label {
  position: absolute; z-index: 1;
  left: 7px; right: 7px; bottom: 7px;
  display: flex; flex-direction: column;
  padding: 8px 11px;
  border-radius: 14px;
  background: rgba(8, 14, 11, .38);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  backdrop-filter: blur(14px) saturate(160%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .18), inset 0 0 0 1px rgba(255, 255, 255, .07);
}
.gitem .label strong { font-size: 13px; font-weight: 600; line-height: 1.25; }
.gitem .label small { color: var(--mist); font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }

/* ---------- Visionneuses (galerie et boutique) ---------- */

.lightbox {
  position: fixed; inset: 0; z-index: 80;
  display: grid; place-items: center;
  padding: calc(var(--safe-top) + 12px) 12px calc(var(--safe-bottom) + 12px);
  background: rgba(3, 6, 5, .74);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s var(--ease), visibility .35s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lb-card {
  display: flex; flex-direction: column; gap: 10px;
  width: min(100%, 980px);
  max-height: 100%;
  transform: scale(.96);
  transition: transform .45s var(--ease);
}
.lightbox.open .lb-card { transform: none; }
.lb-top {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 6px 6px 6px 20px;
  border-radius: 999px;
}
.lb-title { overflow: hidden; font-family: var(--serif); font-size: 21px; text-overflow: ellipsis; white-space: nowrap; }
.lb-media-wrap {
  position: relative;
  display: grid; place-items: center;
  height: min(68svh, 720px);
  overflow: hidden;
  border-radius: 26px;
  background: #000;
  touch-action: none;
}
.lb-media-wrap img { max-width: 100%; max-height: 100%; object-fit: contain; transform-origin: center; user-select: none; -webkit-user-drag: none; }
.lb-media-wrap.zoomed { cursor: grab; }
.lb-toolbar { display: flex; justify-content: center; gap: 8px; margin-top: 10px; }
.lb-body { display: grid; gap: 12px; overflow-y: auto; }
.lb-media .lb-media-wrap { height: min(44svh, 560px); }
.lb-info {
  padding: 20px;
  border-radius: 26px;
  background: rgba(255, 255, 255, .05);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .08), inset 0 1px 0 rgba(255, 255, 255, .12);
}
.lb-info p { color: var(--bone-2); }
.lb-nav { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin: 14px 0; }
.product-lightbox-buy { display: flex; align-items: center; justify-content: space-between; gap: 12px; }

/* ---------- Rendez-vous ---------- */

.booking-reassurance { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 20px; }
.booking-reassurance span {
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .1);
  color: var(--bone-2);
  font-size: 12.5px; font-weight: 500;
}
.booking-layout { display: grid; gap: 22px; align-items: start; }
.booking-card { padding: 10px; border-radius: 32px; scroll-margin-top: calc(var(--safe-top) + 84px); }
/* sans flou : un backdrop-filter piégerait la barre d'actions « fixed » à l'intérieur de la carte */
.booking-card.glass { -webkit-backdrop-filter: none; backdrop-filter: none; background-color: rgba(14, 22, 18, .6); }
.booking-card:has(.is-docked) { padding-bottom: 76px; }
.stepper {
  position: relative;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px;
  padding: 5px;
  border-radius: 24px;
  background: rgba(0, 0, 0, .24);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .06);
}
.stepper::after {
  content: "";
  position: absolute; left: 22px; right: 22px; bottom: -10px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--sage) var(--step-progress, 25%), rgba(255, 255, 255, .08) 0);
  transition: background .4s;
}
.step {
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  padding: 10px 2px 9px;
  border: 0;
  border-radius: 19px;
  background: transparent;
  color: var(--faint);
  font-size: 11px; font-weight: 600;
  cursor: pointer;
  transition: background-color .35s var(--ease), color .35s;
}
.step .moon { width: 22px; height: 22px; opacity: .4; transition: opacity .35s; }
.step:not(:disabled) .moon { opacity: 1; }
.step.active { color: var(--bone); background: rgba(255, 255, 255, .1); box-shadow: inset 0 1px 0 rgba(255, 255, 255, .16); }
.step:disabled { cursor: default; }
#bookingForm { padding: 30px 12px 4px; }
.step-pane { display: none; }
.step-pane.active { display: block; animation: paneIn .5s var(--ease); }
.form-heading { margin-bottom: 22px; }
.form-heading h2 { font-size: 34px; }
.form-heading p { margin: 6px 0 0; color: var(--mist); }
.field { display: grid; gap: 8px; min-width: 0; margin: 0 0 16px; padding: 0; border: 0; }
.field label, .field legend { padding: 0; color: var(--bone-2); font-size: 13.5px; font-weight: 600; }
fieldset.field legend { margin-bottom: 8px; }
.input, textarea {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border: 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, .055);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .1);
  color: var(--bone);
  font-size: 16px;
  -webkit-appearance: none;
  appearance: none;
  transition: box-shadow .3s, background-color .3s;
}
textarea { min-height: 140px; line-height: 1.5; resize: vertical; }
.input::placeholder, textarea::placeholder { color: var(--faint); }
.input:focus, textarea:focus {
  outline: none;
  background-color: rgba(255, 255, 255, .08);
  box-shadow: inset 0 0 0 1px rgba(168, 198, 177, .6), 0 0 0 4px rgba(168, 198, 177, .12);
}
.row2 { display: grid; gap: 0 12px; }
.seg {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px;
  padding: 4px;
  border-radius: 18px;
  background: rgba(0, 0, 0, .25);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .06);
}
.segbtn { position: relative; cursor: pointer; }
.segbtn input { position: absolute; opacity: 0; pointer-events: none; }
.segbtn span {
  display: grid; place-items: center;
  min-height: 48px;
  padding: 6px 4px;
  border-radius: 14px;
  color: var(--mist);
  font-size: 13px; font-weight: 600; line-height: 1.2; text-align: center;
  transition: background-color .3s var(--ease), color .3s;
}
.segbtn input:checked + span { color: #0c1410; background: var(--bone); box-shadow: 0 6px 16px -8px rgba(239, 233, 220, .5); }
.segbtn input:focus-visible + span { outline: 2px solid var(--sage); outline-offset: 2px; }
.note { display: block; color: var(--faint); font-size: 12.5px; }
.check { display: flex; align-items: flex-start; gap: 12px; margin: 8px 0 14px; color: var(--bone-2); font-size: 14px; cursor: pointer; }
.check input { flex: none; width: 22px; height: 22px; margin: 0; accent-color: var(--sage); }
.summary-card {
  margin-bottom: 14px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(0, 0, 0, .25);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .08);
}
.summary { margin: 0; color: var(--bone-2); font: 13.5px/1.6 ui-monospace, "SF Mono", Menlo, monospace; white-space: pre-wrap; overflow-wrap: anywhere; }
.form-actions { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 14px 12px 12px; }
.form-actions .btn { flex: 1; }
.form-actions.is-docked {
  position: fixed; z-index: 46;
  left: 12px; right: 12px;
  bottom: calc(var(--safe-bottom) + 12px);
  padding: 8px;
  border-radius: 999px;
  background: rgba(10, 17, 13, .62);
  -webkit-backdrop-filter: blur(24px) saturate(170%);
  backdrop-filter: blur(24px) saturate(170%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .18), inset 0 0 0 1px rgba(255, 255, 255, .08), 0 16px 40px rgba(0, 0, 0, .5);
}
.honeypot { position: absolute; left: -9999px; }
.booking-aside { padding: 28px 22px 24px; border-radius: 30px; }
.booking-aside .orn { position: relative; width: 58px; margin-bottom: 18px; }
.booking-aside h2 { margin-bottom: 20px; font-size: 30px; }
.booking-aside ul { display: grid; gap: 12px; margin: 0 0 22px; padding: 0; list-style: none; }
.booking-aside li { display: flex; align-items: center; gap: 12px; color: var(--bone-2); font-size: 15px; }
.booking-aside li::before {
  content: "";
  flex: none;
  width: 10px; height: 14px;
  background: var(--sage);
  -webkit-mask: url(../assets/brand/star.png) center / contain no-repeat;
  mask: url(../assets/brand/star.png) center / contain no-repeat;
}
.contact-note { display: grid; gap: 4px; padding-top: 16px; border-top: 1px solid var(--line); }
.contact-note span { color: var(--mist); font-size: 14px; }
.contact-note a { font-weight: 600; text-decoration: none; }

/* ---------- Soins ---------- */

.care-layout { display: grid; gap: 16px; }
.care-summary { overflow: hidden; padding: 30px 22px 26px; border-radius: 30px; }
.care-summary h2 { margin-bottom: 16px; }
.care-summary p:not(.kicker) { color: var(--bone-2); }
.care-summary .orn-mushroom { right: 14px; bottom: -18px; z-index: -1; width: 74px; opacity: .2; transform: rotate(-12deg); }
.source-note { margin-top: 14px; color: var(--faint); font-size: 13px; }
.care-timeline { display: grid; gap: 12px; }
.care-card {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  padding: 22px 20px 22px 16px;
  border-radius: 28px;
  background: linear-gradient(160deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .02));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .08), inset 0 1px 0 rgba(255, 255, 255, .12);
}
.care-number {
  display: grid; place-items: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  box-shadow: inset 0 0 0 1px rgba(239, 233, 220, .22);
  color: var(--bone);
  font-family: var(--serif); font-size: 19px; font-style: italic;
}
.care-period { margin: 2px 0 6px; color: var(--sage); font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.care-card h2 { margin-bottom: 14px; font-size: 26px; line-height: 1.12; }
.care-card ul { display: grid; gap: 8px; margin: 0; padding: 0; list-style: none; }
.care-card li { position: relative; padding-left: 18px; color: var(--bone-2); font-size: 15px; }
.care-card li::before {
  content: "";
  position: absolute; left: 0; top: .64em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--sage);
  opacity: .7;
}
.care-card p { margin: 0; color: var(--bone-2); }
.care-alert {
  background: linear-gradient(160deg, rgba(243, 201, 182, .12), rgba(255, 255, 255, .02));
  box-shadow: inset 0 0 0 1px rgba(243, 201, 182, .25);
}
.care-alert .care-number { color: var(--blush); font-style: normal; box-shadow: inset 0 0 0 1px rgba(243, 201, 182, .4); }
.care-alert .care-period { color: var(--blush); }

/* ---------- Boutique ---------- */

.shop-note { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 22px; padding: 16px 18px; border-radius: 22px; }
.shop-note span {
  flex: none;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(168, 198, 177, .14);
  color: var(--sage);
  font-size: 10.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
}
.shop-note p { margin: 0; color: var(--mist); font-size: 14px; }
.products { display: grid; gap: 16px; }
.pcard {
  overflow: hidden;
  border-radius: 30px;
  background: linear-gradient(160deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .02));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .09), inset 0 1px 0 rgba(255, 255, 255, .14);
}
.pimg { position: relative; aspect-ratio: 14 / 10; margin: 8px; overflow: hidden; border-radius: 23px; background: var(--moss); cursor: zoom-in; }
.pimg img { width: 100%; height: 100%; object-fit: cover; }
.pad { padding: 8px 18px 18px; }
.pcard .row { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.pcard .row b { font-family: var(--serif); font-size: 22px; font-weight: 400; line-height: 1.15; }
.badge {
  flex: none;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(211, 214, 245, .12);
  color: #d6d9f6;
  font-size: 10.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
}
.pdesc { margin: 10px 0 14px; color: var(--mist); font-size: 14.5px; line-height: 1.55; }
.price { font-family: var(--serif); font-size: 26px; }
.pill {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .08);
  color: var(--bone-2);
  font-size: 12px; font-weight: 600;
}
.dot { width: 6px; height: 6px; border-radius: 50%; background: var(--sage); box-shadow: 0 0 8px var(--sage); }
.pcard .actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 16px; }
.fab-cart { position: fixed; z-index: 42; right: 16px; bottom: calc(var(--tabbar) + var(--safe-bottom) + 22px); }
.fab-cart .count {
  display: grid; place-items: center;
  min-width: 24px; height: 24px;
  padding: 0 7px;
  border-radius: 999px;
  background: #0c1410;
  color: var(--bone);
  font-size: 12px;
}
.drawer {
  position: fixed; z-index: 70;
  left: 8px; right: 8px;
  bottom: calc(var(--safe-bottom) + 8px);
  display: flex; flex-direction: column;
  max-height: 82svh;
  border-radius: 32px;
  background: rgba(10, 17, 13, .74);
  -webkit-backdrop-filter: blur(28px) saturate(170%);
  backdrop-filter: blur(28px) saturate(170%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .18), inset 0 0 0 1px rgba(255, 255, 255, .08), 0 -20px 60px rgba(0, 0, 0, .6);
  transform: translateY(calc(100% + 40px));
  transition: transform .55s var(--ease);
}
.drawer.open { transform: none; }
.drawer::before { content: ""; flex: none; width: 40px; height: 5px; margin: 9px auto 0; border-radius: 3px; background: rgba(255, 255, 255, .25); }
.drawer .head { display: flex; align-items: center; justify-content: space-between; padding: 10px 18px 12px; }
.drawer .head b { font-family: var(--serif); font-size: 25px; font-weight: 400; }
.drawer .body { flex: 1; overflow-y: auto; padding: 0 18px; }
.drawer .foot { display: grid; gap: 10px; padding: 16px 18px 18px; border-top: 1px solid var(--line); }
.totals { display: flex; align-items: baseline; justify-content: space-between; }
.totals b { font-family: var(--serif); font-size: 27px; font-weight: 400; }
.drawer .actions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.drawer .actions .btn { min-height: 42px; padding: 0 8px; font-size: 12.5px; }
.drawer .body .note { padding: 18px 0; }
.lineitem { display: grid; grid-template-columns: 56px 1fr auto; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.lineitem img { width: 56px; height: 56px; object-fit: cover; border-radius: 14px; }
.lineitem-name { display: block; margin-bottom: 4px; font-weight: 600; line-height: 1.3; }
.lineitem-price { color: var(--mist); }
.qty { display: flex; align-items: center; gap: 8px; }
.iconbtn {
  display: grid; place-items: center;
  width: 34px; height: 34px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .1);
  font-size: 18px;
  cursor: pointer;
}
/* notification en forme d'îlot, en haut de l'écran */
.toast {
  position: fixed; z-index: 90;
  left: 50%; top: calc(var(--safe-top) + 78px);
  max-width: calc(100% - 32px);
  padding: 13px 22px;
  border-radius: 999px;
  background: #000;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .5), inset 0 0 0 1px rgba(255, 255, 255, .08);
  color: #fff;
  font-size: 14px; font-weight: 600; text-align: center;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -10px) scale(.7);
  transition: opacity .35s var(--ease), transform .5s var(--ease);
}
.toast.show { opacity: 1; transform: translate(-50%, 0) scale(1); }

/* ---------- Merci ---------- */

.thanks-main { display: grid; place-items: center; min-height: 100svh; padding: calc(var(--safe-top) + 96px) 0 40px; }
.thanks-card { max-width: 560px; padding: 44px 24px 36px; border-radius: 38px; text-align: center; }
.thanks-card .orn { position: relative; width: 110px; margin: 0 auto 22px; }
.thanks-card p:not(.kicker) { margin-top: 18px; color: var(--bone-2); }
.thanks-actions { display: flex; flex-direction: column; align-items: center; gap: 6px; margin-top: 26px; }

/* ---------- Animations ---------- */

@keyframes nacre { to { background-position: -200% 0; } }
@keyframes nacreShift { from { background-position: 0% 0%; } to { background-position: 100% 100%; } }
@keyframes drift { to { transform: translate(-50%, -53%) rotate(6deg) scale(1.06); } }
@keyframes float { from { transform: translateY(-6px); } to { transform: translateY(6px); } }
@keyframes breathe { 50% { opacity: .6; transform: translate(-50%, -50%) scale(1.14); } }
@keyframes emblemIn {
  from { opacity: 0; clip-path: inset(0 0 100% 0); }
  to { opacity: .92; clip-path: inset(0 0 0 0); }
}
@keyframes paneIn { from { opacity: 0; transform: translateY(10px); } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- Écrans plus larges ---------- */

@media (min-width: 700px) {
  .row2 { grid-template-columns: 1fr 1fr; }
  .gallery { columns: 3; column-gap: 14px; }
  .gitem { margin-bottom: 14px; }
  .products { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

@media (min-width: 900px) {
  :root { --gutter: 32px; }
  body { padding-bottom: 0; }
  .tabbar { display: none; }
  .topbar { top: 16px; left: 24px; right: 24px; }
  .nav { height: 64px; padding: 0 10px 0 22px; }
  .brand-word { width: 118px; }
  .navlinks { display: flex; gap: 2px; }
  .navlinks a { padding: 10px 16px; border-radius: 999px; color: var(--mist); font-size: 14.5px; font-weight: 500; text-decoration: none; transition: color .3s, background-color .3s; }
  .navlinks a:hover, .navlinks a.active { color: var(--bone); background: rgba(255, 255, 255, .08); }
  .desktop-booking { display: inline-flex; }
  .fab-cart { right: 28px; bottom: 28px; }
  .form-actions.is-docked { position: static; padding: 14px 12px 12px; background: none; box-shadow: none; -webkit-backdrop-filter: none; backdrop-filter: none; }
  .booking-card:has(.is-docked) { padding-bottom: 10px; }

  .section { padding: 110px 0; }
  .hero { --emblem-h: clamp(200px, calc(100svh - 520px), 440px); padding: 100px 0 56px; }
  .hero-actions .btn { flex: 0 0 auto; }
  .rail { padding-inline: max(var(--gutter), (100vw - var(--max)) / 2); scroll-padding-inline: max(var(--gutter), (100vw - var(--max)) / 2); }
  .rail-card { flex-basis: 300px; }
  .artist-grid { grid-template-columns: 1fr 1fr; gap: 90px; }
  .artist-portrait { margin: 40px 0; }
  .vials { justify-content: center; overflow: visible; margin: 0; padding: 8px 0 0; }
  .vial { flex-basis: 320px; }
  .ritual-grid { grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: center; }
  .studio-grid { grid-template-columns: 1.15fr .85fr; align-items: center; }
  .studio-card { margin: 0 0 0 -110px; padding: 38px 34px 32px; }
  .finale-card { padding: 100px 40px 90px; }
  .finale-card .orn-wreath { width: 70%; }
  .footer { text-align: left; }
  .footer-top { grid-template-columns: 1.3fr 1fr 1fr; gap: 48px; align-items: start; }
  .footer-logo { margin: 0 0 16px; }
  .footer-tag { margin: 0; }

  .page-hero { padding-top: 150px; }
  .chips-bar { top: 92px; }
  .booking-layout { grid-template-columns: 1.5fr .8fr; }
  .booking-aside { position: sticky; top: 104px; }
  #bookingForm { padding: 34px 26px 6px; }
  .care-layout { grid-template-columns: .8fr 1.2fr; align-items: start; gap: 24px; }
  .care-summary { position: sticky; top: 104px; }
  .lb-body { grid-template-columns: 1.4fr 1fr; align-items: start; }
  .lb-media .lb-media-wrap { height: min(70svh, 620px); }
}

@media (min-width: 1100px) {
  .gallery { columns: 4; }
  .products { grid-template-columns: repeat(3, 1fr); }
}
