/*
Theme Name: Chalet Alkimia
Theme URI: https://chalet-alkimia.com
Author: FIVEWEB
Author URI: https://fiveweb.fr
Description: Thème sur mesure pour le Chalet Alkimia — Chalet de luxe à Valloire
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: chalet-alkimia
Tags: luxury, chalet, rental, one-page
*/

/* ================================================================
   RESET & VARIABLES
================================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #C9A96E;
  --gold-light: #E8D5B0;
  --cream: #F5F0E8;
  --dark: #0D0D0B;
  --dark-2: #1A1A16;
  --charcoal: #2C2C26;
  --text-light: rgba(245,240,232,0.85);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', sans-serif;
  --slide-duration: 6000ms;
  --transition: 1400ms;
}

html { scroll-behavior: smooth; }
body {
  background: var(--dark);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 300;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 48px;
  background: linear-gradient(to bottom, rgba(13,13,11,0.7) 0%, transparent 100%);
  pointer-events: none;
}
.nav-logo {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.25em;
  color: var(--cream);
  text-transform: uppercase;
  pointer-events: all;
}
.nav-logo span { color: var(--gold); }
.nav-links {
  display: flex; gap: 36px;
  list-style: none;
  pointer-events: all;
}
.nav-links a {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }

/* ── SLIDER ── */
.hero {
  position: relative;
  width: 100%; height: 100vh;
  overflow: hidden;
  touch-action: pan-y;
}

.slides-container {
  position: absolute; inset: 0;
}

.slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity var(--transition) cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity;
}
.slide.active { opacity: 1; }
.slide.prev { opacity: 0; }

.slide-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  transition: transform calc(var(--slide-duration) + var(--transition)) linear;
}
.slide.active .slide-bg {
  transform: scale(1.0);
}

.slide-1 .slide-bg {
  background-image:
    linear-gradient(160deg, rgba(60,80,60,0.3) 0%, rgba(20,30,40,0.2) 100%),
    url('assets/img/img_1.webp');
}
.slide-2 .slide-bg {
  background-image:
    linear-gradient(160deg, rgba(60,40,20,0.25) 0%, rgba(20,15,10,0.2) 100%),
    url('assets/img/img_2.webp');
}
.slide-3 .slide-bg {
  background-image:
    linear-gradient(160deg, rgba(30,50,60,0.3) 0%, rgba(10,20,30,0.2) 100%),
    url('assets/img/img_3.webp');
}
.slide-4 .slide-bg {
  background-image:
    linear-gradient(160deg, rgba(40,35,30,0.25) 0%, rgba(20,15,10,0.2) 100%),
    url('assets/img/img_4.webp');
}
.slide-5 .slide-bg {
  background-image:
    linear-gradient(160deg, rgba(50,40,20,0.25) 0%, rgba(20,15,5,0.2) 100%),
    url('assets/img/img_5.webp');
}

.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,13,11,0.25) 0%,
    rgba(13,13,11,0.1) 40%,
    rgba(13,13,11,0.55) 80%,
    rgba(13,13,11,0.85) 100%
  );
}

.slide-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0 80px 180px;
  max-width: 820px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 900ms ease 600ms, transform 900ms ease 600ms;
}
.slide.active .slide-content {
  opacity: 1;
  transform: translateY(0);
}

.slide-tag {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,169,110,0.4);
  padding: 6px 16px;
  margin-bottom: 20px;
  backdrop-filter: blur(4px);
}

.slide-headline {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5.5vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
.slide-headline em {
  font-style: italic;
  color: var(--gold-light);
}

.slide-subtitle {
  font-size: 0.95rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--text-light);
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.7;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--gold);
  border: none;
  padding: 16px 36px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateX(4px);
}
.btn-primary svg { transition: transform 0.3s; }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  background: transparent;
  border: 1px solid rgba(245,240,232,0.4);
  padding: 16px 36px;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.3s, color 0.3s;
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Controls */
.slider-controls {
  position: absolute;
  right: 48px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.slide-dot {
  width: 2px;
  height: 24px;
  background: rgba(245,240,232,0.25);
  cursor: pointer;
  transition: height 0.4s, background 0.4s;
  border: none;
  padding: 0;
}
.slide-dot.active {
  height: 48px;
  background: var(--gold);
}

/* Nav arrows */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: transparent;
  border: 1px solid rgba(245,240,232,0.2);
  color: var(--cream);
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s;
}
.arrow:hover { border-color: var(--gold); background: rgba(201,169,110,0.1); }
.arrow-prev { left: 32px; }
.arrow-next { right: 80px; }

