/* FleursCol — Shared stylesheet for inner pages
   V1 Brand: Burgundy #7B1F2E · Forest #2A4A1E · Gold #C4963C · Ivory #FAF5EF */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Plus Jakarta Sans', 'Century Gothic', Calibri, sans-serif; background: #FAF5EF; color: #1A1A1A; line-height: 1.6; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

:root {
  --burgundy:    #7B1F2E;
  --burgundy-dk: #5A1520;
  --burgundy-lt: #F5E8EA;
  --green:       #2A4A1E;
  --green-mid:   #3D6B2C;
  --green-light: #EAF2E4;
  --gold:        #C4963C;
  --gold-light:  #F7EDDA;
  --ivory:       #FAF5EF;
  --ivory-dk:    #F0E8DC;
  --charcoal:    #1A1A1A;
  --mid:         #5A5A5A;
  --light:       #A0A0A0;
  --border:      #E0D4C0;
  --radius:      10px;
  --max:         1140px;
}

/* LANGUAGE VISIBILITY */
.fr, .en, .es { display: none; }
body.lang-fr .fr { display: revert; }
body.lang-en .en { display: revert; }
body.lang-es .es { display: revert; }
body.lang-fr li.fr, body.lang-en li.en, body.lang-es li.es { display: list-item; }
body.lang-fr p.fr, body.lang-en p.en, body.lang-es p.es { display: block; }
body.lang-fr span.fr, body.lang-en span.en, body.lang-es span.es { display: inline; }
body.lang-fr div.fr, body.lang-en div.en, body.lang-es div.es { display: flex; }

/* PREVIEW BAR */
.preview-bar { background: var(--gold); color: white; text-align: center; font-size: 11.5px; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; padding: 8px 16px; position: sticky; top: 0; z-index: 200; }
.preview-bar em { font-style: normal; opacity: .75; font-weight: 400; text-transform: none; letter-spacing: 0; margin-left: 8px; }

/* LANGUAGE BAR */
.lang-bar { background: var(--burgundy-dk); display: flex; justify-content: flex-end; padding: 5px 24px; gap: 4px; }
.lang-btn { background: transparent; border: 1px solid rgba(255,255,255,.3); color: rgba(255,255,255,.75); font-size: 11px; font-weight: 600; letter-spacing: .08em; padding: 3px 10px; border-radius: 4px; cursor: pointer; font-family: inherit; transition: all .2s; }
.lang-btn.active, .lang-btn:hover { background: white; color: var(--burgundy-dk); border-color: white; }

/* NAV */
nav { background: white; border-bottom: 2px solid var(--burgundy); position: sticky; top: 37px; z-index: 100; box-shadow: 0 2px 12px rgba(0,0,0,.07); }
.nav-inner { max-width: var(--max); margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 70px; }
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; border: 1.5px solid var(--border); }
.nav-wordmark { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 27px; font-weight: 700; color: var(--burgundy); letter-spacing: .03em; }
.nav-links { display: flex; gap: 26px; align-items: center; }
.nav-links a:not(.nav-cta) { font-size: 13.5px; font-weight: 500; color: var(--mid); transition: color .2s; }
.nav-links a:not(.nav-cta):hover, .nav-links a.current { color: var(--burgundy); font-weight: 600; }
.coming-badge { font-size: 9px; font-weight: 700; letter-spacing: .08em; background: var(--gold-light); color: var(--gold); padding: 2px 6px; border-radius: 3px; text-transform: uppercase; margin-left: 4px; vertical-align: middle; }
.nav-account { display: flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 50%; border: 1.5px solid var(--border); color: var(--mid); transition: border-color .2s, color .2s; position: relative; cursor: default; opacity: .7; }
.nav-account:hover { border-color: var(--burgundy); color: var(--burgundy); opacity: 1; }
.nav-account-soon { position: absolute; top: -7px; right: -7px; background: var(--gold); color: white; font-size: 7px; font-weight: 700; letter-spacing: .04em; padding: 1px 4px; border-radius: 3px; white-space: nowrap; text-transform: uppercase; }
.nav-cta { background: var(--burgundy); color: white !important; padding: 9px 20px; border-radius: 7px; font-size: 13px; font-weight: 600 !important; transition: background .2s; white-space: nowrap; }
.nav-cta:hover { background: var(--burgundy-dk); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--charcoal); border-radius: 2px; transition: transform .22s ease, opacity .15s; }
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-links.nav-open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: white; border-bottom: 2px solid var(--burgundy); box-shadow: 0 8px 24px rgba(0,0,0,.1); padding: 12px 24px 20px; gap: 0; z-index: 99; }
.nav-links.nav-open a:not(.nav-cta):not(.nav-account) { padding: 12px 0; border-bottom: 1px solid var(--border); font-size: 14.5px; }
.nav-links.nav-open .nav-account { display: none; }
.nav-links.nav-open .nav-cta { margin-top: 14px; text-align: center; padding: 11px 20px; }

