/* ============================================================
   LES 7 SEMAINES — Chambre d'hôtes
   style.css
   ============================================================ */

/* ---------- VARIABLES ---------- */
:root {
    --terracotta:      #C17B4E;
    --terracotta-dark: #A5653A;
    --teal:            #2C5F5D;
    --teal-dark:       #1E4341;
    --beige:           #E8D5B0;
    --beige-light:     #F4ECD8;
    --cream:           #FAF7F2;
    --dark:            #2A2A2A;
    --gray:            #666666;
    --light-gray:      #EEEBE5;
    --white:           #FFFFFF;

    --shadow-sm:  0 2px 12px rgba(0,0,0,0.07);
    --shadow:     0 4px 24px rgba(0,0,0,0.10);
    --shadow-lg:  0 8px 48px rgba(0,0,0,0.14);
    --radius:     14px;
    --radius-sm:  8px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);

    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body:    'Lato', Arial, sans-serif;
}

/* ---------- 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);
    color: var(--dark);
    background: var(--cream);
    line-height: 1.75;
    overflow-x: hidden;
}
img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
sup { font-size: 0.6em; vertical-align: super; }

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.25; }

.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 0.75rem;
}
.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}
.section-desc {
    font-size: 1.05rem;
    color: var(--gray);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ---------- LAYOUT ---------- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}
.section {
    padding: 6rem 0;
}
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}
.section-header .section-desc { margin-top: 0.5rem; }

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    white-space: nowrap;
}
.btn-primary {
    background: var(--terracotta);
    color: var(--white);
    border-color: var(--terracotta);
}
.btn-primary:hover {
    background: var(--terracotta-dark);
    border-color: var(--terracotta-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(193, 123, 78, 0.35);
}
.btn-outline {
    background: transparent;
    color: var(--terracotta);
    border-color: var(--terracotta);
}
.btn-outline:hover {
    background: var(--terracotta);
    color: var(--white);
    transform: translateY(-2px);
}
.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.7);
}
.btn-outline-white:hover {
    background: var(--white);
    color: var(--dark);
    border-color: var(--white);
    transform: translateY(-2px);
}
.btn-teal {
    background: var(--teal);
    color: var(--white);
    border-color: var(--teal);
}
.btn-teal:hover {
    background: var(--teal-dark);
    border-color: var(--teal-dark);
    transform: translateY(-2px);
}
.btn-full { width: 100%; }
.btn-icon { gap: 0.6rem; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: var(--transition);
}
.navbar.scrolled {
    background: rgba(250, 247, 242, 0.97);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    padding: 0.75rem 0;
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
.nav-logo {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.logo-main {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    transition: var(--transition);
}
.navbar.scrolled .logo-main { color: var(--dark); }
.logo-sub {
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.75);
    transition: var(--transition);
}
.navbar.scrolled .logo-sub { color: var(--gray); }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.nav-link {
    font-size: 0.875rem;
    font-weight: 700;
    padding: 0.5rem 0.9rem;
    border-radius: 50px;
    color: rgba(255,255,255,0.9);
    transition: var(--transition);
    letter-spacing: 0.02em;
}
.navbar.scrolled .nav-link { color: var(--dark); }
.nav-link:hover { color: var(--terracotta) !important; }
.nav-cta {
    background: var(--terracotta);
    color: var(--white) !important;
    padding: 0.5rem 1.25rem;
    margin-left: 0.5rem;
}
.nav-cta:hover {
    background: var(--terracotta-dark) !important;
    color: var(--white) !important;
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}
.navbar.scrolled .nav-toggle span { background: var(--dark); }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Alentours links */
.alentour-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.75rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--beige);
    border-bottom: 1px solid rgba(232,213,176,0.3);
    padding-bottom: 1px;
    transition: var(--transition);
}
.alentour-link:hover { color: var(--white); border-color: var(--white); }
.alentour-link i { font-size: 0.7rem; }
.products-link { color: inherit; border-bottom: 1px solid rgba(255,255,255,0.4); transition: var(--transition); }
.products-link:hover { border-color: var(--white); }

