/* ============================================================
   Burrata.pro — feuille de style partagée
   Palette : crème, mozzarella, basilic, San Marzano, or des Pouilles
   Aucune dépendance externe (zéro CDN, zéro webfont distante).
   ============================================================ */

:root {
  --cream: #FBF6EC;
  --cream-2: #F4ECDD;
  --paper: #FFFDF8;
  --ink: #2C2620;
  --ink-soft: #5C5348;
  --line: #E6DCC9;
  --basil: #3F6B4C;
  --basil-dark: #2E4F39;
  --tomato: #C24B3A;
  --gold: #C1913F;
  --shadow: 0 18px 40px -24px rgba(44, 38, 32, .45);
  --radius: 18px;
  --maxw: 1120px;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--basil-dark); }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

h1, h2, h3, h4 { font-family: var(--serif); line-height: 1.12; font-weight: 600; letter-spacing: -.01em; }

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .72rem;
  font-weight: 700;
  color: var(--tomato);
  margin: 0 0 12px;
}

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(251, 246, 236, .88);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 70px; gap: 18px;
}
.brand {
  font-family: var(--serif);
  font-size: 1.42rem; font-weight: 600; letter-spacing: -.02em;
  color: var(--ink); text-decoration: none; display: flex; align-items: center; gap: 9px;
}
.brand .dot { color: var(--tomato); }
.brand .mark { width: 30px; height: 30px; display: block; flex: none; }
.site-footer .brand .mark { width: 28px; height: 28px; }
.nav-links { display: flex; gap: 4px; align-items: center; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  text-decoration: none; color: var(--ink-soft); font-weight: 600; font-size: .95rem;
  padding: 8px 14px; border-radius: 999px; transition: background .18s, color .18s;
}
.nav-links a:hover { background: var(--cream-2); color: var(--ink); }
.nav-links a.active { background: var(--basil); color: #fff; }
.nav-toggle { display: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--tomato); color: #fff; text-decoration: none;
  font-weight: 700; padding: 12px 22px; border-radius: 999px;
  transition: transform .15s ease, box-shadow .15s ease; box-shadow: var(--shadow);
}
.btn:hover { transform: translateY(-2px); }
.btn.ghost { background: transparent; color: var(--ink); box-shadow: none; border: 1.5px solid var(--line); }
.btn.ghost:hover { border-color: var(--basil); color: var(--basil-dark); }

