/*
Theme Name: Galeria Corse Premium
Theme URI: https://locationgaleria-corse.com
Author: Studio Digital Premium
Description: Thème premium sur-mesure pour Location Vacances Galéria, Corse. Design éditorial haut de gamme, immersif et responsive.
Version: 1.0.0
License: Proprietary
Text Domain: galeria-corse
*/

/* ============================================
   DESIGN SYSTEM — GALERIA CORSE PREMIUM
   ============================================ */

:root {
  /* Palette */
  --color-deep-blue: #1B3A4B;
  --color-deep-blue-light: #2A5167;
  --color-sand: #D4A574;
  --color-sand-light: #E8C9A0;
  --color-sand-pale: #F5E6D3;
  --color-white: #FAFAF7;
  --color-white-pure: #FFFFFF;
  --color-maquis: #3D5A3E;
  --color-maquis-light: #5A7D5C;
  --color-coral: #E8725C;
  --color-coral-hover: #D4604A;
  --color-text: #2C2C2C;
  --color-text-light: #6B6B6B;
  --color-text-muted: #9B9B9B;
  --color-border: #E8E4DF;
  --color-bg-warm: #F9F6F2;
  --color-overlay: rgba(27, 58, 75, 0.55);
  --color-overlay-dark: rgba(27, 58, 75, 0.75);

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-accent: 'Cormorant Garamond', Georgia, serif;

  /* Sizes */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;
  --text-4xl: 2.75rem;
  --text-5xl: 3.5rem;
  --text-6xl: 4.5rem;
  --text-hero: clamp(2.5rem, 5vw, 5rem);

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --space-4xl: 8rem;
  --space-section: clamp(4rem, 8vw, 8rem);

  /* Layout */
  --max-width: 1280px;
  --max-width-narrow: 900px;
  --max-width-wide: 1440px;
  --gutter: clamp(1.5rem, 4vw, 3rem);

  /* Effects */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 16px 60px rgba(0,0,0,0.15);
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   RESET & BASE
   ============================================ */

*, *::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-size: var(--text-base);
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-deep-blue);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-coral);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-deep-blue);
}

h1 { font-size: var(--text-5xl); letter-spacing: -0.02em; }
h2 { font-size: var(--text-4xl); letter-spacing: -0.01em; }
h3 { font-size: var(--text-3xl); }
h4 { font-size: var(--text-2xl); }

.section-subtitle {
  font-family: var(--font-accent);
  font-size: var(--text-xl);
  font-style: italic;
  color: var(--color-sand);
  letter-spacing: 0.02em;
  margin-bottom: var(--space-xs);
  font-weight: 500;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  color: var(--color-deep-blue);
  margin-bottom: var(--space-md);
}

.section-description {
  font-size: var(--text-lg);
  color: var(--color-text-light);
  max-width: 640px;
  line-height: 1.8;
}

/* ============================================
   LAYOUT
   ============================================ */

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.container--narrow {
  max-width: var(--max-width-narrow);
}

.container--wide {
  max-width: var(--max-width-wide);
}

.section {
  padding: var(--space-section) 0;
}

.section--bg {
  background-color: var(--color-bg-warm);
}

.section--dark {
  background-color: var(--color-deep-blue);
  color: var(--color-white);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--color-white);
}

.section--dark .section-description {
  color: rgba(255,255,255,0.75);
}

.text-center { text-align: center; }

.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background var(--transition-base), box-shadow var(--transition-base);
  padding: var(--space-md) 0;
}

.site-header.scrolled,
.site-header.header-inner-page {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  padding: var(--space-sm) 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width-wide);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.site-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
}

.site-logo img {
  height: 48px;
  width: auto;
  transition: height var(--transition-base);
}

.scrolled .site-logo img,
.header-inner-page .site-logo img {
  height: 40px;
}

.site-logo-text {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.03em;
  transition: color var(--transition-base);
}

