/* ============================================
   LE JARDIN DES SENS — STYLES
   Direction artistique : éditorial gastronomique
   Palette : sauge, ivoire, sable, anthracite
   ============================================ */

/* ===== Variables ===== */
:root {
  /* Couleurs */
  --c-ivory: #f8f4ec;
  --c-ivory-warm: #f3ecdf;
  --c-sand: #e8dcc4;
  --c-sand-dark: #c9b691;
  --c-sage: #8a9b7c;
  --c-sage-dark: #5d6e51;
  --c-olive: #6b7a52;
  --c-anthracite: #2a2925;
  --c-anthracite-soft: #4a4842;
  --c-gold: #b89968;
  --c-line: rgba(42, 41, 37, 0.12);
  --c-white: #ffffff;

  /* Typographie */
  --ff-serif: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --ff-sans: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Échelle */
  --container: 1280px;
  --container-narrow: 1080px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 24px;

  /* Transitions */
  --t-fast: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  --t-med: 400ms cubic-bezier(0.4, 0, 0.2, 1);
  --t-slow: 700ms cubic-bezier(0.22, 1, 0.36, 1);

  /* Header height */
  --header-h: 84px;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

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

body {
  font-family: var(--ff-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-anthracite);
  background: var(--c-ivory);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: 0; }
ul { list-style: none; }
em {
  font-style: italic;
  font-family: var(--ff-serif);
  font-variation-settings: "SOFT" 100;
}

/* ===== Container ===== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

/* ===== Typography helpers ===== */
.section__eyebrow {
  font-family: var(--ff-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-sage-dark);
  margin-bottom: 20px;
}

.section__title {
  font-family: var(--ff-serif);
  font-weight: 400;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--c-anthracite);
  font-variation-settings: "opsz" 144, "SOFT" 50;
}

.section__title em {
  color: var(--c-sage-dark);
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.section__lead {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--c-anthracite-soft);
  max-width: 640px;
  margin-top: 24px;
}

.section__header {
  margin-bottom: clamp(48px, 6vw, 80px);
  max-width: 760px;
}

.section__header--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section__header--center .section__lead { margin-left: auto; margin-right: auto; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  font-family: var(--ff-sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 999px;
  transition: transform var(--t-fast), background var(--t-fast), color var(--t-fast), box-shadow var(--t-fast);
  white-space: nowrap;
  cursor: pointer;
}

.btn--primary {
  background: var(--c-sage-dark);
  color: var(--c-ivory);
}
.btn--primary:hover {
  background: var(--c-anthracite);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -10px rgba(93, 110, 81, 0.4);
}

.btn--ghost {
  background: transparent;
  color: var(--c-ivory);
  border: 1px solid rgba(248, 244, 236, 0.5);
}
.btn--ghost:hover {
  background: var(--c-ivory);
  color: var(--c-anthracite);
  border-color: var(--c-ivory);
}

.btn--large {
  padding: 18px 36px;
  font-size: 16px;
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(248, 244, 236, 0.85);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-fast), background var(--t-fast);
}

.header.is-scrolled {
  border-bottom-color: var(--c-line);
  background: rgba(248, 244, 236, 0.95);
}

.header__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.header__brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header__logo {
  height: 52px;
  width: auto;
  transition: transform var(--t-fast);
}
.header__brand:hover .header__logo { transform: scale(1.04); }

.nav__list {
  display: flex;
  gap: 36px;
}

.nav__link {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--c-anthracite-soft);
  position: relative;
  transition: color var(--t-fast);
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%;
  height: 1px;
  background: var(--c-sage-dark);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--t-med);
}

.nav__link:hover { color: var(--c-anthracite); }
.nav__link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

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

.header__phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--c-anthracite);
  transition: color var(--t-fast);
}
.header__phone:hover { color: var(--c-sage-dark); }
.header__phone svg { color: var(--c-sage-dark); }

.header__cta {
  padding: 11px 22px;
  font-size: 13.5px;
}