/* PAGE HERO (inner pages — shorter than homepage) */
.page-hero { background: linear-gradient(105deg, rgba(92,22,32,.92) 0%, rgba(42,74,30,.28) 58%, transparent 100%), url('https://images.unsplash.com/photo-1673026448806-6d6c00bbba29?w=1920&q=80&auto=format&fit=crop') center/cover no-repeat; color: white; padding: 56px 24px 64px; position: relative; overflow: hidden; }
.page-hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: linear-gradient(to right, var(--gold), transparent, var(--gold)); }
.page-hero-inner { max-width: var(--max); margin: 0 auto; }
.breadcrumb { font-size: 11.5px; opacity: .6; margin-bottom: 18px; letter-spacing: .06em; text-transform: uppercase; }
.breadcrumb a { color: inherit; }
.breadcrumb a:hover { opacity: 1; }
.breadcrumb .sep { margin: 0 8px; opacity: .4; }
.page-hero h1 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(2.2rem, 4.5vw, 3.4rem); font-weight: 700; font-style: italic; line-height: 1.1; margin-bottom: 14px; }
.page-hero .hero-sub { font-size: clamp(.88rem, 1.8vw, 1.05rem); font-weight: 300; opacity: .88; line-height: 1.65; max-width: 640px; }

/* SECTIONS */
.section { padding: 72px 24px; }
.section.alt { background: var(--ivory-dk); }
.section.dark { background: var(--charcoal); color: white; }
.section-inner { max-width: var(--max); margin: 0 auto; }
.gold-rule { height: 2px; background: linear-gradient(to right, var(--gold), transparent); width: 56px; margin-bottom: 10px; }
.section-tag { font-size: 10.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.section-title { font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(1.7rem, 3.5vw, 2.5rem); font-weight: 700; color: var(--burgundy); line-height: 1.15; margin-bottom: 8px; }
.section.dark .section-title { color: white; }
.section-sub { font-size: 15px; color: var(--mid); line-height: 1.7; max-width: 680px; margin-bottom: 40px; }
.section.dark .section-sub { color: rgba(255,255,255,.7); }

/* STORY 2-COL GRID */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.story-text p { font-size: 15px; color: var(--charcoal); line-height: 1.78; margin-bottom: 18px; }
.story-text p:last-child { margin-bottom: 0; }
.story-photo { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/5; position: relative; }
.photo-block { width: 100%; height: 100%; min-height: 340px; display: flex; align-items: flex-end; padding: 18px; }
.photo-label { background: rgba(0,0,0,.5); color: white; font-size: 10.5px; padding: 4px 10px; border-radius: 4px; letter-spacing: .04em; }

/* TIMELINE — 4 steps horizontal */
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; margin-top: 40px; }
.timeline::before { content: ''; position: absolute; top: 27px; left: 28px; right: 28px; height: 2px; background: linear-gradient(to right, var(--gold), var(--burgundy)); opacity: .2; z-index: 0; }
.tl-step { position: relative; z-index: 1; padding-right: 20px; }
.tl-num { width: 54px; height: 54px; border-radius: 50%; background: var(--burgundy); color: white; font-family: 'Cormorant Garamond', Georgia, serif; font-size: 20px; font-weight: 700; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; box-shadow: 0 0 0 3px var(--ivory), 0 0 0 5px rgba(123,31,46,.2); }
.tl-step h4 { font-size: 13.5px; font-weight: 700; color: var(--burgundy); margin-bottom: 6px; }
.tl-step p { font-size: 13px; color: var(--mid); line-height: 1.6; }

/* VALUES GRID */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 36px; }
.values-grid.col4 { grid-template-columns: repeat(4, 1fr); }
.value-card { background: white; border: 1px solid var(--border); border-left: 3px solid var(--gold); border-radius: var(--radius); padding: 26px 22px; }
.value-card .vnum { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 30px; font-weight: 700; color: var(--burgundy-lt); line-height: 1; margin-bottom: 10px; }
.value-card h4 { font-size: 14px; font-weight: 700; color: var(--burgundy); margin-bottom: 8px; }
.value-card p { font-size: 13px; color: var(--mid); line-height: 1.65; }

