@import url('/css/fonts.css');

/* ══════════════════════════════
   DESIGN TOKENS V2
   ══════════════════════════════ */
:root {
    /* ══ Encre & Papier — tokens du design system (design.md §4.1) ══
       Valeurs ESTIMÉES depuis le flyer : à ajuster ici, et seulement ici. */
    --ep-ink: #1F2E4D;
    --ep-ink-deep: #17233B;
    --ep-ink-soft: #4A556B;
    --ep-paper: #F4EEE2;
    --ep-sand: #ECE3D2;
    --ep-shell: #FBF8F2;
    --ep-gold: #C49A55;
    --ep-gold-hover: #D3AE6F;
    --ep-gold-deep: #8A6629;
    --ep-line: #DCD0BA;
    --ep-line-strong: #8F8676;
    --ep-cream: #F2ECE0;
    --ep-error: #A0432F;
    --ep-success: #52705E;

    /* Rayons, ombres, bordures (design.md §4.5) */
    --ep-radius-pill: 50px;
    --ep-radius-card: 16px;
    --ep-radius-sm: 12px;
    --ep-shadow-card: 0 8px 24px rgba(31,46,77,0.07);
    --ep-border-card: 1px solid var(--ep-line);
    --ep-border-field: 1px solid var(--ep-line-strong);

    /* ══ Anciens tokens V2 : conservés pour ne pas réécrire tout le CSS,
       mais chacun pointe désormais vers un token Encre & Papier
       (correspondance ancien → nouveau, design.md §4.2). ══ */
    /* Brand */
    --gold: var(--ep-gold);
    --gold-light: var(--ep-gold-hover);
    --gold-glow: var(--ep-gold);
    --gold-dark: var(--ep-gold-deep);
    --copper: var(--ep-gold);

    /* Ocean → encre */
    --ocean: var(--ep-ink);
    --ocean-light: var(--ep-ink);
    --ocean-deep: var(--ep-ink-deep);
    --midnight: var(--ep-ink-deep);

    /* Nature : le teal disparaît (bouton primaire encre) */
    --teal: var(--ep-ink);
    --teal-light: var(--ep-ink-deep);
    --sage: var(--ep-success);

    /* Neutrals */
    --sand: var(--ep-sand);
    --sand-dark: var(--ep-line);
    --cream: var(--ep-paper);
    --warm-white: var(--ep-paper);
    --charcoal: var(--ep-ink);
    --slate: var(--ep-ink-soft);
    --mist: var(--ep-ink-soft);
    --smoke: var(--ep-line-strong);
    --white: var(--ep-shell);

    /* Shadows : une seule ombre autorisée (cartes sur papier) */
    --shadow-sm: var(--ep-shadow-card);
    --shadow-md: var(--ep-shadow-card);
    --shadow-lg: var(--ep-shadow-card);
    --shadow-xl: var(--ep-shadow-card);
    --shadow-gold: none;

    /* Transitions */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ══════════════════════════════
   RESET & BASE
   ══════════════════════════════ */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

::selection {
    background: rgba(184,134,11,0.2);
    color: var(--ocean-deep);
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--gold), var(--copper));
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: var(--gold-dark); }

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--charcoal);
    line-height: 1.75;
    background: var(--cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a { text-decoration: none; color: inherit; transition: color 0.3s var(--ease-out-expo); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* ══════════════════════════════
   UTILITY
   ══════════════════════════════ */
.container { max-width: 1600px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 60px); }

.overline {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--copper);
    margin-bottom: 16px;
    position: relative;
    padding-left: 36px;
}
.overline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 24px;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), var(--copper));
}

/* ══════════════════════════════
   SCROLL ANIMATIONS
   ══════════════════════════════ */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
.fade-in.delay-1 { transition-delay: 0.1s; }
.fade-in.delay-2 { transition-delay: 0.2s; }
.fade-in.delay-3 { transition-delay: 0.3s; }
.fade-in.delay-4 { transition-delay: 0.4s; }

.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}
.fade-in-left.visible { opacity: 1; transform: translateX(0); }

.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}
.fade-in-right.visible { opacity: 1; transform: translateX(0); }

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}
.scale-in.visible { opacity: 1; transform: scale(1); }

/* ══════════════════════════════
   ANIMATIONS
   ══════════════════════════════ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(184,134,11,0.2); }
    50% { box-shadow: 0 0 40px rgba(184,134,11,0.4); }
}
@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
@keyframes scroll-hint {
    0% { opacity: 0; transform: translateY(-8px); }
    40% { opacity: 1; }
    80% { opacity: 0; transform: translateY(8px); }
    100% { opacity: 0; }
}
@keyframes rotate-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ══════════════════════════════
   HEADER
   ══════════════════════════════ */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    overflow: visible;
    background: rgba(253,252,249,0.85);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid rgba(184,134,11,0.08);
    transition: all 0.5s var(--ease-out-expo);
}
.header.scrolled {
    background: rgba(253,252,249,0.95);
    box-shadow: var(--shadow-md);
    border-bottom-color: rgba(184,134,11,0.12);
}
.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    padding-bottom: 14px;
}
.logo { display: flex; align-items: center; position: relative; z-index: 1001; }
.logo img {
    height: 55px;
    width: auto;
    transition: all 0.4s var(--ease-out-expo);
}
@media (max-width: 768px) {
    .logo img {
        height: 52px;
        margin-top: 0;
        margin-bottom: 0;
    }
}
.logo:hover img { opacity: 0.85; transform: scale(1.02); }

.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-links a {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--slate);
    text-transform: uppercase;
    letter-spacing: 1.8px;
    padding: 10px 16px;
    border-radius: 8px;
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}
.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0; left: 50%; right: 50%;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--copper));
    transition: all 0.4s var(--ease-out-expo);
    border-radius: 2px;
}
.nav-links a:hover { color: var(--ocean); background: rgba(20,56,93,0.04); }
.nav-links a:hover::before,
.nav-links a.active::before { left: 16px; right: 16px; }
.nav-links a.active { color: var(--ocean); }
.nav-links a.nav-cta {
    background: var(--gold);
    color: var(--white);
    border-radius: 50px;
    margin-left: 8px;
}
.nav-links a.nav-cta::before { display: none; }
.nav-links a.nav-cta:hover,
.nav-links a.nav-cta.active { background: var(--gold-dark); color: var(--white); }

.hamburger { display: none; flex-direction: column; cursor: pointer; gap: 6px; padding: 8px; border-radius: 8px; transition: background 0.3s; }
.hamburger:hover { background: rgba(20,56,93,0.05); }
.hamburger span {
    width: 26px; height: 2px;
    background: var(--ocean);
    transition: all 0.4s var(--ease-out-expo);
    border-radius: 2px;
    display: block;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* ══════════════════════════════
   HERO (home)
   ══════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(184,134,11,0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(20,56,93,0.3) 0%, transparent 50%),
        linear-gradient(180deg, rgba(6,14,26,0.3) 0%, rgba(11,29,53,0.5) 40%, rgba(11,29,53,0.85) 100%),
        url('/images/home/hero-bg.jpeg') center/cover no-repeat;
    transform: scale(1.05);
    animation: fadeIn 2s ease;
}
.hero::after {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(circle at 25% 25%, rgba(184,134,11,0.08) 0%, transparent 40%),
        radial-gradient(circle at 75% 75%, rgba(42,124,111,0.06) 0%, transparent 40%);
    pointer-events: none;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    padding: 0 5%;
    animation: fadeUp 1.2s var(--ease-out-expo) 0.3s both;
}
.hero-badge {
    display: inline-block;
    padding: 10px 28px;
    border: 1px solid rgba(200,149,108,0.4);
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 36px;
    backdrop-filter: blur(12px);
    background: rgba(184,134,11,0.08);
    animation: float 4s ease-in-out infinite;
}
.hero h1, .hero h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 300;
    line-height: 1.12;
    margin-bottom: 24px;
    letter-spacing: -1px;
}
.hero h1 em, .hero h2 em {
    font-style: italic;
    font-weight: 400;
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--copper), var(--gold-light));
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 5s linear infinite;
}
.hero p {
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 44px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255,255,255,0.75);
    line-height: 1.85;
    letter-spacing: 0.2px;
}
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.4);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}
.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, rgba(200,149,108,0.6), transparent);
    position: relative;
    overflow: hidden;
}
.hero-scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    width: 100%;
    height: 50%;
    background: var(--gold-light);
    animation: scroll-hint 2s ease-in-out infinite;
}

.hero-wave {
    position: absolute;
    bottom: -2px; left: 0; right: 0;
    z-index: 3;
    line-height: 0;
}
.hero-wave svg { width: 100%; height: auto; }
.hero-wave path { fill: var(--cream); }

/* ══════════════════════════════
   HERO CAROUSEL (home)
   ══════════════════════════════ */
