/*
Theme Name: Woodibox
Theme URI: https://www.woodibox.fr
Author: Woodibox
Author URI: https://www.woodibox.fr
Description: Thème sur mesure pour le gîte PMR Woodibox dans les Hautes-Vosges. Design naturel, moderne et accessible.
Version: 14.0.2
License: GNU General Public License v2 or later
Text Domain: woodibox
Tags: accessibility, nature, gite, vosges, pmr
*/

/* ═══════════════════════════════════════════════════════════════
   VARIABLES
═══════════════════════════════════════════════════════════════ */
:root {
  --forest:     #2C4A2E;
  --forest-mid: #3D6B40;
  --forest-light: #5A8F5E;
  --sage:       #8BAF8D;
  --cream:      #F5F0E8;
  --warm-white: #FDFAF5;
  --bark:       #6B4F3A;
  --bark-light: #A07850;
  --stone:      #8A8578;
  --stone-light:#C8C4BC;
  --text:       #2A2520;
  --text-light: #5A544E;
  --gold:       #C8963C;
  --shadow-sm:  0 2px 8px rgba(44,74,46,0.10);
  --shadow-md:  0 6px 24px rgba(44,74,46,0.14);
  --shadow-lg:  0 16px 48px rgba(44,74,46,0.18);
  --radius:     12px;
  --radius-lg:  20px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ═══════════════════════════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Lora', Georgia, serif;
  background: var(--warm-white);
  color: var(--text);
  line-height: 1.75;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--forest-mid); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 80px 0; }
.section--alt { background: var(--cream); }
.section--dark { background: var(--forest); color: var(--warm-white); }

/* ═══════════════════════════════════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════════════════════════════════ */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.25;
  color: var(--forest);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.4rem); font-weight: 600; margin-bottom: 16px; }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); font-weight: 600; margin-bottom: 12px; }
p  { margin-bottom: 16px; color: var(--text-light); font-size: 1.05rem; }

.section--dark h1,
.section--dark h2,
.section--dark h3 { color: var(--cream); }
.section--dark p   { color: rgba(245,240,232,0.85); }

.eyebrow {
  font-family: 'Raleway', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest-light);
  margin-bottom: 12px;
  display: block;
}
.section--dark .eyebrow { color: var(--gold); }

/* ═══════════════════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}
.btn--primary {
  background: var(--forest);
  color: var(--warm-white);
  box-shadow: var(--shadow-md);
}
.btn--primary:hover {
  background: var(--forest-mid);
  color: var(--warm-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn--gold {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 4px 20px rgba(200,150,60,0.35);
}
.btn--gold:hover {
  background: #b5832e;
  color: #fff;
  transform: translateY(-2px);
}
.btn--outline {
  background: transparent;
  color: var(--forest);
  border: 2px solid var(--forest);
}
.btn--outline:hover {
  background: var(--forest);
  color: var(--warm-white);
}

/* ═══════════════════════════════════════════════════════════════
   HEADER & NAVIGATION
═══════════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(253,250,245,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(44,74,46,0.10);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.site-logo__icon {
  width: 40px; height: 40px;
  background: var(--forest);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  font-size: 1.3rem;
}
.site-logo__text {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--forest);
}

.site-nav { display: flex; align-items: center; gap: 8px; }
.site-nav a {
  font-family: 'Raleway', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  padding: 8px 14px;
  border-radius: 8px;
  transition: all var(--transition);
}
.site-nav a:hover,
.site-nav a.active {
  background: var(--cream);
  color: var(--forest);
}

.nav-lang {
  display: flex;
  gap: 4px;
  margin-left: 16px;
  padding-left: 16px;
  border-left: 1px solid var(--stone-light);
}
.nav-lang a {
  font-family: 'Raleway', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--stone);
  padding: 4px 8px;
  border-radius: 6px;
}
.nav-lang a:hover,
.nav-lang a.active { color: var(--forest); background: var(--cream); }

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

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--forest);
}

/* ═══════════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
  background: var(--forest);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(44,74,46,0.92) 0%, rgba(44,74,46,0.70) 50%, rgba(44,74,46,0.85) 100%),
    url('images/hero-bg.jpg') center/cover no-repeat;
}

.hero__pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(200,150,60,0.15) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(90,143,94,0.20) 0%, transparent 50%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1160px;
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero__text { color: var(--cream); }
.hero__text .eyebrow { color: var(--gold); }
.hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--warm-white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero__title span { color: var(--gold); }
.hero__subtitle {
  font-size: 1.15rem;
  color: rgba(245,240,232,0.85);
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.20);
  color: var(--cream);
  padding: 7px 14px;
  border-radius: 50px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
}
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__card {
  background: rgba(253,250,245,0.10);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: 32px;
  color: var(--cream);
}
.hero__card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--warm-white);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.price-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Raleway', sans-serif;
  font-size: 0.92rem;
}
.price-item__label { color: rgba(245,240,232,0.75); }
.price-item__value {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--gold);
}
.price-note {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.10);
  font-size: 0.80rem;
  color: rgba(245,240,232,0.60);
  font-family: 'Raleway', sans-serif;
}

/* ═══════════════════════════════════════════════════════════════
   FEATURES STRIP
═══════════════════════════════════════════════════════════════ */
.features-strip {
  background: var(--forest-mid);
  padding: 24px 0;
}
.features-strip__inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
.features-strip__item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--cream);
  font-family: 'Raleway', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
}
.features-strip__item span { font-size: 1.2rem; }

