/* ===== VEGGIEGLOW — CSS ===== */
:root {
  --sage: #7a9e7e;
  --sage-light: #a8c5ac;
  --sage-dark: #4f7453;
  --cream: #faf7f2;
  --cream-dark: #f0ebe0;
  --terracotta: #c4704d;
  --terracotta-light: #e8956d;
  --gold: #d4a853;
  --green-deep: #2d5016;
  --text: #2c2c27;
  --text-muted: #7a7a70;
  --white: #ffffff;
  --radius: 16px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.14);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--text); overflow-x: hidden; }

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px; height: 64px;
  background: rgba(250,247,242,0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(122,158,126,0.15);
}
.nav-brand { display: flex; align-items: center; gap: 8px; font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 600; color: var(--sage-dark); text-decoration: none; }
.leaf { font-size: 1.2rem; }
.nav-links { display: flex; gap: 20px; list-style: none; }
.nav-links a { font-size: 0.82rem; font-weight: 400; letter-spacing: 0.03em; color: var(--text-muted); text-decoration: none; transition: color 0.2s; white-space: nowrap; }
.nav-links a:hover { color: var(--sage-dark); }
.nav-toggle { display: none; background: none; border: none; font-size: 1.4rem; cursor: pointer; color: var(--sage-dark); }

/* ── HERO ── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden; padding: 100px 60px 60px;
  background: linear-gradient(135deg, #f5f0e8 0%, #eef4ee 50%, #faf7f2 100%);
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 70% 50%, rgba(122,158,126,0.12) 0%, transparent 70%),
              radial-gradient(ellipse 40% 40% at 20% 70%, rgba(212,168,83,0.08) 0%, transparent 60%);
}
.hero-content { position: relative; z-index: 2; max-width: 600px; }
.hero-eyebrow { font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--sage); margin-bottom: 16px; }
.hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(3rem, 6vw, 5.5rem); font-weight: 300; line-height: 1.1; color: var(--green-deep); margin-bottom: 24px; }
.hero-title em { font-style: italic; color: var(--terracotta); }
.hero-sub { font-size: 1.05rem; line-height: 1.7; color: var(--text-muted); max-width: 480px; margin-bottom: 36px; }
.cta-btn { display: inline-block; background: var(--sage-dark); color: var(--white); padding: 14px 32px; border-radius: 50px; font-size: 0.9rem; font-weight: 500; text-decoration: none; letter-spacing: 0.04em; transition: all 0.25s; box-shadow: 0 4px 20px rgba(79,116,83,0.3); }
.cta-btn:hover { background: var(--green-deep); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(79,116,83,0.4); }
.hero-deco { position: absolute; right: 0; top: 0; bottom: 0; width: 50%; }
.deco-circle { position: absolute; border-radius: 50%; }
.c1 { width: 480px; height: 480px; top: 50%; right: -80px; transform: translateY(-50%); background: radial-gradient(circle, rgba(122,158,126,0.2) 0%, rgba(122,158,126,0.05) 60%, transparent 100%); border: 1px solid rgba(122,158,126,0.15); }
.c2 { width: 280px; height: 280px; top: 15%; right: 15%; background: radial-gradient(circle, rgba(212,168,83,0.15) 0%, transparent 70%); }
.floating-emoji { position: absolute; font-size: 2.5rem; animation: float 4s ease-in-out infinite; }
.e1 { top:20%; right:30%; animation-delay:0s; }
.e2 { top:55%; right:50%; animation-delay:1s; }
.e3 { top:35%; right:15%; animation-delay:2s; }
.e4 { top:70%; right:30%; animation-delay:0.5s; }
@keyframes float { 0%,100%{transform:translateY(0)rotate(0)} 50%{transform:translateY(-12px)rotate(5deg)} }

/* ── TOOLS OVERVIEW ── */
.tools-overview { padding: 80px 60px; background: var(--white); }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 400; color: var(--green-deep); text-align: center; margin-bottom: 48px; }
.tools-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; max-width: 1200px; margin: 0 auto; }
.tool-card { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 28px 16px; background: var(--cream); border: 1px solid rgba(122,158,126,0.15); border-radius: var(--radius); text-decoration: none; color: var(--text); transition: all 0.25s; cursor: pointer; }
.tool-card:hover { border-color: var(--sage); background: var(--cream-dark); transform: translateY(-4px); box-shadow: var(--shadow); }
.tool-card span { font-size: 2rem; margin-bottom: 10px; }
.tool-card strong { font-size: 0.85rem; font-weight: 500; margin-bottom: 4px; color: var(--green-deep); }
.tool-card small { font-size: 0.72rem; color: var(--text-muted); }

