/* ========================================
   L'Expérience Sofia — Ultra Premium CSS
   ======================================== */

:root {
  --color-sand: #F5F0E8;
  --color-offwhite: #FAFAF7;
  --color-gold: #C9A96E;
  --color-gold-light: #D4B87D;
  --color-gold-dark: #B8944F;
  --color-lagoon: #48B4A0;
  --color-lagoon-light: #5CC4B0;
  --color-black: #1A1A1A;
  --color-charcoal: #333333;
  --color-warmgray: #8A8578;
  --color-white: #FFFFFF;

  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;

  --text-xs: clamp(0.7rem, 0.65rem + 0.25vw, 0.8rem);
  --text-sm: clamp(0.8rem, 0.75rem + 0.3vw, 0.9rem);
  --text-base: clamp(0.95rem, 0.9rem + 0.3vw, 1.05rem);
  --text-lg: clamp(1.1rem, 1rem + 0.5vw, 1.3rem);
  --text-xl: clamp(1.4rem, 1.2rem + 0.8vw, 1.8rem);
  --text-2xl: clamp(1.8rem, 1.4rem + 1.2vw, 2.5rem);
  --text-3xl: clamp(2.2rem, 1.6rem + 2vw, 3.5rem);
  --text-hero: clamp(2.8rem, 2rem + 3vw, 5rem);

  --section-padding: clamp(4rem, 8vw, 8rem);
  --container-max: 1200px;
  --container-narrow: 800px;

  --ease-luxury: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-base: 0.3s var(--ease-luxury);
  --transition-slow: 0.6s var(--ease-luxury);

  --shadow-soft: 0 4px 20px rgba(26, 26, 26, 0.06);
  --shadow-medium: 0 8px 40px rgba(26, 26, 26, 0.1);
  --shadow-gold: 0 4px 20px rgba(201, 169, 110, 0.2);

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

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: var(--font-body); font-weight: 400; font-size: var(--text-base); line-height: 1.7; color: var(--color-charcoal); background: var(--color-offwhite); overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 600; line-height: 1.2; color: var(--color-black); }

/* UTILITIES */
.container { width: 100%; max-width: var(--container-max); margin: 0 auto; padding: 0 1.5rem; }
.container--narrow { max-width: var(--container-narrow); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* SECTION BASE */
.section { padding: var(--section-padding) 0; }
.section--sand { background: var(--color-sand); }
.section--dark { background: var(--color-black); }
.section__header { text-align: center; max-width: 700px; margin: 0 auto 3.5rem; }
.section__label { display: block; font-family: var(--font-body); font-size: var(--text-xs); font-weight: 600; text-transform: uppercase; letter-spacing: 3px; color: var(--color-gold); margin-bottom: 1rem; }
.section__label--light { color: var(--color-gold-light); }
.section__title { font-size: var(--text-2xl); color: var(--color-black); margin-bottom: 1.2rem; }
.section__title--light { color: var(--color-white); }
.section__divider { width: 40px; height: 2px; background: var(--color-gold); margin: 0 auto 1.5rem; }
.section__intro { font-size: var(--text-base); color: var(--color-warmgray); line-height: 1.8; }
.section__intro--light { color: rgba(255,255,255,0.7); }

/* BUTTONS */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 1rem 2.5rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  text-align: center;
}
.btn--primary {
  background: var(--color-gold);
  color: var(--color-white);
  box-shadow: var(--shadow-gold);
}
.btn--primary:hover {
  background: var(--color-gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(201, 169, 110, 0.35);
}
.btn--outline {
  background: transparent;
  color: var(--color-gold);
  border: 1px solid var(--color-gold);
}
.btn--outline:hover {
  background: var(--color-gold);
  color: var(--color-white);
}
.btn--large { padding: 1.15rem 3rem; font-size: var(--text-sm); }
.btn--full { width: 100%; }

/* HEADER */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all var(--transition-base);
  padding: 1.2rem 0;
}
.header--scrolled {
  background: rgba(250, 250, 247, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft);
  padding: 0.8rem 0;
}
.header__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  color: var(--color-white);
  transition: color var(--transition-base);
}
.header--scrolled .header__logo { color: var(--color-black); }
.header__nav { display: none; align-items: center; gap: 2rem; }
.header__link {
  font-size: var(--text-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition-base);
  position: relative;
}
.header__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width var(--transition-base);
}
.header__link:hover::after { width: 100%; }
.header--scrolled .header__link { color: var(--color-charcoal); }
.header__link--cta {
  background: var(--color-gold);
  color: var(--color-white) !important;
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-sm);
}
.header__link--cta::after { display: none; }
.header__link--cta:hover { background: var(--color-gold-dark); }
.header__burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}
.header__burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--color-white);
  transition: all var(--transition-base);
}
.header--scrolled .header__burger span { background: var(--color-black); }
.burger--active span:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); }
.burger--active span:nth-child(2) { opacity: 0; }
.burger--active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }
.burger--active span { background: var(--color-white) !important; }

