:root {
  --paper: rgba(255, 250, 241, 0.84);
  --ink: #13233b;
  --muted: #5e6f82;
  --line: rgba(19, 35, 59, 0.1);
  --navy: #1e2d79;
  --aqua: #2aa0d7;
  --lime: #9ac942;
  --orange: #f08a24;
  --shadow: 0 24px 70px rgba(19, 35, 59, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at 12% 10%, rgba(68, 142, 255, .2), transparent 24%),
    radial-gradient(circle at 84% 8%, rgba(42,160,215,.16), transparent 20%),
    linear-gradient(180deg, #d8e6f7 0%, #aebfda 34%, #8da3c6 100%);
}

.noise {
  position: fixed;
  inset: 0;
  z-index: -3;
  opacity: .045;
  background-image:
    linear-gradient(rgba(19,35,59,.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(19,35,59,.15) 1px, transparent 1px);
  background-size: 24px 24px;
}

.glow {
  position: fixed;
  z-index: -2;
  border-radius: 999px;
  filter: blur(34px);
  opacity: .55;
}
.glow-a { top: 80px; right: -120px; width: 320px; height: 320px; background: rgba(42,160,215,.2); }
.glow-b { left: -90px; bottom: 100px; width: 260px; height: 260px; background: rgba(30,45,121,.16); }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.page {
  width: min(1120px, calc(100% - 94px));
  margin: 0 auto;
  padding: 16px 0 28px;
}

.site-header, .hero, .section, .announcement-bar, .site-footer {
  backdrop-filter: blur(18px);
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 16px;
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(255,255,255,.84);
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand img { width: 56px; border-radius: 14px; }
.brand span { display: flex; flex-direction: column; gap: 2px; }
.brand strong, .hero h1, .section h2, .program-top h3, .service-card h3, .promo-card h2 {
  font-family: "Outfit", sans-serif;
}
.brand small { color: var(--muted); }

.site-nav { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: .95rem; }
.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: rgba(255,255,255,.32);
  transition: transform 180ms ease, color 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}
.site-nav a:hover, .site-nav a:focus-visible {
  color: var(--navy);
  background: rgba(255,255,255,.88);
  border-color: rgba(19,35,59,.08);
  box-shadow: 0 10px 22px rgba(19,35,59,.09);
  transform: translateY(-1px);
}
.site-nav a.is-active,
.site-nav a[aria-current="page"] {
  color: white;
  background: linear-gradient(135deg, var(--navy), #3556cb);
  border-color: rgba(255,255,255,.26);
  box-shadow: 0 12px 24px rgba(30,45,121,.22);
}

.header-cta, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.header-cta, .button-primary {
  color: white;
  background: linear-gradient(135deg, var(--navy), #314ec1);
  box-shadow: 0 12px 24px rgba(30,45,121,.25);
}
.button-secondary { color: var(--ink); background: rgba(255,255,255,.84); border: 1px solid var(--line); }
.header-cta:hover, .button:hover { transform: translateY(-2px); }

.hero {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 22px;
  align-items: center;
  margin-top: 18px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,255,255,.94));
  border: 1px solid rgba(255,255,255,.84);
  border-radius: 38px;
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--aqua);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .72rem;
  font-weight: 800;
}

.hero h1 {
  margin: 0;
  max-width: 11ch;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 1;
  letter-spacing: -.045em;
}
.hero-text, .section p, .program-card p, .service-card p, .promo-card p, .contact-list span, .contact-list strong, .feature-list li {
  line-height: 1.68;
}
.hero-text { max-width: 58ch; color: var(--muted); font-size: .96rem; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 18px;
}
.hero-stats article {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.86);
  border: 1px solid var(--line);
}
.hero-stats strong { display: block; font-family: "Outfit", sans-serif; font-size: 1.45rem; }
.hero-stats span { color: var(--muted); font-size: .86rem; }

