/* ===========================
   Variables & Reset
   =========================== */

:root {
    /* Couleurs */
    --rose-poudre: #F5D6DC;
    --terracotta: #C9704A;
    --vert-profond: #1E5B4E;
    --blanc-casse: #FAF7F6;
    --noir-doux: #171717;
    
    /* Transitions */
    --transition-smooth: all 0.9s cubic-bezier(0.23, 1, 0.32, 1);
    --transition-quick: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Espacements basés sur le ratio d'or (base: 1rem = 16px) */
    --spacing-xs: 0.618rem;  /* 10px - ratio inversé */
    --spacing-sm: 1rem;      /* 16px - base */
    --spacing-md: 1.618rem;  /* 26px - ratio d'or */
    --spacing-lg: 2.618rem;  /* 42px - ratio d'or au carré */
    --spacing-xl: 4.236rem;  /* 68px - ratio d'or au cube */
    --spacing-xxl: 6.854rem; /* 110px - ratio d'or puissance 4 */
    
    /* Typographie basée sur le ratio d'or */
    --font-xs: 0.618rem;     /* 10px */
    --font-sm: 0.875rem;     /* 14px */
    --font-base: 1rem;       /* 16px */
    --font-md: 1.618rem;     /* 26px */
    --font-lg: 2.618rem;     /* 42px */
    --font-xl: 4.236rem;     /* 68px */
}

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

/* Performance optimizations pour le scroll */

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

body {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    line-height: 1.6;
    color: var(--noir-doux);
    background-color: var(--blanc-casse);
    min-height: 100vh;
    position: relative;
}

/* Prevent horizontal scroll but allow vertical */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Fraunces', serif;
    font-weight: 500;
    line-height: 1.2;
}

.section-title {
    font-size: clamp(var(--font-lg), 5vw, var(--font-xl));
    text-align: center;
    margin-bottom: var(--spacing-xl);
    opacity: 0;
    transform: translateY(30px);
    line-height: 1.2;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Container */
.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Curseur personnalisé supprimé - utilisation du curseur par défaut */

/* ===========================
   Hero Section
   =========================== */

.hero {
    position: relative;
    height: 100vh;
    height: 100dvh; /* Dynamic viewport height for mobile */
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-main {
    z-index: 2;
    transform: scale(1.02);
    filter: blur(0.5px) brightness(0.8);
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0.6) 100%
    );
    z-index: 3;
}

.hero-content {
    position: relative;
    z-index: 4;
    text-align: center;
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 var(--spacing-md);
    max-width: 70%;
    margin: 0 auto;
}

.logo-container {
    margin-bottom: var(--spacing-lg);
}

.logo-ginkgo {
    max-width: 280px;
    width: 100%;
    height: auto;
}

.logo-ginkgo {
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.25));
    max-width: 280px;
    width: 100%;
    height: auto;
    will-change: transform;
}

.logo-path {
    fill: #FFFFFF;
}

.logo-path path {
    fill: #FFFFFF;
    opacity: 0;
    animation: fillDraw 3s ease-out forwards;
}

.logo-path path:first-child {
    animation-delay: 0.5s;
}

.logo-path path:last-child {
    animation-delay: 1s;
}

@keyframes fillDraw {
    to {
        opacity: 1;
    }
}

.hero-title {
    font-family: 'Fraunces', serif;
    font-size: clamp(2rem, 6vw, 4rem);
    margin-bottom: var(--spacing-lg);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    font-weight: 700;
    color: #FFFFFF;
}

.hero-title span {
    display: block;
    opacity: 0;
    transform: translateY(30px);
}

.hero-title .line-1 {
    animation: fadeInUp 1s ease-out 0.5s forwards;
    font-weight: 700;
}

.hero-title .line-2 {
    animation: fadeInUp 1s ease-out 0.7s forwards;
    font-weight: 500;
    font-size: 0.9em;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-cta {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1s forwards;
}

.cta-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--vert-profond);
    backdrop-filter: blur(10px);
    border: 1px solid var(--vert-profond);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-quick);
    color: #FFFFFF;
}

.cta-icon:hover {
    background: rgba(30, 91, 78, 0.9);
    transform: translateY(-5px);
}

.scroll-indicator {
    position: absolute;
    bottom: var(--spacing-lg);
    left: 50%;
    transform: translateX(-50%);
    color: #FFFFFF;
    animation: bounce 2s infinite;
    z-index: 4;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

.scroll-dot {
    animation: scrollDot 2s infinite;
}

@keyframes scrollDot {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(15px);
    }
    100% {
        transform: translateY(0);
    }
}