/* MOBILE NAV */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(26, 26, 26, 0.97);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease-luxury);
}
.mobile-nav--active { opacity: 1; visibility: visible; }
.mobile-nav__inner { text-align: center; display: flex; flex-direction: column; gap: 1.5rem; }
.mobile-nav__link {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  color: var(--color-white);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s var(--ease-luxury);
}
.mobile-nav--active .mobile-nav__link {
  opacity: 1;
  transform: translateY(0);
}
.mobile-nav--active .mobile-nav__link:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav--active .mobile-nav__link:nth-child(2) { transition-delay: 0.15s; }
.mobile-nav--active .mobile-nav__link:nth-child(3) { transition-delay: 0.2s; }
.mobile-nav--active .mobile-nav__link:nth-child(4) { transition-delay: 0.25s; }
.mobile-nav--active .mobile-nav__link:nth-child(5) { transition-delay: 0.3s; }
.mobile-nav--active .mobile-nav__link:nth-child(6) { transition-delay: 0.35s; }
.mobile-nav--active .mobile-nav__link:nth-child(7) { transition-delay: 0.4s; }
.mobile-nav__link--cta {
  display: inline-block;
  margin-top: 1rem;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: var(--color-gold);
  padding: 1rem 2.5rem;
  border-radius: var(--radius-sm);
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0f2027 0%, #1a3a4a 25%, #2c5364 40%, #48B4A0 65%, #C9A96E 85%, #D4B87D 100%);
  background-size: 200% 200%;
  animation: heroGradient 12s ease infinite;
}
@keyframes heroGradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 32, 39, 0.7) 0%, rgba(15, 32, 39, 0.3) 50%, rgba(15, 32, 39, 0.5) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 6rem 1.5rem 4rem;
  max-width: 800px;
}
.hero__location {
  font-size: var(--text-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--color-gold-light);
  margin-bottom: 1.5rem;
  animation: heroFadeIn 1s var(--ease-luxury) 0.2s both;
}
.hero__title {
  font-family: var(--font-heading);
  font-size: var(--text-hero);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: heroFadeIn 1s var(--ease-luxury) 0.4s both;
}
.hero__title span {
  font-style: italic;
  color: var(--color-gold-light);
}
.hero__subtitle {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.85);
  font-weight: 300;
  margin-bottom: 0.5rem;
  animation: heroFadeIn 1s var(--ease-luxury) 0.6s both;
}
.hero__dates {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  color: var(--color-gold-light);
  font-weight: 400;
  letter-spacing: 2px;
  margin-bottom: 2.5rem;
  animation: heroFadeIn 1s var(--ease-luxury) 0.8s both;
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* COUNTDOWN */
.countdown {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  animation: heroFadeIn 1s var(--ease-luxury) 1s both;
}
.countdown__item { text-align: center; }
.countdown__number {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1;
  min-width: 60px;
}
.countdown__label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.5);
  margin-top: 0.4rem;
}
.hero__cta { animation: heroFadeIn 1s var(--ease-luxury) 1.2s both; }
.hero__places {
  font-size: var(--text-sm);
  color: var(--color-gold-light);
  font-weight: 500;
  letter-spacing: 1px;
  margin-top: 1.5rem;
  animation: heroFadeIn 1s var(--ease-luxury) 1.4s both;
}
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.4);
  animation: heroBounce 2s ease-in-out infinite;
  z-index: 2;
}
@keyframes heroBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-luxury), transform 0.8s var(--ease-luxury);
}
.reveal--right {
  transform: translateX(30px);
}
.reveal--left {
  transform: translateX(-30px);
}
.reveal--scale {
  transform: scale(0.95);
}
.reveal--visible {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

/* SOFIA SECTION */
.sofia__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
.sofia__image {
  position: relative;
}
.sofia__image::before {
  content: '';
  position: absolute;
  top: -12px;
  left: -12px;
  right: 12px;
  bottom: 12px;
  border: 2px solid var(--color-gold);
  border-radius: var(--radius-md);
  z-index: 0;
}
.sofia__image .placeholder-image {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.sofia__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-md);
  display: block;
}
.sofia__content p {
  margin-bottom: 1rem;
  color: var(--color-charcoal);
}
.sofia__content .btn { margin-top: 1rem; }

