/* ===================================================
   Graine — Étude de cas
   =================================================== */

:root {
  --accent: #FD8152;
  --green:  #2E392D;
  --green-2: #161c14;
  --cream:  #FFFCF2;
  --peach:  #FBEAD5;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--green);
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--green);
  color: var(--cream);
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 8px 0;
  z-index: 1000;
}
.skip-link:focus { left: 0; }

.g-wrap { max-width: 1080px; margin: 0 auto; }
.g-wrap-wide { max-width: 1120px; }

.g-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: var(--accent); z-index: 100;
}

/* ---------- reveal on scroll ---------- */
.g-reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.g-reveal.g-in { opacity: 1; transform: none; }
.g-reveal-delay-1 { transition-delay: .06s; }
.g-reveal-delay-2 { transition-delay: .1s; }

/* ---------- buttons / chips ---------- */
.g-btn {
  display: inline-flex; align-items: center; gap: 9px;
  text-decoration: none; border-radius: 30px; font-weight: 700;
  transition: filter .2s ease, transform .2s ease;
}
.g-btn:hover { filter: brightness(1.08); transform: translateY(-2px); }
.g-btn-accent { background: var(--accent); color: var(--cream); padding: 9px 18px; font-size: 13px; }
.g-btn-lg { padding: 15px 28px; font-size: 15px; }

/* ---------- nav ---------- */
.g-nav {
  position: sticky; top: 0; z-index: 80;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 0 clamp(20px, 5vw, 48px); height: 64px;
  background: rgba(46, 57, 45, .94);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.g-nav-logo { display: flex; align-items: center; text-decoration: none; }
.g-nav-logo img { height: 28px; width: auto; filter: none; }
.g-nav-links { display: flex; align-items: center; gap: 28px; list-style: none; margin: 0; padding: 0; }
.g-nav-links a { color: var(--cream); text-decoration: none; font-size: 13px; font-weight: 600; opacity: .82; }
.g-nav-links a:hover { opacity: 1; }
.g-nav-right { display: flex; align-items: center; gap: 14px; }

.g-lang-toggle {
  appearance: none; border: 1.5px solid rgba(255,252,242,.28); background: transparent;
  color: var(--cream); font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 12px;
  letter-spacing: .04em; border-radius: 30px; padding: 7px 13px; cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.g-lang-toggle:hover { background: var(--cream); color: var(--green); }

.g-nav-burger {
  display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  width: 34px; height: 34px; padding: 0; border: none; background: transparent; cursor: pointer;
}
.g-nav-burger span { display: block; width: 20px; height: 2px; background: var(--cream); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.g-nav-burger-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.g-nav-burger-open span:nth-child(2) { opacity: 0; }
.g-nav-burger-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- hero ---------- */
.g-hero {
  position: relative; background: var(--green); color: var(--cream);
  padding: clamp(76px, 12vw, 150px) clamp(20px, 5vw, 48px) clamp(64px, 10vw, 124px);
  overflow: hidden;
}
.g-hero-glow {
  position: absolute; right: -120px; top: -60px; width: 460px; height: 460px;
  border-radius: 50%; background: radial-gradient(circle, rgba(253,129,82,.18), transparent 68%);
  pointer-events: none;
}
.g-seed-canvas {
  position: absolute; top: 0; right: 0; height: 100%; width: min(52%, 640px);
  pointer-events: none; z-index: 0;
}
.g-hero-inner { position: relative; max-width: 1080px; margin: 0 auto; }

.g-tag {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 16px; border: 1px solid rgba(255,252,242,.22); border-radius: 30px;
  font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--peach); margin-bottom: 34px;
}
.g-tag-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }

.g-hero-logo { height: clamp(70px, 13vw, 140px); width: auto; margin-bottom: 30px; }
.g-hero-title {
  font-size: clamp(24px, 3.6vw, 42px); font-weight: 800; line-height: 1.16;
  letter-spacing: -0.02em; margin: 0 0 22px; max-width: 20ch;
}
.g-hero-title em { color: var(--accent); font-style: normal; }
.g-hero-underline { width: min(440px, 72%); margin: 2px 0 26px; }
.g-hero-desc {
  font-size: clamp(16px, 1.7vw, 19px); line-height: 1.7; color: rgba(255,252,242,.66);
  max-width: 50ch; margin: 0 0 38px;
}
.g-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.g-tag-chip {
  padding: 9px 16px; border-radius: 30px; background: rgba(255,252,242,.08);
  border: 1px solid rgba(255,252,242,.14); font-size: 13px; font-weight: 600;
}

/* ---------- sections ---------- */
.g-section { padding: clamp(64px, 9vw, 116px) clamp(20px, 5vw, 48px); }
.g-section-cream { background: var(--cream); }
.g-section-peach { background: var(--peach); }
.g-section-dark { background: var(--green); color: var(--cream); position: relative; overflow: hidden; }

.g-kicker { font-size: 13px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); margin: 0 0 16px; }
.g-kicker-light { color: var(--peach); }
.g-h2 { font-size: clamp(28px, 4vw, 46px); font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; margin: 0 0 22px; text-wrap: balance; }
.g-h2-light { color: var(--cream); margin: 0; }
.g-lead { font-size: clamp(16px, 1.5vw, 19px); line-height: 1.7; color: rgba(46,57,45,.8); margin: 0; }
.g-intro { max-width: 720px; margin-bottom: 52px; }
.g-intro-wide { max-width: 760px; margin-bottom: 44px; }
.g-body-text { font-size: clamp(16px, 1.5vw, 18px); line-height: 1.75; color: rgba(46,57,45,.84); margin: 0 0 16px; }
.g-callout {
  font-size: clamp(16px, 1.6vw, 19px); line-height: 1.6; font-weight: 600; color: var(--green);
  margin: 0; padding-left: 18px; border-left: 3px solid var(--accent);
}
.g-eyebrow-line {
  font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  color: var(--green); margin: 0 0 18px; padding-left: 14px; border-left: 3px solid var(--accent);
}
.g-caption { font-size: 14.5px; line-height: 1.65; color: rgba(46,57,45,.66); margin: 18px 0 0; }

