/* ==========================================================================
   CUISINE HABITAT — La Réunion
   Design tokens
   ========================================================================== */
:root {
  /* Colors */
  --c-black: #141312;
  --c-black-soft: #1c1a18;
  --c-anthracite: #2a2724;
  --c-anthracite-2: #423d38;
  --c-white: #ffffff;
  --c-offwhite: #f6f3ee;
  --c-line: #e7e2d9;
  --c-line-dark: #4a453f;
  --c-text: #221f1c;
  --c-text-muted: #726c63;
  --c-text-on-dark-muted: #beb7ac;
  --c-gold: #c2955b;
  --c-gold-dark: #a67b45;
  --c-gold-tint: #e8d3b3;

  /* Typography */
  --font-heading: 'Poppins', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;

  /* Layout */
  --container-w: 1280px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --shadow-card: 0 20px 45px -20px rgba(20, 19, 18, 0.35);

  --header-h: 92px;
    --ticker-h: 36px;
    --offset-top: calc(var(--header-h) + var(--ticker-h));
}

/* ==========================================================================
   Reset
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}
body, h1, h2, h3, p, ul, ol, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
svg { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; background: none; border: none; }

body {
  overflow-x: hidden;
  max-width: 100%;
  font-family: var(--font-body);
  color: var(--c-text);
  background: var(--c-white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

.consent-message{
    font-size: .7rem;
    margin-bottom: 13px;
}
.container {
  width: 100%;
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: 32px;
}

.el-img{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
[name="message"] {
  resize: vertical;
  min-height: 120px;
  display: block;
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  background: transparent;
  padding: 10px;
}
.field__control.field__control--textarea{
  padding: 0;
}

.stores-map {
  height: 360px;
  width: 100%;
  border-radius: 12px;
  margin-bottom: 24px;
  z-index: 0;
}

.store-marker-label {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 12px;
  background: #fff;
  border: none;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .2);
  padding: 2px 8px;
}

/* Loader bouton lead-form */
.btn__spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: btn-spin 0.7s linear infinite;
}

.lead-form.is-loading .btn__label,
.lead-form.is-loading .btn__arrow {
  visibility: hidden;
}

.lead-form.is-loading .btn__spinner {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.lead-form.is-loading button[type="submit"] {
  position: relative;
  cursor: not-allowed;
}

@keyframes btn-spin {
  to {
    transform: rotate(360deg);
  }
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--c-gold);
  color: var(--c-black);
  padding: 12px 20px;
  z-index: 999;
  font-weight: 600;
}
.skip-link:focus { left: 16px; top: 16px; }

:focus-visible {
  outline: 2.5px solid var(--c-gold);
  outline-offset: 3px;
}

/* ==========================================================================
   Typography helpers
   ========================================================================== */
.eyebrow {
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-gold-dark);
  margin-bottom: 14px;
}
.eyebrow--light { color: var(--c-gold-tint); }

.section-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.18;
  color: var(--c-text);
  letter-spacing: -0.01em;
}
.section-title--light { color: var(--c-white); }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 26px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
  max-width: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}
.btn--gold {
  background: var(--c-gold);
  color: var(--c-black);
}
.btn--gold:hover { background: var(--c-gold-dark); }
.btn--gold:active { transform: translateY(1px); }

.btn--outline-light {
  background: var(--c-black);
  color: var(--c-white);
  border: 1.5px solid var(--c-black);
}
.btn--outline-light:hover { background: var(--c-anthracite); }

.btn--sm { padding: 11px 20px; font-size: 12px; }
.btn--block { width: 100%; }
.btn__label { min-width: 0; }
.btn__arrow { font-size: 15px; line-height: 1; flex: none; transition: transform 0.2s ease; }
.btn:hover .btn__arrow { transform: translateX(3px); }

/* ==========================================================================
   Image placeholders (replace with real photography — see data-placeholder-label)
   ========================================================================== */