/* Responsive Hero - Mobile First */
@media (max-width: 768px) {
    .hero-content {
        max-width: 90%;
        padding: 0 var(--spacing-sm);
    }
    
    .hero-title {
        /* 25% reduction on mobile */
        font-size: clamp(1.5rem, 5vw, 3rem);
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    }
    
    .hero-title .line-2 {
        font-size: 0.85em; /* Slightly smaller than line-1 */
        font-weight: 400;
    }
    
    .logo-ginkgo {
        width: 120px;
        height: 120px;
    }
    
    .hero-cta {
        gap: var(--spacing-sm);
    }
    
    .cta-icon {
        width: 45px;
        height: 45px;
    }
}

@media (min-width: 769px) {
    .hero-title .line-2 {
        font-size: 0.9em;
        font-weight: 500;
    }
}

/* ===========================
   Univers Section
   =========================== */

.univers {
    padding: var(--spacing-xxl) 0;
    background: var(--blanc-casse);
}

.univers-grid {
    display: grid;
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
    /* Mobile: 2x2 grid */
    grid-template-columns: repeat(2, 1fr);
}

.univers-card {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    /* Mobile dimensions */
    height: 200px;
    /* Visible by default, GSAP will handle animation */
    opacity: 1;
    transform: translateY(0);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Couleurs des cartes */
.card-rose {
    background: linear-gradient(135deg, var(--rose-poudre) 0%, #F8E1E7 100%);
}

.card-terracotta {
    background: linear-gradient(135deg, var(--terracotta) 0%, #D4825A 100%);
}

.card-vert {
    background: linear-gradient(135deg, var(--vert-profond) 0%, #2C6B5C 100%);
}

.card-beige {
    background: linear-gradient(135deg, #F3EDE7 0%, #E8DDD5 100%);
}

.card-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: var(--spacing-md);
    text-align: center;
}

.card-rose .card-content,
.card-beige .card-content {
    color: var(--noir-doux);
}

.card-terracotta .card-content,
.card-vert .card-content {
    color: white;
}

.card-icon {
    margin-bottom: var(--spacing-sm);
    opacity: 0.9;
}

.card-title {
    font-family: 'Fraunces', serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 var(--spacing-xs) 0;
    line-height: 1.2;
}

.card-description {
    font-size: 0.9rem;
    font-weight: 400;
    margin: 0;
    opacity: 0.85;
    line-height: 1.3;
}

/* Hover effects */
.univers-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Desktop layout */
@media (min-width: 768px) {
    .univers-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: var(--spacing-md);
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .univers-card {
        height: 280px;
    }
    
    .card-title {
        font-size: 1.3rem;
    }
    
    .card-description {
        font-size: 1rem;
    }
}

/* ===========================
   Storytelling Section
   =========================== */

.storytelling {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(135deg, var(--blanc-casse) 0%, #F8F5F3 100%);
}

.story-content {
    display: grid;
    gap: var(--spacing-xl);
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.story-text {
    max-width: 600px;
}

.story-paragraphs {
    margin-top: var(--spacing-lg);
}

.story-intro {
    font-family: 'Fraunces', serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--terracotta);
    margin-bottom: var(--spacing-md);
    line-height: 1.5;
}

.story-paragraphs p {
    margin-bottom: var(--spacing-md);
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--noir-doux);
}

.story-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.story-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.laetitia-portrait {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease;
    will-change: transform;
}

.laetitia-portrait:hover {
    transform: scale(1.02);
}

@media (min-width: 768px) {
    .story-content {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-xxl);
    }
    
    .story-intro {
        font-size: 1.3rem;
    }
    
    .story-paragraphs p {
        font-size: 1.1rem;
    }
}

/* ===========================
   Pépites Section
   =========================== */

.pepites {
    padding: var(--spacing-xxl) 0;
    background: var(--blanc-casse);
}

.pepites-subtitle {
    font-family: 'Fraunces', serif;
    text-align: center;
    font-size: 1.1rem;
    color: var(--terracotta);
    margin-bottom: var(--spacing-sm);
    font-weight: 400;
}

p.pepites-description {
    text-align: center;
    font-family: 'Inter', sans-serif;
    color: var(--noir-doux);
    margin-bottom: var(--spacing-xl);
    font-size: var(--font-sm);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.618;
}

.pepites-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    max-width: 1200px;
    margin: 0 auto;
}

.pepite-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.pepite-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.pepite-image {
    aspect-ratio: 1;
    overflow: hidden;
}

.pepite-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.pepite-item:hover .pepite-image img {
    transform: scale(1.05);
}

.pepite-content {
    padding: var(--spacing-md);
    text-align: center;
}

.pepite-title {
    font-family: 'Fraunces', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--noir-doux);
    margin: 0 0 var(--spacing-xs) 0;
    line-height: 1.3;
}

.pepite-content .pepite-description {
    font-size: 0.95rem;
    color: var(--terracotta);
    margin: 0;
    font-weight: 400;
    opacity: 0.9;
}

/* Coming Soon Badge */
.pepite-image.coming-soon {
    position: relative;
}

.soon-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--terracotta);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 0.85rem;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.special-item .pepite-content {
    background: linear-gradient(135deg, var(--rose-poudre) 0%, var(--blanc-casse) 100%);
}

