/* =================================
   VARIABLES & RESET
   ================================= */
:root {
    /* Couleurs principales */
    --primary: #7A9B76;
    --primary-dark: #5A7A56;
    --primary-light: #A8C5A4;
    
    --brand-purple: #9152A0;  /* NOUVELLE couleur signature */
    
    --secondary: #C9AB81;
    --secondary-dark: #B39568;
    
    --accent: #D4AF37;
    
    --dark: #2C3E36;
    --text: #3A4A42;
    --text-light: #6B7B73;
    
    --bg-light: #F7F5F2;
    --bg-cream: #FAF8F5;
    --white: #FFFFFF;
    
    /* Typographie */
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Manrope', sans-serif;
    
    /* Espacements */
    --section-padding: 120px;
    --container-padding: 40px;
    
    /* Animations */
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg-cream);
    line-height: 1.7;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

/* =================================
   NAVIGATION - AMÉLIORÉE
   ================================= */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(209, 195, 45, 0.466);
    backdrop-filter: blur(15px);
    transition: var(--transition);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0);
}

.nav.scrolled {
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* NOUVEAU: Brand avec logo */
.nav-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-brand-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--brand-purple);
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(145, 82, 160, 0.1);
}

.nav-menu {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand-purple);
    transition: var(--transition);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--dark);
    transition: var(--transition);
}

/* =================================
   HERO - LOGOS INTÉGRÉS
   ================================= */
.hero {
    height: 100vh;
    min-height: 700px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><path d="M0,300 Q300,400 600,300 T1200,300 L1200,600 L0,600 Z" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: cover;
    background-position: bottom;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(145, 82, 160, 0.15) 0%, transparent 50%);
}

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

/* NOUVEAU: Nom de marque très visible */
.hero-brand-name {
    font-family: var(--font-display);
    font-size: clamp(4rem, 12vw, 8rem);
    font-weight: 700;
    color: var(--white);
    letter-spacing: 3px;
    margin-bottom: 15px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: fadeIn 1s ease-out;
}

.hero-baseline {
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.95;
    margin-bottom: 50px;
    color: var(--accent);
    animation: fadeIn 1s ease-out 0.2s backwards;
}

/* NOUVEAU: Logos hero */
.hero-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    animation: fadeIn 1s ease-out 0.4s backwards;
}

.hero-logo-main {
    width: 120px;
    height: 120px;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.2));
}

.hero-logo-cert {
    width: 80px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 5px 20px rgba(0,0,0,0.15));
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 25px;
    animation: fadeIn 1s ease-out 0.6s backwards;
}

.hero-highlight {
    font-weight: 700;
    display: block;
    color: var(--accent);
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 15px;
    opacity: 0.95;
    font-weight: 500;
    animation: fadeIn 1s ease-out 0.8s backwards;
}

/* NOUVEAU: Note avec astérisque */
.hero-note {
    font-size: 0.95rem;
    font-style: italic;
    opacity: 0.85;
    margin-bottom: 40px;
    animation: fadeIn 1s ease-out 1s backwards;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeIn 1s ease-out 1.2s backwards;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--white);
    opacity: 0.7;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.scroll-indicator {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--white), transparent);
    animation: scroll-bounce 2s infinite;
}

@keyframes scroll-bounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(10px); opacity: 0.5; }
}

.fade-in {
    animation: fadeIn 1s ease-out;
}

.fade-in-delay-1 {
    animation: fadeIn 1s ease-out 0.3s backwards;
}

.fade-in-delay-2 {
    animation: fadeIn 1s ease-out 0.6s backwards;
}

.fade-in-delay-3 {
    animation: fadeIn 1s ease-out 0.9s backwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =================================
   BUTTONS
   ================================= */
.btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

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

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

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

/* =================================
   SECTIONS COMMUNES
   ================================= */
section {
    padding: var(--section-padding) 0;
}

.section-label {
    display: inline-block;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--brand-purple);
    font-weight: 600;
    margin-bottom: 15px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 25px;
}

.section-subtitle,
.section-description {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 700px;
    line-height: 1.8;
}

/* =================================
   LE CHALET - PHOTO AGRANDIE
   ================================= */
.chalet-section {
    background: var(--white);
}

.chalet-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;  /* Image plus grande */
    gap: 60px;
    align-items: center;
}

.chalet-image-large {
    position: relative;
}

.chalet-image-large img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

.chalet-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: var(--brand-purple);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 10px 30px rgba(145, 82, 160, 0.3);
}

.chalet-content .section-description {
    margin-bottom: 50px;
}

.chalet-features {
    display: grid;
    gap: 25px;
}

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

