/* ================================================
   LE CALYPSO — Maquette Redesign
   Palette fidèle au site original (teal/turquoise)
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Roboto:wght@300;400;500&display=swap');

:root {
  --teal:        #649498;
  --teal-light:  #68ccd1;
  --teal-dark:   #4a7174;
  --teal-pale:   #edf6f7;
  --dark:        #333333;
  --text:        #666666;
  --text-light:  #999999;
  --white:       #ffffff;
  --light:       #f7f9f9;
  --border:      #dde6e6;

  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Roboto', sans-serif;

  --shadow-sm: 0 2px 8px rgba(100,148,152,0.1);
  --shadow-md: 0 4px 20px rgba(100,148,152,0.15);
  --shadow-lg: 0 8px 40px rgba(100,148,152,0.2);

  --radius:  8px;
  --radius-lg: 16px;
  --t: 0.25s ease;
  --max: 1160px;
}

/* ── RESET ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; overflow-x: hidden; scrollbar-width: none; -ms-overflow-style: none; }
body  { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.65; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
html::-webkit-scrollbar, body::-webkit-scrollbar { width: 0; height: 0; display: none; }
img   { max-width: 100%; display: block; }
a     { text-decoration: none; color: inherit; }
ul    { list-style: none; }
button{ font-family: var(--font-body); }

/* ── TYPOGRAPHY ─────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--dark); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2rem, 4.5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 1.8vw, 1.4rem); }

/* ── LAYOUT ─────────────────────────────────────── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
section    { padding: 80px 0; }

.section-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 10px;
}
.section-title   { margin-bottom: 14px; }
.section-sub     { font-size: 1rem; color: var(--text-light); max-width: 560px; }
.section-head    { margin-bottom: 52px; }
.section-head.center { text-align: center; }
.section-head.center .section-sub { margin: 0 auto; }

/* ── NAV ────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--white);
  box-shadow: 0 1px 0 var(--border);
  transition: box-shadow var(--t);
}
.navbar.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,0.1); }

.nav-wrap {
  max-width: var(--max); margin: 0 auto; padding: 0 24px;
  height: 68px; display: flex; align-items: center; justify-content: space-between;
}
.nav-brand { display: flex; flex-direction: column; gap: 1px; }
.brand-name { font-family: var(--font-head); font-size: 1.25rem; font-weight: 800; color: var(--dark); line-height: 1; }
.brand-sub  { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--teal); }

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-link  {
  font-family: var(--font-head); font-size: 0.8rem; font-weight: 600;
  color: var(--text); padding: 8px 12px; border-radius: var(--radius);
  transition: all var(--t); letter-spacing: 0.02em;
}
.nav-link:hover       { color: var(--teal); background: var(--teal-pale); }
.nav-link.active      { color: var(--teal); }
.nav-link.btn-nav     { background: var(--teal); color: var(--white); margin-left: 8px; }
.nav-link.btn-nav:hover { background: var(--teal-dark); color: var(--white); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--dark); border-radius: 2px; transition: all var(--t); }

/* Mobile nav */
.nav-mobile {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(255,255,255,0.98); backdrop-filter: blur(12px);
  flex-direction: column; align-items: center; justify-content: center; gap: 4px;
}
.nav-mobile.open { display: flex; }
.nav-mobile-link {
  font-family: var(--font-head); font-size: 1.6rem; font-weight: 700;
  color: var(--dark); padding: 12px 32px; transition: color var(--t);
}
.nav-mobile-link:hover, .nav-mobile-link.active { color: var(--teal); }
.nav-mobile-close {
  position: absolute; top: 20px; right: 20px;
  background: none; border: none; font-size: 1.8rem;
  color: var(--text); cursor: pointer; padding: 8px; transition: color var(--t);
}
.nav-mobile-close:hover { color: var(--dark); }

