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

  :root {
    --primary: #1C1917;
    --secondary: #44403C;
    --accent: #A16207;
    --accent-light: #D97706;
    --bg: #FAFAF9;
    --fg: #0C0A09;
    --muted: #78716C;
    --border: #D6D3D1;
    --gold: #C9A96E;
  }

  body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--fg);
    line-height: 1.6;
    font-size: 16px;
  }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 48px;
    background: rgba(28,25,23,0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(201,169,110,0.15);
  }

  .nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: #F5F0E8;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
  }

  .nav-logo span {
    display: block;
    font-size: 9px;
    letter-spacing: 5px;
    color: var(--gold);
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    margin-top: 2px;
    text-transform: uppercase;
  }

  .nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
    align-items: center;
  }

  .nav-links a {
    color: rgba(245,240,232,0.8);
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 400;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--gold); }

  .nav-cta {
    background: var(--gold);
    color: var(--primary) !important;
    padding: 10px 24px !important;
    font-weight: 600 !important;
    letter-spacing: 2px;
    transition: background 0.2s !important;
  }
  .nav-cta:hover { background: #e8c17e !important; color: var(--primary) !important; }

  /* ── HERO ── */
  .hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/images/salon2.jpg');
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
    transition: transform 8s ease-out;
  }

  .hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 7, 4, 0.18);
  }

  .hero-gradient {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 70%;
    background: linear-gradient(to top, rgba(12,10,9,0.80) 0%, rgba(12,10,9,0.30) 50%, transparent 100%);
  }

  .hero-content {
    position: relative;
    z-index: 2;
    padding: 0 48px 72px;
    max-width: 760px;
  }

  .hero-eyebrow {
    font-size: 10px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 400;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .hero-eyebrow::before {
    content: '';
    display: inline-block;
    width: 32px;
    height: 1px;
    background: var(--gold);
  }

  .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(42px, 5vw, 72px);
    color: #F5F0E8;
    line-height: 1.1;
    margin-bottom: 20px;
  }

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

  .hero-subtitle {
    font-size: 16px;
    color: rgba(245,240,232,0.65);
    font-weight: 300;
    margin-bottom: 40px;
    max-width: 480px;
    line-height: 1.7;
  }

  .hero-ctas {
    display: flex;
    gap: 16px;
    align-items: center;
  }

  .btn-primary {
    background: var(--gold);
    color: var(--primary);
    padding: 16px 36px;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s, transform 0.15s;
  }

  .btn-primary:hover {
    background: #e8c17e;
    transform: translateY(-1px);
  }

  .btn-ghost {
    color: rgba(245,240,232,0.7);
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
  }

  .btn-ghost:hover { color: var(--gold); }
  .btn-ghost::after { content: '↓'; font-size: 14px; }

  /* ── STATS BAR ── */
  .stats-bar {
    background: var(--primary);
    border-top: 1px solid rgba(201,169,110,0.2);
    display: flex;
    justify-content: center;
    gap: 0;
  }

  .stat-item {
    padding: 28px 56px;
    text-align: center;
    border-right: 1px solid rgba(201,169,110,0.15);
    flex: 1;
    max-width: 200px;
  }

  .stat-item:last-child { border-right: none; }

  .stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: var(--gold);
    display: block;
    line-height: 1;
  }

  .stat-label {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(245,240,232,0.5);
    margin-top: 6px;
    display: block;
  }

  /* ── SECTION BASE ── */
  section {
    padding: 96px 48px;
  }

  .section-eyebrow {
    font-size: 10px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
  }

  .section-eyebrow::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 1px;
    background: var(--gold);
  }

  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 3vw, 48px);
    color: var(--fg);
    line-height: 1.15;
    margin-bottom: 16px;
  }

  .section-subtitle {
    color: var(--muted);
    font-size: 15px;
    font-weight: 300;
    max-width: 520px;
    line-height: 1.7;
  }

  /* ── AVAILABILITY SECTION ── */
  .availability-section {
    background: var(--primary);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 96px 80px;
  }

  .availability-section .section-eyebrow { color: var(--gold); }
  .availability-section .section-title { color: #F5F0E8; }
  .availability-section .section-subtitle { color: rgba(245,240,232,0.55); }

  .chalet-info .section-title { color: #F5F0E8; }
  .chalet-info .section-eyebrow { color: var(--gold); }
  .faq-section .section-title { color: #F5F0E8; }
  .faq-section .section-eyebrow { color: var(--gold); }

  .calendar-widget {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201,169,110,0.2);
    border-radius: 2px;
    padding: 32px;
    backdrop-filter: blur(8px);
  }

  .calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
  }

  .calendar-month {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: #F5F0E8;
    letter-spacing: 2px;
  }

  .calendar-nav {
    background: none;
    border: 1px solid rgba(201,169,110,0.3);
    color: var(--gold);
    width: 32px;
    height: 32px;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
  }

  .cal-day-header {
    text-align: center;
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    padding: 8px 0;
    font-weight: 500;
  }

  .cal-day {
    aspect-ratio: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.15s, transform 0.1s;
    font-weight: 400;
    color: rgba(245,240,232,0.35);
  }

  /* Disponible — bien visible, fond légèrement lumineux */
  .cal-day.available {
    color: #F5F0E8;
    font-weight: 500;
    background: rgba(245,240,232,0.06);
  }
  .cal-day.available:hover {
    background: rgba(201,169,110,0.18);
    color: var(--gold);
    transform: scale(1.08);
  }

  /* Réservé — diagonal slash net + fond sombre */
  .cal-day.booked {
    color: rgba(245,240,232,0.2);
    background: rgba(0,0,0,0.25);
    cursor: not-allowed;
    overflow: hidden;
  }
  .cal-day.booked::after {
    content: '';
    position: absolute;
    inset: 3px;
    background: linear-gradient(
      to top right,
      transparent calc(50% - 0.7px),
      rgba(201,169,110,0.35) 50%,
      transparent calc(50% + 0.7px)
    );
    border-radius: 2px;
    pointer-events: none;
  }
  .cal-day.booked:hover { background: rgba(0,0,0,0.25); transform: none; }

  /* Aujourd'hui */
  .cal-day.today {
    border: 1.5px solid var(--gold);
    color: var(--gold);
    font-weight: 700;
    background: rgba(201,169,110,0.1);
  }

  .cal-day.empty { pointer-events: none; }

  /* Passé — très discret */
  .cal-day.past {
    color: rgba(245,240,232,0.15);
    cursor: default;
    background: none;
  }
  .cal-day.past:hover { background: none; transform: none; }

  /* Légende */
  .calendar-legend {
    display: flex;
    gap: 24px;
    margin-top: 20px;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(245,240,232,0.45);
    align-items: center;
  }

  .legend-swatch {
    display: inline-flex;
    width: 20px;
    height: 20px;
    border-radius: 3px;
    margin-right: 7px;
    vertical-align: middle;
    position: relative;
    flex-shrink: 0;
  }
  .legend-swatch.available {
    background: rgba(245,240,232,0.06);
    border: 1px solid rgba(245,240,232,0.3);
  }
  .legend-swatch.booked {
    background: rgba(0,0,0,0.25);
    overflow: hidden;
  }
  .legend-swatch.booked::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: linear-gradient(
      to top right,
      transparent calc(50% - 0.7px),
      rgba(201,169,110,0.5) 50%,
      transparent calc(50% + 0.7px)
    );
  }
  .legend-item { display: flex; align-items: center; }

  /* ── SÉLECTION DE DATES ── */
  .cal-day.sel-arrival,
  .cal-day.sel-departure {
    background: var(--gold) !important;
    color: var(--primary) !important;
    font-weight: 700 !important;
    border-radius: 4px !important;
    transform: scale(1.1);
    z-index: 1;
  }
  .cal-day.sel-arrival::after,
  .cal-day.sel-departure::after { display: none !important; }

  .cal-day.in-range {
    background: rgba(201,169,110,0.15) !important;
    color: #F5F0E8 !important;
    border-radius: 0 !important;
  }
  .cal-day.in-range::after { display: none !important; }

  /* Instructions au-dessus du calendrier */
  #calInstructions {
    text-align: center;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 10px 0 18px;
    transition: color 0.3s;
  }
  #calInstructions[data-state="arrival"]   { color: rgba(245,240,232,0.5); }
  #calInstructions[data-state="departure"] { color: var(--gold); }
  #calInstructions[data-state="done"]      { color: #86efac; }
  #calInstructions strong { font-weight: 600; }
  .cal-hint-icon { margin-right: 6px; }

  /* Booking bar */
  #bookingBar {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(201,169,110,0.12);
    border: 1px solid rgba(201,169,110,0.35);
    padding: 16px 24px;
    margin-top: 20px;
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.16,1,0.3,1);
  }
  #bookingBar.visible {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
  .booking-bar-dates { display: flex; flex-direction: column; gap: 2px; }
  .booking-bar-label { font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: rgba(245,240,232,0.4); }
  .booking-bar-value { font-size: 14px; color: #F5F0E8; font-weight: 500; }
  .booking-bar-sep   { color: var(--gold); font-size: 18px; flex: 1; text-align: center; }
  .booking-bar-nights {
    font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
    color: var(--gold); white-space: nowrap;
  }
  .booking-bar-cta {
    margin-left: auto;
    background: var(--gold); color: var(--primary);
    border: none; padding: 12px 22px;
    font-family: 'Inter', sans-serif;
    font-size: 10px; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    cursor: pointer; white-space: nowrap;
    transition: background 0.2s, transform 0.1s;
    flex-shrink: 0;
  }
  .booking-bar-cta:hover { background: #e8c17e; transform: translateY(-1px); }

  .airbnb-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,90,96,0.1);
    border: 1px solid rgba(255,90,96,0.2);
    padding: 8px 16px;
    margin-top: 20px;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #FF5A60;
  }

  /* ── GALLERY ── */
  .photos-section { padding: 0; background: var(--primary); }

  .photos-header {
    padding: 80px 64px 40px;
    display: flex; justify-content: space-between; align-items: flex-end;
  }

  /* ui-ux-pro-max: filter pills — clear active state, ≥44px touch */
  .gallery-filters {
    display: flex; gap: 4px; flex-wrap: wrap;
    padding: 0 64px 40px;
  }

  .filter-btn {
    padding: 10px 22px; font-size: 10px;
    letter-spacing: 3px; text-transform: uppercase; font-weight: 500;
    font-family: 'Inter', sans-serif;
    background: none; border: 1px solid rgba(201,169,110,0.2);
    color: rgba(245,240,232,0.45); cursor: pointer;
    transition: all 0.18s ease; min-height: 40px;
    outline-offset: 3px;
  }
  .filter-btn:hover { border-color: var(--gold); color: var(--gold); }
  .filter-btn.active {
    background: var(--gold); border-color: var(--gold);
    color: #0D0B09; font-weight: 600;
  }
  .filter-btn:focus-visible { outline: 2px solid var(--gold); }

  /* Masonry grid */
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3px; padding: 0;
  }

  .gallery-item {
    position: relative; overflow: hidden;
    aspect-ratio: 4/3; cursor: pointer;
  }

  /* ui-ux-pro-max: hidden via display:none for filter — preserve layout */
  .gallery-item.hidden { display: none; }

  .gallery-img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                filter 0.3s ease;
    display: block;
  }

  .gallery-item:hover .gallery-img {
    transform: scale(1.06);
    filter: brightness(1.08);
  }

  /* ui-ux-pro-max: overlay with room label + icon — visible on hover/focus */
  .gallery-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(13,11,9,0.72) 0%, transparent 55%);
    opacity: 0; transition: opacity 0.25s ease;
    display: flex; align-items: flex-end;
    padding: 16px 18px;
  }

  .gallery-item:hover .gallery-overlay,
  .gallery-item:focus-visible .gallery-overlay { opacity: 1; }

  .gallery-label {
    font-size: 9px; letter-spacing: 3px; text-transform: uppercase;
    color: rgba(245,240,232,0.85); font-family: 'Inter', sans-serif;
    display: flex; align-items: center; gap: 8px;
  }

  .gallery-label::before {
    content: ''; display: inline-block;
    width: 14px; height: 1px; background: var(--gold);
  }

  .gallery-zoom-icon {
    position: absolute; top: 12px; right: 12px;
    width: 32px; height: 32px;
    background: rgba(13,11,9,0.65); backdrop-filter: blur(6px);
    border: 1px solid rgba(201,169,110,0.3);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.2s ease;
    color: var(--gold); font-size: 13px;
  }
  .gallery-item:hover .gallery-zoom-icon { opacity: 1; }

  /* ── LIGHTBOX (ui-ux-pro-max: focus trap, keyboard, ARIA, swipe) ── */
  .lightbox {
    display: none; position: fixed; inset: 0; z-index: 1000;
    background: rgba(5,4,3,0.95); backdrop-filter: blur(8px);
    align-items: center; justify-content: center;
    /* ui-ux-pro-max: fade in */
    animation: lb-in 0.22s ease;
  }
  .lightbox.open { display: flex; }

  @keyframes lb-in {
    from { opacity: 0; }
    to   { opacity: 1; }
  }

  .lb-inner {
    position: relative; max-width: 90vw; max-height: 90vh;
    display: flex; flex-direction: column; align-items: center; gap: 16px;
  }

  .lb-img-wrap {
    position: relative; display: flex; align-items: center;
  }

  .lb-img {
    max-width: min(88vw, 1200px); max-height: 78vh;
    object-fit: contain; display: block;
    /* ui-ux-pro-max: spring enter */
    animation: lb-img-in 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }

  @keyframes lb-img-in {
    from { transform: scale(0.93); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
  }

  /* ui-ux-pro-max: touch targets ≥44px for nav buttons */
  .lb-btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 48px; height: 48px; min-height: 44px;
    background: rgba(28,25,23,0.8); backdrop-filter: blur(6px);
    border: 1px solid rgba(201,169,110,0.3);
    color: var(--gold); font-size: 18px; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.15s, border-color 0.15s;
    outline-offset: 3px;
  }
  .lb-btn:hover { background: rgba(201,169,110,0.15); border-color: var(--gold); }
  .lb-btn:focus-visible { outline: 2px solid var(--gold); }
  .lb-btn.prev { left: -64px; }
  .lb-btn.next { right: -64px; }

  .lb-close {
    position: fixed; top: 24px; right: 28px;
    width: 44px; height: 44px;
    background: rgba(28,25,23,0.8); backdrop-filter: blur(6px);
    border: 1px solid rgba(201,169,110,0.25);
    color: rgba(245,240,232,0.8); font-size: 18px; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.15s; outline-offset: 3px;
  }
  .lb-close:hover { border-color: var(--gold); color: var(--gold); }
  .lb-close:focus-visible { outline: 2px solid var(--gold); }

  .lb-meta {
    display: flex; align-items: center; gap: 20px;
    font-family: 'Inter', sans-serif;
  }

  .lb-label {
    font-size: 9px; letter-spacing: 4px; text-transform: uppercase;
    color: var(--gold);
  }

  .lb-counter {
    font-size: 11px; color: rgba(245,240,232,0.35); letter-spacing: 2px;
  }

  /* ui-ux-pro-max: dot indicators */
  .lb-dots {
    display: flex; gap: 6px; align-items: center;
  }

  .lb-dot {
    width: 5px; height: 5px; border-radius: 50%;
    background: rgba(201,169,110,0.25);
    transition: background 0.2s, transform 0.2s;
    cursor: pointer;
  }
  .lb-dot.active { background: var(--gold); transform: scale(1.4); }

  /* ── TARIFS ── */
  .pricing-section {
    background: #F5F1EC;
    padding: 96px 80px;
  }

  .pricing-header {
    text-align: center;
    margin-bottom: 64px;
  }

  .pricing-header .section-eyebrow {
    justify-content: center;
  }

  .pricing-header .section-eyebrow::before { display: none; }

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

  .pricing-card {
    background: white;
    padding: 48px 40px;
    position: relative;
    transition: transform 0.2s;
  }

  .pricing-card:hover { transform: translateY(-4px); }

  .pricing-card.featured {
    background: var(--primary);
  }

  .pricing-season {
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    display: block;
  }

  .pricing-amount {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: var(--fg);
    line-height: 1;
  }

  .pricing-card.featured .pricing-amount { color: #F5F0E8; }

  .pricing-unit {
    font-size: 13px;
    color: var(--muted);
    font-weight: 300;
    margin-top: 4px;
    display: block;
  }

  .pricing-card.featured .pricing-unit { color: rgba(245,240,232,0.5); }

  .pricing-divider {
    width: 32px;
    height: 1px;
    background: var(--gold);
    margin: 24px 0;
  }

  .pricing-features {
    list-style: none;
    font-size: 13px;
    font-weight: 300;
    line-height: 2;
    color: var(--secondary);
  }

  .pricing-card.featured .pricing-features { color: rgba(245,240,232,0.6); }

  .pricing-features li::before {
    content: '—';
    color: var(--gold);
    margin-right: 10px;
    font-weight: 400;
  }

  /* ── REVIEWS ── */
  .reviews-section {
    padding: 96px 80px;
    background: white;
  }

  .reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 56px;
  }

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

  .review-card {
    padding: 36px;
    background: var(--bg);
    border: 1px solid var(--border);
    position: relative;
  }

  .review-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
  }

  .star {
    color: var(--gold);
    font-size: 12px;
  }

  .review-quote {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    color: var(--fg);
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 24px;
  }

  .review-author {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 500;
  }

  .review-source {
    font-size: 10px;
    color: var(--gold);
    letter-spacing: 1px;
  }

  /* ── CONTACT MODAL ── */
  .contact-modal-overlay {
    display: none; position: fixed; inset: 0; z-index: 500;
    background: rgba(5,4,3,0.85); backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    align-items: center; justify-content: center; padding: 24px;
  }
  .contact-modal-overlay.open { display: flex; }

  .contact-modal {
    background: rgba(28,25,23,0.97);
    border: 1px solid rgba(201,169,110,0.25);
    width: 100%; max-width: 560px; max-height: 90vh; overflow-y: auto;
    padding: 48px 44px;
    position: relative;
    animation: modal-in 0.3s cubic-bezier(0.16,1,0.3,1);
  }
  @keyframes modal-in {
    from { opacity: 0; transform: translateY(16px) scale(0.97); }
    to   { opacity: 1; transform: none; }
  }

  .contact-modal-close {
    position: absolute; top: 20px; right: 20px;
    width: 40px; height: 40px;
    background: none; border: 1px solid rgba(201,169,110,0.2);
    color: rgba(245,240,232,0.6); font-size: 16px; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.15s;
  }
  .contact-modal-close:hover { border-color: var(--gold); color: var(--gold); }

  .contact-modal h2 {
    font-family: 'Playfair Display', serif;
    font-size: 26px; color: #F5F0E8;
    margin-bottom: 6px;
  }
  .contact-modal .modal-subtitle {
    font-size: 12px; letter-spacing: 2px; color: rgba(245,240,232,0.4);
    text-transform: uppercase; margin-bottom: 36px;
  }

  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
  .form-group label {
    font-size: 9px; letter-spacing: 3px; text-transform: uppercase;
    color: rgba(245,240,232,0.45);
  }
  .form-group input,
  .form-group textarea,
  .form-group select {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201,169,110,0.2);
    color: #F5F0E8;
    padding: 12px 14px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
  }
  .form-group input::placeholder,
  .form-group textarea::placeholder { color: rgba(245,240,232,0.25); }
  .form-group input:focus,
  .form-group textarea:focus,
  .form-group select:focus { border-color: var(--gold); }
  .form-group textarea { resize: vertical; min-height: 90px; }
  .form-group select { appearance: none; cursor: pointer; }
  .form-group select option { background: #1C1917; }

  .captcha-row { margin-bottom: 24px; }

  .form-honey { display: none !important; visibility: hidden; }

  .form-submit {
    width: 100%;
    background: var(--gold); color: var(--primary);
    border: none; padding: 16px;
    font-family: 'Inter', sans-serif;
    font-size: 11px; font-weight: 600;
    letter-spacing: 3px; text-transform: uppercase;
    cursor: pointer; transition: background 0.2s, transform 0.1s;
  }
  .form-submit:hover { background: #e8c17e; transform: translateY(-1px); }
  .form-submit:active { transform: none; }
  .form-submit:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

  .form-status {
    margin-top: 14px; font-size: 12px; text-align: center;
    letter-spacing: 1px; min-height: 18px;
  }
  .form-status.success { color: #86efac; }
  .form-status.error   { color: #fca5a5; }

  /* ── FOOTER CTA ── */
  .footer-cta {
    background: var(--primary);
    padding: 96px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .footer-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 100%, rgba(201,169,110,0.12) 0%, transparent 70%);
  }

  .footer-cta-content { position: relative; z-index: 1; }

  .footer-cta .section-eyebrow {
    justify-content: center;
    margin-bottom: 20px;
  }
  .footer-cta .section-eyebrow::before { display: none; }

  .footer-cta .section-title {
    color: #F5F0E8;
    max-width: 560px;
    margin: 0 auto 12px;
  }

  .footer-cta .section-subtitle {
    color: rgba(245,240,232,0.5);
    max-width: 420px;
    margin: 0 auto 48px;
  }

  .footer-contact {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid rgba(201,169,110,0.15);
  }

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

  .contact-label {
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 8px;
  }

  .contact-value {
    font-size: 14px;
    color: rgba(245,240,232,0.75);
    font-weight: 300;
    text-decoration: none;
  }
  a.contact-value:hover {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 3px;
  }

  /* ── FOOTER ── */
  footer {
    background: #0C0A09;
    padding: 32px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(201,169,110,0.1);
  }

  .footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    color: rgba(245,240,232,0.4);
    letter-spacing: 3px;
    text-transform: uppercase;
  }

  .footer-copy {
    font-size: 11px;
    color: rgba(245,240,232,0.25);
    letter-spacing: 1px;
  }

  .footer-social {
    display: flex;
    gap: 20px;
  }

  .footer-social a {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(245,240,232,0.3);
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-social a:hover { color: var(--gold); }

  /* ═══════════════════════════════════════
     HAMBURGER
  ═══════════════════════════════════════ */
  .nav-hamburger {
    display: none;
    background: none;
    border: 1px solid rgba(201,169,110,0.35);
    width: 44px; height: 44px;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    z-index: 102;
    flex-shrink: 0;
  }
  .nav-hamburger span {
    display: block;
    width: 20px; height: 1.5px;
    background: var(--gold);
    transition: transform 0.25s ease, opacity 0.2s ease;
  }
  .nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  /* ═══════════════════════════════════════
     IPAD / TABLET — 769px → 1024px
     (iPad Air, iPad Pro 11", iPad Pro 12.9" portrait)
  ═══════════════════════════════════════ */
  @media (min-width: 769px) and (max-width: 1024px) {

    /* Nav — garde les liens, réduit l'espacement */
    nav { padding: 18px 32px; }
    .nav-links { gap: 24px; }
    .nav-links a { font-size: 11px; letter-spacing: 1.5px; }
    .nav-cta { padding: 9px 18px !important; }

    /* Hero */
    .hero-content { padding: 0 32px 64px; max-width: 620px; }
    .hero-subtitle { font-size: 15px; }

    /* Stats — 5 items, padding réduit */
    .stat-item { padding: 22px 24px; max-width: 160px; }
    .stat-number { font-size: 28px; }

    /* Availability — garde 2 colonnes mais moins d'espacement */
    .availability-section { padding: 72px 48px; gap: 48px; }

    /* Galerie — 3 colonnes au lieu de 4 */
    .photos-section { padding: 72px 32px 48px; }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }

    /* Tarifs — 3 colonnes mais padding réduit */
    .pricing-section { padding: 72px 48px; }
    .pricing-card { padding: 40px 28px; }
    .pricing-amount { font-size: 42px; }

    /* Avis */
    .reviews-section { padding: 72px 48px; }
    .review-card { padding: 28px 24px; }
    .review-quote { font-size: 15px; }

    /* Footer CTA */
    .footer-cta { padding: 72px 48px; }
    .footer-contact { flex-wrap: wrap; justify-content: center; gap: 28px 56px; }

    /* Booking bar */
    #bookingBar { flex-wrap: wrap; gap: 12px; }
    .booking-bar-cta { margin-left: auto; }

    /* Contact modal */
    .contact-modal { padding: 40px 36px; }
  }

  /* ═══════════════════════════════════════
     TABLET — 768px
  ═══════════════════════════════════════ */
  @media (max-width: 768px) {

    /* Nav */
    nav { padding: 16px 24px; }
    .nav-hamburger { display: flex; }
    .nav-links {
      display: none;
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(10,8,6,0.97);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 36px;
      z-index: 101;
      list-style: none;
    }
    .nav-links.open { display: flex; }
    .nav-links a { font-size: 15px; letter-spacing: 4px; }
    .nav-cta { padding: 14px 40px !important; font-size: 13px !important; }

    /* Hero */
    .hero-content { padding: 0 24px 56px; }
    .hero-subtitle { font-size: 14px; max-width: 100%; }
    .hero-ctas { flex-direction: column; align-items: stretch; gap: 12px; }
    .btn-primary { text-align: center; padding: 14px 24px; }

    /* Stats */
    .stats-bar { flex-wrap: wrap; }
    .stat-item {
      min-width: 50%; max-width: 50%; flex: 0 0 50%;
      border-bottom: 1px solid rgba(201,169,110,0.1);
      padding: 22px 16px;
    }

    /* Sections */
    section { padding: 64px 24px; }

    /* Availability */
    .availability-section {
      grid-template-columns: 1fr;
      gap: 40px;
      padding: 64px 24px;
    }

    /* Gallery */
    .photos-section { padding: 64px 24px 40px; }
    .photos-header  { padding: 0 0 32px; }
    .gallery-filters { flex-wrap: wrap; gap: 8px; padding: 0; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 3px; }

    /* Pricing */
    .pricing-section { padding: 64px 24px; }
    .pricing-grid { grid-template-columns: 1fr; gap: 3px; }

    /* Reviews */
    .reviews-section { padding: 64px 24px; }
    .reviews-header { flex-direction: column; align-items: flex-start; gap: 20px; }
    .reviews-grid { grid-template-columns: 1fr; gap: 16px; }

    /* Footer CTA */
    .footer-cta { padding: 64px 24px; }
    .footer-contact { flex-direction: column; gap: 28px; }
    .contact-item { text-align: left; }

    /* Footer */
    footer { flex-direction: column; gap: 16px; text-align: center; padding: 32px 24px; }
    .footer-social { justify-content: center; }

    /* Booking bar */
    #bookingBar { flex-wrap: wrap; gap: 14px; padding: 16px; }
    .booking-bar-sep { flex: 0; }
    .booking-bar-nights { order: 3; }
    .booking-bar-cta { width: 100%; text-align: center; order: 4; margin-left: 0; }

    /* Lightbox — boutons prev/next sur les côtés internes */
    .lb-btn.prev { left: 4px; }
    .lb-btn.next { right: 4px; }
    .lb-img { max-width: 100vw; max-height: 70vh; }

    /* Calendar */
    .calendar-nav { width: 44px; height: 44px; font-size: 18px; }
    .cal-day { font-size: 11px; }

    /* Contact modal */
    .contact-modal-overlay { padding: 0; align-items: flex-end; }
    .contact-modal {
      max-height: 92vh;
      padding: 32px 20px 40px;
      border-bottom: none;
    }
    .form-row { grid-template-columns: 1fr; }
    .g-recaptcha { transform: scale(0.85); transform-origin: 0 0; }
  }

  /* ═══════════════════════════════════════
     MOBILE — 480px
  ═══════════════════════════════════════ */
  @media (max-width: 480px) {
    .hero-content { padding: 0 20px 48px; }
    .hero-title   { font-size: clamp(32px, 8vw, 48px); }
    .stat-item    { padding: 18px 12px; }
    .stat-number  { font-size: 26px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-card { padding: 36px 24px; }
    .pricing-amount { font-size: 40px; }
    .review-card  { padding: 28px 20px; }
    .review-quote { font-size: 15px; }
    .contact-modal { padding: 28px 16px 40px; }
    .contact-modal h2 { font-size: 22px; }
    .booking-bar-value { font-size: 13px; }
    footer { padding: 28px 16px; }
  }

  /* ── LOGO IMAGE ── */
  .nav-logo-img {
    height: 36px;
    width: auto;
    filter: invert(1) sepia(0.15) brightness(1.05);
    flex-shrink: 0;
  }
  .nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .nav-logo-text { display: flex; flex-direction: column; }

  /* ── CHALET INFOS ── */
  .chalet-info {
    background: #26231E;
    padding: 100px 5vw;
  }
  .chalet-info-inner { max-width: 1100px; margin: 0 auto; }
  .chalet-info .section-title { margin-bottom: 56px; }
  .rooms-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(201,169,110,0.15);
    border: 1px solid rgba(201,169,110,0.15);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 56px;
  }
  .room-card {
    background: var(--primary);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .room-card-icon { font-size: 22px; margin-bottom: 4px; }
  .room-card-name {
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    color: #F5F0E8;
    font-weight: 500;
  }
  .room-card-detail {
    font-size: 12px;
    color: #9C978F;
    line-height: 1.6;
    letter-spacing: 0.3px;
  }
  .room-card-badge {
    display: inline-block;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(201,169,110,0.35);
    border-radius: 20px;
    padding: 3px 10px;
    margin-top: 8px;
    width: fit-content;
  }
  .amenities-title {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
  }
  .amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 48px;
  }
  .amenity-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    background: rgba(245,240,232,0.03);
    border: 1px solid rgba(201,169,110,0.1);
    border-radius: 8px;
    font-size: 13px;
    color: #C8C2BB;
  }
  .amenity-icon {
    font-size: 18px;
    width: 28px;
    text-align: center;
    flex-shrink: 0;
  }
  .access-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .access-card {
    padding: 24px 28px;
    border: 1px solid rgba(201,169,110,0.2);
    border-radius: 12px;
    background: rgba(201,169,110,0.04);
  }
  .access-card-title {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
  }
  .access-card p {
    font-size: 14px;
    color: #C8C2BB;
    line-height: 1.7;
    margin: 0;
  }

  /* ── FAQ ── */
  .faq-section {
    background: var(--primary);
    padding: 100px 5vw;
    border-top: 1px solid rgba(201,169,110,0.1);
  }
  .faq-inner { max-width: 780px; margin: 0 auto; }
  .faq-inner .section-title { margin-bottom: 48px; }
  .faq-list { display: flex; flex-direction: column; gap: 2px; }
  .faq-item {
    border-bottom: 1px solid rgba(201,169,110,0.12);
  }
  .faq-item summary {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 4px;
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    color: #F5F0E8;
    cursor: pointer;
    gap: 16px;
    user-select: none;
  }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-arrow {
    font-size: 18px;
    color: var(--gold);
    transition: transform 0.25s;
    flex-shrink: 0;
  }
  .faq-item[open] .faq-arrow { transform: rotate(45deg); }
  .faq-answer {
    padding: 0 4px 24px;
    font-size: 14px;
    color: #9C978F;
    line-height: 1.8;
  }

  /* ── RESPONSIVE CHALET INFO + FAQ ── */
  @media (min-width: 769px) and (max-width: 1024px) {
    .rooms-grid { grid-template-columns: repeat(2, 1fr); }
    .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 768px) {
    .chalet-info, .faq-section { padding: 72px 6vw; }
    .rooms-grid { grid-template-columns: 1fr 1fr; }
    .amenities-grid { grid-template-columns: 1fr 1fr; }
    .access-grid { grid-template-columns: 1fr; }
  }
  @media (max-width: 480px) {
    .rooms-grid { grid-template-columns: 1fr; }
    .amenities-grid { grid-template-columns: 1fr; }
    .faq-item summary { font-size: 15px; }
  }
