/* =========================================================
   L'Hinault — Offre Familles (Vitrine) — styles.css
   ========================================================= */

:root {
  --bg: #070607;
  --bg2: #0C0A0D;
  --card: rgba(231,192,142,0.08);
  --card2: rgba(231,192,142,0.10);
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.76);
  --muted2: rgba(255,255,255,0.60);
  --stroke: rgba(231,192,142,0.22);
  --stroke2: rgba(231,192,142,0.14);
  --shadow: 0 18px 40px rgba(0,0,0,0.52);
  --shadow2: 0 12px 26px rgba(0,0,0,0.42);

  /* Noir & Or (mode nuit) */
  --gold: #E7C08E;
  --gold2: #F4D6AE;
  --accent: #E7C08E;
  --accent2: #FFD7A6;
  --sage: #D7C3A3;

  --danger: #ff6b6b;

  --radius: 22px;
  --radius2: 16px;

  --container: 1100px;
  --ease: cubic-bezier(.2,.8,.2,1);

  --headerH: 76px;
}


[data-theme="light"] {
  /* Jour: plus vibrant, chaleureux, très lisible */
  --bg: #FFF6E8;
  --bg2: #FFFFFF;
  --card: rgba(23,14,8,0.06);
  --card2: rgba(23,14,8,0.08);
  --text: rgba(23,14,8,0.92);
  --muted: rgba(23,14,8,0.72);
  --muted2: rgba(23,14,8,0.56);
  --stroke: rgba(23,14,8,0.14);
  --stroke2: rgba(23,14,8,0.10);
  --shadow: 0 18px 40px rgba(23,14,8,0.12);
  --shadow2: 0 12px 26px rgba(23,14,8,0.10);

  --gold: #D39B2A;
  --gold2: #FFD27A;
  --accent: #FF7A18;   /* orange vibrant */
  --accent2: #FFB86B;  /* pêche */
  --sage: #28C76F;     /* vert doux pour contraste */
}


* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  background: radial-gradient(1100px 700px at 75% -10%, rgba(231,192,142,0.28), transparent 60%),
              radial-gradient(900px 600px at 10% 0%, rgba(244,214,174,0.18), transparent 62%),
              radial-gradient(900px 600px at 90% 40%, rgba(231,192,142,0.10), transparent 60%),
              linear-gradient(180deg, var(--bg), var(--bg2));
  color: var(--text);
  line-height: 1.45;
  overflow-x: hidden;
  padding-bottom: 92px; /* space for sticky CTA */
}