/* Styles pour affichage limité sur mobile */
.pepite-item.hidden {
    display: none;
}

.see-more-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    margin: var(--spacing-lg) auto 0;
    padding: var(--spacing-md) var(--spacing-xl);
    background: var(--terracotta);
    color: var(--blanc-casse);
    border: none;
    border-radius: 30px;
    font-family: 'Fraunces', serif;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 220px;
    box-shadow: 0 4px 20px rgba(201, 112, 74, 0.25);
    position: relative;
    overflow: hidden;
}

.see-more-btn:hover {
    background: var(--vert-profond);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 91, 78, 0.3);
}

.see-more-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(201, 112, 74, 0.3);
}

.see-more-btn svg {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.see-more-btn.expanded svg {
    transform: rotate(180deg);
}

.see-more-btn span {
    white-space: nowrap;
    font-weight: 500;
}

.see-more-btn.hidden {
    display: none;
}

@media (min-width: 768px) {
    .pepites-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-lg);
    }
    
    /* Afficher toutes les cartes sur desktop */
    .pepite-item.hidden {
        display: block;
    }
    
    /* Cacher le bouton sur desktop */
    .see-more-btn {
        display: none;
    }
    
    .pepite-title {
        font-size: 1.2rem;
    }
    
    .pepite-description {
        font-size: 1rem;
    }
}








/* ===========================
   Ambiance Section
   =========================== */

.ambiance {
    position: relative;
    height: 80vh;
    min-height: 500px;
    overflow: hidden;
}

.slideshow-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slideshow {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: slowZoom 10s ease-out infinite alternate;
}

@keyframes slowZoom {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.05);
    }
}

.slideshow-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 var(--spacing-lg);
    pointer-events: none;
}

.slideshow-controls button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--blanc-casse);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-quick);
    pointer-events: all;
    cursor: none;
}

.slideshow-controls button:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* ===========================
   About Compact Section
   =========================== */

.about-compact {
    padding: var(--spacing-lg) 0;
    background: var(--blanc-casse);
}

.about-content {
    display: grid;
    grid-template-columns: 236px 1fr;  /* 236px = base golden ratio proportion */
    gap: var(--spacing-lg);
    align-items: center;
    max-width: 1000px;  /* Golden ratio: 618px + 382px */
    margin: 0 auto;
}

.about-image {
    width: 236px;  /* Golden ratio proportion */
    height: 236px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, var(--rose-poudre) 0%, var(--blanc-casse) 100%);
    padding: 12px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.about-text {
    padding: 0;
}

.about-text .section-title {
    font-family: 'Fraunces', serif;
    color: var(--vert-profond);
    margin-bottom: var(--spacing-md);
    font-size: 2rem;
}

.about-lead {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--terracotta);
    margin-bottom: var(--spacing-sm);
    font-family: 'Inter', sans-serif;
}

.about-text p {
    font-family: 'Inter', sans-serif;
    color: var(--noir-doux);
    line-height: 1.6;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-lg);
    }
    
    .about-image {
        margin: 0 auto;
    }
}

/* ===========================
   Concept Store Section
   =========================== */

.concept-store {
    padding: var(--spacing-xxl) 0;
    background: var(--blanc-casse);
}