/* ── SECTIONS ── */
.section { padding: 80px 60px; max-width: 1200px; margin: 0 auto; }
.section.alt-bg { max-width: 100%; background: var(--cream-dark); padding: 80px 60px; }
.section.alt-bg > * { max-width: 1200px; margin-left: auto; margin-right: auto; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 400; color: var(--green-deep); margin-bottom: 8px; }
.section-header p { color: var(--text-muted); font-size: 0.95rem; }

/* ── RECIPE SEARCH ── */
.recipe-search-bar { max-width: 500px; margin: 0 auto 24px; }
.recipe-search-bar input { width: 100%; padding: 13px 20px; border: 1px solid rgba(122,158,126,0.3); border-radius: 50px; font-size: 0.9rem; background: var(--white); font-family: 'DM Sans', sans-serif; transition: border-color 0.2s; }
.recipe-search-bar input:focus { outline: none; border-color: var(--sage); }

/* ── RECIPE FILTERS ── */
.recipe-filters { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 16px; }
.filter-btn { padding: 7px 18px; border: 1px solid rgba(122,158,126,0.3); border-radius: 50px; background: none; cursor: pointer; font-size: 0.83rem; color: var(--text-muted); transition: all 0.2s; font-family: 'DM Sans', sans-serif; }
.filter-btn.active, .filter-btn:hover { background: var(--sage-dark); color: var(--white); border-color: var(--sage-dark); }

.recipe-count { text-align: center; font-size: 0.82rem; color: var(--text-muted); margin-bottom: 28px; }

/* ── RECIPE GRID ── */
.recipe-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 22px; }
.recipe-card { background: var(--white); border-radius: var(--radius); overflow: hidden; cursor: pointer; transition: all 0.25s; box-shadow: var(--shadow); border: 1px solid rgba(0,0,0,0.04); animation: fadeInUp 0.4s ease both; }
.recipe-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.recipe-card-img { height: 160px; display: flex; align-items: center; justify-content: center; font-size: 4rem; position: relative; overflow: hidden; }
.recipe-card-img img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.recipe-card-img .recipe-emoji-fallback { position: relative; z-index: 1; font-size: 3.5rem; }
.recipe-card-body { padding: 18px; }
.recipe-card-cat { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sage); margin-bottom: 5px; }
.recipe-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 600; color: var(--green-deep); margin-bottom: 8px; line-height: 1.3; }
.recipe-card-meta { display: flex; gap: 10px; flex-wrap: wrap; font-size: 0.75rem; color: var(--text-muted); }
.recipe-kcal { font-weight: 600; color: var(--terracotta); font-size: 0.82rem; margin-top: 8px; }
.no-results { text-align: center; color: var(--text-muted); padding: 48px 24px; font-size: 1rem; grid-column: 1/-1; }