.scrolled .site-logo-text,
.header-inner-page .site-logo-text {
  color: var(--color-deep-blue);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.main-nav a {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: var(--space-xs) 0;
  position: relative;
  transition: color var(--transition-fast);
}

.scrolled .main-nav a,
.header-inner-page .main-nav a {
  color: var(--color-text);
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-sand);
  transition: width var(--transition-base);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.main-nav a:hover {
  color: var(--color-sand);
}

.scrolled .main-nav a:hover,
.header-inner-page .main-nav a:hover {
  color: var(--color-coral);
}

.nav-cta {
  font-family: var(--font-body);
  font-size: var(--text-sm) !important;
  font-weight: 600 !important;
  background: var(--color-coral);
  color: var(--color-white) !important;
  padding: 10px 24px !important;
  border-radius: 50px;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  transition: background var(--transition-fast), transform var(--transition-fast) !important;
}

.nav-cta:hover {
  background: var(--color-coral-hover);
  transform: translateY(-1px);
  color: var(--color-white) !important;
}

.nav-cta::after {
  display: none !important;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-xs);
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  margin: 5px 0;
  transition: var(--transition-base);
}

.scrolled .nav-toggle span {
  background: var(--color-deep-blue);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(27, 58, 75, 0.3) 0%,
    rgba(27, 58, 75, 0.15) 40%,
    rgba(27, 58, 75, 0.5) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 var(--gutter);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-sand-light);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: var(--space-lg);
  padding: 8px 20px;
  border: 1px solid rgba(212, 165, 116, 0.4);
  border-radius: 50px;
  backdrop-filter: blur(4px);
  background: rgba(27, 58, 75, 0.2);
}

.hero h1 {
  font-size: var(--text-hero);
  color: var(--color-white);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: var(--space-md);
  text-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.hero h1 em {
  font-style: italic;
  font-family: var(--font-accent);
  font-weight: 400;
  color: var(--color-sand-light);
}

.hero-text {
  font-size: var(--text-xl);
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  animation: float 3s ease-in-out infinite;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.7), transparent);
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.btn-primary {
  background: var(--color-coral);
  color: var(--color-white);
}

.btn-primary:hover {
  background: var(--color-coral-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(232, 114, 92, 0.35);
  color: var(--color-white);
}

.btn-secondary {
  background: transparent;
  color: var(--color-white);
  border: 1.5px solid rgba(255,255,255,0.5);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--color-white);
  color: var(--color-white);
}

.btn-outline {
  background: transparent;
  color: var(--color-deep-blue);
  border: 1.5px solid var(--color-deep-blue);
}

.btn-outline:hover {
  background: var(--color-deep-blue);
  color: var(--color-white);
}

.btn-sand {
  background: var(--color-sand);
  color: var(--color-white);
}

.btn-sand:hover {
  background: var(--color-sand-light);
  color: var(--color-deep-blue);
}

/* ============================================
   INTRO / WELCOME SECTION
   ============================================ */

.intro {
  padding: var(--space-section) 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.intro-content {
  padding-right: var(--space-xl);
}

.intro-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.intro-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.intro-image::after {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border: 3px solid var(--color-sand);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.intro-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.intro-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.intro-feature-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-sand-pale);
  color: var(--color-sand);
  border-radius: var(--radius-md);
  font-size: 1.2rem;
}

.intro-feature h4 {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-deep-blue);
  margin-bottom: 2px;
}

.intro-feature p {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  line-height: 1.5;
}

/* ============================================
   LOGEMENTS / ACCOMMODATIONS
   ============================================ */

.logements {
  background: var(--color-bg-warm);
}

.logement-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--color-white-pure);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: var(--space-xl);
}

.logement-card:nth-child(even) {
  direction: rtl;
}

.logement-card:nth-child(even) > * {
  direction: ltr;
}

.logement-gallery {
  position: relative;
  min-height: 450px;
  overflow: hidden;
}

.logement-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.logement-card:hover .logement-gallery img {
  transform: scale(1.03);
}

.logement-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--color-deep-blue);
  color: var(--color-white);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  z-index: 2;
}

.logement-info {
  padding: var(--space-2xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.logement-type {
  font-family: var(--font-accent);
  font-size: var(--text-base);
  font-style: italic;
  color: var(--color-sand);
  margin-bottom: var(--space-xs);
}

.logement-info h3 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-md);
}

.logement-info p {
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.logement-amenities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: var(--space-lg);
  padding: var(--space-md) 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.amenity {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-sm);
  color: var(--color-text);
}

.amenity-icon {
  color: var(--color-maquis);
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

.logement-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: var(--space-md);
}

.logement-price .price {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--color-deep-blue);
}

.logement-price .price-label {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* ============================================
   DESTINATION SECTION
   ============================================ */

.destination-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.destination-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  group: true;
}