.img-placeholder {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 220px;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.04) 25%, transparent 25%) 0 0/34px 34px,
    linear-gradient(315deg, rgba(255,255,255,0.04) 25%, transparent 25%) 0 0/34px 34px,
    linear-gradient(160deg, #3a352f 0%, #221f1b 100%);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='46' height='46' viewBox='0 0 46 46' fill='none'%3E%3Crect x='3' y='8' width='40' height='30' rx='2' stroke='%23C2955B' stroke-width='1.4'/%3E%3Ccircle cx='14' cy='18' r='3.4' stroke='%23C2955B' stroke-width='1.4'/%3E%3Cpath d='M3 31l10-9 8 7 7-6 10 9' stroke='%23C2955B' stroke-width='1.4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center 38%;
  opacity: 0.55;
}
.img-placeholder::after {
  content: attr(data-placeholder-label);
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--c-gold-tint);
  background: linear-gradient(0deg, rgba(0,0,0,0.55), transparent);
  text-align: left;
}
.img-placeholder--hero { min-height: 100%; }
.img-placeholder--why, .img-placeholder--alvic { min-height: 380px; }

/* ==========================================================================
   Promo ticker (breaking news)
   ========================================================================== */
.promo-ticker {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 60;
    height: var(--ticker-h);
    background: var(--c-gold);
    overflow: hidden;
    display: flex;
    align-items: center;
}
.promo-ticker__track {
    display: inline-flex;
    width: max-content;
    animation: promo-ticker-scroll 26s linear infinite;
}
.promo-ticker:hover .promo-ticker__track { animation-play-state: paused; }
.promo-ticker__group {
    display: inline-flex;
    align-items: center;
    flex: none;
    gap: 40px;
    padding-right: 40px;
}
.promo-ticker__item {
    font-size: 12.5px;
    font-weight: 500;
    color: var(--c-black);
    white-space: nowrap;
}
.promo-ticker__item strong { font-weight: 800; text-transform: uppercase; letter-spacing: 0.02em; }
.promo-ticker__sep { color: var(--c-black); opacity: 0.45; }
@keyframes promo-ticker-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
    .promo-ticker__track { animation: none; }
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: fixed;
    top: var(--ticker-h); left: 0; right: 0;
  z-index: 50;
  padding-block: 26px;
  background: transparent;
  transition: background-color 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}
.site-header.is-scrolled {
  background: var(--c-black);
  padding-block: 16px;
  box-shadow: 0 8px 24px -12px rgba(0,0,0,0.4);
}

#accueil, #pourquoi, #alvic, #realisations, #avis, #contact {
  scroll-margin-top: var(--offset-top);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo { display: flex; align-items: center; gap: 12px; color: var(--c-white); }
.logo__mark { color: var(--c-gold); display: inline-flex; }
.logo__text { display: flex; flex-direction: column; line-height: 1.15; }
.logo__title { font-family: var(--font-heading); font-weight: 700; font-size: 17px; letter-spacing: 0.03em; }
.logo__subtitle { font-size: 9.5px; font-weight: 600; letter-spacing: 0.24em; color: var(--c-gold-tint); }

.site-header__tagline {
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-white);
  opacity: 0.9;
  display: none;
}

.site-header__actions { display: flex; align-items: center; gap: 16px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
}
.nav-toggle span { display: block; width: 100%; height: 2px; background: var(--c-white); border-radius: 2px; transition: transform 0.25s ease, opacity 0.25s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: var(--c-black);
  padding: 18px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid var(--c-line-dark);
}
/* The [hidden] attribute alone loses to the class rule above (author CSS
   always beats the UA stylesheet), so it must be re-asserted explicitly
   here for the JS open/close toggle to actually hide the panel. */