.burger {
  display: none;
  width: 32px; height: 32px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--c-anthracite);
  transition: transform var(--t-fast), opacity var(--t-fast);
}
.burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 60px) 0 80px;
  overflow: hidden;
  color: var(--c-ivory);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 14s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(20, 25, 18, 0.75) 0%, rgba(20, 25, 18, 0.45) 50%, rgba(20, 25, 18, 0.2) 100%),
    linear-gradient(to top, rgba(20, 25, 18, 0.5) 0%, transparent 60%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  width: 100%;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
  color: rgba(248, 244, 236, 0.85);
  margin-bottom: 32px;
  padding: 8px 18px 8px 12px;
  border: 1px solid rgba(248, 244, 236, 0.25);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: fadeUp 800ms var(--t-slow) both;
}
.hero__eyebrow .dot {
  width: 8px; height: 8px;
  background: var(--c-gold);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(184, 153, 104, 0.25);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  50% { box-shadow: 0 0 0 8px rgba(184, 153, 104, 0); }
}

.hero__title {
  font-family: var(--ff-serif);
  font-size: clamp(2.4rem, 6vw, 5.4rem);
  font-weight: 350;
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin-bottom: 32px;
  max-width: 920px;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}

.hero__title-line {
  display: block;
  animation: fadeUp 1000ms var(--t-slow) both;
}
.hero__title-line:nth-child(1) { animation-delay: 200ms; }
.hero__title-line:nth-child(2) { animation-delay: 400ms; }

.hero__title em {
  color: var(--c-gold);
  font-weight: 350;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.hero__subtitle {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.55;
  max-width: 600px;
  color: rgba(248, 244, 236, 0.92);
  margin-bottom: 44px;
  animation: fadeUp 1000ms var(--t-slow) 600ms both;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 56px;
  animation: fadeUp 1000ms var(--t-slow) 800ms both;
}

.hero__reassurance {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  animation: fadeUp 1000ms var(--t-slow) 1000ms both;
}
.hero__reassurance li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(248, 244, 236, 0.85);
}
.check { color: var(--c-gold); font-size: 12px; }

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 30px;
  height: 50px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
  border: 1px solid rgba(248, 244, 236, 0.4);
  border-radius: 999px;
}
.hero__scroll span {
  width: 3px;
  height: 8px;
  background: var(--c-ivory);
  border-radius: 2px;
  animation: scrollDown 1.8s ease-in-out infinite;
}
@keyframes scrollDown {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(20px); opacity: 0; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== Présentation ===== */
.presentation {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--c-ivory);
  position: relative;
  overflow: hidden;
}

.presentation__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
}

.presentation__media {
  position: relative;
}
.presentation__image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-md);
  filter: saturate(0.95);
}

.presentation__badge {
  position: absolute;
  bottom: -32px;
  right: -32px;
  background: var(--c-sage-dark);
  color: var(--c-ivory);
  padding: 28px 32px;
  border-radius: 50%;
  width: 160px;
  height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-align: center;
  box-shadow: 0 20px 50px -15px rgba(93, 110, 81, 0.5);
  rotate: -5deg;
}
.presentation__badge-num {
  font-family: var(--ff-serif);
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
}
.presentation__badge-label {
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.4;
  opacity: 0.92;
}

.presentation__lead {
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  line-height: 1.55;
  color: var(--c-anthracite);
  margin: 32px 0 24px;
  font-weight: 400;
}

.presentation__body {
  color: var(--c-anthracite-soft);
  margin-bottom: 40px;
  font-size: 15.5px;
  line-height: 1.7;
}

.presentation__values {
  display: grid;
  gap: 20px;
  border-top: 1px solid var(--c-line);
  padding-top: 32px;
}
.presentation__values li {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  align-items: baseline;
}
.presentation__values h3 {
  font-family: var(--ff-serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--c-sage-dark);
  font-variation-settings: "SOFT" 80;
}
.presentation__values p {
  font-size: 14.5px;
  color: var(--c-anthracite-soft);
}

/* ===== Prestations ===== */
.prestations {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--c-ivory-warm);
  position: relative;
}

.prestations::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--c-line), transparent);
}

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