.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.destination-card:hover img {
  transform: scale(1.05);
}

.destination-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27,58,75,0.8) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-lg);
  transition: background var(--transition-base);
}

.destination-card:hover .destination-card-overlay {
  background: linear-gradient(to top, rgba(27,58,75,0.9) 0%, rgba(27,58,75,0.2) 60%);
}

.destination-card h3 {
  color: var(--color-white);
  font-size: var(--text-2xl);
  margin-bottom: 4px;
}

.destination-card p {
  color: rgba(255,255,255,0.8);
  font-size: var(--text-sm);
  line-height: 1.6;
}

/* ============================================
   EXPERIENCE / HIGHLIGHTS
   ============================================ */

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.highlight-card {
  text-align: center;
  padding: var(--space-xl) var(--space-md);
  background: var(--color-white-pure);
  border-radius: var(--radius-lg);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.highlight-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-sand-pale);
  color: var(--color-sand);
  border-radius: 50%;
  font-size: 1.5rem;
}

.highlight-card h4 {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  margin-bottom: var(--space-xs);
}

.highlight-card p {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  line-height: 1.6;
}

/* ============================================
   GALLERY
   ============================================ */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(2, 240px);
  gap: var(--space-sm);
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}

.gallery-item:first-child {
  grid-column: span 1;
  grid-row: span 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(27,58,75,0);
  transition: background var(--transition-base);
}

.gallery-item:hover::after {
  background: rgba(27,58,75,0.15);
}

/* ============================================
   TARIFS / PRICING
   ============================================ */

.pricing-table {
  background: var(--color-white-pure);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  max-width: 700px;
  margin: 0 auto;
}

.pricing-header {
  background: var(--color-deep-blue);
  color: var(--color-white);
  padding: var(--space-lg) var(--space-xl);
  text-align: center;
}

.pricing-header h3 {
  color: var(--color-white);
  font-size: var(--text-2xl);
  margin-bottom: var(--space-xs);
}

.pricing-header p {
  color: rgba(255,255,255,0.7);
  font-size: var(--text-sm);
}

.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) var(--space-xl);
  border-bottom: 1px solid var(--color-border);
  transition: background var(--transition-fast);
}

.pricing-row:last-child {
  border-bottom: none;
}

.pricing-row:hover {
  background: var(--color-bg-warm);
}

.pricing-row.highlight {
  background: var(--color-sand-pale);
}

.pricing-period {
  font-weight: 500;
  color: var(--color-text);
}

.pricing-amount {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-deep-blue);
}

.pricing-amount small {
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--color-text-muted);
  font-family: var(--font-body);
}

.pricing-note {
  padding: var(--space-md) var(--space-xl);
  background: var(--color-bg-warm);
  text-align: center;
  font-size: var(--text-sm);
  color: var(--color-text-light);
  font-style: italic;
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonial-card {
  background: var(--color-white-pure);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--color-sand-light);
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
}

.testimonial-text {
  font-size: var(--text-lg);
  line-height: 1.8;
  color: var(--color-text);
  font-style: italic;
  margin-bottom: var(--space-md);
  padding-top: var(--space-lg);
}

.testimonial-author {
  font-weight: 600;
  color: var(--color-deep-blue);
  font-size: var(--text-sm);
}

.testimonial-stars {
  color: var(--color-sand);
  margin-bottom: var(--space-xs);
  font-size: var(--text-lg);
  letter-spacing: 2px;
}

/* ============================================
   CONTACT / CTA SECTION
   ============================================ */

.cta-banner {
  position: relative;
  padding: var(--space-4xl) 0;
  overflow: hidden;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
}

.cta-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-banner-overlay {
  position: absolute;
  inset: 0;
  background: var(--color-overlay-dark);
}

.cta-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--color-white);
}