/* Reading progress */
#progressWrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  z-index: 2000;
  background: transparent;
}
#readingProgress {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--accent), var(--sage));
  box-shadow: 0 0 18px rgba(227,192,143,0.35);
  transform-origin: left;
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 1500;
  height: var(--headerH);
  backdrop-filter: blur(14px);
  background: color-mix(in srgb, var(--bg2) 72%, transparent);
  border-bottom: 1px solid var(--stroke);
}
.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 18px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
}
.brand img {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: var(--shadow2);
}
.brand .name {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand .name strong {
  letter-spacing: 0.2px;
}
.brand .name span {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

nav {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
nav a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  padding: 9px 10px;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: transform 180ms var(--ease), background 180ms var(--ease), color 180ms var(--ease), border 180ms var(--ease);
}
nav a:hover {
  transform: translateY(-1px);
  background: var(--card);
  border-color: var(--stroke);
  color: var(--text);
}
nav a.active {
  background: color-mix(in srgb, var(--gold) 18%, var(--card));
  border-color: color-mix(in srgb, var(--gold) 32%, var(--stroke));
  color: var(--text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 210px;
  justify-content: flex-end;
}
.btn {
  appearance: none;
  border: 1px solid var(--stroke);
  background: var(--card);
  color: var(--text);
  border-radius: 14px;
  padding: 10px 12px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 180ms var(--ease), background 180ms var(--ease), border 180ms var(--ease);
  box-shadow: none;
}
.btn:hover { transform: translateY(-1px); background: var(--card2); }
.btn.primary {
  background: linear-gradient(135deg, color-mix(in srgb, var(--gold) 35%, var(--card)),
                                    color-mix(in srgb, var(--accent) 26%, var(--card)));
  border-color: color-mix(in srgb, var(--gold) 35%, var(--stroke));
}
.btn.primary:hover { background: linear-gradient(135deg, color-mix(in srgb, var(--gold) 45%, var(--card2)),
                                                        color-mix(in srgb, var(--accent) 32%, var(--card2))); }

.icon-btn {
  width: 42px;
  height: 42px;
  padding: 0;
  display: grid;
  place-items: center;
}
.icon {
  width: 18px;
  height: 18px;
  display: inline-block;
}

/* Layout */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 18px;
}
section {
  padding: 72px 0;
  scroll-margin-top: calc(var(--headerH) + 18px);
}
.kicker {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-size: 12px;
  color: var(--muted);
  border: 1px solid var(--stroke);
  background: var(--card);
  border-radius: 999px;
  padding: 8px 10px;
}
.kicker .dot {
  width: 8px; height: 8px; border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--accent));
}
h1, h2, h3 {
  margin: 10px 0 0 0;
  line-height: 1.05;
  letter-spacing: -0.5px;
}
h1 { font-size: 46px; }
h2 { font-size: 34px; }
h3 { font-size: 20px; letter-spacing: -0.2px; }
p {
  color: var(--muted);
  margin: 12px 0 0 0;
  font-size: 16px;
}
.lead {
  font-size: 18px;
  color: var(--muted);
  max-width: 70ch;
}

.grid {
  display: grid;
  gap: 18px;
}
.grid.two { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid.three { grid-template-columns: repeat(3, minmax(0,1fr)); }

@media (max-width: 900px) {
  h1 { font-size: 38px; }
  .grid.two, .grid.three { grid-template-columns: 1fr; }
  .brand { min-width: auto; }
  .header-actions { min-width: auto; }
  nav { display: none; } /* keep it clean on mobile; we provide a menu button */
}

/* Hero */
.hero {
  padding: 46px 0 40px;
  position: relative;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 22px;
  align-items: center;
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
}
.hero-card {
  border: 1px solid var(--stroke);
  background: var(--card);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: radial-gradient(800px 300px at 20% 10%, rgba(244,214,174,0.28), transparent 60%),
              radial-gradient(600px 260px at 80% 0%, rgba(255,178,107,0.20), transparent 65%);
  pointer-events: none;
}
.hero-card > * { position: relative; }
.hero-cta {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 18px;
  flex-wrap: wrap;
}
.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
  margin-top: 18px;
}
.metric {
  border: 1px solid var(--stroke2);
  background: color-mix(in srgb, var(--card) 70%, transparent);
  border-radius: 16px;
  padding: 12px;
}
.metric strong { font-size: 18px; display: block; }
.metric span { font-size: 12px; color: var(--muted2); }

.hero-side {
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  background: var(--card);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-profile__image {
  width: 100%;
  height: auto;
  display: block;
}
.hero-profile__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px 16px;
  border-top: 1px solid var(--stroke);
  background: color-mix(in srgb, var(--card) 85%, transparent);
}
.hero-profile__meta strong { display: block; }
.hero-profile__meta span { font-size: 12px; color: var(--muted); }

/* Cards */
.card {
  border: 1px solid var(--stroke);
  background: var(--card);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow2);
}
.card.soft {
  border-color: var(--stroke2);
  box-shadow: none;
  background: color-mix(in srgb, var(--card) 85%, transparent);
}
.badge {
  display: inline-flex;
  font-size: 12px;
  color: var(--text);
  border: 1px solid var(--stroke);
  background: color-mix(in srgb, var(--gold) 14%, var(--card));
  padding: 7px 10px;
  border-radius: 999px;
  gap: 8px;
  align-items: center;
}
.badge svg { opacity: 0.9; }

