@font-face {
    font-family: 'Baloo 2';
    src: url('fonts/Baloo2-VariableFont_wght.ttf') format('truetype');
    font-weight: 400 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nunito';
    src: url('fonts/Nunito-VariableFont_wght.ttf') format('truetype');
    font-weight: 200 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nunito';
    src: url('fonts/Nunito-Italic-VariableFont_wght.ttf') format('truetype');
    font-weight: 200 900;
    font-style: italic;
    font-display: swap;
}

:root {
    --ocre: #D4904A;
    --ocre-light: #E8B07A;
    --ocre-pale: #F0CDA0;
    --ivoire: #FAF6F0;
    --ivoire-dark: #F2EBE0;
    --text: #3A2E22;
    --text-light: #7A6A55;
    --white: #FFFFFF;
    --radius-sm: 12px;
    --radius-md: 24px;
    --radius-lg: 40px;
    --shadow: 0 4px 24px rgba(212, 144, 74, 0.15);
    --shadow-lg: 0 8px 40px rgba(212, 144, 74, 0.25);
    --font-title: 'Baloo 2', cursive;
    --font-body: 'Nunito', sans-serif;
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--ivoire);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

@media (max-width: 768px) {
    .btn {
        margin: 0 auto;
        width: 230px;
        justify-content: center;
        text-align: center;
    }
}

/* ─── HEADER ─── */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--ivoire);
    border-bottom: 2px solid var(--ivoire-dark);
    padding: 0 24px;
}

.header-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

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

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

nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

nav a {
    font-family: var(--font-body);
    font-size: .95rem;
    font-weight: 700;
    color: var(--text-light);
    background: none;
    border: none;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
}

nav a:hover, nav a.active {
    color: var(--ocre);
    background: rgba(212, 144, 74, 0.1);
}

.nav-cta {
    background: var(--ocre) !important;
    color: var(--white) !important;
    padding: 8px 20px !important;
    border-radius: 50px !important;
}

.nav-cta:hover {
    background: #bf7e3a !important;
    color: var(--white) !important;
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
}

.burger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--ocre);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-nav {
    display: none;
    flex-direction: column;
    padding: 12px 24px 20px;
    border-top: 1px solid var(--ivoire-dark);
    background: var(--ivoire);
}

.mobile-nav.open {
    display: flex;
}

.mobile-nav a {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    background: none;
    border: none;
    padding: 12px 0;
    text-align: left;
    cursor: pointer;
    border-bottom: 1px solid var(--ivoire-dark);
    text-decoration: none;
    display: block;
}

.mobile-nav a:last-child {
    border-bottom: none;
}

.mobile-nav a.active {
    color: var(--ocre);
}

/* ─── COMMUNS ─── */
.section {
    padding: 80px 24px;
}

.section-narrow {
    max-width: 720px;
    margin: 0 auto;
}

.section-wide {
    max-width: 1100px;
    margin: 0 auto;
}

.section-label {
    display: inline-block;
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--ocre);
    background: rgba(212, 144, 74, 0.12);
    padding: 4px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
}

h1, h2, h3 {
    font-family: var(--font-title);
    color: var(--text);
    line-height: 1.2;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 800;
}

h3 {
    font-size: 1.2rem;
    font-weight: 700;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 1rem;
    padding: 14px 28px;
    border-radius: 50px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-decoration: none;
}

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

.btn-primary:hover {
    background: #bf7e3a;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

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

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

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

.deco svg {
    display: block;
}

.values, .temoignages, .engagements, .prestations-page,
.ressources-page, .contact-page, .cta-band {
    position: relative;
    overflow: hidden;
}

/* ─── HERO ─── */
.hero {
    position: relative;
    overflow: hidden;
    padding: 80px 24px 100px;
    background: var(--ivoire);
    height: calc(100vh - 74px);
}

.blob {
    position: absolute;
    border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
    background: rgba(212, 144, 74, 0.08);
    z-index: 0;
    pointer-events: none;
}

.hero .blob-1 {
    width: 500px;
    height: 500px;
    top: -100px;
    right: -150px;
    background: rgba(212, 144, 74, 0.10);
}

.hero .blob-2 {
    width: 300px;
    height: 300px;
    bottom: -80px;
    left: -80px;
    background: rgba(212, 144, 74, 0.07);
}

.hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-eyebrow {
    display: inline-block;
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--ocre);
    margin-bottom: 16px;
}