/* ── HERO ───────────────────────────────────────── */
.hero {
  position: relative; height: 100vh; min-height: 600px;
  display: flex; align-items: center; overflow: hidden;
  margin-top: 68px;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 8s ease; transform: scale(1.05);
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.3) 100%);
}
.hero:hover .hero-bg { transform: scale(1); }
.hero-content { position: relative; z-index: 1; max-width: 640px; }
.hero-label {
  display: inline-block;
  font-family: var(--font-head); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  background: rgba(100,148,152,0.25); border: 1px solid rgba(104,204,209,0.5);
  color: var(--teal-light); padding: 6px 16px; border-radius: 100px;
  margin-bottom: 20px;
}
.hero h1 { color: var(--white); margin-bottom: 18px; }
.hero p  { font-size: 1.05rem; color: rgba(255,255,255,0.82); margin-bottom: 36px; max-width: 500px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── PAGE HEADER ────────────────────────────────── */
.page-header {
  position: relative; height: 340px;
  display: flex; align-items: flex-end; padding-bottom: 52px;
  overflow: hidden; margin-top: 68px;
}
.page-header-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.page-header-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 100%);
}
.page-header-content { position: relative; z-index: 1; }
.page-header h1 { color: var(--white); }

.breadcrumb { display: flex; gap: 8px; font-size: 0.78rem; color: rgba(255,255,255,0.55); margin-bottom: 10px; }
.breadcrumb a { color: rgba(255,255,255,0.55); transition: color var(--t); }
.breadcrumb a:hover { color: var(--teal-light); }
.bc-sep { opacity: 0.35; }

/* ── BUTTONS ────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 26px; border-radius: var(--radius);
  font-family: var(--font-head); font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.04em; cursor: pointer; border: none;
  transition: all var(--t); white-space: nowrap;
}
.btn-teal    { background: var(--teal); color: var(--white); box-shadow: 0 3px 12px rgba(100,148,152,0.35); }
.btn-teal:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 5px 20px rgba(100,148,152,0.45); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.5); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); transform: translateY(-2px); }
.btn-outline-teal { background: transparent; color: var(--teal); border: 2px solid var(--teal); }
.btn-outline-teal:hover { background: var(--teal); color: var(--white); transform: translateY(-2px); }
.btn-white { background: var(--white); color: var(--teal); font-weight: 700; }
.btn-white:hover { background: var(--teal-pale); transform: translateY(-2px); }

/* ── STRIP (stats/USPs) ─────────────────────────── */
.strip { background: var(--teal); padding: 60px 0; }
.strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.strip-item { text-align: center; }
.strip-number {
  font-family: var(--font-head); font-size: 2rem; font-weight: 800;
  color: var(--white); line-height: 1; margin-bottom: 6px; display: block;
}
.strip-label { font-size: 0.8rem; color: rgba(255,255,255,0.75); font-family: var(--font-head); font-weight: 500; }

/* ── CARDS ──────────────────────────────────────── */
.cards { display: grid; gap: 24px; }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.cards-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  position: relative;
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--border);
  box-shadow: var(--shadow-sm); transition: all var(--t);
}
.card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  border-radius: 0 0 var(--radius) var(--radius);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(100,148,152,0.18); }
.card:hover::after { transform: scaleX(1); }
.card-img-wrap { overflow: hidden; }
.card-img { width: 100%; height: 210px; object-fit: cover; transition: transform 0.6s ease; }
.card:hover .card-img { transform: scale(1.07); }
.card-body  { padding: 22px; }
.card-label { font-family: var(--font-head); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--teal); margin-bottom: 6px; }
.card-title { font-family: var(--font-head); font-size: 1.1rem; margin-bottom: 8px; color: var(--dark); }
.card-text  { font-size: 0.85rem; color: var(--text); line-height: 1.65; }
.card-foot  { padding: 14px 22px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }

/* ── SPLIT ──────────────────────────────────────── */
.split { display: grid; grid-template-columns: 1fr 1fr; min-height: 480px; }
.split-img { overflow: hidden; position: relative; }
.split-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.split-img:hover img { transform: scale(1.04); }
.split-body { display: flex; align-items: center; padding: 72px 56px; }
.split-body.bg-teal { background: var(--teal); }
.split-body.bg-teal .section-tag { color: rgba(255,255,255,0.7); }
.split-body.bg-teal h2, .split-body.bg-teal p { color: var(--white); }
.split-body.bg-teal p { color: rgba(255,255,255,0.8); }
.split-body.bg-light { background: var(--light); }
.split-inner { max-width: 440px; }
.split-inner p { color: var(--text); line-height: 1.75; margin-bottom: 14px; }

