/* La Maison d'Antoine à Tosse */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --vert: #3d6b4e;
  --vert-fonce: #2c4f39;
  --vert-clair: #5a8c6a;
  --menthe: #9ecdb0;
  --menthe-pale: #ddf0e3;
  --terra: #c25a3c;
  --terra-doux: #d4735a;
  --terra-pale: #f2ddd6;
  --rose: #e8707a;
  --rose-pale: #fce8ea;
  --creme: #fdf9f5;
  --blanc: #ffffff;
  --noir: #2a2a2a;
  --texte: #352f2b;
  --texte-light: #7a706a;
  --ombre: rgba(61, 107, 78, 0.07);
  --ombre-hover: rgba(61, 107, 78, 0.13);
  --radius: 14px;
}

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

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  color: var(--texte);
  line-height: 1.7;
  background: var(--creme);
}

h1, h2, h3 { font-family: 'DM Serif Display', Georgia, serif; font-weight: 400; }

/* NAV */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(44, 79, 57, 0.94);
  backdrop-filter: blur(14px);
  z-index: 1000;
  padding: 0 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 68px;
}
nav .logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem;
  color: var(--menthe);
  text-decoration: none;
}
nav .nav-links {
  display: flex;
  gap: 1.8rem;
  list-style: none;
  align-items: center;
}
nav .nav-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s;
}
nav .nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--rose);
  transition: width 0.3s ease;
}
nav .nav-links a:hover { color: #fff; }
nav .nav-links a:hover::after { width: 100%; }
.lang-switch {
  background: var(--terra) !important;
  color: #fff !important;
  padding: 0.35rem 0.9rem !important;
  border-radius: 50px !important;
  font-size: 0.78rem !important;
  font-weight: 600 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  transition: background 0.3s !important;
}
.lang-switch::after { display: none !important; }
.lang-switch:hover { background: var(--terra-doux) !important; }

/* HERO */
.hero {
  height: 100vh;
  min-height: 550px;
  background: linear-gradient(170deg, rgba(61,107,78,0.15) 0%, rgba(42,42,42,0.3) 50%, rgba(42,42,42,0.5) 100%),
    url('../photos/hero-exterieur.jpg') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  position: relative;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 100px;
  background: linear-gradient(to top, var(--creme), transparent);
}

/* AIRBNB BADGE */
.airbnb-badge {
  background: var(--blanc);
  color: var(--noir);
  border-radius: 14px;
  padding: 1rem 1.8rem;
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.8rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
  position: relative;
  z-index: 1;
}
.airbnb-badge-left {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.airbnb-badge-left .laurel {
  color: var(--noir);
  flex-shrink: 0;
}
.airbnb-badge-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.05rem;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
}
.airbnb-badge-sep {
  width: 1px;
  height: 36px;
  background: #ddd;
  flex-shrink: 0;
}
.airbnb-badge-desc {
  font-size: 0.78rem;
  line-height: 1.35;
  color: var(--texte-light);
  white-space: nowrap;
}
.airbnb-badge-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.airbnb-badge-number {
  font-weight: 700;
  font-size: 1.15rem;
}
.airbnb-badge-stars {
  font-size: 0.65rem;
  letter-spacing: 1px;
  color: var(--noir);
}
.airbnb-badge-label {
  font-size: 0.72rem;
  color: var(--texte-light);
}

.hero h1 {
  font-size: 3.6rem;
  margin-bottom: 1rem;
  text-shadow: 1px 2px 12px rgba(0,0,0,0.3);
}
.hero p {
  font-size: 1.2rem;
  font-weight: 300;
  max-width: 520px;
  margin-bottom: 2.5rem;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.25);
}
.hero .cta {
  background: var(--terra);
  color: #fff;
  padding: 0.9rem 2.8rem;
  border: none;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 18px rgba(194,90,60,0.35);
}
.hero .cta:hover {
  background: var(--terra-doux);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(194,90,60,0.45);
}

/* SECTIONS */
section {
  padding: 5rem 2rem;
}
section h2 {
  text-align: center;
  font-size: 2.8rem;
  color: var(--vert-fonce);
  margin-bottom: 0.3rem;
}
section .subtitle {
  text-align: center;
  color: var(--texte-light);
  margin-bottom: 2.5rem;
  font-size: 1rem;
  font-weight: 300;
}

/* SECTION COLOR BANDS */
#about {
  background: var(--menthe-pale);
  max-width: 100%;
  padding: 5rem 2rem;
}
#about > * { max-width: 1100px; margin-left: auto; margin-right: auto; }

#features {
  background: var(--terra-pale);
  max-width: 100%;
  padding: 5rem 2rem;
}
#features > * { max-width: 1100px; margin-left: auto; margin-right: auto; }

