/* ============================================
   LE TEMPS RETROUVÉ — Maison d'hôte
   Palette : blanc cassé, vert sauge, naturel, brun
   ============================================ */

/* ---------- TOKENS ---------- */
:root {
  /* Neutrals */
  --white:       #FFFFFF;
  --cream:       #FAF7F3;
  --cream-deep:  #F2EDE6;
  --linen:       #EDE4D8;

  /* Rose / pêche */
  --rose-pale:   #F0D9D2;
  --rose:        #DBA99E;
  --rose-deep:   #C07D72;

  /* Vert naturel (ex-taupe) */
  --taupe-pale:  #D4E4CF;
  --taupe:       #7A9E76;
  --taupe-deep:  #4E7A48;

  /* Vert sauge */
  --sage-pale:   #D8E4D4;
  --sage:        #8FAE86;
  --sage-deep:   #3e5e3a;

  /* Étang */
  --pond:        #7AACB8;
  --pond-pale:   #C8DFE5;

  /* Brun doux */
  --brown-pale:  #E4D4C0;
  --brown:       #A07850;
  --brown-deep:  #6E4E30;

  /* Text */
  --text-dark:   #3C2E28;
  --text-mid:    #6B5550;
  --text-light:  #9C8880;

  /* Typography */
  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Jost', system-ui, sans-serif;

  /* Spacing */
  --section-pad: clamp(1.5rem, 3vw, 2.5rem);
  --radius:      6px;
  --radius-lg:   14px;

  /* Transitions */
  --ease:        cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
section[id] { scroll-margin-top: 72px; }
body {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
  background-color: var(--cream);
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ---------- LAYOUT ---------- */
.container {
  width: min(90%, 1140px);
  margin-inline: auto;
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 400; line-height: 1.2; }

.eyebrow {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: .75rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-bottom: .6rem;
}
.eyebrow.center { text-align: center; }

.section__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--text-dark);
  margin-bottom: 1rem;
}
.section__title.center { text-align: center; }

.section__intro {
  max-width: 54ch;
  margin-inline: auto;
  text-align: center;
  color: var(--text-mid);
  margin-bottom: 3rem;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: .85rem;
  letter-spacing: .08em;
  padding: .75rem 2rem;
  border-radius: var(--radius);
  transition: all .3s var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: var(--sage-deep);
  color: var(--white);
  border: 1.5px solid var(--sage-deep);
}
.btn--primary:hover {
  background: var(--taupe-deep);
  border-color: var(--taupe-deep);
  transform: translateY(-1px);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.7);
}
.btn--outline:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
}
.btn--nav {
  background: transparent;
  color: var(--text-dark);
  border: 1.5px solid var(--taupe);
  padding: .5rem 1.4rem;
  font-size: .8rem;
}
.btn--nav:hover { background: var(--sage-deep); color: var(--white); border-color: var(--sage-deep); }
.btn--sm {
  background: var(--sage-pale);
  color: var(--sage-deep);
  border: 1.5px solid var(--sage);
  padding: .5rem 1.2rem;
  font-size: .8rem;
}
.btn--sm:hover { background: var(--sage-deep); color: var(--white); }
.btn--full { width: 100%; text-align: center; }

/* ============================================
   NAV
   ============================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .4s var(--ease), box-shadow .4s var(--ease);
  background: rgba(250, 247, 243, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--linen);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav__logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
}
.nav__logo-main {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--text-dark);
}
.nav__logo-sub {
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 2px;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
  margin-right: 30px;
}
.nav__links a {
  font-size: .85rem;
  color: var(--text-mid);
  transition: color .25s;
}
.nav__links a:not(.btn):hover { color: var(--sage-deep); }
.nav__actions {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.nav__actions .btn {
  padding: .45rem 1.2rem;
  font-size: .8rem;
}
.nav__actions .btn--outline {
  color: var(--text-dark);
  border-color: var(--taupe);
}
.nav__burger { display: none; font-size: 1.4rem; color: var(--text-dark); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-bottom: 72px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(80,55,40,.65) 0%, rgba(40,30,20,.75) 100%),
    url('images/home.jpg') center/cover no-repeat;
  z-index: 0;
}
/* Texture grain subtile */
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: .4;
}
.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.hero__eyebrow {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  text-shadow: 0 1px 8px rgba(0,0,0,.5);
  margin-bottom: 1rem;
}
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  text-shadow: 0 2px 24px rgba(0,0,0,.55);
  margin-bottom: 1rem;
}
.hero__divider {
  width: 60px;
  height: 1px;
  background: rgba(255,255,255,.5);
  margin: 1.2rem auto;
}
.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.85);
  max-width: 50ch;
  margin: 0 auto 2.5rem;
  font-weight: 300;
}
.hero__cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__scroll-icon {
  display: block;
  width: 22px;
  height: 36px;
  border: 1.5px solid rgba(255,255,255,.5);
  border-radius: 12px;
  position: relative;
}
.hero__scroll-icon::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: rgba(255,255,255,.8);
  border-radius: 50%;
  animation: scrollDot 1.8s var(--ease) infinite;
}
@keyframes scrollDot {
  0%   { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(14px); }
}

