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

:root {
    /* Dark equestrian palette */
    --c-deep: #0c1510;
    --c-bg: #111d16;
    --c-card: #172420;
    --c-card-hover: #1e302a;
    --c-surface: #1f3328;

    /* Equestrian accents */
    --c-gold: #c8a96e;
    --c-gold-light: #e0c98e;
    --c-gold-dim: rgba(200, 169, 110, 0.12);
    --c-leather: #a67c52;
    --c-leather-light: #c9a47a;
    --c-green: #4a9e6e;
    --c-green-deep: #2d6b4a;
    --c-saddle: #6b4226;

    /* Text */
    --c-cream: #f5f0e8;
    --c-text: #d8d0c4;
    --c-muted: #998e7a;
    --c-dim: #635a4c;

    --c-border: rgba(200, 169, 110, 0.1);
    --c-border-light: rgba(255, 255, 255, 0.05);

    /* Gradients */
    --grad-gold: linear-gradient(135deg, #b8944e, #d4b878);
    --grad-hero: linear-gradient(160deg, rgba(12, 21, 16, 0.50) 0%, rgba(35, 20, 10, 0.30) 100%);

    /* Type */
    --f-heading: 'Playfair Display', Georgia, serif;
    --f-body: 'Inter', -apple-system, sans-serif;

    /* Layout */
    --max-w: 1180px;
    --section-py: clamp(50px, 7vw, 70px);
    --radius: 18px;
    --radius-sm: 12px;
    --trans: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

body {
    font-family: var(--f-body);
    background: var(--c-deep);
    color: var(--c-text);
    line-height: 1.75;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: var(--c-gold);
    text-decoration: none;
    transition: color var(--trans);
}

a:hover {
    color: var(--c-gold-light);
}

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

.hide-mob {
    display: inline;
}

/* ===== EQUESTRIAN BADGE ===== */
.eq-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 16px;
    background: var(--c-gold-dim);
    border: 1px solid rgba(200, 169, 110, 0.18);
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--c-gold);
    margin-bottom: 16px;
}

.eq-badge svg {
    width: 14px;
    height: 14px;
}

/* ===== SECTION HEADERS ===== */
.section-head {
    text-align: center;
    max-width: 660px;
    margin: 0 auto 56px;
}

h2 {
    font-family: var(--f-heading);
    font-size: clamp(1.9rem, 4vw, 2.9rem);
    color: var(--c-cream);
    line-height: 1.2;
    margin-bottom: 18px;
}

h2 em {
    font-style: italic;
    color: var(--c-gold);
}

.section-sub {
    color: var(--c-muted);
    font-size: 1.02rem;
    line-height: 1.8;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: 50px;
    font-family: var(--f-body);
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--trans);
    border: none;
    text-decoration: none;
}

.btn svg {
    width: 17px;
    height: 17px;
}

.btn-gold {
    background: var(--grad-gold);
    color: var(--c-deep);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(200, 169, 110, 0.3);
    color: var(--c-deep);
}

.btn-ghost {
    background: transparent;
    color: var(--c-cream);
    border: 1.5px solid rgba(200, 169, 110, 0.35);
}

.btn-ghost:hover {
    border-color: var(--c-gold);
    background: rgba(200, 169, 110, 0.06);
    color: var(--c-gold);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 12px 0;
    transition: all 0.4s ease;
}


.navbar.scrolled {
    padding: 6px 0;
    background: rgba(17, 29, 22, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--c-border);
}

.nav-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--c-cream);
}
.nav-logo img {
    height: 56px;
    width: auto;
    max-width: 180px; /* pour forcer un format plus horizontal */
}

.nav-logo:hover {
    color: var(--c-cream);
}

.logo-badge {
    width: 40px;
    height: 40px;
    /*background: var(--c-gold-dim);*/
    border: 1px solid rgba(200, 169, 110, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-gold);
}

.horseshoe-icon {
    transition: transform 0.4s ease;
}

.nav-logo:hover .horseshoe-icon {
    transform: rotate(15deg);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    margin-left: 4px; /* ajustez selon le rendu */
}

.logo-name {
    font-family: var(--f-heading);
    font-size: 1.1rem;
}

.logo-tagline {
    font-size: 0.62rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--c-muted);
}

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

.nav-link {
    color: var(--c-muted);
    font-size: 0.86rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 50px;
    transition: all var(--trans);
}

.nav-link:hover,
.nav-link.active {
    color: var(--c-cream);
    background: rgba(255, 255, 255, 0.05);
}

.nav-link.nav-cta {
    background: var(--grad-gold);
    color: var(--c-deep);
    font-weight: 600;
    margin-left: 8px;
}

