/* ============================================
   LE REFUGE BLEU — Design System
   ============================================ */

:root {
  --c-navy: #0A1A3A;
  --c-navy-deep: #061027;
  --c-navy-soft: #142852;
  --c-gold: #C9A961;
  --c-gold-light: #E0C88F;
  --c-cream: #FAF7F2;
  --c-cream-deep: #F2EDE4;
  --c-text: #1A1A1A;
  --c-text-soft: #6B6B6B;
  --c-white: #FFFFFF;
  --c-overlay: rgba(10, 26, 58, 0.55);

  --f-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --f-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --shadow-sm: 0 2px 8px rgba(10, 26, 58, 0.08);
  --shadow-md: 0 8px 32px rgba(10, 26, 58, 0.12);
  --shadow-lg: 0 20px 60px rgba(10, 26, 58, 0.18);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  --wrap: 1240px;
  --wrap-narrow: 920px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-text);
  background: var(--c-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-navy); text-decoration: none; transition: all 0.2s ease; }
a:hover { color: var(--c-gold); }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* Typography */
h1, h2, h3, h4 { font-family: var(--f-serif); font-weight: 500; line-height: 1.15; color: var(--c-navy); letter-spacing: -0.01em; }
h1 { font-size: clamp(2.4rem, 5vw, 4.5rem); font-weight: 400; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 400; }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); }
h4 { font-size: 1.15rem; }

.eyebrow {
  font-family: var(--f-sans);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gold);
  font-weight: 500;
  margin-bottom: 1rem;
}

/* Wrap + grid helpers */
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: var(--wrap-narrow); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(60px, 10vh, 120px) 0; }
.section--dark { background: var(--c-navy); color: var(--c-cream); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--c-cream); }
.section--cream { background: var(--c-cream-deep); }
.center { text-align: center; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 16px 32px;
  font-family: var(--f-sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.25s ease;
  cursor: pointer;
  text-align: center;
}
.btn--gold {
  background: var(--c-gold);
  color: var(--c-navy);
  border: 1px solid var(--c-gold);
}
.btn--gold:hover { background: var(--c-gold-light); color: var(--c-navy); border-color: var(--c-gold-light); }
.btn--ghost {
  background: transparent;
  color: var(--c-cream);
  border: 1px solid var(--c-cream);
}
.btn--ghost:hover { background: var(--c-cream); color: var(--c-navy); }
.btn--dark {
  background: var(--c-navy);
  color: var(--c-cream);
  border: 1px solid var(--c-navy);
}
.btn--dark:hover { background: var(--c-navy-deep); color: var(--c-cream); }
.btn--full { width: 100%; justify-content: center; }

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: all 0.3s ease;
  background: rgba(10, 26, 58, 0.92);
  backdrop-filter: blur(10px);
}
.site-header.scrolled { padding: 10px 0; box-shadow: var(--shadow-md); }
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
}
.logo {
  font-family: var(--f-serif);
  font-size: 1.5rem;
  color: var(--c-cream);
  font-weight: 400;
  letter-spacing: 0.05em;
}
.logo span { color: var(--c-gold); }
.nav { display: flex; align-items: center; gap: 36px; }
.nav a {
  color: var(--c-cream);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 400;
}
.nav a:hover { color: var(--c-gold); }
.nav .btn { padding: 10px 22px; font-size: 0.78rem; }
.burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.burger span { width: 22px; height: 1px; background: var(--c-cream); transition: all 0.3s; }