.hero h1 {
    margin-bottom: 20px;
}

.hero h1 em {
    font-style: normal;
    color: var(--ocre);
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 36px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

.hero-location {
    margin-top: 28px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .9rem;
    color: var(--text-light);
    font-weight: 600;
}

.hero-visual {
    position: relative;
    height: 480px;
}

.hero-blob-bg {
    position: absolute;
    top: -30px;
    right: -40px;
    width: 420px;
    height: 420px;
    background: var(--ocre-pale);
    border-radius: 62% 38% 55% 45%/48% 62% 38% 52%;
    opacity: .35;
    z-index: 0;
}

.hero-img-main {
    position: absolute;
    top: 10px;
    right: 0;
    width: 72%;
    height: 300px;
    object-fit: cover;
    border-radius: 32px;
    box-shadow: var(--shadow-lg);
    z-index: 2;
    transform: rotate(1.5deg);
}

.hero-img-secondary {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 52%;
    height: 200px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: var(--shadow-lg);
    border: 5px solid var(--ivoire);
    z-index: 3;
    transform: rotate(-2deg);
}

.hero-badge {
    position: absolute;
    bottom: 24px;
    right: 8px;
    background: var(--white);
    border-radius: 24px;
    padding: 14px 18px;
    box-shadow: var(--shadow-lg);
    font-size: .85rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.4;
    z-index: 4;
    border-left: 4px solid var(--ocre);
}

.hero-badge span {
    font-size: 1.3rem;
    display: block;
    margin-bottom: 4px;
}

.hero-dot {
    position: absolute;
    top: -12px;
    left: 30%;
    width: 28px;
    height: 28px;
    background: var(--ocre);
    border-radius: 50%;
    z-index: 1;
    opacity: .7;
}

.hero-dot-sm {
    position: absolute;
    top: 60px;
    right: 6px;
    width: 14px;
    height: 14px;
    background: var(--ocre-light);
    border-radius: 50%;
    z-index: 5;
    opacity: .8;
}

/* ─── VALEURS ─── */
.values {
    background: var(--ivoire-dark);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.value-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

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

.value-icon {
    font-size: 2.4rem;
    margin-bottom: 16px;
}

.value-card h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.value-card p {
    color: var(--text-light);
    font-size: .95rem;
}

/* ─── PRESTATIONS PREVIEW ─── */
.prestations-preview {
    background: var(--ivoire);
}

.prestations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.presta-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 28px;
    border: 2px solid var(--ivoire-dark);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: block;
    color: inherit;
}

.presta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--ocre);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: var(--transition);
}

.presta-card:hover {
    border-color: var(--ocre-pale);
    box-shadow: var(--shadow);
}

.presta-card:hover::before {
    transform: scaleY(1);
}

.presta-num {
    font-family: var(--font-title);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--ocre-pale);
    margin-bottom: 8px;
    line-height: 1;
}

.presta-card h3 {
    margin-bottom: 8px;
}

.presta-card p {
    color: var(--text-light);
    font-size: .92rem;
    line-height: 1.6;
}

.presta-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 14px;
}

.tag {
    font-size: .75rem;
    font-weight: 700;
    color: var(--ocre);
    background: rgba(212, 144, 74, 0.1);
    padding: 3px 10px;
    border-radius: 50px;
}

/* ─── PHOTOS TERRAIN ─── */
.photos-terrain {
    background: var(--ivoire-dark);
}

.photos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 40px;
}

.photos-grid img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.photos-grid img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

/* ─── TEMOIGNAGES ─── */
.temoignages {
    background: var(--ivoire);
}

