/* Graines de Miam — site styles */

/* ===== BRAND FONTS ===== */

/* Primary: Ginto Black — all headings & titles */
@font-face {
  font-family: "Ginto Black";
  src: url("assets/ABCGintoNormal-Black-Trial-BF651b7b782fcb2.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Ginto Black";
  src: url("assets/ABCGintoNormal-BlackItalic-Trial-BF651b7b77bc17b.otf") format("opentype");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

/* Supporting: Food Truck — sparingly for accents, badges, eyebrows */
@font-face {
  font-family: "Food Truck";
  src: url("assets/FoodTruckSignage-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Fallbacks: Nunito (Avenir sub for non-Apple platforms) */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&display=swap');

:root {
  --eggshell: #fcf8e8;
  --jade: #04a561;
  --jade-deep: #038a51;
  --magenta: #a11299;
  --blue: #3080fd;
  --amber: #fdb700;
  --cerise: #d80360;
  --olive: #859f0e;
  --orange: #fd5500;
  --red: #fd0318;
  --ink: #1a1a1a;

  /* Primary: Ginto Black — bold, rounded, playful headings */
  --display: "Ginto Black", system-ui, sans-serif;
  /* Secondary: Avenir (system on Apple) → Nunito (fallback) */
  --body: "Avenir", "Avenir Next", "Nunito", system-ui, sans-serif;
  /* Supporting: Food Truck — handwritten accents, sparingly */
  --hand: "Food Truck", cursive;

  --maxw: 1280px;
  --pad: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--eggshell);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  margin: 0;
  text-transform: none;
}

/* All display-font elements get Black weight (Ginto Black = weight 900) */
.pillar__num, .pillar__title,
.step__num, .step__title,
.tcard__avatar, .tcard__name,
.value__title, .kit__name,
.theme__num, .faq summary,
.about-quote p {
  font-weight: 900;
}

p { margin: 0; }

/* ===== NAV ===== */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: var(--eggshell);
  border-bottom: 2px solid rgba(0,0,0,0.06);
}
.nav__inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 16px var(--pad);
  display: flex; align-items: center; gap: 24px;
}
.brand {
  display: inline-block;
  width: 200px; height: 56px;
  background-color: var(--jade);
  -webkit-mask: url("assets/logo-graines-de-miam.svg") no-repeat left center / contain;
          mask: url("assets/logo-graines-de-miam.svg") no-repeat left center / contain;
  text-indent: 100%; white-space: nowrap; overflow: hidden;
  flex: none;
  font-size: 0;
  color: transparent;
  margin-right: auto;
}
.brand__mark { display: none; }
.nav__toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 44px; height: 44px;
  padding: 0;
  position: relative;
  z-index: 60;
}
.nav__toggle span {
  display: block;
  width: 26px; height: 3px;
  background: var(--ink);
  border-radius: 2px;
  margin: 5px auto;
  transition: transform .25s ease, opacity .2s ease;
}
.nav__toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
.nav__menu { display: flex; gap: 4px; align-items: center; }
.nav__link {
  position: relative;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  transition: background .2s, color .2s;
}
.nav__link:hover { background: rgba(4,165,97,0.1); color: var(--jade); }
.nav__link.is-active { background: var(--jade); color: var(--eggshell); }
.nav__link.is-active:hover { background: var(--jade-deep); color: var(--eggshell); }