.hero-media { position: relative; min-height: 520px; }
.hero-video-cta {
  position: absolute;
  right: 26px;
  bottom: 18px;
  z-index: 4;
  background: rgba(255,255,255,.94);
  box-shadow: 0 16px 34px rgba(19,35,59,.16);
}
.media-link { cursor: zoom-in; }
.hero-main {
  position: absolute;
  inset: 0 0 44px 20px;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 30px 70px rgba(19,35,59,.18);
}
.hero-main img {
  object-fit: contain;
  transform: none;
  animation: none;
  background: linear-gradient(180deg, rgba(224,233,246,.88), rgba(196,211,233,.78));
}
.hero-main img, .hero-side img, .media-card img, .service-image img, .ecology-media img, .loyalty-card-main img, .loyalty-card-side img, .contact-shot img, .page-hero-media img, .inline-image img, .gallery-row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: none;
  animation: none;
}
.gallery-row img {
  transform: scale(1.05);
  animation: kenBurns 18s ease-in-out infinite alternate;
}
.hero-main img {
  object-fit: contain;
  transform: none;
  animation: none;
}

.hero-main,
.hero-side,
.media-card,
.ecology-media,
.service-image,
.loyalty-card-main,
.loyalty-card-side,
.contact-shot,
.page-hero-media,
.inline-image,
.gallery-row a {
  position: relative;
  isolation: isolate;
  border: 1px solid rgba(255,255,255,.82);
}

.hero-main::after,
.hero-side::after,
.media-card::after,
.ecology-media::after,
.service-image::after,
.loyalty-card-main::after,
.loyalty-card-side::after,
.contact-shot::after,
.page-hero-media::after,
.inline-image::after,
.gallery-row a::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: inherit;
  border: 1px solid rgba(255,255,255,.34);
  pointer-events: none;
  z-index: 1;
}
.hero-side {
  position: absolute;
  overflow: hidden;
  border-radius: 22px;
  border: 6px solid rgba(255,255,255,.95);
  box-shadow: 0 18px 45px rgba(19,35,59,.16);
}
.hero-side-top { top: 14px; right: 0; width: 160px; height: 128px; animation: floatCard 5s ease-in-out infinite; }
.hero-side-bottom { left: 0; bottom: 0; width: 180px; height: 132px; animation: floatCard 6s ease-in-out infinite reverse; }
.media-caption {
  position: absolute;
  left: 20px; right: 20px; bottom: 20px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(19,35,59,.68);
  color: white;
  font-weight: 700;
}

.announcement-bar {
  margin-top: 14px;
  overflow: hidden;
  background: rgba(255,255,255,.74);
  border: 1px solid rgba(255,255,255,.88);
  border-radius: 999px;
  box-shadow: var(--shadow);
}
.announcement-track {
  display: flex;
  gap: 18px;
  width: max-content;
  padding: 12px 0;
  animation: marquee 26s linear infinite;
}
.announcement-track span {
  padding: 0 14px;
  white-space: nowrap;
  color: var(--muted);
  font-weight: 700;
  font-size: .9rem;
}

.section {
  margin-top: 14px;
  padding: 24px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.88);
  border-radius: 34px;
  box-shadow: var(--shadow);
}
.section h2 {
  margin: 0;
  max-width: 18ch;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.05;
  letter-spacing: -.04em;
}

.section-title-wide {
  max-width: none;
}

.section-split, .ecology-grid, .loyalty-section, .contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: center;
}

.section-head { max-width: 760px; margin-bottom: 16px; }
.section-head.programmes-head { max-width: none; }
.section-head p { font-size: .95rem; }
.feature-list { margin: 16px 0 0; padding-left: 18px; }
.feature-list li { margin-bottom: 8px; font-size: .95rem; }
.media-stack { display: grid; gap: 14px; }

.media-card, .ecology-media, .service-image, .loyalty-card-main, .loyalty-card-side, .contact-shot {
  overflow: hidden;
  border-radius: 26px;
  box-shadow: 0 18px 50px rgba(19,35,59,.14);
}
.media-card.large { min-height: 300px; }
.media-card { min-height: 190px; }

.program-grid, .service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.program-card, .service-card, .promo-card {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,.84);
  border: 1px solid var(--line);
}
.program-card.featured { background: linear-gradient(180deg, rgba(30,45,121,.09), rgba(255,255,255,.92)); }
.program-card.accent { background: linear-gradient(180deg, rgba(154,201,66,.14), rgba(255,255,255,.94)); }
.program-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
}
.program-top h3 { margin: 0; font-size: 1.28rem; }
.program-top strong { color: var(--navy); font-size: 1.3rem; font-weight: 800; }
.program-card p, .service-card p, .promo-card p { font-size: .94rem; }
.program-card ul, .service-card ul { margin: 16px 0 0; padding-left: 18px; line-height: 1.6; font-size: .93rem; }