/* CONCEPT SECTION */
.concept__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.concept__card {
  background: var(--color-white);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition: all var(--transition-base);
}
.concept__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}
.concept__icon {
  color: var(--color-gold);
  margin-bottom: 1.2rem;
}
.concept__card h3 {
  font-size: var(--text-lg);
  margin-bottom: 0.8rem;
}
.concept__card p {
  font-size: var(--text-sm);
  color: var(--color-warmgray);
}

/* PROGRAMME SECTION */
.programme__timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}
.programme__timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-gold);
  opacity: 0.3;
}
.programme__day {
  position: relative;
  padding-left: 56px;
  margin-bottom: 2rem;
}
.programme__day:last-child { margin-bottom: 0; }
.programme__day-marker {
  position: absolute;
  left: 0;
  top: 0;
  width: 42px;
  height: 42px;
  background: var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.programme__day-number {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
  line-height: 1.2;
}
.programme__day-card {
  background: var(--color-white);
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}
.programme__day-card h3 {
  font-size: var(--text-lg);
  margin-bottom: 1rem;
  color: var(--color-black);
}
.programme__day-card li {
  padding: 0.4rem 0;
  padding-left: 1.2rem;
  position: relative;
  font-size: var(--text-sm);
  color: var(--color-charcoal);
}
.programme__day-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-gold);
}

/* VILLA SECTION */
.villa__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.villa__stat {
  text-align: center;
  padding: 1.5rem;
}
.villa__stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
}
.villa__stat-label {
  display: block;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-warmgray);
  margin-top: 0.5rem;
}
.villa__gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.villa__photo {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--radius-md);
  display: block;
}

/* CUISINE SECTION */
.cuisine__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
.cuisine__content p {
  margin-bottom: 1.5rem;
  color: var(--color-charcoal);
}
.cuisine__list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.cuisine__photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-md);
  display: block;
}
.cuisine__list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: var(--text-base);
}
.cuisine__list svg { color: var(--color-lagoon); flex-shrink: 0; }

/* INCLUS SECTION */
.inclus__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}
.inclus__card {
  background: var(--color-white);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}
.inclus__card h3 {
  font-size: var(--text-xl);
  margin-bottom: 1.5rem;
  text-align: center;
}
.inclus__card li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 0.6rem 0;
  font-size: var(--text-sm);
}
.inclus__card li svg { flex-shrink: 0; margin-top: 2px; }
.inclus__card--yes { border-top: 3px solid var(--color-lagoon); }
.inclus__card--yes svg { color: var(--color-lagoon); }
.inclus__card--no { border-top: 3px solid var(--color-warmgray); }
.inclus__card--no svg { color: var(--color-warmgray); }

