/*
Theme Name: Chez Tata
Theme URI: https://cheztata.fr
Author: Chez Tata
Author URI: https://cheztata.fr
Description: Un thème WordPress élégant pour le café céramique Chez Tata. Hero overlay, ateliers, expérience en étapes, réservation, réseaux en avant.
Version: 1.1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cheztata
Tags: custom-menu, featured-images, translation-ready
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Palette: fond principal #F3F4E5, texte #4A5951, bordeaux accents */
    --dark-green: #4A5951;
    --medium-green: #5d6f67;
    --light-green: #7a8880;
    --accent-gold: #722F37;
    --cream: #F3F4E5;
    --dark-cream: #e6e8d8;
    --text-dark: #4A5951;
    --text-light: #F3F4E5;
    --shadow: rgba(74, 89, 81, 0.22);
}

body {
    font-family: 'Crimson Text', serif;
    font-size: 1.0625rem;
    background-color: var(--cream);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Sticky footer (short pages like Reservation) */
html,
body {
    height: 100%;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-main {
    flex: 1 0 auto;
}

.footer {
    margin-top: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Reservation (Amelia) */
.reservation-embed {
    margin-top: 1.5rem;
}

.reservation-embed,
.reservation-article .entry-content > :where(.amelia-app-booking, .amelia-v2-booking, .amelia-booking, .am-cabinet, .am-elia) {
    background: rgba(243, 244, 229, 0.6);
    border-radius: 16px;
}

/* Navigation */
.navbar {
    background-color: var(--cream);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(74, 89, 81, 0.08);
    border-bottom: 1px solid rgba(74, 89, 81, 0.18);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 2.5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-right: 1.25rem;
    flex-shrink: 0;
    font-size: 1.8rem;
}

.logo .custom-logo-link,
.logo .logo-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    flex-shrink: 0;
}

.logo .custom-logo,
.logo .custom-logo-link img,
.logo .logo-link img {
    width: auto !important;
    max-height: 4.75rem !important;
    max-width: min(340px, 72vw) !important;
    height: auto !important;
    object-fit: contain;
    vertical-align: middle;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1em;
    font-weight: 700;
    color: var(--accent-gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1;
    display: inline-flex;
    align-items: center;
}

.nav-menu {
    flex: 1;
    display: flex;
    list-style: none;
    gap: 2.5rem;
    justify-content: flex-start;
    min-width: 0;
}

.nav-menu a {
    color: var(--dark-green);
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-gold);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--accent-gold);
}

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

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

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--dark-green);
    transition: all 0.3s ease;
}

/* Nav socials - réseaux en avant */
.nav-socials {
    display: flex;
    gap: 1rem;
    align-items: center;
}
.nav-socials a {
    color: var(--dark-green);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}
.nav-socials a:hover {
    color: var(--accent-gold);
}

/* Barre réseaux mobile - en haut, visible uniquement sur mobile */
.social-bar-mobile {
    display: none;
    justify-content: center;
    gap: 1.5rem;
    padding: 0.75rem 1rem;
    background-color: var(--dark-cream);
    border-bottom: 1px solid rgba(74, 89, 81, 0.18);
}

.social-bar-mobile a {
    color: var(--dark-green);
    font-size: 1.25rem;
    transition: color 0.3s ease;
}

.social-bar-mobile a:hover {
    color: var(--accent-gold);
}

@media (min-width: 769px) {
    .social-bar-mobile {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .social-bar-mobile {
        display: flex;
    }
}

/* Hero Section - bloc 1 style overlay (ref image) */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #e6e9d9 0%, #cfd4c4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 4rem 2rem;
}

.hero.hero-overlay .hero-background-image {
    opacity: 0.4;
}

.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1674816926803-8607c08dd517?w=1920&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8Mnx8Y29mZmVlJTIwc2hvcCUyMGZyb250fGVufDB8fDB8fHww');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(210, 214, 198, 0.62) 0%, rgba(186, 192, 176, 0.86) 100%);
    z-index: 1;
}