/* ---------- Hero ---------- */
.hero { padding: 68px 0 40px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.hero h1 { font-size: clamp(2.4rem, 5vw, 4rem); margin: 0 0 18px; }
.hero h1 em { color: var(--tomato); font-style: italic; }
.hero p.lead { font-size: 1.18rem; color: var(--ink-soft); margin: 0 0 26px; max-width: 44ch; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 30px; margin-top: 34px; }
.hero-stats .n { font-family: var(--serif); font-size: 1.9rem; color: var(--basil-dark); }
.hero-stats .l { font-size: .85rem; color: var(--ink-soft); }

/* Illustration burrata (CSS pur) */
.burrata-art {
  aspect-ratio: 1/1; border-radius: 50%;
  background:
    radial-gradient(circle at 38% 34%, #fff 0 26%, transparent 27%),
    radial-gradient(circle at 50% 50%, #FFFDF8 0 60%, #F3E9D8 61%),
    radial-gradient(circle at 50% 50%, #FCF8F0 0 62%, transparent 63%);
  position: relative; box-shadow: var(--shadow);
  display: grid; place-items: center; overflow: hidden;
  background-color: #FFFDF8;
}
.burrata-art::before {
  content: ""; position: absolute; inset: 8%;
  border-radius: 50%;
  background: radial-gradient(circle at 42% 38%, #ffffff, #f6efe1 70%, #ece0cb);
  box-shadow: inset 0 -24px 40px -18px rgba(160,140,100,.4), inset 0 14px 30px -10px #fff;
}
.burrata-art .leaf {
  position: absolute; font-size: 3.4rem; z-index: 2; filter: drop-shadow(0 6px 10px rgba(0,0,0,.15));
}
.burrata-art .leaf.a { top: 12%; right: 22%; transform: rotate(18deg); }
.burrata-art .leaf.b { bottom: 16%; left: 18%; transform: rotate(-24deg); font-size: 2.6rem; }
.burrata-art .drop { position: absolute; z-index: 3; font-size: 2rem; bottom: 24%; right: 30%; }

/* ---------- Sections ---------- */
section { padding: 56px 0; }
.section-head { max-width: 60ch; margin-bottom: 34px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin: 0 0 12px; }
.section-head p { color: var(--ink-soft); font-size: 1.05rem; margin: 0; }

.band { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.band.green { background: var(--basil-dark); color: #fdf7ea; }
.band.green .section-head p { color: #d9e5d5; }
.band.green .eyebrow { color: #E9C77A; }

/* ---------- Cards grid ---------- */
.grid { display: grid; gap: 22px; }
.grid.c3 { grid-template-columns: repeat(3, 1fr); }
.grid.c4 { grid-template-columns: repeat(4, 1fr); }
.grid.c2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card .ico { font-size: 2rem; margin-bottom: 12px; }
.card h3 { font-size: 1.28rem; margin: 0 0 8px; }
.card p { color: var(--ink-soft); margin: 0; font-size: .98rem; }
.card .swatch { height: 92px; border-radius: 12px; margin-bottom: 16px; display: grid; place-items: center; font-size: 2.2rem; }

a.card { text-decoration: none; color: inherit; display: block; }
.card .more { display: inline-block; margin-top: 14px; font-weight: 700; color: var(--tomato); font-size: .92rem; }

/* Variety swatches */
.sw-burrata { background: radial-gradient(circle at 40% 35%, #fff, #f2e9d7); }
.sw-burratina { background: radial-gradient(circle at 40% 35%, #fff, #efe6d2); }
.sw-stracciatella { background: linear-gradient(135deg, #fffdf7, #f0e7d4); }
.sw-bocconcini { background: radial-gradient(circle at 30% 30%, #fff, #ece2cd); }
.sw-affumicata { background: linear-gradient(135deg, #e9dcc4, #cdb894); }
.sw-tartufo { background: linear-gradient(135deg, #efe6d2, #a99a7d); }

/* ---------- Recipe cards ---------- */
.recipe { overflow: hidden; padding: 0; }
.recipe .head { height: 120px; display: grid; place-items: center; font-size: 3rem; }
.recipe .body { padding: 22px 24px 26px; }
.recipe .tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.tag {
  font-size: .74rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  background: var(--cream-2); color: var(--ink-soft); padding: 4px 10px; border-radius: 999px;
}
.tag.hot { background: #f6e0da; color: var(--tomato); }
.recipe h3 { font-size: 1.24rem; margin: 0 0 8px; }
.recipe p { color: var(--ink-soft); margin: 0 0 14px; font-size: .96rem; }
.recipe .meta { display: flex; gap: 18px; font-size: .85rem; color: var(--ink-soft); border-top: 1px dashed var(--line); padding-top: 12px; }

/* ---------- Steps / timeline ---------- */
.steps { display: grid; gap: 18px; counter-reset: s; }
.step {
  display: grid; grid-template-columns: 54px 1fr; gap: 18px; align-items: start;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 24px;
}
.step .num {
  counter-increment: s; width: 54px; height: 54px; border-radius: 50%;
  background: var(--basil); color: #fff; display: grid; place-items: center;
  font-family: var(--serif); font-size: 1.5rem;
}
.step .num::before { content: counter(s); }
.step h3 { margin: 4px 0 6px; font-size: 1.2rem; }
.step p { margin: 0; color: var(--ink-soft); }

/* ---------- Calendar / seasons ---------- */
.months { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }
.month {
  text-align: center; padding: 16px 6px; border-radius: 12px; border: 1px solid var(--line);
  background: var(--paper); font-size: .9rem;
}
.month .m { font-weight: 700; display: block; }
.month.peak { background: var(--basil); color: #fff; border-color: var(--basil); }
.month.ok { background: #eaf0e6; }

/* ---------- Pairing table ---------- */
.pairs { width: 100%; border-collapse: collapse; background: var(--paper); border-radius: var(--radius); overflow: hidden; }
.pairs th, .pairs td { text-align: left; padding: 14px 18px; border-bottom: 1px solid var(--line); font-size: .96rem; }
.pairs th { background: var(--cream-2); font-family: var(--serif); }
.pairs tr:last-child td { border-bottom: 0; }

/* ---------- Quote / feature ---------- */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.feature blockquote { font-family: var(--serif); font-size: clamp(1.4rem,2.6vw,2rem); line-height: 1.3; margin: 0; }
.feature .who { margin-top: 16px; font-size: .9rem; opacity: .8; }

/* ---------- FAQ ---------- */
.faq details {
  background: var(--paper); border: 1px solid var(--line); border-radius: 12px;
  padding: 4px 20px; margin-bottom: 12px;
}
.faq summary {
  cursor: pointer; font-weight: 700; padding: 14px 0; list-style: none;
  display: flex; justify-content: space-between; gap: 12px; font-family: var(--serif); font-size: 1.1rem;
}
.faq summary::after { content: "+"; color: var(--tomato); font-size: 1.4rem; }
.faq details[open] summary::after { content: "–"; }
.faq details p { color: var(--ink-soft); margin: 0 0 16px; }

/* ---------- CTA band ---------- */
.cta {
  text-align: center; background: var(--tomato); color: #fff; border-radius: 24px;
  padding: 54px 24px; margin: 40px auto;
}
.cta h2 { font-size: clamp(1.8rem,3.4vw,2.6rem); margin: 0 0 12px; color: #fff; }
.cta p { max-width: 50ch; margin: 0 auto 24px; font-size: 1.08rem; opacity: .95; }
.cta .btn { background: #fff; color: var(--tomato); }

/* ---------- Prose (article pages) ---------- */
.prose { max-width: 70ch; }
.prose p { margin: 0 0 18px; }
.prose h2 { margin: 40px 0 14px; font-size: 1.7rem; }
.prose h3 { margin: 28px 0 10px; font-size: 1.3rem; }
.prose ul { padding-left: 22px; color: var(--ink-soft); }
.prose li { margin-bottom: 8px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #e9e0d0; padding: 54px 0 30px; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 30px; }
.site-footer h4 { color: #fff; font-size: 1rem; margin: 0 0 14px; }
.site-footer a { color: #cfc4b2; text-decoration: none; display: block; padding: 5px 0; font-size: .92rem; }
.site-footer a:hover { color: #fff; }
.site-footer .brand { color: #fff; }
.foot-bottom {
  border-top: 1px solid rgba(255,255,255,.12); margin-top: 34px; padding-top: 20px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: .82rem; color: #a99f8e;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-grid, .feature { grid-template-columns: 1fr; }
  .hero-art-wrap { max-width: 360px; margin: 0 auto; }
  .grid.c4 { grid-template-columns: repeat(2, 1fr); }
  .grid.c3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .months { grid-template-columns: repeat(3, 1fr); }
  .nav-links {
    position: absolute; top: 70px; left: 0; right: 0; flex-direction: column;
    background: var(--cream); border-bottom: 1px solid var(--line);
    padding: 12px 22px; gap: 4px; display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px; border-radius: 10px; }
  .nav-toggle {
    display: inline-flex; background: none; border: 1.5px solid var(--line);
    border-radius: 10px; padding: 8px 12px; font-size: 1.1rem; cursor: pointer;
  }
}
@media (max-width: 560px) {
  .grid.c4, .grid.c3, .grid.c2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
}