#gallery {
  background: var(--rose-pale);
  max-width: 100%;
  padding: 5rem 2rem;
}
#gallery > * { max-width: 1100px; margin-left: auto; margin-right: auto; }

#reviews {
  background: var(--menthe-pale);
  max-width: 100%;
  padding: 5rem 2rem;
}
#reviews > * { max-width: 1100px; margin-left: auto; margin-right: auto; }

#activities {
  background: var(--terra-pale);
  max-width: 100%;
  padding: 5rem 2rem;
}
#activities > * { max-width: 1100px; margin-left: auto; margin-right: auto; }

#location {
  background: var(--creme);
  max-width: 100%;
  padding: 5rem 2rem;
}
#location > * { max-width: 1100px; margin-left: auto; margin-right: auto; }

#pricing {
  background: var(--blanc);
  max-width: 100%;
  padding: 5rem 2rem;
}
#pricing > * { max-width: 1100px; margin-left: auto; margin-right: auto; }

#faq {
  background: var(--creme);
  max-width: 100%;
  padding: 5rem 2rem;
}
#faq > * { max-width: 1100px; margin-left: auto; margin-right: auto; }

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.about-grid img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 10px 40px var(--ombre-hover);
}
.about-text h3 {
  color: var(--terra);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}
.about-text p {
  color: var(--texte-light);
  margin-bottom: 1rem;
}

/* FEATURES */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}
.feature-card {
  background: var(--blanc);
  padding: 2rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: 0 3px 16px var(--ombre);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-bottom: 3px solid transparent;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px var(--ombre-hover);
  border-bottom-color: var(--menthe);
}
.feature-card .icon { font-size: 2.5rem; margin-bottom: 0.8rem; }
.feature-card h3 {
  color: var(--vert-fonce);
  margin-bottom: 0.4rem;
  font-size: 1.1rem;
}
.feature-card p { color: var(--texte-light); font-size: 0.9rem; }
.feature-card a { color: var(--terra); }

/* GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0.8rem;
}
.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.gallery-grid img:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 30px var(--ombre-hover);
}
.gallery-extra { display: none; }
.gallery-grid.show-all .gallery-extra { display: block; }
.btn-gallery-more {
  background: none;
  border: 2px solid var(--vert);
  color: var(--vert-fonce);
  padding: 0.7rem 2rem;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-gallery-more:hover {
  background: var(--menthe-pale);
  border-color: var(--vert-fonce);
}

/* LIGHTBOX */
.lightbox {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(42, 42, 42, 0.94);
  z-index: 2000;
  justify-content: center;
  align-items: center;
}
.lightbox.active { display: flex; }
.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  border-radius: var(--radius);
}
.lightbox .close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  color: var(--menthe);
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.3s;
}
.lightbox .close:hover { color: #fff; }
.lightbox .nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--menthe);
  font-size: 3rem;
  cursor: pointer;
  user-select: none;
  padding: 1rem;
  transition: color 0.3s;
}
.lightbox .nav-arrow:hover { color: #fff; }
.lightbox .nav-arrow.prev { left: 1rem; }
.lightbox .nav-arrow.next { right: 1rem; }

/* ACTIVITY HIGHLIGHT */
.activity-highlight {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: var(--blanc);
  border-radius: var(--radius);
  box-shadow: 0 4px 20px var(--ombre);
  padding: 2rem;
  border-left: 4px solid var(--vert);
  margin-bottom: 1rem;
}
.activity-highlight-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}
.activity-highlight-content h3 {
  color: var(--vert-fonce);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}
.activity-highlight-content h3 a {
  color: var(--terra);
  text-decoration: none;
}
.activity-highlight-content h3 a:hover { text-decoration: underline; }
.activity-highlight-content p {
  color: var(--texte-light);
  margin-bottom: 0.5rem;
  font-size: 0.92rem;
}
.activity-highlight-content a {
  color: var(--terra);
}
@media (max-width: 768px) {
  .activity-highlight {
    flex-direction: column;
    gap: 0.8rem;
  }
}

