/* ============================================================
   CyberAndorra.com — Design System "Alpin Clair"
   Palette : pierre chaude · forêt de pin · or montagne · ciel alpin
   ============================================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&family=Space+Mono:wght@400;700&display=swap');

/* --- CSS Custom Properties --- */
:root {
  /* Fonds */
  --bg-deep:       #F5F2EC;   /* Pierre chaude — fond général */
  --bg-card:       #FFFFFF;   /* Blanc — cartes et surfaces */
  --bg-card-hover: #F0EAE0;   /* Pierre légère — hover cartes */
  --bg-pine:       #1B3325;   /* Forêt de pin — sections "dark" */
  --bg-pine-mid:   #243E2D;   /* Pin clair */
  --bg-stone:      #EDE8DF;   /* Pierre — alternance légère */

  /* Accents */
  --accent-gold:       #B8924A; /* Or montagne soleil */
  --accent-gold-light: #C9A96E;
  --accent-blue:       #3B7FA8; /* Ciel alpin */
  --accent-blue-light: #5A9CBD;
  --accent-pine:       #2D5A3D; /* Vert forêt */

  /* Texte */
  --text-primary: #1C2530;   /* Texte principal (fond clair) */
  --text-muted:   #6B7888;   /* Texte secondaire */
  --text-light:   #EDE8DF;   /* Texte sur sections pin/sombres */
  --text-light-muted: rgba(237, 232, 223, 0.65);

  /* Bordures */
  --border-subtle: rgba(28, 37, 48, 0.09);
  --border-hover:  rgba(184, 146, 74, 0.45);
  --border-pine:   rgba(237, 232, 223, 0.12);

  /* Ombres */
  --shadow:      0 2px 12px rgba(28, 37, 48, 0.06);
  --shadow-card: 0 4px 20px rgba(28, 37, 48, 0.07);
  --shadow-gold: 0 8px 28px rgba(184, 146, 74, 0.14);

  /* Typographie */
  --font-title: 'Cormorant Garamond', Georgia, serif;
  --font-body:  'Plus Jakarta Sans', system-ui, sans-serif;
  --font-mono:  'Space Mono', 'Courier New', monospace;

  /* Layout */
  --container: 1200px;
  --radius:    8px;
  --radius-lg: 16px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-deep);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

/* --- Typographie --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-title);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; font-family: var(--font-body); font-weight: 600; }

p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
}

.text-gold  { color: var(--accent-gold); }
.text-blue  { color: var(--accent-blue); }
.text-light { color: var(--text-primary); }

/* --- Layout --- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section-sm {
  padding: 48px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* Section sombre : forêt de pin */
.section-dark {
  background-color: var(--bg-pine);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark h5 {
  color: var(--text-light);
}

.section-dark p {
  color: var(--text-light-muted);
}

.section-dark .eyebrow {
  color: var(--accent-gold-light);
}

.section-dark .section-header p {
  color: var(--text-light-muted);
}

/* Section alternance pierre légère */
.section-stone {
  background-color: var(--bg-stone);
}

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* --- Séparateur diagonal --- */
.section-diagonal {
  position: relative;
}
.section-diagonal::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--bg-deep);
  clip-path: polygon(0 80px, 100% 0, 100% 80px);
}
.section-diagonal.section-dark::after {
  background: var(--bg-pine);
}

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  background: rgba(245, 242, 236, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 10px 0;
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 1px 16px rgba(28, 37, 48, 0.06);
}

/* Header sur hero (fond sombre) : texte blanc */
.site-header:not(.scrolled) .site-logo,
.site-header:not(.scrolled) .site-logo span {
  color: #FFFFFF;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.site-header:not(.scrolled) .main-nav a {
  color: rgba(255,255,255,0.82);
}

.site-header:not(.scrolled) .main-nav a:hover {
  color: #FFFFFF;
  background: rgba(255,255,255,0.12);
}

.site-header:not(.scrolled) .nav-toggle {
  color: #FFFFFF;
  border-color: rgba(255,255,255,0.3);
}