/* Timeline */
.timeline {
  display: grid;
  gap: 12px;
}
.step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid var(--stroke2);
  background: color-mix(in srgb, var(--card) 88%, transparent);
}
.step .num {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-weight: 800;
  border: 1px solid var(--stroke);
  background: linear-gradient(135deg, color-mix(in srgb, var(--gold) 25%, var(--card)),
                                    color-mix(in srgb, var(--accent) 16%, var(--card)));
}
.step p { margin-top: 6px; }

/* Schedule */
.schedule {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
}
@media (max-width: 900px) { .schedule { grid-template-columns: 1fr; } }
.slot {
  border-radius: 18px;
  border: 1px solid var(--stroke2);
  background: color-mix(in srgb, var(--card) 88%, transparent);
  padding: 14px;
}
.slot header {
  position: static;
  height: auto;
  backdrop-filter: none;
  background: transparent;
  border-bottom: none;
}
.slot .title {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}
.pill {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: var(--card);
  color: var(--muted);
}
.pill.good { background: color-mix(in srgb, var(--accent2) 18%, var(--card)); }
.pill.gold { background: color-mix(in srgb, var(--gold) 18%, var(--card)); }

/* Reviews */
.reviews {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
}
@media (max-width: 900px) { .reviews { grid-template-columns: 1fr; } }