.inclus__agence {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-sand);
  text-align: center;
}
.inclus__agence p {
  font-size: var(--text-xs);
  color: var(--color-warmgray);
  font-style: italic;
  margin-bottom: 0.8rem;
  line-height: 1.6;
}
.btn--agence {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--color-warmgray);
  border: 1px solid rgba(138, 133, 120, 0.3);
  padding: 0.6rem 1.2rem;
  font-size: var(--text-xs);
  text-transform: none;
  letter-spacing: 0.5px;
  font-weight: 500;
}
.btn--agence:hover {
  color: var(--color-gold);
  border-color: var(--color-gold);
  background: rgba(201, 169, 110, 0.05);
}

/* TARIFS SECTION */
.tarifs__card {
  max-width: 600px;
  margin: 0 auto;
  background: var(--color-white);
  padding: 3.5rem 2.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-medium);
  border-top: 3px solid var(--color-gold);
  text-align: center;
}
.tarifs__amount {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--color-gold);
}
.tarifs__per {
  display: block;
  font-size: var(--text-sm);
  color: var(--color-warmgray);
  margin-top: 0.5rem;
}
.tarifs__divider {
  width: 40px;
  height: 1px;
  background: var(--color-sand);
  margin: 2rem auto;
}
.tarifs__details { margin-bottom: 2rem; }
.tarifs__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--color-sand);
}
.tarifs__item-label { font-size: var(--text-sm); color: var(--color-warmgray); }
.tarifs__item-value { font-size: var(--text-sm); font-weight: 600; color: var(--color-black); }
.tarifs__note {
  font-size: var(--text-xs);
  color: var(--color-warmgray);
  margin-top: 1.5rem;
  font-style: italic;
}
.tarifs__card .btn { margin-top: 0.5rem; }

/* GALERIE SECTION */
.galerie__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.galerie__photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-md);
  display: block;
  transition: transform 0.4s var(--ease-luxury);
}
.galerie__photo:hover {
  transform: scale(1.03);
}

/* TEMOIGNAGES SECTION */
.temoignages__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.temoignage__card {
  background: var(--color-white);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  position: relative;
}
.temoignage__quote {
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: -0.5rem;
  opacity: 0.4;
}
.temoignage__card p {
  font-size: var(--text-base);
  font-style: italic;
  color: var(--color-charcoal);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.temoignage__author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-sand);
}
.temoignage__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-sand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  color: var(--color-gold);
  font-weight: 600;
  flex-shrink: 0;
}
.temoignage__author strong {
  display: block;
  font-size: var(--text-sm);
  color: var(--color-black);
}
.temoignage__author span {
  font-size: var(--text-xs);
  color: var(--color-warmgray);
}

/* FAQ SECTION */
.faq__list { display: flex; flex-direction: column; gap: 0.5rem; }
.faq__item {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.3rem 1.5rem;
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--color-black);
  text-align: left;
  transition: background var(--transition-base);
}
.faq__question:hover { background: rgba(201, 169, 110, 0.05); }
.faq__icon {
  font-size: 1.5rem;
  color: var(--color-gold);
  transition: transform 0.3s var(--ease-luxury);
  flex-shrink: 0;
  margin-left: 1rem;
}
.faq__item--active .faq__icon { transform: rotate(45deg); }
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-luxury);
}
.faq__answer p {
  padding: 0 1.5rem 1.3rem;
  font-size: var(--text-sm);
  color: var(--color-charcoal);
  line-height: 1.8;
}

