/* ==========================================================================
   Errine’s Créations — Feuille de styles
   Palette douce, artisanale et premium
   ========================================================================== */

:root {
  --bg: #FFF8F3;            /* fond principal */
  --bg-alt: #F6E8DD;        /* fond secondaire */
  --rose: #DFA8A3;          /* accent rose poudré */
  --rose-soft: #F3DCD6;     /* rose très clair (fonds d'icônes) */
  --terra: #B86F5A;         /* accent terracotta */
  --terra-dark: #A05D4A;    /* terracotta hover */
  --ink: #3F302C;           /* texte principal */
  --ink-soft: #7A625A;      /* texte secondaire */
  --border: #E8D5C8;        /* bordures */
  --gold: #C9A86F;          /* touche dorée discrète */
  --white: #FFFDFB;         /* blanc cassé des cartes */

  --font-title: "Cormorant Garamond", Georgia, serif;
  --font-body: "Nunito Sans", "Segoe UI", system-ui, sans-serif;
  --font-script: "Alex Brush", cursive;

  --radius: 18px;
  --radius-lg: 26px;
  --shadow-soft: 0 6px 24px rgba(63, 48, 44, 0.07);
  --shadow-hover: 0 14px 34px rgba(63, 48, 44, 0.11);
  --header-h: 78px;
}

/* ---------- Base ---------- */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 14px);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3 {
  font-family: var(--font-title);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--ink);
}

h1 { font-size: clamp(2.3rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.6rem); }
h3 { font-size: 1.32rem; margin-bottom: 0.35em; }

p { margin: 0 0 1em; }

a { color: var(--terra); text-decoration: none; }
a:hover { color: var(--terra-dark); }

:focus-visible {
  outline: 2px solid var(--terra);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--rose-soft); color: var(--ink); }

.container {
  width: min(1140px, calc(100% - 48px));
  margin-inline: auto;
}

.section { padding: clamp(64px, 9vw, 104px) 0; }
.section-alt { background: var(--bg-alt); }

.script {
  font-family: var(--font-script);
  font-weight: 400;
  color: var(--terra);
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute;
  top: -48px; left: 16px;
  z-index: 200;
  background: var(--terra);
  color: #fff;
  padding: 10px 18px;
  border-radius: 0 0 12px 12px;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 0; color: #fff; }

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease,
              background-color 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}
.btn svg { width: 18px; height: 18px; flex: none; }

.btn-primary {
  background: var(--terra);
  color: #fff;
  box-shadow: 0 8px 20px rgba(184, 111, 90, 0.32);
}
.btn-primary:hover {
  background: var(--terra-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(184, 111, 90, 0.4);
}

.btn-ghost {
  background: rgba(255, 253, 251, 0.75);
  border-color: var(--border);
  color: var(--ink);
}
.btn-ghost:hover {
  border-color: var(--rose);
  background: var(--white);
  color: var(--ink);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border-color: var(--terra);
  color: var(--terra);
}
.btn-outline:hover {
  background: var(--terra);
  color: #fff;
  transform: translateY(-2px);
}

.btn-sm { padding: 9px 20px; font-size: 0.9rem; }
.btn-block { width: 100%; }

.btn-social {
  background: var(--white);
  border-color: var(--border);
  color: var(--ink);
  justify-content: flex-start;
  width: 100%;
  box-shadow: var(--shadow-soft);
}
.btn-social svg { color: var(--terra); }
.btn-social:hover {
  border-color: var(--rose);
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

/* ---------- Header ---------- */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 248, 243, 0.82);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.header.is-scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 4px 18px rgba(63, 48, 44, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
}
.brand-mark {
  width: 44px; height: 44px;
  border-radius: 50%;
  mix-blend-mode: multiply;
}
.brand-name {
  font-family: var(--font-title);
  font-size: 1.42rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.brand-name em {
  font-style: normal;
  color: var(--terra);
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.4vw, 30px);
}
.nav-link {
  position: relative;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.97rem;
  padding: 6px 2px;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--rose);
  transition: right 0.25s ease;
}
.nav-link:hover { color: var(--terra); }
.nav-link:hover::after,
.nav-link.is-active::after { right: 0; }
.nav-link.is-active { color: var(--terra); }

.nav-cta { margin-left: 6px; }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px; height: 46px;
  padding: 12px 11px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
}
.burger span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  padding: clamp(56px, 8vw, 96px) 0 clamp(72px, 9vw, 110px);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/errines-creations/04_fond_pastel_errines_creations.jpg") center / cover no-repeat;
  opacity: 0.55;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 248, 243, 0.15) 0%, rgba(255, 248, 243, 0.55) 100%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(40px, 6vw, 72px);
}