/* ═══════════════════════════════════════════════════════════════
   ABOUT / INTRO
═══════════════════════════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  background: var(--cream);
  position: relative;
}
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-img__badge {
  position: absolute;
  bottom: 20px; left: 20px;
  background: var(--forest);
  color: var(--cream);
  padding: 12px 20px;
  border-radius: var(--radius);
  font-family: 'Raleway', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════════
   PMR SECTION
═══════════════════════════════════════════════════════════════ */
.pmr-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.pmr-card {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid rgba(44,74,46,0.10);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.pmr-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--sage);
}
.pmr-card__icon {
  font-size: 2rem;
  margin-bottom: 14px;
}
.pmr-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.pmr-card p { font-size: 0.92rem; margin: 0; }

/* ═══════════════════════════════════════════════════════════════
   EQUIPEMENTS
═══════════════════════════════════════════════════════════════ */
.equip-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.equip-tab {
  font-family: 'Raleway', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 50px;
  border: 2px solid var(--stone-light);
  background: transparent;
  color: var(--text-light);
  cursor: pointer;
  transition: all var(--transition);
}
.equip-tab.active,
.equip-tab:hover {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--cream);
}

.equip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
}
.equip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: var(--warm-white);
  border-radius: var(--radius);
  border: 1px solid rgba(44,74,46,0.08);
  font-family: 'Raleway', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  box-shadow: var(--shadow-sm);
}
.equip-item .icon { font-size: 1.2rem; }

/* ═══════════════════════════════════════════════════════════════
   ACTIVITÉS
═══════════════════════════════════════════════════════════════ */
.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.activity-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.activity-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.activity-card__img {
  height: 180px;
  background: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}
.activity-card__season {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--gold);
  color: #fff;
  font-family: 'Raleway', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
}
.activity-card__body { padding: 20px; background: var(--warm-white); }
.activity-card h3 { font-size: 1rem; margin-bottom: 6px; }
.activity-card p { font-size: 0.88rem; margin: 0; }

/* ═══════════════════════════════════════════════════════════════
   TARIFS
═══════════════════════════════════════════════════════════════ */
.tarifs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.tarif-card {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 2px solid rgba(44,74,46,0.10);
  text-align: center;
  transition: all var(--transition);
  position: relative;
}
.tarif-card:hover {
  border-color: var(--forest-mid);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.tarif-card.featured {
  border-color: var(--forest);
  box-shadow: var(--shadow-md);
}
.tarif-card__badge {
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--forest);
  color: var(--cream);
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
}
.tarif-card__label {
  font-family: 'Raleway', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest-light);
  margin-bottom: 10px;
}
.tarif-card__price {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--forest);
  line-height: 1;
}
.tarif-card__price sup { font-size: 1.4rem; vertical-align: super; }
.tarif-card__price sub { font-size: 0.9rem; color: var(--text-light); }
.tarif-card__desc {
  font-size: 0.88rem;
  color: var(--text-light);
  margin: 16px 0 0;
  font-family: 'Raleway', sans-serif;
}