.hero-carousel::before { content: none; }
.carousel-slides { position: absolute; inset: 0; z-index: 0; }
.carousel-slide {
    position: absolute; inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
}
.carousel-slide.active { opacity: 1; }
.carousel-slide::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(6,14,26,0.4) 0%, rgba(11,29,53,0.6) 55%, rgba(11,29,53,0.9) 100%);
}
.slide-parcs { background: linear-gradient(135deg, var(--ocean-deep), var(--ocean)); }
.slide-degustation { background: linear-gradient(135deg, var(--teal), var(--ocean-deep)); }
.slide-cabane { background: linear-gradient(135deg, var(--gold-dark), var(--ocean-deep)); }
.carousel-slide-label {
    position: absolute;
    z-index: 1;
    top: 150px; left: 24px;
    display: inline-block;
    padding: 8px 18px;
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 30px;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--white);
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(6px);
}
.carousel-dots {
    position: absolute;
    bottom: 150px; left: 0; right: 0;
    z-index: 4;
    display: flex;
    gap: 10px;
    justify-content: center;
}
.carousel-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    padding: 0;
    transition: all 0.3s;
}
.carousel-dot.active { background: var(--gold); width: 28px; border-radius: 6px; }

/* ── BUTTONS ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 34px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 1px;
    transition: all 0.4s var(--ease-out-expo);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}
.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.4s;
}
.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--copper));
    background-size: 200% 200%;
    color: var(--white);
    box-shadow: var(--shadow-gold);
    animation: gradient-shift 4s ease infinite;
}
.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(184,134,11,0.4);
}
.btn-gold:active { transform: translateY(-1px); }

.btn-outline-light {
    background: rgba(255,255,255,0.05);
    border: 1.5px solid rgba(255,255,255,0.3);
    color: var(--white);
    backdrop-filter: blur(8px);
}
.btn-outline-light:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.6);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255,255,255,0.1);
}

.btn-teal {
    background: linear-gradient(135deg, var(--teal), var(--teal-light));
    color: var(--white);
    box-shadow: 0 6px 20px rgba(42,124,111,0.3);
}
.btn-teal:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(42,124,111,0.4);
}

/* ══════════════════════════════
   SECTION TITLES
   ══════════════════════════════ */
section { padding: clamp(80px, 12vw, 140px) 0; }

.section-title { text-align: center; margin-bottom: 64px; }
.section-title h1, .section-title h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--ocean);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}
.section-title p {
    color: var(--mist);
    font-size: 1rem;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}
.section-title .underline {
    width: 60px; height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--copper));
    margin: 24px auto 0;
    border-radius: 2px;
    position: relative;
}
.section-title .underline::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 8px; height: 8px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(184,134,11,0.4);
}

/* ══════════════════════════════
   ADN SECTION
   ══════════════════════════════ */
.adn {
    background: var(--white);
    position: relative;
    overflow: hidden;
}
.adn::before {
    content: '';
    position: absolute;
    top: -30%; right: -15%;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(184,134,11,0.05) 0%, transparent 60%);
    border-radius: 50%;
    animation: rotate-slow 60s linear infinite;
}
.adn::after {
    content: '';
    position: absolute;
    bottom: -20%; left: -10%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(42,124,111,0.04) 0%, transparent 60%);
    border-radius: 50%;
}

.adn-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.adn-card {
    text-align: center;
    padding: 48px 28px;
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.5s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}
.adn-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(184,134,11,0), rgba(184,134,11,0.3), rgba(184,134,11,0));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s;
}
.adn-card:hover::before { opacity: 1; }
.adn-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(184,134,11,0.2);
}
.adn-icon {
    width: 76px; height: 76px;
    background: linear-gradient(135deg, rgba(20,56,93,0.1), rgba(20,56,93,0.03));
    border: 1px solid rgba(20,56,93,0.2);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    font-size: 1.6rem;
    color: var(--ocean);
    transition: all 0.5s var(--ease-out-expo);
}
.adn-card:hover .adn-icon {
    background: linear-gradient(135deg, var(--gold), var(--copper));
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 8px 24px rgba(184,134,11,0.3);
    transform: scale(1.05);
}
.adn-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 14px;
    color: var(--ocean);
    letter-spacing: 0.2px;
}
.adn-card p {
    color: var(--slate);
    font-size: 0.85rem;
    line-height: 1.75;
}
.icon-mask {
    display: block;
    width: 36px; height: 36px;
    background-color: var(--ocean);
    -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
    -webkit-mask-position: center; mask-position: center;
    -webkit-mask-size: contain; mask-size: contain;
    transition: background-color 0.5s;
}
.adn-card:hover .icon-mask { background-color: var(--white); }

/* ══════════════════════════════
   SAVOIR-FAIRE TEASER
   ══════════════════════════════ */
.sf-teaser {
    background: var(--sand);
    position: relative;
}
.sf-teaser::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--sand-dark), transparent);
}
.sf-teaser-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.sf-teaser-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 400;
    color: var(--ocean);
    margin-bottom: 24px;
    line-height: 1.25;
}
.sf-teaser-text p {
    color: var(--slate);
    margin-bottom: 28px;
    font-size: 0.95rem;
    line-height: 1.8;
}
.sf-teaser-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.sf-teaser-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    border: 1px solid rgba(184,134,11,0.15);
    pointer-events: none;
}
.sf-teaser-image img {
    width: 100%; height: 440px;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out-expo);
}
.sf-teaser-image:hover img { transform: scale(1.04); }
.sf-teaser.on-white { background: var(--white); }
.sf-teaser.on-white::before { background: linear-gradient(90deg, transparent, rgba(0,0,0,0.06), transparent); }
.sf-teaser-content.reverse { direction: rtl; }
.sf-teaser-content.reverse > * { direction: ltr; }

/* ══════════════════════════════
   PRODUCTS GRID (home)
   ══════════════════════════════ */
.product-highlight { background: var(--cream); }

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}
.product-card {
    border-radius: 20px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.5s var(--ease-out-expo);
    box-shadow: var(--shadow-sm);
}
.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(184,134,11,0.2);
}
.product-card .card-img {
    overflow: hidden;
    position: relative;
}
.product-card .card-img::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 40%;
    background: linear-gradient(transparent, rgba(0,0,0,0.05));
    pointer-events: none;
}
.product-card img {
    width: 100%; height: 220px;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out-expo);
}
.product-card:hover img { transform: scale(1.08); }
.product-card .card-body { padding: 28px; text-align: center; }
.product-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--ocean);
    margin-bottom: 10px;
}
.product-card p {
    color: var(--mist);
    font-size: 0.85rem;
    line-height: 1.65;
}

/* ══════════════════════════════
   CABANE TEASER (home)
   ══════════════════════════════ */
.cabane-teaser {
    background: var(--sand);
    position: relative;
}
.cabane-teaser-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.cabane-teaser-image {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-lg);
}
.cabane-teaser-image::after {
    content: '';
    position: absolute; inset: 0;
    border-radius: 20px;
    border: 1px solid rgba(184,134,11,0.15);
    pointer-events: none;
}
.cabane-teaser-image img {
    width: 100%; height: 440px;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out-expo);
}
.cabane-teaser-image:hover img { transform: scale(1.04); }

.cabane-teaser-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 2.6rem);
    font-weight: 400;
    color: var(--ocean);
    margin-bottom: 20px;
}
.cabane-teaser-text p {
    color: var(--slate);
    font-size: 0.95rem;
    margin-bottom: 28px;
    line-height: 1.8;
}
.cabane-info {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
    padding: 24px;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid rgba(184,134,11,0.1);
    box-shadow: var(--shadow-sm);
}
.cabane-info-item {
    display: flex;
    gap: 14px;
    align-items: baseline;
}
.cabane-info-item strong {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--ocean);
    min-width: 80px;
}
.cabane-info-item span {
    color: var(--slate);
    font-size: 0.9rem;
}

/* ══════════════════════════════
   HISTORY / STATS
   ══════════════════════════════ */
.history {
    background: var(--sand);
    position: relative;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 940px;
    margin: 0 auto;
}
.stat {
    text-align: center;
    padding: 36px 24px;
    background: var(--white);
    border-radius: 20px;
    border: 1px solid rgba(184,134,11,0.1);
    transition: all 0.5s var(--ease-out-expo);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}
.stat::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--copper));
    transform: scaleX(0);
    transition: transform 0.5s var(--ease-out-expo);
    transform-origin: left;
}
.stat:hover::before { transform: scaleX(1); }
.stat:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}
.stat .number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--copper));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}
.stat .label {
    font-size: 0.75rem;
    color: var(--mist);
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

/* ══════════════════════════════
   CHAIN GRID (savoir-faire)
   ══════════════════════════════ */
.chain-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.chain-step {
    text-align: center;
    padding: 40px 24px;
    background: var(--white);
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.5s var(--ease-out-expo);
    position: relative;
    box-shadow: var(--shadow-sm);
}
.chain-step:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(184,134,11,0.2);
}
.chain-number {
    width: 52px; height: 52px;
    background: linear-gradient(135deg, var(--gold), var(--copper));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    margin: 0 auto 22px;
    box-shadow: 0 6px 16px rgba(184,134,11,0.3);
    transition: all 0.4s var(--ease-out-expo);
}
.chain-step:hover .chain-number {
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(184,134,11,0.4);
}
.chain-step h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--ocean);
    margin-bottom: 12px;
}
.chain-step p {
    color: var(--slate);
    font-size: 0.88rem;
    line-height: 1.75;
}

/* ══════════════════════════════
   PAGE HERO (sub pages)
   ══════════════════════════════ */