.mobile-nav[hidden] {
  display: none;
}
.mobile-nav a {
  color: var(--c-white);
  padding: 12px 4px;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid var(--c-line-dark);
}
.mobile-nav a:last-child { border-bottom: none; margin-top: 10px; text-align: center; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  padding-top: var(--offset-top);
  color: var(--c-white);
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media .img-placeholder::after { display: none; }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(12,11,10,0.86) 0%, rgba(12,11,10,0.72) 40%, rgba(12,11,10,0.35) 68%, rgba(12,11,10,0.55) 100%);
}
.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
  padding-block: 70px 56px;
  width: 100%;
}
.hero__grid > * { min-width: 0; }
.hero__eyebrow {
  color: var(--c-gold-tint);
  font-size: 12.5px;
  letter-spacing: 0.16em;
}
.hero__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 22px;
}
.hero__title .line { display: block; }
.hero__subtitle {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 14px;
}
.hero__description {
  font-size: 16px;
  color: rgba(255,255,255,0.86);
  max-width: 46ch;
}

/* Hero form card */
.hero__form-card {
  background: var(--c-white);
  color: var(--c-text);
  border-radius: var(--radius-lg);
  padding: 30px 30px 26px;
  box-shadow: var(--shadow-card);
  width: 100%;
  min-width: 0;
  max-width: 100%;
}
.lead-form__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 19px;
  margin-bottom: 18px;
  color: var(--c-text);
}
.field { margin-bottom: 13px; width: 100%; min-width: 0; max-width: 100%; }
.field label {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.field--checkbox .consent-checkbox {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

.field__control {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid var(--c-line);
  border-radius: var(--radius-sm);
  background: var(--c-offwhite);
  padding-inline: 13px;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.field__control:focus-within {
  border-color: var(--c-gold);
  background: var(--c-white);
}
.field__icon { flex: none; width: 17px; height: 17px; color: var(--c-text-muted); }
.field__control input,
.field__control select {
  flex: 1;
  border: none;
  background: transparent;
  padding-block: 12px;
  font-size: 14px;
  color: var(--c-text);
  min-width: 0;
  max-width: 100%;
}
.field__control input::placeholder { color: var(--c-text-muted); }
.field__control input:focus, .field__control select:focus { outline: none; }
.field__control--select { padding-right: 6px; }
.field__control--select select { appearance: none; cursor: pointer; }
.field__control--select { position: relative; }
.field__control--select::after {
  content: '';
  width: 9px; height: 9px;
  border-right: 1.6px solid var(--c-text-muted);
  border-bottom: 1.6px solid var(--c-text-muted);
  transform: rotate(45deg);
  margin-right: 4px;
  flex: none;
}
.project-options { display: flex; flex-wrap: wrap; gap: 8px; }
.field .project-option {
  position: static;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
  padding: 10px 12px;
  border: 1.5px solid var(--c-line);
  border-radius: var(--radius-sm);
  background: var(--c-offwhite);
  cursor: pointer;
  color: var(--c-text);
  font-size: 13px;
}
.field .project-option input[type="radio"] {
  flex: none;
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: var(--c-gold-dark);
}
.field .project-option:has(input:checked) {
  border-color: var(--c-gold);
  background: var(--c-white);
}
.field.has-error .field__control { border-color: #c0483f; background: #fdf3f2; }
.field__error {
  min-height: 0;
  font-size: 12px;
  color: #c0483f;
  margin-top: 5px;
  display: none;
}
.field.has-error .field__error { display: block; }

.lead-form__notice {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: 11.5px;
  color: var(--c-text-muted);
  margin-top: 14px;
  line-height: 1.5;
}
.lead-form__notice svg { flex: none; margin-top: 2px; color: var(--c-gold-dark); }

.lead-form__promo {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--c-offwhite);
  border: 1px solid var(--c-gold);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--c-gold-dark);
  margin-bottom: 16px;
}

.lead-form__promo svg {
  flex: none;
  color: var(--c-gold-dark);
}

.field--checkbox {
  margin-bottom: 16px;
}

.consent-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.consent-checkbox input[type="checkbox"] {
  flex: none;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--c-gold);
  cursor: pointer;
}

.consent-checkbox span {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--c-text-muted);
}

.field--checkbox.has-error .consent-checkbox {
  outline: 1.5px solid #c0483f;
  outline-offset: 4px;
  border-radius: 4px;
}