/* ============================================
   INTRO
   ============================================ */
.intro {
  padding: 2rem 0;
  background: var(--white);
  text-align: center;
}
.intro__content {
  max-width: 680px;
  margin: 0 auto;
}
.intro__desc {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: var(--section-pad) 0;
  background: var(--white);
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about__images {
  position: relative;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 1rem;
}
.about__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about__img--accent {
  background: var(--sage-pale);
  padding: 1.8rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 3px solid var(--sage);
}
.about__quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--sage-deep);
  text-align: center;
}
.about__desc {
  color: var(--text-mid);
  margin-bottom: 1rem;
}
.about__list {
  margin: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.about__list li {
  display: flex;
  align-items: baseline;
  gap: .7rem;
  font-size: .9rem;
  color: var(--text-mid);
}
.about__check {
  color: var(--sage-deep);
  font-size: 1rem;
  flex-shrink: 0;
}

/* ============================================
   STUDIO
   ============================================ */
.rooms {
  padding: var(--section-pad) 0;
  background: var(--cream);
}

/* Layout deux colonnes : visuels | détails */
.studio {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 1rem;
}

/* Visuels */
.studio__visuals { display: flex; flex-direction: column; gap: .8rem; }

.studio__main-img {
  height: 360px;
  border-radius: var(--radius-lg);
  background: url('images/studio-main.jpg') center/cover no-repeat;
}

.studio__thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .8rem;
}
.studio__thumb {
  height: 100px;
  border-radius: var(--radius);
}
.studio__thumb--1 { background: url('images/studio-thumb-1.jpg') center/cover no-repeat; }
.studio__thumb--2 { background: url('images/studio-thumb-2.jpg') center/cover no-repeat; }
.studio__thumb--3 { background: url('images/studio-thumb-3.jpg') center/cover no-repeat; }

/* Détails */
.studio__badge {
  display: inline-block;
  background: var(--sage-pale);
  color: var(--sage-deep);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: 20px;
  margin-bottom: .5rem;
}
.studio__badge--inline {
  display: inline-block;
  background: var(--sage-pale);
  color: var(--sage-deep);
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .15rem .6rem;
  border-radius: 20px;
  vertical-align: middle;
  margin-left: .5rem;
}
.studio__name {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--text-dark);
  margin-bottom: .8rem;
}
.studio__desc {
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: .8rem;
}

/* Liste des espaces */
.studio__spaces {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
  padding: 1.8rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--sage);
}
.studio__spaces li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.studio__space-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: .1rem;
}
.studio__spaces strong {
  display: block;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: .15rem;
}
.studio__spaces span {
  font-size: .85rem;
  color: var(--text-mid);
}
.studio__space-price {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--sage-deep);
  margin-top: .15rem;
}
.studio__space-price small {
  font-family: var(--font-sans);
  font-size: .8rem;
  color: var(--text-light);
}