.concept-store .section-title {
    font-family: 'Fraunces', serif;
    color: var(--vert-profond);
    text-align: center;
    margin-bottom: var(--spacing-sm);
    font-size: clamp(var(--font-md), 4vw, var(--font-lg));
    line-height: 1.3;
}

.concept-subtitle {
    text-align: center;
    font-size: var(--font-base);
    color: var(--terracotta);
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    margin-bottom: var(--spacing-xl);
    letter-spacing: 0.02em;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.service-card {
    background: white;
    padding: var(--spacing-md) var(--spacing-sm);
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 62px;  /* Golden ratio: 100/1.618 */
    height: 62px;
    margin: 0 auto var(--spacing-sm);
    background: linear-gradient(135deg, var(--rose-poudre) 0%, rgba(245, 214, 220, 0.3) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon svg {
    color: var(--vert-profond);
}

.service-card h3 {
    font-family: 'Fraunces', serif;
    font-size: var(--font-base);
    color: var(--vert-profond);
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
}

.service-card p {
    font-family: 'Inter', sans-serif;
    color: var(--noir-doux);
    line-height: 1.618;  /* Golden ratio for line height */
    font-size: var(--font-sm);
    opacity: 0.8;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .service-card {
        padding: var(--spacing-md);
    }
}

/* ===========================
   Les petits plus Section
   =========================== */

.petits-plus {
    padding: var(--spacing-lg) 0;
    background: var(--blanc-casse);
}

.petits-plus .section-title {
    color: var(--vert-profond);
    margin-bottom: var(--spacing-lg);
}

.services-extra-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    max-width: 800px;
    margin: 0 auto;
}

.service-extra-card {
    background: white;
    padding: var(--spacing-lg);
    border-radius: 16px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.service-extra-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.12);
}

.service-extra-card.coming-soon {
    border: 2px dashed var(--rose-poudre);
    background: linear-gradient(135deg, rgba(245, 214, 220, 0.1) 0%, white 100%);
}

.soon-label {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--terracotta);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-family: 'Fraunces', serif;
    font-size: 0.75rem;
    font-weight: 600;
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--spacing-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--rose-poudre) 0%, var(--blanc-casse) 100%);
    border-radius: 50%;
}

.service-icon svg {
    color: var(--vert-profond);
}

.service-extra-title {
    font-family: 'Fraunces', serif;
    font-size: var(--font-base);
    color: var(--vert-profond);
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
}

.service-extra-description {
    font-family: 'Inter', sans-serif;
    font-size: var(--font-sm);
    color: var(--noir-doux);
    line-height: 1.618;
}

@media (max-width: 768px) {
    .services-extra-grid {
        grid-template-columns: 1fr;
    }
}

/* ===========================
   Carte Cadeau Compact Section
   =========================== */

.carte-cadeau-compact {
    padding: var(--spacing-lg) 0;
    background: linear-gradient(135deg, var(--rose-poudre) 0%, var(--blanc-casse) 100%);
}

.carte-cadeau-compact .section-title {
    font-size: clamp(var(--font-md), 4vw, var(--font-lg));
    color: var(--vert-profond);
    margin-bottom: var(--spacing-md);
}

.carte-cadeau-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: var(--spacing-lg);
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.gift-card-visual {
    display: flex;
    justify-content: center;
}

.gift-card-visual .gift-card {
    width: 240px;
    height: 150px;
    background: linear-gradient(135deg, var(--vert-profond) 0%, var(--terracotta) 100%);
    border-radius: 12px;
    padding: var(--spacing-md);
    color: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
}

.gift-card-visual .gift-card span {
    font-family: 'Fraunces', serif;
    font-size: var(--font-base);
    font-weight: 600;
}

.carte-cadeau-info {
    padding: 0;
}

.carte-cadeau-info .highlight {
    font-size: var(--font-base);
    font-weight: 500;
    color: var(--vert-profond);
    margin-bottom: var(--spacing-sm);
    font-family: 'Inter', sans-serif;
}

.carte-cadeau-info p {
    font-family: 'Inter', sans-serif;
    line-height: 1.618;
    color: var(--noir-doux);
    margin-bottom: var(--spacing-md);
    font-size: var(--font-sm);
}

.btn-compact {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm) var(--spacing-md);
    background: var(--vert-profond);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: var(--font-sm);
    transition: all 0.3s ease;
    box-shadow: 0 3px 15px rgba(30, 91, 78, 0.2);
}

