:root {
  --green-deep:   #2c4a2e;
  --green-mid:    #3d6140;
  --green-light:  #6b8c6d;
  --green-pale:   #c8d9c9;
  --cream:        #f5f0e8;
  --cream-dark:   #ede5d5;
  --earth:        #7a5c3a;
  --earth-light:  #c4966a;
  --text:         #1e2d1f;
  --text-mid:     #4a5e4b;
  --text-light:   #8a9e8b;
  --white:        #fdfaf4;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--text);
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── NAVIGATION ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  transition: background 0.4s, box-shadow 0.4s;
}
nav.scrolled {
  background: var(--cream);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: color 0.4s;
}
nav.scrolled .nav-logo { color: var(--green-deep); }
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color 0.3s;
}
nav.scrolled .nav-links a { color: var(--text-mid); }
.nav-links a:hover { color: var(--white); }
nav.scrolled .nav-links a:hover { color: var(--green-deep); }
.nav-cta {
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 24px;
  border: 1.5px solid rgba(255,255,255,0.7);
  color: var(--white);
  transition: all 0.3s;
}
.nav-cta:hover { background: var(--white); color: var(--green-deep); }
nav.scrolled .nav-cta { border-color: var(--green-deep); color: var(--green-deep); }
nav.scrolled .nav-cta:hover { background: var(--green-deep); color: var(--white); }

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  padding: 0 48px 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(20,35,22,0.2) 0%, rgba(20,35,22,0.55) 60%, rgba(20,35,22,0.75) 100%),
    url('../img/etang.png') center center / cover no-repeat;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(107,140,109,0.25) 0%, transparent 60%),
    radial-gradient(ellipse at 75% 25%, rgba(44,74,46,0.4) 0%, transparent 50%);
}
.hero-badge {
  position: absolute;
  top: 48%;
  right: 80px;
  transform: translateY(-50%);
  width: 130px;
  height: 130px;
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: rgba(255,255,255,0.8);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  line-height: 1.6;
  opacity: 0;
  animation: fadeIn 1.2s ease 0.9s forwards;
}
.hero-badge span {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--white);
  display: block;
  margin: 4px 0;
  letter-spacing: 0;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green-pale);
  margin-bottom: 16px;
  opacity: 0;
  animation: slideUp 0.9s ease 0.2s forwards;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  opacity: 0;
  animation: slideUp 0.9s ease 0.4s forwards;
}
.hero-title em {
  font-style: italic;
  color: var(--green-pale);
}
.hero-sub {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  max-width: 480px;
  opacity: 0;
  animation: slideUp 0.9s ease 0.6s forwards;
}
.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  opacity: 0;
  animation: slideUp 0.9s ease 0.8s forwards;
}
.btn-primary {
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 32px;
  background: var(--white);
  color: var(--green-deep);
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
}
.btn-primary:hover { background: var(--green-pale); }
.btn-ghost {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s;
}
.btn-ghost:hover { color: var(--white); border-color: var(--white); }
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}
.hero-scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
}

/* ── SECTION LABEL ── */
.section-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--green-light);
}

