/* ==========================================================================
   AS MIEL — feuille de style unique
   Système : noir encre #0D0C0A · jaune miel #F9C605 · papier #F0EEE9
   Une seule famille (Helvetica/Arial), le rythme vient des graisses.
   Angles nets (radius 0), filets fins, grands blancs.
   ========================================================================== */

:root {
  --ink: #0d0c0a;
  --miel: #f9c605;
  --miel-hover: #ffd400;
  --papier: #f0eee9;
  --blanc: #fff;
  --ink-72: rgba(13, 12, 10, 0.72);
  --ink-60: rgba(13, 12, 10, 0.6);
  --ink-25: rgba(13, 12, 10, 0.25);
  --filet: rgba(13, 12, 10, 0.15);
  --bordure: rgba(13, 12, 10, 0.12);
  --miel-70: rgba(249, 198, 5, 0.7);
  --font: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --wrap: 1080px;
  --pad: 20px;
}

@media (min-width: 720px) {
  :root { --pad: 48px; }
}
@media (min-width: 1080px) {
  :root { --pad: 72px; }
}

* { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--papier);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, p { margin: 0; }

a { color: inherit; }

:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 2px;
}

/* Sur les surfaces sombres, le contour d'encre est invisible : passer au jaune */
.site-header :focus-visible,
.site-footer :focus-visible,
.hero :focus-visible {
  outline-color: var(--miel);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; }
}

/* --- Utilitaires ------------------------------------------------------- */

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--miel);
  color: var(--ink);
  padding: 12px 20px;
  font-weight: 700;
  z-index: 10;
}
.skip-link:focus {
  left: 0;
}

.micro-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0;
}
.micro-label--muted { color: var(--ink-60); }

.rule {
  border: 0;
  height: 1px;
  background: var(--filet);
  margin: 0;
}

/* Rayures d'abeille — bandes noir/jaune, signature de la marque */
.stripes {
  display: flex;
}
.stripes > div {
  flex: 1;
  height: 12px;
  background: var(--miel);
}
.stripes > div:nth-child(even) {
  background: var(--ink);
}
.site-footer .stripes > div:nth-child(even) {
  background: #262420;
}

/* --- Boutons ------------------------------------------------------------ */

.btn {
  display: inline-block;
  padding: 15px 30px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.btn--miel {
  background: var(--miel);
  color: var(--ink);
}
.btn--miel:hover {
  background: var(--miel-hover);
  color: var(--ink);
}
.btn--ink {
  background: var(--ink);
  color: var(--miel);
}
.btn--ink:hover {
  background: #26231e;
  color: var(--miel);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
  padding: 13.5px 28px;
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--miel);
}
.btn--small {
  padding: 11px 20px;
  font-size: 13px;
}
.btn--ghost.btn--small {
  padding: 9.5px 18px;
}

.link-fleche {
  display: inline-block;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  border-bottom: 2px solid var(--miel);
  padding-bottom: 2px;
}
.link-fleche:hover {
  color: #8a6a00;
}

/* --- Bandeau d'annonce (nouvelle récolte) --------------------------------- */

.annonce {
  display: block;
  background: var(--miel);
  color: var(--ink);
  text-align: center;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: background-color 0.15s ease;
}
@media (min-width: 720px) {
  .annonce { padding: 10px 16px; font-size: 13px; }
}
.annonce:hover {
  background: var(--miel-hover);
  color: var(--ink);
}

/* --- Badge fiche produit --------------------------------------------------- */

.product-page__badge {
  display: inline-block;
  background: var(--miel);
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 12px;
  margin-top: 12px;
}

/* --- En-tête ------------------------------------------------------------ */

.site-header {
  background: var(--ink);
  color: var(--miel);
}