.g-2col { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 56px); align-items: start; }
.g-2col-115 { grid-template-columns: 1.15fr .85fr; align-items: center; gap: clamp(36px, 6vw, 72px); }
.g-3grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

/* ---------- résumé check list ---------- */
.g-check-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.g-check-list li { display: flex; gap: 12px; }
.g-check-list img { width: 24px; height: auto; align-self: flex-start; flex-shrink: 0; margin-top: 3px; }
.g-check-list span { font-size: 16px; line-height: 1.6; color: rgba(46,57,45,.84); }
.g-check-list strong { color: var(--green); }

/* ---------- le nom ---------- */
.g-imgcol { position: relative; }
.g-photo { width: 100%; border-radius: 24px; box-shadow: 0 28px 56px -24px rgba(46,57,45,.45); }
.g-imgcol-leaf {
  position: absolute; width: 72px; left: -24px; bottom: -20px;
  transform: rotate(-16deg); filter: drop-shadow(0 10px 18px rgba(0,0,0,.2));
}

/* ---------- identité ---------- */
.g-logo-showcase {
  background: var(--peach); border-radius: 20px; padding: 34px 26px;
  display: flex; align-items: center; justify-content: space-around; gap: 16px; margin-bottom: 14px;
}
.g-logo-showcase img { height: 96px; }
.g-logo-lockups { display: flex; gap: 10px; }
.g-logo-lockup { flex: 1; border-radius: 14px; padding: 18px; text-align: center; }
.g-logo-lockup img { height: 20px; margin: 0 auto; }
.g-logo-lockup-cream { background: var(--cream); border: 1px solid rgba(46,57,45,.1); }
.g-logo-lockup-dark { background: var(--green); }
.g-logo-lockup-accent { background: var(--accent); }

.g-swatches { display: flex; flex-direction: column; gap: 12px; }
.g-swatch {
  display: flex; align-items: center; gap: 16px; background: var(--cream);
  border: 1px solid rgba(46,57,45,.1); border-radius: 16px; padding: 14px 16px;
}
.g-swatch-chip { width: 52px; height: 52px; border-radius: 12px; flex-shrink: 0; }
.g-swatch-chip-outline { border: 1px solid rgba(46,57,45,.14); }
.g-swatch-chip-font {
  display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif; font-weight: 800; color: var(--green); font-size: 18px;
}
.g-swatch-name { margin: 0 0 2px; font-size: 15px; font-weight: 700; }
.g-swatch-name span { font-weight: 500; color: rgba(46,57,45,.45); font-size: 12px; }
.g-swatch-desc { margin: 0; font-size: 13.5px; line-height: 1.5; color: rgba(46,57,45,.66); }