/* ── MODAL ── */
.modal-overlay { display: none; position: fixed; inset: 0; z-index: 200; background: rgba(0,0,0,0.55); backdrop-filter: blur(4px); align-items: center; justify-content: center; }
.modal-overlay.open { display: flex; }
.modal-box { background: var(--white); border-radius: 20px; max-width: 680px; width: 90%; max-height: 88vh; overflow-y: auto; padding: 40px; position: relative; box-shadow: 0 32px 80px rgba(0,0,0,0.2); }
.modal-close { position: absolute; top: 16px; right: 20px; background: none; border: none; font-size: 1.2rem; cursor: pointer; color: var(--text-muted); width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: background 0.2s; }
.modal-close:hover { background: var(--cream-dark); }
.modal-recipe-img { width: 100%; height: 220px; object-fit: cover; border-radius: 12px; margin-bottom: 20px; }
.modal-emoji { font-size: 3.5rem; margin-bottom: 10px; }
.modal-cat { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sage); margin-bottom: 4px; }
.modal-box h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; font-weight: 600; color: var(--green-deep); margin-bottom: 8px; }
.modal-meta { display: flex; gap: 14px; flex-wrap: wrap; font-size: 0.8rem; color: var(--text-muted); margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid var(--cream-dark); }
.macro-pills { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.macro-pill { padding: 5px 12px; border-radius: 50px; font-size: 0.78rem; font-weight: 500; }
.pill-p { background: rgba(122,158,126,0.15); color: var(--sage-dark); }
.pill-g { background: rgba(212,168,83,0.15); color: #a07c1e; }
.pill-l { background: rgba(196,112,77,0.15); color: var(--terracotta); }
.pill-k { background: rgba(45,80,22,0.1); color: var(--green-deep); font-weight: 700; }
.modal-section { margin-bottom: 20px; }
.modal-section h4 { font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--sage-dark); margin-bottom: 10px; }
.modal-section ul, .modal-section ol { padding-left: 18px; }
.modal-section li { font-size: 0.9rem; line-height: 1.9; color: var(--text); }

/* ── TOOL CONTAINER ── */
.tool-container { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; max-width: 900px; margin: 0 auto; }
.tool-form { background: var(--white); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); }
.form-row { display: flex; gap: 16px; }
.form-row .form-group { flex: 1; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.79rem; font-weight: 500; color: var(--sage-dark); margin-bottom: 6px; letter-spacing: 0.03em; }
.form-group input, .form-group select { width: 100%; padding: 10px 14px; border: 1px solid rgba(122,158,126,0.25); border-radius: 10px; font-size: 0.9rem; font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--text); transition: border-color 0.2s; }
.form-group input:focus, .form-group select:focus { outline: none; border-color: var(--sage); }
.calc-btn { width: 100%; padding: 13px; background: var(--sage-dark); color: var(--white); border: none; border-radius: 10px; font-size: 0.9rem; font-weight: 500; font-family: 'DM Sans', sans-serif; cursor: pointer; transition: all 0.2s; margin-top: 4px; }
.calc-btn:hover { background: var(--green-deep); }
.tool-result { background: var(--white); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); min-height: 300px; display: flex; align-items: center; justify-content: center; }
.result-placeholder { text-align: center; color: var(--text-muted); }
.result-placeholder span { font-size: 3rem; display: block; margin-bottom: 12px; }
.result-placeholder p { font-size: 0.9rem; line-height: 1.5; }

/* ── RESULT CONTENT ── */
.result-content { width: 100%; }
.result-main { text-align: center; margin-bottom: 24px; }
.big-num { font-family: 'Cormorant Garamond', serif; font-size: 3.5rem; font-weight: 400; color: var(--green-deep); line-height: 1; }
.big-unit { font-size: 1.1rem; color: var(--text-muted); }
.result-label { font-size: 0.78rem; color: var(--text-muted); letter-spacing: 0.05em; text-transform: uppercase; margin-top: 4px; }
.result-breakdown { margin-top: 20px; }
.result-breakdown-item { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--cream-dark); font-size: 0.88rem; gap: 8px; }
.result-breakdown-item:last-child { border-bottom: none; }
.breakdown-label { color: var(--text-muted); flex-shrink: 0; }
.breakdown-value { font-weight: 600; color: var(--text); text-align: right; }
.macro-bars { margin-top: 20px; }
.macro-bar-item { margin-bottom: 14px; }
.macro-bar-label { display: flex; justify-content: space-between; font-size: 0.8rem; margin-bottom: 5px; }
.bar-bg { height: 8px; border-radius: 4px; background: var(--cream-dark); overflow: hidden; }
.bar-fill { height: 100%; border-radius: 4px; transition: width 0.6s ease; }
.bar-p { background: var(--sage); }
.bar-g { background: var(--gold); }
.bar-l { background: var(--terracotta); }