.feature-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.feature-text h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.feature-text p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* =================================
   QUI SUIS-JE - NOUVELLE SECTION
   ================================= */
.qui-suis-je {
    background: var(--bg-light);
}

.qui-suis-je-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    align-items: start;
}

.qui-suis-je-image {
    position: relative;
}

.qui-suis-je-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.cert-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--white);
    padding: 15px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 15px;
}

.cert-badge img {
    width: 50px;
    height: auto;
}

.cert-badge span {
    font-weight: 600;
    color: var(--dark);
    font-size: 0.9rem;
}

.qui-suis-je-content p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* NOUVEAU: Sous-section Pourquoi Ho'opozen */
.pourquoi-hoopozen {
    margin-top: 60px;
    padding: 40px;
    background: var(--white);
    border-radius: 20px;
    border-left: 4px solid var(--brand-purple);
}

.pourquoi-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.pourquoi-logo {
    width: 60px;
    height: auto;
}

.pourquoi-header h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--brand-purple);
}

.pourquoi-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.pourquoi-values {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 30px 0;
}

.pourquoi-values span {
    background: linear-gradient(135deg, var(--brand-purple), #B17CBD);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}

.pourquoi-essence {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--brand-purple);
    font-weight: 500;
    margin-top: 25px;
}

/* =================================
   TARIF - PRESTATIONS ENRICHIES
   ================================= */
.tarif {
    background: var(--bg-cream);
}

.tarif-header {
    text-align: center;
    margin-bottom: 80px;
}

.tarif-header .section-subtitle {
    margin: 0 auto;
}

.prestations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.prestation-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.prestation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transform: scaleX(0);
    transition: var(--transition);
}

.prestation-card:hover::before {
    transform: scaleX(1);
}

.prestation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.prestation-card.featured {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    transform: scale(1.03);
}

/* NOUVEAU: Card premium pour massage 4 mains */
.prestation-card.premium {
    background: linear-gradient(135deg, var(--brand-purple) 0%, #B17CBD 100%);
    color: var(--white);
}

.prestation-card.featured .card-description,
.prestation-card.featured .card-duration,
.prestation-card.premium .card-description,
.prestation-card.premium .card-duration {
    color: rgba(255, 255, 255, 0.9);
}

.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent);
    color: var(--dark);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.card-header {
    margin-bottom: 20px;
}

.card-header h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.card-duration {
    font-size: 0.9rem;
    color: var(--text-light);
    opacity: 0.8;
}