/* ── EDITO ── */
.edito {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.edito-text {
  padding: 80px 72px 80px 80px;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.edito h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 600;
  line-height: 1.25;
  color: var(--green-deep);
  margin-bottom: 24px;
}
.edito h2 em { font-style: italic; color: var(--earth); }
.edito p {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 16px;
  max-width: 420px;
}
.btn-link {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-deep);
  text-decoration: none;
  border-bottom: 2px solid var(--green-pale);
  padding-bottom: 2px;
  display: inline-block;
  margin-top: 8px;
  transition: border-color 0.3s;
}
.btn-link:hover { border-color: var(--green-deep); }
.edito-images {
  display: grid;
  grid-template-rows: 60% 40%;
}
.edito-img-main {
  background: var(--green-mid);
  position: relative;
  overflow: hidden;
}
.edito-img-main .img-placeholder {
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    -45deg,
    #3d6140 0px, #3d6140 2px,
    #4a7a4d 2px, #4a7a4d 16px
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  font-family: monospace;
  letter-spacing: 1px;
}
.edito-img-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.edito-img-small {
  background: var(--green-deep);
  position: relative;
  overflow: hidden;
}
.edito-img-small .img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  font-family: monospace;
  text-align: center;
  padding: 8px;
}
.edito-img-small:first-child .img-placeholder {
  background: repeating-linear-gradient(-30deg, #5a7a3d 0px, #5a7a3d 2px, #6b8c4a 2px, #6b8c4a 14px);
}
.edito-img-small:last-child .img-placeholder {
  background: repeating-linear-gradient(60deg, #8b6040 0px, #8b6040 2px, #a07050 2px, #a07050 14px);
}

/* ── PILLARS ── */
.pillars {
  background: var(--green-deep);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.pillar {
  padding: 56px 48px;
  border-right: 1px solid rgba(255,255,255,0.1);
  transition: background 0.3s;
}
.pillar:last-child { border-right: none; }
.pillar:hover { background: rgba(255,255,255,0.04); }
.pillar-icon {
  font-size: 28px;
  margin-bottom: 20px;
  display: block;
}
.pillar h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}
.pillar p {
  font-size: 14px;
  color: var(--green-pale);
  line-height: 1.7;
  font-weight: 300;
}

/* ── HEBERGEMENTS ── */
.hebergements {
  padding: 100px 80px;
  background: var(--cream);
}
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
}
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 600;
  color: var(--green-deep);
  line-height: 1.2;
}
.section-header h2 em { font-style: italic; }
.see-all {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  text-decoration: none;
  border-bottom: 1px solid var(--green-pale);
  padding-bottom: 2px;
  white-space: nowrap;
  margin-bottom: 8px;
  transition: color 0.3s, border-color 0.3s;
}
.see-all:hover { color: var(--green-deep); border-color: var(--green-deep); }
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.card {
  background: var(--white);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s;
  position: relative;
}
.card:hover { transform: translateY(-4px); }
.card-img {
  height: 240px;
  position: relative;
  overflow: hidden;
}
.card-img .img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: monospace;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  text-align: center;
  transition: transform 0.4s;
}
.card:hover .card-img .img-placeholder { transform: scale(1.04); }
.card:nth-child(1) .img-placeholder { background: repeating-linear-gradient(135deg, #3d6140 0px, #3d6140 2px, #5a8c5e 2px, #5a8c5e 18px); }
.card:nth-child(2) .img-placeholder { background: repeating-linear-gradient(135deg, #4a6e3a 0px, #4a6e3a 2px, #6b9a5a 2px, #6b9a5a 18px); }
.card:nth-child(3) .img-placeholder { background: repeating-linear-gradient(135deg, #7a5c3a 0px, #7a5c3a 2px, #a07a52 2px, #a07a52 18px); }
.card-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--white);
  color: var(--green-deep);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  font-weight: 700;
}
.card-body {
  padding: 28px 28px 32px;
}
.card-meta {
  display: flex;
  gap: 16px;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 10px;
}
.card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 10px;
  line-height: 1.3;
}
.card p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 20px;
}
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card-price {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--earth);
}
.card-price small {
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  color: var(--text-light);
  font-weight: 400;
}
.btn-card {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--green-deep);
  border-bottom: 2px solid var(--green-pale);
  padding-bottom: 2px;
  transition: border-color 0.3s;
}
.btn-card:hover { border-color: var(--green-deep); }