/* ── MENU TABS ──────────────────────────────────── */
.tabs-wrap { text-align: center; }
.tabs {
  display: inline-flex; gap: 3px; padding: 4px;
  background: var(--light); border-radius: var(--radius);
  border: 1px solid var(--border); margin-bottom: 48px; flex-wrap: wrap; justify-content: center;
}
.tab {
  padding: 9px 22px; border-radius: calc(var(--radius) - 2px);
  font-family: var(--font-head); font-size: 0.82rem; font-weight: 600;
  cursor: pointer; border: none; background: transparent; color: var(--text);
  transition: all var(--t);
}
.tab.active { background: var(--teal); color: var(--white); }
.tab:hover:not(.active) { background: var(--teal-pale); color: var(--teal); }

.panel { display: none; }
.panel.active { display: block; }

/* Menu list */
.menu-list { display: grid; }
.menu-row {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 18px 0; border-bottom: 1px solid var(--border); gap: 16px;
}
.menu-row:last-child { border-bottom: none; }
.menu-name { font-family: var(--font-head); font-size: 0.98rem; font-weight: 600; color: var(--dark); margin-bottom: 3px; }
.menu-desc { font-size: 0.78rem; color: var(--text-light); }
.menu-price { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--teal); white-space: nowrap; padding-top: 2px; }
.menu-row.star .menu-name::after { content: '  ★'; font-size: 0.7rem; color: var(--teal-light); }

/* ── GALLERY ────────────────────────────────────── */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.gal-item { position: relative; overflow: hidden; border-radius: var(--radius); aspect-ratio: 4/3; cursor: zoom-in; }
.gal-item.tall { grid-row: span 2; aspect-ratio: auto; }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gal-item:hover img { transform: scale(1.07); }
.gal-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0); transition: background var(--t); display: flex; align-items: center; justify-content: center; }
.gal-item:hover .gal-overlay { background: rgba(100,148,152,0.45); }
.gal-icon { font-size: 2rem; color: var(--white); opacity: 0; transform: scale(0.7); transition: all var(--t); }
.gal-item:hover .gal-icon { opacity: 1; transform: scale(1); }

/* ── CTA BAND ───────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  text-align: center; padding: 88px 0;
}
.cta-band h2 { color: var(--white); margin-bottom: 12px; }
.cta-band p  { color: rgba(255,255,255,0.82); font-size: 1.05rem; margin-bottom: 36px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── INFO CARDS ─────────────────────────────────── */
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.info-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  transition: all var(--t);
}
.info-card:hover { box-shadow: 0 8px 32px rgba(100,148,152,0.15); transform: translateY(-4px); border-color: var(--teal-light); }
.info-icon  { font-size: 2rem; margin-bottom: 14px; }
.info-title { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; color: var(--dark); }
.info-body  { font-size: 0.85rem; color: var(--text); line-height: 1.75; }
.info-body strong { color: var(--dark); font-weight: 600; }

