:root {
    --creme: #F7F2E9;
    --creme-dark: #EDE5D5;
    --terra-cotta: #B85C42;
    --terra-light: #D4735A;
    --vert-kaki: #556419;
    --kaki-light: #6E7F2A;
    --kaki-dark: #3D4A12;
    --text-dark: #2c2c2c;
    --text-light: #5A4E3A;
    --font-titre: 'Chau Philomene One', sans-serif;
    --font-texte: 'Nunito', sans-serif;
    --f-title: 'Chau Philomene One', sans-serif;
    --f-body: 'Nunito', sans-serif;
    --terra: #B85C42;
    --kaki: #556419;
}


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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-texte);
    background: var(--creme);
    color: var(--text-dark);
    overflow-x: hidden;

}

h1, h2, h3 {
    font-family: var(--font-titre);
    font-weight: 600;
}

a {
    text-decoration: none;
}

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

/* ===== UTILITAIRES ===== */
.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-eyebrow {
    display: block;
    font-family: var(--font-texte);
    font-size: .72rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--terra-cotta);
    margin-bottom: .7rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--kaki-dark);
    line-height: 1.2;
    margin-bottom: .8rem;
}

.section-title em {
    font-style: italic;
    color: var(--terra-cotta);
}

.section-sub {
    font-size: 1rem;
    color: var(--text-light);
    max-width: 540px;
    line-height: 1.7;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header .section-sub {
    margin: 0 auto;
}

.section-header .divider {
    margin: 1rem auto 1.5rem;
}

.divider {
    width: 55px;
    height: 2px;
    background: linear-gradient(to right, var(--terra-cotta), var(--vert-kaki));
    margin: 1rem 0 1.5rem;
    border-radius: 2px;
}

.divider.center {
    margin: 1rem auto 1.5rem;
}

/* ===== BOUTONS ===== */
.btn-primary {
    display: inline-block;
    background: var(--terra-cotta);
    color: var(--creme);
    padding: .85rem 2.2rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: .9rem;
    letter-spacing: .04em;
    transition: all .3s ease;
    border: 2px solid transparent;
}

.btn-primary:hover {
    background: var(--kaki-dark);
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, .18);
}

.btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--terra-cotta);
    padding: .8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: .9rem;
    border: 2px solid var(--terra-cotta);
    letter-spacing: .04em;
    transition: all .3s ease;
}

.btn-outline:hover {
    background: var(--terra-cotta);
    color: var(--creme);
    transform: translateY(-2px);
}

.btn-light {
    display: inline-block;
    background: rgba(255, 255, 255, .15);
    color: #fff;
    padding: .8rem 2rem;
    border-radius: 15px;
    font-weight: 600;
    font-size: .9rem;
    border: 1.5px solid rgba(255, 255, 255, .5);
    backdrop-filter: blur(8px);
    transition: all .3s ease;
}

.btn-light:hover {
    background: rgba(255, 255, 255, .28);
    transform: translateY(-2px);
}

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity .7s ease, transform .7s ease;
}

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

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity .7s ease, transform .7s ease;
}

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

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: .8s;
}

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

/* ===== HEADER ===== */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--creme);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all .35s ease;
}

#header.scrolled {
    box-shadow: 0 4px 30px rgba(44, 36, 22, .08);
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2.5rem;
    height: 78px;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 60px;
    width: 60px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-right: 10px;
    vertical-align: middle;
}

.logo-placeholder {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--vert-kaki), var(--kaki-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.logo-text .brand {
    font-family: var(--font-titre);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--kaki-dark);
    letter-spacing: .04em;
    display: block;
}

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

.nav-links a {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 600;
    letter-spacing: .03em;
    position: relative;
    transition: color .3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--terra-cotta);
    transition: width .3s ease;
}

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

.nav-links a:hover::after {
    width: 100%;
}

.nav-links .cta-nav {
    background: var(--terra-cotta);
    color: #fff !important;
    padding: .45rem 1.3rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: .9rem;
    border: 1.5px solid rgba(255, 255, 255, .5);
    backdrop-filter: blur(8px);
    transition: all .3s ease;
}

.nav-links .cta-nav::after {
    display: none !important;
}

.nav-links .cta-nav:hover {
    background: var(--kaki-dark) !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all .3s ease;
}

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(247, 242, 233, .98);
    backdrop-filter: blur(20px);
    padding: 1.5rem 2rem 2rem;
    z-index: -1;
    border-bottom: 2px solid var(--vert-kaki);
    transform: translateY(-150%);
    opacity: 0;
    transition: all .4s ease;
    pointer-events: none;
}

.mobile-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .8rem;
}

.mobile-menu a {
    font-size: 1.05rem;
    color: var(--text-dark);
    font-weight: 600;
    padding: .5rem 0;
    display: block;
    border-bottom: 1px solid rgba(85, 100, 25, .1);
}

/* ===== HERO ===== */
.hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    padding-top: 78px;
    overflow: hidden;
}

.swiper-hero {
    width: 100%;
    height: 100%;
}

.swiper-slide-hero {
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(30, 22, 10, .62) 0%, rgba(85, 100, 25, .3) 55%, rgba(184, 92, 66, .22) 100%);
}

