/* ============================================
   LALALANDES AVEYRON — Design System
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500&display=swap');

/* Variables */
:root {
  --cream:       #FAF8F4;
  --cream-dark:  #F0EBE0;
  --brown:       #2C2416;
  --brown-mid:   #6B5B4E;
  --green:       #5B7A4E;
  --green-light: #8BA87E;
  --gold:        #C4A35A;
  --text:        #3D3530;
  --text-light:  #7A6E68;
  --white:       #FFFFFF;

  --serif:  'Cormorant Garamond', Georgia, serif;
  --sans:   'DM Sans', system-ui, -apple-system, sans-serif;

  --radius: 2px;
  --shadow: 0 4px 24px rgba(44,36,22,0.10);
  --shadow-lg: 0 12px 48px rgba(44,36,22,0.18);
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);

  --max-width: 1200px;
  --section-pad: clamp(60px, 8vw, 120px);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ============================================
   TYPOGRAPHY
   ============================================ */
.t-display {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.t-h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
}
.t-h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 400;
  line-height: 1.2;
}
.t-h3 {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  font-weight: 400;
}
.t-label {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.t-body {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  line-height: 1.75;
  color: var(--text-light);
}
.t-lead {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.65;
  color: var(--text-light);
}

/* ============================================
   LAYOUT UTILS
   ============================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}
.section { padding: var(--section-pad) 0; }
.section--dark { background: var(--brown); color: var(--cream); }
.section--cream { background: var(--cream-dark); }

/* Fade-in on scroll */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--transition), transform 0.7s var(--transition);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  background: rgba(10,8,4,0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
.header.scrolled {
  background: rgba(250,248,244,0.97);
  backdrop-filter: blur(8px);
  padding: 12px 0;
  box-shadow: 0 1px 0 rgba(44,36,22,0.08);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}
.logo {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.05em;
  transition: color var(--transition);
  line-height: 1.2;
}
.logo span { display: block; font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; font-family: var(--sans); font-weight: 300; opacity: 0.8; }
.header.scrolled .logo { color: var(--brown); }

.nav { display: flex; align-items: center; gap: 32px; }
.nav__link {
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.95);
  transition: color var(--transition);
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav__link:hover::after { transform: scaleX(1); }
.nav__link:hover { color: var(--white); }
.header.scrolled .nav__link { color: var(--brown-mid); }
.header.scrolled .nav__link:hover { color: var(--brown); }

.nav__cta {
  padding: 9px 22px;
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  transition: all var(--transition);
}
.nav__cta:hover { background: var(--white); color: var(--brown); border-color: var(--white); }
.header.scrolled .nav__cta { border-color: var(--brown); color: var(--brown); }
.header.scrolled .nav__cta:hover { background: var(--brown); color: var(--white); }

/* Mobile menu toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: all var(--transition);
}
.header.scrolled .nav__toggle span { background: var(--brown); }
.nav__toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav */
.nav__mobile {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--brown);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.nav__mobile.open { display: flex; }
.nav__mobile .nav__link {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--cream);
  letter-spacing: 0.05em;
  text-transform: none;
}
.nav__mobile .nav__link:hover { color: var(--gold); }
.nav__mobile .nav__link::after { display: none; }
.nav__mobile .nav__phone {
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-top: 16px;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* Vidéo YouTube en fond — au-dessus de la photo */
.hero__video-wrapper {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero__video-wrapper.loaded {
  opacity: 1;
}
.hero__video-wrapper iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  /* Garantit que la vidéo couvre tout le hero en 16:9 */
  width: 100vw;
  height: 56.25vw;   /* 16:9 */
  min-height: 100vh;
  min-width: 177.78vh; /* 16:9 inverse */
  transform: translate(-50%, -50%);
  pointer-events: none;
  border: none;
}

/* Photo de fond — toujours visible, la vidéo vient par-dessus */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('../images/hero-pool-night.jpg');
  background-size: cover;
  background-position: center;
  opacity: 1;
}