.options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 14px;
  margin-top: 32px;
}
.option-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  background: var(--warm-white);
  border-radius: var(--radius);
  border: 1px solid rgba(44,74,46,0.08);
}
.option-item .icon { font-size: 1.4rem; margin-top: 2px; }
.option-item strong {
  display: block;
  font-family: 'Raleway', sans-serif;
  font-size: 0.9rem;
  margin-bottom: 3px;
  color: var(--text);
}
.option-item span { font-size: 0.82rem; color: var(--text-light); }

/* ═══════════════════════════════════════════════════════════════
   RÈGLEMENT
═══════════════════════════════════════════════════════════════ */
.regles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 24px;
}
.regle-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: var(--radius);
  font-family: 'Raleway', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
}
.regle-item--no { background: #FEF2F2; color: #991B1B; border: 1px solid #FECACA; }
.regle-item--yes { background: #F0FDF4; color: #166534; border: 1px solid #BBF7D0; }
.regle-item--info { background: var(--cream); color: var(--text); border: 1px solid var(--stone-light); }

/* ═══════════════════════════════════════════════════════════════
   CTA BAND
═══════════════════════════════════════════════════════════════ */
.cta-band {
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-mid) 60%, var(--bark) 100%);
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(200,150,60,0.15) 0%, transparent 70%);
}
.cta-band > * { position: relative; }
.cta-band h2 { color: var(--warm-white); margin-bottom: 12px; }
.cta-band p { color: rgba(245,240,232,0.80); margin-bottom: 32px; max-width: 560px; margin-inline: auto; }

/* ═══════════════════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-item__icon {
  width: 46px; height: 46px;
  background: var(--cream);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.contact-item strong { display: block; font-family: 'Raleway', sans-serif; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--stone); margin-bottom: 4px; }
.contact-item a, .contact-item span { color: var(--forest); font-weight: 600; }

/* ═══════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--text);
  color: rgba(245,240,232,0.70);
  padding: 48px 0 24px;
}
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .site-logo__text { color: var(--cream); }
.footer-brand p { margin-top: 12px; font-size: 0.88rem; line-height: 1.6; }
.footer-col h4 {
  font-family: 'Raleway', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: rgba(245,240,232,0.65); font-size: 0.88rem; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1160px;
  margin: 0 auto;
  padding: 20px 24px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.80rem;
  flex-wrap: wrap;
  gap: 8px;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero__content { grid-template-columns: 1fr; gap: 40px; }
  .hero__card { max-width: 480px; }
  .about-grid { grid-template-columns: 1fr; }
  .tarifs-grid { grid-template-columns: 1fr; max-width: 380px; margin-inline: auto; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .site-nav { display: none; }
  .site-nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--warm-white);
    padding: 20px 24px;
    border-bottom: 1px solid var(--stone-light);
    box-shadow: var(--shadow-md);
    gap: 4px;
  }
  .menu-toggle { display: block; }
  .pmr-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; justify-content: center; }
}

/* ═══════════════════════════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════════════════════════ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-in {
  animation: fadeInUp 0.6s ease both;
}
.animate-in:nth-child(1) { animation-delay: 0.1s; }
.animate-in:nth-child(2) { animation-delay: 0.2s; }
.animate-in:nth-child(3) { animation-delay: 0.3s; }
.animate-in:nth-child(4) { animation-delay: 0.4s; }

[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════════
   PAGE RÉSERVATION — Layout Calendrier + Formulaire
═══════════════════════════════════════════════════════════════ */
.resa-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: flex-start;
}

.resa-left {
  flex: 0 0 44%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.resa-right {
  flex: 0 0 calc(56% - 16px);
}

.resa-panel {
  background: rgba(255,255,255,0.97);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(44,74,46,0.08);
  overflow: hidden;
}

.resa-consignes {
  padding: 24px 28px;
}

.resa-consignes h2 {
  font-size: 1.05rem;
  color: var(--forest);
  margin-top: 0;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--cream);
}
.resa-consignes h2:not(:first-child) {
  margin-top: 20px;
}

.resa-consignes p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 10px;
}

.resa-consignes ul {
  padding-left: 18px;
  margin: 0;
}
.resa-consignes ul li {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 7px;
  line-height: 1.5;
}
.resa-consignes ul li strong {
  color: var(--forest);
}