/* Prix & CTA */
.studio__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--linen);
}
.studio__pricing {
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.studio__price-label {
  font-size: .75rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.studio__price strong {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--sage-deep);
}
.studio__price small {
  font-size: .8rem;
  color: var(--text-light);
}
.studio__capacity {
  font-size: .8rem;
  color: var(--text-mid);
}

@media (max-width: 900px) {
  .studio { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  padding: var(--section-pad) 0;
  background: var(--cream-deep);
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem;
  border-bottom: 3px solid transparent;
  transition: border-color .3s, transform .3s var(--ease);
}
.service-card:hover {
  border-bottom-color: var(--sage);     /* moutons → vert pré */
  transform: translateY(-3px);
}
.service-card:nth-child(2):hover { border-bottom-color: var(--sage-pale); }   /* poulailler → vert sauge */
.service-card:nth-child(3):hover { border-bottom-color: var(--taupe); }       /* chiens & chats → taupe */
.service-card:nth-child(4):hover { border-bottom-color: #7AACB8; }            /* étang → bleu doux */
.service-card:nth-child(5):hover { border-bottom-color: var(--taupe-deep); }  /* pétanque → terre */
.service-card:nth-child(6):hover { border-bottom-color: var(--sage-deep); }   /* fruitiers → vert foncé */
.service-card__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin-bottom: .5rem;
  color: var(--text-dark);
}
.service-card p {
  font-size: .875rem;
  color: var(--text-mid);
  line-height: 1.65;
}
.service-card--breakfast {
  position: relative;
  border-bottom-color: var(--sage-pale);
}
.service-card--breakfast:hover { border-bottom-color: var(--sage-pale); }
.service-card__badge {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--sage-deep);
  background: var(--sage-pale);
  border-radius: 20px;
  padding: .2rem .75rem;
  margin-bottom: .85rem;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery {
  padding: var(--section-pad) 0 0;
  background: var(--white);
}
.gallery__header { margin-bottom: 2.5rem; }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 240px 240px;
  gap: 6px;
}
.gallery__item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background-size: cover;
  background-position: center;
}
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }
.gal--1 { background: url('images/gal-1.jpg') center/cover no-repeat; }
.gal--2 { background: url('images/gal-2.jpg') center/cover no-repeat; }
.gal--3 { background: url('images/gal-3.jpg') center/cover no-repeat; }
.gal--4 { background: url('images/gal-4.jpg') center/cover no-repeat; }
.gal--5 { background: url('images/gal-5.jpg') center/cover no-repeat; }
.gal--6 { background: url('images/gal-6.jpg') center/cover no-repeat; }

.gallery__caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(40,25,15,.6));
  color: var(--white);
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 2rem 1rem .8rem;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.gallery__item:hover .gallery__caption {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   REVIEWS
   ============================================ */
.reviews {
  padding: var(--section-pad) 0;
  background: var(--cream);
}
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
  align-items: start;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--linen);
}
.review-card--featured {
  background: var(--sage-pale);
  border-color: var(--sage);
  transform: scale(1.02);
}
.review-card__stars {
  color: var(--sage-deep);
  font-size: 1rem;
  letter-spacing: .1em;
  margin-bottom: 1rem;
}
.review-card__text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-dark);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.review-card__author {
  display: flex;
  align-items: center;
  gap: .85rem;
}
.review-card__avatar {
  width: 40px; height: 40px;
  background: var(--taupe-pale);
  color: var(--taupe-deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 500;
  flex-shrink: 0;
}
.review-card--featured .review-card__avatar {
  background: var(--sage);
  color: var(--white);
}
.review-card__author strong {
  display: block;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-dark);
}
.review-card__author span {
  font-size: .78rem;
  color: var(--text-light);
}

/* ============================================
   TARIFS
   ============================================ */
.tarifs {
  padding: var(--section-pad) 0;
  background: var(--cream-deep);
}

.tarifs__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

/* Carte principale */
.tarifs__card--main {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border-top: 4px solid var(--sage-deep);
  box-shadow: 0 4px 30px rgba(100,60,40,.08);
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.tarifs__eyebrow {
  display: block;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-bottom: .4rem;
}

.tarifs__name {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--text-dark);
  margin-bottom: .3rem;
}

.tarifs__sub {
  font-size: .85rem;
  color: var(--text-light);
}

.tarifs__price-block {
  display: flex;
  flex-direction: column;
  gap: .8rem;
  padding: 1.4rem 1.6rem;
  background: var(--cream);
  border-radius: var(--radius);
  border-left: 3px solid var(--sage-deep);
}

.tarifs__price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.tarifs__price-label {
  font-size: .85rem;
  color: var(--text-mid);
}

.tarifs__price-value strong {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  color: var(--sage-deep);
}

.tarifs__price-value small {
  font-size: .8rem;
  color: var(--text-light);
  margin-left: .2rem;
}

.tarifs__includes {
  display: flex;
  flex-direction: column;
  gap: .55rem;
}

.tarifs__includes li {
  font-size: .875rem;
  color: var(--text-mid);
}

/* Cartes extras */
.tarifs__extras {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tarifs__extra-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.6rem;
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  border: 1px solid var(--linen);
  transition: border-color .25s;
}

.tarifs__extra-card:hover {
  border-color: var(--sage);
}

.tarifs__extra-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  margin-top: .1rem;
}

.tarifs__extra-body {
  display: flex;
  flex-direction: column;
  gap: .3rem;
  flex: 1;
}