/* Grain cinématographique */
.hero__grain {
  position: absolute;
  inset: -100px;
  z-index: 1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: 0.055;
  animation: grain-move 0.35s steps(1) infinite;
}
@keyframes grain-move {
  0%   { transform: translate(0,    0); }
  10%  { transform: translate(-3%,  2%); }
  20%  { transform: translate(2%,  -4%); }
  30%  { transform: translate(-4%,  1%); }
  40%  { transform: translate(3%,   3%); }
  50%  { transform: translate(-1%, -3%); }
  60%  { transform: translate(4%,   2%); }
  70%  { transform: translate(-2%,  4%); }
  80%  { transform: translate(1%,  -2%); }
  90%  { transform: translate(-3%, -1%); }
  100% { transform: translate(0,    0); }
}

/* Sur mobile : cacher la vidéo, afficher la photo */
@media (max-width: 768px) {
  .hero__video-wrapper { display: none; }
  .hero__bg { opacity: 1; }
  .hero__grain { opacity: 0.04; }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    rgba(20,14,6,0.45) 0%,
    rgba(20,14,6,0.35) 50%,
    rgba(20,14,6,0.65) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 3;
  color: var(--white);
  max-width: 780px;
  padding: 0 24px;
}
.hero__label {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 1s 0.4s forwards;
}
.hero__title {
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: var(--white);
  opacity: 0;
  animation: fadeUp 1s 0.6s forwards;
}
.hero__title em { font-style: italic; }
.hero__subtitle {
  margin-top: 20px;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 300;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.95);
  opacity: 0;
  animation: fadeUp 1s 0.8s forwards;
}
.hero__actions {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s 1s forwards;
}
.hero__scroll {
  position: absolute;
  bottom: 36px;
  z-index: 3;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: bounce 2.5s infinite 2s;
}
.hero__scroll svg { width: 20px; height: 20px; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.btn--primary {
  background: var(--white);
  color: var(--brown);
}
.btn--primary:hover { background: var(--cream); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--outline {
  border: 1px solid rgba(255,255,255,0.6);
  color: var(--white);
}
.btn--outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn--dark {
  background: var(--brown);
  color: var(--white);
}
.btn--dark:hover { background: #3d3424; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--gold {
  background: var(--gold);
  color: var(--white);
}
.btn--gold:hover { background: #b5944e; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--ghost {
  border: 1px solid var(--brown);
  color: var(--brown);
}
.btn--ghost:hover { background: var(--brown); color: var(--white); }

/* ============================================
   RATING BADGE
   ============================================ */
.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 8px 18px;
  border-radius: 40px;
  color: var(--white);
  font-size: 0.82rem;
}
.rating-badge__stars { color: var(--gold); letter-spacing: 2px; }

/* ============================================
   INTRO SECTION
   ============================================ */
.intro {
  padding: var(--section-pad) 0;
  text-align: center;
}
.intro__inner {
  max-width: 760px;
  margin: 0 auto;
}
.intro__title {
  margin: 16px 0 24px;
}
.intro__text {
  margin-bottom: 40px;
}
.intro__badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.intro__badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-light);
}
.intro__badge svg { width: 18px; height: 18px; color: var(--green); flex-shrink: 0; }

/* ============================================
   ATOUTS (FEATURES GRID)
   ============================================ */
.atouts { padding: var(--section-pad) 0; background: var(--brown); }
.atouts__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
}
.atout {
  padding: 48px 32px;
  background: var(--brown);
  text-align: center;
  transition: background var(--transition);
}
.atout:hover { background: #352c1e; }
.atout__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  color: var(--gold);
}
.atout__title {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 10px;
}
.atout__text {
  font-size: 0.85rem;
  line-height: 1.65;
  color: rgba(250,248,244,0.55);
}