.hero-tagline {
  font-size: 1.7rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.heart-inline {
  width: 17px; height: 17px;
  fill: var(--rose);
}

.hero-copy h1 .accent {
  display: block;
  color: var(--terra);
  font-style: italic;
  font-weight: 500;
}

.hero-copy .lead {
  font-size: 1.13rem;
  color: var(--ink-soft);
  max-width: 33em;
  margin: 18px 0 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-local {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 26px 0 0;
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.hero-local svg { width: 17px; height: 17px; color: var(--terra); }

.hero-visual {
  position: relative;
}
.hero-photo {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 22px 50px rgba(63, 48, 44, 0.16);
  border: 6px solid var(--white);
}
.hero-photo img { width: 100%; }

.float-card {
  position: absolute;
  left: -26px;
  bottom: 30px;
  background: rgba(255, 253, 251, 0.94);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 22px;
  box-shadow: var(--shadow-hover);
  animation: floaty 5.5s ease-in-out infinite;
}
.float-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.float-card li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  font-size: 0.95rem;
}
.float-card svg {
  width: 15px; height: 15px;
  fill: var(--rose);
  flex: none;
}

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

.sparkle {
  position: absolute;
  fill: var(--gold);
  opacity: 0.8;
  z-index: 2;
}
.sparkle-1 { width: 26px; top: -14px; right: 18px; }
.sparkle-2 { width: 16px; top: 26px; right: -12px; opacity: 0.55; }

/* ---------- Têtes de section ---------- */

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(40px, 6vw, 60px);
}

.eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 12px;
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 6px 0 18px;
}
.divider::before,
.divider::after {
  content: "";
  height: 1px;
  width: 56px;
  background: var(--rose);
  opacity: 0.55;
}
.divider svg {
  width: 14px; height: 14px;
  fill: var(--rose);
  flex: none;
}
.divider-left { justify-content: flex-start; }

.section-lead {
  color: var(--ink-soft);
  font-size: 1.07rem;
  margin: 0 auto;
  max-width: 40em;
}

/* ---------- Cartes Créations ---------- */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px 28px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--rose);
}

.card-icon {
  width: 58px; height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--rose-soft);
  margin-bottom: 18px;
}
.card-icon svg {
  width: 28px; height: 28px;
  fill: none;
  stroke: var(--terra);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card p { margin: 0; color: var(--ink-soft); font-size: 0.99rem; }

/* ---------- Personnalisation : étapes ---------- */

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  counter-reset: step;
}

.step {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 28px 28px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }

.step-number {
  display: grid;
  place-items: center;
  width: 52px; height: 52px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--bg);
  border: 1.5px solid var(--rose);
  color: var(--terra);
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 600;
}

.step h3 { font-size: 1.22rem; }
.step p { margin: 0; color: var(--ink-soft); font-size: 0.97rem; }

.note {
  margin: 34px auto 0;
  max-width: 620px;
  text-align: center;
  font-size: 0.92rem;
  font-style: italic;
  color: var(--ink-soft);
  background: rgba(255, 253, 251, 0.7);
  border: 1px dashed var(--rose);
  border-radius: var(--radius);
  padding: 14px 22px;
}

/* ---------- Galerie ---------- */

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 22px;
}

.gallery-item {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.gallery-item:hover img { transform: scale(1.045); }

.gallery-item figcaption {
  position: absolute;
  left: 14px; bottom: 14px;
  background: rgba(255, 248, 243, 0.92);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 700;
  padding: 7px 15px;
  border-radius: 999px;
  box-shadow: 0 3px 10px rgba(63, 48, 44, 0.1);
}

.gallery-tall { grid-row: span 2; }

/* ---------- À propos ---------- */

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.about-photo {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 22px 50px rgba(63, 48, 44, 0.14);
  border: 6px solid var(--white);
  max-width: 460px;
}

.about-badge {
  position: absolute;
  right: 16px; bottom: 16px;
  background: rgba(255, 253, 251, 0.93);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 20px 12px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}
.about-badge .script {
  display: block;
  font-size: 1.5rem;
  line-height: 1.1;
}
.about-badge span:last-child {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.about-copy .eyebrow { margin-bottom: 8px; }
.about-copy h2 { margin-bottom: 0.3em; }
.about-copy p { color: var(--ink-soft); }

.about-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

/* ---------- Bientôt ---------- */

.soon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.card-soon { text-align: center; padding-top: 38px; }
.card-soon .card-icon { margin-inline: auto; }

.pill {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--rose-soft);
  color: var(--terra);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}

/* ---------- Contact ---------- */

.section-contact {
  position: relative;
  overflow: hidden;
}
.section-contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/errines-creations/04_fond_pastel_errines_creations.jpg") center / cover no-repeat;
  opacity: 0.4;
  pointer-events: none;
}
.section-contact .container { position: relative; z-index: 1; }

