/* ---------- Design System ---------- */
:root {
  /* Palette chic nude/bronze */
  --brand: #c49b7a;
  --brand-600: #b28768;
  --bg: #fff;
  --bg-soft: #f6e7dc;
  --ink: #222;
  --muted: #6b6b6b;
  --card: #ffffff;
  --stroke: #ece8e4;
  --shadow: 0 1px 2px rgba(20, 20, 20, .04), 0 8px 24px rgba(20, 20, 20, .06);
}

* {
  box-sizing: border-box
}

html,
body {
  margin: 0;
  padding: 0
}

body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg)
}

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

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px
}

/* ---------- Header ---------- */
.hdr {
  position: sticky;
  padding: 20px;
  top: 0;
  z-index: 50;
  background: linear-gradient(180deg, rgba(246, 231, 220, .9), rgba(255, 255, 255, .9));
  backdrop-filter: saturate(130%) blur(6px);
  border-bottom: 1px solid var(--stroke)
}

.hdr__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px
}

.brand__logo {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: .7px
}

.nav {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap
}

.nav__link {
  font-weight: 500;
  text-decoration: none;
  color: #444;
  padding: 8px 10px;
  border-radius: 10px
}

.nav__link:hover {
  background: #00000008
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 16px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: .18s ease
}

.btn--solid {
  background: var(--brand);
  color: #fff;
  box-shadow: var(--shadow)
}

.btn--solid:hover {
  background: var(--brand-600)
}

.btn--ghost {
  background: #fff;
  color: var(--ink);
  border-color: var(--stroke)
}

.btn--ghost:hover {
  border-color: #d8d3cf
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  isolation: isolate
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .25), rgba(0, 0, 0, .20)),
    url("https://images.unsplash.com/photo-1556229174-5b5d36b05f57?q=80&w=1800&auto=format&fit=crop") center/cover no-repeat;
  z-index: -1;
}

.hero__content {
  padding: 84px 0 96px;
  color: #fff
}

.badge {
  display: inline-block;
  background: rgba(255, 255, 255, .18);
  backdrop-filter: blur(3px);
  border: 1px solid rgba(255, 255, 255, .35);
  color: #fff;
  border-radius: 999px;
  padding: 6px 12px;
  font-weight: 600;
  margin-bottom: 14px
}

.hero__title {
  font-family: "Playfair Display", serif;
  font-size: 44px;
  line-height: 1.1;
  margin: 0 0 8px
}

.hero__sub {
  margin: 0 0 18px;
  font-size: 18px;
  opacity: .95
}

.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}

/* ---------- Sections ---------- */
.section {
  padding: 52px 0;
  border-top: 1px solid var(--stroke)
}

.section:first-of-type {
  border-top: 0
}

.section__head {
  margin-bottom: 18px
}

h2 {
  font-family: "Playfair Display", serif;
  font-size: 30px;
  line-height: 1.2;
  margin: 0
}

.section__sub {
  margin: 6px 0 0;
  color: var(--muted)
}

/* ---------- Cards Prestations ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px
}

.card {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow)
}

.card__icon {
  font-size: 26px;
  margin-bottom: 6px
}

.card__title {
  font-weight: 700;
  margin: 0 0 6px;
  font-size: 17px
}

.card__txt {
  margin: 0;
  color: #444
}

/* ---------- Ribbon (abonnements) ---------- */
.ribbon {
  background: linear-gradient(90deg, #f9efe7, #fff);
  border: 1px solid var(--stroke);
  border-radius: 16px;
  box-shadow: var(--shadow)
}

.ribbon__content {
  padding: 14px 16px;
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap
}

.ribbon__chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap
}

.chip {
  background: #fff;
  border: 1px solid var(--stroke);
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 600
}

/* ---------- Galerie ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px
}

.gallery .item {
  border: 1px solid var(--stroke);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow)
}

.gallery .item img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover
}

.gallery .item .cap {
  padding: 8px 10px;
  font-size: 13px;
  color: #555
}

/* ---------- Form ---------- */
.form {
  background: #fff;
  border: 1px solid var(--stroke);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow)
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 10px
}

.field label {
  display: block;
  font-size: 13px;
  color: #444;
  margin: 4px 0 6px
}

input,
select {
  width: 100%;
  padding: 12px;
  border: 1px solid #dedad6;
  border-radius: 12px;
  background: #fff;
  font-size: 15px
}

input:focus,
select:focus {
  outline: none;
  border-color: #cfc8c2;
  box-shadow: 0 0 0 4px #00000009
}

.field--2 .row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px
}

.hint {
  font-size: 12px;
  color: var(--muted);
  margin: 8px 0 12px
}

.msg {
  margin-top: 8px;
  font-weight: 600
}

/* ---------- Footer ---------- */
.ftr {
  border-top: 1px solid var(--stroke);
  background: #fff
}

.ftr__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 20px 0;
  color: #555
}

.ftr__brand {
  font-family: "Playfair Display", serif;
  font-weight: 700
}

/* ---------- Responsive ---------- */
@media (max-width:1024px) {
  .cards {
    grid-template-columns: repeat(2, 1fr)
  }

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

@media (max-width:720px) {
  .hero__content {
    padding: 64px 0 76px
  }

  .hero__title {
    font-size: 32px
  }

  .cards {
    grid-template-columns: 1fr
  }

  .gallery {
    grid-template-columns: 1fr
  }

  .form__row {
    grid-template-columns: 1fr
  }
}