/* Bavisco — base : reset léger, papier kraft, grain, helpers d'encre.
   Repris de l'esthétique « Ink Atelier » (composer par composants, espacer par tokens). */

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { scroll-behavior: smooth; }

body {
  background-color: var(--bv-kraft);
  background-image: var(--bv-grain);
  background-blend-mode: multiply;
  color: var(--bv-texte);
  font-family: var(--bv-font-texte);
  font-size: var(--bv-text-base);
  line-height: var(--bv-leading-normal);
  font-weight: var(--bv-weight-regular);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  position: relative;
  overflow-x: hidden;
}

::selection { background: var(--bv-vermillon); color: var(--bv-kraft-clair); }

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

a { color: inherit; text-decoration: none; }

:focus-visible { outline: var(--bv-border-bold) solid var(--bv-vermillon); outline-offset: 2px; }

/* — Mise en page — */
.container {
  width: 100%;
  max-width: var(--bv-container);
  margin-inline: auto;
  padding-inline: var(--bv-space-md);
}
.container--narrow { max-width: var(--bv-container-narrow); }

/* — Typo de marque — */
.eyebrow {
  font-family: var(--bv-font-mono);
  font-size: var(--bv-text-xs);
  letter-spacing: var(--bv-tracking-wider);
  text-transform: uppercase;
  color: var(--bv-texte-doux);
}
.display {
  font-family: var(--bv-font-script);
  font-weight: var(--bv-weight-regular);
  line-height: 1.08;            /* script : boucles + accents ont besoin d'air */
  letter-spacing: 0;            /* jamais de tracking négatif sur un script lié */
}
.heading {
  font-family: var(--bv-font-script);
  line-height: 1.15;
  letter-spacing: 0;
  font-size: var(--bv-display-sm);
}
.handwritten { font-family: var(--bv-font-main); color: var(--bv-vermillon); }
.mono { font-family: var(--bv-font-mono); }

/* — Encre : trait + bord irrégulier + aplat décalé (pas de flou) — */
.bv-inked {
  border: var(--bv-border) solid var(--bv-trait);
  border-radius: var(--bv-wobble-1);
  box-shadow: var(--bv-stamp-shadow);
  background-color: var(--bv-surface);
}
.bv-inked--alt { border-radius: var(--bv-wobble-2); }

/* Tampon encreur — la signature (CTA de réservation) */
.stamp {
  display: inline-flex;
  align-items: center;
  gap: var(--bv-space-2xs);
  padding: var(--bv-space-sm) var(--bv-space-lg);
  font-family: var(--bv-font-cta);
  font-weight: 400;                  /* Staatliches : un seul poids natif */
  font-size: 1.5rem;                 /* condensé « affiche » : on monte la taille pour la présence */
  letter-spacing: .05em;
  text-transform: uppercase;         /* capitales condensées, esprit enseigne/poster */
  color: var(--bv-kraft-clair);
  background-color: var(--bv-vermillon);
  border: var(--bv-border) solid var(--bv-encre);
  border-radius: var(--bv-wobble-2);
  box-shadow: var(--bv-stamp-shadow);
  transition: transform var(--bv-dur) var(--bv-ease),
              box-shadow var(--bv-dur) var(--bv-ease);
}
.stamp:hover {
  transform: translate(-1px, -1px) rotate(-1deg);
  box-shadow: 5px 5px 0 var(--bv-encre);
}
.stamp:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--bv-encre); }