.card {
  background: var(--c-ivory);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--t-med), box-shadow var(--t-med);
  border: 1px solid transparent;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px -20px rgba(42, 41, 37, 0.18);
  border-color: var(--c-line);
}

.card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--c-sand);
}
.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms var(--t-slow);
}
.card:hover .card__media img { transform: scale(1.06); }

.card__body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card__tag {
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-sage-dark);
  margin-bottom: 12px;
  font-weight: 500;
}

.card__title {
  font-family: var(--ff-serif);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  font-variation-settings: "opsz" 80, "SOFT" 50;
}

.card__text {
  color: var(--c-anthracite-soft);
  font-size: 14.5px;
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 20px;
}

.card__link {
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--c-sage-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--t-fast), color var(--t-fast);
}
.card__link:hover {
  gap: 10px;
  color: var(--c-anthracite);
}

/* ===== Galerie ===== */
.galerie {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--c-ivory);
}

.galerie__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
}

.galerie__item {
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--c-sand);
  position: relative;
  cursor: zoom-in;
}
.galerie__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--t-slow), filter var(--t-med);
}
.galerie__item:hover img {
  transform: scale(1.05);
  filter: brightness(1.05);
}

.galerie__item--tall { grid-row: span 2; }
.galerie__item--wide { grid-column: span 2; }

/* ===== Avis ===== */
.avis {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--c-ivory-warm);
  position: relative;
}

.avis__rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 64px;
  gap: 12px;
}
.avis__rating-score {
  font-family: var(--ff-serif);
  font-variation-settings: "SOFT" 50;
}
.avis__rating-num {
  font-size: 5rem;
  font-weight: 350;
  color: var(--c-sage-dark);
  line-height: 1;
}
.avis__rating-out {
  font-size: 1.4rem;
  color: var(--c-anthracite-soft);
  vertical-align: top;
  margin-left: 4px;
}
.avis__rating-stars {
  display: flex;
  gap: 4px;
  color: var(--c-gold);
  font-size: 22px;
  letter-spacing: 4px;
}
.avis__rating-count {
  font-size: 14px;
  color: var(--c-anthracite-soft);
}

.avis__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: var(--container-narrow);
  margin: 0 auto;
}

.avis__card {
  background: var(--c-ivory);
  padding: 36px 32px;
  border-radius: var(--radius-md);
  position: relative;
  border: 1px solid var(--c-line);
}
.avis__card::before {
  content: "“";
  position: absolute;
  top: -8px;
  left: 24px;
  font-family: var(--ff-serif);
  font-size: 90px;
  color: var(--c-sage);
  line-height: 1;
  opacity: 0.3;
}

.avis__quote {
  font-family: var(--ff-serif);
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--c-anthracite);
  margin-bottom: 24px;
  font-variation-settings: "opsz" 80, "SOFT" 50;
  font-weight: 400;
}

.avis__author {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--c-line);
  padding-top: 16px;
}
.avis__name {
  font-weight: 500;
  color: var(--c-anthracite);
  font-size: 14px;
}
.avis__context {
  font-size: 12.5px;
  color: var(--c-sage-dark);
  letter-spacing: 0.04em;
}

/* ===== Zone d'intervention ===== */
.zone {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--c-ivory);
}

.zone__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
}

.zone__lead {
  font-size: 1.05rem;
  color: var(--c-anthracite-soft);
  line-height: 1.65;
  margin: 28px 0 32px;
  max-width: 480px;
}

.zone__cities {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 24px;
  margin-bottom: 32px;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  padding: 24px 0;
}
.zone__cities li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--c-anthracite);
}
.zone__cities li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--c-sage);
  border-radius: 50%;
  flex-shrink: 0;
}

.zone__note {
  font-size: 14.5px;
  color: var(--c-anthracite-soft);
}
.zone__note a {
  color: var(--c-sage-dark);
  text-decoration: underline;
  text-underline-offset: 4px;
  font-weight: 500;
}

.zone__visual {
  display: flex;
  justify-content: center;
}
.zone__map {
  width: 100%;
  max-width: 460px;
  height: auto;
}