/* ---------- Language switcher ---------- */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 2px;
    background: rgba(255,255,255,0.12);
    border-radius: 50px;
    padding: 3px;
    transition: var(--transition);
}
.navbar.scrolled .lang-switcher {
    background: var(--light-gray);
}
.lang-btn {
    background: none;
    border: none;
    color: rgba(255,255,255,0.7);
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 0.3rem 0.65rem;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
}
.navbar.scrolled .lang-btn { color: var(--gray); }
.lang-btn:hover { color: var(--white); }
.navbar.scrolled .lang-btn:hover { color: var(--dark); }
.lang-btn.active {
    background: var(--terracotta);
    color: var(--white) !important;
    box-shadow: 0 2px 8px rgba(193,123,78,0.35);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, #6B3D2E 0%, #3D6B5E 50%, #2A4A4E 100%);
    background-size: cover;
    background-position: center;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(30, 20, 15, 0.55) 0%,
        rgba(20, 30, 28, 0.45) 60%,
        rgba(10, 20, 18, 0.65) 100%
    );
}
.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    max-width: 800px;
}
.hero-eyebrow {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--beige);
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.2s ease forwards;
}
.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 0.5rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.4s ease forwards;
}
.hero-tagline {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    color: var(--beige);
    margin-bottom: 1.25rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.55s ease forwards;
}
.hero-desc {
    font-size: 1rem;
    color: rgba(255,255,255,0.82);
    line-height: 1.8;
    margin-bottom: 2.25rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.7s ease forwards;
}
.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s 0.85s ease forwards;
}
.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255,255,255,0.65);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    animation: bounce 2s 2s infinite;
}
.hero-scroll:hover { color: var(--white); }
.hero-scroll i { font-size: 0.9rem; }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
    background: var(--teal);
    padding: 2rem 0;
}
.stats-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}
.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.5rem 3rem;
    gap: 0.2rem;
}
.stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}
.stat-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
}
.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.2);
}

/* ============================================================
   À PROPOS
   ============================================================ */
.apropos { background: var(--cream); }
.apropos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.apropos-text p {
    color: var(--gray);
    margin-bottom: 1rem;
}
.apropos-highlights {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.highlight-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--beige-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terracotta);
    font-size: 1rem;
    flex-shrink: 0;
}
.highlight-item div {
    display: flex;
    flex-direction: column;
}
.highlight-item strong {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--dark);
}
.highlight-item span {
    font-size: 0.875rem;
    color: var(--gray);
}