/* ── QUANTITÉS ── */
.quantites-wrapper { max-width: 900px; margin: 0 auto; }
.portions-adjuster { display: flex; align-items: center; gap: 16px; justify-content: center; margin-bottom: 32px; font-size: 0.9rem; color: var(--text-muted); font-weight: 500; }
.portions-ctrl { display: flex; align-items: center; gap: 12px; }
.portions-ctrl button { width: 36px; height: 36px; border-radius: 50%; border: 2px solid var(--sage); background: none; color: var(--sage-dark); font-size: 1.2rem; cursor: pointer; transition: all 0.2s; display: flex; align-items: center; justify-content: center; }
.portions-ctrl button:hover { background: var(--sage-dark); color: var(--white); }
.portions-ctrl span { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 600; color: var(--green-deep); min-width: 40px; text-align: center; }
.quantites-grid { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); margin-bottom: 40px; }
.portion-row { display: grid; grid-template-columns: 1fr auto auto; gap: 16px; align-items: center; padding: 14px 24px; border-bottom: 1px solid var(--cream-dark); transition: background 0.15s; }
.portion-row:last-child { border-bottom: none; }
.portion-row:hover { background: var(--cream); }
.portion-name { font-size: 0.9rem; color: var(--text); }
.portion-qty { font-weight: 700; color: var(--sage-dark); font-size: 1rem; text-align: right; white-space: nowrap; }
.portion-visual { font-size: 0.75rem; color: var(--text-muted); text-align: right; min-width: 120px; }
.tips-heading { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 400; color: var(--green-deep); margin-bottom: 20px; }
.tips-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }
.tip-card { background: var(--white); border-radius: 12px; padding: 20px; box-shadow: var(--shadow); border-left: 3px solid var(--sage); }
.tip-card strong { font-size: 0.88rem; color: var(--green-deep); display: block; margin-bottom: 6px; }
.tip-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }

/* ── CUISSON ── */
.cuisson-search { max-width: 500px; margin: 0 auto 28px; }
.cuisson-search input { width: 100%; padding: 12px 20px; border: 1px solid rgba(122,158,126,0.3); border-radius: 50px; font-size: 0.9rem; background: var(--white); font-family: 'DM Sans', sans-serif; }
.cuisson-search input:focus { outline: none; border-color: var(--sage); }
.cuisson-tabs { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 28px; }
.ctab { padding: 8px 18px; border: 1px solid rgba(122,158,126,0.3); border-radius: 50px; background: none; font-size: 0.83rem; cursor: pointer; color: var(--text-muted); transition: all 0.2s; font-family: 'DM Sans', sans-serif; }
.ctab.active, .ctab:hover { background: var(--sage-dark); color: var(--white); border-color: var(--sage-dark); }
.cuisson-table { max-width: 960px; margin: 0 auto; background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.cuisson-table table { width: 100%; border-collapse: collapse; }
.cuisson-table th { background: var(--sage-dark); color: var(--white); padding: 13px 18px; text-align: left; font-size: 0.8rem; font-weight: 500; letter-spacing: 0.04em; }
.cuisson-table td { padding: 11px 18px; font-size: 0.86rem; border-bottom: 1px solid var(--cream-dark); color: var(--text); }
.cuisson-table tr:hover td { background: var(--cream); }
.cuisson-table tr:last-child td { border-bottom: none; }
.note-cell { font-size: 0.75rem; color: var(--text-muted); }
.time-badge { display: inline-block; padding: 2px 10px; border-radius: 50px; font-size: 0.76rem; font-weight: 500; }
.time-quick  { background: rgba(122,158,126,0.15); color: var(--sage-dark); }
.time-medium { background: rgba(212,168,83,0.15); color: #a07c1e; }
.time-long   { background: rgba(196,112,77,0.15); color: var(--terracotta); }

/* ── CONVERTER ── */
.converter-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; max-width: 1100px; margin: 0 auto; }
.converter-card { background: var(--white); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); }
.converter-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 600; color: var(--green-deep); margin-bottom: 14px; }
.converter-card input, .converter-card select { width: 100%; padding: 10px 14px; border: 1px solid rgba(122,158,126,0.25); border-radius: 10px; font-size: 0.9rem; font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--text); margin-bottom: 10px; }
.converter-card input:focus, .converter-card select:focus { outline: none; border-color: var(--sage); }
.conv-result { background: var(--cream-dark); border-radius: 10px; padding: 14px 16px; font-size: 0.9rem; color: var(--text); min-height: 52px; line-height: 1.8; }
.table-label { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 8px; }
.equiv-table { width: 100%; font-size: 0.83rem; border-collapse: collapse; }
.equiv-table td { padding: 5px 4px; color: var(--text); vertical-align: top; }
.equiv-table td:nth-child(2) { color: var(--sage-dark); text-align: center; padding: 5px 8px; }
.equiv-table td:last-child { color: var(--text-muted); }

/* ── IMC SCALE ── */
.imc-scale { display: flex; border-radius: 8px; overflow: hidden; height: 12px; }
.imc-seg { flex: 1; }
.imc-labels { display: flex; justify-content: space-between; font-size: 0.68rem; color: var(--text-muted); margin-top: 5px; text-align: center; }