.nav__dropdown { position: relative; }
.nav__dropdown:hover .nav__menu-list { display: block; }
.nav__dropdown > .nav__link::after { content: " ▾"; font-size: 11px; }
.nav__menu-list {
  display: none;
  position: absolute; top: 100%; left: 0;
  background: var(--eggshell);
  border: 2px solid var(--ink);
  border-radius: 16px;
  padding: 8px;
  min-width: 200px;
  box-shadow: 6px 6px 0 rgba(0,0,0,0.08);
  margin-top: 4px;
}
.nav__menu-list a {
  display: block; padding: 8px 12px; border-radius: 10px;
  font-weight: 600; font-size: 14px;
}
.nav__menu-list a:hover { background: var(--amber); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  font-family: var(--body);
  font-weight: 800;
  font-size: 15px;
  border-radius: 999px;
  border: 2px solid var(--ink);
  background: var(--ink);
  color: var(--eggshell);
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .2s;
  box-shadow: 4px 4px 0 var(--ink);
}
.btn:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--ink); }
.btn:active { transform: translate(2px,2px); box-shadow: 0 0 0 var(--ink); }
.btn--primary { background: var(--jade); color: var(--eggshell); border-color: var(--jade-deep); box-shadow: 4px 4px 0 var(--jade-deep); }
.btn--primary:hover { box-shadow: 6px 6px 0 var(--jade-deep); }
.btn--amber { background: var(--amber); color: var(--ink); box-shadow: 4px 4px 0 var(--ink); }
.btn--magenta { background: var(--magenta); color: var(--eggshell); border-color: var(--ink); }
.btn--ghost { background: transparent; color: var(--ink); box-shadow: 4px 4px 0 var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--eggshell); }
.btn__arrow { font-size: 18px; line-height: 1; }

/* ===== LAYOUT ===== */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }
.section { padding: 80px var(--pad); }
.section__inner { max-width: var(--maxw); margin: 0 auto; }

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 60px var(--pad) 80px;
  overflow: visible;
}
.hero__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px;
  align-items: center;
}
.hero__eyebrow {
  display: inline-block;
  font-family: var(--hand);
  font-size: 30px;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 14px;
}
.hero__title {
  font-size: clamp(44px, 6vw, 84px);
  line-height: 0.95;
  color: var(--jade);
  text-wrap: balance;
}
.hero__title em {
  font-style: normal;
  color: var(--magenta);
  background: var(--amber);
  padding: 0 16px 8px;
  border-radius: 14px;
  display: inline-block;
  transform: rotate(-1.5deg);
}
.hero__lede {
  margin-top: 24px;
  font-size: 19px;
  color: #2b2b2b;
  max-width: 540px;
}
.hero__bullets {
  list-style: none; padding: 0; margin: 24px 0 0;
  display: grid; gap: 10px;
}
.hero__bullets li {
  display: flex; gap: 12px; align-items: flex-start;
  font-weight: 600; font-size: 16px;
}
.hero__bullets li::before {
  content: "✓"; flex: none;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--jade); color: var(--eggshell);
  display: grid; place-items: center;
  font-weight: 900; font-size: 14px;
  margin-top: 1px;
}
.hero__cta {
  margin-top: 32px;
  display: flex; gap: 14px; flex-wrap: wrap;
}

.hero__visual {
  position: relative;
  aspect-ratio: 1;
}
.hero__sun {
  position: absolute; inset: 10%;
  background: var(--amber);
  border-radius: 50%;
}
.hero__logo {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 52%; height: 22%;
  background-color: var(--eggshell);
  -webkit-mask: url("assets/logo-graines-de-miam.svg") no-repeat center / contain;
          mask: url("assets/logo-graines-de-miam.svg") no-repeat center / contain;
  z-index: 2;
}
.hero__veg {
  position: absolute;
  width: 38%;
  filter: drop-shadow(8px 8px 0 rgba(0,0,0,0.08));
}
.hero__veg--1 { top: -10%; left: 14%; width: 42%; transform: rotate(4deg); }
.hero__veg--2 { top: 0%; right: 9%; width: 28%; transform: rotate(-5deg); }
.hero__veg--3 { top: 28%; left: -1%; width: 18%; transform: rotate(-5deg); }
.hero__veg--4 { top: 64%; left: 0%; width: 28%; transform: rotate(8deg); }
.hero__veg--5 { top: 53%; right: -2%; width: 30%; transform: rotate(6deg); }
.hero__veg--6 { top: 76%; right: 26%; width: 30%; transform: rotate(-36deg); }