.hero-overlay-content {
    text-align: center;
    z-index: 3;
    position: relative;
    max-width: 700px;
    padding: 0 1.5rem;
}

.hero-title-stacked {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-bottom: 1rem;
}

.hero-line {
    display: block;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--dark-green);
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.6);
    letter-spacing: 2px;
}
.hero-line-small {
    font-size: 2rem;
    text-transform: lowercase;
}
.hero-line-main {
    font-size: 5rem;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 6px;
}

.hero-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.95rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    font-style: italic;
    letter-spacing: 2px;
}

.hero-description-wrap {
    width: 100%;
    max-width: 580px;
    margin: 0 auto 2rem;
    text-align: center;
}

.hero-description {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.7;
    max-width: none;
}

.hero-description-toggle {
    display: none;
    margin: 0.4rem auto 0;
    padding: 0.2rem 0.5rem;
    background: none;
    border: none;
    font-family: 'Crimson Text', serif;
    font-size: 1rem;
    font-style: italic;
    color: var(--accent-gold);
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer;
}

.hero-description-toggle:focus-visible {
    outline: 2px solid var(--accent-gold);
    outline-offset: 2px;
}

.hero-description-toggle-less {
    display: none;
}

.hero-description-wrap.is-expanded .hero-description-toggle-more {
    display: none;
}

.hero-description-wrap.is-expanded .hero-description-toggle-less {
    display: inline;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--accent-gold);
    color: var(--dark-green);
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background-color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.cta-button-outline {
    background-color: transparent;
    color: var(--dark-green);
    border: 2px solid var(--accent-gold);
    box-shadow: none;
}

.cta-button-outline:hover {
    background-color: var(--accent-gold);
    color: var(--dark-green);
}

.hero .cta-button:not(.cta-button-outline) {
    color: var(--cream);
}

.hero .cta-button:not(.cta-button-outline):hover {
    color: var(--dark-green);
}

.hero .cta-button-outline:hover {
    color: var(--cream);
}

.hero-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(to top, var(--cream) 0%, rgba(220, 224, 208, 0.94) 28%, rgba(200, 206, 190, 0.52) 62%, rgba(218, 222, 206, 0.16) 88%, transparent 100%);
}

/* Forfaits / Ateliers */
.forfaits {
    background-color: var(--dark-cream);
    padding: 4rem 0;
}

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

.forfait-card {
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
    background-color: var(--cream);
    border-top: 4px solid var(--accent-gold);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.forfait-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px var(--shadow);
}

.forfait-card-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background-color: var(--dark-cream);
}

.forfait-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.forfait-card-body {
    padding: 1.35rem 1.5rem 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.forfait-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.65rem;
    color: var(--dark-green);
    margin: 0 0 0.65rem 0;
}

.forfait-card p {
    font-size: 1.3rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
}

.forfaits-note {
    text-align: center;
    margin-top: 2rem;
    font-size: 1.05rem;
    color: var(--medium-green);
    font-style: italic;
}

/* Tarifs page – fourchette de prix + vitrine photos (1 à 5 images) */
.tarifs-price-range {
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-dark);
    max-width: 42rem;
    margin: 0 auto 2.5rem;
    line-height: 1.75;
}

.tarifs-price-range strong {
    color: var(--dark-green);
    font-weight: 700;
}