/* ── ACTIVITIES ── */
.activities {
  background: var(--cream-dark);
  padding: 72px 0 0;
}
.activities-header {
  max-width: 1000px;
  margin: 0 auto 56px;
  padding: 0 72px;
}
.activities-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 16px;
  line-height: 1.3;
}
.activities-header h2 em {
  font-style: italic;
  color: var(--green-mid);
}
.activities-header > p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.8;
}
.carousel-wrapper {
  position: relative;
}
.carousel {
  overflow: hidden;
}
.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.carousel-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 45% 55%;
  background: var(--white);
  min-height: 440px;
}
.carousel-slide-img {
  min-height: 440px;
  position: relative;
}
.carousel-slide-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.35) 0%, transparent 55%);
}
.carousel-img--foret {
  background:
    linear-gradient(to right, rgba(0,0,0,0.18) 0%, transparent 50%),
    url('https://images.unsplash.com/photo-1680528811837-d4e928e9ac11?w=900&q=85&fit=crop&crop=center') center/cover no-repeat;
}
.carousel-img--provins {
  background:
    linear-gradient(to right, rgba(0,0,0,0.18) 0%, transparent 50%),
    url('https://images.unsplash.com/photo-1746540690014-fc3f913df074?w=900&q=85&fit=crop&crop=center') center/cover no-repeat;
}
.carousel-img--velo {
  background:
    linear-gradient(to right, rgba(0,0,0,0.18) 0%, transparent 50%),
    url('https://images.unsplash.com/photo-1673890686558-0aa0e2e01528?w=900&q=85&fit=crop&crop=center') center/cover no-repeat;
}
.carousel-img--divers {
  background:
    linear-gradient(to right, rgba(0,0,0,0.18) 0%, transparent 50%),
    url('https://images.unsplash.com/photo-1759003103614-11427d946af0?w=900&q=85&fit=crop&crop=center') center/cover no-repeat;
}
.carousel-img--ecrevisse {
  background:
    linear-gradient(to right, rgba(0,0,0,0.18) 0%, transparent 50%),
    url('https://images.unsplash.com/photo-1576245036999-265488c17d09?w=900&q=85&fit=crop&crop=center') center/cover no-repeat;
}
.carousel-img--peche {
  background:
    linear-gradient(to right, rgba(0,0,0,0.18) 0%, transparent 50%),
    url('https://images.unsplash.com/photo-1752650143891-731313a64c77?w=900&q=85&fit=crop&crop=center') center/cover no-repeat;
}
.carousel-slide-body {
  padding: 56px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.carousel-slide-tag {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green-mid);
  font-weight: 700;
  margin-bottom: 14px;
}
.carousel-slide-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 16px;
  line-height: 1.3;
}
.carousel-slide-body p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.85;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: var(--white);
  color: var(--green-deep);
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(0,0,0,0.14);
  transition: background 0.2s, color 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-btn:hover {
  background: var(--green-deep);
  color: var(--white);
  transform: translateY(-50%) scale(1.08);
}
.carousel-btn--prev { left: 20px; }
.carousel-btn--next { right: 20px; }
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
  padding-bottom: 40px;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(44,74,46,0.25);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s;
}
.carousel-dot.active {
  background: var(--green-mid);
  transform: scale(1.5);
}