/* ============================================
   SPLIT SECTION (image + text)
   ============================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }
.split__image {
  position: relative;
  overflow: hidden;
}
.split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--transition);
}
.split__image:hover img { transform: scale(1.04); }
.split__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 6vw, 80px) clamp(32px, 5vw, 72px);
  background: var(--cream);
}
.split__content--dark { background: var(--brown); }
.split__content--dark .t-h2,
.split__content--dark .split__list li { color: var(--cream); }
.split__content--dark .t-lead { color: rgba(250,248,244,0.65); }
.split__title { margin: 16px 0 24px; }
.split__text { margin-bottom: 32px; }
.split__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}
.split__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text);
}
.split__list li::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ============================================
   PHOTO GALLERY
   ============================================ */
.gallery { padding: var(--section-pad) 0; }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.gallery__item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--transition);
}
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(20,14,6,0);
  transition: background var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery__item:hover .gallery__item__overlay { background: rgba(20,14,6,0.25); }
.gallery__item__overlay svg {
  width: 36px;
  height: 36px;
  color: var(--white);
  opacity: 0;
  transform: scale(0.7);
  transition: all var(--transition);
}
.gallery__item:hover .gallery__item__overlay svg { opacity: 1; transform: scale(1); }

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(20,14,6,0.96);
  z-index: 200;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox__img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
}
.lightbox__close {
  position: absolute;
  top: 24px; right: 24px;
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
  opacity: 0.7;
  transition: opacity var(--transition);
}
.lightbox__close:hover { opacity: 1; }
.lightbox__prev, .lightbox__next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  color: var(--white);
  font-size: 2rem;
  opacity: 0.6;
  padding: 16px;
  transition: opacity var(--transition);
}
.lightbox__prev { left: 16px; }
.lightbox__next { right: 16px; }
.lightbox__prev:hover, .lightbox__next:hover { opacity: 1; }

/* ============================================
   BIEN-ÊTRE SECTION
   ============================================ */
.wellness { padding: var(--section-pad) 0; background: var(--cream-dark); }
.wellness__header { text-align: center; margin-bottom: 60px; }
.wellness__header .t-h2 { margin: 12px 0 20px; }
.wellness__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.wellness__card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.wellness__card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.wellness__card__img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.wellness__card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--transition);
}
.wellness__card:hover .wellness__card__img img { transform: scale(1.06); }
.wellness__card__body { padding: 28px 24px; }
.wellness__card__title {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--brown);
  margin: 10px 0 12px;
}
.wellness__card__text { font-size: 0.88rem; line-height: 1.7; color: var(--text-light); }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials { padding: var(--section-pad) 0; background: var(--brown); }
.testimonials__header { text-align: center; margin-bottom: 56px; }
.testimonials__header .t-h2 { color: var(--cream); margin: 12px 0 16px; }
.testimonials__header p { color: rgba(250,248,244,0.6); }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: background var(--transition);
}
.testimonial:hover { background: rgba(255,255,255,0.08); }
.testimonial__stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 3px; margin-bottom: 16px; }
.testimonial__text {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(250,248,244,0.88);
  margin-bottom: 20px;
}
.testimonial__author { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); }
.testimonial__platform { font-size: 0.72rem; color: rgba(250,248,244,0.4); margin-top: 4px; }

/* ============================================
   REGION SECTION
   ============================================ */
.region { padding: var(--section-pad) 0; }
.region__header { text-align: center; margin-bottom: 60px; }
.region__header .t-h2 { margin: 12px 0 20px; }
.region__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}
.region__item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}
.region__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--transition);
}
.region__item:hover img { transform: scale(1.05); }
.region__item__label {
  position: absolute;
  bottom: 20px; left: 20px;
  background: rgba(20,14,6,0.65);
  backdrop-filter: blur(4px);
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  padding: 6px 16px;
  border-radius: var(--radius);
}

/* ============================================
   BLOG PREVIEW
   ============================================ */