.page-hero {
    position: relative;
    text-align: center;
    padding: 180px 5% 100px;
    background: var(--ocean-deep);
    color: var(--white);
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 20% 40%, rgba(184,134,11,0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 60%, rgba(42,124,111,0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(20,56,93,0.3) 0%, transparent 60%);
}
.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 200px;
    background: linear-gradient(transparent, rgba(11,29,53,0.4));
    pointer-events: none;
}
.page-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 300;
    margin-bottom: 16px;
    position: relative;
    letter-spacing: -0.5px;
    animation: fadeUp 0.8s var(--ease-out-expo) both;
}
.page-hero p {
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(255,255,255,0.5);
    position: relative;
    animation: fadeUp 0.8s var(--ease-out-expo) 0.15s both;
}
.page-hero .wave-bottom {
    position: absolute;
    bottom: -2px; left: 0; right: 0;
    line-height: 0;
    z-index: 1;
}
.page-hero .wave-bottom svg { width: 100%; }
.page-hero .wave-bottom path { fill: var(--cream); }

/* ══════════════════════════════
   SUB-NAV (ancres de page)
   ══════════════════════════════ */
.subnav {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin: -20px 0 50px;
}
.subnav a {
    padding: 10px 24px;
    border-radius: 30px;
    border: 1.5px solid var(--gold);
    color: var(--ocean);
    font-weight: 600;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}
.subnav a:hover { background: var(--gold); color: var(--white); }

/* ══════════════════════════════
   CONTENT SECTIONS
   ══════════════════════════════ */
.content-section { padding: 100px 0; }
.content-section.alt {
    background: var(--sand);
    position: relative;
}
.content-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    margin-bottom: 40px;
}
.content-block.reverse { direction: rtl; }
.content-block.reverse > * { direction: ltr; }
.content-block h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem;
    font-weight: 500;
    color: var(--ocean);
    margin-bottom: 20px;
    line-height: 1.25;
    letter-spacing: -0.3px;
}
.content-block p {
    color: var(--slate);
    margin-bottom: 16px;
    font-size: 0.95rem;
    line-height: 1.8;
}
.content-block img {
    border-radius: 20px;
    width: 100%; height: 360px;
    object-fit: cover;
    border: 1px solid rgba(184,134,11,0.1);
    box-shadow: var(--shadow-md);
    transition: all 0.6s var(--ease-out-expo);
}
.content-block img:hover {
    box-shadow: var(--shadow-xl);
    transform: scale(1.02);
}

/* ══════════════════════════════
   PROCESS STEPS (savoir-faire)
   ══════════════════════════════ */
.process-steps { position: relative; padding-left: 40px; }
.process-steps::before {
    content: '';
    position: absolute;
    left: 32px; top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--gold), var(--copper), rgba(184,134,11,0.1));
}
.step {
    display: grid;
    grid-template-columns: 65px 1fr;
    gap: 30px;
    margin-bottom: 48px;
    position: relative;
    align-items: start;
}
.step-number {
    width: 65px; height: 65px;
    background: var(--white);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gold-dark);
    position: relative;
    z-index: 1;
    transition: all 0.4s var(--ease-out-expo);
    box-shadow: var(--shadow-sm);
}
.step:hover .step-number {
    background: linear-gradient(135deg, var(--gold), var(--copper));
    color: var(--white);
    border-color: transparent;
    box-shadow: var(--shadow-gold);
    transform: scale(1.08);
}
.step-content {
    background: var(--white);
    padding: 32px 36px;
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.4s var(--ease-out-expo);
    box-shadow: var(--shadow-sm);
}
.step:hover .step-content {
    box-shadow: var(--shadow-lg);
    border-color: rgba(184,134,11,0.15);
}
.step-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--ocean);
    margin-bottom: 10px;
}
.step-content p {
    color: var(--slate);
    font-size: 0.92rem;
    line-height: 1.75;
}
.step-img {
    margin-top: 18px;
    border-radius: 12px;
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    border: 1px solid rgba(184,134,11,0.1);
}

/* ══════════════════════════════
   CABANE FEATURES
   ══════════════════════════════ */
.cabane-features {
    background: var(--ocean-deep);
    position: relative;
    overflow: hidden;
}
.cabane-features::before {
    content: '';
    position: absolute;
    top: -30%; left: -15%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(184,134,11,0.06) 0%, transparent 60%);
    border-radius: 50%;
}
.cabane-features::after {
    content: '';
    position: absolute;
    bottom: -20%; right: -10%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(42,124,111,0.05) 0%, transparent 60%);
    border-radius: 50%;
}
.cabane-features .section-title h1, .cabane-features .section-title h2 { color: var(--white); }
.cabane-features .section-title p { color: rgba(255,255,255,0.45); }

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.feature-card {
    padding: 44px 36px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    backdrop-filter: blur(12px);
    transition: all 0.5s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 0;
    background: linear-gradient(180deg, var(--gold), var(--copper));
    transition: height 0.5s var(--ease-out-expo);
    border-radius: 0 2px 2px 0;
}
.feature-card:hover::before { height: 100%; }
.feature-card:hover {
    transform: translateY(-6px);
    background: rgba(255,255,255,0.06);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}
.feature-icon {
    font-size: 2.2rem;
    margin-bottom: 20px;
    display: block;
}
.feature-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 12px;
}
.feature-card p {
    color: rgba(255,255,255,0.45);
    font-size: 0.88rem;
    line-height: 1.75;
}

/* ══════════════════════════════
   CABANE INFO CARDS
   ══════════════════════════════ */
.cabane-info-section { background: var(--cream); }
.info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.info-card {
    text-align: center;
    padding: 44px 28px;
    background: var(--white);
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.5s var(--ease-out-expo);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}
.info-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--copper));
    transform: scaleX(0);
    transition: transform 0.5s var(--ease-out-expo);
}
.info-card:hover::after { transform: scaleX(1); }
.info-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}
.info-icon {
    font-size: 1.8rem;
    width: 68px; height: 68px;
    background: linear-gradient(135deg, var(--ocean), var(--ocean-light));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    color: var(--white);
    box-shadow: 0 6px 16px rgba(20,56,93,0.25);
    transition: all 0.4s var(--ease-out-expo);
}
.info-card:hover .info-icon {
    transform: scale(1.08);
    box-shadow: 0 8px 24px rgba(20,56,93,0.35);
}
.info-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--ocean);
    margin-bottom: 12px;
}
.info-card p {
    color: var(--slate);
    font-size: 0.9rem;
    line-height: 1.75;
}
.info-card a { color: var(--ocean); font-weight: 600; transition: color 0.3s; }
.info-card a:hover { color: var(--gold); }

/* ══════════════════════════════
   CABANE VISUAL PLACEHOLDERS
   ══════════════════════════════ */
.cabane-visual {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    height: 360px;
    box-shadow: var(--shadow-lg);
}
.cabane-visual--terrace {
    background:
        radial-gradient(ellipse at 30% 70%, rgba(184,134,11,0.25) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 30%, rgba(42,124,111,0.2) 0%, transparent 50%),
        linear-gradient(160deg, var(--ocean-deep), var(--ocean), var(--teal));
}
.cabane-visual--engagement {
    background:
        radial-gradient(ellipse at 60% 40%, rgba(200,149,108,0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 80%, rgba(42,124,111,0.15) 0%, transparent 50%),
        linear-gradient(135deg, var(--ocean), var(--ocean-deep), #1a3a5c);
}
.cabane-visual-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    padding: 32px;
}
.cabane-visual-icon {
    font-size: 3.5rem;
    margin-bottom: 16px;
    opacity: 0.8;
    animation: float 5s ease-in-out infinite;
}
.cabane-visual-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 400;
    font-style: italic;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.5px;
}
.cabane-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    pointer-events: none;
}

/* ══════════════════════════════
   MARCHES TABLE
   ══════════════════════════════ */
.marches-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 40px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.marches-table th,
.marches-table td {
    padding: 20px 32px;
    text-align: left;
}
.marches-table th {
    background: var(--ocean-deep);
    color: var(--gold-light);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.marches-table td {
    background: var(--white);
    border-bottom: 1px solid rgba(0,0,0,0.03);
    font-size: 0.95rem;
    color: var(--slate);
    transition: all 0.4s var(--ease-out-expo);
}
.marches-table tr:last-child td { border-bottom: none; }
.marches-table tbody tr:hover td {
    background: var(--sand);
    color: var(--ocean);
    padding-left: 36px;
}

/* ══════════════════════════════
   CONTACT
   ══════════════════════════════ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}
.contact-info-card {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 16px;
    padding: 24px 28px;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.4s var(--ease-out-expo);
    box-shadow: var(--shadow-sm);
}
.contact-info-card:hover {
    border-color: rgba(184,134,11,0.2);
    box-shadow: var(--shadow-md);
    transform: translateX(6px);
}
.contact-icon {
    width: 54px; height: 54px;
    background: linear-gradient(135deg, var(--ocean), var(--ocean-light));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(20,56,93,0.2);
}
.contact-info-card strong {
    color: var(--ocean);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-form {
    background: var(--white);
    padding: 44px;
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: var(--shadow-md);
}
.form-group { margin-bottom: 24px; }
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--ocean);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px 20px;
    border: 1.5px solid rgba(0,0,0,0.08);
    border-radius: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.92rem;
    transition: all 0.4s var(--ease-out-expo);
    background: var(--cream);
    color: var(--charcoal);
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(184,134,11,0.08);
    background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-group input.is-invalid,
.form-group textarea.is-invalid {
    border-color: #c0392b;
    box-shadow: 0 0 0 4px rgba(192,57,43,0.08);
}

.alert {
    padding: 18px 24px;
    border-radius: 14px;
    margin-bottom: 24px;
    font-size: 0.9rem;
    line-height: 1.6;
}
.alert-success {
    background: rgba(42,124,111,0.06);
    color: var(--teal);
    border: 1px solid rgba(42,124,111,0.15);
}
.alert-error {
    background: rgba(192,57,43,0.06);
    color: #c0392b;
    border: 1px solid rgba(192,57,43,0.15);
}

/* ══════════════════════════════
   LEGAL (mentions)
   ══════════════════════════════ */
.legal-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--ocean);
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(184,134,11,0.15);
}
.legal-text {
    color: var(--slate);
    margin-bottom: 32px;
    font-size: 0.95rem;
    line-height: 1.8;
}

