/* ============================================
   LA VALLÉE D'AMAROK - CSS v5.0 COMPLET
   Typo élégante style logo + couleurs subtiles
   ============================================ */

/* ============================================
   VARIABLES CSS - COULEURS CHARTE ORIGINALE
   ============================================ */
:root {
    /* Couleurs principales - issues du logo */
    --primary: #2d3a35;
    --primary-dark: #1e2a25;
    --primary-light: #3d4a45;
    --primary-ultra-light: #e8ebe9;
    
    --black: #0a0a0a;
    --black-light: #1a1a1a;
    --white: #ffffff;
    --white-off: #f8f9f7;
    
    --gray-100: #f3f4f2;
    --gray-200: #e5e7e3;
    --gray-300: #d4d6d2;
    --gray-400: #a3a5a1;
    --gray-500: #737573;
    --gray-600: #525452;
    --gray-700: #404240;
    --gray-800: #262826;
    
    /* Couleurs accent */
    --gold: #c9a96e;
    --gold-light: #ddc9a0;
    --gold-dark: #a88a4a;
    
    /* Typographie - Style logo élégant */
    --font-display: 'Cinzel', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Espacements */
    --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;
    
    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --duration-fast: 0.2s;
    --duration-normal: 0.4s;
    --duration-slow: 0.8s;
    
    /* Autres */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-full: 9999px;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
    --shadow-xl: 0 25px 50px rgba(0,0,0,0.25);
}

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

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

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-600);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all var(--duration-fast) var(--ease-out);
}

/* ============================================
   TYPOGRAPHIE - STYLE LOGO ÉLÉGANT
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    letter-spacing: 0.15em;
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 600;
    letter-spacing: 0.12em;
    margin-bottom: var(--space-md);
}

h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    font-weight: 600;
    letter-spacing: 0.1em;
}

h4 {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
}

p {
    margin-bottom: var(--space-md);
    color: var(--gray-600);
}

.text-gold {
    color: var(--gold-dark);
}

.text-primary {
    color: var(--primary);
}

.text-muted {
    color: var(--gray-500);
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.8;
}

/* ============================================
   CONTAINER
   ============================================ */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* ============================================
   BOUTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: var(--space-md) var(--space-xl);
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--duration-normal) var(--ease-out);
}

.btn-primary {
    background: var(--gold);
    color: var(--primary);
    border-color: var(--gold);
}

.btn-primary:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 169, 110, 0.4);
}

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

.btn-dark:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(45, 58, 53, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

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

.btn-lg {
    padding: var(--space-lg) var(--space-2xl);
    font-size: 0.85rem;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-md) 0;
    transition: all var(--duration-normal) var(--ease-out);
}

.header.scrolled {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: var(--space-sm) 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

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

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.logo img {
    height: 50px;
    width: auto;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

/* Navigation */
.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.nav-menu a {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-sm);
    transition: all var(--duration-fast) var(--ease-out);
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-menu a:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
    color: var(--gold-light);
}

/* Bouton Réserver */
.nav-cta {
    background: var(--gold) !important;
    color: var(--primary) !important;
    border-color: var(--gold) !important;
    padding: var(--space-sm) var(--space-lg) !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 15px rgba(201, 169, 110, 0.3);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(201, 169, 110, 0.4);
    background: var(--gold-light) !important;
    color: var(--primary) !important;
}

/* Menu Mobile Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: all var(--duration-fast);
}

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

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

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(45, 58, 53, 0.4) 0%,
        rgba(45, 58, 53, 0.6) 50%,
        rgba(45, 58, 53, 0.8) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 0 var(--space-lg);
}

/* =============================================
   BADGE HERO - FOND VERT + TEXTE BLANC
   ============================================= */
.hero-badge {
    display: inline-block;
    padding: var(--space-sm) var(--space-xl);
    background: var(--primary);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: var(--space-xl);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
    color: var(--white);
    margin-bottom: var(--space-lg);
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.15em;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-2xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

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

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: var(--space-2xl);
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: var(--white);
    opacity: 0.7;
    animation: float 2s ease-in-out infinite;
}

.scroll-indicator span {
    font-family: var(--font-display);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.scroll-indicator svg {
    width: 20px;
    height: 20px;
}

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

/* ============================================
   INTRO SECTION - FOND BLANC
   ============================================ */
.intro {
    padding: var(--space-4xl) 0;
    background: var(--white);
}

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

.intro-content {
    max-width: 520px;
}

/* Label élégant style logo */
.intro-label {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--gold-dark);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--gold);
}