.blog-preview { padding: var(--section-pad) 0; background: var(--cream-dark); }
.blog-preview__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 20px;
}
.blog-preview__header .t-h2 { margin-top: 10px; }
.blog-preview__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card__img {
  aspect-ratio: 3/2;
  overflow: hidden;
}
.blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--transition);
}
.blog-card:hover .blog-card__img img { transform: scale(1.05); }
.blog-card__body { padding: 24px 20px; }
.blog-card__cat {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
}
.blog-card__title {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--brown);
  margin: 10px 0 12px;
  line-height: 1.35;
}
.blog-card__text { font-size: 0.85rem; line-height: 1.65; color: var(--text-light); }
.blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  transition: gap var(--transition);
}
.blog-card__link:hover { gap: 10px; }

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  padding: var(--section-pad) 0;
  background-image: url('../images/pool-night-overview.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  text-align: center;
}
.cta-section__overlay {
  position: absolute;
  inset: 0;
  background: rgba(20,14,6,0.6);
}
.cta-section__content {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 600px;
  margin: 0 auto;
  padding: 0 24px;
}
.cta-section__content .t-h2 { color: var(--white); margin: 16px 0 20px; }
.cta-section__content p { color: rgba(255,255,255,0.75); margin-bottom: 36px; }
.cta-section__contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.cta-section__contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.cta-section__contact a:hover { color: var(--white); }
.cta-section__contact svg { width: 18px; height: 18px; color: var(--gold); }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: #1a1108; color: rgba(250,248,244,0.6); }
.footer__main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 64px clamp(20px, 5vw, 60px);
  max-width: var(--max-width);
  margin: 0 auto;
}
.footer__brand .logo { color: var(--cream); margin-bottom: 16px; }
.footer__brand p { font-size: 0.85rem; line-height: 1.7; max-width: 280px; }
.footer__col h4 {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col ul li a { font-size: 0.85rem; transition: color var(--transition); }
.footer__col ul li a:hover { color: var(--cream); }
.footer__col address {
  font-style: normal;
  font-size: 0.85rem;
  line-height: 1.9;
}
.footer__col address a { transition: color var(--transition); }
.footer__col address a:hover { color: var(--cream); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px clamp(20px, 5vw, 60px);
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__social { display: flex; gap: 16px; }
.footer__social a { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; transition: color var(--transition); }
.footer__social a:hover { color: var(--cream); }

/* ============================================
   TARIFS PAGE
   ============================================ */
.page-hero {
  height: 50vh;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 60px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.page-hero__overlay { position: absolute; inset: 0; background: rgba(20,14,6,0.5); }
.page-hero__content { position: relative; z-index: 1; color: var(--white); }
.page-hero__content .t-label { color: rgba(255,255,255,0.7); }
.page-hero__content .t-h1 { color: var(--white); margin-top: 12px; }

.tarifs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 48px 0;
}
.tarif-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.tarif-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.tarif-card--featured {
  background: var(--brown);
  border-color: var(--brown);
}
.tarif-card--featured .tarif-card__season,
.tarif-card--featured .tarif-card__price,
.tarif-card--featured .tarif-card__nights { color: var(--cream); }
.tarif-card--featured .tarif-card__unit { color: rgba(250,248,244,0.6); }
.tarif-card--featured .tarif-card__features li { color: rgba(250,248,244,0.75); }
.tarif-card--featured .tarif-card__features li::before { background: var(--gold); }
.tarif-card__season {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.tarif-card__price {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--brown);
  line-height: 1;
}
.tarif-card__unit { font-size: 0.85rem; color: var(--text-light); margin: 6px 0 4px; }
.tarif-card__nights { font-size: 0.8rem; color: var(--text-light); margin-bottom: 24px; }
.tarif-card__features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
  margin-bottom: 28px;
}
.tarif-card__features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text);
}
.tarif-card__features li::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--green);
  flex-shrink: 0;
}