/* ── HOURS ──────────────────────────────────────── */
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr { border-bottom: 1px solid var(--border); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td { padding: 11px 0; font-size: 0.85rem; color: var(--text); }
.hours-table td:first-child { font-family: var(--font-head); font-weight: 600; color: var(--dark); width: 120px; }

.badge {
  display: inline-block; padding: 2px 10px; border-radius: 100px;
  font-family: var(--font-head); font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.badge-teal  { background: rgba(100,148,152,0.12); color: var(--teal); }
.badge-gray  { background: var(--light); color: var(--text-light); border: 1px solid var(--border); }
.badge-green { background: rgba(52,199,89,0.1); color: #2eb358; }

/* ── CONTACT FORM ───────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 72px; align-items: start; }
.form-group   { margin-bottom: 18px; }
.form-label   { display: block; font-family: var(--font-head); font-size: 0.75rem; font-weight: 600; color: var(--dark); margin-bottom: 6px; letter-spacing: 0.03em; }
.form-input, .form-textarea {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  font-family: var(--font-body); font-size: 0.9rem; color: var(--dark);
  background: var(--white); transition: all var(--t); outline: none;
}
.form-input:focus, .form-textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(100,148,152,0.1); }
.form-textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ── FOOTER ─────────────────────────────────────── */
.footer { background: #2a3535; color: var(--white); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 44px; margin-bottom: 48px; }
.foot-logo    { font-family: var(--font-head); font-size: 1.4rem; font-weight: 800; color: var(--white); margin-bottom: 4px; }
.foot-sub     { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--teal-light); margin-bottom: 16px; }
.foot-about   { font-size: 0.84rem; color: rgba(255,255,255,0.5); line-height: 1.75; }
.foot-head    { font-family: var(--font-head); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 18px; }
.foot-links   { display: flex; flex-direction: column; gap: 9px; }
.foot-link    { font-size: 0.84rem; color: rgba(255,255,255,0.58); transition: color var(--t); }
.foot-link:hover { color: var(--white); }
.foot-info-row { display: flex; gap: 10px; font-size: 0.84rem; color: rgba(255,255,255,0.58); margin-bottom: 12px; align-items: flex-start; }
.foot-info-icon{ flex-shrink: 0; margin-top: 2px; }

.payment-row { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 14px; }
.pay-badge   { padding: 4px 10px; border: 1px solid rgba(255,255,255,0.12); border-radius: 4px; font-size: 0.65rem; font-weight: 600; color: rgba(255,255,255,0.45); }

.footer-sep  { height: 1px; background: rgba(255,255,255,0.07); }
.footer-bot  { padding: 22px 0; display: flex; justify-content: space-between; align-items: center; }
.foot-copy   { font-size: 0.76rem; color: rgba(255,255,255,0.28); }
.foot-legal  { display: flex; gap: 22px; }
.foot-legal a{ font-size: 0.76rem; color: rgba(255,255,255,0.28); transition: color var(--t); }
.foot-legal a:hover { color: rgba(255,255,255,0.65); }

/* ── LIGHTBOX ───────────────────────────────────── */
.lightbox { display: none; position: fixed; inset: 0; z-index: 9999; background: rgba(0,0,0,0.92); align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox img  { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: 4px; }
.lb-close, .lb-prev, .lb-next { background: rgba(255,255,255,0.1); border: none; color: var(--white); cursor: pointer; border-radius: var(--radius); transition: background var(--t); }
.lb-close { position: absolute; top: 20px; right: 20px; font-size: 1.4rem; padding: 10px 14px; }
.lb-prev, .lb-next { position: absolute; top: 50%; transform: translateY(-50%); font-size: 1.4rem; padding: 14px 18px; }
.lb-prev { left: 16px; }
.lb-next { right: 16px; }
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,0.22); }

/* ── UTILS ──────────────────────────────────────── */
.mt-8  { margin-top:  8px; } .mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; } .mt-32 { margin-top: 32px; }
.mb-8  { margin-bottom: 8px; } .mb-16{ margin-bottom: 16px; } .mb-24 { margin-bottom: 24px; }
.bg-light { background: var(--light); }
.bg-teal  { background: var(--teal); }

/* ── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 1024px) {
  .strip-grid  { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .split-body  { padding: 56px 40px; }
}
@media (max-width: 768px) {
  section { padding: 56px 0; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .cards-3, .cards-2 { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .split-img { height: 280px; }
  .split-body { padding: 44px 24px; }
  .info-grid  { grid-template-columns: 1fr; }
  .gallery    { grid-template-columns: repeat(2, 1fr); }
  .gal-item.tall { grid-row: auto; aspect-ratio: 4/3; }
  .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bot  { flex-direction: column; gap: 10px; text-align: center; }
  .hero-btns, .cta-actions { flex-direction: column; align-items: flex-start; }
  .cta-actions { align-items: center; }
  .form-row { grid-template-columns: 1fr; }
  .page-header { height: 260px; }
  .strip-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}
@media (max-width: 480px) {
  .gallery { grid-template-columns: 1fr; }
  .strip-grid { grid-template-columns: 1fr; }
}

/* ── PLACEHOLDER PHOTOS ─────────────────────────── */
.img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 200px;
  background: var(--light);
  border: 2px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.img-placeholder span {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.card-img-wrap .img-placeholder { min-height: 210px; }

/* ── ANIMATIONS SCROLL REVEAL ───────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(var(--rv-from, 32px));
  transition: opacity 0.6s ease var(--rv-d, 0s), transform 0.6s ease var(--rv-d, 0s);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-48px);
  transition: opacity 0.7s ease var(--rv-d, 0s), transform 0.7s ease var(--rv-d, 0s);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(48px);
  transition: opacity 0.7s ease var(--rv-d, 0s), transform 0.7s ease var(--rv-d, 0s);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ── STRIP ANIM ─────────────────────────────────── */
.strip-anim {
  opacity: 0;
  transform: translateY(var(--from, 24px));
  transition: opacity 0.55s ease var(--d, 0s), transform 0.55s ease var(--d, 0s);
}
.strip-anim.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── TRANSITIONS DE PAGE ─────────────────────────── */
body {
  animation: page-in 0.35s ease both;
}
@keyframes page-in {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
body.page-out {
  animation: page-out 0.25s ease forwards;
}
@keyframes page-out {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(-10px); }
}

/* ── BOUTON RETOUR EN HAUT ───────────────────────── */
#back-to-top {
  position: fixed;
  bottom: 92px;
  right: 28px;
  z-index: 998;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  pointer-events: none;
}
#back-to-top.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
#back-to-top:hover {
  border-color: var(--teal);
  box-shadow: 0 4px 16px rgba(100,148,152,0.25);
}
#back-to-top svg {
  width: 16px;
  height: 16px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── BARRE PROGRESSION SCROLL ───────────────────── */