.review-card {
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  background: var(--card);
  padding: 18px;
  box-shadow: var(--shadow2);
  min-height: 220px;
}
.review-carousel {
  overflow: hidden;
  margin-top: 8px;
}
.carousel-track {
  display: flex;
  transition: transform 300ms var(--ease);
  will-change: transform;
}
.carousel-slide {
  min-width: 100%;
}
.review-summary {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}
.review-score {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.review-score strong {
  font-size: 22px;
}
.review-count {
  color: var(--muted2);
  font-size: 13px;
}
.review-status {
  margin-top: 12px;
  font-size: 12px;
  color: var(--muted2);
}
.review-status.is-hidden {
  display: none;
}

/* Trustindex embed */
.trustindex-embed {
  margin-top: 18px;
  background: #fff;
  color: #111;
  border-radius: 18px;
  padding: 14px;
}

[data-theme="dark"] .trustindex-embed {
  color-scheme: light;
}
}
.stars { display: inline-flex; gap: 2px; margin-top: 8px; }
.star {
  width: 16px; height: 16px;
  background: radial-gradient(circle at 30% 30%, #fff, #fff0 60%), var(--gold);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  opacity: 0.95;
}
.review-text { color: var(--muted); margin-top: 10px; font-size: 15px; }
.review-meta {
  display:flex; justify-content: space-between; align-items: center;
  margin-top: 14px;
  color: var(--muted2);
  font-size: 12px;
}
.carousel {
  display: grid;
  gap: 12px;
}
.carousel-controls {
  display:flex; gap: 10px; margin-top: 12px;
}
.carousel-controls a.btn {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.is-hidden {
  display: none !important;
}

/* FAQ */
.faq {
  display: grid;
  gap: 10px;
}
.faq-item {
  border-radius: 18px;
  border: 1px solid var(--stroke2);
  background: color-mix(in srgb, var(--card) 88%, transparent);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  border: none;
  background: transparent;
  color: var(--text);
  text-align: left;
  padding: 14px 16px;
  font-weight: 700;
  cursor: pointer;
  display:flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-a {
  max-height: 0;
  opacity: 0.2;
  overflow: hidden;
  transition: max-height 260ms var(--ease), opacity 180ms var(--ease);
  border-top: 1px solid var(--stroke2);
  will-change: max-height;
}
.faq-a-inner {
  padding: 0 16px 14px;
  color: var(--muted);
  overflow: hidden;
}
.faq-item.open .faq-a {
  max-height: 600px;
  opacity: 1;
}
.faq-item:not(.open) .faq-a-inner { padding-bottom: 0; }
.faq-icon {
  width: 18px;
  height: 18px;
  position: relative;
  flex-shrink: 0;
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 2px;
  transform: translate(-50%, -50%);
  background: currentColor;
  border-radius: 2px;
}
.faq-icon::after {
  width: 2px;
  height: 14px;
}
.faq-item.open .faq-icon::after {
  opacity: 0;
}
@media (prefers-reduced-motion: reduce) {
  .faq-a { transition: none; }
}

/* Footer */
footer {
  padding: 40px 0 60px;
  border-top: 1px solid var(--stroke);
  background: color-mix(in srgb, var(--bg2) 72%, transparent);
}
.footer-grid {
  display:grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 18px;
  align-items: start;
}
@media (max-width:900px) { .footer-grid { grid-template-columns: 1fr; } }
small { color: var(--muted2); }
.footer-legal {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  font-size: 0.95rem;
}
.footer-legal a {
  color: inherit;
  text-decoration: underline;
}

/* Floating UI */
.floating {
  position: fixed;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 10px;
  z-index: 1600;
}
.fab {
  width: 52px; height: 52px;
  border-radius: 18px;
  border: 1px solid var(--stroke);
  background: color-mix(in srgb, var(--bg2) 70%, transparent);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow2);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 180ms var(--ease);
}
.fab:hover { transform: translateY(-2px); }
.fab.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
}

/* Chat */
#chatPanel {
  position: fixed;
  right: 18px;
  bottom: 86px;
  width: min(420px, calc(100vw - 36px));
  height: 540px;
  border-radius: 22px;
  border: 1px solid var(--stroke);
  background: color-mix(in srgb, var(--bg2) 82%, transparent);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
  overflow: hidden;
  z-index: 1700;
  transform: translateY(12px);
  opacity: 0;
  pointer-events: none;
  transition: transform 220ms var(--ease), opacity 220ms var(--ease);
}
#chatPanel.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.chat-head {
  padding: 14px 14px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  border-bottom: 1px solid var(--stroke);
}
.chat-head strong { display:block; }
.chat-head span { font-size: 12px; color: var(--muted); }
.chat-body {
  height: calc(540px - 56px - 62px);
  overflow: auto;
  padding: 14px;
  display: grid;
  gap: 10px;
}
.msg {
  max-width: 85%;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid var(--stroke2);
  background: color-mix(in srgb, var(--card) 86%, transparent);
  color: var(--text);
}
.msg.me {
  margin-left: auto;
  background: linear-gradient(135deg, color-mix(in srgb, var(--gold) 18%, var(--card)),
                                    color-mix(in srgb, var(--accent) 14%, var(--card)));
  border-color: color-mix(in srgb, var(--gold) 30%, var(--stroke2));
}
.msg small {
  display:block;
  margin-top: 6px;
  color: var(--muted2);
}
.chat-foot {
  padding: 10px;
  border-top: 1px solid var(--stroke);
  display:flex;
  gap: 8px;
}
.chat-foot input {
  flex: 1;
  border-radius: 14px;
  border: 1px solid var(--stroke);
  background: color-mix(in srgb, var(--card) 80%, transparent);
  color: var(--text);
  padding: 12px 12px;
  outline: none;
}
.chat-foot input::placeholder { color: var(--muted2); }
.chat-foot button {
  min-width: 92px;
}

/* Reveal animations (only hide when JS is enabled) */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 520ms var(--ease), transform 520ms var(--ease);
}
.js-enabled .reveal {
  opacity: 0;
  transform: translateY(10px);
}
.js-enabled .reveal.show {
  opacity: 1;
  transform: translateY(0);
}

/* Subtle shimmer */
.shimmer {
  position: relative;
  overflow: hidden;
}
.shimmer::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-110%);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.10), transparent);
  animation: shimmer 4.4s var(--ease) infinite;
}
@keyframes shimmer {
  0% { transform: translateX(-110%); }
  45% { transform: translateX(110%); }
  100% { transform: translateX(110%); }
}