.background-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slider-overlay-global {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 22, 10, .8) 0%, rgba(85, 100, 25, .4) 50%, rgba(184, 92, 66, .2) 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: absolute;
    z-index: 10;
    top: calc(78px + 4rem);
    left: 4rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 900px;
    width: 100%;
    padding: 0;
    text-align: left;
}

.hero-logo-side {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 2rem;
}

.hero-logo-side img {
    width: 100%;
    max-width: 280px;
    height: auto;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.3));
    border-radius: 10px;
}

.hero-text-side {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-slogan {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
    text-shadow: 0 2px 30px rgba(0, 0, 0, .32);
    margin-bottom: 2rem;
}

.hero-slogan span {
    color: #E8C9A0;
    font-style: italic;
}
@media(max-width:750px){

    .hero-logo-side img{
max-width:30%;

    }
    .hero-logo-side{
        justify-content: flex-start;
    }
}
.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.hero-badges {
    position: absolute;
    bottom: 5rem;
    right: 3rem;
    display: flex;
    flex-direction: column;
    gap: .8rem;
    z-index: 2;
}

.hero-badge {
    background: rgba(247, 242, 233, .14);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 50px;
    padding: .45rem 1.1rem;
    font-size: .76rem;
    color: rgba(255, 255, 255, .9);
    display: flex;
    align-items: center;
    gap: .5rem;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .4rem;
    color: rgba(255, 255, 255, .6);
    font-size: .68rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    animation: bounce 2.2s infinite;
    z-index: 2;
}

.hero-scroll svg {
    width: 18px;
    opacity: .6;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(6px);
    }
}

.swiper-button-next,
.swiper-button-prev {
    color: #fff !important;
}

.swiper-pagination-bullet-active {
    background: #fff !important;
}

/* ===== BALADES (ZIG-ZAG) ===== */
.balades-section {
    padding: 6rem 0;
    background-color: var(--creme-dark);
    overflow: hidden;
}

.balades-list {
    display: flex;
    flex-direction: column;
    gap: 6rem;
    margin-top: 3rem;
}

.balade-row {
    display: flex;
    align-items: center;
    gap: 5rem;
}

.balade-row:nth-child(even) {
    flex-direction: row-reverse;
}

.balade-visual {
    flex: 1;
    position: relative;
}

.balade-visual img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 60px 15px 60px 15px;
    box-shadow: 0 15px 35px rgba(44, 36, 22, .08);
    transition: transform .5s ease, border-radius .5s ease;
}

.balade-row:nth-child(even) .balade-visual img {
    border-radius: 15px 60px 15px 60px;
}

.balade-row:hover .balade-visual img {
    transform: scale(1.03) rotate(-1deg);
    border-radius: 30px;
}

.balade-row:nth-child(even):hover .balade-visual img {
    transform: scale(1.03) rotate(1deg);
}

.balade-price-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--terra-cotta);
    color: #fff;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: var(--font-titre);
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 0.9;
    box-shadow: 0 10px 25px rgba(189, 84, 55, .4);
    transform: rotate(12deg);
    border: 5px solid var(--creme);
    transition: transform .3s ease;
}

.balade-row:hover .balade-price-badge {
    transform: rotate(0deg) scale(1.1);
}

.balade-row:nth-child(even) .balade-price-badge {
    right: auto;
    left: -20px;
    transform: rotate(-12deg);
}

.balade-row:nth-child(even):hover .balade-price-badge {
    transform: rotate(0deg) scale(1.1);
}

.balade-price-badge small {
    font-family: var(--font-texte);
    font-size: .8rem;
    font-weight: 600;
    opacity: .9;
}

.balade-content {
    flex: 1;
    padding: 1rem 0;
}

.balade-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
}