.card-description {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* NOUVEAU: Note spécifique carte */
.card-note {
    font-size: 0.85rem;
    font-style: italic;
    opacity: 0.8;
    margin-bottom: 20px;
}

.card-price {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.prestation-card.featured .card-price {
    color: var(--accent);
}

.prestation-card.premium .card-price {
    color: var(--white);
}

.card-cta {
    display: block;
    text-align: center;
    padding: 14px;
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.card-cta:hover {
    background: var(--primary);
    color: var(--white);
}

.prestation-card.featured .card-cta,
.prestation-card.premium .card-cta {
    border-color: var(--white);
    color: var(--white);
}

.prestation-card.featured .card-cta:hover,
.prestation-card.premium .card-cta:hover {
    background: var(--white);
    color: var(--primary);
}

/* NOUVEAU: Section massage duo */
.tarif-duo-section {
    margin: 60px 0;
}

.duo-card {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    color: var(--white);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.duo-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.duo-card h3 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.duo-description {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

.duo-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.price-label {
    font-size: 1rem;
    opacity: 0.9;
}

.price-value {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
}

/* NOUVEAU: Notes tarifaires */
.tarif-notes {
    margin: 60px 0;
    padding: 40px;
    background: var(--white);
    border-radius: 15px;
    border-left: 4px solid var(--brand-purple);
}

.tarif-notes p {
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.note-important {
    color: var(--brand-purple);
}

.note-info {
    color: var(--text);
}

.specialites {
    text-align: center;
    padding: 60px 40px;
    background: var(--white);
    border-radius: 20px;
}

.specialites h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--dark);
}

.specialites-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.tag {
    background: var(--bg-light);
    color: var(--text);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    border: 2px solid transparent;
}

.tag:hover {
    background: var(--brand-purple);
    color: var(--white);
    border-color: var(--brand-purple);
    transform: translateY(-2px);
}

/* =================================
   FORMULES / ABONNEMENTS
   ================================= */
.formules {
    background: var(--bg-light);
}

.formules-header {
    text-align: center;
    margin-bottom: 60px;
}

.formules-header .section-subtitle {
    margin: 0 auto;
}

.formules-tabs {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
}

.tab-btn {
    padding: 14px 40px;
    background: var(--white);
    border: 2px solid var(--bg-light);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
}

.tab-btn:hover {
    border-color: var(--brand-purple);
    color: var(--brand-purple);
}

.tab-btn.active {
    background: var(--brand-purple);
    color: var(--white);
    border-color: var(--brand-purple);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease-out;
}

.formules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.formule-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
}

.formule-card:hover {
    border-color: var(--primary-light);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.formule-card.recommended {
    border-color: var(--brand-purple);
    transform: scale(1.05);
}

.formule-card h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.formule-subtitle {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 25px;
}

.formule-price {
    margin-bottom: 15px;
}

.price-old {
    font-size: 1.1rem;
    color: var(--text-light);
    text-decoration: line-through;
    display: block;
    margin-bottom: 5px;
}

.price-new {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-dark);
    display: block;
}

.formule-save {
    font-size: 0.9rem;
    color: var(--brand-purple);
    font-weight: 600;
    margin-bottom: 25px;
}

.formule-features {
    margin-bottom: 30px;
}

.formule-features li {
    padding: 10px 0;
    font-size: 0.95rem;
    color: var(--text);
}

/* =================================
   TESTIMONIALS
   ================================= */
.testimonials {
    background: var(--bg-cream);
    text-align: center;
}

.testimonials .section-title {
    margin-bottom: 60px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

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

.testimonial-stars {
    color: var(--accent);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    font-style: italic;
    color: var(--text);
    margin-bottom: 25px;
}

.testimonial-author strong {
    display: block;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 5px;
}

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

.testimonials-cta {
    margin-top: 60px;
}

.testimonials-cta p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text);
}

/* =================================
   CONTACT
   ================================= */
.contact {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
}

.contact-details {
    margin: 40px 0;
    display: grid;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-item h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.contact-item a {
    color: var(--brand-purple);
    font-weight: 500;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--brand-purple);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

.booking-card {
    background: var(--bg-cream);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.booking-card h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 15px;
}

.booking-card > p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.gift-card-content {
    padding: 30px 0;
}

.gift-card-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.benefit-item {
    text-align: center;
    padding: 20px;
    background: var(--white);
    border-radius: 15px;
    border: 2px solid var(--primary-light);
    transition: var(--transition);
}

.benefit-item:hover {
    border-color: var(--brand-purple);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(145, 82, 160, 0.15);
}

.benefit-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 10px;
}

.benefit-item h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.benefit-item p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.gift-card-cta {
    text-align: center;
    padding: 25px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 15px;
    color: var(--white);
}

.gift-card-cta p {
    color: var(--white);
}

.gift-card-cta .btn-primary {
    background: var(--accent);
    color: var(--dark);
    margin-top: 10px;
}

.gift-card-cta .btn-primary:hover {
    background: var(--white);
}

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

.calendly-placeholder {
    padding: 80px 40px;
    background: var(--white);
    border-radius: 15px;
    text-align: center;
    border: 2px dashed var(--primary-light);
}

.calendly-placeholder p {
    color: var(--text-light);
    margin-bottom: 20px;
}

/* =================================
   FOOTER
   ================================= */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    width: 60px;
    height: auto;
    margin-bottom: 15px;
}

.footer-cert {
    width: 80px;
    height: auto;
    margin-top: 20px;
}

.footer-brand h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--accent);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--accent);
}

.footer-links ul {
    display: grid;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

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

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

/* =================================
   RESPONSIVE — TABLETTE (≤ 1024px)
   ================================= */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
        --container-padding: 30px;
    }

    /* Nav */
    .nav-logo {
        font-size: 2.2rem;
    }

    /* Grilles deux colonnes → une colonne */
    .chalet-grid,
    .qui-suis-je-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .chalet-image-large {
        order: -1;
    }

    /* Qui suis-je */
    .qui-suis-je-grid {
        gap: 40px;
    }

    .qui-suis-je-image img {
        max-height: 500px;
        object-fit: cover;
        width: 100%;
    }

    /* Pourquoi bloc */
    .pourquoi-hoopozen {
        padding: 30px;
    }

    /* Duo card */
    .duo-card {
        padding: 40px 30px;
    }

    /* Tarif notes */
    .tarif-notes {
        padding: 30px;
    }

    /* Booking card */
    .booking-card {
        padding: 40px 30px;
    }

    /* Formules tabs */
    .formules-tabs {
        gap: 12px;
        flex-wrap: wrap;
    }

    .tab-btn {
        padding: 12px 28px;
        font-size: 0.95rem;
    }

    /* Contact gap */
    .contact-grid {
        gap: 40px;
    }

    /* Footer */
    .footer-content {
        gap: 40px;
    }
}