/* Progress bar */
.slide-progress {
  position: absolute;
  bottom: 160px;
  left: 80px;
  right: 120px;
  height: 1px;
  background: rgba(245,240,232,0.12);
  z-index: 10;
}
.slide-progress-fill {
  height: 100%;
  background: var(--gold);
  width: 0%;
  transition: width linear;
}

/* Slide counter */
.slide-counter {
  position: absolute;
  bottom: 168px;
  right: 120px;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--text-light);
  z-index: 10;
}
.slide-counter .current { color: var(--gold); font-size: 0.85rem; }

/* ── BOOKING BANNER ── */
.booking-section {
  position: relative;
  z-index: 20;
  margin-top: -80px;
  padding: 0 48px 80px;
}

.booking-card {
  max-width: 1100px;
  margin: 0 auto;
  background: var(--dark-2);
  border: 1px solid rgba(201,169,110,0.2);
  padding: 40px 48px;
  display: flex;
  align-items: flex-end;
  gap: 32px;
  backdrop-filter: blur(20px);
  box-shadow: 0 40px 80px rgba(0,0,0,0.6);
}

.booking-label {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}

.booking-field {
  flex: 1;
  min-width: 0;
  position: relative;
}

.date-display {
  width: 100%;
  border: none;
  border-bottom: 1px solid rgba(245,240,232,0.15);
  padding: 10px 0;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--cream);
  cursor: pointer;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  transition: border-color 0.3s;
  user-select: none;
}
.date-display:hover, .date-display.active { border-bottom-color: var(--gold); }
.date-display .placeholder { color: rgba(245,240,232,0.35); font-style: italic; }
.date-display svg { color: var(--gold); opacity: 0.6; flex-shrink: 0; }

.guests-select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(245,240,232,0.15);
  padding: 10px 0;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--cream);
  cursor: pointer;
  outline: none;
  transition: border-color 0.3s;
  appearance: none;
  -webkit-appearance: none;
}
.guests-select:focus { border-bottom-color: var(--gold); }
.guests-select option { background: var(--dark-2); color: var(--cream); }
.guests-select.empty { color: rgba(245,240,232,0.35); font-style: italic; }