/* Image grid */
.img-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    grid-template-rows: 420px;
    gap: 1rem;
    border-radius: var(--radius);
    overflow: hidden;
}
.img-main {
    grid-row: 1;
    background: linear-gradient(135deg, #c8a882 0%, #7a5c3e 100%);
    border-radius: var(--radius);
    overflow: hidden;
}
.img-side {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
}
.img-side-top,
.img-side-bottom {
    border-radius: var(--radius-sm);
    overflow: hidden;
}
.img-side-top  { background: linear-gradient(135deg, #6fa37a 0%, #3d6b45 100%); }
.img-side-bottom { background: linear-gradient(135deg, #a0b8c8 0%, #4a7a8a 100%); }

/* ============================================================
   CHAMBRE
   ============================================================ */
.chambre {
    background: var(--beige-light);
    position: relative;
    overflow: hidden;
}
.chambre-bg-deco {
    position: absolute;
    top: -100px; right: -100px;
    width: 450px; height: 450px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(193,123,78,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.chambre-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: start;
}

/* Gallery */
.chambre-gallery { display: flex; flex-direction: column; gap: 1rem; }
.gallery-main {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    height: 380px;
    background: linear-gradient(135deg, #b8906a 0%, #7a5040 100%);
    box-shadow: var(--shadow);
}
.gallery-main img { transition: transform 0.6s ease; }
.gallery-main:hover img { transform: scale(1.03); }
.gallery-badge {
    position: absolute;
    bottom: 1.25rem; left: 1.25rem;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(8px);
    color: var(--dark);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.4rem 1rem;
    border-radius: 50px;
}
.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}
.thumb {
    border-radius: var(--radius-sm);
    overflow: hidden;
    height: 90px;
    cursor: pointer;
    transition: var(--transition);
}
.thumb:nth-child(1) { background: linear-gradient(135deg, #c8a882 0%, #8a6040 100%); }
.thumb:nth-child(2) { background: linear-gradient(135deg, #7ab09a 0%, #3d7060 100%); }
.thumb:nth-child(3) { background: linear-gradient(135deg, #d4b896 0%, #9a7050 100%); }
.thumb:nth-child(4) { background: linear-gradient(135deg, #a0c8d0 0%, #5a8a96 100%); }
.thumb:hover { transform: scale(1.04); box-shadow: var(--shadow); }
.thumb img { transition: transform 0.4s ease; }
.thumb:hover img { transform: scale(1.08); }

/* Chambre details */
.chambre-details { padding-top: 0.5rem; }
.chambre-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--terracotta);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}
.chambre-details h3 {
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 0.75rem;
}
.chambre-details > p {
    color: var(--gray);
    margin-bottom: 1.75rem;
}
.detail-block {
    margin-bottom: 1.75rem;
}
.detail-block h4 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--teal);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.check-list { display: flex; flex-direction: column; gap: 0.45rem; }
.check-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--gray);
}
.check-list li::before {
    content: '';
    width: 18px;
    height: 18px;
    min-width: 18px;
    border-radius: 50%;
    background: var(--beige);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath fill='%23C17B4E' d='M10 3L5 8.5 2 5.5l-1 1L5 10.5l6-6.5z'/%3E%3C/svg%3E");
    background-size: 11px;
    background-repeat: no-repeat;
    background-position: center;
}

/* ---------- Room tabs ---------- */
.chambre-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
    background: var(--white);
    border-radius: var(--radius);
    padding: 0.5rem;
    box-shadow: var(--shadow-sm);
    width: 100%;
    max-width: 560px;
}
.tab-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    padding: 0.9rem 1rem;
    border: none;
    border-radius: var(--radius-sm);
    background: transparent;
    cursor: pointer;
    font-family: var(--font-body);
    transition: var(--transition);
    color: var(--gray);
    flex: 1;
    min-width: 0;
}
.tab-btn i { font-size: 1.1rem; margin-bottom: 0.2rem; }
.tab-btn span { font-size: 0.875rem; font-weight: 700; color: var(--dark); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%; }
.tab-btn small { font-size: 0.7rem; color: var(--gray); white-space: nowrap; }
.tab-btn:hover { background: var(--cream); }
.tab-btn.active {
    background: var(--terracotta);
    color: var(--white);
}
.tab-btn.active i,
.tab-btn.active span,
.tab-btn.active small { color: var(--white); }

.tab-panel { display: none; }
.tab-panel.active { display: block; }

.chambre-tag--teal { background: var(--teal); }

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--white); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.service-card {
    background: var(--cream);
    border-radius: var(--radius);
    padding: 2rem 1.75rem;
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
}
.service-card:hover {
    background: var(--white);
    border-color: var(--beige);
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}
.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--beige-light), var(--beige));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.5rem;
    color: var(--terracotta);
    transition: var(--transition);
}
.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--terracotta), var(--terracotta-dark));
    color: var(--white);
}
.service-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark);
}
.service-card p {
    font-size: 0.875rem;
    color: var(--gray);
    line-height: 1.65;
}

/* ============================================================
   AUX ALENTOURS
   ============================================================ */
.alentours { background: var(--teal); }
.alentours .section-label { color: var(--beige); }
.alentours .section-title { color: var(--white); }
.alentours .section-desc { color: rgba(255,255,255,0.72); }

.alentours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: 2rem;
}
.alentour-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 1.75rem 1.5rem;
    transition: var(--transition);
}
.alentour-card:hover {
    background: rgba(255,255,255,0.13);
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-4px);
}
.alentour-icon {
    font-size: 1.75rem;
    color: var(--beige);
    margin-bottom: 1rem;
}
.alentour-card h3 {
    font-size: 1.05rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}
.alentour-card p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.65;
}

.local-products {
    margin-top: 1rem;
}
.local-products-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius);
    padding: 1.25rem 1.75rem;
    max-width: 700px;
    margin: 0 auto;
}
.local-products-inner > i {
    font-size: 1.5rem;
    color: var(--beige);
    flex-shrink: 0;
}
.local-products-inner p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
}
.local-products-inner strong { color: var(--beige); }

/* ============================================================
   TARIFS
   ============================================================ */
.tarifs { background: var(--cream); }
.tarifs-layout {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 3rem;
    align-items: start;
}