/* =================================
   RESPONSIVE — MOBILE (≤ 768px)
   ================================= */
@media (max-width: 768px) {

    /* --- NAVIGATION --- */
    .nav-container {
        padding: 12px 20px;
    }

    .nav-logo {
        font-size: 1.9rem;
    }

    .nav-brand-logo {
        width: 42px;
        height: 42px;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        max-width: 300px;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        padding: 30px 25px;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.12);
        transition: var(--transition);
        align-items: flex-start;
        gap: 8px;
        overflow-y: auto;
        z-index: 999;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        font-size: 1.05rem;
        padding: 10px 0;
        width: 100%;
        border-bottom: 1px solid var(--bg-light);
    }

    .nav-toggle {
        display: flex;
        padding: 8px;
    }

    .nav-toggle span {
        width: 26px;
        height: 2.5px;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    /* --- HERO --- */
    .hero {
        min-height: 100svh;
    }

    .hero-content {
        padding: 0 22px;
    }

    .hero-brand-name {
        font-size: clamp(3rem, 13vw, 5rem);
        letter-spacing: 2px;
        margin-bottom: 10px;
    }

    .hero-baseline {
        font-size: 1rem;
        letter-spacing: 2px;
        margin-bottom: 30px;
    }

    .hero-logos {
        gap: 20px;
        margin-bottom: 25px;
    }

    .hero-logo-main {
        width: 80px;
        height: 80px;
    }

    .hero-logo-cert {
        width: 60px;
    }

    .hero-title {
        font-size: clamp(1.8rem, 6vw, 2.8rem);
        margin-bottom: 18px;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .hero-note {
        font-size: 0.88rem;
        margin-bottom: 28px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 14px;
    }

    .hero-cta .btn {
        width: 100%;
        max-width: 280px;
        padding: 14px 30px;
    }

    /* --- SECTIONS COMMUNES --- */
    .section-title {
        font-size: clamp(2rem, 7vw, 3rem);
    }

    .section-subtitle,
    .section-description {
        font-size: 1rem;
    }

    /* --- CHALET --- */
    .chalet-grid {
        gap: 30px;
    }

    .chalet-badge {
        top: 16px;
        right: 16px;
        padding: 8px 18px;
        font-size: 0.82rem;
    }

    .chalet-features {
        gap: 18px;
    }

    .feature-icon {
        font-size: 2rem;
    }

    .feature-text h3 {
        font-size: 1.2rem;
    }

    /* --- QUI SUIS-JE --- */
    .qui-suis-je-grid {
        gap: 30px;
    }

    .qui-suis-je-image img {
        max-height: 380px;
        object-fit: cover;
    }

    .cert-badge {
        bottom: 16px;
        left: 16px;
        padding: 10px 16px;
        gap: 10px;
    }

    .cert-badge img {
        width: 36px;
    }

    .cert-badge span {
        font-size: 0.82rem;
    }

    .pourquoi-hoopozen {
        margin-top: 35px;
        padding: 24px 20px;
    }

    .pourquoi-header {
        gap: 14px;
        margin-bottom: 20px;
    }

    .pourquoi-logo {
        width: 45px;
    }

    .pourquoi-header h3 {
        font-size: 1.5rem;
    }

    .pourquoi-values {
        gap: 10px;
        margin: 20px 0;
    }

    .pourquoi-values span {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    /* --- TARIF / PRESTATIONS --- */
    .tarif-header {
        margin-bottom: 50px;
    }

    .prestations-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .prestation-card {
        padding: 28px 22px;
    }

    .prestation-card.featured,
    .prestation-card.premium,
    .formule-card.recommended {
        transform: scale(1);
    }

    .card-header h3 {
        font-size: 1.4rem;
    }

    .card-price {
        font-size: 2rem;
    }

    /* Duo card */
    .duo-card {
        padding: 32px 22px;
    }

    .duo-card h3 {
        font-size: 1.9rem;
    }

    .duo-description {
        font-size: 1rem;
    }

    .price-value {
        font-size: 2.8rem;
    }

    /* Tarif notes */
    .tarif-notes {
        padding: 24px 20px;
        margin: 35px 0;
    }

    .tarif-notes p {
        font-size: 0.98rem;
    }

    /* Spécialités tags */
    .specialites {
        padding: 40px 22px;
    }

    .specialites h3 {
        font-size: 1.5rem;
    }

    /* --- FORMULES / ABONNEMENTS --- */
    .formules-tabs {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin-bottom: 40px;
    }

    .tab-btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
        padding: 13px 24px;
    }

    .formules-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .formule-card {
        padding: 28px 22px;
    }

    .formule-card h3 {
        font-size: 1.5rem;
    }

    .price-new {
        font-size: 2.2rem;
    }

    /* --- TÉMOIGNAGES --- */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial-card {
        padding: 28px 22px;
    }

    .testimonials-cta {
        margin-top: 40px;
    }

    /* --- CONTACT --- */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .contact-details {
        gap: 22px;
        margin: 28px 0;
    }

    .contact-item {
        gap: 14px;
    }

    .contact-icon {
        font-size: 1.6rem;
    }

    .booking-card {
        padding: 30px 22px;
    }

    .booking-card h3 {
        font-size: 1.6rem;
    }

    .calendly-placeholder {
        padding: 50px 22px;
    }

    /* Bénéfices carte cadeau */
    .gift-card-benefits {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .benefit-item {
        padding: 16px 12px;
    }

    .benefit-icon {
        font-size: 2rem;
    }

    /* Réseaux sociaux */
    .social-links {
        gap: 12px;
    }

    /* --- FOOTER --- */
    .footer {
        padding: 60px 0 25px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-bottom: 40px;
    }

    .footer-brand h3 {
        font-size: 1.6rem;
    }
}

/* =================================
   RESPONSIVE — PETIT MOBILE (≤ 480px)
   ================================= */
@media (max-width: 480px) {
    :root {
        --section-padding: 55px;
        --container-padding: 18px;
    }

    /* Nav ultra compact */
    .nav-container {
        padding: 10px 16px;
    }

    .nav-logo {
        font-size: 1.65rem;
    }

    .nav-brand-logo {
        width: 34px;
        height: 34px;
    }

    .nav-brand {
        gap: 10px;
    }

    /* Hero */
    .hero-brand-name {
        font-size: clamp(2.5rem, 14vw, 4.5rem);
        letter-spacing: 1px;
    }

    .hero-baseline {
        font-size: 0.85rem;
        letter-spacing: 1.5px;
        margin-bottom: 22px;
    }

    .hero-logos {
        flex-direction: column;
        align-items: center;
        gap: 14px;
        margin-bottom: 18px;
    }

    .hero-logo-main {
        width: 80px;
        height: 80px;
    }

    .hero-logo-cert {
        width: 55px;
    }

    .hero-title {
        font-size: clamp(1.6rem, 7vw, 2.2rem);
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .hero-note {
        font-size: 0.82rem;
    }

    .hero-cta .btn {
        max-width: 260px;
        font-size: 0.95rem;
        padding: 13px 24px;
    }

    /* Sections */
    .section-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }

    /* Cards */
    .prestation-card,
    .formule-card,
    .testimonial-card {
        padding: 24px 18px;
    }

    .card-price {
        font-size: 1.9rem;
    }

    .price-new {
        font-size: 2rem;
    }

    /* Duo */
    .duo-icon {
        font-size: 3rem;
    }

    .duo-card h3 {
        font-size: 1.6rem;
    }

    .price-value {
        font-size: 2.4rem;
    }

    /* Pourquoi section */
    .pourquoi-hoopozen {
        padding: 20px 16px;
    }

    .pourquoi-header h3 {
        font-size: 1.3rem;
    }

    /* Booking */
    .booking-card {
        padding: 24px 16px;
    }

    .booking-card h3 {
        font-size: 1.4rem;
    }

    /* Gift */
    .gift-card-benefits {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    /* Footer */
    .footer {
        padding: 50px 0 20px;
    }

    .footer-brand h3 {
        font-size: 1.4rem;
    }
}

/* =================================
   RESPONSIVE — TRÈS PETIT (≤ 360px)
   ================================= */
@media (max-width: 360px) {
    :root {
        --section-padding: 45px;
        --container-padding: 14px;
    }

    .nav-logo {
        font-size: 1.4rem;
    }

    .nav-brand-logo {
        width: 28px;
        height: 28px;
    }

    .hero-brand-name {
        font-size: clamp(2.2rem, 13vw, 3.5rem);
    }

    .hero-cta .btn {
        max-width: 100%;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: clamp(1.6rem, 9vw, 2.2rem);
    }

    .tab-btn {
        max-width: 100%;
        padding: 12px 18px;
        font-size: 0.9rem;
    }

    .duo-card {
        padding: 24px 14px;
    }

    .tarif-notes {
        padding: 18px 14px;
    }
}