.site-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 14px;
  padding-bottom: 14px;
}
@media (min-width: 720px) {
  .site-header__bar {
    gap: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

.wordmark {
  font-size: 20px;
  letter-spacing: 1.5px;
  text-decoration: none;
  color: var(--miel);
  white-space: nowrap;
}
@media (min-width: 720px) {
  .wordmark { font-size: 24px; }
}
.wordmark b { font-weight: 900; }
.wordmark span { font-weight: 300; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px 14px;
  flex-wrap: wrap;
  font-size: 11px;
  letter-spacing: 0.5px;
  width: 100%;
  justify-content: space-between;
}
@media (min-width: 720px) {
  .site-nav { width: auto; justify-content: flex-end; }
}
@media (min-width: 720px) {
  .site-nav {
    gap: 14px 26px;
    font-size: 13px;
    letter-spacing: 1.5px;
  }
}
.site-nav__cta { white-space: nowrap; }
.site-nav a {
  color: var(--miel);
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] {
  border-bottom-color: var(--miel);
}
.site-nav__cta {
  background: var(--miel);
  color: var(--ink) !important;
  padding: 7px 12px !important;
  font-weight: 700;
  border-bottom: 0 !important;
  transition: background-color 0.15s ease;
}
@media (min-width: 720px) {
  .site-nav__cta { padding: 9px 18px !important; }
}
.site-nav__cta:hover {
  background: var(--miel-hover);
}

/* --- Héro ---------------------------------------------------------------- */

.hero {
  background: var(--ink);
  color: var(--miel);
  position: relative;
  overflow: hidden;
}
.hero__inner {
  padding-top: 44px;
  padding-bottom: 56px;
  display: grid;
  gap: 28px;
  grid-template-areas: "head" "panel" "actions";
}
.hero__head { grid-area: head; }
.hero__panel { grid-area: panel; }
.hero__actions { grid-area: actions; }
@media (min-width: 900px) {
  .hero__inner {
    padding-top: 72px;
    padding-bottom: 80px;
    padding-right: calc(var(--pad) + 24px);
    gap: 24px 56px;
    grid-template-columns: 1fr 360px;
    grid-template-areas:
      "head panel"
      "actions panel";
    align-items: center;
  }
  .hero__head { align-self: end; }
  .hero__actions { align-self: start; }
}

/* Panneau papier : le pot entre dans le héros sans poser de photo sous le logo */
.hero__panel {
  background: var(--papier);
  padding: 20px 20px 16px;
  margin: 0;
  max-width: 420px;
}
.hero__panel img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 38vh;
  margin: 0 auto;
  filter: drop-shadow(0 14px 22px rgba(13, 12, 10, 0.16));
}
@media (min-width: 900px) {
  .hero__panel { padding: 28px 28px 20px; max-width: none; }
  .hero__panel img { width: 100%; max-height: none; }
}
.hero__panel figcaption {
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 14px;
}
.hero__note {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--miel-70);
  margin-top: 20px;
}
.hero__eyebrow {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--miel-70);
}
.hero__title {
  font-size: clamp(38px, 7vw, 52px);
  font-weight: 900;
  line-height: 1.05;
  margin: 16px 0 18px;
  max-width: 520px;
  text-wrap: balance;
}
.hero__text {
  font-size: 17px;
  font-weight: 400;
  max-width: 440px;
  line-height: 1.6;
  opacity: 0.85;
}
.hero .btn { margin-top: 20px; }
@media (min-width: 900px) {
  .hero .btn { margin-top: 28px; }
}
.hero__title { margin-bottom: 0; }
.hero__actions .hero__text { margin-top: 0; }

.hero__edge {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 16px;
  display: none;
  flex-direction: column;
}
@media (min-width: 900px) {
  .hero__edge { display: flex; }
}
.hero__edge div { flex: 1; background: var(--miel); }
.hero__edge div:nth-child(even) { background: #262420; }

/* --- Sections ------------------------------------------------------------ */

.section {
  padding-top: 64px;
  padding-bottom: 64px;
}
.section--blanc { background: var(--blanc); }

.section__head {
  margin-bottom: 36px;
}
.section__title {
  font-size: clamp(24px, 4vw, 30px);
  font-weight: 700;
  line-height: 1.25;
  margin-top: 14px;
  text-wrap: pretty;
}
.section__intro {
  color: var(--ink-72);
  max-width: 600px;
  margin-top: 14px;
}

/* --- Grille produits ------------------------------------------------------ */

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 720px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}