.cta-banner h2 {
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.cta-banner p {
  color: rgba(255,255,255,0.85);
  font-size: var(--text-lg);
  margin-bottom: var(--space-xl);
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.contact-info-item {
  text-align: center;
  padding: var(--space-lg);
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
}

.contact-info-item h4 {
  color: var(--color-sand-light);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-xs);
}

.contact-info-item p {
  color: var(--color-white);
  font-size: var(--text-lg);
}

.contact-info-item a {
  color: var(--color-white);
}

.contact-info-item a:hover {
  color: var(--color-sand-light);
}

/* ============================================
   CONTACT FORM
   ============================================ */

.contact-form {
  max-width: 640px;
  margin: 0 auto;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background: var(--color-white-pure);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-sand);
  box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.15);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  background: var(--color-deep-blue);
  color: rgba(255,255,255,0.7);
  padding: var(--space-3xl) 0 var(--space-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand p {
  margin-top: var(--space-md);
  font-size: var(--text-sm);
  line-height: 1.7;
  max-width: 320px;
}

.footer-col h4 {
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-md);
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: rgba(255,255,255,0.6);
  font-size: var(--text-sm);
  transition: color var(--transition-fast);
}

.footer-col a:hover {
  color: var(--color-sand-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.4);
}

/* ============================================
   SEPARATOR / DIVIDER
   ============================================ */

.divider {
  width: 60px;
  height: 3px;
  background: var(--color-sand);
  border: none;
  margin: var(--space-md) 0;
  border-radius: 2px;
}

.divider--center {
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   LIGHTBOX
   ============================================ */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.2);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .intro-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .intro-content {
    padding-right: 0;
  }

  .logement-card {
    grid-template-columns: 1fr;
  }

  .logement-card:nth-child(even) {
    direction: ltr;
  }

  .logement-gallery {
    min-height: 300px;
  }

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

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

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

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

  .contact-info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-deep-blue);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-xl);
    z-index: 999;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    color: var(--color-white) !important;
    font-size: var(--text-lg);
  }

  .nav-toggle {
    display: block;
    z-index: 1001;
  }

  .hero h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-text {
    font-size: var(--text-base);
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

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

  .destination-card {
    aspect-ratio: 16/10;
  }

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

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

  .gallery-item:first-child {
    grid-column: span 1;
    grid-row: span 1;
  }

  .pricing-row {
    padding: var(--space-md) var(--space-md);
  }

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

  .form-group.full-width {
    grid-column: span 1;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }

  .logement-amenities {
    grid-template-columns: 1fr;
  }

  .intro-features {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   ADDITIONAL POLISH
   ============================================ */

/* Smooth image loading */
img {
  opacity: 1;
  transition: opacity 0.3s ease;
}

/* Better focus styles for accessibility */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--color-sand);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* Selection color */
::selection {
  background: var(--color-sand-pale);
  color: var(--color-deep-blue);
}

/* Smooth page load */
body {
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Improve highlight cards on warm background */
.section--bg .highlight-card {
  box-shadow: var(--shadow-sm);
}

/* Better CTA button in logement card on mobile */
@media (max-width: 768px) {
  .logement-info .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .cta-banner {
    padding: var(--space-3xl) 0;
  }

  .contact-info-item {
    padding: var(--space-md);
  }
}

/* Decorative line on section headers */
.section-header .divider {
  margin-top: var(--space-sm);
  margin-bottom: var(--space-lg);
}

/* Better print styles */
@media print {
  .site-header,
  .hero-scroll,
  .lightbox,
  .nav-toggle {
    display: none !important;
  }

  .hero {
    min-height: auto;
    height: auto;
    padding: 2rem;
  }

  body {
    font-size: 12pt;
  }
}

/* ============================================
   DESTINATION CARD AS LINK
   ============================================ */
a.destination-card {
  text-decoration: none;
  color: inherit;
  display: block;
  cursor: pointer;
}
a.destination-card:hover img {
  transform: scale(1.08);
}
a.destination-card::after {
  content: 'En savoir plus \2192';
  position: absolute;
  bottom: 1rem;
  right: 1.5rem;
  color: var(--color-sand-light);
  font-size: 0.8rem;
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.3s ease;
}
a.destination-card:hover::after {
  opacity: 1;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: var(--color-white-pure);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  color: #F5A623;
  margin-bottom: 1rem;
}

.testimonial-card blockquote {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--color-text-light);
  line-height: 1.7;
  font-size: 0.95rem;
  margin: 0 0 1.5rem;
  flex: 1;
  position: relative;
  padding-left: 1rem;
  border-left: 3px solid var(--color-sand-pale);
}

.testimonial-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}

.testimonial-author strong {
  font-family: var(--font-heading);
  color: var(--color-deep-blue);
  font-size: 0.95rem;
}

