/* =========================================================
   La Porte des Rêves — Guillaume Lacroix
   ========================================================= */

:root {
  --deep: #07060e;
  --void: #050410;
  --night: #0e0c1e;
  --mist: #1a1535;
  --violet: #2d1b55;
  --violet-rich: #3d2470;
  --violet-soft: #5a3a8a;
  --violet-glow: #7b52b5;
  --magenta: #b46b8d;
  --gold: #c9a961;
  --gold-light: #e8d5a3;
  --gold-bright: #f1b795;
  --silver: #c4c0d8;
  --pearl: #eeeaf5;
  --lavender: #d4c8ec;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%,    rgba(58, 36, 110, 0.22) 0%, transparent 65%),
    radial-gradient(ellipse 60% 45% at 15% 55%,   rgba(123, 82, 181, 0.10) 0%, transparent 65%),
    radial-gradient(ellipse 60% 45% at 85% 75%,   rgba(180, 107, 141, 0.08) 0%, transparent 65%),
    radial-gradient(ellipse 90% 60% at 50% 100%,  rgba(20, 10, 38, 0.5) 0%, transparent 60%),
    linear-gradient(180deg, #030208 0%, #060410 30%, #0a0818 60%, #060410 85%, #020108 100%);
  background-attachment: fixed;
  color: var(--pearl);
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* =========================================================
   3D COSMOS CANVAS — fixed background, always visible
   ========================================================= */
#cosmos-canvas {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1;
  display: block;
  pointer-events: none;
}

/* =========================================================
   HERO FRAME — first image (B3 lake portal). Scales/fades on scroll.
   Driven by --iris-progress (0..1) set from JS.
   The image's arch is at ~50% x, ~32% y of the image, so we use
   that as the zoom origin — feels like flying *into* the portal.
   ========================================================= */
.hero-frame {
  position: fixed;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  overflow: hidden;
  --p: var(--iris-progress, 0);
}
.hero-frame-image {
  position: absolute;
  inset: 0;
  background-image: url('assets/concepts/B3-bordure-blanche.png');
  background-size: cover;
  background-position: center;
  /* Subtle breathing zoom at rest, big zoom-into-portal on scroll */
  transform: scale(calc(1.05 + var(--p) * 4.5));
  transform-origin: 50% 33%;
  filter: brightness(calc(1 + var(--p) * 0.4)) blur(calc(var(--p) * 12px));
  opacity: calc(1 - var(--p) * 1.15);
  transition: filter 0.2s linear;
  will-change: transform, opacity, filter;
}
/* soft vignette + slight color matching with the cosmos behind */
.hero-frame-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 33%, transparent 0%, rgba(7, 6, 14, 0.05) 60%, rgba(7, 6, 14, 0.45) 100%);
  pointer-events: none;
  opacity: calc(1 - var(--p) * 1.5);
}

/* =========================================================
   HERO OVERLAY (title text — visible while white veil is up)
   ========================================================= */