.temoignages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.temo-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 28px;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 1;
}

.temo-stars {
    color: var(--ocre);
    font-size: 1rem;
    margin-bottom: 14px;
}

.temo-text {
    font-size: .95rem;
    color: var(--text);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 16px;
}

.temo-author {
    font-weight: 800;
    font-size: .9rem;
    color: var(--ocre);
}

.temo-role {
    font-size: .82rem;
    color: var(--text-light);
}

/* ─── CTA BAND ─── */
.cta-band {
    background: var(--ocre);
    padding: 72px 24px;
}

.cta-band-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cta-band-text h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.cta-band-text p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 32px;
}

.cta-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.cta-stat {
    background: rgba(255, 255, 255, 0.12);
    padding: 28px 20px;
    text-align: center;
    backdrop-filter: blur(4px);
}

.cta-stat-num {
    font-family: var(--font-title);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.cta-stat-label {
    font-size: .82rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 6px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
}

/* ─── À PROPOS ─── */
.apropos-hero {
    background: linear-gradient(135deg, var(--ivoire) 60%, var(--ivoire-dark) 100%);
    padding: 80px 24px 60px;
    position: relative;
    overflow: hidden;
}

.apropos-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.apropos-photo-wrap {
    position: relative;
}

.apropos-photo {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.apropos-photo-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--ocre);
    color: var(--white);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    font-weight: 800;
    font-size: .95rem;
    box-shadow: var(--shadow);
    line-height: 1.4;
}

.apropos-content h1 {
    margin-bottom: 8px;
}

.apropos-content .subtitle {
    color: var(--ocre);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 28px;
}

.apropos-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.apropos-content p strong {
    color: var(--text);
}

.apropos-facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 36px;
    margin-bottom: 36px;
}

.fact {
    background: var(--ivoire-dark);
    border-radius: var(--radius-sm);
    padding: 20px 16px;
    text-align: center;
}

.fact-num {
    font-family: var(--font-title);
    font-size: 2rem;
    font-weight: 800;
    color: var(--ocre);
    line-height: 1;
}

.fact-label {
    font-size: .8rem;
    color: var(--text-light);
    margin-top: 4px;
    font-weight: 600;
}

/* ─── ENGAGEMENTS ─── */
.engagements {
    background: var(--ivoire-dark);
    padding: 80px 24px;
}

.engagements-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.engagement-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    position: relative;
    z-index: 1;
}

.engagement-icon {
    width: 48px;
    height: 48px;
    background: rgba(212, 144, 74, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.engagement-item h3 {
    margin-bottom: 6px;
    font-size: 1rem;
}

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

/* ─── PRESTATIONS PAGE ─── */
.prestations-page {
    padding: 80px 24px;
    background: var(--ivoire);
}

.prestations-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
    position: relative;
    z-index: 1;
}

.prestations-header p {
    color: var(--text-light);
    margin-top: 16px;
    font-size: 1.05rem;
}

.presta-full {
    max-width: 1100px;
    margin: 0 auto 48px;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    position: relative;
    z-index: 1;
}

.presta-full:nth-child(even) {
    direction: rtl;
}

.presta-full:nth-child(even) > * {
    direction: ltr;
}

.presta-full-visual {
    background: var(--ivoire-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    min-height: 320px;
    overflow: hidden;
}

.presta-full-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 320px;
}

.presta-full-content {
    padding: 44px;
}

.presta-full-num {
    font-family: var(--font-title);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--ocre-pale);
    line-height: 1;
    margin-bottom: 8px;
}

.presta-full h2 {
    font-size: 1.7rem;
    margin-bottom: 8px;
}

.presta-full-subtitle {
    color: var(--ocre);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 20px;
}

.presta-full-desc {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 24px;
}

.presta-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.detail-item {
    background: var(--ivoire);
    border-radius: var(--radius-sm);
    padding: 12px;
    text-align: center;
}

.detail-item .d-label {
    font-size: .72rem;
    font-weight: 800;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 4px;
}

