/* =============================================
   Pizza Di Muro – Feuille de style principale
   Couleurs : #e12c2c (primaire) | #00171e (secondaire)
   ============================================= */

/* ---- Reset & Variables ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:       #e12c2c;
  --red-dark:  #b81f1f;
  --red-light: #ff4d4d;
  --dark:      #00171e;
  --dark-2:    #012430;
  --dark-3:    #03364a;
  --white:     #ffffff;
  --off-white: #f8f4f0;
  --gray-1:    #f0ebe5;
  --gray-2:    #d8cfc8;
  --gray-3:    #9a8f87;
  --text:      #1a1a1a;
  --text-light:#5a5a5a;

  --font-sans: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-serif:'Playfair Display', Georgia, 'Times New Roman', serif;

  --radius:    8px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.08);
  --shadow:    0 4px 20px rgba(0,0,0,.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.18);

  --transition: .25s ease;
  --max-w:     1200px;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  width: min(var(--max-w), 100% - 2rem);
  margin-inline: auto;
}

/* ---- Typography helpers ---- */
.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .75rem;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.6rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .9rem;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(225,44,44,.35);
}
.btn-outline {
  background: transparent;
  color: var(--red);
  border: 2px solid var(--red);
}
.btn-outline:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--red);
}
.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,.15);
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ---- Top bar ---- */
.topbar {
  background: var(--dark);
  color: rgba(255,255,255,.75);
  font-size: .8rem;
  padding: .4rem 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.topbar-social { display: flex; gap: .75rem; }
.topbar-social a {
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
  display: flex; align-items: center;
}
.topbar-social a:hover { color: var(--red); }
.topbar-social svg { width: 15px; height: 15px; }

/* ---- Header / Nav ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-2);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: .85rem 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  flex-shrink: 0;
  text-decoration: none;
}
.logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}
.logo-text {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.1;
}
.logo-text span { color: var(--red); }

.main-nav { flex: 1; }
.nav-list {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.nav-list a {
  display: block;
  padding: .5rem .9rem;
  font-weight: 600;
  font-size: .9rem;
  color: var(--dark);
  border-radius: var(--radius);
  transition: all var(--transition);
  position: relative;
}
.nav-list a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: .9rem; right: .9rem;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-list a:hover { color: var(--red); }
.nav-list a:hover::after { transform: scaleX(1); }

.header-cta { margin-left: auto; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero.jpg');
  background-size: cover;
  background-position: center;
  opacity: .45;
  transform: scale(1.03);
  transition: transform 8s ease-out;
}
.hero.loaded .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,23,30,.92) 0%, rgba(0,23,30,.6) 60%, rgba(225,44,44,.15) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 5rem 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(225,44,44,.2);
  border: 1px solid rgba(225,44,44,.4);
  color: #ff7f7f;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}
.hero-badge svg { width: 14px; height: 14px; }
.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.hero h1 em {
  font-style: normal;
  color: var(--red);
}
.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,.8);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.15);
}
.hero-stat-number {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--red);
  display: block;
}
.hero-stat-label {
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.5);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero-scroll svg { width: 20px; height: 20px; }

/* ---- Breaking news ticker ---- */
.news-ticker {
  background: var(--red);
  color: var(--white);
  padding: .55rem 0;
  overflow: hidden;
}
.ticker-inner {
  display: flex;
  align-items: center;
}
.ticker-label {
  flex-shrink: 0;
  background: var(--dark);
  padding: .3rem 1.2rem;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-right: 1.5rem;
}
.ticker-track {
  display: flex;
  gap: 3rem;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item { font-size: .85rem; font-weight: 500; }
.ticker-item::before { content: '•'; margin-right: .75rem; opacity: .7; }

/* ---- Sections common ---- */
section { padding: 5rem 0; }
.section-header { margin-bottom: 3rem; }
.section-header.center { text-align: center; }
.section-header.center .section-desc { margin-inline: auto; }

/* ---- Actualités ---- */
.actualites { background: var(--white); }
.actu-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
}
.actu-featured {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.actu-featured img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.actu-featured:hover img { transform: scale(1.05); }
.actu-featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,23,30,.9) 0%, rgba(0,23,30,.1) 60%);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.actu-cat {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .25rem .7rem;
  border-radius: 4px;
  margin-bottom: .75rem;
  width: fit-content;
}
.actu-featured-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: .5rem;
}
.actu-meta { color: rgba(255,255,255,.6); font-size: .8rem; }