.metric-row {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px;
}
.metric-row span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(42,160,215,.1);
  color: var(--navy);
  font-weight: 800;
}

.service-card { display: flex; flex-direction: column; }
.service-card h3 { margin: 14px 0 8px; font-size: 1.22rem; }
.service-image { height: 190px; }

.loyalty-media {
  display: block;
  width: min(360px, 100%);
  justify-self: end;
}
.loyalty-card-main {
  display: block;
  min-height: 0;
  aspect-ratio: auto;
}
.loyalty-card-main,
.loyalty-card-side {
  padding: 0;
  background: linear-gradient(180deg, rgba(227,236,248,.92), rgba(202,216,236,.9));
}
.loyalty-card-main img,
.loyalty-card-side img {
  width: 100%;
  height: auto;
  object-fit: fill;
  object-position: initial;
  animation: none;
}
.loyalty-card-main img {
  transform: none;
}

.split-promo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.promo-card h2 { max-width: 16ch; }
.text-link { display: inline-flex; margin-top: 12px; color: var(--navy); font-weight: 800; font-size: .95rem; }

.contact-list { display: grid; gap: 12px; margin-top: 18px; }
.contact-list div { padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.contact-list span { display: block; margin-bottom: 4px; color: var(--muted); font-size: .84rem; }
.contact-list strong { display: block; font-size: .95rem; }
.contact-gallery { display: grid; gap: 14px; }
.contact-shot { min-height: 210px; }

.service-inline-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 18px;
}

.service-inline-card {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 180px;
  padding: 18px;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.82);
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(240,245,252,.9));
  box-shadow: 0 14px 40px rgba(19,35,59,.12);
}

.service-inline-card::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 16px;
  border: 1px solid rgba(19,35,59,.08);
  pointer-events: none;
}

.service-inline-card img {
  width: 100%;
  max-height: 140px;
  object-fit: contain;
  transform: none;
  animation: none;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
  padding: 18px 22px;
  background: rgba(255,255,255,.68);
  border: 1px solid rgba(255,255,255,.88);
  border-radius: 24px;
  color: var(--muted);
}
.site-footer p { margin: 0; color: var(--ink); font-weight: 800; font-size: .95rem; }
.site-footer span { font-size: .9rem; }
.footer-year {
  white-space: nowrap;
  font-weight: 700;
}