.tarifs__extra-body strong {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-dark);
}

.tarifs__extra-body p {
  font-size: .83rem;
  color: var(--text-mid);
  line-height: 1.55;
}

.tarifs__extra-badge {
  display: inline-block;
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--sage-pale);
  color: var(--sage-deep);
  border-radius: 20px;
  padding: .15rem .6rem;
  align-self: flex-start;
}

.tarifs__extra-badge--green {
  background: var(--sage-pale);
  color: var(--sage-deep);
}

.tarifs__extra-price {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--sage-deep);
  margin-top: .2rem;
}

.tarifs__extra-price small {
  font-size: .8rem;
  color: var(--text-light);
  font-family: var(--font-sans);
}

.tarifs__note {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  padding: 1rem 1.2rem;
  background: var(--pond-pale);
  border-radius: var(--radius);
  border-left: 3px solid var(--pond);
}

.tarifs__note-icon {
  font-size: 1rem;
  flex-shrink: 0;
  color: var(--pond);
  margin-top: .15rem;
}

.tarifs__note p {
  font-size: .82rem;
  color: var(--text-mid);
  line-height: 1.55;
}

@media (max-width: 900px) {
  .tarifs__grid { grid-template-columns: 1fr; }
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: var(--section-pad) 0;
  background:
    linear-gradient(
      to bottom,
      var(--cream-deep) 0%,
      var(--linen) 100%
    );
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
}
.contact__intro {
  color: var(--text-mid);
  margin-bottom: 1.8rem;
}
.contact__details {
  display: flex;
  flex-direction: column;
  gap: .9rem;
  margin-bottom: 2rem;
}
.contact__details li {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  font-size: .9rem;
  color: var(--text-mid);
}
.contact__icon { flex-shrink: 0; }
.contact__map {
  background: var(--sage-pale);
  border-radius: var(--radius-lg);
  height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  color: var(--sage-deep);
  border: 1px solid var(--sage);
}
.contact__map-pin { font-size: 2rem; }
.contact__map p { font-size: .85rem; letter-spacing: .06em; }

/* Form */
.contact__form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 4px 30px rgba(100,60,40,.08);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-bottom: 1.2rem;
}
.form-group label {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-mid);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: .9rem;
  font-weight: 300;
  color: var(--text-dark);
  background: var(--cream);
  border: 1.5px solid var(--linen);
  border-radius: var(--radius);
  padding: .7rem 1rem;
  transition: border-color .25s, box-shadow .25s;
  outline: none;
  width: 100%;
}
.form-group select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 2.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235E8A58' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  cursor: pointer;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(94,138,88,.15);
}
.form-group textarea { resize: vertical; }
.form__note {
  text-align: center;
  font-size: .75rem;
  color: var(--text-light);
  margin-top: .8rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--sage-deep);
  color: var(--taupe-pale);
  padding-top: 4rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__logo {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: .8rem;
}
.footer__brand p {
  font-size: .85rem;
  line-height: 1.65;
  color: var(--taupe-pale);
  opacity: .75;
  margin-bottom: 1.2rem;
}
.footer__social {
  display: flex;
  gap: .8rem;
}
.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: rgba(255,255,255,.07);
  border-radius: 50%;
  font-size: 1rem;
  transition: background .25s;
}
.footer__social a:hover { background: var(--sage); }

.footer__col h4 {
  font-family: var(--font-sans);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.2rem;
}
.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.footer__col li,
.footer__col a {
  font-size: .85rem;
  color: var(--taupe-pale);
  opacity: .7;
  transition: opacity .25s, color .25s;
}
.footer__col a:hover { opacity: 1; color: var(--sage-pale); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  font-size: .78rem;
  color: var(--taupe-pale);
  opacity: .5;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .about__grid,
  .contact__grid { grid-template-columns: 1fr; gap: 3rem; }
  .about__img--main { height: 300px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: span 2; }
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .gallery__item--tall { grid-row: span 1; }
  .gallery__item--wide { grid-column: span 2; }
}