.actu-list { display: flex; flex-direction: column; gap: 1.25rem; }
.actu-card {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--gray-1);
  transition: all var(--transition);
  cursor: pointer;
}
.actu-card:hover {
  border-color: var(--gray-2);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}
.actu-card-img {
  width: 90px; height: 90px;
  flex-shrink: 0;
  border-radius: var(--radius);
  overflow: hidden;
}
.actu-card-img img { width: 100%; height: 100%; object-fit: cover; }
.actu-card-body { flex: 1; min-width: 0; }
.actu-card-title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: .95rem;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: .35rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.actu-card:hover .actu-card-title { color: var(--red); }
.actu-card-date { font-size: .78rem; color: var(--gray-3); }

.actu-footer { margin-top: 2.5rem; text-align: center; }

/* ---- Recettes ---- */
.recettes { background: var(--off-white); }
.recettes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.recipe-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  cursor: pointer;
}
.recipe-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.recipe-card-img { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.recipe-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.recipe-card:hover .recipe-card-img img { transform: scale(1.07); }
.recipe-tag {
  position: absolute;
  top: .75rem; left: .75rem;
  background: var(--red);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  padding: .2rem .6rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.recipe-card-body { padding: 1.25rem; }
.recipe-card-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .5rem;
  line-height: 1.3;
}
.recipe-card:hover .recipe-card-title { color: var(--red); }
.recipe-card-desc { font-size: .85rem; color: var(--text-light); line-height: 1.5; margin-bottom: 1rem; }
.recipe-card-meta {
  display: flex;
  gap: 1rem;
  font-size: .78rem;
  color: var(--gray-3);
  padding-top: .75rem;
  border-top: 1px solid var(--gray-1);
}
.recipe-meta-item { display: flex; align-items: center; gap: .3rem; }
.recipe-meta-item svg { width: 14px; height: 14px; color: var(--red); }

.recettes-footer { margin-top: 2.5rem; text-align: center; }

/* ---- Aliments Focus ---- */
.aliments {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.aliments::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/aliments.jpg');
  background-size: cover;
  background-position: center;
  opacity: .12;
}
.aliments-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.aliments-content .section-label { color: #ff7f7f; }
.aliments-content .section-title { color: var(--white); }
.aliments-content .section-desc { color: rgba(255,255,255,.7); }
.aliments-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.aliment-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  cursor: pointer;
}
.aliment-card:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--red);
  transform: translateY(-4px);
}
.aliment-card-img { aspect-ratio: 16/10; overflow: hidden; }
.aliment-card-img img { width: 100%; height: 100%; object-fit: cover; }
.aliment-card-body { padding: .9rem; }
.aliment-card-title {
  font-family: var(--font-serif);
  font-size: .95rem;
  color: var(--white);
  font-weight: 700;
  margin-bottom: .25rem;
}
.aliment-card-sub { font-size: .78rem; color: rgba(255,255,255,.55); }

/* ---- Astuces ---- */
.astuces { background: var(--white); }
.astuces-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: center;
}
.astuces-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.astuces-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.astuces-badge {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem;
  background: var(--red);
  color: var(--white);
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
}
.astuces-badge strong { display: block; font-size: 1.8rem; font-family: var(--font-serif); }
.astuces-badge span { font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; }
.astuces-list { display: flex; flex-direction: column; gap: 1.5rem; }
.astuce-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--gray-1);
  transition: all var(--transition);
}
.astuce-item:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-sm);
  background: #fff9f9;
}
.astuce-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
}
.astuce-icon svg { width: 22px; height: 22px; }
.astuce-body {}
.astuce-title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: .3rem;
}
.astuce-desc { font-size: .87rem; color: var(--text-light); line-height: 1.5; }

/* ---- Newsletter ---- */
.newsletter {
  background: var(--red);
  position: relative;
  overflow: hidden;
}
.newsletter::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/newsletter.jpg');
  background-size: cover;
  background-position: center;
  opacity: .1;
}
.newsletter-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.newsletter-content .section-label { color: rgba(255,255,255,.7); }
.newsletter-content .section-title { color: var(--white); }
.newsletter-content .section-desc { color: rgba(255,255,255,.85); }
.newsletter-perks { display: flex; flex-direction: column; gap: .75rem; margin-top: 1rem; }
.newsletter-perk {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: rgba(255,255,255,.9);
  font-size: .9rem;
}
.newsletter-perk svg { width: 18px; height: 18px; color: rgba(255,255,255,.7); flex-shrink: 0; }
.newsletter-form-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}
.newsletter-form-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--dark);
  font-weight: 700;
  margin-bottom: 1.25rem;
}
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: .82rem; font-weight: 600; color: var(--dark); margin-bottom: .4rem; }
.form-group input {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--gray-2);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: .9rem;
  color: var(--text);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(225,44,44,.1); }