/* TEAM CARDS */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 36px; }
.team-card { background: white; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.team-photo { height: 220px; }
.team-body { padding: 22px 20px; }
.team-body h3 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 22px; font-weight: 700; color: var(--burgundy); margin-bottom: 4px; }
.team-body .role { font-size: 11.5px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.team-body p { font-size: 13px; color: var(--mid); line-height: 1.65; }

/* METRICS STRIP */
.metrics-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-top: 40px; }
.metric { background: white; border: 1px solid var(--border); padding: 28px 22px; text-align: center; }
.metric .num { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 40px; font-weight: 700; color: var(--burgundy); line-height: 1; margin-bottom: 8px; }
.metric p { font-size: 13px; color: var(--mid); line-height: 1.5; }

/* QUALITY BADGES */
.badge-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.badge { background: var(--green-light); color: var(--green); border: 1px solid rgba(42,74,30,.15); font-size: 12.5px; font-weight: 600; padding: 6px 14px; border-radius: 20px; }

/* CALLOUT BOX */
.callout { background: var(--burgundy-lt); border-left: 4px solid var(--burgundy); border-radius: 0 var(--radius) var(--radius) 0; padding: 20px 24px; margin: 24px 0; }
.callout p { font-size: 14px; color: var(--charcoal); line-height: 1.7; }
.callout strong { color: var(--burgundy); }
.callout.gold { background: var(--gold-light); border-color: var(--gold); }
.callout.gold strong { color: #7A5A10; }

/* EVENT CARDS */
.event-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 36px; }
.event-card { background: white; border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 24px; }
.event-card .ec-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--burgundy); margin-bottom: 14px; }
.event-card h3 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 22px; font-weight: 700; color: var(--burgundy); margin-bottom: 10px; }
.event-card p { font-size: 13.5px; color: var(--mid); line-height: 1.7; margin-bottom: 16px; }
.event-card a { font-size: 13px; font-weight: 600; color: var(--burgundy); border-bottom: 1px solid rgba(123,31,46,.25); padding-bottom: 1px; transition: border-color .2s; }
.event-card a:hover { border-color: var(--burgundy); }

/* STEPS (how it works) */
.steps { display: flex; flex-direction: column; gap: 20px; margin-top: 36px; }
.step { display: flex; gap: 20px; align-items: flex-start; }
.step-num { width: 40px; height: 40px; border-radius: 50%; background: var(--burgundy); color: white; font-family: 'Cormorant Garamond', Georgia, serif; font-size: 18px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.step-text h4 { font-size: 14px; font-weight: 700; color: var(--burgundy); margin-bottom: 4px; }
.step-text p { font-size: 13.5px; color: var(--mid); line-height: 1.65; }

/* FORMS */
.form-section { background: white; border: 1px solid var(--border); border-radius: var(--radius); padding: 36px 32px; }
.form-section h3 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 24px; font-weight: 700; color: var(--burgundy); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 12.5px; font-weight: 600; color: var(--charcoal); margin-bottom: 6px; letter-spacing: .03em; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; font-family: inherit; font-size: 14px; color: var(--charcoal);
  background: var(--ivory); border: 1.5px solid var(--border); border-radius: 7px;
  padding: 10px 14px; transition: border-color .2s, box-shadow .2s; outline: none;
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--burgundy); box-shadow: 0 0 0 3px rgba(123,31,46,.08);
}
.form-group.full { grid-column: 1 / -1; }
.casl-row { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 20px; }
.casl-row input[type=checkbox] { width: 16px; height: 16px; margin-top: 2px; accent-color: var(--burgundy); flex-shrink: 0; }
.casl-row label { font-size: 12px; color: var(--mid); line-height: 1.55; }
.casl-row a { color: var(--burgundy); text-decoration: underline; }
.form-note { font-size: 12px; color: var(--light); margin-top: -10px; margin-bottom: 14px; }
.btn-submit { background: var(--burgundy); color: white; border: none; padding: 12px 28px; border-radius: 8px; font-family: inherit; font-size: 14px; font-weight: 600; cursor: pointer; transition: background .2s; }
.btn-submit:hover { background: var(--burgundy-dk); }
.form-success { display: none; text-align: center; padding: 32px 24px; }
.form-success .check-circle { width: 56px; height: 56px; border-radius: 50%; background: var(--green-light); border: 2px solid rgba(42,74,30,.2); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.form-success .check-circle svg { width: 24px; height: 24px; stroke: var(--green); }
.form-success h4 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 22px; color: var(--green); margin-bottom: 8px; }
.form-success p { font-size: 14px; color: var(--mid); }