.date-picker-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  z-index: 200;
  background: #1C1C17;
  border: 1px solid rgba(201,169,110,0.25);
  box-shadow: 0 20px 60px rgba(0,0,0,0.7);
  min-width: 300px;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
}
.date-picker-dropdown.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.dp-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px 12px;
  border-bottom: 1px solid rgba(245,240,232,0.07);
}
.dp-month-label {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.05em;
}
.dp-nav {
  background: none;
  border: 1px solid rgba(245,240,232,0.12);
  color: var(--cream);
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.dp-nav:hover { border-color: var(--gold); color: var(--gold); }
.dp-grid {
  padding: 12px 16px 16px;
}
.dp-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 6px;
}
.dp-weekday {
  text-align: center;
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 4px 0;
}
.dp-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.dp-day {
  text-align: center;
  padding: 8px 4px;
  font-size: 0.82rem;
  font-family: var(--serif);
  color: rgba(245,240,232,0.7);
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.dp-day:hover:not(.empty):not(.disabled) {
  background: rgba(201,169,110,0.12);
  border-color: rgba(201,169,110,0.3);
  color: var(--cream);
}
.dp-day.selected {
  background: var(--gold);
  color: var(--dark);
  font-weight: 500;
}
.dp-day.in-range {
  background: rgba(201,169,110,0.1);
  color: var(--cream);
}
.dp-day.today { border-color: rgba(201,169,110,0.35); }
.dp-day.empty { cursor: default; }
.dp-day.disabled { opacity: 0.2; cursor: not-allowed; }

.guest-option {
  padding: 12px 20px;
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 300;
  color: rgba(245,240,232,0.75);
  cursor: pointer;
  border-left: 2px solid transparent;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  letter-spacing: 0.03em;
}
.guest-option:hover {
  background: rgba(201,169,110,0.08);
  color: var(--cream);
  border-left-color: rgba(201,169,110,0.3);
}
.guest-option.selected {
  color: var(--gold);
  border-left-color: var(--gold);
  background: rgba(201,169,110,0.06);
}

.booking-divider {
  width: 1px;
  height: 60px;
  background: rgba(245,240,232,0.08);
  flex-shrink: 0;
}

.booking-cta { flex-shrink: 0; }
.booking-cta .btn-primary {
  padding: 18px 40px;
  white-space: nowrap;
}

.booking-tagline {
  max-width: 1100px;
  margin: 16px auto 0;
  text-align: center;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  color: rgba(245, 240, 232, 0.8);
  text-transform: uppercase;
}
.booking-tagline span { color: rgba(201,169,110,0.5); }

/* ── SUPERHOTE PANEL ── */
.superhote-panel {
  max-width: 1100px;
  margin: 20px auto 0;
  border: 1px solid rgba(201,169,110,0.2);
  background: var(--dark-2);
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.7s cubic-bezier(0.4,0,0.2,1), opacity 0.5s ease, margin 0.4s ease;
  pointer-events: none;
}
.superhote-panel.open {
  max-height: 1000px;
  opacity: 1;
  pointer-events: all;
  margin-top: 20px;
}
.superhote-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  border-bottom: 1px solid rgba(201,169,110,0.1);
}
.panel-close {
  background: none;
  border: 1px solid rgba(245,240,232,0.15);
  color: var(--cream);
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s;
  flex-shrink: 0;
}
.panel-close:hover { border-color: var(--gold); color: var(--gold); }

.superhote-wrapper {
  width: 100%;
  overflow: hidden;
}
.superhote-wrapper iframe {
  display: block;
  width: 100%;
  border: none;
}

/* ── ABOUT ── */
.section { padding: 120px 48px; }

.section-intro {
  max-width: 1100px;
  margin: 0 auto 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.section-eyebrow {
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--cream);
}
.section-title em { font-style: italic; color: var(--gold-light); }

.section-body {
  font-size: 0.92rem;
  line-height: 1.85;
  color: rgba(245,240,232,0.65);
  padding-top: 8px;
  text-align: center;
}
.section-body p + p { margin-top: 20px; }

/* Features grid */
.features-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(245,240,232,0.06);
}

.feature-item {
  background: var(--dark);
  padding: 40px 32px;
  transition: background 0.4s;
}
.feature-item:hover { background: var(--dark-2); }

.feature-icon {
  width: 40px; height: 40px;
  margin-bottom: 20px;
  color: var(--gold);
}

.feature-title {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 10px;
}

.feature-text {
  font-size: 0.8rem;
  line-height: 1.7;
  color: rgba(245,240,232,0.5);
}

/* ── EQUIPEMENTS ── */
.equipements {
  background: var(--dark-2);
  padding: 100px 48px;
  border-top: 1px solid rgba(245,240,232,0.05);
}

.equip-grid {
  max-width: 1100px;
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.equip-category h3 {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--gold);
  border-bottom: 1px solid rgba(201,169,110,0.2);
  padding-bottom: 14px;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.equip-list { list-style: none; }
.equip-list li {
  font-size: 0.82rem;
  color: rgba(245,240,232,0.6);
  padding: 6px 0;
  border-bottom: 1px solid rgba(245,240,232,0.04);
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.4;
}
.equip-list li::before {
  content: '';
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}
.equip-list li.highlight { color: var(--gold-light); }

/* ── FAQ ── */
.faq-section { padding: 100px 48px; }

.faq-container {
  max-width: 780px;
  margin: 60px auto 0;
}

.faq-item {
  border-bottom: 1px solid rgba(245,240,232,0.08);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  text-align: left;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--cream);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: color 0.3s;
}
.faq-question:hover { color: var(--gold); }