/* Mobile menu */
#mobileMenu {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.40);
  backdrop-filter: blur(10px);
  z-index: 1650;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms var(--ease);
}
#mobileMenu.open { opacity: 1; pointer-events: auto; }
.mobile-sheet {
  position: absolute;
  left: 18px;
  right: 18px;
  top: calc(var(--headerH) + 12px);
  border-radius: 22px;
  border: 1px solid var(--stroke);
  background: color-mix(in srgb, var(--bg2) 86%, transparent);
  box-shadow: var(--shadow);
  padding: 12px;
}
.mobile-sheet a {
  display:block;
  text-decoration:none;
  color: var(--text);
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid transparent;
}
.mobile-sheet a:hover { background: var(--card); border-color: var(--stroke); }


/* Social links in header */
.social {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-right: 10px;
}
.social-link {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--text);
  border: 1px solid var(--stroke2);
  background: rgba(255,255,255,0.04);
  transition: transform .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease);
}
.social-link:hover {
  transform: translateY(-2px);
  background: rgba(231,192,142,0.12);
  border-color: var(--stroke);
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  padding: 14px 16px;
  background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,0.55));
}
[data-theme="light"] .sticky-cta {
  background: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,246,232,0.92));
}
.sticky-cta__inner {
  max-width: var(--container);
  margin: 0 auto;
  border: 1px solid var(--stroke2);
  border-radius: 18px;
  padding: 12px 12px 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: rgba(12,10,13,0.78);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow2);
}
[data-theme="light"] .sticky-cta__inner {
  background: rgba(255,255,255,0.92);
}
.sticky-cta__text strong {
  display: block;
  font-size: 14px;
  letter-spacing: .2px;
}
.sticky-cta__text span {
  display: block;
  font-size: 13px;
  color: var(--muted);
}


/* === V4 tweaks: header more compact === */
header { height: var(--headerH); }
.brand img { width: 44px; height: 44px; border-radius: 14px; }
.brand .name strong { font-size: 16px; letter-spacing: 0.3px; }
.brand .name span { font-size: 12px; letter-spacing: 0.2px; }
nav { gap: 10px; }
nav a { padding: 8px 10px; font-size: 14px; letter-spacing: 0.3px; border-radius: 11px; }
.header-actions { gap: 10px; }
a.btn.primary.cta-book { padding: 9px 12px; border-radius: 14px; font-size: 13px; }

/* Desktop: hide burger (menu) */
#menuBtn { display: none; }

@media (max-width: 980px) {
  nav { display: none; }
  #menuBtn { display: inline-flex; }
  .header-inner { gap: 10px; }
}

/* Sticky CTA: appear after scroll (not immediately) */
.sticky-cta { opacity: 0; pointer-events: none; transform: translateY(10px); transition: opacity .25s var(--ease), transform .25s var(--ease); }
.sticky-cta.show { opacity: 1; pointer-events: auto; transform: translateY(0); }

/* Schedule: time pill aligned consistently */
.slot { position: relative; }
.slot .title { padding-right: 96px; }
.slot .pill.gold {
  position: absolute;
  top: 16px;
  right: 16px;
  min-width: 72px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Softer reveals */
.reveal { transition-duration: 700ms; }


/* V4: override reveal transition */
.reveal{transition:opacity 700ms var(--ease), transform 700ms var(--ease);}
/* Header CTA: visible after scroll (avoid overload at top) */
header .cta-book { opacity: 0; pointer-events: none; transform: translateY(-2px); transition: opacity .25s var(--ease), transform .25s var(--ease); }
header.scrolled .cta-book { opacity: 1; pointer-events: auto; transform: translateY(0); }

/* Nav: keep in one line on desktop */
@media (min-width: 981px){ nav{flex-wrap:nowrap;} }