/* CONTACT CHANNELS */
.channels-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; }
.channel-card { background: white; border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 24px; }
.channel-card .ch-icon { width: 44px; height: 44px; border-radius: 10px; margin-bottom: 16px; }
.channel-card h3 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 20px; font-weight: 700; color: var(--burgundy); margin-bottom: 8px; }
.channel-card p { font-size: 13px; color: var(--mid); line-height: 1.65; margin-bottom: 14px; }
.channel-card a.ch-link { font-size: 13px; font-weight: 700; color: var(--burgundy); display: inline-flex; align-items: center; gap: 5px; border-bottom: 1px solid rgba(123,31,46,.3); padding-bottom: 1px; }
.channel-card a.ch-link:hover { border-color: var(--burgundy); }

/* PRACTICAL INFO TABLE */
.info-table { width: 100%; border-collapse: collapse; margin-top: 24px; }
.info-table tr { border-bottom: 1px solid var(--border); }
.info-table tr:last-child { border-bottom: none; }
.info-table td { padding: 14px 0; font-size: 14px; vertical-align: top; }
.info-table td:first-child { font-weight: 600; color: var(--burgundy); width: 200px; padding-right: 24px; }
.info-table td:last-child { color: var(--mid); }

/* SHOP CATEGORIES */
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 36px; }
.cat-card { background: white; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.cat-img { height: 200px; position: relative; }
.cat-coming { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(250,245,239,.6); }
.cat-coming span { background: white; border: 1px solid var(--border); color: var(--mid); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 6px 14px; border-radius: 20px; }
.cat-body { padding: 20px; }
.cat-body h3 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 22px; font-weight: 700; color: var(--burgundy); margin-bottom: 6px; }
.cat-body p { font-size: 13px; color: var(--mid); line-height: 1.65; margin-bottom: 14px; }
.cat-body .cat-badge { font-size: 11px; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; color: var(--gold); background: var(--gold-light); padding: 3px 10px; border-radius: 3px; display: inline-block; }
.origin-tag { font-size: 11px; font-weight: 500; letter-spacing: .05em; color: var(--gold); opacity: .75; margin: 7px 0 2px; }
.delivery-bar { background: var(--green); color: white; padding: 16px 24px; border-radius: var(--radius); display: flex; align-items: center; gap: 12px; margin-top: 32px; font-size: 14px; font-weight: 500; }
.delivery-bar .bar-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.6); flex-shrink: 0; }

/* CTA BAND */
.cta-band { background: var(--burgundy); color: white; padding: 56px 24px; text-align: center; }
.cta-band h2 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 600; font-style: italic; margin-bottom: 10px; }
.cta-band p { font-size: 15px; opacity: .82; margin-bottom: 28px; }
.cta-band-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-gold { background: var(--gold); color: white; padding: 13px 26px; border-radius: 8px; font-weight: 600; font-size: 14px; transition: background .2s; display: inline-block; }
.btn-gold:hover { background: #A8801E; }
.btn-ghost-w { background: transparent; color: white; border: 1.5px solid rgba(255,255,255,.45); padding: 13px 26px; border-radius: 8px; font-weight: 500; font-size: 14px; transition: all .2s; display: inline-block; }
.btn-ghost-w:hover { background: rgba(255,255,255,.12); border-color: white; }

/* FOOTER */
footer { background: var(--charcoal); color: rgba(255,255,255,.65); padding: 48px 24px 28px; }
.footer-inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 40px; margin-bottom: 32px; }
.footer-brand .wordmark { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 24px; font-weight: 700; font-style: italic; color: white; margin-bottom: 8px; }
.footer-brand .gold-line { width: 40px; height: 2px; background: var(--gold); margin-bottom: 12px; }
.footer-brand p { font-size: 13px; line-height: 1.65; }
.footer-col h4 { color: white; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 14px; }
.footer-col a { display: block; font-size: 13px; color: rgba(255,255,255,.55); margin-bottom: 9px; transition: color .2s; }
.footer-col a:hover { color: var(--gold); }
.footer-col a.soon { color: rgba(255,255,255,.28); font-style: italic; cursor: default; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 20px; display: flex; justify-content: space-between; font-size: 11.5px; flex-wrap: wrap; gap: 8px; }
.footer-bottom a { color: rgba(255,255,255,.45); }
.footer-bottom a:hover { color: var(--gold); }