/* Vitrine : bloc centré, taille modérée */
.forfaits .tarifs-showcase {
    width: 100%;
    max-width: min(100%, 60rem);
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

.tarifs-showcase {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 5px;
    margin-top: 0.5rem;
    justify-items: stretch;
    align-items: stretch;
    background: linear-gradient(
        145deg,
        rgba(74, 89, 81, 0.14) 0%,
        rgba(114, 47, 55, 0.08) 100%
    );
    border-radius: 8px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.tarifs-showcase__item {
    margin: 0;
    width: 100%;
    max-width: none;
    padding: 6px;
    overflow: visible;
    border-radius: 0;
    background: var(--cream);
    box-shadow: none;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tarifs-showcase__item:hover {
    background: #fafbf3;
}

.tarifs-showcase__item img {
    width: 100%;
    height: auto;
    max-height: min(70vh, 36rem);
    object-fit: contain;
    object-position: center;
    display: block;
    border-radius: 4px;
}

/* Une seule image : toute la largeur du bandeau */
.tarifs-showcase.tarifs-showcase--single {
    grid-template-columns: 1fr;
}

.tarifs-showcase.tarifs-showcase--single .tarifs-showcase__item img {
    max-height: min(88vh, 48rem);
    object-fit: contain;
}

@media (min-width: 640px) {
    .tarifs-showcase:not(.tarifs-showcase--single) {
        grid-template-columns: repeat(2, 1fr);
    }

    .tarifs-showcase {
        gap: 5px;
        padding: 5px;
    }

    .tarifs-showcase__item {
        padding: 4px;
    }
}

/* Mobile : vitrine compacte, 2 colonnes, 4 photos (5ᵉ masquée), image entière non rognée */
@media (max-width: 767px) {
    .forfaits .tarifs-showcase:not(.tarifs-showcase--single) {
        max-width: min(100%, 20rem);
    }

    .tarifs-showcase:not(.tarifs-showcase--single) {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: start;
        gap: 6px;
        padding: 6px;
    }

    .tarifs-showcase:not(.tarifs-showcase--single) .tarifs-showcase__item:nth-child(5) {
        display: none;
    }

    .tarifs-showcase:not(.tarifs-showcase--single) .tarifs-showcase__item {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 4px;
        overflow: visible;
        min-height: 0;
    }

    .tarifs-showcase:not(.tarifs-showcase--single) .tarifs-showcase__item img {
        width: auto;
        height: auto;
        max-width: 100%;
        max-height: min(52vh, 18rem);
        object-fit: contain;
        object-position: center;
    }

    /* Une image seule : jamais rognée sur mobile */
    .tarifs-showcase.tarifs-showcase--single .tarifs-showcase__item img {
        width: auto;
        max-width: 100%;
        height: auto;
        max-height: min(75vh, 36rem);
        object-fit: contain;
    }
}

/* Plusieurs images : une rangée égale sur grand écran */
@media (min-width: 960px) {
    .forfaits .tarifs-showcase:not(.tarifs-showcase--single) {
        max-width: min(100%, 75rem);
    }

    .tarifs-showcase:not(.tarifs-showcase--single) {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: flex-start;
        gap: 5px;
    }

    .tarifs-showcase:not(.tarifs-showcase--single) .tarifs-showcase__item {
        flex: 1 1 0;
        min-width: 0;
    }

    .tarifs-showcase:not(.tarifs-showcase--single) .tarifs-showcase__item img {
        max-height: min(65vh, 34rem);
    }
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    text-align: center;
    color: var(--dark-green);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.section-intro {
    text-align: center;
    font-size: 1.45rem;
    color: var(--medium-green);
    margin-bottom: 2rem;
    font-style: italic;
}

.concept-explanation {
    text-align: center;
    font-size: 1.3rem;
    color: var(--text-dark);
    max-width: 800px;
    margin: 0 auto 4rem;
    line-height: 1.8;
    opacity: 0.85;
}

/* Experience Section */
.experience {
    background-color: var(--cream);
}

.experience .section-intro {
    font-size: 1.6rem;
}

.experience .container {
    max-width: 100%;
    padding: 0;
}

.experience .container > *:not(.process-steps) {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(240px, 1fr));
    gap: 1.5rem;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    padding: 0 2rem;
    justify-items: center;
}

.step {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: center;
    width: 100%;
    max-width: 360px;
    padding: 0;
    background-color: var(--dark-cream);
    border-top: 3px solid var(--accent-gold);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Step header: step number */
.step-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem 1.25rem;
    background-color: rgba(74, 89, 81, 0.06);
}

.step-header .step-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-green);
    opacity: 0.4;
    line-height: 1;
    margin: 0;
    padding: 0;
}

.step-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    background-color: var(--dark-cream);
}

.step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    filter: grayscale(30%) brightness(0.9);
    transition: transform 0.3s ease, filter 0.3s ease;
    display: block;
}