/* PRICING */
.pricing-section {
  background: linear-gradient(135deg, var(--menthe-pale) 0%, var(--rose-pale) 100%);
  border-radius: 20px;
  padding: 3rem;
}
.pricing-cards {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.price-card {
  background: var(--blanc);
  padding: 2rem 1.8rem;
  border-radius: var(--radius);
  box-shadow: 0 4px 18px var(--ombre);
  text-align: center;
  min-width: 200px;
  flex: 1;
  max-width: 240px;
}
.price-card .amount {
  font-family: 'DM Serif Display', serif;
  font-size: 2.6rem;
  color: var(--vert);
}
.price-card .unit {
  color: var(--texte-light);
  margin-bottom: 0.8rem;
  font-weight: 500;
}
.price-card .details {
  color: var(--texte-light);
  font-size: 0.85rem;
}
.pricing-discounts {
  text-align: center;
  margin-top: 1.5rem;
  color: var(--texte-light);
  font-size: 0.92rem;
  line-height: 1.8;
}

/* CALENDAR / BOOKING */
#booking {
  background: var(--blanc);
  padding: 5rem 2rem;
  max-width: 100%;
}
#booking .container { max-width: 1100px; margin: 0 auto; }

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

.calendar-container {
  background: var(--creme);
  border-radius: var(--radius);
  box-shadow: 0 3px 18px var(--ombre);
  padding: 1.5rem;
}
.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.calendar-header h3 {
  color: var(--vert-fonce);
  font-size: 1.15rem;
}
.calendar-header button {
  background: var(--vert);
  color: white;
  border: none;
  width: 34px; height: 34px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s;
}
.calendar-header button:hover { background: var(--vert-fonce); }
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}
.calendar-grid .day-name {
  text-align: center;
  font-weight: 600;
  color: var(--vert);
  font-size: 0.82rem;
  padding: 0.5rem 0;
}
.calendar-grid .day {
  text-align: center;
  padding: 0.55rem 0;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.88rem;
  transition: background 0.2s;
}
.calendar-grid .day:hover:not(.unavailable):not(.empty) {
  background: var(--menthe-pale);
}
.calendar-grid .day.empty { cursor: default; }
.calendar-grid .day.unavailable {
  color: #ccc;
  text-decoration: line-through;
  cursor: not-allowed;
}
.calendar-grid .day.selected {
  background: var(--terra);
  color: white;
  font-weight: 600;
}
.calendar-grid .day.in-range {
  background: var(--terra-pale);
  color: var(--texte);
}
.calendar-grid .day.today {
  border: 2px solid var(--terra);
}

/* BOOKING FORM */
.booking-form {
  background: var(--creme);
  border-radius: var(--radius);
  box-shadow: 0 3px 18px var(--ombre);
  padding: 2rem;
}
.booking-form h3 {
  color: var(--vert-fonce);
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}
.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--texte);
  font-weight: 500;
  font-size: 0.9rem;
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: 'DM Sans', sans-serif;
  background: var(--blanc);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--vert);
  box-shadow: 0 0 0 3px rgba(61,107,78,0.12);
}
.date-display {
  background: linear-gradient(135deg, var(--menthe-pale), var(--rose-pale));
  padding: 1.1rem;
  border-radius: 10px;
  margin-bottom: 1.1rem;
}
.date-display p {
  font-size: 0.92rem;
  color: var(--vert-fonce);
}
.date-display .total {
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem;
  color: var(--terra);
  margin-top: 0.4rem;
}

.payment-methods {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.1rem;
}
.payment-method {
  flex: 1;
  padding: 0.7rem;
  border: 2px solid #ddd;
  border-radius: 10px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.88rem;
  background: var(--blanc);
}
.payment-method.active {
  border-color: var(--terra);
  background: var(--terra-pale);
}
.payment-method:hover { border-color: var(--terra-doux); }

.btn-book {
  width: 100%;
  padding: 0.9rem;
  background: var(--terra);
  color: white;
  border: none;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(194,90,60,0.25);
}
.btn-book:hover {
  background: var(--terra-doux);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(194,90,60,0.35);
}
.btn-book:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* MAP */
.map-container {
  width: 100%;
  height: 400px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 6px 24px var(--ombre);
}

/* REVIEWS */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
}
.review-card {
  background: var(--blanc);
  padding: 1.8rem;
  border-radius: var(--radius);
  box-shadow: 0 3px 16px var(--ombre);
  border-left: 4px solid var(--menthe);
}
.review-card .stars { color: var(--terra); margin-bottom: 0.6rem; font-size: 1rem; letter-spacing: 2px; }
.review-card p { color: var(--texte-light); font-style: italic; margin-bottom: 0.6rem; line-height: 1.7; }
.review-card .author { color: var(--vert); font-weight: 600; font-size: 0.88rem; }

/* FOOTER */
footer {
  background: var(--vert-fonce);
  color: rgba(255,255,255,0.7);
  padding: 2.5rem 2rem;
  text-align: center;
}
footer a {
  color: var(--menthe);
  text-decoration: none;
  transition: color 0.3s;
}
footer a:hover { color: var(--rose); }
footer .footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
footer .copy { font-size: 0.82rem; color: rgba(255,255,255,0.4); }