.nav-link.nav-cta:hover {
    box-shadow: 0 4px 20px rgba(200, 169, 110, 0.3);
    color: var(--c-deep);
}

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

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--c-cream);
    border-radius: 2px;
    transition: all 0.3s;
}

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

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

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

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

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

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--grad-hero);
    z-index: 1;
}

.hero-deco {
    position: absolute;
    z-index: 2;
    pointer-events: none;
}

.hero-deco-1 {
    top: 10%;
    right: 8%;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: 140px 24px 60px;
    max-width: var(--max-w);
    margin: 0 auto;
    width: 100%;
}

.hero-location {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 18px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
}

.hero-title {
    font-family: var(--f-heading);
    line-height: 1.08;
    margin-bottom: 20px;
}

.hero-line-1 {
    display: block;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--c-cream);
}

.hero-line-2 {
    display: block;
    font-size: clamp(3rem, 8vw, 6rem);
    background: var(--grad-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(0.95rem, 1.6vw, 1.15rem);
    color: rgba(255, 255, 255, 0.65);
    max-width: 540px;
    line-height: 1.8;
    margin-bottom: 32px;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 3;
    padding: 0 24px 32px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    max-width: var(--max-w);
    left: 50%;
    transform: translateX(-50%);
}

.hero-stats {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    padding: 16px 28px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
}

.hstat {
    text-align: center;
}

.hstat-val {
    display: block;
    font-family: var(--f-heading);
    font-size: 1.3rem;
    color: #fff;
    line-height: 1.2;
}

.hstat-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hstat-sep {
    width: 1px;
    height: 32px;
    background: rgba(255, 255, 255, 0.15);
}

.hero-scroll-hint {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: var(--c-muted);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-anim {
    width: 1px;
    height: 36px;
    background: linear-gradient(to bottom, var(--c-gold), transparent);
    animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.3
    }

    50% {
        opacity: 1
    }
}

/* ===== INTRO ===== */
.intro {
    padding: var(--section-py) 0;
    background: var(--c-bg);
}

.intro-layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 56px;
    align-items: center;
}

.photo-stack {
    position: relative;
}

.ps-back {
    width: 70%;
    height: 350px;
    object-fit: cover;
    border-radius: var(--radius);
    border: 3px solid var(--c-card);
}

.ps-front {
    position: absolute;
    bottom: -24px;
    right: 0;
    width: 60%;
    height: 280px;
    object-fit: cover;
    border-radius: var(--radius);
    border: 3px solid var(--c-card);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.intro-text h2 {
    margin-bottom: 18px;
}

.intro-text p {
    color: var(--c-muted);
    margin-bottom: 12px;
    font-size: 1rem;
}

.eq-values {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.eq-val {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--c-cream);
    transition: all var(--trans);
}

.eq-val:hover {
    border-color: rgba(200, 169, 110, 0.25);
    transform: translateY(-2px);
}

.eq-val svg {
    width: 16px;
    height: 16px;
    color: var(--c-gold);
}

/* ===== SERVICES ===== */
.services {
    padding: var(--section-py) 0;
    background: var(--c-deep);
}

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

.svc-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--trans);
}

.svc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    border-color: rgba(200, 169, 110, 0.15);
}

.svc-img-wrap {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.svc-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.svc-card:hover .svc-img-wrap img {
    transform: scale(1.05);
}

.svc-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, var(--c-card));
}

.svc-body {
    padding: 24px 28px 28px;
}

.svc-icon {
    width: 48px;
    height: 48px;
    background: var(--c-gold-dim);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    margin-top: -40px;
    position: relative;
    z-index: 2;
    color: var(--c-gold);
    border: 2px solid var(--c-card);
}

.svc-icon svg {
    width: 22px;
    height: 22px;
}

.svc-icon-accent {
    background: rgba(166, 124, 82, 0.15);
    color: var(--c-leather-light);
}

.svc-card h3 {
    font-family: var(--f-heading);
    font-size: 1.15rem;
    color: var(--c-cream);
    margin-bottom: 8px;
}

.svc-card p {
    color: var(--c-muted);
    font-size: 0.88rem;
    line-height: 1.7;
}

.svc-card-highlight {
    background: linear-gradient(135deg, rgba(107, 66, 38, 0.3), var(--c-card));
    border-color: rgba(166, 124, 82, 0.2);
    position: relative;
    overflow: hidden;
}

.svc-highlight-art {
    position: absolute;
    bottom: -10px;
    right: -10px;
    color: var(--c-leather);
    pointer-events: none;
}

.svc-card-highlight .svc-body {
    padding-top: 32px;
}