.tarif-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 2px solid var(--beige);
}
.tarif-header {
    background: linear-gradient(135deg, var(--terracotta), var(--terracotta-dark));
    color: var(--white);
    padding: 2rem;
    text-align: center;
}
.tarif-season-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    opacity: 0.9;
}
.tarif-header h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 0.25rem;
}
.tarif-period {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
    letter-spacing: 0.03em;
}
.tarif-prices { padding: 1.5rem 1.75rem; }
.tarif-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--light-gray);
    transition: var(--transition);
}
.tarif-row:last-child { border-bottom: none; }
.tarif-row.highlighted {
    background: var(--beige-light);
    margin: 0 -1.75rem;
    padding: 0.7rem 1.75rem;
    border-bottom: 1px solid var(--beige);
    border-radius: 4px;
}
.tarif-guests {
    font-size: 0.9rem;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}
.tarif-guests i { font-size: 0.7rem; color: var(--terracotta); }
.tarif-price {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--terracotta);
}
.tarif-note {
    padding: 1rem 1.75rem;
    background: var(--cream);
    font-size: 0.8rem;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-top: 1px solid var(--light-gray);
}
.tarif-note i { color: var(--terracotta); }
.tarif-card .btn { margin: 1.25rem 1.75rem; width: calc(100% - 3.5rem); }

/* Conditions */
.tarif-conditions { padding-top: 0.5rem; }
.tarif-conditions h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}
.conditions-list { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.conditions-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.cond-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--beige-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terracotta);
    font-size: 0.875rem;
    flex-shrink: 0;
}
.conditions-list strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--dark);
}
.conditions-list span {
    display: block;
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.5;
}
.tarif-cta-box {
    background: var(--beige-light);
    border-radius: var(--radius);
    padding: 1.5rem;
    border-left: 4px solid var(--terracotta);
}
.tarif-cta-box p {
    font-size: 0.95rem;
    color: var(--dark);
    margin-bottom: 1rem;
    font-weight: 600;
}
.tarif-cta-btns {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--beige-light); }

.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    border: 1.5px solid var(--light-gray);
    overflow: hidden;
    transition: var(--transition);
}
.faq-item.open { border-color: var(--terracotta); box-shadow: var(--shadow-sm); }

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
    transition: var(--transition);
}
.faq-question:hover { color: var(--terracotta); }
.faq-item.open .faq-question { color: var(--terracotta); }
.faq-question i {
    font-size: 0.8rem;
    color: var(--terracotta);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}
.faq-item.open .faq-question i { transform: rotate(180deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 1.5rem;
}
.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 1.5rem 1.25rem;
}
.faq-answer p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.75;
    border-top: 1px solid var(--light-gray);
    padding-top: 1rem;
}

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

.contact-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    max-width: 800px;
    margin: 0 auto 1.5rem;
}
.contact-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: var(--cream);
    border: 1.5px solid var(--light-gray);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: var(--transition);
    text-decoration: none;
}
.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: var(--beige);
}
.contact-card--primary { background: var(--terracotta); border-color: var(--terracotta); }
.contact-card--primary:hover { background: var(--terracotta-dark); border-color: var(--terracotta-dark); }
.contact-card--teal { background: var(--teal); border-color: var(--teal); }
.contact-card--teal:hover { background: var(--teal-dark); border-color: var(--teal-dark); }

.cc-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--white);
}
.contact-card:not(.contact-card--primary):not(.contact-card--teal) .cc-icon {
    background: var(--beige-light);
    color: var(--terracotta);
}
.cc-body {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    flex: 1;
    min-width: 0;
}
.cc-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
}
.contact-card:not(.contact-card--primary):not(.contact-card--teal) .cc-label {
    color: var(--gray);
}
.cc-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.contact-card:not(.contact-card--primary):not(.contact-card--teal) .cc-value {
    color: var(--dark);
}
.cc-sub {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.65);
}
.contact-card:not(.contact-card--primary):not(.contact-card--teal) .cc-sub {
    color: var(--gray);
}
.cc-arrow {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    transition: var(--transition);
}
.contact-card:not(.contact-card--primary):not(.contact-card--teal) .cc-arrow {
    color: var(--light-gray);
}
.contact-card:hover .cc-arrow { transform: translateX(3px); }