@media (max-width: 640px) {
  .nav__links { display: none; }
  .nav__burger { display: block; }
  .hero__cta { flex-direction: column; align-items: center; }
  .form-row { grid-template-columns: 1fr; }
  .reviews__grid { grid-template-columns: 1fr; }
  .review-card--featured { transform: none; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__brand { grid-column: span 1; }
  .footer__bottom { flex-direction: column; gap: .4rem; text-align: center; }
  .gallery__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .gallery__item--wide { grid-column: span 1; }
}

/* ============================================
   CAROUSELS DE PROPRIÉTÉ
   ============================================ */

/* ── (ancienne section galerie supprimée) ── */

/* ── Carousel structure ── */
.carousel { position: relative; }

.carousel__viewport {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.carousel__track {
  display: flex;
  transition: transform .5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── Slide ── */
.carousel__slide {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: 45% 1fr;
  align-items: center;
  background: var(--cream-deep);
}

.carousel__img {
  height: 340px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

.carousel__content {
  padding: 2.5rem 2.8rem;
}

.carousel__slide-title {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  color: var(--text-dark);
  margin-bottom: .75rem;
  font-weight: 400;
}

.carousel__slide-desc {
  color: var(--text-mid);
  line-height: 1.75;
  font-size: .95rem;
}

/* ── Slide avec carte (carousel 3) ── */
.carousel__content--map {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  height: 100%;
  justify-content: center;
}

.carousel__badge {
  display: inline-block;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--sage-deep);
  background: var(--sage-pale);
  border-radius: 20px;
  padding: .25rem .85rem;
  margin-bottom: .3rem;
}

.carousel__text-group { display: flex; flex-direction: column; }

.carousel__map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--linen);
  height: 150px;
  flex-shrink: 0;
}
.carousel__map iframe {
  display: block;
  width: 100%;
  height: 100%;
}

/* ── Navigation ── */
.carousel__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 1.6rem;
}

.carousel__btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--linen);
  color: var(--text-dark);
  font-size: 1.6rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 2px;
  cursor: pointer;
  flex-shrink: 0;
  transition: background .25s, color .25s, border-color .25s;
}
.carousel__btn:hover {
  background: var(--sage-deep);
  color: var(--white);
  border-color: var(--sage-deep);
}

.carousel__dots {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.carousel__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--linen);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .3s, width .3s, border-radius .3s;
}
.carousel__dot--active {
  background: var(--sage-deep);
  width: 24px;
  border-radius: 4px;
}

/* ── Section Aux alentours ── */
.alentours {
  padding: var(--section-pad) 0;
  background: var(--white);
}

/* ── Carousel dans la section services (jardin) ── */
.carousel--services {
  margin-bottom: 3.5rem;
}
.carousel--services .carousel__slide {
  background: var(--white);
}

/* ── Carousel images-only (section logement) ── */
.carousel--images-only .carousel__slide {
  display: block;
  background: transparent;
}
.carousel--images-only .carousel__img {
  height: 380px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.carousel--images-only .carousel__nav {
  margin-top: 0;
  padding: .9rem 1rem;
  background: var(--white);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  border: 1px solid var(--linen);
  border-top: none;
}

/* ── Responsive carousels ── */
@media (max-width: 900px) {
  .carousel__slide {
    grid-template-columns: 1fr;
  }
  .carousel__img {
    height: 240px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }
  .carousel__content {
    padding: 1.8rem 2rem;
  }
  .carousel--images-only .carousel__img { height: 260px; }
}

@media (max-width: 640px) {
  .carousel__img { height: 200px; }
  .carousel__content { padding: 1.4rem 1.5rem; }
  .carousel__map { height: 130px; }
  .carousel-heading h3 { font-size: 1.25rem; }
  .carousel--images-only .carousel__img { height: 210px; }
}

/* ============================================
   SERVICES LIST — SCROLLABLE SYNC
   ============================================ */
.studio__details--sync {
  max-height: 450px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--linen) transparent;
}
.studio__details--sync::-webkit-scrollbar { width: 4px; }
.studio__details--sync::-webkit-scrollbar-track { background: transparent; }
.studio__details--sync::-webkit-scrollbar-thumb {
  background: var(--linen);
  border-radius: 2px;
}
.studio__details--sync .studio__spaces {
  margin-bottom: 0;
}
.studio__details--sync .studio__spaces li {
  cursor: pointer;
  border-radius: var(--radius);
  padding: .5rem .7rem;
  margin-inline: -.7rem;
  transition: background .2s var(--ease);
}
.studio__details--sync .studio__spaces li:not(.is-active):hover {
  background: var(--cream-deep);
}

@keyframes fadeToActive {
  0%   { background: rgba(40, 60, 40, 0.22); }
  100% { background: var(--sage-pale); }
}
.studio__details--sync .studio__spaces li.is-active {
  animation: fadeToActive 1s var(--ease) forwards;
}

@media (max-width: 900px) {
  .studio__details--sync { max-height: none; overflow-y: visible; }
}