.lead-form__status {
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  padding: 0;
  text-align: center;
}
.lead-form__status.is-success { padding: 12px; background: #eef6ee; color: #2f6b34; }
.lead-form__status.is-error { padding: 12px; background: #fdf3f2; color: #c0483f; }
.lead-form__status.is-loading { padding: 12px; background: var(--c-offwhite); color: var(--c-text-muted); }

.lead-form.is-loading .btn__label::after { content: '…'; }
.lead-form button[type="submit"]:disabled { opacity: 0.7; cursor: progress; }

/* ==========================================================================
   Stats bar
   ========================================================================== */
.stats { background: var(--c-white); border-bottom: 1px solid var(--c-line); }
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  padding-block: 34px;
}
.stat { display: flex; align-items: center; gap: 16px; }
.stat__icon { flex: none; width: 40px; height: 40px; color: var(--c-gold-dark); }
.stat__icon svg { width: 100%; height: 100%; }
.stat__value {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  color: var(--c-text);
  line-height: 1;
}
.stat__label { font-size: 13.5px; color: var(--c-text-muted); margin-top: 4px; }

/* ==========================================================================
   Why section
   ========================================================================== */
.why { padding-block: 96px; background: var(--c-white); }
.why__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr ;
  gap: 64px;
  align-items: center;
}
.why__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 4.6;
}
.why__content .section-title { margin-bottom: 34px; }

.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 26px;
  margin-bottom: 34px;
}
.feature-item__icon {
  display: inline-flex;
  width: 30px; height: 30px;
  color: var(--c-gold-dark);
  margin-bottom: 12px;
}
.feature-item__icon svg { width: 100%; height: 100%; }
.feature-item h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--c-text);
}
.feature-item p { font-size: 14px; color: var(--c-text-muted); }

/* ==========================================================================
   ALVIC section
   ========================================================================== */
.alvic { background: var(--c-black); color: var(--c-white); padding-block: 96px; }
.alvic__grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr 0.6fr;
  gap: 48px;
  align-items: center;
}
.alvic__logo {
    height: 40px;
    width: auto;
    max-width: 200px;
    margin-bottom: 18px;
}
.alvic .section-title { margin-bottom: 16px; }
.alvic__text {
  color: var(--c-text-on-dark-muted);
  font-size: 15px;
  max-width: 40ch;
  margin-bottom: 28px;
}
.alvic__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 4.4;
}
.alvic__list { display: flex; flex-direction: column; gap: 22px; }
.alvic__list li {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 14.5px;
  font-weight: 500;
}
.alvic__list li span { flex: none; width: 26px; height: 26px; color: var(--c-gold); }
.alvic__list li span svg { width: 100%; height: 100%; }

/* ==========================================================================
   Gallery
   ========================================================================== */
.gallery { padding-block: 96px; background: var(--c-offwhite); }
.gallery__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}
.gallery__intro { color: var(--c-text-muted); font-size: 15px; margin-top: 10px; }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 22px;
}
.gallery__media {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.gallery__media a {
  display: block;
  width: 100%;
  height: 100%;
  cursor: zoom-in;
}
.gallery__media .img-placeholder::before,
.gallery__media .img-placeholder::after { pointer-events: none; }
.gallery__media .img-placeholder { transition: transform 0.5s ease; }
.gallery__item:hover .img-placeholder { transform: scale(1.045); }
.gallery__item figcaption {
  margin-top: 12px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-text);
}

/* ==========================================================================
   Steps + Reassurance
   ========================================================================== */
.steps-reassurance { padding-block: 90px; background: var(--c-white); border-top: 1px solid var(--c-line); }
.steps-reassurance .container > .section-title { margin-bottom: 30px; }
.steps-reassurance .container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}
.steps-reassurance .section-title { flex-basis: 100%; }
.steps {
  flex: 1 1 100%;
  display: flex;
  gap: 30px;
}
.steps__item { flex: 1; text-align: left; display: flex; align-items: center; gap: .5rem; }
.steps__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border: 1.5px solid var(--c-gold);
  border-radius: 50%;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  color: var(--c-gold-dark);
  /* margin-bottom: 14px; */
}
.steps__item p { font-size: 14px; font-weight: 500; color: var(--c-text); /* max-width: 15ch; */ }