@media (max-width: 820px) {
  .nav { position: fixed; top: 0; right: -100%; width: 80%; max-width: 320px; height: 100vh; background: var(--c-navy-deep); flex-direction: column; justify-content: center; gap: 28px; transition: right 0.4s ease; }
  .nav.open { right: 0; }
  .burger { display: flex; z-index: 101; }
  .burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .burger.open span:nth-child(2) { opacity: 0; }
  .burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--c-cream);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6, 16, 39, 0.7) 0%, rgba(10, 26, 58, 0.5) 100%);
  z-index: 1;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: slowZoom 20s ease-in-out infinite alternate;
}
@keyframes slowZoom {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding: 0 24px;
}
.hero h1 {
  color: var(--c-cream);
  margin-bottom: 1.2rem;
  font-weight: 300;
}
.hero h1 em {
  color: var(--c-gold-light);
  font-style: italic;
  font-weight: 400;
}
.hero__subtitle {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  margin: 0 auto 2.5rem;
  max-width: 640px;
  opacity: 0.92;
  line-height: 1.7;
}
.hero__ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero__scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--c-cream);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.75;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: var(--c-navy-deep);
  color: var(--c-cream);
  padding: 18px 0;
  font-size: 0.86rem;
  letter-spacing: 0.06em;
}
.trust-bar__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(20px, 4vw, 50px);
  flex-wrap: wrap;
  text-align: center;
}
.trust-bar__item { display: flex; align-items: center; gap: 10px; }
.trust-bar__item strong { color: var(--c-gold-light); font-weight: 500; }
.stars { color: var(--c-gold); letter-spacing: 2px; }

/* ============================================
   INTRO
   ============================================ */
.intro { padding: clamp(70px, 12vh, 120px) 0; text-align: center; }
.intro .eyebrow { margin-bottom: 1.2rem; }
.intro h2 { margin-bottom: 1.5rem; }
.intro p {
  max-width: 680px;
  margin: 0 auto 1rem;
  font-size: 1.08rem;
  color: var(--c-text-soft);
  line-height: 1.85;
}
.intro__divider {
  width: 60px;
  height: 1px;
  background: var(--c-gold);
  margin: 2.5rem auto;
}

/* ============================================
   EXPERIENCE (3 features)
   ============================================ */
.experience {
  background: var(--c-navy);
  color: var(--c-cream);
}
.experience__head { text-align: center; margin-bottom: 4rem; }
.experience__head h2 { color: var(--c-cream); }
.experience__head p { color: rgba(250, 247, 242, 0.75); max-width: 600px; margin: 1rem auto 0; }
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}
.feature { text-align: center; }
.feature__img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 1.6rem;
  filter: brightness(0.92);
  transition: all 0.4s ease;
}
.feature:hover .feature__img { filter: brightness(1.05); transform: translateY(-4px); }
.feature h3 { color: var(--c-cream); margin-bottom: 0.6rem; }
.feature p { color: rgba(250, 247, 242, 0.75); font-size: 0.95rem; line-height: 1.7; }

/* ============================================
   TWO OFFERS (nuit / journée)
   ============================================ */
.offers__head { text-align: center; margin-bottom: 4rem; }
.offers__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 30px;
}
.offer-card {
  position: relative;
  background: var(--c-white);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}
.offer-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.offer-card__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.offer-card__badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--c-gold);
  color: var(--c-navy);
  padding: 6px 14px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 2px;
}
.offer-card__body { padding: 32px; flex: 1; display: flex; flex-direction: column; }
.offer-card__title { margin-bottom: 0.4rem; }
.offer-card__hours { color: var(--c-gold); font-size: 0.85rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 1.2rem; }
.offer-card__desc { color: var(--c-text-soft); line-height: 1.75; margin-bottom: 1.6rem; flex: 1; }
.offer-card__price { font-family: var(--f-serif); font-size: 1.5rem; color: var(--c-navy); margin-bottom: 1.4rem; }
.offer-card__price span { font-size: 0.85rem; color: var(--c-text-soft); font-family: var(--f-sans); }

/* ============================================
   GALLERY
   ============================================ */