/* ===== Contact ===== */
.contact {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--c-anthracite);
  color: var(--c-ivory);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(138, 155, 124, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
  position: relative;
}

.contact .section__eyebrow {
  color: var(--c-gold);
}

.contact .section__title {
  color: var(--c-ivory);
}
.contact .section__title em {
  color: var(--c-gold);
}

.contact__lead {
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(248, 244, 236, 0.78);
  margin: 28px 0 48px;
  max-width: 460px;
}

.contact__infos {
  display: grid;
  gap: 24px;
  border-top: 1px solid rgba(248, 244, 236, 0.15);
  padding-top: 32px;
}
.contact__infos li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact__label {
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-gold);
  font-weight: 500;
}
.contact__value {
  font-size: 16px;
  color: var(--c-ivory);
  line-height: 1.4;
}
a.contact__value:hover {
  color: var(--c-gold);
  transition: color var(--t-fast);
}

/* Form */
.contact__form {
  background: rgba(248, 244, 236, 0.04);
  border: 1px solid rgba(248, 244, 236, 0.12);
  border-radius: var(--radius-md);
  padding: clamp(28px, 4vw, 48px);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 22px;
}
.form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
}
.form__row .form__field { margin-bottom: 0; }

.form__field label {
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(248, 244, 236, 0.7);
  font-weight: 500;
}
.form__field label span {
  color: var(--c-gold);
}

.form__field input,
.form__field select,
.form__field textarea {
  background: rgba(248, 244, 236, 0.05);
  border: 1px solid rgba(248, 244, 236, 0.18);
  border-radius: 8px;
  padding: 14px 16px;
  font-family: var(--ff-sans);
  font-size: 15px;
  color: var(--c-ivory);
  transition: border-color var(--t-fast), background var(--t-fast);
  width: 100%;
}
.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
  outline: none;
  border-color: var(--c-gold);
  background: rgba(248, 244, 236, 0.08);
}
.form__field input::placeholder,
.form__field textarea::placeholder {
  color: rgba(248, 244, 236, 0.4);
}
.form__field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(248,244,236,0.6)' stroke-width='1.8' stroke-linecap='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 44px;
}
.form__field select option { background: var(--c-anthracite); color: var(--c-ivory); }
.form__field textarea { resize: vertical; min-height: 120px; }