/* ══════════════════════════════
   FOOTER
   ══════════════════════════════ */
.footer {
    background: var(--ep-ink-deep);
    color: var(--ep-cream);
    padding: 64px 0 30px;
    position: relative;
}
.footer-organic-top {
    line-height: 0;
}
.footer-organic-top svg { display: block; width: 100%; height: 44px; }
.footer-organic-top path { fill: var(--ep-ink-deep); }
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 48px;
}
.footer h4 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--ep-cream);
    margin-bottom: 20px;
    font-size: 1.375rem; /* 22px */
    font-weight: 600;
    letter-spacing: 0;
}
.footer .footer-brand {
    font-size: 1.375rem; /* 22px, borne mini du token "brand" */
    letter-spacing: 0.15em;
    text-transform: uppercase;
}
.footer p, .footer a {
    color: var(--ep-cream);
    font-size: 0.9375rem; /* 15px, token "small" */
    line-height: 1.55;
}
.footer a:hover { color: var(--ep-gold-hover); }
.footer-links a {
    display: block;
    padding: 5px 0;
    transition: color 0.2s ease;
    position: relative;
}
.footer-links a:hover { color: var(--ep-gold); }
.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}
.footer-contact-item:has(br) { align-items: flex-start; }
.footer-icon {
    flex-shrink: 0;
    width: 20px; height: 20px;
    color: var(--ep-gold);
}
.footer-icon svg { width: 100%; height: 100%; }
.footer-bottom {
    border-top: 1px solid rgba(242,236,224,0.15);
    padding-top: 28px;
    text-align: center;
    font-size: 0.8125rem; /* 13px, token "legal" */
    line-height: 1.5;
    color: rgba(242,236,224,0.6);
}
.footer-bottom a { color: rgba(242,236,224,0.7); }
.footer-bottom a:hover { color: var(--ep-gold); }

/* ══════════════════════════════
   CTA BAND
   ══════════════════════════════ */
.cta-band {
    background: linear-gradient(135deg, var(--ocean), var(--ocean-deep));
    padding: 72px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-band::before {
    content: '';
    position: absolute;
    top: -50%; left: -20%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(184,134,11,0.08) 0%, transparent 50%);
    border-radius: 50%;
    animation: rotate-slow 40s linear infinite;
}
.cta-band::after {
    content: '';
    position: absolute;
    bottom: -40%; right: -10%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(42,124,111,0.06) 0%, transparent 50%);
    border-radius: 50%;
}
.cta-band h2 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--white);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 400;
    margin-bottom: 10px;
    position: relative;
}
.cta-band p {
    color: rgba(255,255,255,0.5);
    margin-bottom: 32px;
    position: relative;
    font-size: 1rem;
}

/* ══════════════════════════════
   SCROLL PROGRESS BAR
   ══════════════════════════════ */
.scroll-progress {
    position: fixed;
    top: 0; left: 0;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--copper));
    z-index: 1001;
    transition: width 0.1s linear;
}

/* ══════════════════════════════
   RESPONSIVE
   ══════════════════════════════ */