.balade-meta .tag {
    background: rgba(119, 139, 38, .15);
    color: var(--vert-kaki);
    padding: .4rem 1.2rem;
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.balade-meta .duration,
.balade-meta .level {
    font-size: .95rem;
    font-weight: 600;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: .4rem;
}

.balade-content h3 {
    font-size: 2.4rem;
    color: var(--kaki-dark);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.balade-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* ===== BONS CADEAUX ===== */
.gift-section {
    background: var(--kaki-dark);
    padding: 4rem 0;
}

.gift-wrapper {
    background: transparent;
    border-radius: 0;
    padding: 3rem 0;
    display: flex;
    align-items: center;
    gap: 0;
    position: relative;
}

.gift-wrapper::before,
.gift-wrapper::after {
    display: none;
}

.gift-block-title {
    flex: 0 0 auto;
    padding-right: 3rem;
    border-right: 1px solid rgba(61, 74, 18, .2);
}

.gift-eyebrow {
    display: inline-block;
    background: transparent;
    color: var(--terra-cotta);
    padding: 0;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
    margin-bottom: .8rem;
}

.gift-title {
    font-family: var(--font-titre);
    font-size: 2rem;
    font-weight: 700;
    color: var(--creme-dark);
    line-height: 1.1;
    white-space: nowrap;
}

.gift-title em {
    color: var(--terra-cotta);
    font-style: italic;
}

.gift-steps {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 0 3rem;
    border-right: 1px solid rgba(61, 74, 18, .2);
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: .5rem;
    flex: 1;
    position: relative;
}

.step:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -10px;
    top: 18px;
    color: var(--creme-dark);
    font-size: 1.1rem;
}

.step span {
    width: 36px;
    height: 36px;
    background: var(--terra-cotta);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-titre);
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-label {
    font-size: .8rem;
    font-weight: 700;
    color: var(--creme-dark);
    line-height: 1.3;
}

.gift-block-cta {
    flex: 0 0 auto;
    padding-left: 3rem;
}

.btn-gift-fun {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    background: var(--terra-cotta);
    color: #fff;
    padding: .85rem 1.8rem;
    border-radius: 12px;
    font-weight: 800;
    font-size: .88rem;
    text-decoration: none;
    white-space: nowrap;
    transition: all .25s;
}

.btn-gift-fun:hover {
    background: var(--kaki-dark);
    transform: translateY(-2px);
}

/* ===== CHEVAUX (MOODBOARD) ===== */
.chevaux-section {
    padding: 6rem 0;
    background-color: var(--creme-dark);
}

.chevaux-section .section-title {
    color: var(--kaki-dark);
}

.chevaux-section .section-sub {
    color: var(--text-light);
}

.chevaux-section .section-eyebrow {
    color: var(--terra-cotta);
}

.chevaux-section .divider {
    background: linear-gradient(to right, var(--terra-cotta), var(--vert-kaki));
}

.moodboard-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.moodboard-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 160px);
    gap: 15px;
}

.mb-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
    transition: transform .4s ease, box-shadow .4s ease;
    position: relative;
    cursor: crosshair;
}

.mb-item:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .25);
    z-index: 2;
}

.mb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.mb-item:hover img {
    transform: scale(1.08);
}

.mb-1 {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}

.mb-2 {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
}

.mb-3 {
    grid-column: 3 / 4;
    grid-row: 2 / 4;
}

.mb-4 {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
}

.mb-5 {
    grid-column: 2 / 3;
    grid-row: 3 / 4;
}

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

.moodboard-info h3 {
    font-size: 2.2rem;
    color: var(--kaki-dark);
    margin-bottom: 1.2rem;
    line-height: 1.2;
}

.moodboard-info p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.moodboard-tags {
    display: flex;
    gap: .8rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.moodboard-tags span {
    background: rgba(184, 92, 66, .1);
    border: 1px solid rgba(184, 92, 66, .3);
    color: var(--terra-cotta);
    padding: .4rem 1rem;
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
}

/* Chevaux — cards (page chevaux) */
.horse-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.horse-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .1);
    cursor: pointer;
}

.horse-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform .6s cubic-bezier(.25, 1, .5, 1);
}

.horse-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(45, 58, 47, .95), rgba(45, 58, 47, .5) 70%);
    display: flex;
    align-items: flex-end;
    padding: 25px;
    opacity: 0;
    transition: opacity .4s ease;
    text-align: center;
}

.horse-content-wrap {
    color: var(--creme);
    width: 100%;
    transform: translateY(50px);
    opacity: 0;
    transition: transform .5s cubic-bezier(.25, 1, .5, 1), opacity .4s ease;
}

.horse-trait {
    display: block;
    font-style: italic;
    color: var(--terra-cotta);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.horse-overlay h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--creme);
}

.horse-overlay p {
    font-size: .95rem;
    line-height: 1.4;
    opacity: .9;
}

.horse-card:hover .horse-overlay {
    opacity: 1;
}

.horse-card:hover .horse-content-wrap {
    transform: translateY(0);
    opacity: 1;
}

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

/* Troupeau bannière */
.troupeau-section {
    width: 100%;
    padding: 0;
    margin: 60px 0;
    overflow: hidden;
}

.troupeau-banner-container {
    width: 95%;
    height: 60vh;
    min-height: 350px;
    max-height: 550px;
    border-radius: 20px;
    margin: 0 auto;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(45, 58, 47, .15);
}

.troupeau-full-width {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 70%;
}

/* ===== ACCOMPAGNATRICE (VERSION SIMPLE & ÉPURÉE) ===== */
.accomp-section {
    padding: 6rem 0;
    background: var(--creme);
}

.accomp-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    /* L'image prend un peu moins de place que le texte */
    gap: 4rem;
    align-items: center;
}