.intro-title {
    margin-bottom: var(--space-lg);
    color: var(--primary);
}

.intro-text {
    color: var(--gray-600);
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: var(--space-md);
}

/* =============================================
   IMAGE INTRO - SANS CADRE DORÉ
   ============================================= */
.intro-image {
    position: relative;
}

.intro-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

/* PAS DE ::before = PAS DE CADRE DORÉ */

/* ============================================
   ACTIVITIES SECTION - FOND GRIS CLAIR
   ============================================ */
.activities {
    padding: var(--space-4xl) 0;
    background: var(--gray-100);
}

.activities-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-3xl);
}

.activities-header .intro-label {
    color: var(--gold-dark);
}

.activities-header h2 {
    color: var(--primary);
}

.activities-header p {
    color: var(--gray-500);
}

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

/* Activity Card */
.activity-card {
    position: relative;
    height: 400px;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

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

.activity-card:hover img {
    transform: scale(1.1);
}

.activity-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        0deg,
        rgba(45, 58, 53, 0.95) 0%,
        rgba(45, 58, 53, 0.4) 50%,
        transparent 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--space-xl);
    transition: all var(--duration-normal);
}

.activity-card:hover .activity-card-overlay {
    background: linear-gradient(
        0deg,
        rgba(45, 58, 53, 0.98) 0%,
        rgba(45, 58, 53, 0.7) 60%,
        rgba(45, 58, 53, 0.3) 100%
    );
}

.activity-card-number {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.2em;
    margin-bottom: var(--space-sm);
}

.activity-card h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: var(--space-sm);
    letter-spacing: 0.1em;
}

.activity-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: var(--space-md);
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--duration-normal);
}

.activity-card:hover p {
    opacity: 1;
    transform: translateY(0);
}

.activity-card-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--duration-normal);
}

.activity-card:hover .activity-card-link {
    opacity: 1;
    transform: translateY(0);
}

.activity-card-link svg {
    width: 18px;
    height: 18px;
    transition: transform var(--duration-fast);
}

.activity-card:hover .activity-card-link svg {
    transform: translateX(5px);
}

/* ============================================
   GUIDE SECTION - FOND VERT TRÈS LÉGER
   ============================================ */
.guide {
    padding: var(--space-4xl) 0;
    background: var(--primary-ultra-light);
}

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

.guide-image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.guide-content {
    max-width: 520px;
}

.guide-content .intro-label {
    color: var(--gold-dark);
}

.guide-content h2 {
    color: var(--primary);
}

.guide-name {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gold-dark);
    margin-bottom: var(--space-lg);
    letter-spacing: 0.08em;
    text-transform: none;
}

.guide-text {
    color: var(--gray-600);
    font-size: 1.05rem;
    line-height: 1.9;
}

/* ============================================
   CHALET SECTION - FOND IMAGE PLEIN ÉCRAN
   ============================================ */
.chalet {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

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

.chalet-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(45, 58, 53, 0.95) 0%,
        rgba(45, 58, 53, 0.8) 50%,
        rgba(45, 58, 53, 0.4) 100%
    );
}

.chalet .container {
    position: relative;
    z-index: 10;
}

.chalet-content {
    max-width: 600px;
    color: var(--white);
}

.chalet-label {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--gold);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--gold);
}

.chalet h2 {
    color: var(--white);
    margin-bottom: var(--space-lg);
}

.chalet-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: var(--space-xl);
}

.chalet-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.chalet-feature {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: rgba(255, 255, 255, 0.9);
}

.chalet-feature svg {
    width: 24px;
    height: 24px;
    color: var(--gold);
    flex-shrink: 0;
}

.chalet-feature span {
    font-size: 0.95rem;
}