.product-card {
  background: var(--blanc);
  border: 1px solid var(--bordure);
  display: flex;
  flex-direction: column;
}
.product-card__media {
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: repeating-linear-gradient(45deg, #eceae4, #eceae4 12px, #e4e2db 12px, #e4e2db 24px);
  text-decoration: none;
  overflow: hidden;
}
.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Photo détourée (PNG transparent) : fond papier uni sous le pot */
.product-card__media.has-image,
.product-page__media.has-image {
  background: #e9e6df;
}
.product-card__media.has-image img,
.product-page__media.has-image img {
  object-fit: contain;
  padding: 8%;
}
.product-card__placeholder {
  color: rgba(13, 12, 10, 0.45);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.product-card__media { position: relative; }
.product-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--miel);
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 12px;
  z-index: 1;
}
.product-card__media.is-sold-out img {
  filter: grayscale(0.35) opacity(0.75);
}
.product-card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-card__title {
  font-size: 20px;
  font-weight: 700;
  margin: 6px 0 2px;
}
.product-card__title a {
  text-decoration: none;
  color: var(--ink);
}
.product-card__title a:hover {
  border-bottom: 2px solid var(--miel);
}
.product-card__weight {
  font-size: 14px;
  color: var(--ink-60);
}
.product-card__status {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 12px;
}
.product-card__status::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: 1px;
}
.product-card__status.is-available { color: var(--ink); font-weight: 900; }
.product-card__status.is-available::before {
  background: var(--miel);
  box-shadow: 0 0 0 1.5px var(--ink);
}
.product-card__status.is-coming { color: var(--ink-60); }
.product-card__status.is-coming::before {
  background: transparent;
  box-shadow: 0 0 0 1.5px var(--ink-25);
}

.product-card__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 18px;
}
.product-card__price {
  font-size: 22px;
  font-weight: 900;
}

/* --- Page produit ---------------------------------------------------------- */

.product-page {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}
@media (min-width: 900px) {
  .product-page { grid-template-columns: 1fr 1fr; gap: 56px; }
}

.product-page__media {
  aspect-ratio: 4 / 5;
  background: repeating-linear-gradient(45deg, #eceae4, #eceae4 12px, #e4e2db 12px, #e4e2db 24px);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--bordure);
}
.product-page__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-page__name {
  margin-top: 14px;
  font-size: clamp(30px, 5vw, 40px);
  font-weight: 900;
  line-height: 1.1;
}
.product-page__variant {
  font-size: 20px;
  font-weight: 400;
  color: var(--ink-72);
  margin-top: 6px;
}
.product-page__price {
  font-size: 28px;
  font-weight: 900;
  margin-top: 22px;
}
.product-page__price small {
  font-size: 14px;
  font-weight: 400;
  color: var(--ink-60);
  margin-left: 10px;
}
.product-page__cta {
  margin-top: 24px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.product-page__note {
  font-size: 14px;
  color: var(--ink-60);
  margin-top: 14px;
  max-width: 420px;
}
.product-page__desc {
  margin-top: 32px;
  max-width: 560px;
}
.product-page__desc p + p {
  margin-top: 14px;
}
.product-page__desc p {
  color: var(--ink-72);
}

/* Bloc « l'étiquette dit vrai » — filets & micro-labels */
.food-info {
  margin-top: 36px;
  border-top: 1px solid var(--filet);
}
.food-info__row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--filet);
  font-size: 14px;
}
.food-info__row dt {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-60);
  padding-top: 2px;
}
.food-info__row dd {
  margin: 0;
  color: var(--ink-72);
}

.avert {
  background: var(--blanc);
  border: 1px solid var(--bordure);
  border-left: 4px solid var(--miel);
  padding: 16px 18px;
  font-size: 14px;
  color: var(--ink-72);
  margin-top: 24px;
}

/* --- Formulaires ----------------------------------------------------------- */