.form-submit { width: 100%; padding: .85rem; font-size: .95rem; border-radius: var(--radius); }
.form-privacy { font-size: .75rem; color: var(--text-light); text-align: center; margin-top: .75rem; }

/* ---- Footer ---- */
.site-footer {
  background: var(--dark-2);
  color: rgba(255,255,255,.75);
}
.footer-top {
  padding: 4rem 0 2.5rem;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo { display: flex; align-items: center; gap: .6rem; margin-bottom: 1rem; }
.footer-logo img { height: 44px; width: auto; filter: brightness(0) invert(1); }
.footer-logo-text {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
}
.footer-logo-text span { color: var(--red); }
.footer-brand-desc { font-size: .87rem; line-height: 1.6; margin-bottom: 1.25rem; }
.footer-social { display: flex; gap: .6rem; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--red); color: var(--white); transform: translateY(-2px); }
.footer-social svg { width: 15px; height: 15px; }

.footer-col h4 {
  font-size: .85rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 1.25rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--red);
  display: inline-block;
}
.footer-links { display: flex; flex-direction: column; gap: .5rem; }
.footer-links a {
  font-size: .87rem;
  color: rgba(255,255,255,.6);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: .4rem;
}
.footer-links a:hover { color: var(--red); padding-left: .4rem; }
.footer-links a svg { width: 12px; height: 12px; flex-shrink: 0; }

.footer-bottom {
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: var(--red); }
.footer-bottom-links { display: flex; gap: 1.25rem; flex-wrap: wrap; }

/* ---- Back to top ---- */
.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 44px; height: 44px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
  z-index: 99;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { background: var(--red-dark); transform: translateY(-3px); }
.back-to-top svg { width: 18px; height: 18px; }

/* ---- Cookie banner ---- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--dark);
  color: rgba(255,255,255,.85);
  padding: 1rem;
  z-index: 1000;
  border-top: 3px solid var(--red);
  transform: translateY(100%);
  transition: transform .3s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cookie-text { flex: 1; font-size: .85rem; line-height: 1.5; min-width: 200px; }
.cookie-text a { color: var(--red); }
.cookie-actions { display: flex; gap: .75rem; flex-shrink: 0; }
.btn-cookie {
  padding: .55rem 1.2rem;
  border-radius: 6px;
  font-size: .82rem;
  font-weight: 600;
  transition: all var(--transition);
}
.btn-cookie-accept { background: var(--red); color: var(--white); }
.btn-cookie-accept:hover { background: var(--red-dark); }
.btn-cookie-decline { background: rgba(255,255,255,.1); color: rgba(255,255,255,.7); }
.btn-cookie-decline:hover { background: rgba(255,255,255,.15); }

/* ---- Animations ---- */
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .actu-grid { grid-template-columns: 1fr; }
  .actu-featured { aspect-ratio: 16/8; }
  .recettes-grid { grid-template-columns: repeat(2, 1fr); }
  .aliments-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-top { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .topbar .topbar-date { display: none; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    padding: 1rem;
    box-shadow: var(--shadow);
    border-top: 1px solid var(--gray-1);
  }
  .main-nav.open { display: block; }
  .nav-list { flex-direction: column; align-items: stretch; }
  .nav-list a { padding: .75rem 1rem; border-radius: 0; }
  .header-cta { display: none; }
  .hamburger { display: flex; }
  .site-header { position: relative; }
  .hero h1 { font-size: 2.2rem; }
  .hero-stats { gap: 1.5rem; }
  .hero-stat-number { font-size: 1.5rem; }
  .recettes-grid { grid-template-columns: 1fr; }
  .astuces-grid { grid-template-columns: 1fr; }
  .astuces-img-wrap { aspect-ratio: 16/9; }
  .newsletter-inner { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .aliments-cards { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  section { padding: 3rem 0; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .actu-list { gap: .75rem; }
}