.contact-note-bar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    max-width: 800px;
    margin: 0 auto;
    background: var(--beige-light);
    border-radius: var(--radius-sm);
    padding: 1rem 1.25rem;
    border-left: 3px solid var(--terracotta);
}
.contact-note-bar i { color: var(--terracotta); flex-shrink: 0; }
.contact-note-bar p { font-size: 0.85rem; color: var(--gray); }

@media (max-width: 600px) {
    .contact-cards { grid-template-columns: 1fr; }
    .cc-value { font-size: 0.85rem; }
}
.contact-info h3 {
    font-size: 1.4rem;
    margin-bottom: 1.75rem;
    color: var(--dark);
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
}
.contact-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--beige-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terracotta);
    font-size: 1rem;
    flex-shrink: 0;
}
.contact-item div {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}
.contact-item strong {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--dark);
}
.contact-item a {
    font-size: 0.9rem;
    color: var(--gray);
    transition: var(--transition);
    display: block;
}
.contact-item a:hover { color: var(--terracotta); }
.contact-item span {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.5;
}
.map-btn { margin-top: 1.5rem; }
.contact-info-note {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background: var(--beige-light);
    border-radius: var(--radius-sm);
    padding: 1rem;
    margin-top: 1.5rem;
}
.contact-info-note i { color: var(--terracotta); font-size: 1rem; flex-shrink: 0; margin-top: 0.1rem; }
.contact-info-note p { font-size: 0.825rem; color: var(--gray); line-height: 1.5; }

/* Form */
.contact-form-wrap h3 {
    font-size: 1.4rem;
    margin-bottom: 1.75rem;
    color: var(--dark);
}
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.35rem; }
.form-group label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--dark);
    text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem 1rem;
    border: 1.5px solid var(--light-gray);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--dark);
    background: var(--cream);
    transition: var(--transition);
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--terracotta);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(193, 123, 78, 0.12);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}
.form-note {
    font-size: 0.78rem;
    color: var(--gray);
    text-align: center;
    margin-top: 0.25rem;
}
.form-success {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--cream);
    border-radius: var(--radius);
    border: 1px solid var(--beige);
}
.success-icon {
    font-size: 3.5rem;
    color: var(--teal);
    margin-bottom: 1rem;
}
.form-success h4 { font-size: 1.4rem; margin-bottom: 0.75rem; color: var(--dark); }
.form-success p { font-size: 0.9rem; color: var(--gray); }
.form-success a { color: var(--terracotta); font-weight: 700; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--dark);
    padding: 4rem 0 0;
}
.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}
.footer-brand p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
}
.footer-tagline {
    color: var(--beige) !important;
    margin-top: 0.5rem;
}
.footer-nav h4,
.footer-contact-info h4 {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--beige);
    margin-bottom: 1rem;
}
.footer-nav ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-nav a {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.55);
    transition: var(--transition);
}
.footer-nav a:hover { color: var(--white); padding-left: 4px; }
.footer-contact-info p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.55);
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 0.6rem;
    line-height: 1.5;
}
.footer-contact-info i { color: var(--terracotta); font-size: 0.9rem; margin-top: 0.15rem; flex-shrink: 0; }
.footer-contact-info a {
    color: rgba(255,255,255,0.55);
    transition: var(--transition);
}
.footer-contact-info a:hover { color: var(--white); }
.footer-bottom {
    padding: 1.5rem 0;
    text-align: center;
}
.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0,0,0,0.94);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 1.5rem;
}
.lightbox.open {
    opacity: 1;
    pointer-events: all;
}
.lightbox img {
    max-width: 92vw;
    max-height: 88vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: var(--radius-sm);
    box-shadow: 0 16px 64px rgba(0,0,0,0.6);
    transform: scale(0.92);
    transition: transform 0.3s ease;
}
.lightbox.open img {
    transform: scale(1);
}
.lightbox-close {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: rgba(255,255,255,0.8);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition);
    padding: 0.25rem;
}
.lightbox-close:hover { color: var(--white); transform: scale(1.15); }
.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    color: var(--white);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition);
}
.lightbox-prev { left: 1.25rem; }
.lightbox-next { right: 1.25rem; }
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,255,255,0.22); }
.lightbox-counter {
    position: absolute;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.55);
    font-size: 0.8rem;
    letter-spacing: 0.08em;
}

/* Make gallery images look clickable */
.gallery-main img,
.thumb img { cursor: zoom-in; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(6px); }
}