.reassurance { flex: 1 1 460px; display: flex; gap: 20px; }
.reassurance__card {
  flex: 1;
  display: flex;
  gap: 16px;
  padding: 26px;
  background: var(--c-offwhite);
  border-radius: var(--radius-md);
}
.reassurance__icon { flex: none; width: 32px; height: 32px; color: var(--c-gold-dark); margin-top: 3px; }
.reassurance__icon svg { width: 100%; height: 100%; }
.reassurance__card h3 { font-family: var(--font-heading); font-size: 15.5px; font-weight: 700; margin-bottom: 8px; line-height: 1.3; }
.reassurance__card p { font-size: 13.5px; color: var(--c-text-muted); }
.reassurance__card strong { color: var(--c-gold-dark); }
.reassurance__footnote { font-size: 11px; margin-top: 6px; opacity: 0.8; }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials { padding-block: 96px; background: var(--c-offwhite); }
.testimonials .section-title { margin-bottom: 40px; max-width: 30ch; }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: var(--c-white);
  border-radius: var(--radius-lg);
  padding: 14px;
  border: 1px solid var(--c-line);
}
.testimonial__media { border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 16/10; }
.testimonial__body { padding: 20px 8px 8px; }
.stars { color: var(--c-gold); letter-spacing: 2px; font-size: 14px; margin-bottom: 12px; }
.testimonial__quote { font-size: 14.5px; color: var(--c-text); margin-bottom: 18px; line-height: 1.6; }
.testimonial__author { display: flex; align-items: center; gap: 12px; }
.testimonial__avatar {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--c-black);
  color: var(--c-gold-tint);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
}
.testimonial__name { font-size: 14px; font-weight: 700; }
.testimonial__location { font-size: 12.5px; color: var(--c-text-muted); }

/* ==========================================================================
   CTA final
   ========================================================================== */
.cta-final { background: var(--c-black); color: var(--c-white); padding-block: 96px; }
.cta-final__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.15fr 0.65fr;
  gap: 44px;
  align-items: flex-start;
}
.cta-final__grid > * { min-width: 0; }
.cta-final .section-title { margin-bottom: 16px; }
.cta-final__text { color: var(--c-text-on-dark-muted); font-size: 15.5px; max-width: 34ch; }
.lead-form--compact {
  background: var(--c-white);
  color: var(--c-text);
  border-radius: var(--radius-lg);
  padding: 26px;
  width: 100%;
  min-width: 0;
  max-width: 100%;
}
.lead-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; min-width: 0; }
.lead-form__row > .field { min-width: 0; }
.cta-final__benefits { display: flex; flex-direction: column; gap: 18px; padding-top: 8px; }
.cta-final__benefits li { display: flex; align-items: center; gap: 12px; font-size: 15px; font-weight: 500; }
.cta-final__benefits svg { flex: none; width: 20px; height: 20px; color: var(--c-gold); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--c-white); padding-block: 70px 0; }
.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding-bottom: 46px;
  border-bottom: 1px solid var(--c-line);
}
.site-footer__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 19px;
  margin-bottom: 18px;
}
.site-footer__stores { display: flex; flex-wrap: wrap; gap: 22px; }
.site-footer__stores li { display: flex; align-items: center; gap: 8px; font-size: 14.5px; font-weight: 500; }
.site-footer__stores svg { color: var(--c-gold-dark); width: 16px; height: 16px; }
.site-footer__more p { color: var(--c-text-muted); font-size: 14.5px; margin-bottom: 20px; max-width: 46ch; }
.site-footer__bottom { padding-block: 22px; }
.site-footer__bottom p { font-size: 12.5px; color: var(--c-text-muted); }