.chalet-pricing {
    display: flex;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
}

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

.price-value {
    display: block;
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.05em;
}

.price-period {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   TESTIMONIALS - FOND BLANC
   ============================================ */
.testimonials {
    padding: var(--space-4xl) 0;
    background: var(--white);
}

.testimonials-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-3xl);
}

.testimonials-header .intro-label {
    color: var(--gold-dark);
}

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

.testimonial-card {
    background: var(--gray-100);
    padding: var(--space-2xl);
    border-radius: var(--radius-md);
    text-align: center;
    transition: all var(--duration-normal);
    border: 1px solid var(--gray-200);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-light);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: var(--space-md);
    letter-spacing: 0.1em;
}

.testimonial-text {
    font-size: 1rem;
    font-style: italic;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

.testimonial-author {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--primary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-xs);
}

.testimonial-date {
    font-size: 0.85rem;
    color: var(--gray-400);
}

/* ============================================
   CTA SECTION - FOND VERT FONCÉ
   ============================================ */
.cta-section {
    padding: var(--space-4xl) 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    text-align: center;
}

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

.cta-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.15rem;
    margin-bottom: var(--space-xl);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: var(--space-3xl) 0 var(--space-xl);
}

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

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 0.85rem;
    color: var(--gold);
    margin-bottom: var(--space-lg);
    letter-spacing: 0.15em;
}

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

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: all var(--duration-fast);
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: var(--space-sm);
}

.footer-bottom {
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin: 0;
}

.footer-social {
    display: flex;
    gap: var(--space-md);
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: all var(--duration-fast);
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--primary);
    transform: translateY(-3px);
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--duration-slow) var(--ease-out),
                transform var(--duration-slow) var(--ease-out);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity var(--duration-slow) var(--ease-out),
                transform var(--duration-slow) var(--ease-out);
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity var(--duration-slow) var(--ease-out),
                transform var(--duration-slow) var(--ease-out);
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.stagger > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--duration-slow) var(--ease-out),
                transform var(--duration-slow) var(--ease-out);
}

.stagger.visible > *:nth-child(1) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(2) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(3) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(4) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(5) { transition-delay: 0.5s; opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(6) { transition-delay: 0.6s; opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(7) { transition-delay: 0.7s; opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(8) { transition-delay: 0.8s; opacity: 1; transform: translateY(0); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    .activities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .intro-grid,
    .guide-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .intro-content,
    .guide-content {
        max-width: 100%;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xl);
    }
    
    .chalet-pricing {
        flex-wrap: wrap;
        gap: var(--space-lg);
    }
}

@media (max-width: 900px) {
    .testimonials-slider {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .chalet-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* Navigation Mobile */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: var(--space-lg);
        transition: right var(--duration-normal) var(--ease-out);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu a {
        font-size: 0.9rem;
        padding: var(--space-md) var(--space-xl);
        background: transparent;
        border: none;
    }
    
    .nav-menu a:hover {
        background: rgba(255, 255, 255, 0.1);
    }
    
    .menu-toggle {
        display: flex;
        z-index: 1001;
    }
    
    /* Hero */
    .hero {
        min-height: 100svh;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    /* Sections */
    .intro-image img,
    .guide-image img {
        height: 350px;
    }
    
    .activities-grid {
        grid-template-columns: 1fr;
    }
    
    .activity-card {
        height: 300px;
    }
    
    /* Chalet */
    .chalet {
        min-height: 500px;
    }
    
    .chalet-bg::after {
        background: linear-gradient(
            0deg,
            rgba(45, 58, 53, 0.95) 0%,
            rgba(45, 58, 53, 0.9) 50%,
            rgba(45, 58, 53, 0.8) 100%
        );
    }
    
    .chalet-pricing {
        justify-content: center;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--space-md);
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .hero-badge {
        font-size: 0.7rem;
        padding: var(--space-sm) var(--space-md);
        letter-spacing: 0.15em;
    }
    
    .btn-lg {
        padding: var(--space-md) var(--space-xl);
        font-size: 0.8rem;
    }
    
    .intro-image img,
    .guide-image img {
        height: 280px;
    }
    
    .chalet-pricing {
        flex-direction: column;
        align-items: center;
    }
    
    .price-item {
        width: 100%;
        padding: var(--space-md) 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .price-item:last-child {
        border-bottom: none;
    }
}

/* ============================================
   PAGES INTÉRIEURES - HERO SMALL
   ============================================ */
.hero-small {
    min-height: 60vh;
}

.hero-small .hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

/* ============================================
   INTRO CENTERED
   ============================================ */
.intro-centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.intro-text-centered {
    color: var(--gray-600);
    font-size: 1.1rem;
    line-height: 1.9;
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================
   ACTIVITIES ALT (fond différent)
   ============================================ */
.activities-alt {
    background: var(--white);
}

/* ============================================
   INFO SECTION
   ============================================ */
.info-section {
    padding: var(--space-4xl) 0;
    background: var(--primary-ultra-light);
}

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

.info-card {
    text-align: center;
    padding: var(--space-xl);
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--duration-normal);
}

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

.info-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: var(--radius-full);
}

.info-icon svg {
    width: 28px;
    height: 28px;
    color: var(--gold);
}

.info-card h3 {
    font-size: 1.1rem;
    margin-bottom: var(--space-sm);
    color: var(--primary);
}

.info-card p {
    font-size: 0.95rem;
    color: var(--gray-500);
    margin: 0;
    line-height: 1.7;
}

/* ============================================
   CTA BUTTONS
   ============================================ */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary);
}

/* ============================================
   NAV ACTIVE STATE
   ============================================ */
.nav-menu a.active {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--gold);
}

/* ============================================
   RESPONSIVE - PAGES INTÉRIEURES
   ============================================ */
@media (max-width: 1024px) {
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-small {
        min-height: 50vh;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* ============================================
   PAGE GUIDE - STYLES SPÉCIFIQUES
   ============================================ */

/* Section Parcours Header */
.parcours-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-3xl);
}

.guide-parcours {
    padding: var(--space-4xl) 0;
    background: var(--gray-100);
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: var(--space-3xl);
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gold);
}