.resa-regles {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

/* Iframes */
.calendar-iframe {
  width: 100%;
  height: 600px;
  display: block;
  border: none;
}

.form-iframe {
  width: 100%;
  height: 1100px;
  display: block;
  border: none;
}

/* Responsive réservation */
@media (max-width: 900px) {
  .resa-left,
  .resa-right {
    flex: 0 0 100%;
  }
  .calendar-iframe { height: 500px; }
  .form-iframe { height: 1000px; }
}

@media (max-width: 480px) {
  .resa-consignes { padding: 18px; }
  .calendar-iframe { height: 420px; }
  .form-iframe { height: 950px; }
}

/* ═══════════════════════════════════════════════════════════════
   DESIGN V3 — Variables supplémentaires
═══════════════════════════════════════════════════════════════ */
:root {
  --forest-dk:  #1a2f1b;
  --gold-lt:    #e8b95c;
  --ink-soft:   #4a4238;
  --ease:       cubic-bezier(.4,0,.2,1);
}

/* Fonts v3 */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,600&family=DM+Sans:wght@300;400;500;600&family=Raleway:wght@300;400;600;700&display=swap');

/* ═══ CONTAINER V3 ═══ */
.container-v3 { max-width: 1200px; margin: 0 auto; padding: 0 40px; }

/* ═══ EYEBROW V3 ═══ */
.eyebrow-v3 {
  display: block; margin-bottom: 10px;
  font-family: 'Raleway', sans-serif;
  font-size: .68rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--forest-light);
}

/* ═══ BOUTONS V3 ═══ */
.btn-v3 {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 30px; border-radius: 50px;
  font-family: 'Raleway', sans-serif; font-weight: 700; font-size: .88rem;
  transition: all .25s var(--ease); cursor: pointer;
}
.btn-v3--gold { background: var(--gold); color: #fff; box-shadow: 0 4px 20px rgba(200,150,60,.30); }
.btn-v3--gold:hover { background: #a87830; transform: translateY(-2px); }
.btn-v3--ghost { background: rgba(255,255,255,.12); color: #fff; border: 1.5px solid rgba(255,255,255,.35); backdrop-filter: blur(4px); }
.btn-v3--ghost:hover { background: rgba(255,255,255,.22); }
.btn-v3--forest { background: var(--forest); color: #fff; box-shadow: 0 4px 18px rgba(44,74,46,.22); }
.btn-v3--forest:hover { background: var(--forest-mid); transform: translateY(-2px); }
.btn-v3--outline { background: transparent; color: var(--forest); border: 2px solid var(--forest); }
.btn-v3--outline:hover { background: var(--forest); color: #fff; }

/* ═══ HERO V3 ═══ */
.hero-v3 {
  position: relative; height: 100vh; min-height: 680px;
  display: flex; align-items: flex-end; overflow: hidden;
}
.hero-v3__img { position: absolute; inset: 0; }
.hero-v3__img img {
  width: 100%; height: 100%; object-fit: cover;
  animation: heroZoomV3 14s ease-in-out infinite alternate;
}
@keyframes heroZoomV3 { from{transform:scale(1)} to{transform:scale(1.06)} }
.hero-v3__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,20,10,.90) 0%, rgba(12,20,10,.48) 38%, rgba(12,20,10,.18) 65%, transparent 100%);
}
.hero-v3__content {
  position: relative; z-index: 2;
  width: 100%; max-width: 1200px; margin: 0 auto;
  padding: 0 40px 80px;
  display: grid; grid-template-columns: 1fr 300px; gap: 40px; align-items: flex-end;
}
.hero-v3__eyebrow {
  font-family: 'Raleway', sans-serif; font-size: .70rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase; color: var(--gold-lt);
  display: flex; align-items: center; gap: 12px; margin-bottom: 16px;
}
.hero-v3__eyebrow::before { content:''; display:block; width:32px; height:1px; background:var(--gold-lt); }
.hero-v3__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 5.2rem); font-weight: 300; line-height: 1.06;
  color: #fff; margin-bottom: 20px;
}
.hero-v3__title strong { font-weight: 700; color: var(--gold-lt); }
.hero-v3__sub { font-size: 1.02rem; color: rgba(255,255,255,.72); max-width: 480px; margin-bottom: 32px; line-height: 1.68; }
.hero-v3__btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* Animation entrée hero */
.hero-v3__text > * { animation: riseV3 .7s var(--ease) both; }
.hero-v3__eyebrow { animation-delay:.1s }
.hero-v3__title   { animation-delay:.22s }
.hero-v3__sub     { animation-delay:.34s }
.hero-v3__btns    { animation-delay:.46s }
@keyframes riseV3 { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }

/* Carte prix hero */
.price-card-v3 {
  background: rgba(253,250,244,.09); border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(22px); border-radius: 20px; padding: 26px 24px;
  animation: riseV3 .75s .3s var(--ease) both;
}
.price-card-v3__title {
  font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; color: #fff;
  padding-bottom: 14px; margin-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,.12);
}
.price-card-v3__row {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 10px; font-size: .82rem;
}
.price-card-v3__row span:first-child { color: rgba(255,255,255,.55); }
.price-card-v3__row span:last-child {
  font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 700; color: var(--gold-lt);
}
.price-card-v3__note {
  font-size: .68rem; color: rgba(255,255,255,.38); line-height: 1.6;
  margin-top: 12px; padding-top: 10px; border-top: 1px solid rgba(255,255,255,.07);
}
.price-card-v3__btn {
  display: block; text-align: center; margin-top: 14px;
  background: var(--gold); color: #fff; padding: 11px; border-radius: 50px;
  font-family: 'Raleway', sans-serif; font-weight: 700; font-size: .78rem;
  transition: background .2s;
}
.price-card-v3__btn:hover { background: #a87830; }

/* Scroll indicator */
.scroll-v3 {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,.38); font-size: .64rem; font-family: 'Raleway', sans-serif; letter-spacing: .14em;
}
.scroll-v3__line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
  animation: scrollV3 2s ease-in-out infinite;
}
@keyframes scrollV3 { 0%,100%{opacity:.3} 50%{opacity:1} }

/* ═══ STRIP V3 ═══ */
.strip-v3 { background: var(--forest-mid); padding: 16px 0; }
.strip-v3__inner {
  max-width: 1200px; margin: 0 auto; padding: 0 40px;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 20px 32px;
}
.strip-v3__inner span {
  font-size: .81rem; font-weight: 500; color: rgba(245,240,232,.88);
  display: flex; align-items: center; gap: 6px;
}

/* ═══ ABOUT V3 ═══ */
.about-v3 {
  display: grid; grid-template-columns: 55% 1fr;
  min-height: 600px; overflow: hidden;
}
.about-v3__photo { position: relative; overflow: hidden; }
.about-v3__photo img { width: 100%; height: 100%; object-fit: cover; min-height: 560px; transition: transform .6s var(--ease); }
.about-v3__photo:hover img { transform: scale(1.04); }
.about-v3__badge {
  position: absolute; bottom: 24px; right: 24px;
  background: var(--warm-white); padding: 13px 20px; border-radius: 12px;
  box-shadow: var(--shadow-md); font-size: .82rem; font-weight: 600; color: var(--forest);
}
.about-v3__text {
  padding: 72px 56px; background: var(--warm-white);
  display: flex; flex-direction: column; justify-content: center;
}
.about-v3__text h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.9rem,3.5vw,2.8rem); font-weight: 400; }
.about-v3__text h2 em { font-style: italic; font-weight: 300; }

/* Stats */
.stats-v3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin: 28px 0; }
.stat-v3 {
  text-align: center; padding: 18px 10px;
  background: var(--cream); border-radius: 12px; border: 1px solid rgba(44,74,46,.06);
}
.stat-v3__n { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; font-weight: 700; color: var(--forest); line-height: 1; }
.stat-v3__l { font-size: .73rem; color: var(--text-light); margin-top: 4px; font-weight: 500; }

/* ═══ MOSAÏQUE V3 ═══ */
.mosaic-v3 {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  grid-template-rows: 310px 250px;
  gap: 6px; border-radius: 20px; overflow: hidden;
}
.mosaic-v3__main { grid-row: 1/3; overflow: hidden; }
.mosaic-v3__main img, .mosaic-v3__item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s var(--ease);
}
.mosaic-v3__main:hover img, .mosaic-v3__item:hover img { transform: scale(1.05); }
.mosaic-v3__item { overflow: hidden; }
.mosaic-v3__more {
  display: flex; align-items: center; justify-content: center;
  background: var(--forest); color: var(--cream);
  font-family: 'Raleway', sans-serif; font-weight: 700; font-size: .80rem;
  letter-spacing: .06em; transition: background .2s;
}
.mosaic-v3__more:hover { background: var(--forest-mid); }