/* ── CONTACT ── */
.contact {
  background: var(--cream);
  padding: 100px 80px;
  text-align: center;
  border-top: 1px solid var(--cream-dark);
}
.contact-inner {
  max-width: 680px;
  margin: 0 auto;
  border: 1.5px dashed var(--green-light);
  padding: 60px 72px;
  position: relative;
}
.contact-inner::before {
  content: '✦ NOUS CONTACTER ✦';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cream);
  padding: 0 16px;
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--green-light);
  white-space: nowrap;
}
.contact h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 600;
  color: var(--green-deep);
  line-height: 1.25;
  margin-bottom: 12px;
}
.contact h2 em { font-style: italic; }
.contact-sub {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 40px;
  line-height: 1.7;
}
.contact-infos {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 40px;
}
.contact-info-item {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.8;
}
.contact-info-item strong {
  display: block;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-light);
  font-weight: 700;
  margin-bottom: 4px;
}
.contact-divider {
  width: 1px;
  height: 60px;
  background: var(--green-pale);
  margin: auto 0;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-field label {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 700;
}
.form-field input,
.form-field textarea,
.form-field select {
  background: transparent;
  border: none;
  border-bottom: 1.5px solid var(--green-pale);
  padding: 10px 0;
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: var(--text);
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
  appearance: none;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus { border-color: var(--green-deep); }
.form-field textarea {
  resize: none;
  height: 80px;
  line-height: 1.6;
}
.btn-submit {
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 16px 40px;
  background: var(--green-deep);
  color: var(--white);
  border: none;
  cursor: pointer;
  transition: background 0.3s;
  align-self: center;
  margin-top: 8px;
}
.btn-submit:hover { background: var(--green-mid); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.form-success {
  background: var(--green-pale);
  color: var(--green-deep);
  border: 1px solid var(--green-mid);
  padding: 16px 20px;
  margin-bottom: 24px;
  font-size: 15px;
}
.form-success[hidden] { display: none; }

.form-error-global {
  color: #c0392b;
  font-size: 14px;
  margin-bottom: 16px;
}
.form-error-global[hidden] { display: none; }

.form-field-error {
  display: block;
  color: #c0392b;
  font-size: 13px;
  margin-top: 4px;
}

/* ── FOOTER ── */
footer {
  background: var(--green-deep);
  padding: 48px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
}
.footer-loc {
  font-size: 12px;
  color: var(--green-pale);
  margin-top: 4px;
}
.footer-links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.footer-links a {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--white); }
.footer-copy {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
}

/* ── ANIMATIONS ── */
@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(-6px); }
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ════════════════════════════════════════
   RESPONSIVE — Tablette (≤ 1024px)
════════════════════════════════════════ */
@media (max-width: 1024px) {
  nav { padding: 0 32px; }

  .hero { padding: 0 32px 64px; }
  .hero-badge { display: none; }

  .edito { grid-template-columns: 1fr; }
  .edito-text { padding: 64px 48px; }
  .edito-images { min-height: 400px; grid-template-rows: 65% 35%; }

  .pillars { grid-template-columns: 1fr; }
  .pillar { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 40px 48px; }
  .pillar:last-child { border-bottom: none; }

  .hebergements { padding: 72px 48px; }
  .cards-grid { grid-template-columns: 1fr 1fr; gap: 2px; }
  .card:nth-child(3) { grid-column: 1 / -1; }
  .card:nth-child(3) .card-img { height: 200px; }

  .activities { padding: 56px 0 0; }
  .carousel-slide { grid-template-columns: 40% 60%; }
  .carousel-slide-body { padding: 40px 36px; }

  .contact { padding: 72px 48px; }
  .contact-inner { padding: 48px 40px; }

  footer { padding: 40px 48px; gap: 24px; flex-wrap: wrap; }
  .footer-links { gap: 20px; }
}

/* ════════════════════════════════════════
   RESPONSIVE — Mobile (≤ 640px)
════════════════════════════════════════ */
@media (max-width: 640px) {

  /* Nav */
  nav {
    padding: 0 20px;
    height: 60px;
  }
  .nav-links { display: none; }
  .nav-cta {
    font-size: 11px;
    padding: 8px 16px;
    letter-spacing: 1px;
  }

  /* Hero */
  .hero {
    padding: 0 20px 56px;
    align-items: flex-end;
  }
  .hero-eyebrow { font-size: 10px; letter-spacing: 2px; }
  .hero-title { font-size: clamp(36px, 10vw, 52px); }
  .hero-sub { font-size: 15px; margin-bottom: 28px; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 12px; }
  .btn-primary { width: 100%; text-align: center; }
  .hero-scroll { display: none; }

  /* Édito */
  .edito-text {
    padding: 48px 20px;
  }
  .edito-images {
    min-height: 300px;
    grid-template-rows: 60% 40%;
  }

  /* Piliers */
  .pillar { padding: 36px 20px; }

  /* Hébergements */
  .hebergements { padding: 56px 20px; }
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 36px;
  }
  .cards-grid { grid-template-columns: 1fr; gap: 2px; }
  .card:nth-child(3) { grid-column: auto; }
  .card:nth-child(3) .card-img { height: 240px; }

  /* Activités */
  .activities { padding: 48px 0 0; }
  .carousel-slide { grid-template-columns: 1fr; }
  .carousel-slide-img { min-height: 200px; }
  .carousel-slide-body { padding: 32px 24px; }

  /* Contact */
  .contact { padding: 56px 20px; }
  .contact-inner {
    padding: 40px 24px;
    border-left: none;
    border-right: none;
  }
  .contact-infos {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
  }
  .contact-divider { width: 40px; height: 1px; }
  .form-row { grid-template-columns: 1fr; }
  .btn-submit { width: 100%; text-align: center; }

  /* Footer */
  footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    gap: 20px;
  }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 16px; }
}