.form-card {
  background: var(--blanc);
  border: 1px solid var(--bordure);
  padding: 28px 24px;
  max-width: 640px;
}
@media (min-width: 720px) {
  .form-card { padding: 36px; }
}

.form-field {
  margin-bottom: 22px;
}
.form-field label:not(.form-radio),
.form-field legend {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field input[type="number"],
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1.5px solid var(--ink-25);
  background: var(--blanc);
  padding: 14px 16px;
  font-size: 15px;
  font-family: inherit;
  color: var(--ink);
  border-radius: 0;
  appearance: none;
}
.form-field select {
  background-image: linear-gradient(45deg, transparent 50%, var(--ink) 50%),
    linear-gradient(135deg, var(--ink) 50%, transparent 50%);
  background-position: calc(100% - 21px) 50%, calc(100% - 16px) 50%;
  background-size: 5px 5px;
  background-repeat: no-repeat;
}
.form-field textarea {
  min-height: 110px;
  resize: vertical;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 3px solid var(--ink);
  outline-offset: 0;
  border-color: var(--ink);
}
.form-field--hp {
  position: absolute;
  left: -9999px;
}
.form-hint {
  font-size: 13px;
  color: var(--ink-60);
  margin-top: 6px;
}
.form-radio {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 15px;
  margin-bottom: 10px;
}
.form-radio input {
  accent-color: var(--ink);
}
fieldset.form-field {
  border: 0;
  padding: 0;
  margin: 0 0 22px;
}
.form-rgpd {
  font-size: 13px;
  color: var(--ink-60);
  margin: 18px 0 22px;
}

/* --- Tableaux (livraison) ---------------------------------------------------- */

.table-wrap { overflow-x: auto; }
table.simple {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  background: var(--blanc);
  border: 1px solid var(--bordure);
}
table.simple th {
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 16px;
  border-bottom: 1px solid var(--filet);
  background: var(--ink);
  color: var(--miel);
}
table.simple td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--filet);
  color: var(--ink-72);
}

/* --- Pages de contenu (histoire, légal) -------------------------------------- */

.prose {
  max-width: 640px;
}
.prose h2 {
  font-size: 20px;
  font-weight: 700;
  margin: 40px 0 12px;
}
.prose h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 26px 0 8px;
}
.prose p, .prose li {
  color: var(--ink-72);
}
.prose p + p { margin-top: 12px; }
.prose ul { padding-left: 20px; margin: 12px 0; }
.prose a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--miel);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}
.prose a:hover { color: #8a6a00; }
.prose .placeholder {
  background: rgba(249, 198, 5, 0.25);
  padding: 0 4px;
}

/* Encadré légal obligatoire (art. D.211-2 C. conso) */
.encadre {
  background: var(--blanc);
  border: 2px solid var(--ink);
  padding: 20px 22px;
  margin: 18px 0;
  font-size: 14px;
}
.encadre p + p,
.encadre ul {
  margin-top: 10px;
}
.encadre ul {
  list-style: none;
  padding-left: 12px;
}

.page-head {
  padding-top: 56px;
}
.page-head .section__title { max-width: 640px; }

/* Bandeau de faits — filets & micro-labels */
.facts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--filet);
}
.facts > div {
  padding: 22px 0;
  border-bottom: 1px solid var(--filet);
}
@media (min-width: 720px) {
  .facts { grid-template-columns: repeat(3, 1fr); gap: 40px; }
}
.facts p:last-child {
  font-size: 14px;
  color: var(--ink-72);
  margin-top: 8px;
}

/* --- Pied de page -------------------------------------------------------------- */