/* Hero photo variant (à propos) */
.hero__visual--photo {
  aspect-ratio: auto;
  min-height: 380px;
}
.hero__photo-frame {
  position: relative;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  border: 4px solid var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
}
.hero__photo-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__float {
  position: absolute;
  z-index: 2;
  filter: drop-shadow(4px 4px 0 rgba(0,0,0,0.08));
  pointer-events: none;
}
.hero__float--beetroot {
  width: 51%;
  top: -38%;
  left: -26%;
  transform: rotate(-10deg);
}
.hero__float--broccoli {
  width: 28%;
  top: 30%;
  right: -12%;
  transform: rotate(8deg);
}
.hero__float--sparkle-rays {
  width: 77%;
  top: -40%;
  right: -41%;
  z-index: 1;
  filter: none;
}
.hero__float--blueberries {
  width: 16%;
  bottom: -4%;
  left: -2%;
  transform: rotate(-5deg);
}

/* ===== SECTION HEADER ===== */
.s-eyebrow {
  font-family: var(--hand);
  font-size: 30px;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 10px;
}
.s-title {
  font-size: clamp(36px, 4.5vw, 60px);
  color: var(--jade);
  text-wrap: balance;
}
.s-title--blue { color: var(--blue); }
.s-title--magenta { color: var(--magenta); }
.s-title--amber { color: var(--ink); background: var(--amber); padding: 0 16px 8px; border-radius: 14px; display: inline-block; }