.detail-item .d-value {
    font-size: .9rem;
    font-weight: 700;
    color: var(--text);
}

/* ─── ETSY + ACCOMPAGNEMENT ─── */
.etsy-section {
    background: linear-gradient(135deg, var(--ocre) 0%, #bf7e3a 100%);
    border-radius: var(--radius-lg);
    padding: 48px;
    max-width: 1100px;
    margin: 0 auto 48px;
    display: flex;
    align-items: center;
    gap: 40px;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.etsy-icon {
    font-size: 4rem;
    flex-shrink: 0;
}

.etsy-content h2 {
    color: var(--white);
    margin-bottom: 10px;
}

.etsy-content p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
}

.btn-etsy {
    background: var(--white);
    color: var(--ocre);
}

.btn-etsy:hover {
    background: var(--ivoire);
}

.accompagnement {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--ivoire-dark);
    border-radius: var(--radius-lg);
    padding: 48px;
    position: relative;
    z-index: 1;
}

.accompagnement h2 {
    margin-bottom: 12px;
}

.accompagnement > p {
    color: var(--text-light);
    margin-bottom: 28px;
}

.accompagnement-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.acc-item {
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 20px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.acc-item .acc-icon {
    font-size: 1.5rem;
}

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

.acc-item strong {
    color: var(--text);
    display: block;
    margin-bottom: 4px;
}

/* ─── RESSOURCES ─── */
.ressources-page {
    padding: 80px 24px;
    background: var(--ivoire);
}

.ressources-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
    position: relative;
    z-index: 1;
}

.ressources-header p {
    color: var(--text-light);
    margin-top: 16px;
    font-size: 1.05rem;
}

.ressources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 1;
}

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

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

.ressource-card-visual {
    background: var(--ivoire-dark);
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    overflow: hidden;
}

.ressource-card-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ressource-card-content {
    padding: 24px;
}

.ressource-card h3 {
    margin-bottom: 8px;
}

.ressource-card p {
    color: var(--text-light);
    font-size: .9rem;
    line-height: 1.6;
    margin-bottom: 50px;
}

.ressource-badge {
    display: inline-block;
    font-size: .75rem;
    font-weight: 800;
    color: var(--white);
    background: var(--ocre);
    padding: 3px 10px;
    border-radius: 50px;
}

@media (width > 768px) {
    .ressource-badge {
        position: absolute;
        bottom: 30px;
    }
}

.etsy-cta {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    background: var(--ivoire-dark);
    border-radius: var(--radius-lg);
    padding: 60px;
    position: relative;
    z-index: 1;
}

.etsy-cta h2 {
    margin-bottom: 12px;
}

.etsy-cta p {
    color: var(--text-light);
    max-width: 560px;
    margin: 0 auto 28px;
}

/* ─── CONTACT ─── */
.contact-page {
    padding: 80px 24px;
    background: var(--ivoire);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
    position: relative;
    z-index: 1;
}

.contact-info h1 {
    margin-bottom: 12px;
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 36px;
    line-height: 1.7;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 36px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--white);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.contact-link:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-lg);
}

.contact-link-icon {
    width: 44px;
    height: 44px;
    background: rgba(212, 144, 74, 0.12);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-link-text strong {
    display: block;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--text-light);
    margin-bottom: 2px;
}

.contact-link-text span {
    font-weight: 700;
    color: var(--text);
}

.contact-social {
    margin-top: 28px;
}

.contact-social p {
    font-size: .85rem;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 12px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 44px;
    height: 44px;
    background: var(--white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--ocre);
    transform: translateY(-2px);
}

.contact-form-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
}

.contact-form-wrap h2 {
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: .88rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--ivoire-dark);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: .95rem;
    color: var(--text);
    background: var(--ivoire);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--ocre);
    background: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-submit {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
}

.form-success {
    display: none;
    text-align: center;
    padding: 32px;
}

.form-success .success-icon {
    font-size: 3rem;
    margin-bottom: 12px;
}

.form-success h3 {
    color: var(--ocre);
    margin-bottom: 8px;
}