/* ==========================================================================
   Scroll-reveal base states (JS adds .is-visible)
   ========================================================================== */
[data-anim] { opacity: 1; }
.js-anim-ready [data-anim="reveal"],
.js-anim-ready [data-anim="reveal-img"],
.js-anim-ready [data-anim="reveal-stagger"],
.js-anim-ready [data-anim="step"],
.js-anim-ready [data-anim="stat"] { opacity: 0; }
.js-anim-ready [data-anim="reveal"] { transform: translateY(24px); }
.js-anim-ready [data-anim="reveal-img"] { transform: scale(1.05); }
.js-anim-ready [data-anim="reveal-stagger"] { transform: translateY(20px); }
.js-anim-ready [data-anim="step"] { transform: translateY(16px); }
.js-anim-ready [data-anim="stat"] { transform: translateY(14px); }
.js-anim-ready [data-anim="hero-label"],
.js-anim-ready [data-anim="hero-title"] .line,
.js-anim-ready [data-anim="hero-text"],
.js-anim-ready [data-anim="hero-form"] { opacity: 0; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1200px) {
  :root { --container-w: 1040px; }
  .hero__grid { gap: 40px; }
  .alvic__grid { grid-template-columns: 1fr 1fr; grid-template-areas: "content media" "list media"; }
  .alvic__content { grid-area: content; }
  .alvic__media { grid-area: media; }
  .alvic__list { grid-area: list; flex-direction: row; flex-wrap: wrap; }
  .cta-final__grid { grid-template-columns: 1fr 1fr; }
  .cta-final__benefits { grid-column: 1 / -1; flex-direction: row; flex-wrap: wrap; }
}

@media (max-width: 992px) {
  .container { padding-inline: 26px; }
  .site-header__tagline { display: none; }
  .hero { min-height: auto; }
  .hero__grid { grid-template-columns: 1fr; padding-block: 150px 48px; }
  .hero__title { font-size: clamp(32px, 7vw, 44px); }
  .why__grid { grid-template-columns: 1fr; gap: 40px; }
  .why__media { /* aspect-ratio: 16/9; */ order: -1; }
  .feature-list { grid-template-columns: 1fr 1fr; }
  .testimonials__grid { grid-template-columns: 1fr 1fr; }
  .gallery__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --header-h: 78px; }
  .site-header { padding-block: 18px; }
  .site-header__actions .btn--sm { display: none; }
  .nav-toggle { display: flex; }
  .stats__grid { grid-template-columns: 1fr 1fr; gap: 26px 18px; }
  .why { padding-block: 64px; }
  .alvic { padding-block: 64px; }
    .alvic__grid { grid-template-columns: 1fr; grid-template-areas: "content" "list" "media"; gap: 30px; }
  .alvic__list { flex-direction: column; }
  .gallery { padding-block: 64px; }
  .gallery__header { flex-direction: column; align-items: flex-start; }
  .steps-reassurance { padding-block: 64px; }
  .steps-reassurance .container { flex-direction: column; }
  .steps { flex-wrap: wrap; gap: 24px; }
  .steps__item { flex: 1 1 40%; }
  .reassurance { flex-direction: column; }
  .testimonials { padding-block: 64px; }
  .testimonials__grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .cta-final { padding-block: 64px; }
  .cta-final__grid { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 576px) {
  .container { padding-inline: 20px; }
  .hero__form-card { padding: 24px 20px; }
  .hero__grid { padding-block: 130px 40px; }
  .feature-list { grid-template-columns: 1fr; gap: 22px; }
  .gallery__grid { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .lead-form__row { grid-template-columns: 1fr; }
  .steps { flex-direction: column; gap: 20px; }
  .steps__item p { max-width: none; }
  .mobile-nav { padding: 16px 20px 24px; }
}

@media (max-width: 375px) {
  .hero__title { font-size: 30px; }
  .section-title { font-size: 24px; }
  .stats__grid { grid-template-columns: 1fr; }
}