/* ===== QUOTE ===== */
.quote-section {
    padding: 60px 0;
    background: var(--c-bg);
    border-top: 1px solid var(--c-border);
    border-bottom: 1px solid var(--c-border);
}

.quote-block {
    display: flex;
    align-items: center;
    gap: 28px;
    max-width: 780px;
    margin: 0 auto;
    padding: 36px 44px;
    background: rgba(200, 169, 110, 0.04);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
}

.quote-deco {
    flex-shrink: 0;
    color: var(--c-gold);
    opacity: 0.5;
}

.quote-block blockquote p {
    font-family: var(--f-heading);
    font-size: clamp(1.1rem, 2vw, 1.45rem);
    font-style: italic;
    color: var(--c-cream);
    line-height: 1.6;
    margin-bottom: 10px;
}

.quote-block cite {
    font-style: normal;
    font-size: 0.85rem;
    color: var(--c-gold);
    font-weight: 500;
}

/* ===== PENSION ===== */
.pension {
    padding: var(--section-py) 0;
    background: var(--c-deep);
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 32px;
}

.fac-card {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    padding: 28px 22px;
    text-align: center;
    transition: all var(--trans);
}

.fac-card:hover {
    transform: translateY(-4px);
    border-color: rgba(200, 169, 110, 0.2);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.fac-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
    color: var(--c-green);
}

.fac-top svg {
    width: 28px;
    height: 28px;
}

.fac-measure {
    display: inline-block;
    padding: 3px 12px;
    background: rgba(74, 158, 110, 0.1);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--c-green);
}

.fac-card h4 {
    font-family: var(--f-heading);
    font-size: 1rem;
    color: var(--c-cream);
    margin-bottom: 6px;
}

.fac-card p {
    font-size: 0.82rem;
    color: var(--c-muted);
    line-height: 1.6;
}

.fac-card {
    position: relative;
    overflow: hidden; /* déjà présent normalement */
}

.fac-hover-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
    border-radius: var(--radius-sm);
}

.fac-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(12, 21, 16, 0.45);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.fac-card:hover .fac-hover-img,
.fac-card:hover::after {
    opacity: 1;
}

/* Le contenu passe au-dessus de l'image */
.fac-card .fac-top,
.fac-card h4,
.fac-card p,
.fac-card .fac-measure {
    position: relative;
    z-index: 2;
}

.pension-note {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 24px;
    background: rgba(166, 124, 82, 0.06);
    border: 1px solid rgba(166, 124, 82, 0.15);
    border-radius: var(--radius-sm);
}

.pension-note svg {
    width: 20px;
    height: 20px;
    color: var(--c-leather-light);
    flex-shrink: 0;
}

.pension-note p {
    font-size: 0.9rem;
    color: var(--c-text);
}

/* ===== CENTRE ===== */
.centre {
    padding: var(--section-py) 0;
    background: var(--c-bg);
}

.centre-layout {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 52px;
    align-items: center;
}

.centre-img-side {
    position: relative;
}
.centre-img-side > img {
    width: 100%;
    height: 300px; /* moins haut = moins de rognage */
    object-fit: cover;
}
/*
.centre-img-side>img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
}*/

.centre-img-badge {
    position: absolute;
    bottom: -14px;
    left: -14px;
    background: var(--grad-gold);
    color: var(--c-deep);
    padding: 14px 22px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    line-height: 1.3;
    box-shadow: 0 8px 24px rgba(200, 169, 110, 0.25);
}

.cib-emoji {
    font-size: 1.6rem;
}

.centre-text p {
    color: var(--c-muted);
    margin-bottom: 24px;
    font-size: 1rem;
}

.cours-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cc {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 18px;
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    transition: all var(--trans);
}

.cc:hover {
    border-color: rgba(200, 169, 110, 0.2);
    transform: translateX(5px);
}

.cc-age {
    width: 46px;
    height: 46px;
    background: rgba(200, 169, 110, 0.1);
    border: 1px solid rgba(200, 169, 110, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.78rem;
    color: var(--c-gold);
    flex-shrink: 0;
}

.cc h4 {
    font-family: var(--f-heading);
    font-size: 0.95rem;
    color: var(--c-cream);
    margin-bottom: 3px;
}

.cc p {
    font-size: 0.82rem;
    color: var(--c-muted);
    margin: 0;
    line-height: 1.6;
}

/* ===== ASSOCIATION ===== */
.association {
    padding: var(--section-py) 0;
    background: var(--c-deep);
}

.asso-content {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
    align-items: start;
}

.asso-desc p {
    color: var(--c-muted);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

.asso-h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--f-heading);
    font-size: 1rem;
    color: var(--c-cream);
    margin-bottom: 14px;
}