.site-header:not(.scrolled) .lang-switcher {
  border-color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.08);
}

.site-header:not(.scrolled) .lang-switcher a {
  color: rgba(255,255,255,0.75);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-logo {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-gold);
  letter-spacing: 0.02em;
  flex-shrink: 0;
  transition: color var(--transition);
}

.site-logo span {
  color: var(--text-primary);
  transition: color var(--transition);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a {
  padding: 8px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--text-primary);
  background: rgba(28, 37, 48, 0.06);
}

/* --- Sélecteur de langue --- */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(28, 37, 48, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 4px 8px;
  flex-shrink: 0;
  transition: background var(--transition), border-color var(--transition);
}

.lang-switcher a {
  padding: 4px 8px;
  font-size: 0.75rem;
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--text-muted);
  border-radius: 14px;
  transition: all var(--transition);
  letter-spacing: 0.05em;
}

.lang-switcher a:hover {
  color: var(--text-primary);
  background: rgba(28, 37, 48, 0.06);
}

.lang-switcher a.active {
  color: #FFFFFF;
  background: var(--accent-gold);
}

/* Bouton menu mobile */
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 8px 10px;
  cursor: pointer;
  color: var(--text-primary);
  font-size: 1.2rem;
  line-height: 1;
  transition: color var(--transition), border-color var(--transition);
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    #1B3325 0%,
    #1e3d2a 45%,
    #1a3538 100%
  );
  z-index: 0;
}

/* Grain légère sur hero */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px;
  opacity: 0.35;
  pointer-events: none;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.55;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero-bg-img.loaded {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20, 35, 25, 0.15) 0%,
    rgba(20, 35, 25, 0.05) 35%,
    rgba(20, 35, 25, 0.55) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding: 120px 24px 60px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(184, 146, 74, 0.18);
  border: 1px solid rgba(184, 146, 74, 0.35);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-family: var(--font-mono);
  color: var(--accent-gold-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 300;
  color: #FFFFFF;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero h1 em {
  font-style: italic;
  color: var(--accent-gold-light);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(237, 232, 223, 0.82);
  margin-bottom: 40px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   BOUTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-decoration: none;
}

.btn-gold {
  background: var(--accent-gold);
  color: #FFFFFF;
}

.btn-gold:hover {
  background: var(--accent-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184, 146, 74, 0.3);
  color: #FFFFFF;
}

/* Outline sur fond clair */
.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid rgba(28, 37, 48, 0.25);
}

.btn-outline:hover {
  background: rgba(28, 37, 48, 0.06);
  border-color: rgba(28, 37, 48, 0.45);
  transform: translateY(-2px);
}

/* Outline sur fond sombre (hero, sections pin) */
.hero .btn-outline,
.section-dark .btn-outline {
  color: var(--text-light);
  border-color: rgba(237, 232, 223, 0.4);
}

.hero .btn-outline:hover,
.section-dark .btn-outline:hover {
  background: rgba(237, 232, 223, 0.1);
  border-color: rgba(237, 232, 223, 0.7);
}

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

.btn-outline-gold:hover {
  background: var(--accent-gold);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

/* ============================================================
   BARRE DE STATISTIQUES
   ============================================================ */
.stats-bar {
  background: var(--bg-pine);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  padding: 32px 0;
}

.stats-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  flex: 1;
  min-width: 120px;
}

.stat-value {
  font-family: var(--font-mono);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent-gold-light);
  display: block;
  line-height: 1.2;
}

.stat-label {
  font-size: 0.78rem;
  color: rgba(237, 232, 223, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(237, 232, 223, 0.12);
  flex-shrink: 0;
}

/* ============================================================
   STAY22 WIDGET
   ============================================================ */
.stay22-wrapper {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
  min-height: 500px;
  box-shadow: var(--shadow-card);
}

.stay22-section {
  padding: 64px 0;
}

.stay22-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 24px;
  flex-wrap: wrap;
}

/* ============================================================
   CARTES DESTINATIONS
   ============================================================ */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.destination-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  cursor: pointer;
  text-decoration: none;
  box-shadow: var(--shadow);
}