.gallery__head { text-align: center; margin-bottom: 3rem; }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.gallery__item {
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
  aspect-ratio: 1;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item--tall { grid-row: span 2; aspect-ratio: 1/2; }
@media (max-width: 820px) {
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__item--tall { grid-row: span 1; aspect-ratio: 1; }
}

/* ============================================
   EXTRAS
   ============================================ */
.extras { background: var(--c-cream-deep); }
.extras__head { text-align: center; margin-bottom: 3.5rem; }
.extras__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.extra {
  background: var(--c-white);
  padding: 40px 28px;
  text-align: center;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
  border: 1px solid transparent;
  position: relative;
}
.extra::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--c-gold);
  margin: 0 auto 1.4rem;
}
.extra:hover { transform: translateY(-4px); border-color: var(--c-gold); }
.extra h4 {
  font-family: var(--f-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--c-navy);
  margin-bottom: 0.8rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.extra p { color: var(--c-text-soft); font-size: 0.92rem; line-height: 1.6; }
.extra__price {
  color: var(--c-gold);
  font-weight: 500;
  margin-top: 1.2rem;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}

/* ============================================
   REVIEWS
   ============================================ */
.reviews__head { text-align: center; margin-bottom: 4rem; }
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.review {
  background: var(--c-white);
  padding: 36px;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--c-gold);
  box-shadow: var(--shadow-sm);
}
.review__stars { color: var(--c-gold); letter-spacing: 3px; margin-bottom: 1rem; }
.review__quote { font-family: var(--f-serif); font-size: 1.15rem; line-height: 1.55; color: var(--c-navy); margin-bottom: 1.4rem; font-style: italic; }
.review__author { display: flex; flex-direction: column; gap: 2px; }
.review__name { font-weight: 500; color: var(--c-navy); }
.review__date { color: var(--c-text-soft); font-size: 0.85rem; }

/* ============================================
   FAQ
   ============================================ */
.faq { background: var(--c-cream-deep); }
.faq__head { text-align: center; margin-bottom: 3rem; }
.faq__list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid rgba(10, 26, 58, 0.12);
  padding: 8px 0;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 0;
  font-family: var(--f-serif);
  font-size: 1.25rem;
  color: var(--c-navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.6rem;
  color: var(--c-gold);
  transition: transform 0.3s ease;
  font-family: var(--f-sans);
  font-weight: 300;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item__body {
  padding: 0 0 24px;
  color: var(--c-text-soft);
  line-height: 1.75;
}

/* ============================================
   LOCATION
   ============================================ */
.location { background: var(--c-navy); color: var(--c-cream); }
.location__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.location__map {
  aspect-ratio: 4/3;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.location__map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.3) contrast(1.05); }
.location h2 { color: var(--c-cream); }
.location .eyebrow { color: var(--c-gold-light); }
.location p { color: rgba(250, 247, 242, 0.8); line-height: 1.85; margin-bottom: 1.2rem; }
.location__list { margin: 2rem 0; }
.location__list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(250, 247, 242, 0.14);
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
}
.location__list strong { color: var(--c-gold-light); font-weight: 500; }
@media (max-width: 820px) {
  .location__grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ============================================
   CTA FINAL
   ============================================ */
.cta-final {
  background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-navy-soft) 100%);
  color: var(--c-cream);
  text-align: center;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/dvt5wki09xku3t5cxsxi.jpg') center/cover;
  opacity: 0.18;
  z-index: 0;
}
.cta-final__inner { position: relative; z-index: 1; }
.cta-final h2 { color: var(--c-cream); margin-bottom: 1rem; max-width: 700px; margin-left: auto; margin-right: auto; }
.cta-final p { color: rgba(250, 247, 242, 0.85); margin: 0 auto 2.5rem; max-width: 540px; font-size: 1.05rem; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--c-navy-deep);
  color: rgba(250, 247, 242, 0.7);
  padding: 80px 0 30px;
  font-size: 0.92rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer__col h4 {
  font-family: var(--f-sans);
  color: var(--c-cream);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 1.3rem;
}
.footer__col ul li { margin-bottom: 10px; }
.footer__col a { color: rgba(250, 247, 242, 0.7); }
.footer__col a:hover { color: var(--c-gold); }
.footer__logo { font-family: var(--f-serif); font-size: 1.6rem; color: var(--c-cream); margin-bottom: 1rem; }
.footer__about { line-height: 1.75; }
.footer__social { display: flex; gap: 12px; margin-top: 1.5rem; }
.footer__social a {
  display: flex;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  background: rgba(250, 247, 242, 0.08);
  border-radius: 50%;
  transition: all 0.3s;
}
.footer__social a:hover { background: var(--c-gold); color: var(--c-navy); }
.footer__bottom {
  border-top: 1px solid rgba(250, 247, 242, 0.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.82rem;
  color: rgba(250, 247, 242, 0.5);
}
@media (max-width: 820px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

/* ============================================
   FLOATING CTA (sticky mobile)
   ============================================ */
.floating-cta {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  z-index: 50;
  display: none;
}
.floating-cta .btn { width: 100%; justify-content: center; box-shadow: var(--shadow-lg); }
@media (max-width: 820px) {
  .floating-cta { display: block; }
  body { padding-bottom: 80px; }
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-section__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 1.5rem; }
.contact-info__item {
  display: flex;
  gap: 14px;
  margin-bottom: 1.2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(10, 26, 58, 0.08);
}
.contact-info__item strong { display: block; color: var(--c-navy); font-weight: 500; margin-bottom: 2px; letter-spacing: 0.04em; }
.contact-info__item a { color: var(--c-text-soft); }
.contact-form {
  background: var(--c-white);
  padding: 40px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}
.form-row { margin-bottom: 1.2rem; }
.form-row label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-navy);
  margin-bottom: 6px;
  font-weight: 500;
}
.form-row input, .form-row textarea, .form-row select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(10, 26, 58, 0.18);
  border-radius: 2px;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--c-cream);
  transition: all 0.2s;
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus { outline: none; border-color: var(--c-gold); background: var(--c-white); }
.form-row textarea { min-height: 140px; resize: vertical; }
.form-check { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 1.4rem; font-size: 0.88rem; color: var(--c-text-soft); }
.form-check input { margin-top: 4px; }
@media (max-width: 820px) {
  .contact-section__grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form { padding: 28px; }
}