@media (max-width: 1024px) {
    .nav-links { gap: 2px; }
    .nav-links a { font-size: 0.7rem; padding: 8px 10px; letter-spacing: 1px; }
    .adn-grid { grid-template-columns: repeat(2, 1fr); }
    .chain-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .hamburger { display: flex; }
    .nav-links {
        display: none;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(6,14,26,0.97);
        backdrop-filter: blur(24px);
        flex-direction: column;
        padding: 100px 40px 40px;
        justify-content: center;
        gap: 0;
        z-index: -1;
    }
    .nav-links.active { display: flex; z-index: 999; }
    .nav-links a {
        font-size: 1.2rem;
        padding: 20px 0;
        color: rgba(255,255,255,0.7);
        border-bottom: 1px solid rgba(255,255,255,0.06);
        text-align: center;
        letter-spacing: 3px;
    }
    .nav-links a:hover,
    .nav-links a.active { color: var(--gold-light); background: transparent; }
    .nav-links a::before { display: none; }
    .nav-links a.nav-cta {
        background: var(--gold);
        color: var(--midnight);
        border-radius: 50px;
        border-bottom: none;
        margin: 16px 0 0;
        padding: 16px 0;
    }
    .nav-links a.nav-cta:hover,
    .nav-links a.nav-cta.active { background: var(--gold-light); color: var(--midnight); }

    .hero { min-height: 90vh; }
    .hero h1, .hero h2 { font-size: clamp(2rem, 8vw, 2.8rem); }
    .hero-scroll { display: none; }
    .carousel-slide-label { top: 100px; left: 16px; font-size: 0.58rem; padding: 5px 12px; letter-spacing: 0.5px; }
    .carousel-dots { bottom: 90px; }

    .sf-teaser-content,
    .cabane-teaser-content,
    .content-block,
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .content-block.reverse,
    .sf-teaser-content.reverse { direction: ltr; }

    .adn-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .chain-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .products-grid { grid-template-columns: 1fr 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .info-cards { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }

    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-organic-top svg { height: 22px; }
    .footer .footer-brand { font-size: 1.375rem; }
    .footer a.footer-phone { font-size: 1.125rem; }
    .process-steps { padding-left: 0; }
    .process-steps::before { left: 32px; }
    .step { grid-template-columns: 55px 1fr; gap: 20px; }
    .step-number { width: 55px; height: 55px; font-size: 1.2rem; }
    .step-content { padding: 24px; }

    .cabane-visual { height: 280px; }

    .marches-table th,
    .marches-table td { padding: 14px 18px; font-size: 0.88rem; }

    .page-hero { padding: 140px 5% 80px; }
}

@media (max-width: 480px) {
    .products-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .stat { padding: 24px 16px; }
    .stat .number { font-size: 2.4rem; }

    .contact-form { padding: 28px 20px; }
    .hero-badge { font-size: 0.65rem; letter-spacing: 2px; padding: 8px 20px; }
}


/* ══════════════════════════════════════════════════════════════
   ENCRE & PAPIER — surcharges (design.md, 17/09/2026)
   Placées après les règles d'origine pour prendre le dessus.
   Ne modifie ni la grille, ni les points de rupture, ni les composants :
   seulement couleurs, typographie, ornements, transitions de sections.
   ══════════════════════════════════════════════════════════════ */

/* ── Base ── */
::-webkit-scrollbar-thumb { background: var(--ep-line-strong); }
::-webkit-scrollbar-thumb:hover { background: var(--ep-ink-soft); }
::selection { background: rgba(196,154,85,0.25); color: var(--ep-ink); }
body {
    font-size: 1.0625rem;           /* body : 17 px */
    line-height: 1.65;
    color: var(--ep-ink-soft);
    background: var(--ep-paper);
}
h1, h2, h3, h4 { color: var(--ep-ink); }
.scroll-progress { background: var(--ep-gold); }

/* Focus visible (design.md §4.1 états) */
a:focus-visible, button:focus-visible { outline: 2px solid var(--ep-ink); outline-offset: 2px; }
.hero a:focus-visible, .hero button:focus-visible, .footer a:focus-visible { outline-color: var(--ep-gold); }

/* ── Ornements (design.md §5) ── */
/* Filet à losange : 1 px or, 120 px (88 mobile, 80 en tête de carte), losange 6 × 6 px */
.rule, .section-title .underline {
    position: relative;
    width: 120px; height: 1px;
    background: var(--ep-gold);
    margin: 20px auto 48px;
    border-radius: 0;
}
.rule::after, .section-title .underline::after {
    content: '';
    position: absolute;
    left: 50%; top: 50%;
    width: 6px; height: 6px;
    background: var(--ep-gold);
    border-radius: 0;
    box-shadow: none;
    transform: translate(-50%, -50%) rotate(45deg);
}
.rule-card { display: block; width: 80px; margin: 0 auto 24px; }
/* Filet court aligné : 40 px au-dessus d'un titre aligné à gauche (24 px au-dessus des labels de chiffres) */
.rule-short { display: block; width: 40px; height: 1px; background: var(--ep-gold); margin: 0 0 20px; }
.rule-short.rule-xs { width: 24px; margin: 14px auto 8px; }

/* Accroche encadrée (tagline entre deux filets or) */
.tagline {
    display: flex; align-items: center; justify-content: center; gap: 16px;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic; font-weight: 500;
    font-size: 1.5rem; line-height: 1.3;
    color: var(--ep-gold);
    text-transform: none; letter-spacing: 0;
    margin: 0 0 28px;
}
.tagline::before, .tagline::after { content: ''; flex: 0 0 40px; height: 1px; background: var(--ep-gold); }
.tagline-light { color: var(--ep-gold-deep); }   /* sur fond clair : gold-deep, ≥ 24 px */

/* Bord organique : transition encre ↔ clair, uniquement là (3 profils A, B, C) */
.edge {
    position: absolute; left: 0; right: 0;
    line-height: 0; pointer-events: none; z-index: 3;
}
.edge svg { display: block; width: 100%; height: 24px; }
.edge path { fill: var(--ep-ink); }
.edge-deep path { fill: var(--ep-ink-deep); }
.edge-bottom { top: 100%; }                        /* l'encre déborde sous la section encre */
.edge-top { top: 0; transform: translateY(-100%); } /* l'encre déborde au-dessus de la section encre */
.edge-hang { top: 0; }                             /* placé dans la section claire, sous une section encre à overflow caché */
.edge .brush { fill-opacity: 0.45; }

/* ── Typographie (design.md §4.4) ── */
.section-title { margin-bottom: 48px; }
.section-title h1, .section-title h2 {
    font-weight: 600;
    font-size: clamp(2rem, 3vw, 2.625rem);          /* h2 : 42 / 32 px */
    line-height: 1.15; letter-spacing: 0;
    color: var(--ep-ink);
    margin-bottom: 0;
}
.section-title h1 em, .section-title h2 em { font-style: normal; font-weight: inherit; color: inherit; }
.section-title p {
    font-size: 1.125rem;                             /* body-lg */
    line-height: 1.6; color: var(--ep-ink-soft);
    max-width: 720px;
}
.section-title .underline { margin: 20px auto 0; }
.section-title .underline + p { margin-top: 24px; }

/* ── Header (design.md §6.8) ── */
.header { background: rgba(255,255,255,0.94); border-bottom: 1px solid var(--ep-line); }   /* fond blanc : choix du graphiste */
.header.scrolled { background: rgba(255,255,255,0.98); box-shadow: none; border-bottom-color: var(--ep-line); }
.nav-links a {
    font-size: 0.8125rem; font-weight: 500;          /* nav : 13 px */
    letter-spacing: 0.1em; color: var(--ep-ink);
    border-radius: 0; padding: 10px 12px;
    transition: color 0.18s ease;
}
.nav-links a::before { background: var(--ep-gold); height: 1px; border-radius: 0; }
.nav-links a:hover { color: var(--ep-ink); background: transparent; }
.nav-links a:hover::before, .nav-links a.active::before { left: 12px; right: 12px; }
.nav-links a.nav-cta {                               /* seul item distingué : bouton secondaire compact */
    background: transparent; color: var(--ep-ink);
    border: 1.5px solid var(--ep-ink); border-radius: var(--ep-radius-pill);
    padding: 8px 18px; margin-left: 12px;
    transition: background 0.18s ease;
}
.nav-links a.nav-cta:hover, .nav-links a.nav-cta.active { background: rgba(31,46,77,0.06); color: var(--ep-ink); }
.nav-phone { display: none; }
.hamburger span { background: var(--ep-ink); }
.hamburger:hover { background: rgba(31,46,77,0.06); }

/* ── Boutons (design.md §6.1) ── */
.btn {
    font-size: 0.875rem; font-weight: 600;           /* button : 14 px */
    letter-spacing: 0.08em; line-height: 1;
    min-height: 44px; padding: 14px 32px;
    border-radius: var(--ep-radius-pill);
    box-shadow: none; transform: none; animation: none;
    transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.btn::after { content: none; }
.btn:hover, .btn:active { transform: none; box-shadow: none; }
.btn:active { filter: brightness(0.95); }
.btn[disabled], .btn.disabled { opacity: 0.4; pointer-events: none; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
/* Primaire sur encre : aplat or, texte encre */
.btn-gold { background: var(--ep-gold); color: var(--ep-ink); }
.btn-gold:hover { background: var(--ep-gold-hover); box-shadow: none; }
/* Secondaire sur encre : contour crème */
.btn-outline-light { background: transparent; border: 1.5px solid var(--ep-cream); color: var(--ep-cream); backdrop-filter: none; -webkit-backdrop-filter: none; }
.btn-outline-light:hover { background: rgba(242,236,224,0.1); border-color: var(--ep-cream); box-shadow: none; }
/* Primaire sur clair : aplat encre, texte crème (remplace le teal) */
.btn-teal, .btn-ink { background: var(--ep-ink); color: var(--ep-cream); box-shadow: none; }
.btn-teal:hover, .btn-ink:hover { background: var(--ep-ink-deep); box-shadow: none; }
/* Secondaire sur clair : contour encre */
.btn-outline-ink { background: transparent; border: 1.5px solid var(--ep-ink); color: var(--ep-ink); }
.btn-outline-ink:hover { background: rgba(31,46,77,0.06); }

/* ── Hero (design.md §7.2) ── */
.hero { color: var(--ep-cream); }
.hero::after { content: none; }
.carousel-slide::before {                           /* voile encre-profond de lisibilité (seul dégradé autorisé) */
    background: linear-gradient(180deg, rgba(23,35,59,0.45) 0%, rgba(23,35,59,0.68) 55%, rgba(23,35,59,0.92) 100%);
}
.hero-content { animation: none; }
.hero h1, .hero h2 {
    font-weight: 600;                                /* display : 60 / 40 px */
    font-size: clamp(2.5rem, 4.5vw, 3.75rem);
    line-height: 1.1; letter-spacing: 0;
    color: var(--ep-cream);
    margin-bottom: 24px;
}
.hero h1 em, .hero h2 em {                          /* display-accent : une seule fois par page */
    font-style: italic; font-weight: 500;
    background: none; -webkit-background-clip: initial; background-clip: initial;
    -webkit-text-fill-color: var(--ep-gold); color: var(--ep-gold);
    animation: none;
}
.hero p {
    font-size: 1.125rem; font-weight: 400;           /* body-lg */
    line-height: 1.6; letter-spacing: 0;
    color: var(--ep-cream);
    margin-bottom: 40px;
}
.hero .tagline { margin-bottom: 32px; }
.carousel-dot { background: rgba(242,236,224,0.4); }
.carousel-dot.active { background: var(--ep-gold); }
.hero-wave path { fill: var(--ep-paper); }

/* ── Chiffres clés (design.md §6.4) ── */
.stat {
    background: var(--ep-shell);
    border-radius: 8px;                            /* cartes : 8 px (demande d'Alexis, 18/09) */
    border: var(--ep-border-card); box-shadow: none;
    padding: 32px 20px; overflow: visible;
    transition: none;
}
.stat::before { content: none; }
.stat:hover { transform: none; box-shadow: none; border-color: var(--ep-line); }
.stat .number {
    font-size: 3rem; font-weight: 600; line-height: 1;   /* stat : 48 / 40 px */
    background: none; -webkit-background-clip: initial; background-clip: initial;
    -webkit-text-fill-color: var(--ep-ink); color: var(--ep-ink);
    font-variant-numeric: lining-nums tabular-nums;
}
.stat .label {
    font-size: 0.8125rem; font-weight: 600;          /* label : 13 / 12 px */
    letter-spacing: 0.12em; color: var(--ep-ink-soft);
    margin-top: 0;
}

/* ── Blocs image + texte (Marchés) : titre aligné, filet court ── */
.about-text h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600; font-size: clamp(2rem, 3vw, 2.625rem);
    line-height: 1.15; color: var(--ep-ink);
    margin-bottom: 20px;
}
.about-text h3::before { content: ''; display: block; width: 40px; height: 1px; background: var(--ep-gold); margin-bottom: 20px; }
.about-text p { font-size: 1.0625rem; line-height: 1.65; color: var(--ep-ink-soft); max-width: 36em; }
.about-image { border-radius: 0; }                 /* photos coins carrés partout (demande d'Alexis, 18/09) */
.about-image::after { content: none; }
.about-image img { transition: none; }
.about-image:hover img { transform: none; }

/* ── Bande Cabane (design.md §7.2, refonte) ── */
.cabane-band {                                   /* fond #f5f5f5 : demande d'Alexis du 18/09 (hors palette design.md, assumé) */
    background: #F5F5F5;
    color: var(--ep-ink-soft);
    position: relative;
    text-align: center;
}
.cabane-band .tagline { color: var(--ep-gold-deep); }   /* or sur clair : gold-deep, ≥ 24 px */
.cabane-band .container-narrow { max-width: 760px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 40px); }
.cabane-band h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600; font-size: clamp(2rem, 3vw, 2.625rem);
    line-height: 1.15; color: var(--ep-ink);
    margin: 0;
}
.cabane-band .rule { margin: 20px auto 32px; }
.cabane-band .cabane-texte { font-size: 1.0625rem; line-height: 1.6; color: var(--ep-ink-soft); margin: 0 auto 18px; max-width: 760px; }  /* 3 lignes max centrées */
.cabane-band .cabane-horaires { font-size: 1.0625rem; line-height: 1.6; color: var(--ep-ink); font-weight: 500; margin: 0 auto 32px; }
.cabane-band h2 { margin-bottom: 24px; }
.cabane-photo { margin: 0 0 40px; border-radius: 0; overflow: hidden; aspect-ratio: 21 / 9; }
.cabane-photo img { width: 100%; height: 100%; object-fit: cover; }
.statement {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700; font-size: clamp(1.5rem, 2.5vw, 2.125rem); /* statement : 34 / 24 px */
    line-height: 1.15; letter-spacing: 0.06em; text-transform: uppercase;
    color: var(--ep-ink);
    margin: 0 0 28px;
}
.cabane-band .btn-gold { background: var(--ep-ink); color: var(--ep-cream); }   /* primaire sur clair */
.cabane-band .btn-gold:hover { background: var(--ep-ink-deep); }
.cabane-pratique {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 36px;
    margin-top: 40px; padding-top: 32px;
    border-top: 1px solid var(--ep-line);
}
.cabane-pratique > * { display: inline-flex; align-items: center; gap: 10px; color: var(--ep-ink-soft); font-size: 1.0625rem; }
.cabane-pratique svg { width: 22px; height: 22px; color: var(--ep-ink); flex-shrink: 0; }   /* icônes sur clair : encre */
.cabane-pratique a:hover { color: var(--ep-ink); }
.cabane-pratique .phone {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600; font-size: 1.75rem; letter-spacing: 0.04em;  /* phone : 28 / 24 px */
    color: var(--ep-gold-deep); font-variant-numeric: lining-nums tabular-nums;
}
.cabane-pratique .phone:hover { color: var(--ep-ink); }