.form__actions {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
.form__notice {
  font-size: 12.5px;
  color: rgba(248, 244, 236, 0.55);
}

.form__success {
  margin-top: 24px;
  padding: 18px 22px;
  background: rgba(184, 153, 104, 0.15);
  border: 1px solid rgba(184, 153, 104, 0.4);
  border-radius: 8px;
  color: var(--c-gold);
  font-size: 14.5px;
}

.contact__form .btn--primary {
  background: var(--c-gold);
  color: var(--c-anthracite);
}
.contact__form .btn--primary:hover {
  background: var(--c-ivory);
  color: var(--c-anthracite);
}

/* ===== Footer ===== */
.footer {
  background: #1d1c1a;
  color: rgba(248, 244, 236, 0.7);
  padding-top: 80px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
}

.footer__brand { max-width: 320px; }
.footer__logo {
  height: 56px;
  width: auto;
  margin-bottom: 20px;
  filter: brightness(1.1);
}
.footer__tagline {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(248, 244, 236, 0.55);
}

.footer__col h4 {
  font-family: var(--ff-serif);
  color: var(--c-ivory);
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 20px;
  font-variation-settings: "SOFT" 80;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col a { font-size: 14px; transition: color var(--t-fast); }
.footer__col a:hover { color: var(--c-gold); }

.footer__contact li { font-size: 14px; }

.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.footer__social a {
  width: 40px; height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(248, 244, 236, 0.2);
  border-radius: 50%;
  color: rgba(248, 244, 236, 0.7);
  transition: all var(--t-fast);
}
.footer__social a:hover {
  background: var(--c-gold);
  border-color: var(--c-gold);
  color: var(--c-anthracite);
}

.footer__bottom {
  border-top: 1px solid rgba(248, 244, 236, 0.08);
  padding: 24px 0;
}
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer__bottom p {
  font-size: 13px;
  color: rgba(248, 244, 236, 0.4);
}
.footer__bottom ul {
  display: flex;
  gap: 24px;
}
.footer__bottom a {
  font-size: 13px;
  color: rgba(248, 244, 236, 0.5);
  transition: color var(--t-fast);
}
.footer__bottom a:hover { color: var(--c-gold); }

/* ===== Sticky call (mobile) ===== */
.sticky-call {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  width: 56px;
  height: 56px;
  background: var(--c-sage-dark);
  color: var(--c-ivory);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 30px -8px rgba(93, 110, 81, 0.5);
  animation: pulse-call 2.4s ease-in-out infinite;
}
@keyframes pulse-call {
  0%, 100% { box-shadow: 0 14px 30px -8px rgba(93, 110, 81, 0.5), 0 0 0 0 rgba(138, 155, 124, 0.4); }
  50% { box-shadow: 0 14px 30px -8px rgba(93, 110, 81, 0.5), 0 0 0 14px rgba(138, 155, 124, 0); }
}

/* ===== Reveal animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 800ms var(--t-slow), transform 800ms var(--t-slow);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================================
   RESPONSIVE
   =========================================== */

@media (max-width: 1024px) {
  .nav__list { gap: 24px; }
  .nav__link { font-size: 13.5px; }
  .header__phone-text { display: none; }
  .header__phone { padding: 8px; }

  .prestations__grid { grid-template-columns: repeat(2, 1fr); }

  .galerie__grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 180px;
  }
  .galerie__item--wide { grid-column: span 2; }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer__brand { grid-column: span 2; max-width: none; }
}

@media (max-width: 768px) {
  :root { --header-h: 70px; }

  .header__logo { height: 42px; }

  .nav {
    position: fixed;
    top: var(--header-h); left: 0; right: 0;
    background: var(--c-ivory);
    border-bottom: 1px solid var(--c-line);
    padding: 24px clamp(20px, 4vw, 48px) 32px;
    transform: translateY(-110%);
    transition: transform var(--t-med);
    box-shadow: 0 30px 50px -20px rgba(42, 41, 37, 0.15);
  }
  .nav.is-open { transform: translateY(0); }
  .nav__list {
    flex-direction: column;
    gap: 18px;
  }
  .nav__link { font-size: 18px; }

  .header__cta { display: none; }
  .burger { display: flex; }

  .hero { padding: calc(var(--header-h) + 40px) 0 100px; }
  .hero__title { font-size: clamp(2.2rem, 9vw, 3.8rem); }
  .hero__cta .btn { flex: 1 1 auto; min-width: 0; }
  .hero__reassurance { gap: 16px 24px; }
  .hero__scroll { display: none; }

  .presentation__inner,
  .zone__inner,
  .contact__inner {
    grid-template-columns: 1fr;
  }
  .presentation__media { order: 2; max-width: 460px; margin: 0 auto; }
  .presentation__text { order: 1; }
  .presentation__badge {
    width: 130px; height: 130px;
    bottom: -20px; right: -10px;
    padding: 20px;
  }
  .presentation__badge-num { font-size: 26px; }
  .presentation__values li {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .prestations__grid { grid-template-columns: 1fr; gap: 20px; }

  .galerie__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }
  .galerie__item--tall { grid-row: span 2; }
  .galerie__item--wide { grid-column: span 2; grid-row: span 1; }

  .avis__grid { grid-template-columns: 1fr; }
  .avis__rating-num { font-size: 4rem; }

  .zone__cities { grid-template-columns: 1fr; }
  .zone__visual { order: -1; max-width: 360px; margin: 0 auto; }

  .form__row { grid-template-columns: 1fr; gap: 0; }
  .form__row .form__field { margin-bottom: 22px; }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer__brand { grid-column: span 2; }

  .footer__bottom-inner {
    justify-content: center;
    text-align: center;
  }

  .sticky-call { display: flex; }
}

@media (max-width: 480px) {
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__brand { grid-column: auto; }
  .avis__card { padding: 28px 24px; }
}

/* ===== Reduce motion ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