.step:hover .step-image img {
    transform: scale(1.05);
    filter: grayscale(20%) brightness(1);
}

.step-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-green);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 0.5rem;
    padding: 0 2rem;
    margin-top: 1rem;
}

.step:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px var(--shadow);
}

.step-content {
    padding: 1rem 1.25rem 1.35rem;
    text-align: center;
    width: 100%;
}

.step-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--dark-green);
    margin-bottom: 0.5rem;
}

.step-content p {
    font-size: 1.35rem;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Legacy step-number when not in header (e.g. old markup) */
.step > .step-number {
    padding: 0 1rem;
    margin-top: 0.5rem;
    font-size: 1.5rem;
}

/* Location & Hours Section */
.location-hours {
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--medium-green) 100%);
    color: var(--text-light);
}

.location-hours .section-title,
.location-hours .section-intro {
    color: var(--text-light);
}

.location-hours .concept-explanation {
    color: var(--text-light);
    opacity: 0.9;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.info-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border: 2px solid rgba(114, 47, 55, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.info-card:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-gold);
    transform: translateY(-5px);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.info-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--accent-gold);
}


.address {
    font-size: 1.35rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.location-note,
.hours-note {
    font-size: 1.12rem;
    font-style: italic;
    opacity: 0.9;
    margin-top: 1rem;
}

.hours-note {
    font-weight: 700;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(114, 47, 55, 0.2);
    font-size: 1.15rem;
    font-weight: 700;
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-item.special-hours {
    background-color: rgba(114, 47, 55, 0.15);
    padding: 1rem;
    border-radius: 4px;
    margin: 0.5rem 0;
    border: 2px solid rgba(114, 47, 55, 0.4);
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.hours-item.special-hours > div {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.hours-item.special-hours .day {
    font-weight: 700;
    color: var(--accent-gold);
    font-size: 1.25rem;
}


.hours-item.special-hours .time {
    color: var(--accent-gold);
    font-weight: 700;
}


.hours-item.special-hours .special-note {
    width: 100%;
    text-align: center;
    margin-top: 0.3rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(114, 47, 55, 0.3);
}

.day {
    font-weight: 700;
}

.time {
    color: var(--accent-gold);
    font-weight: 700;
}


.special-time {
    color: var(--accent-gold);
    font-weight: 700;
}


.special-note {
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 1.1rem;
    margin-left: auto;
}


/* Contact Section */
.contact {
    background-color: var(--cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
    align-items: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(74, 89, 81, 0.2);
    filter: grayscale(20%) brightness(0.95);
    transition: transform 0.3s ease, filter 0.3s ease;
}

.contact-image:hover {
    transform: scale(1.02);
    filter: grayscale(0%) brightness(1);
}

/* Réseaux en avant dans Contact */
.contact-socials {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.contact-socials .social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--dark-green);
    text-decoration: none;
    font-size: 1.2rem;
    padding: 0.75rem 1.25rem;
    background-color: var(--dark-cream);
    border-radius: 4px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.contact-socials .social-link:hover {
    background-color: var(--accent-gold);
    color: var(--dark-green);
}

.contact-socials .social-link i {
    font-size: 1.4rem;
}

.contact-icon {
    font-size: 2.5rem;
    min-width: 60px;
}

.contact-details h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--dark-green);
    margin-bottom: 0.5rem;
}

.contact-details p {
    font-size: 1.25rem;
    color: var(--text-dark);
}

/* Footer */
.footer {
    background-color: var(--dark-green);
    color: var(--text-light);
    padding: 2rem 0;
    text-align: center;
}

.footer p {
    margin: 0.5rem 0;
}

.footer-note {
    font-style: italic;
    opacity: 0.8;
    font-size: 1rem;
}

/* Responsive Design - mobile: blocs compacts, moins de scroll */
@media (max-width: 768px) {
    .nav-socials {
        display: none;
    }

    .nav-container {
        justify-content: flex-start;
        gap: 1rem;
    }

    .logo {
        margin-right: 0;
    }

    .nav-menu {
        flex: 0;
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--cream);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 24px rgba(74, 89, 81, 0.1);
        padding: 2rem 0;
        gap: 0;
        border-bottom: 1px solid rgba(74, 89, 81, 0.15);
    }

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

    .nav-menu li {
        padding: 1rem 0;
    }

    .menu-toggle {
        display: flex;
        margin-left: auto;
    }

    /* Hero = 1 écran sous nav + barre réseaux (comme un bloc pleine hauteur) */
    :root {
        --hero-mobile-chrome: 7.5rem;
    }

    .hero {
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        min-height: calc(100vh - var(--hero-mobile-chrome));
        min-height: calc(100dvh - var(--hero-mobile-chrome));
        min-height: calc(100svh - var(--hero-mobile-chrome));
        padding: 0.5rem 1rem 0.75rem;
        box-sizing: border-box;
        overflow-x: hidden;
        overflow-y: hidden;
    }

    .hero-overlay-content {
        width: 100%;
        max-width: 100%;
        padding: 0.25rem 0.75rem 0.5rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        min-height: 0;
        flex: 1 1 auto;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .hero-title-stacked {
        margin-bottom: 0.35rem;
        flex-shrink: 0;
    }

    .hero-line-small {
        font-size: 1.35rem;
    }

    .hero-line-main {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1.15rem;
        margin-bottom: 0.65rem;
    }

    .hero-description-wrap {
        margin-bottom: 0.75rem;
        flex-shrink: 1;
        min-height: 0;
        text-align: center;
    }

    .hero-description {
        font-size: 1.1rem;
        line-height: 1.45;
        text-align: center;
    }

    .hero-description-wrap.measuring:not(.is-expanded) .hero-description,
    .hero-description-wrap--collapsible:not(.is-expanded) .hero-description {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 4;
        overflow: hidden;
    }

    .hero-description-toggle.hero-description-toggle--visible {
        display: inline-block;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 0.45rem;
        width: 100%;
        flex-shrink: 0;
    }

    .hero .cta-button,
    .hero .cta-button-outline {
        width: 100%;
        max-width: 20rem;
        margin-left: auto;
        margin-right: auto;
        box-sizing: border-box;
        padding: 0.55rem 0.85rem;
        font-size: 0.85rem;
        letter-spacing: 0.5px;
    }

    .hero-decoration {
        height: 72px;
    }

    .section-title {
        font-size: 1.75rem;
    }

    section {
        padding: 2.5rem 0;
    }

    .forfaits {
        padding: 2.5rem 0;
    }

    .forfaits-grid {
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .forfait-card-body {
        padding: 1.15rem 1.25rem 1.35rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        padding: 0 1rem;
        justify-items: center;
        max-width: 100%;
    }

    .experience .section-intro,
    .experience .concept-explanation {
        display: none;
    }

    .step {
        flex-direction: column;
        max-width: 22rem;
    }

    .step-header {
        padding: 0.5rem 0.75rem;
    }

    .step-header .step-number {
        font-size: 1.1rem;
    }

    .step-content {
        padding: 0.5rem 0.75rem 0.75rem;
    }

    .step-content h3 {
        font-size: 1.2rem;
    }

    .step-content p {
        font-size: 1.05rem;
    }

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

    .info-card {
        padding: 1.5rem;
    }

    .contact-socials {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

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

    .contact-info {
        align-items: flex-start;
        width: 100%;
    }

    .contact-item {
        justify-content: flex-start;
        width: 100%;
    }

    .contact-details {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .hero-line-main {
        font-size: 2.15rem;
        letter-spacing: 1px;
    }

    .hero-subtitle {
        font-size: 1.08rem;
    }

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

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

    .container {
        padding: 0 1rem;
    }

    section {
        padding: 2rem 0;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step {
    animation: fadeInUp 0.6s ease-out;
}

.step:nth-child(1) { animation-delay: 0.1s; }
.step:nth-child(2) { animation-delay: 0.2s; }
.step:nth-child(3) { animation-delay: 0.3s; }