/* ═══ TERRASSE V3 ═══ */
.terrasse-v3 { position: relative; overflow: hidden; }
.terrasse-v3__photo { width: 100%; height: 540px; object-fit: cover; display: block; }
.terrasse-v3__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(12,20,10,.85) 0%, rgba(12,20,10,.45) 50%, transparent 100%);
}
.terrasse-v3__content {
  position: absolute; top: 50%; left: 48px; transform: translateY(-50%);
  max-width: 500px; z-index: 2;
}
.terrasse-v3__content h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem,3.8vw,3rem); font-weight: 400; margin-bottom: 12px; }
.terrasse-v3__content p { margin-bottom: 26px; }

/* ═══ PMR V3 ═══ */
.pmr-v3 { display: grid; grid-template-columns: 1fr 1fr; }
.pmr-v3__photos { display: grid; grid-template-rows: 1fr 1fr; }
.pmr-v3__photo-item { overflow: hidden; }
.pmr-v3__photo-item img { width: 100%; height: 290px; object-fit: cover; transition: transform .5s var(--ease); }
.pmr-v3__photo-item:hover img { transform: scale(1.04); }
.pmr-v3__content {
  padding: 64px 52px; background: var(--forest);
  display: flex; flex-direction: column; justify-content: center;
}
.pmr-v3__content h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem,3vw,2.6rem); font-weight: 400; margin-bottom: 12px; }
.pmr-v3__list { display: flex; flex-direction: column; gap: 12px; margin: 24px 0; }
.pmr-v3__item {
  display: flex; gap: 13px; align-items: flex-start;
  padding: 14px 16px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
}
.pmr-v3__item > span { font-size: 1.3rem; flex-shrink: 0; }
.pmr-v3__item strong { display: block; font-size: .88rem; color: rgba(245,240,232,.95); margin-bottom: 2px; font-family: 'Raleway', sans-serif; }
.pmr-v3__item span:last-child { font-size: .78rem; color: rgba(245,240,232,.50); }

/* ═══ BANDE PHOTOS CHAMBRES ═══ */
.gallery-band-v3 {
  display: grid; grid-template-columns: repeat(4,1fr);
  height: 290px; gap: 4px;
}
.gallery-band-v3 > div { overflow: hidden; }
.gallery-band-v3 img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.gallery-band-v3 > div:hover img { transform: scale(1.06); }

/* ═══ INTÉRIEUR V3 ═══ */
.interior-v3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.int-card-v3 {
  border-radius: 20px; overflow: hidden;
  box-shadow: var(--shadow-sm); transition: all .3s var(--ease);
}
.int-card-v3:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.int-card-v3__img { height: 220px; overflow: hidden; }
.int-card-v3__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.int-card-v3:hover .int-card-v3__img img { transform: scale(1.05); }
.int-card-v3__body { padding: 22px; background: var(--warm-white); }
.int-card-v3__body h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; margin-bottom: 7px; color: var(--forest); }
.int-card-v3__body p { font-size: .84rem; color: var(--text-light); margin: 0; }

/* ═══ TARIFS V3 ═══ */
.tarifs-v3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.tarif-v3 {
  border-radius: 20px; overflow: hidden;
  box-shadow: var(--shadow-sm); transition: all .3s var(--ease); position: relative;
}
.tarif-v3:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.tarif-v3__img { height: 185px; overflow: hidden; }
.tarif-v3__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.tarif-v3:hover .tarif-v3__img img { transform: scale(1.05); }
.tarif-v3__body { padding: 24px; background: var(--warm-white); }
.tarif-v3__lbl { font-family: 'Raleway', sans-serif; font-size: .68rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--forest-light); margin-bottom: 8px; }
.tarif-v3__price { font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; font-weight: 700; color: var(--forest); line-height: 1; }
.tarif-v3__price sup { font-size: 1.1rem; vertical-align: super; }
.tarif-v3__price sub { font-size: .80rem; color: var(--text-light); font-family: 'DM Sans', sans-serif; font-weight: 400; }
.tarif-v3__desc { font-size: .82rem; color: var(--text-light); margin-top: 7px; margin-bottom: 0; }
.tarif-v3__badge {
  position: absolute; top: 14px; right: 14px;
  background: var(--gold); color: #fff; padding: 4px 13px;
  border-radius: 20px; font-family: 'Raleway', sans-serif; font-size: .67rem; font-weight: 700;
}
.tarif-v3--featured { border: 2px solid var(--forest); }