.btn-compact:hover {
    background: var(--terracotta);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(201, 112, 74, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .carte-cadeau-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-md);
    }
    
    .gift-card-visual {
        margin: 0 auto;
    }
}

/* Old Carte Cadeau Section (keeping for reference) */
.carte-cadeau {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(135deg, var(--rose-poudre) 0%, var(--blanc-casse) 100%);
}

.carte-cadeau-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.carte-cadeau-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.gift-card-mockup {
    perspective: 1000px;
    transform: rotateY(-15deg) rotateX(5deg);
}

.gift-card {
    width: 320px;
    height: 200px;
    background: linear-gradient(135deg, var(--vert-profond) 0%, var(--terracotta) 100%);
    border-radius: 16px;
    padding: 2rem;
    color: white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.gift-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 1;
}

.gift-card-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    z-index: 2;
    position: relative;
}

.gift-card-title {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 1rem;
}

.gift-card-amount {
    font-family: 'Fraunces', serif;
    font-size: 1.75rem;
    font-weight: 700;
    z-index: 2;
    position: relative;
}

.gift-card-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    opacity: 0.9;
    font-style: italic;
    z-index: 2;
    position: relative;
}

.carte-cadeau-text .section-title {
    font-family: 'Fraunces', serif;
    color: var(--vert-profond);
    margin-bottom: var(--spacing-lg);
}

.carte-cadeau-description {
    margin-bottom: var(--spacing-xl);
}

.lead-text {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--vert-profond);
    margin-bottom: var(--spacing-md);
}

.carte-cadeau-description p {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--noir-doux);
    margin-bottom: var(--spacing-md);
}

.btn-carte-cadeau {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-lg);
    background: var(--vert-profond);
    color: white;
    text-decoration: none;
    border-radius: 40px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(30, 91, 78, 0.3);
}

.btn-carte-cadeau:hover {
    background: var(--terracotta);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(201, 112, 74, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .carte-cadeau-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        text-align: center;
    }
    
    .gift-card-mockup {
        transform: none;
    }
    
    .gift-card {
        width: 280px;
        height: 180px;
        margin: 0 auto;
    }
}

/* ===========================
   Horaires Section - Style Carte de Visite
   =========================== */

.horaires {
    padding: var(--spacing-xxl) 0;
    background: var(--blanc-casse);
}

.horaires-content {
    max-width: 500px;
    margin: 0 auto;
}

/* Layout deux colonnes pour desktop */
@media (min-width: 1024px) {
    .horaires-content {
        max-width: 1100px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: stretch;
    }
}