/* ============================================
   PAGE HEADER (inner pages)
   ============================================ */
.page-header {
  padding-top: 180px;
  padding-bottom: 80px;
  background: var(--c-navy);
  color: var(--c-cream);
  text-align: center;
  position: relative;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/ogwehnkcwzzndn1odtpt.jpg') center/cover;
  opacity: 0.25;
}
.page-header__inner { position: relative; z-index: 1; }
.page-header h1 { color: var(--c-cream); margin-bottom: 0.6rem; }
.page-header p { color: rgba(250, 247, 242, 0.85); max-width: 620px; margin: 0 auto; }

/* ============================================
   ROOM DETAIL
   ============================================ */
.room-detail__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: start;
}
.room-gallery { display: grid; grid-template-columns: 2fr 1fr; gap: 10px; grid-auto-rows: 200px; }
.room-gallery__main { grid-row: span 2; }
.room-gallery img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-sm); }
.room-detail__info h1 { margin-bottom: 0.4rem; }
.room-detail__specs {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin: 1rem 0 1.5rem;
  color: var(--c-text-soft);
  font-size: 0.92rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(10, 26, 58, 0.1);
}
.room-detail__price { font-family: var(--f-serif); font-size: 2.2rem; color: var(--c-navy); margin: 1.5rem 0; }
.room-detail__price span { font-size: 1rem; color: var(--c-text-soft); font-family: var(--f-sans); }
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 2rem 0;
}
.amenity {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--c-text);
  font-size: 0.92rem;
}
.amenity::before { content: '✓'; color: var(--c-gold); font-weight: 700; }
@media (max-width: 980px) {
  .room-detail__grid { grid-template-columns: 1fr; gap: 30px; }
  .room-gallery { grid-auto-rows: 160px; }
}

/* ============================================
   UTILITIES / MISC
   ============================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: all 0.8s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* Legal page */
.legal { padding-top: 160px; padding-bottom: 80px; }
.legal h2 { margin: 2.5rem 0 1rem; }
.legal h3 { margin: 1.5rem 0 0.5rem; font-size: 1.2rem; }
.legal p, .legal li { color: var(--c-text-soft); margin-bottom: 0.8rem; line-height: 1.85; }
.legal ul { margin-left: 1.2rem; list-style: disc; }

/* Cookies banner */
.cookies {
  position: fixed;
  bottom: 20px; left: 20px; right: 20px;
  max-width: 520px;
  margin-left: auto;
  background: var(--c-navy);
  color: var(--c-cream);
  padding: 24px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  z-index: 99;
  transform: translateY(200%);
  transition: transform 0.5s ease;
  font-size: 0.88rem;
}
.cookies.show { transform: translateY(0); }
.cookies p { margin-bottom: 1rem; color: rgba(250, 247, 242, 0.85); line-height: 1.6; }
.cookies__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookies__actions .btn { padding: 10px 18px; font-size: 0.76rem; }