.form-success p {
    color: var(--text-light);
}

/* ─── FOOTER ─── */
footer {
    background: var(--text);
    color: rgba(255, 255, 255, 0.7);
    padding: 48px 24px 32px;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand img {
    height: 140px;
    width: auto;
}

@media (max-width: 800px) {
    .footer-brand img {
        margin: 0 auto;
    }
}

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

.footer-col {
    justify-content: center;
    display: flex;
    flex-direction: column;
}

.footer-col h4 {
    font-family: var(--font-body);
    font-size: .8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
}

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

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.6);
    font-size: .9rem;
    transition: var(--transition);
    text-decoration: none;
}

.footer-col ul li a:hover {
    color: var(--ocre-light);
}

.footer-col ul li span {
    font-size: .9rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .8rem;
    flex-wrap: wrap;
    gap: 8px;

    max-width: 1100px;
    margin: 0 auto;
}

.footer-bottom div {
    display: flex;
    flex-direction: column;
}

.footer-bottom-second {
    display: flex;
    justify-content: center;
    margin-top: 30px;

    a {
        color: var(--ocre);
        transition: all 0.3s;
    }

    a:hover {
        color: var(--ocre-pale);
    }
}

.footer-link {
    color: var(--white);
    opacity: 0.60;
    font-size: .9rem;
    transition: all 0.3s;
}

.footer-link:hover {
    opacity: 0.8;
    color: var(--ocre) !important;
}

.footer-socials {
    display: flex;
    flex-direction: row;
    gap: 16px;
    margin-top: 8px;
    align-items: center;
}

@media (max-width: 768px) {
    .footer-socials {
        justify-content: center;
    }

    .footer-col * {
        text-align: center;
    }
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.footer-social-link svg {
    opacity: 0.7;
    transition: opacity 0.2s ease;
    height: 40px;
    width: 30px;
    margin-top: 10px;
}

.footer-social-link:hover svg {
    opacity: 1;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        height: 280px;
    }

    .hero-img-main {
        width: 80%;
        height: 240px;
    }

    .hero-img-secondary {
        width: 50%;
        height: 160px;
    }

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

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

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

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

    .presta-full {
        grid-template-columns: 1fr;
        direction: ltr !important;
    }

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

    .etsy-section {
        flex-direction: column;
        text-align: center;
    }

    .accompagnement-list {
        grid-template-columns: 1fr;
    }

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

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

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

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

    .apropos-photo-badge {
        bottom: 12px;
        right: 12px;
    }

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

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

    .cta-band-inner {
        grid-template-columns: 1fr;
        gap: 36px;
        text-align: center;
    }

    .cta-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    nav {
        display: none;
    }

    .burger {
        display: flex;
    }

    .section {
        padding: 56px 20px;
    }

    .hero {
        padding: 48px 20px 64px;
    }

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

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

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

    .presta-full-content {
        padding: 28px;
    }

    .etsy-section {
        padding: 32px 24px;
    }

    .accompagnement {
        padding: 32px 24px;
    }

    .contact-form-wrap {
        padding: 28px;
    }

    .etsy-cta {
        padding: 40px 24px;
    }

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

/* ═══════════════════════════════════════════════════
   NOUVELLE PAGE PRESTATIONS — styles catalogue
═══════════════════════════════════════════════════ */

/* ─── Variables couleurs catégories ─── */
:root {
    --cat-decouverte: #9A6BB5;
    --cat-decouverte-pale: #D9C5EA;
    --cat-decouverte-bg: rgba(154, 107, 181, 0.08);
    --cat-immersive: #4A9E7A;
    --cat-immersive-pale: #B8DDD0;
    --cat-immersive-bg: rgba(74, 158, 122, 0.08);
    --cat-creatif: #4A7EB5;
    --cat-creatif-pale: #B8CFEA;
    --cat-creatif-bg: rgba(74, 126, 181, 0.08);
    --cat-territoire: #C9A227;
    --cat-territoire-pale: #EDE0A8;
    --cat-territoire-bg: rgba(201, 162, 39, 0.08);
    --cat-rse: #C0426A;
    --cat-rse-pale: #EDBBCC;
    --cat-rse-bg: rgba(192, 66, 106, 0.08);
}

/* ─── Intro page ─── */
.prestations-intro {
    padding: 72px 24px 0;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.prestations-intro h1 {
    margin-bottom: 12px;
}

.prestations-intro .intro-lead {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 40px;
}

/* ─── Pills de navigation rapide ─── */
.presta-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 0;
}

.presta-nav-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .82rem;
    font-weight: 800;
    padding: 7px 16px;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
    background: var(--white);
}