/* Cabane en desktop : texte à gauche, photo à droite en bord perdu avec fondu vers l'encre
   (référence : cadre Figma Mercier « Vente de véhicules aux enchères », images de référence de la maquette) */
.cabane-photo-desktop { display: none; }
@media (min-width: 769px) {
    .cabane-band { text-align: left; padding: 0; }
    .cabane-split {
        position: relative;
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        min-height: 440px;
        max-width: 1600px; margin: 0 auto;
    }
    .cabane-band .cabane-texte-col {
        max-width: none; margin: 0;
        padding: clamp(56px, 6vw, 80px) clamp(32px, 4vw, 64px) clamp(56px, 6vw, 80px) clamp(20px, 5vw, 60px);
        display: flex; flex-direction: column; align-items: flex-start; justify-content: center;
    }
    .cabane-band .tagline { justify-content: flex-start; }
    .cabane-band .tagline::after { display: none; }        /* filet court à gauche, comme un titre aligné */
    .cabane-band h2 { max-width: 16em; }
    .cabane-band .rule { margin: 20px 0 32px; }
    .cabane-band .cabane-texte { margin: 0 0 16px; max-width: 34em; }
    .cabane-band .cabane-horaires { margin: 0 0 28px; }
    .cabane-photo-mobile { display: none; }
    .cabane-band .cabane-pratique { justify-content: flex-start; flex-direction: column; align-items: flex-start; gap: 14px; width: 100%; }
    .cabane-photo-desktop { display: block; position: relative; min-height: 100%; }
    .cabane-photo-desktop img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
    .cabane-photo-desktop::after {                   /* fondus vers le fond #f5f5f5 : horizontal (gauche) + vertical (haut), cf. image de référence Mercier */
        content: ''; position: absolute; inset: 0; pointer-events: none;
        background:
            linear-gradient(180deg,
                #F5F5F5 0%, rgba(245,245,245,0.85) 8%, rgba(245,245,245,0.55) 18%, rgba(245,245,245,0.25) 28%, rgba(245,245,245,0) 40%),
            linear-gradient(90deg,
                #F5F5F5 0%, rgba(245,245,245,0.96) 10%, rgba(245,245,245,0.85) 22%, rgba(245,245,245,0.62) 36%,
                rgba(245,245,245,0.35) 50%, rgba(245,245,245,0.14) 62%, rgba(245,245,245,0) 74%);
    }
}
@media (min-width: 1601px) {
    /* au-delà du conteneur, la photo continue jusqu'au bord droit de l'écran */
    .cabane-split { max-width: none; }
    .cabane-band .cabane-texte-col { padding-left: max(clamp(20px, 5vw, 60px), calc((100vw - 1600px) / 2 + 60px)); }
}

/* ── Footer (design.md §7.2) ── */
.footer { padding-top: 72px; }
.footer-organic-top { display: none; }
.footer a.footer-phone {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600; font-size: 1.75rem; line-height: 1.2; letter-spacing: 0.04em;
    color: var(--ep-gold); font-variant-numeric: lining-nums tabular-nums;
}
.footer a.footer-phone:hover { color: var(--ep-gold-hover); }
.footer .footer-brand a:hover { color: var(--ep-cream); }

/* ── Responsive (design.md §8) ── */
@media (max-width: 768px) {
    .edge svg { height: 12px; }
    .rule, .section-title .underline { width: 88px; }
    .rule-short { width: 40px; }
    .tagline { font-size: 1.375rem; flex-wrap: wrap; }
    .tagline::before, .tagline::after { display: none; }   /* accroche sans filets si elle passe sur 2 lignes */
    .section-title h1, .section-title h2, .about-text h3, .cabane-band h2 { font-size: 2rem; }
    .hero h1, .hero h2 { font-size: 2.5rem; }
    .hero p { font-size: 1.0625rem; text-align: left; }
    .section-title p, .about-text p { text-align: left; }   /* mobile : > 2 lignes → aligné à gauche */
    .stat .number { font-size: 2.5rem; }
    .stat .label { font-size: 0.75rem; }
    .statement { font-size: 1.5rem; }
    .cabane-band .cabane-texte, .cabane-band .cabane-horaires { text-align: left; font-size: 1.0625rem; }
    .cabane-photo { aspect-ratio: 4 / 3; border-radius: 0; margin-left: calc(-1 * clamp(20px, 5vw, 40px)); margin-right: calc(-1 * clamp(20px, 5vw, 40px)); }
    .cabane-pratique { flex-direction: column; align-items: flex-start; gap: 14px; text-align: left; }
    .cabane-pratique .phone { font-size: 1.5rem; }

    /* Menu mobile : fond papier, texte encre, téléphone en bas du panneau */
    .nav-links { background: rgba(255,255,255,0.98); backdrop-filter: none; -webkit-backdrop-filter: none; }
    .nav-links a { color: var(--ep-ink); border-bottom: 1px solid var(--ep-line); letter-spacing: 0.1em; font-size: 1rem; }
    .nav-links a:hover, .nav-links a.active { color: var(--ep-ink); }
    .nav-links a.nav-cta { background: var(--ep-ink); color: var(--ep-cream); border: none; margin: 20px 0 0; padding: 16px 0; }
    .nav-links a.nav-cta:hover, .nav-links a.nav-cta.active { background: var(--ep-ink-deep); color: var(--ep-cream); }
    .nav-phone { display: block; margin-top: auto; padding-top: 24px; }
    .nav-links a.nav-phone-link {
        font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: 1.5rem;
        letter-spacing: 0.04em; text-transform: none; border: none; color: var(--ep-ink);
    }
}
@media (max-width: 480px) {
    .hero-buttons { flex-direction: column; align-items: stretch; }
    .hero-buttons .btn, .cabane-band .btn, .about-text .btn { width: 100%; justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
    .carousel-slide { transition: none; }
    .hero-content, .hero::before { animation: none; }
}


/* ══════════════════════════════════════════════════════════════
   ENCRE & PAPIER — pages internes (design.md + taste.md, 18/09/2026)
   Nos huîtres, Notre histoire, Nos marchés, La Cabane, Nous contacter.
   Mêmes principes que l'accueil : encre réservée au bandeau de page et au
   footer, fonds papier / sable alternés, ornements or, aucune animation
   d'apparition, aucune icône décorative, cartes seulement quand l'item
   est comparable isolément (taste.md §3-4).
   ══════════════════════════════════════════════════════════════ */

/* Animations d'apparition au défilement retirées (design.md §9) */
.fade-in, .fade-in-left, .fade-in-right, .scale-in { opacity: 1; transform: none; transition: none; }

/* ── Bandeau de page : aplat encre, bord organique A vers le papier ── */
.page-hero {
    background: var(--ep-ink);
    color: var(--ep-cream);
    overflow: visible;
    padding: 176px 5% 96px;
}
.page-hero::before, .page-hero::after { content: none; }
.page-hero h1 {
    font-weight: 600;                                /* display : 60 / 40 px */
    font-size: clamp(2.5rem, 4.5vw, 3.75rem);
    line-height: 1.1; letter-spacing: 0;
    color: var(--ep-cream);
    margin: 0 auto 16px; max-width: 14em;
    animation: none;
}
.page-hero p {
    font-size: 1.125rem; font-weight: 400;           /* body-lg */
    line-height: 1.6;
    color: var(--ep-cream);
    max-width: 720px; margin: 0 auto;
    animation: none;
}
.page-hero .wave-bottom { display: none; }

/* ── Sections de contenu ── */
.content-section { padding: clamp(80px, 8vw, 104px) 0; }
.content-section.alt { background: var(--ep-sand); }
.content-block { margin-bottom: 0; }
.content-block + .content-block { margin-top: 80px; }
.content-block h3 {                                  /* titre aligné : filet court + h2 (design.md §6.5) */
    font-weight: 600; font-size: clamp(2rem, 3vw, 2.625rem);
    line-height: 1.15; letter-spacing: 0;
    color: var(--ep-ink);
    margin-bottom: 20px;
}
.content-block h3::before { content: ''; display: block; width: 40px; height: 1px; background: var(--ep-gold); margin-bottom: 20px; }
.content-block p { font-size: 1.0625rem; line-height: 1.65; color: var(--ep-ink-soft); margin-bottom: 16px; max-width: 36em; }
.content-block p:last-child { margin-bottom: 0; }
.content-block .overline { display: none; }          /* pas de label en capitales au-dessus des titres (design.md §4.4) */
.content-media { border-radius: 0; overflow: hidden; }                /* photos sans rayon (demande d'Alexis, 18/09) */
.content-block img {
    display: block; height: 400px;
    border-radius: 0; border: none;
    box-shadow: none; transition: none;
}
.content-block img:hover { transform: none; box-shadow: none; }
.section-title + .content-block { margin-top: 0; }

/* ── Bande d'appel (fin de page) : fond clair, un seul bouton primaire ── */
.cta-band { background: var(--ep-sand); padding: clamp(80px, 8vw, 104px) 0; overflow: visible; }
.cta-band--paper { background: var(--ep-paper); }
.cta-band::before, .cta-band::after { content: none; }
.cta-band h2 {
    font-weight: 600; font-size: clamp(2rem, 3vw, 2.625rem);
    line-height: 1.15; letter-spacing: 0;
    color: var(--ep-ink);
    margin: 0 auto; max-width: 720px;
}
.cta-band .rule { margin: 20px auto 24px; }
.cta-band p { font-size: 1.125rem; line-height: 1.6; color: var(--ep-ink-soft); margin: 0 auto 36px; max-width: 720px; }
.cta-band .hero-buttons { justify-content: center; }

/* ── Étapes numérotées (Notre histoire) : colonnes sans carte, regroupées par proximité (taste.md §4) ── */
.chain-grid { gap: 48px 40px; }
.chain-step {
    text-align: left; padding: 0;
    background: transparent; border: none; border-radius: 0;
    box-shadow: none; transition: none;
}
.chain-step:hover { transform: none; box-shadow: none; border-color: transparent; }
.chain-number {
    width: auto; height: auto; display: block;
    background: none; border-radius: 0; box-shadow: none; transition: none;
    font-size: 3rem; font-weight: 600; line-height: 1;   /* stat : 48 / 40 px */
    color: var(--ep-ink); font-variant-numeric: lining-nums tabular-nums;
    margin: 0 0 16px;
}
.chain-number::after { content: ''; display: block; width: 24px; height: 1px; background: var(--ep-gold); margin-top: 14px; }
.chain-step:hover .chain-number { transform: none; box-shadow: none; }
.chain-step h3 { font-size: 1.625rem; font-weight: 600; line-height: 1.2; color: var(--ep-ink); margin-bottom: 10px; }
.chain-step p { font-size: 0.9375rem; line-height: 1.55; color: var(--ep-ink-soft); }

/* ── Tableau des marchés : liste courte → aérée, en-tête séparé par un filet or, zébrure sans filets (taste.md §1, §4) ── */
.marches-table {
    margin: 0 auto; max-width: 820px;
    border-radius: 0; box-shadow: none; overflow: visible;
}
.marches-table th {
    background: transparent; color: var(--ep-ink-soft);
    font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.12em;   /* label */
    padding: 0 20px 14px;
    border-bottom: 1px solid var(--ep-gold);
}
.marches-table td {
    background: transparent; border-bottom: none;
    font-size: 1.0625rem; color: var(--ep-ink-soft);
    padding: 18px 20px; vertical-align: middle;
    transition: none;
}
.marches-table td:first-child { color: var(--ep-ink); font-weight: 500; }
.marches-table tbody tr:hover td { background: transparent; color: var(--ep-ink-soft); padding-left: 20px; }
.marches-table tbody tr:hover td:first-child { color: var(--ep-ink); }
.marches-table tbody tr:nth-child(even) td, .marches-table tbody tr:nth-child(even):hover td { background: var(--ep-shell); }
.marches-table .cell { display: inline-flex; align-items: flex-start; gap: 10px; }
.marches-table .cell svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--ep-ink); margin-top: 3px; }   /* icônes d'info pratique : encre sur clair */