.lightbox {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(8,14,24,.82);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
  z-index: 100;
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox-image {
  max-width: min(1200px, 100%);
  max-height: calc(100vh - 80px);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0,0,0,.35);
}
.lightbox-video {
  width: min(1200px, 100%);
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0,0,0,.35);
  background: #000;
}
.lightbox-image[hidden],
.lightbox-video[hidden] {
  display: none;
}
.lightbox-note {
  max-width: 720px;
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.86);
  text-align: center;
  line-height: 1.5;
}
.lightbox-close {
  position: absolute;
  top: 22px; right: 22px;
  width: 48px; height: 48px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  color: white;
  font-size: 2rem;
  cursor: pointer;
}

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 700ms ease, transform 700ms ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes floatCard { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes kenBurns {
  0% { transform: scale(1.04) translate3d(0, 0, 0); }
  50% { transform: scale(1.1) translate3d(-1.4%, -1%, 0); }
  100% { transform: scale(1.06) translate3d(1.2%, 1.1%, 0); }
}

@media (max-width: 1100px) {
  .hero, .section-split, .ecology-grid, .loyalty-section, .contact-section, .split-promo { grid-template-columns: 1fr; }
  .program-grid, .service-grid, .loyalty-media { grid-template-columns: 1fr 1fr; }
  .hero h1 { max-width: none; }
  .hero-media { min-height: 520px; }
}

@media (max-width: 860px) {
  .site-header { position: static; flex-wrap: wrap; border-radius: 28px; }
  .site-nav { order: 3; flex-wrap: wrap; justify-content: center; }
  .hero, .section { padding: 22px; }
  .hero-stats, .program-grid, .service-grid, .loyalty-media, .service-inline-pair { grid-template-columns: 1fr; }
  .hero-main { inset: 0; }
  .hero-side { display: none; }
  .hero-video-cta {
    position: static;
    margin-top: 14px;
  }
  .site-footer { flex-direction: column; align-items: flex-start; border-radius: 28px; }
}

@media (max-width: 560px) {
  .page { width: min(100% - 16px, 1120px); }
  .brand { width: 100%; justify-content: center; }
  .header-cta, .button { width: 100%; }
  .hero-actions { flex-direction: column; }
  .hero h1, .section h2 { font-size: clamp(1.65rem, 8vw, 2.35rem); }
}

.page-hero {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 16px;
  align-items: center;
  margin-top: 18px;
  padding: 22px;
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(255,255,255,.88);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.page-hero h1 {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.02;
  letter-spacing: -.04em;
}

.page-hero p {
  color: var(--muted);
  line-height: 1.72;
  font-size: .95rem;
}

.page-hero-media {
  overflow: hidden;
  min-height: 250px;
  border-radius: 26px;
  box-shadow: 0 18px 50px rgba(19,35,59,.14);
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 14px;
  margin-top: 14px;
}

.content-grid.single-column {
  grid-template-columns: 1fr;
}

.prose-card,
.side-card,
.gallery-band,
.contact-layout,
.legal-card {
  padding: 22px;
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(255,255,255,.88);
  border-radius: 30px;
  box-shadow: var(--shadow);
}
.legal-card + .legal-card {
  margin-top: 14px;
}

.prose-card h2,
.side-card h3,
.legal-card h2 {
  margin: 0 0 10px;
  font-family: "Outfit", sans-serif;
  letter-spacing: -.03em;
  font-size: 1.45rem;
}

.prose-card p,
.side-card p,
.legal-card p,
.legal-card li {
  color: var(--muted);
  line-height: 1.74;
  font-size: .94rem;
}

.prose-card strong,
.side-card strong,
.legal-card strong {
  color: var(--ink);
}

.stack {
  display: grid;
  gap: 14px;
}

.inline-image {
  overflow: hidden;
  margin-top: 14px;
  border-radius: 22px;
  box-shadow: 0 14px 40px rgba(19,35,59,.12);
}

.inline-image img {
  width: 100%;
  height: auto;
}

.forfait-image {
  display: grid;
  place-items: center;
  min-height: 220px;
  padding: 14px;
  background: linear-gradient(180deg, rgba(231,239,249,.94), rgba(205,218,236,.88));
}

.forfait-image img {
  width: 100%;
  height: 100%;
  max-height: 220px;
  object-fit: contain;
  transform: none;
  animation: none;
}

.note-box {
  margin-top: 14px;
  padding: 14px;
  border-radius: 22px;
  background: rgba(42,160,215,.08);
  border: 1px solid rgba(42,160,215,.14);
}

.check-list,
.price-list,
.legal-list {
  margin: 10px 0 0;
  padding-left: 18px;
}

.check-list li,
.price-list li,
.legal-list li {
  margin-bottom: 10px;
  line-height: 1.72;
  font-size: .94rem;
}

.gallery-band {
  margin-top: 14px;
}

.gallery-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.gallery-row a {
  overflow: hidden;
  min-height: 170px;
  border-radius: 20px;
  box-shadow: 0 14px 36px rgba(19,35,59,.12);
}

.gallery-row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-table {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.detail-row {
  display: grid;
  grid-template-columns: 1.3fr .35fr;
  gap: 12px;
  align-items: start;
  padding: 13px 15px;
  border-radius: 16px;
  background: rgba(255,255,255,.84);
  border: 1px solid var(--line);
}

.detail-row strong:last-child {
  justify-self: end;
  white-space: nowrap;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr .95fr;
  gap: 14px;
  margin-top: 14px;
}

.contact-map,
.contact-card-panel {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.82);
}

.contact-card-panel {
  padding: 18px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
}

.mini-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.mini-nav a {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(30,45,121,.08);
  color: var(--navy);
  font-weight: 700;
  font-size: .9rem;
  border: 1px solid rgba(30,45,121,.08);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.mini-nav a:hover,
.mini-nav a:focus-visible {
  transform: translateY(-1px);
  background: rgba(30,45,121,.14);
  border-color: rgba(30,45,121,.12);
}

@media (max-width: 1100px) {
  .page-hero,
  .content-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .gallery-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .prose-card,
  .side-card,
  .gallery-band,
  .contact-layout,
  .legal-card,
  .page-hero {
    padding: 18px;
  }

  .gallery-row,
  .detail-row {
    grid-template-columns: 1fr;
  }

  .detail-row strong:last-child {
    justify-self: start;
  }
}