.destination-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-gold);
}

.destination-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: linear-gradient(135deg, #D6CFC2 0%, #C8BFB0 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.destination-card-img-placeholder {
  font-size: 3rem;
  opacity: 0.45;
}

.destination-card-body {
  padding: 20px;
}

.destination-card-body h3 {
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.destination-card-body p {
  font-size: 0.875rem;
  margin-bottom: 14px;
  color: var(--text-muted);
}

.card-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.tag {
  font-size: 0.72rem;
  padding: 3px 10px;
  border-radius: 20px;
  background: rgba(59, 127, 168, 0.08);
  color: var(--accent-blue);
  border: 1px solid rgba(59, 127, 168, 0.18);
  font-weight: 500;
  letter-spacing: 0.03em;
}

.tag-gold {
  background: rgba(184, 146, 74, 0.10);
  color: var(--accent-gold);
  border-color: rgba(184, 146, 74, 0.22);
}

/* ============================================================
   GRILLE ACTIVITÉS
   ============================================================ */
.activity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.activity-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
  text-decoration: none;
  box-shadow: var(--shadow);
}

.activity-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.activity-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  display: block;
}

.activity-card h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.activity-card p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* ============================================================
   CARTES SPA
   ============================================================ */
.spa-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.spa-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.spa-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-gold));
  opacity: 0;
  transition: opacity var(--transition);
}

.spa-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-gold);
  transform: translateY(-3px);
}

.spa-card:hover::before {
  opacity: 1;
}

.spa-card-icon {
  font-size: 1.8rem;
  margin-bottom: 14px;
}

.spa-card h3 {
  font-size: 1.15rem;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.spa-card .spa-location {
  font-size: 0.8rem;
  color: var(--accent-blue);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.spa-card p {
  font-size: 0.875rem;
  margin-bottom: 16px;
}

/* ============================================================
   CALDEA HIGHLIGHT
   ============================================================ */
.caldea-highlight {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.caldea-highlight-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}

.caldea-content {
  padding: 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.caldea-content .eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent-blue);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.caldea-content h2 {
  color: var(--text-primary);
  margin-bottom: 16px;
}

.caldea-content p {
  margin-bottom: 32px;
  font-size: 1.05rem;
  color: var(--text-muted);
}

.caldea-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.caldea-stat {
  background: rgba(59, 127, 168, 0.06);
  border: 1px solid rgba(59, 127, 168, 0.13);
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
}

.caldea-stat .value {
  font-family: var(--font-mono);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-gold);
  display: block;
  margin-bottom: 4px;
}

.caldea-stat .label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.caldea-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.caldea-visual {
  background: linear-gradient(160deg, #1B3325 0%, #243E2D 50%, #1a3538 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.caldea-visual-placeholder {
  font-size: 6rem;
  opacity: 0.2;
}

/* ============================================================
   TABLEAUX DE DONNÉES
   ============================================================ */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.data-table th {
  background: rgba(184, 146, 74, 0.07);
  color: var(--accent-gold);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border-subtle);
}

.data-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-primary);
}

.data-table tr:last-child td {
  border-bottom: none;
}

.data-table tr:hover td {
  background: rgba(28, 37, 48, 0.02);
}

.data-table td:first-child {
  font-weight: 600;
}

/* ============================================================
   FAQ / ACCORDION
   ============================================================ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-subtle);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  cursor: pointer;
  gap: 16px;
}

.faq-question h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* FAQ dans sections pin */
.section-dark .faq-question h3 {
  color: var(--text-light);
}

.section-dark .faq-item {
  border-bottom-color: var(--border-pine);
}

.faq-toggle {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: rgba(184, 146, 74, 0.10);
  border: 1px solid rgba(184, 146, 74, 0.22);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--accent-gold);
  transition: transform var(--transition), background var(--transition);
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
  background: var(--accent-gold);
  color: #FFFFFF;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 0 0 20px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