.asso-h4 svg {
    width: 18px;
    height: 18px;
    color: var(--c-gold);
}

.event-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.echip {
    padding: 8px 16px;
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--c-text);
    transition: all var(--trans);
}

.echip:hover {
    border-color: rgba(200, 169, 110, 0.25);
    background: var(--c-card-hover);
    transform: translateY(-2px);
}

.join-card {
    background: var(--c-card);
    border: 1px solid rgba(200, 169, 110, 0.15);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
}

.join-horseshoe {
    color: var(--c-gold);
    margin-bottom: 12px;
}

.join-card h3 {
    font-family: var(--f-heading);
    font-size: 1.3rem;
    color: var(--c-cream);
    margin-bottom: 10px;
}

.join-card>p {
    color: var(--c-muted);
    font-size: 0.9rem;
}

.join-list {
    list-style: none;
    text-align: left;
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.join-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--c-text);
}

.join-list svg {
    width: 16px;
    height: 16px;
    color: var(--c-green);
    flex-shrink: 0;
}

.bureau-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
}

.bureau-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 18px;
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
}

.bureau-role {
    color: var(--c-muted);
    font-weight: 600;
}

.bureau-name {
    color: var(--c-cream);
}
.asso-right {
    display: flex;
    flex-direction: column;
}

/* ===== TARIFS ===== */
.tarifs {
    padding: var(--section-py) 0;
    background: var(--c-bg);
}

.tarifs-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: start;
}

.tcol {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--trans);
}

.tcol:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.tcol-featured {
    border: 2px solid var(--c-gold);
    box-shadow: 0 10px 40px rgba(200, 169, 110, 0.08);
}

.tcol-head {
    padding: 24px 24px 16px;
    text-align: center;
    border-bottom: 1px solid var(--c-border);
    position: relative;
}

.tcol-head svg {
    width: 24px;
    height: 24px;
    margin-bottom: 8px;
}

.tcol-head h3 {
    font-family: var(--f-heading);
    font-size: 1.15rem;
    color: var(--c-cream);
}

.tcol-green svg {
    color: var(--c-green);
}

.tcol-gold svg {
    color: var(--c-gold);
}

.tcol-warm svg {
    color: var(--c-leather-light);
}

.tcol-pop {
    display: inline-block;
    margin-top: 8px;
    padding: 3px 14px;
    background: var(--c-gold-dim);
    border: 1px solid rgba(200, 169, 110, 0.2);
    border-radius: 50px;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--c-gold);
}

.tcol-body {
    list-style: none;
    padding: 8px 0;
}

.tcol-body li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 24px;
    border-bottom: 1px solid var(--c-border-light);
    font-size: 0.86rem;
    transition: background var(--trans);
}

.tcol-body li:last-child {
    border-bottom: none;
}

.tcol-body li:hover {
    background: rgba(200, 169, 110, 0.03);
}

.tcol-body li span {
    color: var(--c-text);
}

.tcol-body li strong {
    color: var(--c-gold);
    font-weight: 700;
    white-space: nowrap;
}

.tcol-body li strong small {
    font-weight: 400;
    font-size: 0.76rem;
    color: var(--c-muted);
}

.tcol-sep {
    height: 0 !important;
    padding: 0 !important;
    border-bottom: 2px dashed var(--c-border) !important;
}

.tcol-note {
    padding: 16px 24px;
    border-top: 1px solid var(--c-border-light);
    color: var(--c-muted);
    font-size: 0.82rem;
    text-align: center;
}

/* ===== CONTACT ===== */
.contact {
    padding: var(--section-py) 0;
    background: var(--c-deep);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.contact-intro {
    color: var(--c-muted);
    margin-bottom: 28px;
    font-size: 0.95rem;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
}

.ccard {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 16px 18px;
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
}

.ccard-icon {
    width: 44px;
    height: 44px;
    background: var(--c-gold-dim);
    border: 1px solid rgba(200, 169, 110, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--c-gold);
}

.ccard-icon svg {
    width: 18px;
    height: 18px;
}

.ccard strong {
    display: block;
    font-size: 0.75rem;
    color: var(--c-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ccard span,
.ccard a {
    color: var(--c-cream);
    font-size: 0.9rem;
}

.ccard a:hover {
    color: var(--c-gold);
}

.map-wrap {
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--c-border);
}

/* Contact form */
.form-panel {
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 36px;
}

.form-panel h3 {
    font-family: var(--f-heading);
    font-size: 1.25rem;
    color: var(--c-cream);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.form-panel h3 svg {
    width: 18px;
    height: 18px;
    color: var(--c-gold);
}

.fg {
    margin-bottom: 16px;
}

.fg label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--c-muted);
    margin-bottom: 6px;
}

.fg input,
.fg textarea,
.fg select {
    width: 100%;
    padding: 12px 16px;
    background: var(--c-bg);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    color: var(--c-text);
    font-family: var(--f-body);
    font-size: 0.9rem;
    transition: all var(--trans);
    outline: none;
}

.fg input::placeholder,
.fg textarea::placeholder {
    color: var(--c-dim);
}

.fg input:focus,
.fg textarea:focus,
.fg select:focus {
    border-color: var(--c-gold);
    box-shadow: 0 0 0 3px rgba(200, 169, 110, 0.08);
}

.fg textarea {
    resize: vertical;
    min-height: 100px;
}

.fg select {
    cursor: pointer;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--c-bg);
    border-top: 1px solid var(--c-border);
    padding: 52px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 44px;
    padding-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--c-gold);
    margin-bottom: 12px;
}