.timeline-item {
    position: relative;
    padding-bottom: var(--space-2xl);
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: calc(-1 * var(--space-3xl) - 6px);
    top: 0;
    width: 14px;
    height: 14px;
    background: var(--gold);
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: var(--shadow-md);
}

.timeline-year {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-sm);
}

.timeline-content h3 {
    font-size: 1.2rem;
    margin-bottom: var(--space-sm);
    color: var(--primary);
}

.timeline-content p {
    color: var(--gray-600);
    margin: 0;
    line-height: 1.7;
}

/* Section Philosophie */
.guide-philo {
    padding: var(--space-4xl) 0;
    background: var(--white);
}

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

.philo-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.philo-content {
    max-width: 520px;
}

/* Quote */
.quote {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--primary);
    padding: var(--space-lg);
    margin: var(--space-lg) 0;
    border-left: 4px solid var(--gold);
    background: var(--gray-100);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

/* ============================================
   PAGE CHALET - STYLES SPÉCIFIQUES
   ============================================ */

/* Features Section */
.chalet-features-section {
    padding: var(--space-4xl) 0;
    background: var(--gray-100);
}

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

.feature-card {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-md);
    text-align: center;
    transition: all var(--duration-normal);
    border: 1px solid var(--gray-200);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-light);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-ultra-light);
    border-radius: var(--radius-full);
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    color: var(--primary);
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: var(--space-sm);
    color: var(--primary);
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--gray-500);
    margin: 0;
    line-height: 1.7;
}

/* Chalet Gallery */
.chalet-gallery {
    padding: var(--space-4xl) 0;
    background: var(--white);
}

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

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

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

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

.gallery-item-large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item-large img {
    height: 100%;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-md);
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Pricing Section */
.chalet-pricing-section {
    padding: var(--space-4xl) 0;
    background: var(--primary-ultra-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: var(--space-2xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--duration-normal);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.pricing-card-featured {
    border: 2px solid var(--gold);
    transform: scale(1.05);
}

.pricing-card-featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--primary);
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
}