.hero-overlay {
  position: fixed;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
  transition: opacity 0.3s ease;
}
.hero-content {
  max-width: 900px;
  /* shift slightly upward so the title sits centered inside the arch */
  transform: translateY(-6vh);
}
.hero-overline {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 28px;
  opacity: 0;
  animation: heroFade 1.2s 0.4s forwards;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.7), 0 0 30px rgba(123, 82, 181, 0.4);
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(56px, 9vw, 120px);
  font-weight: 400;
  line-height: 1.0;
  color: var(--pearl);
  margin-bottom: 22px;
  opacity: 0;
  animation: heroFade 1.4s 0.7s forwards;
  letter-spacing: -0.5px;
  text-shadow:
    0 2px 20px rgba(0, 0, 0, 0.95),
    0 4px 40px rgba(0, 0, 0, 0.85),
    0 0 80px rgba(7, 6, 14, 0.7);
}
.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 2.5vw, 30px);
  font-style: italic;
  font-weight: 300;
  color: var(--lavender);
  letter-spacing: 1px;
  opacity: 0;
  animation: heroFade 1.4s 1s forwards;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.75);
}
@keyframes heroFade {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-scroll-hint {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  opacity: 0;
  animation: hintAppear 1.5s 2s forwards;
}
.hero-scroll-hint span {
  display: block;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 14px;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.8);
}
.scroll-arrow {
  width: 1px;
  height: 30px;
  background: linear-gradient(180deg, transparent, var(--gold-light));
  margin: 0 auto;
  position: relative;
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes hintAppear { to { opacity: 1; } }
@keyframes scrollDown {
  0%   { transform: translateY(-6px); opacity: 0.3; }
  50%  { transform: translateY(0);    opacity: 1; }
  100% { transform: translateY(6px);  opacity: 0.3; }
}

/* Scroll-driver: invisible spacer that drives the door transition */
.scroll-driver {
  height: 220vh;
  position: relative;
  z-index: 1;
  pointer-events: none;
}

/* =========================================================
   MAIN CONTENT — over the 3D canvas
   ========================================================= */
.cosmos {
  position: relative;
  z-index: 2;
  /* The cosmos travels through colour zones as we scroll deeper:
     sombre → violet → magenta-rosé → violet → sombre.
     Sits on top of the fixed dark body bg, scrolls with the content. */
  background: linear-gradient(180deg,
    rgba(58, 36, 110, 0.00)  0%,
    rgba(58, 36, 110, 0.18)  8%,
    rgba(72, 42, 130, 0.32) 22%,
    rgba(123, 82, 181, 0.36) 38%,
    rgba(180, 107, 141, 0.34) 52%,
    rgba(196, 106, 139, 0.28) 62%,
    rgba(123, 82, 181, 0.30) 75%,
    rgba(72, 42, 130, 0.20) 88%,
    rgba(58, 36, 110, 0.00) 100%);
  padding-top: 4vh;
}

/* Add a soft darkening behind content sections so text stays readable
   over the cosmos animation. Each section has its own glass panel. */

.section {
  padding: 12vh 24px;
  position: relative;
  z-index: 1;
}
.container { max-width: 1080px; margin: 0 auto; }
.container-narrow { max-width: 720px; margin: 0 auto; }

.section-welcome {
  text-align: center;
  padding-top: 22vh;
}

.overline, .eyebrow {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 7px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 26px;
  text-shadow: 0 0 10px rgba(0,0,0,0.6);
}
.eyebrow {
  display: inline-block;
  padding: 6px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
}

.display {
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 400;
  line-height: 1.05;
  color: var(--pearl);
  margin-bottom: 30px;
  letter-spacing: -0.5px;
  text-shadow: 0 4px 40px rgba(0,0,0,0.6), 0 0 30px rgba(123, 82, 181, 0.3);
}
.h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--pearl);
  margin: 18px 0 30px;
  text-shadow: 0 2px 30px rgba(0,0,0,0.7);
}
.lede {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 400;
  line-height: 1.6;
  color: var(--lavender);
  max-width: 720px;
  margin: 0 auto 40px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.7);
}
.prose {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(21px, 2.1vw, 26px);
  font-weight: 400;
  line-height: 1.75;
  color: var(--lavender);
  margin-bottom: 24px;
  text-shadow: 0 1px 10px rgba(0,0,0,0.6);
}
.prose em { color: var(--gold-light); font-style: italic; }

.divider-soft {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 50px auto 0;
}

/* Apple-style frosted glass — subtle, almost transparent
   Strong blur + low-alpha tint + faint inner highlight at top */
.glass {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 8px 32px rgba(0, 0, 0, 0.35);
}

/* Pillars */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}
.pillar {
  text-align: center;
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 8px 28px rgba(0, 0, 0, 0.3);
  transition: transform 0.4s ease, border-color 0.4s ease, background 0.4s ease;
}
.pillar:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 169, 97, 0.3);
  background: rgba(255, 255, 255, 0.04);
}
.pillar-icon { font-size: 26px; color: var(--gold); margin-bottom: 16px; }
.pillar-title { font-family: 'Playfair Display', serif; font-size: 26px; color: var(--pearl); margin-bottom: 12px; }
.pillar-text {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 300; font-size: 17px;
  color: var(--silver); line-height: 1.6;
}

/* Session card */
.session-card {
  margin-top: 40px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 169, 97, 0.18);
  border-radius: 20px;
  padding: 50px 40px;
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 12px 40px rgba(0, 0, 0, 0.4);
}
.session-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(201, 169, 97, 0.15);
  margin-bottom: 40px;
}
.session-item { text-align: center; }
.session-label {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 300; font-size: 13px;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.session-value {
  font-family: 'Playfair Display', serif;
  font-size: 36px; color: var(--pearl);
  margin-bottom: 10px; line-height: 1.2;
}
.session-note {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 19px;
  color: var(--silver); line-height: 1.45;
}

.session-flow { margin-bottom: 40px; }
.flow-title {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 300; font-size: 14px;
  letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold); text-align: center; margin-bottom: 32px;
}
.flow-list { list-style: none; counter-reset: flow; }
.flow-list li {
  position: relative;
  padding: 24px 0 24px 88px;
  counter-increment: flow;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; line-height: 1.65;
  color: var(--lavender);
  border-bottom: 1px solid rgba(123, 82, 181, 0.15);
}
.flow-list li:last-child { border-bottom: none; }
.flow-list li::before {
  content: counter(flow, decimal-leading-zero);
  position: absolute; left: 0; top: 24px;
  font-family: 'Playfair Display', serif;
  font-size: 44px; color: var(--gold); font-style: italic;
  line-height: 1;
  text-shadow: 0 0 30px rgba(201, 169, 97, 0.3);
}
.flow-list li strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-weight: 500; font-size: 26px;
  color: var(--pearl); margin-bottom: 6px;
}