.presta-nav-pill:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.pill-decouverte {
    color: var(--cat-decouverte);
    border-color: var(--cat-decouverte-pale);
}

.pill-decouverte:hover {
    background: var(--cat-decouverte-bg);
    color: var(--cat-decouverte);
}

.pill-immersive {
    color: var(--cat-immersive);
    border-color: var(--cat-immersive-pale);
}

.pill-immersive:hover {
    background: var(--cat-immersive-bg);
    color: var(--cat-immersive);
}

.pill-creatif {
    color: var(--cat-creatif);
    border-color: var(--cat-creatif-pale);
}

.pill-creatif:hover {
    background: var(--cat-creatif-bg);
    color: var(--cat-creatif);
}

.pill-territoire {
    color: var(--cat-territoire);
    border-color: var(--cat-territoire-pale);
}

.pill-territoire:hover {
    background: var(--cat-territoire-bg);
    color: var(--cat-territoire);
}

.pill-rse {
    color: var(--cat-rse);
    border-color: var(--cat-rse-pale);
}

.pill-rse:hover {
    background: var(--cat-rse-bg);
    color: var(--cat-rse);
}

/* ─── Section catégorie ─── */
.cat-section {
    padding: 64px 24px 0;
    max-width: 1200px;
    margin: 0 auto;
    scroll-margin-top: 90px;
}

.cat-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 36px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--ivoire-dark);
}

.cat-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    white-space: nowrap;
}

.cat-count {
    font-family: var(--font-body);
    font-size: .82rem;
    font-weight: 700;
    color: var(--text-light);
}

.cat-header h2 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    margin: 0;
}

.badge-decouverte {
    background: var(--cat-decouverte-bg);
    color: var(--cat-decouverte);
}

.badge-immersive {
    background: var(--cat-immersive-bg);
    color: var(--cat-immersive);
}

.badge-creatif {
    background: var(--cat-creatif-bg);
    color: var(--cat-creatif);
}

.badge-territoire {
    background: var(--cat-territoire-bg);
    color: var(--cat-territoire);
}

.badge-rse {
    background: var(--cat-rse-bg);
    color: var(--cat-rse);
}

/* ─── Grille d'animations ─── */
.anim-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

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

/* ─── Carte animation ─── */
.anim-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 28px 26px;
    border: 2px solid var(--ivoire-dark);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.anim-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    transition: var(--transition);
    opacity: 0;
}

.anim-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

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

.anim-card.cat-decouverte::before {
    background: var(--cat-decouverte);
}

.anim-card.cat-immersive::before {
    background: var(--cat-immersive);
}

.anim-card.cat-creatif::before {
    background: var(--cat-creatif);
}

.anim-card.cat-territoire::before {
    background: var(--cat-territoire);
}

.anim-card.cat-rse::before {
    background: var(--cat-rse);
}

.anim-card-subtitle {
    font-size: .78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 6px;
}

.anim-card.cat-decouverte .anim-card-subtitle {
    color: var(--cat-decouverte);
}

.anim-card.cat-immersive .anim-card-subtitle {
    color: var(--cat-immersive);
}

.anim-card.cat-creatif .anim-card-subtitle {
    color: var(--cat-creatif);
}

.anim-card.cat-territoire .anim-card-subtitle {
    color: var(--cat-territoire);
}

.anim-card.cat-rse .anim-card-subtitle {
    color: var(--cat-rse);
}