/* ── Bloc de réassurance (Nos marchés « Pourquoi acheter chez nous ») : comme les engagements de l'accueil (taste.md §10.1) ── */
.adn { background: var(--ep-paper); overflow: visible; }
.adn::before, .adn::after { content: none; }
.adn-grid { gap: 40px; }
.adn-grid--3 { grid-template-columns: repeat(3, 1fr); max-width: 1100px; margin: 0 auto; }
.adn-card {
    padding: 0 20px;
    background: transparent; border: none; border-radius: 0;
    box-shadow: none; transition: none; overflow: visible;
}
.adn-card::before { content: none; }
.adn-card:hover { transform: none; box-shadow: none; border-color: transparent; }
.adn-icon { width: 64px; height: 64px; background: none; border: none; border-radius: 0; margin: 0 auto 22px; transition: none; }
.adn-card:hover .adn-icon { background: none; box-shadow: none; transform: none; border-color: transparent; }
.adn-icon .icon-mask, .adn-card:hover .icon-mask { width: 100%; height: 100%; background-color: var(--ep-ink); transition: none; }
.adn-card h3 { font-size: 1.625rem; font-weight: 600; line-height: 1.2; letter-spacing: 0; color: var(--ep-ink); margin-bottom: 10px; }
.adn-card p { font-size: 0.9375rem; line-height: 1.55; color: var(--ep-ink-soft); }

/* ── La Cabane, « Ce qui vous attend » : cartes sur sable → surface shell, bordure line, filet à losange en tête (design.md §6.3) ── */
.cabane-features { background: var(--ep-sand); overflow: visible; }
.cabane-features::before, .cabane-features::after { content: none; }
.cabane-features .section-title h2 { color: var(--ep-ink); }
.cabane-features .section-title p { color: var(--ep-ink-soft); }
.features-grid { gap: 24px; }
.feature-card {
    padding: 36px 32px 40px; text-align: center;
    background: var(--ep-shell); border: var(--ep-border-card); border-radius: 8px;   /* cartes : 8 px */
    backdrop-filter: none; -webkit-backdrop-filter: none;
    transition: none; overflow: visible;
}
.feature-card::before { content: none; }
.feature-card:hover { transform: none; background: var(--ep-shell); box-shadow: none; }
.feature-icon { display: none; }
.feature-card h3 { font-size: 1.625rem; font-weight: 600; line-height: 1.2; color: var(--ep-ink); margin-bottom: 12px; }
.feature-card p { font-size: 0.9375rem; line-height: 1.55; color: var(--ep-ink-soft); max-width: 34em; margin: 0 auto; }

/* ── La Cabane, « Informations pratiques » : trois colonnes sans carte, icônes encre, téléphone en Cormorant ── */
.cabane-info-section { background: var(--ep-sand); }
.info-cards { gap: 40px; max-width: 1100px; margin: 0 auto; }
.info-card {
    padding: 0 20px;
    background: transparent; border: none; border-radius: 0;
    box-shadow: none; transition: none; overflow: visible;
}
.info-card::after { content: none; }
.info-card:hover { transform: none; box-shadow: none; }
.info-icon {
    width: 24px; height: 24px; font-size: 0;
    background: none; border-radius: 0; box-shadow: none; transition: none;
    color: var(--ep-ink); margin: 0 auto 16px;
}
.info-card:hover .info-icon { transform: none; box-shadow: none; }
.info-icon svg { width: 24px; height: 24px; }
.info-card h3 { font-size: 1.625rem; font-weight: 600; line-height: 1.2; color: var(--ep-ink); margin-bottom: 10px; }
.info-card p { font-size: 1.0625rem; line-height: 1.6; color: var(--ep-ink-soft); }
.info-card a { color: var(--ep-ink); font-weight: 500; transition: color 0.18s ease; }
.info-card a:hover { color: var(--ep-ink-deep); }
.info-card a.phone, .contact-info-card a.phone {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600; font-size: 1.75rem; line-height: 1.2; letter-spacing: 0.04em;   /* phone : 28 / 24 px */
    color: var(--ep-gold-deep); font-variant-numeric: lining-nums tabular-nums;
}
.info-card a.phone:hover, .contact-info-card a.phone:hover { color: var(--ep-ink); }