/* ── ASTUCES ── */
.astuces-tabs { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 36px; }
.atab { padding: 8px 18px; border: 1px solid rgba(122,158,126,0.3); border-radius: 50px; background: none; font-size: 0.83rem; cursor: pointer; color: var(--text-muted); transition: all 0.2s; font-family: 'DM Sans', sans-serif; }
.atab.active, .atab:hover { background: var(--sage-dark); color: var(--white); border-color: var(--sage-dark); }
.astuces-content { max-width: 900px; margin: 0 auto; }
.fast-intro { background: rgba(122,158,126,0.1); border-left: 3px solid var(--sage); border-radius: 8px; padding: 16px 20px; margin-bottom: 28px; }
.fast-intro p { font-size: 0.9rem; color: var(--text); line-height: 1.6; font-style: italic; }
.astuces-cards { display: flex; flex-direction: column; gap: 14px; }
.astuce-card { display: flex; gap: 18px; align-items: flex-start; background: var(--white); border-radius: 14px; padding: 22px; box-shadow: var(--shadow); animation: fadeInUp 0.4s ease both; transition: transform 0.2s; }
.astuce-card:hover { transform: translateX(4px); }
.astuce-icon { font-size: 1.8rem; flex-shrink: 0; width: 44px; text-align: center; margin-top: 2px; }
.astuce-body strong { font-size: 0.92rem; color: var(--green-deep); display: block; margin-bottom: 6px; }
.astuce-body p { font-size: 0.86rem; color: var(--text-muted); line-height: 1.65; }

/* ── SEASON ── */
.season-nav { display: flex; align-items: center; gap: 12px; justify-content: center; margin-bottom: 32px; flex-wrap: wrap; }
.season-btn { padding: 8px 20px; border: none; border-radius: 50px; background: var(--sage-dark); color: var(--white); font-size: 0.85rem; cursor: pointer; font-family: 'DM Sans', sans-serif; transition: background 0.2s; }
.season-btn:hover { background: var(--green-deep); }
.month-select-wrap select { padding: 8px 16px; border: 1px solid rgba(122,158,126,0.3); border-radius: 50px; background: var(--white); font-family: 'DM Sans', sans-serif; font-size: 0.85rem; cursor: pointer; }
.season-grid-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; max-width: 800px; margin: 0 auto; }
.season-cat h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 600; color: var(--green-deep); margin-bottom: 14px; }
.season-items { display: flex; flex-wrap: wrap; gap: 8px; }
.season-tag { padding: 6px 14px; border-radius: 50px; font-size: 0.8rem; }
.tag-fruit  { background: rgba(212,168,83,0.15); color: #a07c1e; }
.tag-legume { background: rgba(122,158,126,0.15); color: var(--sage-dark); }

/* ── FOOTER ── */
.footer { background: var(--green-deep); color: rgba(255,255,255,0.7); text-align: center; padding: 48px 40px; }
.footer-brand { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; color: var(--white); margin-bottom: 8px; }
.footer p { font-size: 0.88rem; margin-bottom: 6px; }
.footer-note { font-size: 0.75rem; opacity: 0.6; max-width: 500px; margin: 12px auto 0; line-height: 1.5; }

/* ── ANIMATIONS ── */
@keyframes fadeInUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .tool-container { grid-template-columns: 1fr; }
  .form-row { flex-direction: column; }
}
@media (max-width: 768px) {
  .navbar { padding: 0 20px; }
  .nav-links { display: none; flex-direction: column; position: fixed; top: 64px; left: 0; right: 0; background: var(--white); padding: 20px; gap: 14px; box-shadow: var(--shadow); z-index: 99; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .hero { padding: 100px 24px 60px; }
  .hero-deco { display: none; }
  .section { padding: 60px 20px; }
  .section.alt-bg { padding: 60px 20px; }
  .tools-overview { padding: 60px 20px; }
  .season-grid-inner { grid-template-columns: 1fr; }
  .converter-grid { grid-template-columns: 1fr; }
  .portion-row { grid-template-columns: 1fr auto; }
  .portion-visual { display: none; }
  .modal-box { padding: 24px; }
  .astuces-tabs { gap: 6px; }
  .atab { font-size: 0.78rem; padding: 7px 12px; }
}