.testimonial-author span {
  color: var(--color-text-muted);
  font-size: 0.8rem;
}

@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  margin-top: 2.5rem;
  text-align: left;
}

.contact-form-wrapper {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-form .form-group {
  margin-bottom: 1.25rem;
}

.contact-form label {
  display: block;
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-md);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.3s ease, background 0.3s ease;
  box-sizing: border-box;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,0.4);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-sand);
  background: rgba(255,255,255,0.15);
}

.contact-form select option {
  background: var(--color-deep-blue);
  color: #fff;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.form-success {
  text-align: center;
  padding: 3rem 2rem;
  color: #fff;
}

.form-success svg {
  color: var(--color-sand);
  margin-bottom: 1rem;
}

.form-success h3 {
  font-family: var(--font-heading);
  margin-bottom: 0.5rem;
}

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-top: 1rem;
}

.contact-sidebar .contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: transparent;
  backdrop-filter: none;
  padding: 0;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-sand-light);
}

.contact-sidebar .contact-info-item h4 {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.contact-sidebar .contact-info-item p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  line-height: 1.5;
}

.contact-sidebar .contact-info-item a {
  color: var(--color-sand-light);
  text-decoration: none;
}

.contact-sidebar .contact-info-item a:hover {
  color: var(--color-sand);
}

@media (max-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .contact-form-wrapper {
    padding: 1.5rem;
  }

  .contact-sidebar {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
}

/* ============================================
   DESTINATION PAGES
   ============================================ */

.destination-page {
  padding-top: 0;
}

.destination-hero {
  position: relative;
  height: 50vh;
  min-height: 350px;
  max-height: 500px;
  overflow: hidden;
}

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

.destination-hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-2xl) var(--gutter);
  z-index: 2;
  text-align: center;
  color: #fff;
}

.destination-hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.destination-hero-content p {
  font-family: var(--font-accent);
  font-size: var(--text-xl);
  font-style: italic;
  opacity: 0.9;
}

.breadcrumb {
  padding: var(--space-md) 0;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: var(--space-2xl);
}

.breadcrumb a {
  color: var(--color-deep-blue);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.breadcrumb a:hover {
  color: var(--color-coral);
}

.breadcrumb span {
  margin: 0 0.5rem;
  color: var(--color-text-muted);
}

.destination-content {
  padding-bottom: var(--space-3xl);
}

.destination-content h2 {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  color: var(--color-deep-blue);
  margin-bottom: var(--space-md);
}

.destination-content h3 {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  color: var(--color-deep-blue);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-sm);
}

.destination-content p {
  color: var(--color-text-light);
  line-height: 1.9;
  margin-bottom: var(--space-md);
  font-size: var(--text-base);
}

.destination-content ul {
  color: var(--color-text-light);
  line-height: 1.9;
  margin-bottom: var(--space-md);
  padding-left: 1.5rem;
}

.destination-content li {
  margin-bottom: 0.75rem;
}

.destination-image-block {
  margin: var(--space-2xl) 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.destination-image-block img {
  width: 100%;
  height: auto;
  display: block;
}

.image-caption {
  display: block;
  padding: 0.75rem 1rem;
  background: var(--color-bg-warm);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  font-style: italic;
  text-align: center;
}

.destination-info-box {
  background: var(--color-bg-warm);
  border-left: 4px solid var(--color-sand);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  margin: var(--space-2xl) 0;
}

.destination-info-box h4 {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  color: var(--color-deep-blue);
  margin-bottom: var(--space-sm);
}

.destination-info-box ul {
  list-style: none;
  padding: 0;
}

.destination-info-box li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text-light);
  line-height: 1.7;
}

.destination-info-box li:last-child {
  border-bottom: none;
}

.destination-cta {
  text-align: center;
  margin-top: var(--space-3xl);
  padding-top: var(--space-2xl);
  border-top: 1px solid var(--color-border);
}

.destination-cta p {
  font-family: var(--font-accent);
  font-size: var(--text-xl);
  font-style: italic;
  color: var(--color-deep-blue);
  margin-bottom: var(--space-lg);
}

.destination-cta .btn {
  margin: 0 0.5rem;
}

@media (max-width: 768px) {
  .destination-hero {
    height: 40vh;
    min-height: 280px;
  }

  .destination-cta .btn {
    display: block;
    margin: 0.5rem 0;
  }
}