/* FAQ */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  background: var(--blanc);
  border-radius: 10px;
  box-shadow: 0 2px 12px var(--ombre);
  margin-bottom: 0.6rem;
  overflow: hidden;
}
.faq-item summary {
  padding: 1.1rem 1.4rem;
  cursor: pointer;
  font-weight: 500;
  color: var(--vert-fonce);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s;
}
.faq-item summary:hover { color: var(--terra); }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--terra);
  transition: transform 0.3s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p {
  padding: 0 1.4rem 1.1rem;
  color: var(--texte-light);
  line-height: 1.8;
}
.faq-item a { color: var(--terra); }

/* CONTACT */
#contact {
  background: var(--menthe-pale);
  max-width: 100%;
  padding: 5rem 2rem;
}
#contact > * { max-width: 1100px; margin-left: auto; margin-right: auto; }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
.contact-info h3 {
  color: var(--vert-fonce);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}
.contact-info p {
  color: var(--texte-light);
  margin-bottom: 1rem;
  line-height: 1.6;
}
.contact-info a {
  color: var(--terra);
  text-decoration: none;
}
.contact-info a:hover { text-decoration: underline; }
.contact-form {
  background: var(--blanc);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: 0 3px 18px var(--ombre);
}
.contact-form textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: 'DM Sans', sans-serif;
  resize: vertical;
}
.contact-form textarea:focus {
  outline: none;
  border-color: var(--vert);
  box-shadow: 0 0 0 3px rgba(61,107,78,0.12);
}
@media (max-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--vert-fonce);
  color: #fff;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  z-index: 2000;
  font-size: 0.88rem;
  flex-wrap: wrap;
}
.cookie-banner a { color: var(--menthe); }
.cookie-buttons { display: flex; gap: 0.5rem; }
.cookie-buttons button {
  padding: 0.5rem 1.2rem;
  border: none;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  background: var(--terra);
  color: #fff;
}
.cookie-buttons .cookie-refuse {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.4);
  color: rgba(255,255,255,0.8);
}

/* HAMBURGER */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--menthe);
  margin: 6px 0;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 7px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -7px); }

/* RESPONSIVE */
@media (max-width: 768px) {
  .hamburger { display: block; }
  nav { padding: 0 1.2rem; }
  nav .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 68px; left: 0; width: 100%;
    background: rgba(44, 79, 57, 0.97);
    padding: 0.8rem 0;
    gap: 0;
  }
  nav .nav-links.active { display: flex; }
  nav .nav-links li { text-align: center; padding: 0.7rem 0; }
  nav .nav-links a::after { display: none; }
  .airbnb-badge {
    padding: 0.7rem 1rem;
    gap: 0.7rem;
  }
  .airbnb-badge-title { font-size: 0.85rem; }
  .airbnb-badge-desc { display: none; }
  .airbnb-badge-number { font-size: 1rem; }
  .airbnb-badge-sep { height: 28px; }
  .airbnb-badge-left .laurel { width: 20px; height: 20px; }
  .hero h1 { font-size: 2.2rem; }
  .hero p { font-size: 1rem; padding: 0 1.2rem; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .booking-layout { grid-template-columns: 1fr; }
  .pricing-cards { flex-direction: column; align-items: center; }
  .price-card { max-width: 100%; }
  section { padding: 3rem 1.2rem; }
  section h2 { font-size: 2rem; }
  .payment-methods { flex-direction: column; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 0.5rem; }
  .gallery-grid img { height: 180px; }
  .features { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .map-container { height: 280px; }
  .pricing-section { padding: 1.5rem; }
  .activity-highlight { padding: 1.5rem; }
  .contact-layout { grid-template-columns: 1fr; gap: 2rem; }
}

/* MODAL */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(42,42,42,0.55);
  z-index: 3000;
  justify-content: center;
  align-items: center;
}
.modal-overlay.active { display: flex; }
.modal {
  background: white;
  border-radius: 18px;
  padding: 2.5rem;
  max-width: 480px;
  width: 90%;
  text-align: center;
}
.modal h3 {
  font-family: 'DM Serif Display', serif;
  color: var(--vert-fonce);
  margin-bottom: 1rem;
}
.modal .checkmark {
  font-size: 3.5rem;
  color: var(--vert);
  margin-bottom: 1rem;
}
.modal p { color: var(--texte-light); margin-bottom: 1.5rem; }
.modal button {
  background: var(--terra);
  color: white;
  border: none;
  padding: 0.7rem 2.2rem;
  border-radius: 50px;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  transition: background 0.3s;
}
.modal button:hover { background: var(--terra-doux); }