.anim-card h3 {
    font-size: 1.05rem;
    margin-bottom: 10px;
    color: var(--text);
}

.anim-card-desc {
    font-size: .9rem;
    color: var(--text-light);
    line-height: 1.65;
    margin-bottom: 14px;
    flex: 1;
}

.anim-attention {
    font-size: .83rem;
    color: var(--text-light);
    background: var(--ivoire-dark);
    border-radius: 8px;
    padding: 8px 12px;
    margin-bottom: 14px;
    font-style: italic;
}

.anim-attention strong {
    color: var(--text);
    font-style: normal;
}

.anim-nouveaute {
    display: inline-block;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--cat-immersive);
    padding: 2px 8px;
    border-radius: 50px;
    margin-bottom: 8px;
    vertical-align: middle;
    width: fit-content;
}

.anim-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: auto;
    padding-top: 4px;
}

.anim-tag {
    font-size: .72rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px;
    background: var(--ivoire);
    color: var(--text-light);
}

/* ─── Tarifs ─── */
.tarifs-intro {
    color: var(--text-light);
    margin-bottom: 40px;
    font-size: .95rem;
}

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

.tarif-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    border: 2px solid var(--ivoire-dark);
    box-shadow: var(--shadow);
}

.tarif-card-label {
    font-size: .78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 16px;
    display: block;
}

.tarif-card.cat-decouverte .tarif-card-label {
    color: var(--cat-decouverte);
}

.tarif-card.cat-immersive .tarif-card-label {
    color: var(--cat-immersive);
}

.tarif-card.cat-creatif .tarif-card-label {
    color: var(--cat-creatif);
}

.tarif-card.cat-territoire .tarif-card-label {
    color: var(--cat-territoire);
}

.tarif-card.cat-rse .tarif-card-label {
    color: var(--cat-rse);
}

.tarif-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--ivoire-dark);
    font-size: .92rem;
}

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

.tarif-line-label {
    color: var(--text-light);
    font-weight: 600;
}

.tarif-price {
    font-family: var(--font-title);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text);
}

.tarif-price.devis {
    font-size: 1rem;
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--text-light);
}

.tarif-note {
    font-size: .85rem;
    color: var(--text-light);
    background: var(--ivoire-dark);
    border-radius: var(--radius-sm);
    padding: 14px 20px;
    margin-top: 20px;
    line-height: 1.6;
}

/* ─── CTA contact prestations ─── */
.prestations-cta {
    background: var(--ocre);
    padding: 60px 24px;
    text-align: center;
}

.prestations-cta h2 {
    color: var(--white);
    margin-bottom: 12px;
}

.prestations-cta p {
    color: rgba(255, 255, 255, .85);
    max-width: 560px;
    margin: 0 auto 28px;
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
    .anim-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .anim-grid.cols-2 {
        grid-template-columns: 1fr;
    }

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

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

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

    .presta-nav {
        gap: 8px;
    }

    .presta-nav-pill {
        font-size: .75rem;
        padding: 6px 12px;
    }

    .cat-header {
        flex-wrap: wrap;
        gap: 10px;
    }

    .tarif-card[style*="span 2"] {
        grid-column: span 1 !important;
    }
}

.blob {
    position: fixed;
    border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
    pointer-events: none;
    z-index: 0;
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: rgba(212, 144, 74, .10);
    animation: drift1 18s ease-in-out infinite;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: rgba(212, 144, 74, .07);
    animation: drift2 22s ease-in-out infinite;
}

.blob-3 {
    width: 200px;
    height: 200px;
    background: rgba(212, 144, 74, .05);
    border-radius: 50%;
    animation: drift1 14s ease-in-out infinite reverse;
}

@keyframes drift1 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -20px) rotate(8deg);
    }
    66% {
        transform: translate(-15px, 25px) rotate(-5deg);
    }
}

@keyframes drift2 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(-25px, 20px) rotate(-6deg);
    }
    66% {
        transform: translate(20px, -15px) rotate(4deg);
    }
}