[data-animate] {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-animate="slide-right"] { transform: translateX(-40px); }
[data-animate="slide-left"]  { transform: translateX(40px); }
[data-animate].visible {
    opacity: 1;
    transform: translate(0);
}

/* ============================================================
   RESPONSIVE — Tablet (≤ 960px)
   ============================================================ */
@media (max-width: 960px) {
    .section { padding: 4.5rem 0; }

    /* Nav */
    .lang-switcher { order: 2; }
    .nav-toggle { display: flex; z-index: 101; order: 3; }
    .nav-menu {
        position: fixed;
        top: 0; right: -100%;
        width: min(320px, 85vw);
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 5.5rem 2rem 2rem;
        gap: 0.25rem;
        transition: right 0.35s ease;
        box-shadow: -8px 0 32px rgba(0,0,0,0.12);
        z-index: 100;
    }
    .nav-menu.open { right: 0; }
    .nav-link { color: var(--dark) !important; width: 100%; padding: 0.75rem 1rem; border-radius: var(--radius-sm); font-size: 1rem; }
    .nav-link:hover { background: var(--cream); color: var(--terracotta) !important; }
    .nav-cta { background: var(--terracotta); color: var(--white) !important; margin-top: 0.5rem; text-align: center; justify-content: center; }
    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.4);
        z-index: 99;
    }
    .nav-overlay.active { display: block; }

    /* Stats */
    .stat-item { padding: 0.5rem 1.5rem; }
    .stat-divider { display: none; }
    .stats-grid { gap: 0.5rem; }

    /* Apropos */
    .apropos-grid { grid-template-columns: 1fr; gap: 3rem; }
    .img-grid { grid-template-rows: 320px; }

    /* Chambre */
    .chambre-content { grid-template-columns: 1fr; gap: 2.5rem; }
    .gallery-thumbs { grid-template-columns: repeat(4, 1fr); }

    /* Services */
    .services-grid { grid-template-columns: repeat(2, 1fr); }

    /* Alentours */
    .alentours-grid { grid-template-columns: repeat(2, 1fr); }

    /* Tarifs */
    .tarifs-layout { grid-template-columns: 1fr; gap: 2.5rem; }

    /* Contact */
    .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }

    /* Footer */
    .footer-content { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .footer-brand { grid-column: 1 / -1; }
}

/* ============================================================
   RESPONSIVE — Mobile (≤ 600px)
   ============================================================ */
@media (max-width: 600px) {
    .container { padding: 0 1.25rem; }
    .section { padding: 3.5rem 0; }

    /* Hero — recadrage sur la maison (gauche) */
    .hero-bg { background-position: 20% center; }
    .section-title { font-size: 1.75rem; }

    /* Hero */
    .hero-title { font-size: 2.8rem; }
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-actions .btn { width: 100%; max-width: 300px; }

    /* Stats */
    .stats-grid { flex-direction: column; gap: 0; }
    .stat-item { padding: 0.75rem 0; border-bottom: 1px solid rgba(255,255,255,0.15); flex-direction: row; justify-content: space-between; width: 100%; padding: 0.9rem 2rem; }
    .stat-item:last-child { border-bottom: none; }

    /* Img grid */
    .img-grid { grid-template-columns: 1fr; grid-template-rows: 250px 120px; }
    .img-side { grid-template-columns: 1fr 1fr; grid-template-rows: none; }

    /* Gallery thumbs */
    .gallery-thumbs { grid-template-columns: repeat(2, 1fr); }
    .thumb { height: 100px; }

    /* Chambre tabs */
    .chambre-tabs { max-width: 100%; overflow: hidden; }
    .tab-btn { padding: 0.75rem 0.5rem; overflow: hidden; min-width: 0; }
    .tab-btn small { display: none; }
    .tab-btn span { font-size: 0.8rem; width: 100%; text-align: center; }

    /* Services */
    .services-grid { grid-template-columns: 1fr; }

    /* Alentours */
    .alentours-grid { grid-template-columns: 1fr; }

    /* Tarifs */
    .tarif-cta-btns { flex-direction: column; }
    .tarif-cta-btns .btn { width: 100%; }

    /* Form */
    .form-row { grid-template-columns: 1fr; }

    /* Footer */
    .footer-content { grid-template-columns: 1fr; }
    .footer-brand { grid-column: auto; }
}