.faq-icon {
  width: 20px; height: 20px;
  flex-shrink: 0;
  color: var(--gold);
  transition: transform 0.4s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.open .faq-answer { max-height: 400px; }

.faq-answer-inner {
  padding: 0 0 24px;
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(245,240,232,0.55);
}

/* ── PLAN DU CHALET ── */
.plan-section {
  padding: 100px 48px;
  background: var(--dark);
  border-top: 1px solid rgba(245,240,232,0.05);
}
.plan-tabs {
  max-width: 1100px;
  margin: 48px auto 0;
  display: flex;
  gap: 2px;
  background: rgba(245,240,232,0.04);
  padding: 3px;
}
.plan-tab {
  flex: 1;
  background: none;
  border: none;
  padding: 14px 10px;
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.35);
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  white-space: nowrap;
}
.plan-tab:hover { color: var(--cream); }
.plan-tab.active {
  background: var(--dark-2);
  color: var(--gold);
  border-bottom: 2px solid var(--gold);
}
.plan-panels {
  max-width: 1100px;
  margin: 0 auto;
}
.plan-panel {
  display: none;
  animation: fadeInUp 0.4s ease;
}
.plan-panel.active { display: block; }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2px;
  margin-top: 2px;
  background: rgba(245,240,232,0.04);
}
.plan-card {
  background: var(--dark-2);
  padding: 36px 32px;
  transition: background 0.3s;
}
.plan-card:hover { background: #202018; }
.plan-card-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}
.plan-card-icon {
  width: 42px; height: 42px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(201,169,110,0.2);
  color: var(--gold);
}
.plan-card-title {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.3;
}
.plan-card-sub {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(201,169,110,0.6);
  margin-top: 2px;
}
.plan-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.plan-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.83rem;
  color: rgba(245,240,232,0.55);
  line-height: 1.5;
}
.plan-item-dot {
  width: 18px; height: 18px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  margin-top: 1px;
}
.plan-floor-label {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 0 0;
  display: flex;
  align-items: center;
  gap: 16px;
}
.plan-floor-title {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  white-space: nowrap;
}
.plan-floor-line {
  flex: 1;
  height: 1px;
  background: rgba(245,240,232,0.07);
}

/* ── FOOTER ── */
footer {
  background: #080807;
  border-top: 1px solid rgba(245,240,232,0.05);
  padding: 60px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
}
.footer-brand span { color: var(--gold); }

.footer-copy {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: rgba(245,240,232,0.25);
}

/* Scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 10;
  opacity: 0.5;
  animation: bob 2s ease-in-out infinite;
}
.scroll-hint span {
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cream);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: drip 2s ease-in-out infinite;
}
@keyframes bob { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }
@keyframes drip { 0% { opacity: 0; transform: scaleY(0); transform-origin: top; } 50% { opacity: 1; transform: scaleY(1); } 100% { opacity: 0; } }

/* ── MOBILE ── */
@media (max-width: 900px) {
  nav { padding: 20px 24px; }
  .nav-links { display: none; }
  .slide-content { padding: 0 24px 220px; }
  .slide-headline { font-size: clamp(2rem, 8vw, 3.2rem); }
  .arrow { display: none; }
  .slider-controls { right: 20px; }
  .booking-section { padding: 0 16px 60px; margin-top: -60px; }
  .booking-card {
    flex-direction: column;
    gap: 24px;
    padding: 28px 24px;
  }
  .booking-divider { display: none; }
  .booking-field { width: 100%; }
  .booking-cta { width: 100%; }
  .booking-cta .btn-primary { width: 100%; justify-content: center; }
  .section { padding: 80px 24px; }
  .section-intro { grid-template-columns: 1fr; gap: 32px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .equipements { padding: 80px 24px; }
  .equip-grid { grid-template-columns: 1fr; gap: 36px; }
  .faq-section { padding: 80px 24px; }
  footer { flex-direction: column; text-align: center; padding: 40px 24px; }
  .slide-progress { left: 24px; right: 80px; bottom: 200px; }
  .slide-counter { bottom: 208px; right: 80px; }
  .plan-section { padding: 80px 24px; }
  .plan-tab { font-size: 0.58rem; padding: 12px 6px; }
  .plan-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
}