/* CTA button */
.cta-button {
  display: inline-block;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 400; font-size: 14px;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--deep);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  padding: 18px 38px;
  border: none; border-radius: 99px;
  text-decoration: none; cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 30px rgba(201, 169, 97, 0.25);
  margin: 30px auto 0; text-align: center;
  white-space: nowrap;
}
.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201, 169, 97, 0.4);
}
.session-card .cta-button {
  display: block;
  width: fit-content;
  max-width: 100%;
}
.cta-button-ghost {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  box-shadow: none;
}
.cta-button-ghost:hover { background: rgba(201, 169, 97, 0.08); }

/* Group card */
.group-card {
  margin-top: 40px;
  text-align: center;
  padding: 50px 36px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(180, 107, 141, 0.18);
  border-radius: 20px;
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 10px 36px rgba(0, 0, 0, 0.38);
}
.group-steps {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 26px;
  color: var(--lavender); line-height: 2;
  margin-bottom: 32px;
}
.group-steps .dot { color: var(--gold); margin: 0 10px; }
.group-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic; font-size: 28px;
  color: var(--gold-light);
  margin: 32px auto; max-width: 520px;
}

/* FAQ */
.faq-item {
  border-bottom: 1px solid rgba(123, 82, 181, 0.2);
  padding: 22px 0;
  transition: border-color 0.3s ease;
}
.faq-item:first-of-type {
  border-top: 1px solid rgba(123, 82, 181, 0.2);
  margin-top: 30px;
}
.faq-item summary {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 2.2vw, 26px);
  color: var(--pearl);
  cursor: pointer; list-style: none;
  position: relative; padding-right: 40px;
  transition: color 0.3s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute; right: 0; top: 50%;
  transform: translateY(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px; font-weight: 300;
  color: var(--gold);
  transition: transform 0.3s ease;
}
.faq-item[open] summary { color: var(--gold-light); }
.faq-item[open] summary::after { content: "−"; }
.faq-item summary:hover { color: var(--gold-light); }
.faq-item p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; line-height: 1.7;
  color: var(--lavender);
  margin-top: 18px; padding-right: 40px;
}

/* =========================================================
   BOOKING
   ========================================================= */
.booking {
  margin-top: 40px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  padding: 40px 32px;
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 12px 40px rgba(0, 0, 0, 0.4);
}
.booking-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 30px; padding-bottom: 24px;
  border-bottom: 1px solid rgba(201, 169, 97, 0.15);
}
.booking-nav {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--gold-light);
  width: 42px; height: 42px;
  border-radius: 50%;
  font-size: 22px; cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  font-family: 'Josefin Sans', sans-serif;
  line-height: 1;
}
.booking-nav:hover:not(:disabled) {
  background: rgba(201, 169, 97, 0.12);
  border-color: var(--gold);
}
.booking-nav:disabled { opacity: 0.25; cursor: not-allowed; }
.booking-week {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 20px;
  color: var(--pearl); text-align: center;
}

.booking-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
}
.day {
  text-align: center;
  padding: 16px 8px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(14px) saturate(130%);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
  transition: all 0.3s ease;
  cursor: pointer; position: relative;
}
.day.disabled {
  opacity: 0.3; cursor: not-allowed;
  background: rgba(255, 255, 255, 0.01);
}
.day.disabled:hover { transform: none; border-color: rgba(255, 255, 255, 0.06); }
.day:hover:not(.disabled) {
  border-color: rgba(201, 169, 97, 0.35);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}
.day.selected {
  border-color: var(--gold);
  background: rgba(201, 169, 97, 0.1);
  box-shadow: 0 0 25px rgba(201, 169, 97, 0.2);
}
.day-name {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 300; font-size: 11px;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 6px;
}
.day-num {
  font-family: 'Playfair Display', serif;
  font-size: 28px; color: var(--pearl);
  line-height: 1; margin-bottom: 6px;
}
.day-month {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 300; font-size: 11px;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--silver); margin-bottom: 12px;
}
.day-slots {
  display: flex; flex-direction: column;
  gap: 4px; margin-top: 8px;
}
.slot {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 300; font-size: 13px;
  padding: 6px 4px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 6px;
  color: var(--lavender);
  background: rgba(255, 255, 255, 0.025);
  cursor: pointer;
  transition: all 0.25s ease;
}
.slot:hover:not(.taken) {
  background: rgba(201, 169, 97, 0.15);
  color: var(--gold-light);
  border-color: var(--gold);
}
.slot.taken {
  opacity: 0.3; cursor: not-allowed;
  text-decoration: line-through;
}
.slot.active {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--deep);
  border-color: var(--gold);
}
.day-empty {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 13px;
  color: var(--silver); opacity: 0.5;
  margin-top: 8px;
}