/* ============================================
   VIDEO SECTION
   ============================================ */
.video-section {
  background: var(--c-navy);
  color: var(--c-cream);
  padding: clamp(60px, 10vh, 120px) 0;
}
.video-section__head { text-align: center; margin-bottom: 3rem; }
.video-section__head h2 { color: var(--c-cream); }
.video-section__head p { color: rgba(250, 247, 242, 0.75); max-width: 580px; margin: 1rem auto 0; }
.video-wrap {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--c-navy-deep);
}
.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-wrap__cover {
  position: absolute;
  inset: 0;
  z-index: 2;
  cursor: pointer;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}
.video-wrap__cover::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(6, 16, 39, 0.35);
}
.video-wrap__play {
  position: relative;
  z-index: 3;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--c-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 40px rgba(201, 169, 97, 0.5);
  transition: all 0.3s ease;
}
.video-wrap__cover:hover .video-wrap__play { transform: scale(1.08); background: var(--c-gold-light); }
.video-wrap__play::before {
  content: '';
  width: 0; height: 0;
  border-style: solid;
  border-width: 16px 0 16px 26px;
  border-color: transparent transparent transparent var(--c-navy);
  margin-left: 6px;
}
.video-wrap__cover.hidden { opacity: 0; pointer-events: none; }

/* ============================================
   POPUP JEU CONCOURS
   ============================================ */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 16, 39, 0.85);
  backdrop-filter: blur(6px);
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.popup-overlay.open { display: flex; opacity: 1; }
.popup {
  position: relative;
  background: var(--c-cream);
  max-width: 920px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  border-radius: var(--radius-sm);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  display: grid;
  grid-template-columns: 1fr 1fr;
  transform: translateY(30px) scale(0.98);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.popup-overlay.open .popup { transform: translateY(0) scale(1); }
.popup__visual {
  background-image: url('../images/dvt5wki09xku3t5cxsxi.jpg');
  background-size: cover;
  background-position: center;
  min-height: 480px;
  position: relative;
}
.popup__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 26, 58, 0.2) 0%, rgba(10, 26, 58, 0.75) 100%);
}
.popup__visual-content {
  position: absolute;
  bottom: 32px; left: 32px; right: 32px;
  z-index: 2;
  color: var(--c-cream);
}
.popup__visual-content .eyebrow { color: var(--c-gold-light); margin-bottom: 0.6rem; }
.popup__visual-content h3 {
  font-family: var(--f-serif);
  font-size: 1.8rem;
  color: var(--c-cream);
  line-height: 1.2;
  font-weight: 400;
}
.popup__body {
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.popup__body .eyebrow { margin-bottom: 0.8rem; }
.popup__body h2 {
  font-size: 2rem;
  line-height: 1.15;
  margin-bottom: 0.8rem;
}
.popup__body p { color: var(--c-text-soft); line-height: 1.7; margin-bottom: 1.8rem; font-size: 0.96rem; }
.popup__form .form-row { margin-bottom: 1rem; }
.popup__legal { font-size: 0.78rem; color: var(--c-text-soft); margin-top: 1rem; line-height: 1.5; }
.popup__close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--c-navy);
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s;
  line-height: 1;
  border: none;
}
.popup__close:hover { background: var(--c-gold); }
.popup__success {
  text-align: center;
  padding: 60px 40px;
  display: none;
}
.popup__success.show { display: block; }
.popup__success-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--c-gold);
  color: var(--c-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 1.2rem;
}

@media (max-width: 780px) {
  .popup { grid-template-columns: 1fr; max-height: 92vh; overflow-y: auto; }
  .popup__visual { min-height: 200px; }
  .popup__visual-content { bottom: 18px; left: 20px; right: 20px; }
  .popup__visual-content h3 { font-size: 1.3rem; }
  .popup__body { padding: 32px 24px; }
  .popup__body h2 { font-size: 1.6rem; }
}