/* ═══ CTA V3 ═══ */
.cta-v3 { position: relative; overflow: hidden; min-height: 480px; display: flex; align-items: center; }
.cta-v3__photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cta-v3__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,18,8,.90) 0%, rgba(36,61,37,.68) 55%, rgba(36,61,37,.35) 100%);
}
.cta-v3__inner { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; padding: 80px 40px; }
.cta-v3__inner h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.2rem,4.5vw,3.4rem); font-weight: 400; margin-bottom: 12px; }
.cta-v3__inner h2 em { font-style: italic; font-weight: 300; }

/* ═══ ÉQUIPEMENTS V3 ═══ */
.equip-v3 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; margin-top: 48px; }
.equip-v3__list { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.equip-v3__item {
  display: flex; align-items: center; gap: 9px;
  padding: 11px 14px; background: var(--warm-white);
  border: 1px solid rgba(44,74,46,.07); border-radius: 10px;
  font-size: .83rem; font-weight: 500; box-shadow: 0 1px 5px rgba(0,0,0,.05);
}
.equip-v3__photo { border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/3; }
.equip-v3__photo img { width: 100%; height: 100%; object-fit: cover; }

/* ═══ CONTACT V3 ═══ */
.contact-v3 { display: grid; grid-template-columns: 1fr 1fr; }
.contact-v3__photo { overflow: hidden; }
.contact-v3__photo img { width: 100%; min-height: 500px; object-fit: cover; transition: transform .6s var(--ease); }
.contact-v3__photo:hover img { transform: scale(1.04); }
.contact-v3__body {
  padding: 72px 56px; background: var(--cream);
  display: flex; flex-direction: column; justify-content: center;
}
.c-v3-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 18px; }
.c-v3-icon {
  width: 42px; height: 42px; background: var(--warm-white);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem; flex-shrink: 0; box-shadow: var(--shadow-sm);
}
.c-v3-lbl { font-size: .68rem; font-weight: 700; letter-spacing: .10em; text-transform: uppercase; color: #aaa; margin-bottom: 3px; font-family: 'Raleway', sans-serif; }
.c-v3-val { font-size: .90rem; font-weight: 600; color: var(--forest); }

/* ═══ RESPONSIVE V3 ═══ */
@media (max-width: 1024px) {
  .hero-v3__content { grid-template-columns: 1fr; }
  .price-card-v3 { display: none; }
  .about-v3 { grid-template-columns: 1fr; }
  .about-v3__text { padding: 48px 32px; }
  .pmr-v3 { grid-template-columns: 1fr; }
  .pmr-v3__content { padding: 48px 32px; }
  .contact-v3 { grid-template-columns: 1fr; }
  .contact-v3__photo img { min-height: 300px; }
  .tarifs-v3 { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}
@media (max-width: 768px) {
  .hero-v3__content { padding: 0 20px 60px; }
  .container-v3 { padding: 0 20px; }
  .mosaic-v3 { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px 60px; }
  .mosaic-v3__main { grid-row: auto; grid-column: 1/3; }
  .gallery-band-v3 { grid-template-columns: repeat(2,1fr); height: auto; }
  .gallery-band-v3 > div { height: 180px; }
  .interior-v3 { grid-template-columns: 1fr; }
  .equip-v3 { grid-template-columns: 1fr; }
  .stats-v3 { grid-template-columns: repeat(3,1fr); }
  .terrasse-v3__content { left: 20px; right: 20px; }
  .terrasse-v3__photo { height: 420px; }
  .contact-v3__body { padding: 40px 24px; }
}

/* ═══════════════════════════════════════════════════════════════
   NOUVEAUX COMPOSANTS V4
═══════════════════════════════════════════════════════════════ */

/* ═══ JARDIN & NATURE ═══ */
.jardin-grid {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 8px;
  margin-bottom: 16px;
}
.jardin-main { position: relative; border-radius: var(--r-xl); overflow: hidden; }
.jardin-main img { width: 100%; height: 420px; object-fit: cover; transition: transform .5s var(--ease); }
.jardin-main:hover img { transform: scale(1.04); }
.jardin-caption {
  position: absolute; bottom: 16px; left: 16px;
  background: rgba(0,0,0,.50); backdrop-filter: blur(6px);
  color: #fff; padding: 7px 16px; border-radius: 50px;
  font-family: 'Raleway', sans-serif; font-size: .78rem; font-weight: 600;
}
.jardin-side { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3, 136px); gap: 8px; }
.jardin-item { border-radius: var(--r); overflow: hidden; }
.jardin-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.jardin-item:hover img { transform: scale(1.06); }

.nature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 8px; }
.nature-item { position: relative; border-radius: var(--r-xl); overflow: hidden; }
.nature-item img { width: 100%; height: 280px; object-fit: cover; transition: transform .5s var(--ease); }
.nature-item:hover img { transform: scale(1.04); }
.nature-caption {
  position: absolute; bottom: 16px; left: 16px;
  background: rgba(0,0,0,.50); backdrop-filter: blur(6px);
  color: #fff; padding: 7px 16px; border-radius: 50px;
  font-family: 'Raleway', sans-serif; font-size: .78rem; font-weight: 600;
}