/* INSCRIPTION SECTION */
.inscription__form {
  max-width: 600px;
  margin: 0 auto;
}
.form__group {
  margin-bottom: 1.5rem;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.form__group label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  margin-bottom: 0.5rem;
}
.form__group input,
.form__group textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-white);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  outline: none;
}
.form__group input::placeholder,
.form__group textarea::placeholder {
  color: rgba(255,255,255,0.3);
}
.form__group input:focus,
.form__group textarea:focus {
  border-color: var(--color-gold);
  background: rgba(255,255,255,0.12);
}
.form__group textarea { resize: vertical; min-height: 100px; }
.form__note {
  text-align: center;
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.4);
  margin-top: 1rem;
}

/* FOOTER */
.footer {
  background: var(--color-black);
  padding: 4rem 0 2rem;
  color: rgba(255,255,255,0.6);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer__logo {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  color: var(--color-white);
  margin-bottom: 0.8rem;
}
.footer__tagline {
  font-size: var(--text-sm);
  margin-bottom: 0.5rem;
}
.footer__location {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.4);
}
.footer__nav h4,
.footer__contact h4 {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-gold);
  margin-bottom: 1rem;
}
.footer__nav a,
.footer__contact a {
  display: block;
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
  padding: 0.3rem 0;
  transition: color var(--transition-base);
}
.footer__nav a:hover,
.footer__contact a:hover { color: var(--color-white); }
.footer__contact a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.3);
}

/* WHATSAPP FLOATING */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 998;
  transition: transform var(--transition-base);
  animation: whatsappPulse 3s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.1); }
@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 25px rgba(37, 211, 102, 0.6); }
}

/* PLACEHOLDER IMAGES */
.placeholder-image {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  color: rgba(255,255,255,0.6);
  font-size: var(--text-xs);
  font-style: italic;
  letter-spacing: 1px;
  overflow: hidden;
}
.placeholder-image svg { opacity: 0.5; }
.placeholder-image--portrait {
  background: linear-gradient(135deg, #C9A96E 0%, #D4B87D 50%, #F5F0E8 100%);
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-md);
}
.placeholder-image--landscape {
  background: linear-gradient(135deg, #48B4A0 0%, #2c5364 50%, #1a3a4a 100%);
  aspect-ratio: 3 / 2;
  border-radius: var(--radius-md);
}
.placeholder-image--cuisine {
  background: linear-gradient(135deg, #C9A96E 0%, #D4B87D 60%, #48B4A0 100%);
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
}
.placeholder-image--gallery {
  background: linear-gradient(135deg, #2c5364 0%, #48B4A0 100%);
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  transition: transform 0.4s var(--ease-luxury);
}
.placeholder-image--gallery:nth-child(2n) {
  background: linear-gradient(135deg, #C9A96E 0%, #1a3a4a 100%);
}
.placeholder-image--gallery:nth-child(3n) {
  background: linear-gradient(135deg, #0f2027 0%, #48B4A0 50%, #D4B87D 100%);
}
.placeholder-image--gallery:nth-child(4n) {
  background: linear-gradient(135deg, #D4B87D 0%, #2c5364 100%);
}

/* RESPONSIVE — TABLET */
@media (min-width: 768px) {
  .header__nav { display: flex; }
  .header__burger { display: none; }

  .sofia__grid { grid-template-columns: 2fr 3fr; gap: 4rem; }

  .concept__grid { grid-template-columns: repeat(2, 1fr); }

  .villa__stats { grid-template-columns: repeat(4, 1fr); }
  .villa__gallery { grid-template-columns: repeat(2, 1fr); }

  .cuisine__grid { grid-template-columns: 1fr 1fr; }

  .inclus__grid { grid-template-columns: repeat(2, 1fr); }

  .galerie__grid { grid-template-columns: repeat(4, 1fr); }

  .temoignages__grid { grid-template-columns: repeat(3, 1fr); }

  .form__row { grid-template-columns: 1fr 1fr; }

  .footer__grid { grid-template-columns: 2fr 1fr 1fr; }
}

/* RESPONSIVE — DESKTOP */
@media (min-width: 1024px) {
  .concept__grid { grid-template-columns: repeat(3, 1fr); }

  .programme__timeline::before { left: 20px; }
}

/* REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