.footer-brand h3 {
    font-family: var(--f-heading);
    font-size: 1.1rem;
    color: var(--c-cream);
}

.footer-brand p {
    color: var(--c-muted);
    font-size: 0.85rem;
}

.footer-col h4 {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--c-gold);
    margin-bottom: 16px;
}

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

.footer-col li {
    margin-bottom: 8px;
    font-size: 0.85rem;
    color: var(--c-muted);
}

.footer-col a {
    color: var(--c-muted);
}

.footer-col a:hover {
    color: var(--c-cream);
}

.footer-bottom {
    border-top: 1px solid var(--c-border);
    padding: 18px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: var(--c-dim);
}

/* ===== ANIMATIONS ===== */
.reveal,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal {
    transform: translateY(28px);
}

.reveal-left {
    transform: translateX(-40px);
}

.reveal-right {
    transform: translateX(40px);
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
    opacity: 1;
    transform: translate(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width:1024px) {
    .svc-grid {
        grid-template-columns: 1fr;
    }

    .facilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tarifs-cols {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .centre-layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .centre-img-side>img {
        height: 350px;
    }

    .asso-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width:768px) {
    .nav-toggle {
        display: flex;
    }

    .hero-deco-1 {
        display: none;
    }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--c-bg);
        border-left: 1px solid var(--c-border);
        flex-direction: column;
        padding: 80px 28px 28px;
        gap: 4px;
        /*transition: right 0.4s ease;*/
		transition: none; /* désactive l'animation sur mobile */
        z-index: 1000;
    }

    .navbar.scrolled {
        padding: 8px 0;
    }

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

    .nav-link {
        padding: 12px 16px;
        font-size: 1rem;
        width: 100%;
    }

    .intro-layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .ps-front {
        width: 55%;
        height: 200px;
        bottom: -16px;
    }

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

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

    .hero-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .hero-scroll-hint {
        display: none;
    }

    .hero-stats {
        gap: 16px;
    }

    .hide-mob {
        display: none;
    }

    .quote-block {
        flex-direction: column;
        text-align: center;
        padding: 28px 24px;
    }
	
    .hero-content {
        padding-top: 70px;
    }
    .hero-bottom {
        position: relative;
        padding: 16px 24px;
        transform: none;
        left: auto;
    }
}

@media (max-width:480px) {
    .hero-btns {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        /*flex-direction: column;*/
        padding: 16px;
    }

    .hstat-sep {
        width: 50px;
        height: 1px;
    }

    .form-panel {
        padding: 24px;
    }
}

.zoomable {
    cursor: zoom-in;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.zoomable:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}

.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    cursor: zoom-out;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 95vw;
    max-height: 95vh;
    min-width: 60vw; /* force une taille minimum */
    width: auto;
    height: auto;
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 32px;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    line-height: 1;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.lightbox-close:hover {
    opacity: 1;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: var(--c-card);
    border: 1px solid var(--c-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-muted);
    transition: all var(--trans);
}

.footer-social a:hover {
    border-color: var(--c-gold);
    color: var(--c-gold);
    transform: translateY(-2px);
}

.form-success,
.form-error {
    padding: 14px 18px;
    margin-bottom: 25px;
    border-radius: 8px;
    font-size: 0.95rem;
    animation: fadeInMessage 0.4s ease-out;
}

.form-success {
    background: #e8f6ef;
    border-left: 5px solid #2ecc71;
    color: #1b5e20;
}

.form-error {
    background: #fdecea;
    border-left: 5px solid #e74c3c;
    color: #7f1d1d;
}

@keyframes fadeInMessage {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}