.pricing-header h3 {
    font-size: 1.3rem;
    margin-bottom: var(--space-xs);
    color: var(--primary);
}

.pricing-header p {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: var(--space-lg);
}

.pricing-price {
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--gray-200);
}

.price-amount {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
}

.price-period {
    font-size: 1rem;
    color: var(--gray-500);
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: var(--space-xl);
}

.pricing-features li {
    padding: var(--space-sm) 0;
    color: var(--gray-600);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--gray-100);
}

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

.pricing-note {
    text-align: center;
    max-width: 600px;
    margin: var(--space-2xl) auto 0;
}

.pricing-note p {
    font-size: 0.9rem;
    color: var(--gray-500);
}

/* ============================================
   PAGE GALERIE - STYLES SPÉCIFIQUES
   ============================================ */

/* Filtres */
.gallery-filters {
    padding: var(--space-xl) 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
}

.filters-wrapper {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.filter-btn {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: var(--space-sm) var(--space-lg);
    background: var(--gray-100);
    color: var(--gray-600);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--duration-fast);
}

.filter-btn:hover {
    background: var(--gray-200);
    color: var(--primary);
}

.filter-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* Galerie Masonry */
.gallery-main {
    padding: var(--space-3xl) 0;
    background: var(--gray-100);
}

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

.gallery-masonry .gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

.gallery-item-tall {
    grid-row: span 2;
}

.gallery-item-tall img {
    height: 100% !important;
    min-height: 520px;
}

.gallery-item-wide {
    grid-column: span 2;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 50%, rgba(45, 58, 53, 0.9));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--space-lg);
    opacity: 0;
    transition: opacity var(--duration-normal);
}

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

.gallery-category {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold);
    margin-bottom: var(--space-xs);
}

.gallery-overlay h3 {
    font-size: 1.1rem;
    color: var(--white);
    margin: 0;
}

/* ============================================
   RESPONSIVE - PAGES GUIDE, CHALET, GALERIE
   ============================================ */
@media (max-width: 1024px) {
    .philo-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .pricing-card-featured {
        transform: none;
    }
    
    .pricing-card-featured:hover {
        transform: translateY(-10px);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-masonry {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .timeline {
        padding-left: var(--space-2xl);
    }
    
    .timeline-item::before {
        left: calc(-1 * var(--space-2xl) - 6px);
    }
    
    .quote {
        font-size: 1.1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item-large {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .gallery-item-large img {
        height: 250px;
    }
    
    .gallery-masonry {
        grid-template-columns: 1fr;
    }
    
    .gallery-item-tall,
    .gallery-item-wide {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .gallery-item-tall img {
        min-height: 250px;
    }
    
    .filters-wrapper {
        gap: var(--space-xs);
    }
    
    .filter-btn {
        padding: var(--space-xs) var(--space-md);
        font-size: 0.7rem;
    }
}

/* ============================================
   PAGES ACTIVITÉS INDIVIDUELLES
   ============================================ */

/* Breadcrumb */
.breadcrumb {
    padding: var(--space-md) 0;
    background: var(--gray-100);
    border-bottom: 1px solid var(--gray-200);
}

.breadcrumb .container {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--gray-500);
    text-decoration: none;
    transition: color var(--duration-fast);
}

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

.breadcrumb .separator {
    color: var(--gray-400);
}

.breadcrumb .current {
    color: var(--primary);
    font-weight: 500;
}

/* Activity Intro */
.activity-intro {
    padding: var(--space-4xl) 0;
    background: var(--white);
}

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

.activity-intro-content p {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.activity-intro-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

/* Activity Highlights */
.activity-highlights {
    display: flex;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--gray-200);
}

.highlight {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.highlight-icon {
    font-size: 1.5rem;
}

.highlight-text {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
}

/* Activity Details */
.activity-details {
    padding: var(--space-4xl) 0;
    background: var(--gray-100);
}

/* Formules Grid */
.formules-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    max-width: 1100px;
    margin: 0 auto;
}

.formules-grid-2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 700px;
}

.formule-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: var(--space-2xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--duration-normal);
    position: relative;
    border: 2px solid transparent;
}

.formule-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.formule-featured {
    border-color: var(--gold);
}

.formule-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--primary);
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
}