/* Booking form */
.booking-form {
  margin-top: 36px; padding-top: 36px;
  border-top: 1px solid rgba(201, 169, 97, 0.15);
  animation: formAppear 0.5s ease forwards;
}
@keyframes formAppear { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.form-selected {
  text-align: center; margin-bottom: 28px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px dashed rgba(201, 169, 97, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.form-selected-label {
  display: block;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 300; font-size: 11px;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 6px;
}
.form-selected-value {
  font-family: 'Playfair Display', serif;
  font-size: 22px; color: var(--pearl);
}

#reservation-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
#reservation-form label { display: flex; flex-direction: column; gap: 8px; }
#reservation-form label span {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 300; font-size: 12px;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold);
}
#reservation-form label em {
  text-transform: none; letter-spacing: 1px;
  color: var(--silver); font-style: italic;
}
#reservation-form input, #reservation-form textarea {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 14px 16px;
  color: var(--pearl);
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: border-color 0.3s ease, background 0.3s ease;
  resize: vertical;
}
#reservation-form input:focus, #reservation-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.06);
}
#reservation-form input::placeholder, #reservation-form textarea::placeholder {
  color: rgba(212, 200, 236, 0.5);
  font-style: italic;
}
.form-note {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 15px;
  color: var(--silver); text-align: center; margin-top: 8px;
}
#reservation-form .cta-button { margin: 14px auto 0; }

.booking-confirm {
  text-align: center; padding: 50px 20px;
  animation: formAppear 0.6s ease forwards;
}
.confirm-glyph {
  font-size: 36px; color: var(--gold);
  margin-bottom: 20px;
  animation: twinkle 2.5s ease-in-out infinite alternate;
}
@keyframes twinkle {
  0%   { opacity: 0.5; }
  100% { opacity: 1; }
}
.booking-confirm h4 {
  font-family: 'Playfair Display', serif;
  font-size: 32px; font-weight: 400;
  color: var(--pearl); margin-bottom: 16px;
}
.booking-confirm p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px; color: var(--lavender); line-height: 1.7;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  text-align: center;
  padding: 80px 24px 60px;
  margin-top: 60px;
  border-top: 1px solid rgba(123, 82, 181, 0.15);
  background: linear-gradient(180deg, transparent, rgba(7, 6, 14, 0.6));
  position: relative; z-index: 1;
}
.footer-logo img { width: 56px; opacity: 0.75; }
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 22px; color: var(--pearl); margin-top: 12px;
  text-shadow: 0 0 16px rgba(0,0,0,0.6);
}
.footer-name {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 300; font-size: 13px;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-top: 12px;
}
.footer-addr {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 16px;
  color: var(--silver); margin-top: 10px;
}
.footer-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 17px;
  color: var(--gold-light); margin-top: 36px;
  max-width: 460px; margin-left: auto; margin-right: auto;
  line-height: 1.6;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 768px) {
  .pillars { grid-template-columns: 1fr; gap: 16px; }
  .session-grid { grid-template-columns: 1fr; gap: 24px; padding-bottom: 30px; margin-bottom: 30px; }
  .session-card { padding: 36px 22px; }
  .booking { padding: 26px 18px; }
  .booking-grid { grid-template-columns: 1fr; gap: 8px; }
  .day { display: grid; grid-template-columns: auto 1fr; align-items: center; text-align: left; padding: 14px 18px; gap: 16px; }
  .day-name { margin-bottom: 0; }
  .day-num { font-size: 22px; margin-bottom: 0; }
  .day-month { display: none; }
  .day-slots { flex-direction: row; flex-wrap: wrap; margin-top: 0; grid-column: 2; justify-content: flex-end; }
  .slot { padding: 6px 12px; }
  .day-empty { grid-column: 2; text-align: right; margin-top: 0; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 10vh 18px; }
}

@media (max-width: 480px) {
  .session-card { padding: 28px 16px; }
  .group-card { padding: 36px 22px; }
  .group-steps { font-size: 18px; }
  .hero-title { font-size: 56px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