/* ---------- app: 3 piliers ---------- */
.g-piliers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: clamp(48px, 7vw, 72px); }
.g-pilier { background: var(--cream); border: 1px solid rgba(46,57,45,.1); border-radius: 18px; padding: 24px 22px; }
.g-pilier-head { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.g-pilier-head p { margin: 0; font-size: 16px; font-weight: 800; color: var(--green); }
.g-pilier-icon { width: 34px; height: 34px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.g-pilier-icon img { width: 16px; }
.g-pilier-icon-accent { background: var(--accent); }
.g-pilier-icon-dark { background: var(--green); }
.g-pilier-tag { margin: 0 0 12px; font-size: 13.5px; font-style: italic; font-weight: 600; color: var(--accent); }
.g-pilier-desc { font-size: 14px; line-height: 1.6; color: rgba(46,57,45,.7); margin: 0; }

/* ---------- app: rail heading + rail ---------- */
.g-rail-heading { margin-bottom: 20px; display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; }
.g-rail-heading .g-eyebrow-line { margin: 0; }
.g-swipe-hint { font-size: 12.5px; color: rgba(46,57,45,.5); font-weight: 600; }
.g-rail {
  display: flex; gap: 26px; overflow-x: auto; padding: 8px 4px 30px;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
}
.g-slide { scroll-snap-align: center; flex: 0 0 auto; width: 238px; display: flex; flex-direction: column; align-items: center; }

/* ---------- phone frame ---------- */
.g-phone {
  position: relative; width: 238px; padding: 9px; border-radius: 42px;
  background: var(--green-2); box-shadow: 0 32px 64px -22px rgba(46,57,45,.5);
}
.g-notch {
  position: absolute; top: 16px; left: 50%; transform: translateX(-50%);
  width: 74px; height: 20px; border-radius: 14px; background: var(--green-2); z-index: 3;
}
.g-screen { border-radius: 34px; overflow: hidden; background: var(--cream); height: 490px; display: flex; flex-direction: column; }
.g-screen-dark { background: var(--green); }
.g-statusbar {
  background: var(--green); padding: 9px 16px 0; display: flex; align-items: center;
  justify-content: space-between; color: var(--cream); font-size: 9px; font-weight: 700;
}
.g-screen-dark .g-statusbar { background: transparent; }

.g-appheader { background: var(--green); padding: 10px 16px 16px; }
.g-appheader-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 13px; }
.g-appheader-row img { height: 13px; }
.g-hamburger { display: flex; flex-direction: column; gap: 3px; }
.g-hamburger i { display: block; width: 16px; height: 2px; background: var(--cream); border-radius: 2px; }
.g-hamburger i:last-child { width: 11px; }
.g-app-hello { margin: 0 0 3px; font-size: 9px; font-weight: 600; color: rgba(255,252,242,.6); }
.g-app-title { margin: 0; font-size: 16px; font-weight: 800; color: var(--cream); line-height: 1.22; }

.g-appheader-simple {
  background: var(--green); padding: 10px 15px 14px; display: flex; align-items: center; gap: 8px;
  color: var(--cream); font-size: 11px; font-weight: 700;
}
.g-appheader-simple span:first-child { font-size: 14px; }
.g-appheader-title { background: var(--green); padding: 12px 15px 14px; }
.g-appheader-title p { margin: 0; font-size: 12px; font-weight: 800; color: var(--cream); }
.g-appheader-title span { margin: 2px 0 0; font-size: 8.5px; color: rgba(255,252,242,.65); display: block; }

.g-appbody { flex: 1; overflow: hidden; padding: 14px 15px; display: flex; flex-direction: column; gap: 13px; }
.g-appbody-light { padding: 16px 15px; display: block; }

.g-choice-list { display: flex; flex-direction: column; gap: 9px; }
.g-choice { display: flex; align-items: center; gap: 11px; border-radius: 16px; padding: 12px 13px; }
.g-choice-accent { background: var(--accent); }
.g-choice-dark { background: var(--green); }
.g-choice-icon {
  width: 30px; height: 30px; border-radius: 9px; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; background: rgba(255,252,242,.22);
}
.g-choice-dark .g-choice-icon { background: rgba(255,252,242,.12); }
.g-choice-icon img { width: 15px; }
.g-choice > div { flex: 1; }
.g-choice-title { margin: 0 0 1px; font-size: 11px; font-weight: 800; color: var(--cream); }
.g-choice-desc { margin: 0; font-size: 8px; line-height: 1.4; color: rgba(255,252,242,.82); }
.g-choice-dark .g-choice-desc { color: rgba(255,252,242,.65); }
.g-arrow { color: var(--cream); font-size: 13px; font-weight: 700; }
.g-choice-dark .g-arrow { color: rgba(255,252,242,.8); }

.g-suggestion-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.g-suggestion-head p { margin: 0; font-size: 8.5px; font-weight: 800; color: var(--accent); text-transform: uppercase; letter-spacing: .08em; }
.g-suggestion-head span { font-size: 8px; font-weight: 700; color: rgba(46,57,45,.4); }
.g-recipe-card { border-radius: 16px; overflow: hidden; box-shadow: 0 10px 22px -10px rgba(46,57,45,.35); }
.g-recipe-photo { position: relative; }
.g-recipe-photo img { width: 100%; height: 98px; object-fit: cover; }
.g-heart {
  position: absolute; right: 9px; top: 9px; width: 22px; height: 22px; border-radius: 50%;
  background: rgba(255,252,242,.92); display: flex; align-items: center; justify-content: center;
  font-size: 10px; color: var(--accent);
}
.g-recipe-info { padding: 10px 12px; background: #fff; }
.g-recipe-info p { margin: 0 0 5px; font-size: 11px; font-weight: 800; color: var(--green); }
.g-recipe-info > div { display: flex; gap: 6px; }
.g-recipe-tag { padding: 4px 9px; border-radius: 16px; background: var(--peach); color: var(--accent); font-size: 7.5px; font-weight: 700; }
.g-recipe-tag-neutral { background: rgba(46,57,45,.06); color: var(--green); font-weight: 600; }

.g-tabbar {
  display: flex; justify-content: space-around; align-items: flex-end; padding: 8px 10px 9px;
  border-top: 1px solid rgba(46,57,45,.08); background: var(--cream);
}
.g-tab { display: flex; flex-direction: column; align-items: center; gap: 3px; }
.g-tab-icon { width: 16px; height: 16px; border-radius: 5px; background: rgba(46,57,45,.16); }
.g-tab-icon-round { border-radius: 50%; }
.g-tab span:last-child { font-size: 6.5px; font-weight: 600; color: rgba(46,57,45,.4); }
.g-tab-active .g-tab-icon { background: var(--accent); }
.g-tab-active span:last-child { font-weight: 700; color: var(--accent); }

/* ---------- écran 2 : formulaire ---------- */
.g-form-title { margin: 0 0 3px; font-size: 13px; font-weight: 800; color: var(--green); }
.g-form-sub { margin: 0 0 15px; font-size: 8.5px; color: rgba(46,57,45,.55); }
.g-form-label { margin: 0 0 7px; font-size: 8.5px; font-weight: 800; color: var(--accent); text-transform: uppercase; letter-spacing: .08em; }
.g-chip-row { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 15px; }
.g-chip-row-tight { margin-bottom: 14px; }
.g-chip { padding: 6px 11px; border-radius: 20px; font-size: 9px; font-weight: 600; }
.g-chip-dark { background: var(--green); color: var(--cream); }
.g-chip-ghost { background: var(--peach); color: rgba(46,57,45,.55); }
.g-chip-light { background: var(--peach); color: var(--green); }
.g-timer-row {
  display: flex; align-items: center; justify-content: space-between; padding: 9px 12px;
  border-radius: 12px; background: rgba(46,57,45,.05); margin-bottom: 16px; font-size: 9.5px;
}
.g-timer-row span:first-child { font-weight: 700; color: var(--green); }
.g-timer-row span:last-child { font-weight: 800; color: var(--accent); }
.g-cta-block {
  text-align: center; padding: 11px; border-radius: 22px; background: var(--accent);
  color: var(--cream); font-size: 10.5px; font-weight: 700;
}
.g-cta-block-dark { background: var(--green); }
.g-cta-block-flex { flex: 1; }

/* ---------- écran 3 : chargement ---------- */
.g-loading {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 24px 26px;
}
.g-loading img { width: 64px; height: auto; margin-bottom: 26px; }
.g-loading-title { margin: 0 0 10px; font-size: 15px; font-weight: 800; color: var(--cream); line-height: 1.3; }
.g-loading-desc { margin: 0 0 26px; font-size: 9.5px; line-height: 1.6; color: rgba(255,252,242,.6); max-width: 26ch; }
.g-loading-caption { margin: 14px 0 0; font-size: 8.5px; font-weight: 700; color: rgba(255,252,242,.5); }
.g-progress-track { width: 100%; height: 6px; border-radius: 5px; background: rgba(255,252,242,.14); overflow: hidden; }
.g-progress-track-thin { height: 5px; background: rgba(46,57,45,.1); margin-bottom: 18px; }
.g-progress-fill { height: 100%; background: var(--accent); border-radius: 5px; }

/* ---------- écran 4 : recette ---------- */
.g-recipe-hero { position: relative; background: #fff; }
.g-recipe-hero img { width: 100%; height: 150px; object-fit: cover; }
.g-back-btn {
  position: absolute; left: 12px; top: 12px; width: 24px; height: 24px; border-radius: 50%;
  background: rgba(255,252,242,.9); display: flex; align-items: center; justify-content: center;
  font-size: 12px; color: var(--green);
}
.g-recipe-name { margin: 0 0 8px; font-size: 14px; font-weight: 800; color: var(--green); }
.g-tabs { display: flex; background: rgba(46,57,45,.06); border-radius: 20px; padding: 3px; margin-bottom: 14px; }
.g-tab-pill { flex: 1; text-align: center; padding: 6px; border-radius: 17px; color: rgba(46,57,45,.5); font-size: 9px; font-weight: 700; }
.g-tab-pill-active { background: var(--cream); color: var(--green); font-weight: 800; box-shadow: 0 1px 3px rgba(46,57,45,.12); }
.g-ingredients { list-style: none; margin: 0 0 14px; padding: 0; display: flex; flex-direction: column; gap: 7px; }
.g-ingredients li { display: flex; align-items: center; gap: 8px; font-size: 9.5px; color: rgba(46,57,45,.78); }
.g-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
.g-actions-row { display: flex; gap: 8px; }
.g-heart-btn { width: 38px; text-align: center; padding: 10px 0; border-radius: 22px; background: var(--peach); color: var(--accent); font-size: 12px; }
.g-nav-btn { width: 44px; text-align: center; padding: 11px 0; border-radius: 22px; background: var(--peach); color: var(--green); font-size: 12px; }

/* ---------- écran 5 : étapes ---------- */
.g-step-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; font-size: 9px; font-weight: 800; color: var(--accent); text-transform: uppercase; letter-spacing: .08em; }
.g-step-head span:last-child { font-weight: 700; color: rgba(46,57,45,.5); text-transform: none; letter-spacing: normal; }
.g-step-desc { margin: 0 0 16px; font-size: 10px; line-height: 1.7; color: rgba(46,57,45,.72); }
.g-tip { border-radius: 14px; background: var(--peach); padding: 12px 13px; margin-bottom: 18px; }
.g-tip p { margin: 0; font-size: 9px; line-height: 1.6; color: var(--green); }

/* ---------- écran 6 : menu semaine ---------- */
.g-menu-list { display: flex; flex-direction: column; gap: 9px; }
.g-menu-item { display: flex; align-items: center; gap: 10px; border-radius: 13px; background: rgba(46,57,45,.05); padding: 9px 11px; }
.g-menu-item-active { background: var(--peach); }
.g-menu-thumb { width: 30px; height: 30px; border-radius: 8px; overflow: hidden; flex-shrink: 0; }
.g-menu-thumb img { width: 100%; height: 100%; object-fit: cover; }
.g-menu-day { margin: 0; font-size: 8px; font-weight: 800; color: rgba(46,57,45,.45); text-transform: uppercase; }
.g-menu-item-active .g-menu-day { color: var(--accent); }
.g-menu-name { margin: 1px 0 0; font-size: 10px; font-weight: 700; color: var(--green); }

/* ---------- écran 7 : communauté ---------- */
.g-thread-list { display: flex; flex-direction: column; gap: 10px; }
.g-thread { border-radius: 14px; border: 1px solid rgba(46,57,45,.1); padding: 11px 12px; }
.g-thread-head { display: flex; align-items: center; gap: 8px; margin-bottom: 7px; }
.g-avatar {
  width: 22px; height: 22px; border-radius: 50%; color: var(--cream); font-size: 9px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.g-avatar-accent { background: var(--accent); }
.g-avatar-dark { background: var(--green); }
.g-thread-name { font-size: 9.5px; font-weight: 700; color: var(--green); }
.g-thread-time { font-size: 8px; color: rgba(46,57,45,.45); }
.g-thread-text { margin: 0 0 8px; font-size: 9.5px; line-height: 1.5; color: rgba(46,57,45,.8); }
.g-thread-stats { display: flex; gap: 12px; font-size: 8.5px; color: rgba(46,57,45,.5); font-weight: 600; }

/* ---------- écran 8 : blog ---------- */
.g-blog-list { display: flex; flex-direction: column; gap: 12px; }
.g-blog-card { border-radius: 14px; overflow: hidden; border: 1px solid rgba(46,57,45,.1); }
.g-blog-card img { width: 100%; height: 88px; object-fit: cover; }
.g-blog-card > div { padding: 9px 11px; }
.g-blog-cat { font-size: 7.5px; font-weight: 800; color: var(--accent); text-transform: uppercase; letter-spacing: .06em; }
.g-blog-title { margin: 4px 0 5px; font-size: 10px; font-weight: 700; line-height: 1.35; color: var(--green); }
.g-blog-time { font-size: 8px; color: rgba(46,57,45,.5); font-weight: 600; }

/* ---------- slide caption ---------- */
.g-slide-caption { margin-top: 20px; text-align: center; }
.g-slide-num {
  display: inline-block; width: 22px; height: 22px; line-height: 22px; border-radius: 50%;
  background: var(--accent); color: var(--cream); font-size: 11px; font-weight: 800; margin-bottom: 8px;
}
.g-slide-title { margin: 0; font-size: 14.5px; font-weight: 700; color: var(--green); }
.g-slide-desc { margin: 4px auto 0; font-size: 12.5px; line-height: 1.55; color: rgba(46,57,45,.66); max-width: 24ch; }

/* ---------- intentions ---------- */
.g-intentions-leaf { position: absolute; width: 130px; left: 4%; bottom: 10%; opacity: .12; animation: graineFloat 9s ease-in-out infinite; }
.g-intent-card { background: rgba(255,252,242,.06); border: 1px solid rgba(255,252,242,.12); border-radius: 20px; padding: 28px 24px; }
.g-intent-num { font-size: 13px; font-weight: 800; color: var(--accent); }
.g-intent-title { font-size: 18px; font-weight: 700; margin: 10px 0 6px; }
.g-intent-desc { font-size: 14px; line-height: 1.6; color: rgba(255,252,242,.6); margin: 0; }

/* ---------- footer / contact ---------- */
.g-footer { background: var(--green-2); color: var(--cream); padding: clamp(60px, 9vw, 100px) clamp(20px, 5vw, 48px) 40px; }
.g-footer-top { text-align: center; padding-bottom: 48px; border-bottom: 1px solid rgba(255,252,242,.12); }
.g-footer-top img { height: 32px; margin: 0 auto 24px; }
.g-footer-top p { font-size: clamp(19px, 2.4vw, 28px); font-weight: 700; line-height: 1.3; margin: 0 auto 28px; max-width: 20ch; }
.g-footer-bottom { display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; align-items: center; padding-top: 26px; }
.g-footer-bottom p { margin: 0; font-size: 13px; color: rgba(255,252,242,.5); }
.g-footer-bottom a { color: var(--cream); font-weight: 600; text-decoration: none; opacity: .82; }
.g-footer-bottom a:hover { opacity: 1; }

/* ---------- keyframes ---------- */
@keyframes graineFloat {
  0%, 100% { transform: translateY(0) rotate(-18deg); }
  50%      { transform: translateY(-14px) rotate(-18deg); }
}

/* ---------- responsive ---------- */
@media (max-width: 860px) {
  .g-2col, .g-2col-115, .g-3grid, .g-piliers { grid-template-columns: 1fr; }

  .g-nav-burger { display: flex; }

  .g-nav-links {
    position: absolute; top: 64px; left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: rgba(22, 28, 20, .98); backdrop-filter: blur(12px);
    max-height: 0; overflow: hidden; padding: 0 clamp(20px, 5vw, 48px);
    transition: max-height .25s ease, padding .25s ease;
  }
  .g-nav-links.g-nav-links-open { max-height: 320px; padding: 10px clamp(20px, 5vw, 48px) 18px; }
  .g-nav-links li { width: 100%; }
  .g-nav-links a { display: block; padding: 12px 0; border-top: 1px solid rgba(255,252,242,.1); font-size: 14px; }
  .g-nav-links li:first-child a { border-top: none; }
}

@media (max-width: 480px) {
  .g-footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  .g-intentions-leaf { animation: none; }
  .g-reveal { opacity: 1; transform: none; transition: none; }
}