.s-lede { margin-top: 18px; font-size: 18px; max-width: 720px; color: #2b2b2b; }

/* ===== CONSTAT (problem) ===== */
.constat {
  background: var(--magenta);
  color: var(--eggshell);
  border-radius: 32px;
  padding: 64px var(--pad);
  text-align: center;
  margin: 0 var(--pad);
  position: relative;
  overflow: visible;
}
.constat__title {
  font-size: clamp(36px, 5vw, 64px);
  color: var(--eggshell);
  max-width: 18ch;
  margin: 0 auto;
  text-wrap: balance;
}
.constat__quote {
  font-family: var(--hand);
  color: var(--amber);
  font-size: 30px;
  margin-top: 14px;
  text-transform: uppercase;
}
.constat__veg {
  position: absolute; width: 200px;
}
.constat__veg--l { left: -59px; bottom: -50px; rotate: 14deg; }
.constat__veg--r { right: -50px; top: -64px; rotate: -17deg; }

/* ===== PILLARS ===== */
.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.pillar {
  background: var(--eggshell);
  border: 2px solid var(--ink);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 6px 6px 0 var(--ink);
  position: relative;
  display: flex; flex-direction: column; gap: 12px;
  min-height: 280px;
}
.pillar__num {
  font-family: var(--display);
  font-size: 22px;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--eggshell);
}
.pillar__title {
  font-family: var(--display);
  font-size: 22px;
  line-height: 1.05;
  text-transform: none;
}
.pillar__body { font-size: 15px; line-height: 1.55; color: #333; }

.pillar--jade { background: var(--jade); color: var(--eggshell); }
.pillar--jade .pillar__body { color: var(--eggshell); opacity: .95; }
.pillar--jade .pillar__num { background: var(--amber); color: var(--ink); }

.pillar--amber { background: var(--amber); }
.pillar--amber .pillar__num { background: var(--magenta); }

.pillar--magenta { background: var(--magenta); color: var(--eggshell); }
.pillar--magenta .pillar__body { color: var(--eggshell); opacity: .95; }
.pillar--magenta .pillar__num { background: var(--amber); color: var(--ink); }

.pillar--blue { background: var(--blue); color: var(--eggshell); }
.pillar--blue .pillar__body { color: var(--eggshell); opacity: .95; }
.pillar--blue .pillar__num { background: var(--amber); color: var(--ink); }

/* ===== STEPS ===== */
.steps {
  display: grid; gap: 16px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 48px;
}
.step {
  background: var(--eggshell);
  border: 2px solid var(--ink);
  border-radius: 24px;
  padding: 24px;
  position: relative;
  box-shadow: 4px 4px 0 var(--ink);
}
.step__num {
  font-family: var(--display);
  font-size: 56px;
  line-height: 1;
  color: var(--jade);
}
.step:nth-child(2) .step__num { color: var(--magenta); }
.step:nth-child(3) .step__num { color: var(--blue); }
.step:nth-child(4) .step__num { color: var(--orange); }
.step__title {
  font-family: var(--display);
  text-transform: none;
  font-size: 22px;
  line-height: 1.05;
  margin: 14px 0 10px;
}
.step__body { font-size: 14px; line-height: 1.55; color: #333; }
.step__veg {
  position: absolute; right: 10px; top: 10px;
  width: 100px; opacity: .85;
}

/* ===== TEAM ===== */
.team {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
  margin-top: 40px;
}
.tcard {
  background: var(--eggshell);
  border: 2px solid var(--ink);
  border-radius: 28px;
  padding: 32px;
  box-shadow: 8px 8px 0 var(--ink);
  display: grid;
  gap: 18px;
}
.tcard__head { display: flex; gap: 18px; align-items: center; }
.tcard__avatar {
  width: 96px; height: 96px; border-radius: 50%;
  background: var(--jade);
  display: grid; place-items: center;
  font-family: var(--display);
  font-size: 36px; color: var(--eggshell);
  flex: none;
  border: 3px solid var(--ink);
}
.tcard:nth-child(2) .tcard__avatar { background: var(--magenta); }
.tcard--lead .tcard__avatar--photo { width: 124px; height: 124px; border: 3px solid var(--jade); }
.tcard__avatar--photo { overflow: hidden; padding: 0; width: 112px; height: 112px; }
.tcard__avatar--photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.tcard__name { font-family: var(--display); font-size: 26px; text-transform: none; line-height: 1; }
.tcard__role { font-weight: 800; color: var(--magenta); margin-top: 4px; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; }
.tcard__founder {
  font-family: var(--display);
  font-size: 15px;
  color: var(--jade);
  margin-top: 6px;
  line-height: 1.2;
}
.tcard__subrole {
  font-weight: 700;
  font-size: 13px;
  color: #555;
  margin-top: 3px;
  font-style: italic;
}
.tcard__bio { font-size: 15px; line-height: 1.6; color: #333; }
.tcard__chip {
  display: inline-block;
  background: var(--amber);
  border: 2px solid var(--ink);
  padding: 4px 12px;
  border-radius: 999px;
  font-weight: 800; font-size: 12px;
  text-transform: uppercase; letter-spacing: 1px;
}

/* Andréa — lead card, more prominent */
.tcard--lead {
  position: relative;
  border-color: var(--jade);
  box-shadow: 10px 10px 0 var(--jade);
  transform: scale(1.03);
  z-index: 1;
}
.tcard__lead-badge {
  position: absolute;
  top: -14px; left: 24px;
  background: var(--jade);
  color: var(--eggshell);
  font-family: var(--display);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 16px;
  border-radius: 999px;
  border: 2px solid var(--ink);
}
/* Christine — support card */
.tcard--support {
  opacity: .92;
  transform: scale(0.97);
}

/* ===== VALUES ===== */
.values {
  display: grid; gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 36px;
}
.value {
  padding: 28px;
  border-radius: 22px;
  border: 2px solid var(--ink);
  background: var(--eggshell);
}
.value__title { font-family: var(--display); font-size: 22px; text-transform: none; line-height: 1.05; margin-bottom: 10px; }
.value__body { font-size: 14px; line-height: 1.6; color: #333; }
.value:nth-child(1) { background: var(--amber); }
.value:nth-child(2) { background: var(--blue); color: var(--eggshell); }
.value:nth-child(2) .value__body { color: var(--eggshell); }
.value:nth-child(3) { background: var(--cerise); color: var(--eggshell); }
.value:nth-child(3) .value__body { color: var(--eggshell); }
.value:nth-child(4) { background: var(--jade); color: var(--eggshell); }
.value:nth-child(4) .value__body { color: var(--eggshell); }

/* ===== CTA STRIP ===== */
.cta-strip {
  background: var(--jade);
  color: var(--eggshell);
  border-radius: 32px;
  padding: 56px 140px;
  margin: 0 var(--pad);
  text-align: center;
  position: relative; overflow: visible;
}
.cta-strip__title { color: var(--eggshell); font-size: clamp(34px, 4.5vw, 56px); }
.cta-strip__lede { max-width: 580px; margin: 14px auto 0; opacity: .95; }
.cta-strip__cta { margin-top: 28px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-strip__veg { position: absolute; width: 180px; z-index: 2; }
.cta-strip__veg--l { left: -66px; top: -81px; }
.cta-strip__veg--r { right: -50px; bottom: -40px; transform: rotate(12deg); width: 190px; }

/* ===== KIT CARDS ===== */
.kits {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 40px;
}
.kit {
  border: 2px solid var(--ink);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 6px 6px 0 var(--ink);
  background: var(--eggshell);
  position: relative;
  min-height: 320px;
  display: flex; flex-direction: column;
}
.kit--ps { background: var(--amber); }
.kit--ms { background: var(--cerise); color: var(--eggshell); }
.kit--gs { background: var(--blue); color: var(--eggshell); }
.kit__chip {
  align-self: flex-start;
  background: var(--ink); color: var(--eggshell);
  padding: 4px 12px; border-radius: 999px;
  font-weight: 800; font-size: 11px;
  text-transform: uppercase; letter-spacing: 1.5px;
}
.kit--ms .kit__chip { background: var(--eggshell); color: var(--ink); }
.kit--gs .kit__chip { background: var(--eggshell); color: var(--ink); }
.kit__name {
  font-family: var(--display); font-size: 30px; text-transform: none;
  line-height: 1; margin-top: 18px;
}
.kit__sub { margin-top: 8px; font-weight: 700; opacity: .85; font-size: 14px; }
.kit__veg { position: absolute; right: 16px; bottom: 14px; width: 100px; }
.kit--soon { background: repeating-linear-gradient(45deg, var(--eggshell), var(--eggshell) 12px, #f3eedb 12px, #f3eedb 24px); opacity: .9; }
.kit__status { font-family: var(--hand); font-size: 22px; margin-top: 8px; text-transform: uppercase; }

/* ===== THEMES ===== */
.themes {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 14px; margin-top: 36px;
}
.theme {
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 18px 24px;
  background: var(--eggshell);
  font-weight: 800;
  display: flex; align-items: center; gap: 14px;
  font-size: 16px;
}
.theme__num {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--jade); color: var(--eggshell);
  display: grid; place-items: center;
  font-family: var(--display); font-size: 14px;
  flex: none;
}
.theme:nth-child(2) .theme__num { background: var(--magenta); }
.theme:nth-child(3) .theme__num { background: var(--blue); }
.theme:nth-child(4) .theme__num { background: var(--orange); }
.theme:nth-child(5) .theme__num { background: var(--cerise); }
.theme:nth-child(6) .theme__num { background: var(--olive); }
.theme:nth-child(7) .theme__num { background: var(--amber); color: var(--ink); }

/* ===== TABS ===== */
.tabs {
  display: flex; gap: 8px; margin-bottom: 36px;
  flex-wrap: wrap;
}
.tab {
  padding: 12px 22px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--eggshell);
  font-weight: 800; font-size: 14px;
  cursor: pointer;
  font-family: var(--body);
  text-transform: uppercase; letter-spacing: 1px;
}
.tab.is-active {
  background: var(--ink);
  color: var(--eggshell);
}
.tab-panel { display: none; }
.tab-panel.is-active { display: block; }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 36px; margin-top: 40px;
}
.contact-info {
  background: var(--magenta);
  color: var(--eggshell);
  border-radius: 28px;
  padding: 32px;
  border: 2px solid var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
}
.contact-info h3 { color: var(--eggshell); font-size: 28px; margin-bottom: 16px; }
.contact-info ul { list-style: none; padding: 0; margin: 0 0 24px; display: grid; gap: 14px; }
.contact-info li { display: flex; gap: 12px; align-items: flex-start; font-weight: 600; }
.contact-info li::before {
  content: ""; width: 26px; height: 26px;
  border-radius: 50%; background: var(--amber);
  display: grid; place-items: center;
  flex: none; margin-top: 2px;
  background-image: var(--ico);
}
.contact-info li.li-mail::before { content: "✉"; color: var(--ink); font-weight: 900; }
.contact-info li.li-phone::before { content: "☎"; color: var(--ink); font-weight: 900; }
.contact-info li.li-pin::before { content: "◎"; color: var(--ink); font-weight: 900; }
.contact-info li.li-fr::before { content: "★"; color: var(--ink); font-weight: 900; }
.contact-info li > span { padding-top: 2px; }

.form {
  border: 2px solid var(--ink);
  border-radius: 28px;
  padding: 32px;
  background: var(--eggshell);
  box-shadow: 6px 6px 0 var(--ink);
}
.field { display: grid; gap: 6px; margin-bottom: 18px; }
.field label { font-weight: 800; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; }
.field input, .field textarea, .field select {
  font-family: var(--body); font-size: 16px;
  border: 2px solid var(--ink);
  border-radius: 12px;
  padding: 12px 14px;
  background: var(--eggshell);
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--jade);
  box-shadow: 0 0 0 4px rgba(4,165,97,0.18);
}
.field textarea { min-height: 120px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.radio-group { display: flex; gap: 8px; flex-wrap: wrap; }
.radio-group label {
  cursor: pointer; padding: 10px 16px;
  border: 2px solid var(--ink); border-radius: 999px;
  font-weight: 700; font-size: 14px;
  text-transform: none; letter-spacing: 0;
}
.radio-group input { display: none; }
.radio-group input:checked + span { background: var(--jade); color: var(--eggshell); }
.radio-group label:has(input:checked) { background: var(--jade); color: var(--eggshell); border-color: var(--jade-deep); }

/* ===== FAQ ===== */
.faq { margin-top: 36px; display: grid; gap: 14px; }
.faq details {
  border: 2px solid var(--ink);
  border-radius: 18px;
  padding: 18px 24px;
  background: var(--eggshell);
  cursor: pointer;
}
.faq details[open] { background: var(--amber); }
.faq summary {
  font-family: var(--display);
  font-size: 22px;
  text-transform: none;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-family: var(--display); font-size: 28px; line-height: 1;
  color: var(--jade);
}
.faq details[open] summary::after { content: "–"; }
.faq p { margin-top: 12px; font-size: 16px; line-height: 1.6; color: #333; }

/* ===== ABOUT ===== */
.about-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center;
}
.about-visual {
  position: relative;
  background: var(--amber);
  border-radius: 32px;
  border: 2px solid var(--ink);
  box-shadow: 8px 8px 0 var(--ink);
  aspect-ratio: 1;
  overflow: hidden;
}
.about-visual__veg { position: absolute; width: 50%; }
.about-visual__veg--1 { top: 6%; left: 6%; transform: rotate(-10deg); }
.about-visual__veg--2 { bottom: 6%; right: 6%; width: 55%; transform: rotate(12deg); }
.about-quote {
  background: var(--jade);
  color: var(--eggshell);
  border: 2px solid var(--ink);
  border-radius: 24px;
  padding: 28px;
  margin-top: 28px;
  position: relative;
  box-shadow: 6px 6px 0 var(--ink);
}
.about-quote::before {
  content: "\275D";
  font-size: 48px;
  line-height: 1;
  position: absolute;
  top: 22px; left: 22px;
  color: var(--eggshell);
  opacity: .5;
}
.about-quote::after {
  content: "\275E";
  font-size: 48px;
  line-height: 1;
  position: absolute;
  bottom: 18px; right: 22px;
  color: var(--eggshell);
  opacity: .5;
}
.about-quote p {
  margin: 0 48px;
  font-family: var(--display);
  font-size: 26px;
  text-transform: none;
  line-height: 1.1;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--ink);
  color: var(--eggshell);
  padding: 48px var(--pad) 24px;
  margin-top: 80px;
}
.footer__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px;
}
.footer__brand {
  display: inline-block;
  width: 240px; height: 60px;
  background-color: var(--amber);
  -webkit-mask: url("assets/logo-graines-de-miam.svg") no-repeat left center / contain;
          mask: url("assets/logo-graines-de-miam.svg") no-repeat left center / contain;
  text-indent: 100%; white-space: nowrap; overflow: hidden;
  font-size: 0; color: transparent;
}
.footer__tag { font-family: var(--hand); font-size: 22px; color: var(--eggshell); margin-top: 6px; text-transform: uppercase; }
.footer h4 { font-size: 18px; color: var(--amber); margin-bottom: 14px; text-transform: none; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer a { font-weight: 600; opacity: .85; font-size: 14px; }
.footer a:hover { opacity: 1; color: var(--amber); }
.footer__bottom {
  max-width: var(--maxw); margin: 32px auto 0;
  padding-top: 20px; border-top: 1px solid rgba(252,248,232,0.12);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 13px; opacity: .7;
}

/* ===== UTILITIES ===== */
.bg-eggshell { background: var(--eggshell); }
.bg-amber { background: var(--amber); }
.bg-jade { background: var(--jade); color: var(--eggshell); }
.bg-magenta { background: var(--magenta); color: var(--eggshell); }

.deco {
  position: absolute;
  pointer-events: none;
  opacity: .92;
}
.section--rel { position: relative; overflow: hidden; }

/* ===== RESPONSIVE ===== */
@media (max-width: 920px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { max-width: 460px; margin: 0 auto; }
  .steps { grid-template-columns: 1fr 1fr; }
  .team { grid-template-columns: 1fr; }
  .tcard--lead, .tcard--support { transform: none; }
  .kits { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .field-row { grid-template-columns: 1fr; }

  .nav__toggle { display: block; }
  .nav__menu {
    display: none;
    position: fixed; inset: 0;
    background: var(--eggshell);
    z-index: 55;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 90px var(--pad) 40px;
    overflow-y: auto;
  }
  .nav__menu.is-open { display: flex; }
  .nav__menu .nav__link {
    font-size: 18px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    border-radius: 0;
    display: block;
  }
  .nav__menu .nav__link:hover { background: none; }
  .nav__menu .nav__link.is-active {
    background: none;
    color: var(--jade);
  }
  .nav__menu .btn--primary {
    margin-top: 24px;
    font-size: 16px;
    padding: 16px 28px;
    justify-content: center;
    border-radius: 999px;
  }
  .nav__dropdown {
    position: static;
    width: 100%;
    border-bottom: 1px solid rgba(0,0,0,0.08);
  }
  .nav__dropdown > .nav__link {
    border-bottom: none;
  }
  .nav__dropdown > .nav__link::after { display: none; }
  .nav__dropdown:hover .nav__menu-list { display: flex; }
  .nav__menu-list {
    position: static;
    display: flex !important;
    flex-direction: column;
    border: none;
    box-shadow: none;
    padding: 0 0 12px 16px;
    margin: 0;
    min-width: 0;
    background: none;
    gap: 0;
  }
  .nav__menu-list a {
    background: none;
    border-radius: 0;
    padding: 10px 0;
    font-size: 16px;
    color: #555;
  }
  .nav__menu-list a:hover { background: none; color: var(--jade); }
}
@media (max-width: 560px) {
  .steps { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .constat, .cta-strip { margin: 0 16px; padding: 40px 24px; border-radius: 24px; }
  .constat__veg, .cta-strip__veg { display: none; }
}