.section-dark .faq-answer-inner {
  color: var(--text-light-muted);
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

/* ============================================================
   CARTES INFO
   ============================================================ */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
}

.info-card .info-icon {
  font-size: 1.8rem;
  margin-bottom: 14px;
}

.info-card h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent-gold);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.8rem;
  font-family: var(--font-mono);
}

.info-card p, .info-card li {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-primary);
}

/* ============================================================
   PAGE HERO (pages internes)
   ============================================================ */
.page-hero {
  padding: 140px 0 80px;
  background: linear-gradient(160deg, var(--bg-pine) 0%, #1e3d2a 60%, #1a3538 100%);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  text-align: center;
}

.page-hero .eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent-gold-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.page-hero h1 {
  margin-bottom: 20px;
  color: var(--text-light);
  text-shadow: 0 2px 16px rgba(0,0,0,0.25);
}

.page-hero p {
  font-size: 1.1rem;
  max-width: 620px;
  margin: 0 auto 32px;
  color: var(--text-light-muted);
}

.page-hero .breadcrumb {
  justify-content: center;
}

/* ============================================================
   FIL D'ARIANE
   ============================================================ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
  padding: 16px 0;
  flex-wrap: wrap;
}

.page-hero .breadcrumb,
.page-hero .breadcrumb a {
  color: rgba(237, 232, 223, 0.55);
}

.page-hero .breadcrumb a:hover {
  color: var(--accent-gold-light);
}

.breadcrumb a {
  color: var(--text-muted);
  transition: color var(--transition);
}

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

.breadcrumb .sep {
  color: var(--border-subtle);
  opacity: 3;
}

/* ============================================================
   TÉMOIGNAGES
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
}

.testimonial-stars {
  color: var(--accent-gold);
  font-size: 0.9rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: #FFFFFF;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text-primary);
}

.testimonial-from {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ============================================================
   GRILLE PAROISSES (page hôtels)
   ============================================================ */
.parish-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}

.parish-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 20px 16px;
  text-align: center;
  transition: all var(--transition);
  text-decoration: none;
  box-shadow: var(--shadow);
}

.parish-link:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.parish-icon {
  font-size: 1.8rem;
}

.parish-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

.parish-cta {
  font-size: 0.75rem;
  color: var(--accent-gold);
  font-family: var(--font-mono);
}

/* ============================================================
   SKI — Cartes station
   ============================================================ */
.resort-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 32px;
  box-shadow: var(--shadow-card);
}

.resort-header {
  padding: 40px;
  background: linear-gradient(160deg, var(--bg-pine) 0%, #1e3d2a 100%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.resort-header .badge {
  display: inline-block;
  font-size: 0.72rem;
  font-family: var(--font-mono);
  color: var(--accent-blue-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 1px solid rgba(90, 156, 189, 0.3);
  border-radius: 20px;
  padding: 3px 12px;
  margin-bottom: 12px;
}

.resort-header h2 {
  color: var(--text-light);
  margin-bottom: 8px;
}

.resort-header p {
  font-size: 1rem;
  color: var(--text-light-muted);
}

.resort-stats {
  display: flex;
  gap: 32px;
  margin-top: 24px;
  flex-wrap: wrap;
}

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

.resort-stat .val {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-gold-light);
  display: block;
}

.resort-stat .lbl {
  font-size: 0.75rem;
  color: rgba(237, 232, 223, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.resort-body {
  padding: 32px 40px;
}

/* ============================================================
   CALENDRIER SAISONNIER
   ============================================================ */
.season-calendar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.season-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow);
}

.season-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.season-period {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.season-activity {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.season-weather {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ============================================================
   FILTRES
   ============================================================ */
.filter-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.filter-pill {
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  background: transparent;
  transition: all var(--transition);
}

.filter-pill:hover,
.filter-pill.active {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  background: rgba(184, 146, 74, 0.08);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg-pine);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .site-logo {
  display: block;
  margin-bottom: 16px;
  font-size: 1.4rem;
  color: var(--accent-gold-light);
}

.footer-brand .site-logo span {
  color: var(--text-light);
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: var(--text-light-muted);
}

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-gold-light);
  margin-bottom: 16px;
}

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

.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(237, 232, 223, 0.55);
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--text-light);
}