.site-footer {
  background: var(--ink);
  color: var(--miel);
  margin-top: 64px;
}
.site-footer__grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  padding-top: 48px;
  padding-bottom: 34px;
}
.wordmark--footer {
  font-size: 28px;
  margin: 0;
}
.site-footer__tagline {
  font-size: 13px;
  font-weight: 700;
  margin-top: 10px;
}
.site-footer__meta {
  font-size: 12px;
  color: var(--miel-70);
  margin-top: 16px;
  line-height: 1.6;
}
.site-footer__cols {
  display: flex;
  gap: 56px;
  font-size: 13px;
}
.site-footer__cols a {
  display: block;
  color: var(--miel);
  text-decoration: none;
  line-height: 2;
}
.site-footer__cols a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.site-footer__col-title {
  font-weight: 700;
  color: var(--miel-70);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 11px;
  margin: 0 0 8px;
}
.site-footer__legal {
  padding-bottom: 28px;
}
.site-footer__legal p {
  font-size: 12px;
  color: var(--miel-70);
  border-top: 1px solid rgba(249, 198, 5, 0.2);
  padding-top: 18px;
  margin: 0;
}

/* --- Page 404 / merci -------------------------------------------------------------- */

.hero--page {
  min-height: 40vh;
  display: flex;
  align-items: center;
}
.hero--page .hero__inner { display: block; }

/* --- Section encre (accueil, teaser jardin) ------------------------------------ */

.section--ink {
  background: var(--ink);
  color: var(--miel-70);
}
.section--ink .section__title { color: var(--miel); }
.section--ink .section__intro { color: var(--miel-70); }
.section--ink .micro-label--muted { color: var(--miel-70); }
.section--ink .link-fleche { color: var(--miel); }
.section--ink .link-fleche:hover { color: var(--miel-hover); }

/* --- Tuile typographique « récolte à venir » (carte été) ------------------------ */

.product-card__media--ink {
  background: var(--ink);
  color: var(--miel);
  flex-direction: column;
  gap: 14px;
  padding: 24px;
  text-align: center;
}
.product-card__media--ink .micro-label { color: var(--miel); letter-spacing: 3px; }
.product-card__media--ink p {
  color: var(--miel-70);
  font-size: 13px;
  max-width: 240px;
}
.triple-filet {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.triple-filet span {
  display: block;
  width: 72px;
  height: 2px;
  background: var(--miel);
}

/* --- Page commander : formulaire + rail de réassurance -------------------------- */

.commander-grid {
  display: grid;
  gap: 40px;
  align-items: start;
}
@media (min-width: 900px) {
  .commander-grid { grid-template-columns: minmax(0, 640px) 1fr; }
  .commander-grid > .steps { order: 2; }
  .commander-grid > form, .commander-grid > .form-card { order: 1; }
}
.steps { max-width: 420px; }
.step {
  padding: 18px 0;
  border-top: 1px solid var(--filet);
}
.step:last-child { border-bottom: 1px solid var(--filet); }
.step p:last-child {
  font-size: 14px;
  color: var(--ink-72);
  margin-top: 6px;
}
.form-recap {
  font-size: 13px;
  color: var(--ink-60);
  margin-top: 6px;
}

/* --- Placeholders photo (en attendant la séance) --------------------------------- */

.photo-ph {
  background: repeating-linear-gradient(45deg, #eceae4, #eceae4 12px, #e4e2db 12px, #e4e2db 24px);
  border: 1px solid var(--bordure);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}
.photo-ph span {
  color: rgba(13, 12, 10, 0.5);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  max-width: 300px;
}
.photo-ph--32 { aspect-ratio: 3 / 2; }
.photo-ph--45 { aspect-ratio: 4 / 5; max-width: 360px; }

/* --- Mini-formulaire d'alerte récolte ------------------------------------------- */

.form-card--mini {
  max-width: 480px;
  padding: 24px;
  margin-top: 24px;
}
.form-card--mini .btn { margin-top: 4px; }

/* --- Widget alerte récolte de l'accueil ------------------------------------------ */

.alerte-hp {
  display: grid;
  gap: 16px 56px;
  align-items: center;
}
@media (min-width: 900px) {
  .alerte-hp { grid-template-columns: 1fr 420px; }
}
.alerte-hp .section__intro { margin-top: 18px; }
.alerte-hp .form-card--mini {
  max-width: none;
  width: 100%;
  margin-top: 0;
  border-left: 4px solid var(--miel);
}
.triple-filet--ink {
  display: flex;
  margin-top: 20px;
}
.triple-filet--ink span { background: var(--ink); }