/* COOKIE BANNER */
#cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: var(--ivory); border-top: 2px solid var(--burgundy); box-shadow: 0 -4px 28px rgba(0,0,0,.13); padding: 16px 24px; z-index: 9999; display: none; }
#cookie-banner.visible { display: block; }
.cookie-inner { max-width: var(--max); margin: 0 auto; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.cookie-text { flex: 1; font-size: 13px; color: var(--charcoal); line-height: 1.6; min-width: 240px; }
.cookie-text strong { color: var(--burgundy); }
.cookie-text a { color: var(--burgundy); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-accept { background: var(--burgundy); color: white; border: none; padding: 9px 22px; border-radius: 7px; font-size: 13px; font-weight: 600; cursor: pointer; font-family: inherit; transition: background .2s; }
.cookie-accept:hover { background: var(--burgundy-dk); }
.cookie-decline { background: transparent; color: var(--mid); border: 1.5px solid var(--border); padding: 9px 18px; border-radius: 7px; font-size: 13px; font-weight: 500; cursor: pointer; font-family: inherit; transition: all .2s; }
.cookie-decline:hover { border-color: var(--burgundy); color: var(--burgundy); }

/* CETTE SEMAINE */
.semaine-section { background: var(--ivory-dk); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 32px 48px; }
.semaine-inner { max-width: var(--max); margin: 0 auto; }
.semaine-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.semaine-label { font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.semaine-update { font-size: 11px; color: var(--light); font-style: italic; }
.semaine-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.semaine-card { background: white; border: 1px solid var(--border); border-radius: 4px; padding: 14px 16px; display: flex; flex-direction: column; gap: 5px; }
.semaine-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); }
.semaine-name { font-size: 13.5px; font-weight: 600; color: var(--charcoal); line-height: 1.3; }
.semaine-meta { font-size: 10.5px; font-weight: 500; letter-spacing: .05em; color: var(--gold); }
.semaine-bottom { display: flex; align-items: center; justify-content: space-between; margin-top: 6px; }
.semaine-price { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 20px; font-weight: 700; color: var(--burgundy); line-height: 1; }
.semaine-stock { font-size: 10px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--green); background: var(--green-light); padding: 3px 8px; border-radius: 3px; }
.semaine-exemple { font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--light); background: var(--ivory-dk); border: 1px solid var(--border); padding: 2px 7px; border-radius: 3px; align-self: flex-start; margin-top: 2px; }
.semaine-note { font-size: 11.5px; color: var(--light); margin-top: 16px; font-style: italic; }

/* FRESHNESS BADGE */
.freshness-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 600; color: white; background: var(--green); border: none; padding: 5px 11px; border-radius: 4px; position: absolute; bottom: 12px; left: 12px; z-index: 1; }
.freshness-badge svg { flex-shrink: 0; }

/* FOUNDER QUOTE */
.founder-quote { background: var(--burgundy-dk); padding: 72px 48px; text-align: center; }
.founder-quote blockquote { font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(22px, 3vw, 34px); font-style: italic; font-weight: 400; color: var(--ivory); line-height: 1.55; max-width: 780px; margin: 0 auto 28px; position: relative; }
.founder-quote blockquote::before { content: '\201C'; font-size: 100px; color: var(--gold); opacity: .25; position: absolute; top: -36px; left: -16px; line-height: 1; font-style: normal; pointer-events: none; }
.founder-quote cite { display: block; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); font-style: normal; opacity: .85; }

/* SCROLL REVEAL */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* WHATSAPP FAB */
.wa-fab { display: none; position: fixed; bottom: 22px; right: 20px; width: 52px; height: 52px; border-radius: 50%; background: var(--burgundy); align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(90,21,32,.45); z-index: 8000; transition: transform .2s, box-shadow .2s; }
.wa-fab:hover { transform: scale(1.08); box-shadow: 0 6px 24px rgba(90,21,32,.55); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .story-grid { grid-template-columns: 1fr; gap: 28px; }
  .story-photo { order: -1; }
  .timeline { grid-template-columns: 1fr 1fr; gap: 32px; }
  .timeline::before { display: none; }
  .values-grid, .values-grid.col4 { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .metrics-strip { grid-template-columns: 1fr 1fr; }
  .event-grid { grid-template-columns: 1fr; }
  .channels-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .cookie-inner { flex-direction: column; align-items: flex-start; gap: 14px; }
  .cookie-actions { width: 100%; justify-content: flex-end; }
}
@media (max-width: 640px) {
  .semaine-section { padding: 24px 20px; }
  .semaine-grid { grid-template-columns: 1fr; }
  .semaine-header { flex-direction: column; align-items: flex-start; gap: 4px; }
  .founder-quote { padding: 52px 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .section { padding: 48px 20px; }
  .page-hero { padding: 44px 20px 52px; }
  .timeline { grid-template-columns: 1fr; }
  .values-grid, .values-grid.col4 { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .metrics-strip { grid-template-columns: 1fr 1fr; }
  .form-section { padding: 24px 20px; }
  .wa-fab { display: flex; }
}