.footer-bottom {
  border-top: 1px solid var(--border-pine);
  padding-top: 24px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-legal-text {
  font-size: 0.78rem;
  color: rgba(237, 232, 223, 0.45);
  line-height: 1.8;
}

.footer-legal-text a {
  color: var(--accent-gold-light);
}

.footer-affiliation {
  font-size: 0.75rem;
  color: rgba(237, 232, 223, 0.35);
  max-width: 400px;
  text-align: right;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

.animate-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-content > * {
  animation: fadeInUp 0.7s ease forwards;
  opacity: 0;
}

.hero-badge     { animation-delay: 0.1s; }
.hero h1        { animation-delay: 0.25s; }
.hero-subtitle  { animation-delay: 0.4s; }
.hero-actions   { animation-delay: 0.55s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .caldea-highlight-inner {
    grid-template-columns: 1fr;
  }
  .caldea-visual {
    min-height: 240px;
    order: -1;
  }
  .caldea-content {
    padding: 40px;
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--bg-pine);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    z-index: 90;
  }
  .main-nav.open {
    display: flex;
  }
  .main-nav a {
    font-size: 1.2rem;
    padding: 12px 24px;
    color: var(--text-light);
  }
  .main-nav a:hover {
    color: var(--accent-gold-light);
    background: rgba(255,255,255,0.06);
  }
  .nav-toggle {
    display: flex;
    z-index: 101;
  }
  .activity-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .season-calendar {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
  }
  .footer-affiliation {
    text-align: left;
  }
  .stats-bar-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-divider {
    display: none;
  }
  .resort-stats {
    gap: 20px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 56px 0;
  }
  .activity-grid {
    grid-template-columns: 1fr;
  }
  .season-calendar {
    grid-template-columns: 1fr;
  }
  .caldea-content {
    padding: 28px;
  }
  .resort-body, .resort-header {
    padding: 24px;
  }
}

/* ============================================================
   UTILITAIRES
   ============================================================ */
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent-blue);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 12px;
}

.section-dark .eyebrow {
  color: var(--accent-gold-light);
}

.gold-line {
  width: 48px;
  height: 2px;
  background: var(--accent-gold);
  margin: 0 auto 24px;
}

.gold-line-left {
  margin-left: 0;
}

.divider {
  height: 1px;
  background: var(--border-subtle);
  margin: 48px 0;
}

/* --- Highlights (pages localité hôtels) --- */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(184, 146, 74, 0.06);
  border: 1px solid rgba(184, 146, 74, 0.14);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--text-primary);
}

.highlight-check {
  color: var(--accent-gold);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.highlight-box {
  background: rgba(184, 146, 74, 0.06);
  border: 1px solid rgba(184, 146, 74, 0.15);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  color: var(--text-primary);
}

.warning-box {
  background: rgba(180, 100, 0, 0.05);
  border: 1px solid rgba(180, 100, 0, 0.15);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.warning-box::before {
  content: '⚠️ ';
}

/* Map embed */
.map-embed {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}

/* ─── Hotel detail page ─────────────────────────────────── */
.hotel-hero-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.hotel-stars {
  font-size: 1.15rem;
  color: var(--accent-gold);
  letter-spacing: 2px;
}

.hotel-location-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: rgba(184, 146, 74, 0.1);
  border: 1px solid rgba(184, 146, 74, 0.25);
  border-radius: 20px;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-family: var(--font-body);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
}

.section-dark .amenity-item {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.amenity-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  width: 28px;
  text-align: center;
}

.amenity-label {
  font-size: 0.875rem;
  color: var(--text-light);
  font-family: var(--font-body);
}

.section-title-sm {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text-light);
}

/* Skip to content (accessibilité) */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--accent-gold);
  color: #FFFFFF;
  padding: 8px 16px;
  z-index: 200;
  font-weight: 600;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0;
}