/* ── Contact : coordonnées sans carte à gauche, formulaire sur carte shell à droite (design.md §6.9) ── */
.contact-grid { align-items: start; }
.contact-info-card {
    padding: 0; margin-bottom: 28px; gap: 16px; align-items: flex-start;
    background: transparent; border: none; border-radius: 0;
    box-shadow: none; transition: none;
}
.contact-info-card:hover { transform: none; box-shadow: none; border-color: transparent; }
.contact-icon {
    width: 24px; height: 24px; font-size: 0; margin-top: 2px;
    background: none; border-radius: 0; box-shadow: none;
    color: var(--ep-ink);
}
.contact-icon svg { width: 24px; height: 24px; }
.contact-info-card > div:last-child { font-size: 1.0625rem; line-height: 1.6; color: var(--ep-ink); }
.contact-info-card strong {
    display: block; margin-bottom: 4px;
    font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.12em;   /* label */
    color: var(--ep-ink-soft);
}
.contact-info-card a { color: var(--ep-ink); transition: color 0.18s ease; }
.contact-info-card a:hover { color: var(--ep-ink-deep); }
.contact-form {
    background: var(--ep-shell); padding: 44px;
    border-radius: 8px; border: none;                /* cartes : 8 px */
    box-shadow: var(--ep-shadow-card);
}
.form-group label {
    font-size: 0.875rem; font-weight: 500;           /* label de champ : sans 14 px 500 encre */
    text-transform: none; letter-spacing: 0;
    color: var(--ep-ink); margin-bottom: 8px;
}
.form-group input, .form-group textarea, .form-group select {
    min-height: 48px; padding: 12px 16px;
    border: var(--ep-border-field); border-radius: var(--ep-radius-sm);
    background: var(--ep-shell); color: var(--ep-ink);
    font-size: 1rem;
    transition: border-color 0.18s ease;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: 2px solid var(--ep-ink); outline-offset: 2px;
    border-color: var(--ep-line-strong); box-shadow: none; background: var(--ep-shell);
}
.form-group input.is-invalid, .form-group textarea.is-invalid { border-color: var(--ep-error); box-shadow: none; }
.alert { border-radius: var(--ep-radius-sm); font-size: 0.9375rem; }
.alert-success { background: transparent; color: var(--ep-success); border: 1px solid var(--ep-success); }
.alert-error { background: transparent; color: var(--ep-error); border: 1px solid var(--ep-error); }
.contact-form .btn { width: 100%; justify-content: center; }
.contact-rgpd { margin-top: 20px; font-size: 0.9375rem; line-height: 1.55; color: var(--ep-ink-soft); }   /* small */

/* ── Responsive (design.md §8) ── */
@media (max-width: 1024px) {
    .adn-grid--3 { grid-template-columns: repeat(3, 1fr); }
    .chain-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .page-hero { padding: 128px 5% 64px; }
    .page-hero h1 { font-size: 2.5rem; }
    .page-hero p { font-size: 1.0625rem; }
    .content-section { padding: 64px 0; }
    .content-block + .content-block { margin-top: 56px; }
    .content-block h3, .cta-band h2 { font-size: 2rem; }
    .content-block p { text-align: left; }
    /* image au-dessus du texte, en bord perdu sans rayon (choix du graphiste, cf. accueil) */
    .content-block .content-media { order: -1; border-radius: 0; margin: 0 calc(-1 * clamp(20px, 5vw, 60px)); }
    .content-block img { height: 260px; border-radius: 0; }
    .adn-grid--3 { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .chain-grid { grid-template-columns: 1fr; gap: 36px; max-width: none; }
    .chain-step p, .feature-card p, .info-card p { text-align: left; }
    .feature-card { text-align: left; padding: 28px 24px 32px; }
    .feature-card .rule-card { margin-left: 0; }
    .feature-card p { margin: 0; }
    .info-card, .adn-card { padding: 0; }
    .marches-table th, .marches-table td { padding: 14px 12px; font-size: 1rem; }
    .marches-table tbody tr:hover td { padding-left: 12px; }
    .contact-form { padding: 32px 24px; }
    .info-card a.phone, .contact-info-card a.phone { font-size: 1.5rem; }
}
@media (max-width: 480px) {
    .cta-band .hero-buttons { flex-direction: column; align-items: stretch; }
    .cta-band .btn { width: 100%; justify-content: center; }
}

/* ══════════════════════════════════════════════════════════════
   PAGE D'ACCUEIL — réglages propres à la page (Encre & Papier, design.md §7)
   Anciennement dans un <style> inline de templates/v2/pages/home.html.twig.
   Doit rester après les surcharges ci-dessus pour garder la même cascade.
   ══════════════════════════════════════════════════════════════ */
.v2-home-legacy .values { background: var(--ep-paper); position: relative; overflow: visible; }
.v2-home-legacy .values::before { content: none; }
.v2-home-legacy .history { background: #F5F5F5; padding-bottom: clamp(40px, 6vw, 70px); }   /* demande d'Alexis du 18/09 : gris clair, padding bas réduit de moitié (section = clamp(80px, 12vw, 140px)) */
.v2-home-legacy .marches-teaser { background: var(--ep-paper); }
.v2-home-legacy .about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.v2-home-legacy .about-content.reverse { direction: rtl; }
.v2-home-legacy .about-content.reverse > * { direction: ltr; }
.v2-home-legacy .about-text p { margin-bottom: 18px; }
.v2-home-legacy .about-image { position: relative; border-radius: 0; overflow: hidden; }   /* photos coins carrés partout (18/09) */
.v2-home-legacy .about-image img { width: 100%; height: 480px; object-fit: cover; }

/* Nos engagements : bloc de réassurance (taste.md §10.1) — pas de carte, icône nettement plus grande
   que sa légende (~3-4 × la hauteur du texte), en couleur de marque même au repos, légende courte centrée */
.v2-home-legacy .values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.v2-home-legacy .value-card {
    text-align: center;
    padding: 0 20px;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
}
.v2-home-legacy .value-icon { width: 64px; height: 64px; margin: 0 auto 22px; }
.v2-home-legacy .value-icon .icon-mask { width: 100%; height: 100%; background-color: var(--ep-ink); transition: none; }
.v2-home-legacy .value-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.625rem;            /* h3 : 26 / 24 px */
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 12px;
    color: var(--ep-ink);
}
.v2-home-legacy .value-card p { color: var(--ep-ink-soft); font-size: 0.9375rem; line-height: 1.55; }

/* Notre histoire : chapô en Cormorant 500, suite en corps ; chiffres clés 2 × 2 */
.v2-home-legacy .history-content { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.v2-home-legacy .history-text { order: 2; }   /* demande d'Alexis du 18/09 : chiffres clés à gauche, texte à droite (ordre inchangé en mobile) */
.v2-home-legacy .history-text p { color: var(--ep-ink-soft); margin-bottom: 18px; }
.v2-home-legacy .history-text p:first-child {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500; font-size: 1.5rem; line-height: 1.4;   /* lead : 24 / 22 px */
    color: var(--ep-ink);
}
.v2-home-legacy .history-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* Carrousel : photos sous voile encre (le voile de lisibilité est le seul dégradé autorisé) */
.v2-home-legacy .slide-parcs { background: linear-gradient(rgba(31,46,77,0.3), rgba(31,46,77,0.3)), url('/images/home/parcs.jpg'); background-blend-mode: multiply; background-size: cover; background-position: center; }
.v2-home-legacy .slide-degustation { background: linear-gradient(rgba(31,46,77,0.3), rgba(31,46,77,0.3)), url('/images/home/degustation.jpg'); background-blend-mode: multiply; background-size: cover; background-position: center; }
.v2-home-legacy .slide-cabane { background: linear-gradient(rgba(31,46,77,0.3), rgba(31,46,77,0.3)), url('/images/home/cabane.jpg'); background-blend-mode: multiply; background-size: cover; background-position: center; }
.v2-home-legacy .hero-content h1, .v2-home-legacy .hero-content h2, .v2-home-legacy .hero-content p { transition: opacity 0.3s ease; }

@media (max-width: 768px) {
    .v2-home-legacy .about-content { grid-template-columns: 1fr; gap: 30px; }
    .v2-home-legacy .about-image { border-radius: 0; margin: 0 calc(-1 * clamp(20px, 5vw, 60px)); order: -1; }   /* mobile : image au-dessus, texte en dessous (design.md §8) */
    .v2-home-legacy .about-image img { height: 260px; }
    .v2-home-legacy .values-grid { grid-template-columns: 1fr; gap: 36px; }
    .v2-home-legacy .value-card { padding: 0; }
    .v2-home-legacy .value-card p { text-align: center; }
    .v2-home-legacy .value-card h3 { font-size: 1.5rem; }
    .v2-home-legacy .history-content { grid-template-columns: 1fr; gap: 30px; }
    .v2-home-legacy .history-text { order: 0; }
    .v2-home-legacy .history-stats { grid-template-columns: 1fr 1fr; gap: 12px; }
    .v2-home-legacy .history-text p:first-child { font-size: 1.375rem; }
}

/* ══════════════════════════════
   PRINT
   ══════════════════════════════ */
@media print {
    .header, .footer, .cta-band, .hero-wave, .hero-scroll, .scroll-progress, .edge { display: none; }
    .hero { min-height: auto; padding: 40px 0; }
    .hero::before, .hero::after { display: none; }
    .hero-content { color: #000; }
    body { background: #fff; color: #000; }
    section { padding: 20px 0; }
}