.horaires-info {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Titre du bloc */
.horaires .section-title {
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    color: #171717;
    margin-bottom: 2rem;
    text-align: center;
}

/* Tableau d'horaires */
.schedule {
    margin-bottom: 2rem;
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.4;
}

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

.day {
    font-weight: 400;
    color: #171717;
    text-align: left;
}

.hours {
    color: #1E5B4E;
    text-align: right;
    font-weight: 500;
}

/* Jours fermés */
.schedule-item.closed .day,
.schedule-item.closed .hours {
    color: #999;
}

.schedule-item.closed .hours {
    font-style: italic;
}

/* Adresse */
.address {
    margin-bottom: 2rem;
    text-align: center;
}

.address-line {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    line-height: 1.4;
    color: #171717;
    margin-bottom: 0.25rem;
}

/* Boutons CTA */
.access-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-access {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
}

/* Bouton Itinéraire */
.btn-access:first-child {
    background: #1E5B4E;
    color: white;
    border: 2px solid #1E5B4E;
}

.btn-access:first-child:hover {
    background: #154137;
    border-color: #154137;
    transform: translateY(-2px);
}

/* Bouton Instagram */
.btn-access:last-child {
    background: white;
    color: #B85C5C;
    border: 2px solid #F5D6DC;
}

.btn-access:last-child:hover {
    background: #F5D6DC;
    transform: translateY(-2px);
}

/* Bloc image pour desktop */
.horaires-image-bloc {
    background: white;
    padding: 0;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: none; /* Caché par défaut sur mobile */
}

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

/* Affichage du bloc image sur desktop */
@media (min-width: 1024px) {
    .horaires-image-bloc {
        display: block;
        height: 100%;
    }
}

/* Mobile responsive */
@media (max-width: 767px) {
    .horaires-info {
        padding: 2rem 1.5rem;
    }
    
    .access-buttons {
        flex-direction: column;
    }
    
    .btn-access {
        width: 100%;
    }
}





/* ===========================
   Reviews Section
   =========================== */

.reviews {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(
        180deg,
        var(--blanc-casse) 0%,
        var(--rose-poudre) 50%,
        var(--blanc-casse) 100%
    );
}

.reviews-placeholder {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.review-card {
    background: white;
    border-radius: 15px;
    padding: var(--spacing-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.stars {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-sm);
}

.review-text {
    font-style: italic;
    color: var(--gris-charbon);
    margin-bottom: var(--spacing-sm);
    line-height: 1.6;
}

.review-author {
    font-weight: 500;
    color: var(--vert-profond);
    font-size: 0.9rem;
}

.widget-setup {
    border-radius: 10px;
    line-height: 1.5;
}

.widget-setup a {
    color: var(--vert-profond);
    text-decoration: underline;
}

.widget-setup a:hover {
    color: var(--terracotta);
}

/* Styles pour le widget Trustindex - Intégration respectueuse */
.trustindex-widget {
    margin: var(--spacing-lg) 0;
}

/* Légères personnalisations pour l'harmonie visuelle */
.trustindex-widget [data-layout] {
    max-width: 100%;
}

/* Ajustements subtils pour s'harmoniser avec le design */
.trustindex-widget .ti-widget {
    font-family: 'Inter', sans-serif;
}

/* Responsive */
@media (max-width: 768px) {
    .trustindex-widget {
        margin: var(--spacing-md) 0;
    }
}

/* ===========================
   Footer
   =========================== */

.footer {
    padding: var(--spacing-lg) 0;
    background: #fde4e0;
    color: var(--noir-doux);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.footer-logo {
    color: var(--noir-doux);
}

.footer-info {
    text-align: center;
    font-size: 0.9rem;
}

.footer-socials a {
    color: var(--vert-profond);
    transition: var(--transition-quick);
}

.footer-socials a:hover {
    color: var(--rose-doux);
}

/* Floating Contacts Section Removed */

/* ===========================
   Responsive
   =========================== */

@media (max-width: 768px) {
    /* Typography adjustments */
    .hero-title {
        font-size: clamp(1.5rem, 8vw, 3rem) !important;
    }
    
    .section-title {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
        margin-bottom: var(--spacing-lg);
    }
    
    /* Hero adjustments */
    .hero {
        min-height: 100vh;
        min-height: 100dvh;
    }
    
    .hero-content {
        padding: var(--spacing-md);
    }
    
    .logo-container {
        margin-bottom: var(--spacing-md);
    }
    
    .logo-ginkgo {
        width: 120px;
        height: 120px;
    }
    
    .hero-cta {
        gap: var(--spacing-sm);
    }
    
    .cta-icon {
        width: 45px;
        height: 45px;
    }
    
    /* Grid adjustments */
    .horaires-content {
        grid-template-columns: 1fr;
    }
    
    .univers-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .univers-card {
        height: 250px;
    }
    
    .card-title {
        font-size: 1.4rem;
    }
    
    .card-description {
        font-size: 0.85rem;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
    }
    

    
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-xs);
    }
    
    /* Floating contacts section removed */
    
    /* Sections padding */
    .univers,
    .horaires,
    .reviews {
        padding: var(--spacing-xl) 0;
    }
    
    .reviews-placeholder {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    /* Container padding */
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    /* Map container */
    .map-container {
        height: 300px;
    }
    
    /* Slideshow controls */
    .slideshow-controls {
        padding: 0 var(--spacing-sm);
    }
    
    .slideshow-controls button {
        width: 40px;
        height: 40px;
    }
    
    /* Footer */
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-sm);
    }
}

/* ===========================
   Accessibility
   =========================== */

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Focus styles */
*:focus-visible {
    outline: 2px solid var(--vert-profond);
    outline-offset: 2px;
}

button:focus-visible {
    outline: 2px solid var(--blanc-casse);
}
/* ===========================
   About section without image
   =========================== */

.about-content.about-text-only {
    justify-content: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    display: block;
}

.about-content.about-text-only .about-text {
    max-width: 100%;
    text-align: center;
    padding: 0;
}

/* ===========================
   Devanture mobile
   =========================== */

.devanture-mobile {
    display: none;
    margin-top: 2rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.devanture-mobile img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .devanture-mobile {
        display: block;
    }
    
    .horaires-image-bloc {
        display: none;
    }
}