/* --- Colonne de gauche (Image + Badge) --- */
.accomp-img-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.accomp-photo {
    width: 100%;
    max-width: 420px;
    height: auto;
    aspect-ratio: 4 / 5;
    /* Donne un joli format portrait automatique à la photo */
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.accomp-badge-simple {
    background: rgba(189, 84, 55, 0.08);
    /* Fond terra-cotta très léger */
    border: 1px solid rgba(189, 84, 55, 0.2);
    padding: 1.2rem 2rem;
    border-radius: 12px;
    text-align: center;
    width: 100%;
    max-width: 420px;
}

.accomp-badge-simple strong {
    display: block;
    font-family: var(--font-titre);
    font-size: 1.5rem;
    color: var(--kaki-dark);
    margin-bottom: 0.2rem;
}

.accomp-badge-simple span {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--terra-cotta);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* --- Colonne de droite (Textes) --- */
.accomp-role {
    color: var(--terra-cotta);
    font-size: .82rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: block;
}

.accomp-content h2 {
    font-size: 2.8rem;
    color: var(--kaki-dark);
    line-height: 1.15;
    margin-bottom: .4rem;
}

.accomp-story {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.valeurs-title {
    font-family: var(--font-titre);
    font-size: 1.45rem;
    color: var(--kaki-dark);
    margin: 1.8rem 0 1rem;
}

/* --- La liste numérotée --- */
.valeurs-list-numerotee {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.valeurs-list-numerotee li {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.4;
}

.valeurs-list-numerotee li span {
    width: 32px;
    height: 32px;
    background: var(--terra-cotta);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-titre);
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(189, 84, 55, 0.3);
}

/* ===== FAQ ===== */
.faq-section {
    padding: 5rem 0;
    background: var(--creme-dark);
}

.faq-wrap {
    display: flex;
    gap: 3rem;
    align-items: start;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.faq-item {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(44, 36, 22, .05);
    border: 1px solid rgba(85, 100, 25, .08);
}

.faq-q {
    padding: 1.2rem 1.5rem;
    font-family: var(--font-titre);
    font-size: 1.12rem;
    color: var(--kaki-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: color .3s;
}

.faq-q:hover {
    color: var(--terra-cotta);
}

.faq-arrow {
    width: 22px;
    height: 22px;
    background: var(--vert-kaki);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform .3s, background .3s;
}

.faq-arrow svg {
    width: 11px;
    fill: #fff;
}

.faq-item.open .faq-arrow {
    background: var(--terra-cotta);
    transform: rotate(180deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, padding .3s;
    font-size: .88rem;
    color: var(--text-light);
    line-height: 1.7;
    padding: 0 1.5rem;
}

.faq-a.open {
    max-height: 220px;
    padding: 0 1.5rem 1.2rem;
}

.faq-contact-box {
    background: var(--kaki-dark);
    border-radius: 20px;
    padding: 2.5rem;
    color: var(--creme);
}

.faq-contact-box h3 {
    font-size: 1.8rem;
    color: var(--creme);
    margin-bottom: .5rem;
}

.faq-contact-box p {
    color: rgba(247, 242, 233, .7);
    font-size: .9rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.faq-contact-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-link-item {
    display: flex;
    align-items: center;
    gap: .9rem;
    font-size: .95rem;
    color: rgba(247, 242, 233, .85);
}

.contact-link-item a {
    color: rgba(247, 242, 233, .85);
    transition: color .3s;
}

.contact-link-item a:hover {
    color: var(--terra-cotta);
}

.contact-link-item i {
    color: var(--terra-cotta);
    font-size: 1.1rem;
    width: 20px;
    flex-shrink: 0;
}

/* ===== CARTE ===== */
.map-section {
    padding: 5rem 0;
    background: var(--creme);
}

#leaflet-map {
    height: 420px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(44, 36, 22, .14);
    border: 2px solid #fff;
}

.map-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.map-badge {
    background: #fff;
    border-radius: 12px;
    padding: .75rem 1.2rem;
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: .85rem;
    color: var(--text-dark);
    box-shadow: 0 2px 12px rgba(44, 36, 22, .07);
    font-weight: 600;
}

.map-badge i {
    color: var(--terra-cotta);
    font-size: 1rem;
}

/* ===== AVIS ===== */
.reviews-section {
    padding: 6rem 0;
    background: var(--creme-dark);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.review-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 18px rgba(44, 36, 22, .07);
    position: relative;
    transition: transform .3s;
}

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

.review-card::before {
    content: '❝';
    position: absolute;
    top: 1.2rem;
    right: 1.5rem;
    font-size: 3rem;
    color: var(--creme-dark);
    font-family: serif;
    line-height: 1;
}

.review-stars {
    color: #F5A623;
    font-size: 1rem;
    margin-bottom: .8rem;
}

.review-text {
    font-size: .9rem;
    color: var(--text-light);
    line-height: 1.65;
    margin-bottom: 1.2rem;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: .8rem;
}

.review-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    background: linear-gradient(135deg, var(--terra-cotta), var(--terra-light));
    color: #fff;
    font-family: var(--font-titre);
    font-weight: 700;
    flex-shrink: 0;
}

.review-info .name {
    font-weight: 700;
    font-size: .88rem;
    color: var(--text-dark);
}

.review-info .date {
    font-size: .76rem;
    color: var(--text-light);
}

/* ===== FOOTER ===== */
footer {
    background: var(--text-dark);
    color: var(--creme);
    padding: 5rem 2rem 2rem;
}

.footer-inner {
    max-width: 1160px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand img {
    max-width: 150px;
    height: auto;
    margin-bottom: 1rem;
}

.footer-brand .brand-name {
    font-family: var(--font-titre);
    font-size: 2rem;
    color: var(--creme);
    margin-bottom: .5rem;
}

.footer-brand p {
    font-size: .88rem;
    color: rgba(247, 242, 233, .6);
    line-height: 1.7;
    max-width: 260px;
    margin-top: .5rem;
}

.footer-col h4 {
    font-size: 1rem;
    color: var(--creme);
    margin-bottom: 1.2rem;
    letter-spacing: .05em;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .6rem;
}

.footer-links a {
    font-size: .88rem;
    color: rgba(247, 242, 233, .65);
    transition: color .3s;
}

.footer-links a:hover {
    color: var(--terra-cotta);
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: .9rem;
}

.contact-item-f {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-size: .9rem;
    color: rgba(247, 242, 233, .75);
}

.contact-item-f a {
    color: rgba(247, 242, 233, .75);
    transition: color .3s;
}

.contact-item-f a:hover {
    color: var(--terra-cotta);
}

.contact-item-f i {
    color: var(--terra-cotta);
    font-size: 1.1rem;
    width: 18px;
    text-align: center;
    flex-shrink: 0;
}

.social-row {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--creme);
    font-size: 1.1rem;
    transition: all .3s;
}

.social-btn:hover {
    background: var(--terra-cotta);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: .78rem;
    color: rgba(247, 242, 233, .45);
}

.legal-links {
    display: flex;
    gap: .8rem;
    align-items: center;
}

.legal-links a {
    font-size: .78rem;
    color: rgba(247, 242, 233, .6);
    transition: color .3s ease;
}

.legal-links a:hover {
    color: var(--terra-cotta);
}

.legal-links .separator {
    color: rgba(247, 242, 233, .3);
    font-size: .8rem;
}

/* ===== FLOATING BTNS ===== */
.floating-btns {
    position: fixed;
    bottom: 28px;
    right: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.float-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.4rem;
    box-shadow: 0 4px 18px rgba(0, 0, 0, .22);
    transition: all .3s ease;
    opacity: 0;
    transform: scale(.7);
    pointer-events: none;
    border: none;
    cursor: pointer;
}

.float-btn.visible {
    opacity: 1;
    transform: scale(1);
    pointer-events: all;
}

.float-btn.whatsapp {
    background: #25D366;
}

.float-btn.phone {
    background: var(--vert-kaki);
}

.float-btn.top {
    background: var(--terra-cotta);
}

.float-btn:hover {
    transform: scale(1.12) !important;
    box-shadow: 0 8px 28px rgba(0, 0, 0, .3);
}

/* ===== PAGE MENTIONS LÉGALES ===== */
.page-wrap {
    margin-top: 78px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 5rem 2rem 6rem;
}

.page-title {
    font-family: var(--font-titre);
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: var(--kaki-dark);
    margin-bottom: .4rem;
}

.page-subtitle {
    font-size: .8rem;
    color: var(--text-light);
    letter-spacing: .15em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 2.5rem;
    display: block;
}

.ml-block {
    margin-bottom: 2.8rem;
    padding-bottom: 2.8rem;
    border-bottom: 1px solid rgba(85, 100, 25, .1);
}

.ml-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.ml-block h2 {
    font-family: var(--font-titre);
    font-size: 1.35rem;
    color: var(--terra-cotta);
    font-weight: 400;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: .6rem;
}

.ml-block h2 .num {
    width: 28px;
    height: 28px;
    background: var(--terra-cotta);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.ml-block p {
    font-size: .95rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: .7rem;
}

.ml-block p:last-child {
    margin-bottom: 0;
}

.ml-block strong {
    color: var(--text-dark);
    font-weight: 700;
}

.info-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: .4rem 1.2rem;
    font-size: .95rem;
    color: var(--text-light);
    line-height: 1.7;
}

.info-grid .label {
    font-weight: 700;
    color: var(--text-dark);
    white-space: nowrap;
}

/* ===== PAGE INTÉRIEURE ===== */
.page-main {
    padding-top: 100px;
}

/* ===== INFO BADGES (page chevaux) ===== */
.info-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.info-badges div {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-weight: 600;
    color: var(--vert-kaki);
    font-size: .95rem;
}

.info-badges i {
    color: var(--terra-cotta);
}

/* ===== LIGHTBOX (GALERIE D'IMAGES) ===== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(30, 22, 10, 0.95);
    /* Fond très sombre et chaleureux */
    z-index: 9999;
    /* Par dessus TOUT le reste */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    /* Caché par défaut */
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    /* Apparaît quand on ajoute la classe 'active' en JS */
    pointer-events: all;
}

.lightbox img {
    max-width: 90%;
    max-height: 85vh;
    /* S'adapte à l'écran sans le dépasser */
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    object-fit: contain;
    transition: transform 0.3s;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 3.5rem;
    cursor: pointer;
    transition: color 0.3s;
    line-height: 1;
}

.lightbox-close:hover {
    color: var(--terra-cotta);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    font-size: 2rem;
    width: 60px;
    height: 60px;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--terra-cotta);
    transform: translateY(-50%) scale(1.1);
}

/* Modifie un peu le curseur sur le moodboard pour faire comprendre qu'on peut cliquer */
.mb-item {
    cursor: zoom-in;
    /* Change la petite croix en loupe ! */
}

/* =====================================================
   PAGE BALADES DÉTAILLÉES (NOUVEAU DESIGN)
   ===================================================== */
.itineraires-wrapper {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.itine-card {
    display: flex;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(44, 36, 22, 0.08);
    border: 1px solid rgba(85, 100, 25, 0.05);
}

.itine-image {
    flex: 0 0 40%;
    /* L'image prend 40% de la largeur */
    position: relative;
    min-height: 350px;
}

.itine-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.itine-price {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--terra-cotta);
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    font-family: var(--font-titre);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    box-shadow: 0 5px 15px rgba(184, 92, 66, 0.4);
}

.itine-price span {
    font-family: var(--font-texte);
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.9;
}

.itine-content {
    flex: 0 0 60%;
    /* Le texte prend 60% */
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.itine-tag {
    display: inline-block;
    background: rgba(119, 139, 38, 0.15);
    color: var(--vert-kaki);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.itine-header h2 {
    font-size: 2.2rem;
    color: var(--kaki-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.itine-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--creme-dark);
}

.itine-meta span {
    font-size: 0.95rem;
    color: var(--terra-cotta);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.itine-body p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.itine-body h4 {
    font-family: var(--font-texte);
    font-size: 1.1rem;
    color: var(--kaki-dark);
    margin-bottom: 1rem;
}

.itine-body ul {
    list-style: none;
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.itine-body ul li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.itine-body ul li i {
    color: var(--vert-kaki);
    font-size: 1rem;
    margin-top: 0.2rem;
}

/* Responsive pour les tablettes et téléphones */
@media(max-width: 960px) {
    .itine-card {
        flex-direction: column;
    }

    .itine-image {
        flex: none;
        height: 250px;
        min-height: auto;
    }

    .itine-content {
        flex: none;
        padding: 2rem;
    }
}

@media(max-width: 600px) {
    .itine-meta {
        flex-direction: column;
        gap: 0.8rem;
    }

    .itine-content {
        padding: 1.5rem;
    }
}

@media(max-width: 768px) {

    .lightbox-prev,
    .lightbox-next {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .lightbox-close {
        right: 20px;
        font-size: 2.5rem;
    }
}

/* ===== RESPONSIVE ===== */
@media(max-width: 960px) {
    .accomp-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .accomp-img-placeholder {
        height: 320px;
    }

    .accomp-badge {
        left: .5rem;
        bottom: 1rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .faq-wrap {
        grid-template-columns: 1fr;
    }

    .moodboard-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .moodboard-grid {
        grid-template-rows: repeat(3, 130px);
    }

    .moodboard-info {
        text-align: center;
    }

    .moodboard-tags {
        justify-content: center;
    }

    .balades-list {
        gap: 4rem;
    }

    .balade-row,
    .balade-row:nth-child(even) {
        flex-direction: column;
        gap: 2.5rem;
        text-align: center;
    }

    .balade-meta {
        justify-content: center;
    }

    .balade-price-badge,
    .balade-row:nth-child(even) .balade-price-badge {
        right: 10px;
        left: auto;
        bottom: -15px;
        width: 90px;
        height: 90px;
        font-size: 1.8rem;
    }

    .horse-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

/* HERO */

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
    transition: transform 8s ease;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(61, 74, 18, .68) 0%, rgba(44, 36, 22, .42) 55%, rgba(189, 84, 55, .28) 100%);
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 5rem;
    max-width: 1100px;
    width: 100%;
    padding: 4rem 2rem;
    color: white;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-family: var(--font-titre);
    font-size: clamp(2.8rem, 6vw, 4.8rem);
    font-weight: 400;
    line-height: 1.1;
    color: #fff;
    text-shadow: 0 2px 28px rgba(0, 0, 0, .32);
    margin-bottom: 1.1rem;
}

.hero-text h1 span {
    color: #E8C9A0;
    font-style: italic;
}

.hero-sub {
    font-family: var(--f-body);
    font-size: 1.05rem;
    color: rgba(255, 255, 255, .82);
    line-height: 1.65;
    max-width: 460px;
    font-weight: 400;
}


/* HISTOIRE */
.histoire {
    padding: 6rem 0;
    background: var(--creme);
}

.histoire-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
@media(max-width:1000px){
    .histoire-grid{
        display:flex;
        flex-direction: column;
    }
}
.photo-wrap {
    position: relative;
}

.photo-box {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(44, 36, 22, .18);
    background: linear-gradient(135deg, #C8A87A 0%, var(--terra) 50%, var(--kaki) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
}

.photo-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-badge {
    position: absolute;
    bottom: 2rem;
    left: -1.5rem;
    background: var(--terra);
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: 16px;
    font-family: var(--f-title);
    font-size: 1.05rem;
    box-shadow: 0 8px 25px rgba(189, 84, 55, .4);
    line-height: 1.4;
}

.photo-badge small {
    display: block;
    font-family: var(--f-body);
    font-size: .65rem;
    opacity: .85;
    letter-spacing: .1em;
    text-transform: uppercase;
    font-weight: 600;
}

.histoire-text .role {
    font-family: var(--f-body);
    color: var(--terra);
    font-size: .78rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 1.4rem;
    display: block;
}

.histoire-text h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: var(--kaki-dark);
    line-height: 1.15;
    margin-bottom: .3rem;
}

.histoire-text p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.85;
    margin-bottom: 1.1rem;
    font-weight: 400;
}

.story-quote {
    background: rgba(189, 84, 55, .06);
    border-left: 3px solid var(--terra);
    border-radius: 0 14px 14px 0;
    padding: 1.1rem 1.4rem;
    margin: 1.5rem 0;
    font-style: italic;
    font-family: var(--f-title);
    font-size: 1.15rem;
    color: var(--kaki-dark);
    line-height: 1.5;
}


/* VALEURS */
.valeurs {
    padding: 6rem 0;
    background: var(--kaki-dark);
}

.valeurs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.2rem;
}

.valeur-card {
    background: rgba(247, 242, 233, .07);
    border: 1px solid rgba(247, 242, 233, .13);
    border-radius: 20px;
    padding: 2rem 1.4rem;
    text-align: center;
    transition: all .35s ease;
    position: relative;
    overflow: hidden;
    cursor: default;
}

.valeur-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(189, 84, 55, .1), transparent);
    opacity: 0;
    transition: opacity .35s;
}

.valeur-card:hover {
    transform: translateY(-6px);
    border-color: rgba(189, 84, 55, .42);
    background: rgba(247, 242, 233, .1);
}

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

.v-emoji {
    font-size: 2.2rem;
    margin-bottom: .8rem;
    display: block;
}

.valeur-card h3 {
    font-family: var(--f-title);
    font-size: 1.4rem;
    color: var(--creme);
    margin-bottom: .6rem;
    font-weight: 400;
}

.valeur-card p {
    font-family: var(--f-body);
    font-size: .84rem;
    color: rgba(247, 242, 233, .65);
    line-height: 1.65;
    font-weight: 400;
}

.v-quote {
    font-style: italic;
    font-family: var(--f-title);
    font-size: .95rem;
    color: #C8A87A;
    margin-top: .8rem;
    padding-top: .8rem;
    border-top: 1px solid rgba(200, 168, 122, .2);
}


/* 5 RAISONS */
.raisons {
    padding: 6rem 0;
    background: var(--creme-dark);
}

.raisons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.3rem;
}

.raison-card {
    background: white;
    border-radius: 18px;
    padding: 1.5rem 1.5rem 1.8rem;
    text-align: center;
    box-shadow: 0 4px 16px rgba(44, 36, 22, .06);
    transition: transform .3s ease, box-shadow .3s ease;
}

.raison-card h3 {
    font-family: var(--f-title);
    font-size: 1.2rem;
    color: var(--kaki-dark);
    margin-bottom: .8rem;
    /* ← plus d'espace entre titre et texte */
    font-weight: 700;
    /* ← titre en gras */
}

@media(max-width: 900px) {
    .gift-wrapper {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .gift-block-title {
        padding-right: 0;
        padding-bottom: 2rem;
        border-right: none;
        border-bottom: 1px solid rgba(61, 74, 18, .15);
    }

    .gift-steps {
        padding: 2rem 0;
        border-right: none;
        border-bottom: 1px solid rgba(61, 74, 18, .15);
        gap: 1.5rem;
    }

    .gift-block-cta {
        padding-left: 0;
    }

    .gift-title {
        white-space: normal;
    }

    .step:not(:last-child)::after {
        display: none;
    }
}

@media(max-width: 768px) {
    nav {
        padding: 0 1.5rem;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-badges {
        display: none;
    }

    .hero-content {
        top: calc(78px + 2rem);
        left: 2rem;
        max-width: calc(100% - 4rem);
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }



    .hero-slogan {
        font-size: 2rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .legal-links {
        justify-content: center;
    }

    .cinq-raisons {
        grid-template-columns: 1fr;
    }

    .troupeau-banner-container {
        width: 100%;
        border-radius: 0;
    }

    .troupeau-full-width {
        object-position: 50% 75%;
    }

    .horse-grid {
        grid-template-columns: 1fr;
    }

    .horse-overlay {
        opacity: 1;
        background: rgba(0, 0, 0, .4);
        align-items: flex-end;
        padding: 15px;
    }

    .horse-content-wrap {
        transform: none;
        opacity: 1;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: .2rem;
    }

    .info-grid .label {
        margin-top: .5rem;
    }
}

@media(max-width: 600px) {
    .moodboard-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .mb-1 {
        grid-column: 1 / 3;
        grid-row: 1;
        height: 250px;
    }

    .mb-2 {
        grid-column: 1 / 2;
        grid-row: 2;
        height: 150px;
    }

    .mb-3 {
        grid-column: 2 / 3;
        grid-row: 2;
        height: 150px;
    }

    .mb-4 {
        grid-column: 1 / 2;
        grid-row: 3;
        height: 150px;
    }

    .mb-5 {
        grid-column: 2 / 3;
        grid-row: 3;
        height: 150px;
    }
}

@media(max-width: 480px) {
    .balades-grid {
        grid-template-columns: 1fr;
    }
}


.page-main {
    padding-top: 100px;
}

.reveal,
.horse-card {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}



.page-main {
    padding-bottom: 80px;
}




/*Politique confidentialite */

/* HERO SIMPLE */
.page-hero {
    margin-top: 20px;
    background: var(--kaki-dark);
    padding: 4rem 2rem 3.5rem;
    min-height: 62vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;


    overflow: hidden;

}
.page-hero h1 {
    font-family: var(--f-title);
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: var(--creme);
    font-weight: 400;
    margin-bottom: .5rem;
}
.page-hero .sub {
    font-family: var(--f-body);
    font-size: .82rem;
    color: rgba(247,242,233,.5);
    letter-spacing: .15em;
    text-transform: uppercase;
    font-weight: 600;
}
.page-hero .divider {
    width: 48px; height: 2px;
    background: linear-gradient(to right, var(--terra), #C8A87A);
    margin: 1.2rem auto 0;
    border-radius: 2px;
}

/* CONTENU */
.page-wrap {
    max-width: 800px;
    margin: 0 auto;
    padding: 4.5rem 2rem 6rem;
}

/* INTRO BOX */
.intro-box {
    background: rgba(189,84,55,.06);
    border-left: 3px solid var(--terra);
    border-radius: 0 14px 14px 0;
    padding: 1.2rem 1.6rem;
    margin-bottom: 3.5rem;
    font-family: var(--f-body);
    font-size: .95rem;
    color: var(--text-light);
    line-height: 1.75;
}

/* BLOCS */
.ml-block {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(85,100,25,.1);
}
.ml-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.ml-block h2 {
    font-family: var(--f-title);
    font-size: 1.35rem;
    color: var(--terra);
    font-weight: 400;
    margin-bottom: 1.1rem;
    display: flex;
    align-items: center;
    gap: .65rem;
}

.ml-block h2 .num {
    width: 28px; height: 28px;
    background: var(--terra);
    color: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--f-body);
    font-size: .72rem;
    font-weight: 700;
    flex-shrink: 0;
}

.ml-block p {
    font-size: .95rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: .8rem;
}
.ml-block p:last-child { margin-bottom: 0; }
.ml-block strong { color: var(--text-dark); font-weight: 700; }

/* LISTE */
.ml-list {
    list-style: none;
    margin: .8rem 0 1rem;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}
.ml-list li {
    font-family: var(--f-body);
    font-size: .95rem;
    color: var(--text-light);
    padding-left: 1.4rem;
    position: relative;
    line-height: 1.65;
}
.ml-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--terra);
    font-weight: 700;
    font-size: .8rem;
    top: .1rem;
}

/* TABLE DROITS */
.droits-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: .6rem 1.5rem;
    margin: 1rem 0;
}
.droits-grid .droit-label {
    font-family: var(--f-body);
    font-size: .88rem;
    font-weight: 700;
    color: var(--kaki-dark);
    white-space: nowrap;
    padding: .4rem 0;
}
.droits-grid .droit-desc {
    font-family: var(--f-body);
    font-size: .88rem;
    color: var(--text-light);
    padding: .4rem 0;
    line-height: 1.6;
    border-bottom: 1px solid rgba(85,100,25,.07);
}

/* CONTACT BOX */
.contact-box {
    background: var(--kaki-dark);
    border-radius: 18px;
    padding: 2rem 2.2rem;
    margin-top: 1.2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.contact-box .icon { font-size: 2rem; flex-shrink: 0; }
.contact-box h3 {
    font-family: var(--f-title);
    font-size: 1.2rem;
    color: var(--creme);
    font-weight: 400;
    margin-bottom: .4rem;
}
.contact-box p {
    font-family: var(--f-body);
    font-size: .88rem;
    color: rgba(247,242,233,.65);
    line-height: 1.65;
    margin-bottom: 0;
}
.contact-box a { color: #C8A87A; }
.contact-box a:hover { color: var(--terra); }

/* ===== GALERIE BALADES ===== */
.galerie-section { padding: 5rem 0 3rem; }

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

.galerie-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: zoom-in;
    aspect-ratio: 4 / 3;
}

.galerie-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}

.galerie-item:hover img { transform: scale(1.06); }

.galerie-overlay {
    position: absolute;
    inset: 0;
    background: rgba(61, 74, 18, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .3s ease;
}

.galerie-overlay i {
    color: #fff;
    font-size: 1.6rem;
    opacity: 0;
    transform: scale(0.7);
    transition: opacity .3s, transform .3s;
}

.galerie-item:hover .galerie-overlay { background: rgba(61, 74, 18, 0.35); }
.galerie-item:hover .galerie-overlay i { opacity: 1; transform: scale(1); }

/* Overlay "+X" sur la dernière image visible */
.galerie-item.more-overlay .galerie-overlay {
    background: rgba(30, 20, 10, 0.68);
}
.galerie-item.more-overlay .galerie-overlay i { display: none; }
.galerie-more-count {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    pointer-events: none;
}
.galerie-more-count span:first-child {
    font-family: var(--font-titre);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}
.galerie-more-count span:last-child {
    font-size: .85rem;
    font-weight: 600;
    opacity: .85;
    letter-spacing: .05em;
    text-transform: uppercase;
    margin-top: .3rem;
}

@media(max-width: 768px) {
    .galerie-grid { grid-template-columns: repeat(2, 1fr); }
}
@media(max-width: 480px) {
    .galerie-grid { grid-template-columns: 1fr 1fr; gap: 6px; }
}