/* ═══ PMR 3 PHOTOS COMPLÈTES ═══ */
.pmr-v3 { display: grid; grid-template-columns: 1fr 1fr; }
.pmr-v3__photos-3 {
  display: grid; grid-template-columns: repeat(3, 1fr); grid-column: 1;
}
.pmr-v3__photo-full { position: relative; overflow: hidden; }
.pmr-v3__photo-full img {
  width: 100%; height: 100%; min-height: 320px;
  object-fit: contain; /* PAS de rognage */
  background: #1a2f1b; /* fond forêt derrière les photos */
  display: block;
}
.pmr-v3__photo-label {
  position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%);
  background: rgba(0,0,0,.55); backdrop-filter: blur(6px);
  color: #fff; padding: 6px 14px; border-radius: 50px; white-space: nowrap;
  font-family: 'Raleway', sans-serif; font-size: .74rem; font-weight: 600;
}
/* Sur mobile : photos PMR en colonne */
@media (max-width: 900px) {
  .pmr-v3 { grid-template-columns: 1fr; }
  .pmr-v3__photos-3 { grid-template-columns: 1fr; }
  .pmr-v3__content { padding: 40px 24px; }
}

/* ═══ CONVIVIALITÉ ═══ */
.conviv-v3 {
  position: relative; overflow: hidden;
  min-height: 520px; display: flex; align-items: center;
}
.conviv-v3__photo {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.conviv-v3__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(10,18,8,.88) 0%, rgba(36,61,37,.65) 55%, rgba(36,61,37,.20) 100%);
}
.conviv-v3__content {
  position: relative; z-index: 2;
  max-width: 560px; padding: 80px 48px;
}
.conviv-v3__content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.8vw, 3rem); font-weight: 400; margin-bottom: 16px;
}
.conviv-v3__content p { margin-bottom: 12px; }
@media (max-width: 768px) {
  .conviv-v3__content { padding: 52px 24px; }
}

/* ═══ INTÉRIEUR 5 CARDS ═══ */
.interior-v3-5 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
/* 4e et 5e cards centrées sur une 2e ligne */
.interior-v3-5 .int-card-v3:nth-child(4) { grid-column: 1; }
.interior-v3-5 .int-card-v3:nth-child(5) { grid-column: 2; }
@media (max-width: 900px) {
  .interior-v3-5 { grid-template-columns: 1fr 1fr; }
  .interior-v3-5 .int-card-v3:nth-child(4),
  .interior-v3-5 .int-card-v3:nth-child(5) { grid-column: auto; }
}
@media (max-width: 600px) {
  .interior-v3-5 { grid-template-columns: 1fr; }
}

/* ═══ JARDIN RESPONSIVE ═══ */
@media (max-width: 900px) {
  .jardin-grid { grid-template-columns: 1fr; }
  .jardin-main img { height: 280px; }
  .jardin-side { grid-template-columns: repeat(3, 1fr); grid-template-rows: auto; }
  .jardin-item { height: 120px; }
  .nature-row { grid-template-columns: 1fr; }
  .nature-item img { height: 220px; }
}