.formule-header h3 {
    font-size: 1.4rem;
    margin-bottom: var(--space-xs);
    color: var(--primary);
}

.formule-duration {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: var(--space-lg);
}

.formule-price {
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--gray-200);
}

.formule-price .price {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

.formule-price .price-info {
    font-size: 0.9rem;
    color: var(--gray-500);
}

.formule-features {
    list-style: none;
    text-align: left;
    margin-bottom: var(--space-xl);
}

.formule-features li {
    padding: var(--space-sm) 0;
    color: var(--gray-600);
    font-size: 0.95rem;
    padding-left: var(--space-lg);
    position: relative;
}

.formule-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold-dark);
    font-weight: bold;
}

/* Activity Program */
.activity-program {
    padding: var(--space-4xl) 0;
    background: var(--white);
}

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

.program-steps {
    margin-top: var(--space-xl);
}

.program-step {
    display: flex;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--gold);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.1rem;
    margin-bottom: var(--space-xs);
    color: var(--primary);
}

.step-content p {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

.program-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

/* Animals Grid (Parc Animalier) */
.animals-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

.animal-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--duration-normal);
}

.animal-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.animal-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.animal-card-content {
    padding: var(--space-xl);
}

.animal-card-content h3 {
    font-size: 1.2rem;
    margin-bottom: var(--space-sm);
    color: var(--primary);
}

.animal-card-content p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* Activity Info */
.activity-info {
    padding: var(--space-4xl) 0;
    background: var(--gray-100);
}

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

.info-card-large {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    box-shadow: var(--shadow-sm);
}

.info-card-large h3 {
    font-size: 1.2rem;
    margin-bottom: var(--space-lg);
    color: var(--primary);
    padding-bottom: var(--space-md);
    border-bottom: 2px solid var(--gold);
}

.info-list {
    list-style: none;
}

.info-list li {
    padding: var(--space-sm) 0;
    color: var(--gray-600);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--gray-100);
}

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

/* Tarif List */
.tarif-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.tarif-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--gray-100);
}

.tarif-item:last-child {
    border-bottom: none;
}

.tarif-label {
    color: var(--gray-600);
}

.tarif-price {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--primary);
    font-size: 1.1rem;
}

/* Seasons Grid */
.activity-seasons {
    padding: var(--space-4xl) 0;
    background: var(--primary-ultra-light);
}

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

.season-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: var(--space-2xl);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.season-icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
}

.season-card h3 {
    font-size: 1.2rem;
    margin-bottom: var(--space-xs);
    color: var(--primary);
}

.season-period {
    font-size: 0.85rem;
    color: var(--gold-dark);
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.season-card p:last-child {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* Other Activities */
.other-activities {
    padding: var(--space-4xl) 0;
    background: var(--white);
}

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

.other-activity-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
    text-decoration: none;
}

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

.other-activity-card:hover img {
    transform: scale(1.1);
}

.other-activity-card h3 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-lg);
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--white);
    font-size: 1.1rem;
    margin: 0;
}

/* Activity Highlight Section (Kayak - Pont d'Arc) */
.activity-highlight-section {
    padding: var(--space-4xl) 0;
    background: var(--primary-ultra-light);
}

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

.highlight-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.highlight-content p {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.highlight-note {
    background: var(--white);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--gold);
    margin-top: var(--space-lg);
    font-size: 0.95rem;
    color: var(--gray-600);
}

/* ============================================
   RESPONSIVE - PAGES ACTIVITÉS
   ============================================ */
@media (max-width: 1024px) {
    .activity-intro-grid,
    .program-grid,
    .highlight-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .formules-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .formules-grid-2 {
        max-width: 400px;
    }
    
    .animals-grid {
        grid-template-columns: 1fr;
    }
    
    .info-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .seasons-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .other-activities-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .activity-intro-image img,
    .program-image img,
    .highlight-image img {
        height: 300px;
    }
    
    .activity-highlights {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .breadcrumb .container {
        font-size: 0.8rem;
        flex-wrap: wrap;
    }
}