.contact-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 40px);
  box-shadow: var(--shadow-hover);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-field { margin-bottom: 18px; }

.form-field label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 7px;
  color: var(--ink);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--ink);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 13px 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-field textarea { resize: vertical; min-height: 120px; }

.form-field input::placeholder,
.form-field textarea::placeholder { color: #B9A79E; }

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--rose);
  box-shadow: 0 0 0 4px rgba(223, 168, 163, 0.18);
}

.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237A625A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 44px;
}

.form-status {
  margin: 14px 0 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--terra);
  text-align: center;
  min-height: 1.2em;
}
.form-status.is-error { color: #A04B3C; }
.form-status.is-success { color: #6E8B5E; }

.contact-aside {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 36px);
  box-shadow: var(--shadow-soft);
}
.contact-aside h3 .script { font-size: 2rem; }
.contact-aside > p { color: var(--ink-soft); font-size: 0.97rem; }

.contact-socials {
  display: grid;
  gap: 12px;
  margin: 20px 0 22px;
}

.contact-place {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.contact-place svg { width: 17px; height: 17px; color: var(--terra); flex: none; }

/* ---------- Footer ---------- */

.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 46px 0 28px;
}

.footer-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-brand p {
  margin: 12px 0 0;
  font-size: 0.92rem;
  color: var(--ink-soft);
  max-width: 36em;
}

.footer-nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  padding-top: 10px;
}
.footer-nav a {
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
}
.footer-nav a:hover { color: var(--terra); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.footer-bottom p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--ink-soft);
}
.footer-credit a {
  color: var(--ink-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-credit a:hover { color: var(--terra); }

/* ---------- Animations d'apparition ---------- */

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.js .reveal[data-delay="1"] { transition-delay: 0.12s; }
.js .reveal[data-delay="2"] { transition-delay: 0.24s; }
.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .float-card { animation: none; }
  .btn, .card, .step, .gallery-item img { transition: none; }
}

/* ---------- Responsive ---------- */

@media (max-width: 1024px) {
  .hero-grid { gap: 36px; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .soon-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .float-card { left: -10px; }
}

@media (max-width: 860px) {
  .nav {
    position: absolute;
    top: var(--header-h);
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: rgba(255, 248, 243, 0.97);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 18px 30px rgba(63, 48, 44, 0.08);
    padding: 14px 24px 22px;
    display: none;
  }
  .nav.is-open { display: flex; }
  .nav-link { padding: 11px 4px; font-size: 1.05rem; }
  .nav-link::after { display: none; }
  .nav-cta { margin: 10px 0 0; justify-content: center; }
  .burger { display: flex; }

  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-tagline { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-local { justify-content: center; }
  .hero-visual { max-width: 520px; margin: 0 auto; }
  .float-card { left: 8px; bottom: 18px; padding: 13px 18px; }

  .steps { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .soon-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }

  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }

  .about-grid { grid-template-columns: 1fr; }
  .about-photo { margin-inline: auto; }
  .about-copy { text-align: center; }
  .about-copy .divider-left { justify-content: center; }
  .about-socials { justify-content: center; }

  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { flex-direction: column; }
  .footer-bottom { justify-content: center; text-align: center; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .container { width: calc(100% - 36px); }

  .cards-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  .gallery { grid-template-columns: 1fr; grid-auto-rows: 230px; }
  .gallery-tall { grid-row: span 1; }

  .hero-actions .btn { width: 100%; }
  .brand-name { font-size: 1.22rem; }
  .float-card li { font-size: 0.88rem; }
}


/* ---------- Page mentions légales ---------- */

.legal-container { max-width: 760px; }

.legal h1 {
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
  margin-bottom: 0.2em;
}

.legal h2 {
  font-size: 1.35rem;
  margin: 1.9em 0 0.5em;
}

.legal p { color: var(--ink-soft); }

.legal a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-date {
  font-size: 0.85rem;
  font-style: italic;
  margin-top: 2.6em;
}

.form-consent {
  margin: 12px 0 0;
  font-size: 0.8rem;
  color: var(--ink-soft);
  text-align: center;
}
.form-consent a {
  color: var(--ink-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.form-consent a:hover { color: var(--terra); }