#scroll-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  z-index: 2000;
  transition: width 0.1s linear;
  pointer-events: none;
}

/* ── BOUTON FLOTTANT APPEL ───────────────────────── */
.fab-call {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--teal);
  color: #fff;
  text-decoration: none;
  padding: 0 22px 0 18px;
  height: 52px;
  border-radius: 52px;
  box-shadow: 0 4px 20px rgba(100,148,152,0.45);
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  animation: fab-appear 0.5s cubic-bezier(0.34,1.56,0.64,1) 1.2s both;
}
.fab-call:hover {
  background: var(--teal-dark);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 28px rgba(100,148,152,0.55);
}
.fab-call:active { transform: scale(0.97); }
.fab-icon {
  font-size: 1.1rem;
  line-height: 1;
}
@keyframes fab-appear {
  from { opacity: 0; transform: translateY(20px) scale(0.8); }
  to   { opacity: 1; transform: translateY(0)    scale(1); }
}
@media (max-width: 768px) {
  .fab-call .fab-label { display: none; }
  .fab-call { padding: 0; width: 52px; justify-content: center; }
}

/* ── BANDEAU FERMÉ ───────────────────────────────── */
.closed-banner {
  display: none;
  position: relative;
  z-index: 1001;
  background: #2a3535;
  border-bottom: 1px solid rgba(100,148,152,0.25);
  padding: 10px 0;
}
.closed-banner.show { display: block; }
.closed-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.closed-banner-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e07a5f;
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.7); }
}
.closed-banner-text {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.03em;
}
.closed-banner-text strong {
  color: #fff;
}
.closed-banner-sep {
  color: rgba(255,255,255,0.2);
  font-size: 0.7rem;
}
.closed-banner-hours {
  font-family: var(--font-head);
  font-size: 0.72rem;
  color: var(--teal-light);
  font-weight: 600;
  letter-spacing: 0.02em;
}