/* Calendar */
.calendar-section { padding: var(--section-pad) 0; }
.calendar-section__header { text-align: center; margin-bottom: 48px; }
#calendar { max-width: 860px; margin: 0 auto; }
.fc { font-family: var(--sans); }
.fc .fc-toolbar-title { font-family: var(--serif); font-size: 1.4rem; font-weight: 400; color: var(--brown); }
.fc .fc-button { background: var(--brown); border-color: var(--brown); font-size: 0.78rem; }
.fc .fc-button:hover { background: #3d3424; border-color: #3d3424; }
.fc-daygrid-day-number { color: var(--text); font-size: 0.85rem; }
.fc-day-today { background: rgba(91,122,78,0.08) !important; }
.fc-event { background: #c0392b; border-color: #c0392b; font-size: 0.7rem; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  padding: var(--section-pad) 0;
}
.contact-info h3 { font-family: var(--serif); font-size: 1.6rem; font-weight: 400; color: var(--brown); margin-bottom: 20px; }
.contact-info p { font-size: 0.9rem; line-height: 1.75; color: var(--text-light); margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text);
}
.contact-detail svg { width: 20px; height: 20px; color: var(--green); flex-shrink: 0; margin-top: 1px; }
.contact-detail a { color: var(--brown); font-weight: 500; }
.contact-detail a:hover { color: var(--green); }

.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brown); }
.form-group input, .form-group textarea, .form-group select {
  padding: 12px 16px;
  border: 1px solid rgba(44,36,22,0.15);
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--green);
}
.form-group textarea { min-height: 140px; resize: vertical; }

/* ============================================
   BLOG PAGE
   ============================================ */
.blog-page { padding: var(--section-pad) 0; }
.blog-page__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.article { max-width: 820px; margin: 0 auto; padding: var(--section-pad) 0; }
.article__header { margin-bottom: 40px; }
.article__header .t-h1 { margin: 16px 0 20px; }
.article__meta { font-size: 0.8rem; color: var(--text-light); display: flex; gap: 20px; flex-wrap: wrap; }
.article__featured-img { width: 100%; aspect-ratio: 16/7; object-fit: cover; border-radius: var(--radius); margin-bottom: 48px; }
.article__body h2 { font-family: var(--serif); font-size: 1.7rem; font-weight: 400; color: var(--brown); margin: 40px 0 16px; }
.article__body h3 { font-family: var(--serif); font-size: 1.3rem; color: var(--brown); margin: 28px 0 12px; }
.article__body p { font-size: 1rem; line-height: 1.8; color: var(--text); margin-bottom: 20px; }
.article__body ul { margin: 0 0 20px 20px; }
.article__body ul li { font-size: 1rem; line-height: 1.8; color: var(--text); margin-bottom: 8px; list-style: disc; }
.article__cta-box {
  background: var(--cream-dark);
  border-left: 3px solid var(--green);
  padding: 24px 28px;
  margin: 40px 0;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.article__cta-box p { margin-bottom: 12px; font-weight: 500; color: var(--brown); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .atouts__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__main { grid-template-columns: 1fr 1fr; }
  .tarifs-grid { grid-template-columns: 1fr 1fr; }
  .blog-preview__grid { grid-template-columns: repeat(2, 1fr); }
  .blog-page__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .nav__toggle { display: flex; }
  .split { grid-template-columns: 1fr; }
  .split--reverse { direction: ltr; }
  .split__image { aspect-ratio: 4/3; }
  .gallery__grid { grid-template-columns: 1fr 1fr; }
  .wellness__grid { grid-template-columns: 1fr; }
  .region__grid { grid-template-columns: 1fr; }
  .blog-preview__grid { grid-template-columns: 1fr; }
  .blog-page__grid { grid-template-columns: 1fr; }
  .tarifs-grid { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .blog-preview__header { flex-direction: column; align-items: flex-start; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer__main { grid-template-columns: 1fr; }
  .atouts__grid { grid-template-columns: 1fr 1fr; }
  .cta-section { background-attachment: scroll; }
}

@media (max-width: 480px) {
  .atouts__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
}
