:root {
  --orange: #d97706;
  --orange-dark: #b85f04;
  --green: #2f6b3f;
  --green-dark: #214f2d;
  --wood: #6b3f24;
  --wood-dark: #3f291d;
  --cream: #fffaf0;
  --sand: #f4ead8;
  --linen: #fbf7ee;
  --white: #ffffff;
  --ink: #1f2933;
  --muted: #667085;
  --line: #e5d9c7;
  --shadow: 0 18px 45px rgba(47, 43, 37, 0.12);
  --shadow-strong: 0 25px 60px rgba(20, 29, 22, 0.25);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
}

body.no-scroll {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0 0 1rem;
}

h1,
h2,
h3 {
  margin: 0 0 1rem;
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: var(--wood-dark);
}

h1 {
  font-size: clamp(3.2rem, 4vw, 7.5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

h3 {
  font-size: 1.28rem;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  color: var(--white);
  background: var(--green);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 18px 24px auto;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: min(1240px, calc(100% - 32px));
  margin-inline: auto;
  padding: 12px 14px 12px 18px;
  background: rgba(255, 250, 240, 0.94);
  border: 1px solid rgba(229, 217, 199, 0.85);
  border-radius: 999px;
  box-shadow: 0 12px 35px rgba(34, 28, 22, 0.12);
  backdrop-filter: blur(16px);
}

.site-header.scrolled {
  background: rgba(255, 250, 240, 0.98);
  box-shadow: 0 14px 42px rgba(34, 28, 22, 0.18);
}

.header-logo {
  height: clamp(42px, 6vw, 72px);
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  font-weight: 900;
  letter-spacing: -0.08em;
  box-shadow: inset 0 -4px 0 rgba(0, 0, 0, 0.14);
}

.brand strong {
  display: block;
  font-size: 1rem;
  line-height: 1.05;
  color: var(--wood-dark);
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a {
  padding: 12px 14px;
  border-radius: 999px;
  color: var(--wood-dark);
  font-size: 0.94rem;
  font-weight: 750;
  transition: 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--green-dark);
  background: rgba(47, 107, 63, 0.1);
}

.main-nav .nav-cta {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 10px 22px rgba(217, 119, 6, 0.25);
}

.main-nav .nav-cta:hover {
  color: var(--white);
  background: var(--orange-dark);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--green);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(4) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 76vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  align-items: end;
  gap: 28px;
  padding: 160px max(24px, calc((100vw - var(--max-width)) / 2)) 68px;
  color: var(--white);
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(13, 18, 14, 0.48);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 36%;
  background: rgba(10, 15, 12, 0.28);
  pointer-events: none;
}

.hero--home {
  background-image: linear-gradient(rgba(10, 17, 12, 0.35), rgba(10, 17, 12, 0.56)), url("../img/home/header.jpg");
}

.hero--history {
  background-image: linear-gradient(rgba(10, 17, 12, 0.35), rgba(10, 17, 12, 0.58)), url("../img/histoire/before_after.png");
}

.hero--reservation {
  background-image: linear-gradient(rgba(10, 17, 12, 0.35), rgba(10, 17, 12, 0.58)), url("../img/reservation/header.webp");
}

.hero--activities {
  background-image: linear-gradient(rgba(10, 17, 12, 0.35), rgba(10, 17, 12, 0.6)), url("../img/vehicule/header.jpg");
}

.inner-hero {
  min-height: 68vh;
  grid-template-columns: minmax(0, 1000px);
}

.hero-content,
.hero-panel {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 930px;
}

.hero-content h1,
.hero-content h2 {
  color: var(--white);
  text-shadow: 0 6px 20px rgba(0, 0, 0, 0.28);
}

.hero-lead {
  max-width: 720px;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  color: rgba(255, 255, 255, 0.92);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-panel {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  background: rgba(31, 41, 51, 0.58);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(16px);
}

.hero-panel strong {
  display: block;
  margin-bottom: 12px;
  font-size: 1.35rem;
  line-height: 1.25;
}

.hero-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.panel-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero .eyebrow,
.eyebrow-light {
  color: #f7b45a;
}

.panel-kicker::before,
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 850;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 14px 28px rgba(217, 119, 6, 0.24);
}

.btn-primary:hover {
  background: var(--orange-dark);
  box-shadow: 0 18px 36px rgba(217, 119, 6, 0.3);
}

.btn-secondary {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 14px 28px rgba(47, 107, 63, 0.2);
}

.btn-secondary:hover {
  background: var(--green-dark);
}

.btn-light {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.36);
  backdrop-filter: blur(8px);
}

.btn-light:hover {
  background: rgba(255, 255, 255, 0.22);
}

.btn-wide {
  width: 100%;
}

.section {
  max-width: var(--max-width);
  margin-inline: auto;
  padding: 96px 24px;
}

.section-soft {
  max-width: none;
  padding-inline: max(24px, calc((100vw - var(--max-width)) / 2));
  background: var(--linen);
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading p:last-child,
.section-copy p:last-child {
  margin-bottom: 0;
}

.intro-grid,
.split-section,
.form-section,
.mission-vision,
.location-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  align-items: center;
  gap: 54px;
}

.split-section--reverse {
  grid-template-columns: minmax(300px, 0.95fr) minmax(0, 1.05fr);
}

.split-section--reverse .image-card {
  order: 2;
}

.section-copy {
  max-width: 640px;
}

.stats-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}

.stats-card div {
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 22px;
  border-radius: var(--radius-md);
  background: var(--sand);
}

.stats-card strong {
  color: var(--green);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.stats-card span {
  color: var(--wood);
  font-weight: 780;
}

.card-grid,
.service-grid,
.testimonial-grid,
.package-row,
.value-grid,
.vehicle-grid,
.pricing-grid {
  display: grid;
  gap: 22px;
}

.service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card,
.testimonial-card,
.package-card,
.value-card,
.large-card,
.contact-card,
.booking-form,
.activity-list,
.pricing-card,
.vehicle-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow);
}

.feature-card {
  padding: 26px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
}

.feature-card:hover,
.vehicle-card:hover,
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 52px rgba(47, 43, 37, 0.16);
}

.feature-card,
.vehicle-card,
.pricing-card {
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.card-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: rgba(47, 107, 63, 0.1);
  color: var(--green);
  font-size: 1.8rem;
}

.feature-card h3,
.value-card h3,
.package-card h3 {
  color: var(--green-dark);
}

.feature-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.image-card {
  min-height: 520px;
  border: 10px solid var(--white);
  border-radius: var(--radius-lg);
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow-strong);
}

.image-card--lodge {
  background-image: linear-gradient(rgba(42, 29, 18, 0.06), rgba(42, 29, 18, 0.2)), url("../img/home/relaxe.jpeg");
}

.image-card--forest {
  background-image: linear-gradient(rgba(42, 29, 18, 0.06), rgba(42, 29, 18, 0.2)), url("../img/histoire/foret.jpeg");
}

.check-list,
.mini-list,
.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 24px 0;
}

.check-list li {
  position: relative;
  padding-left: 36px;
  color: var(--wood-dark);
  font-weight: 650;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  font-size: 0.85rem;
  font-weight: 900;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange-dark);
  font-weight: 900;
}

.text-link::after {
  content: "→";
  transition: transform 0.2s ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

.section-forest {
  max-width: none;
  padding-inline: max(24px, calc((100vw - var(--max-width)) / 2));
  color: rgba(255, 255, 255, 0.88);
  background: var(--green-dark);
}

.section-forest h2,
.section-forest h3 {
  color: var(--white);
}

.section-forest .section-heading p:last-child {
  color: rgba(255, 255, 255, 0.78);
}

.package-row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.package-card,
.value-card {
  padding: 26px;
}

.package-card,
.value-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.package-card p,
.value-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.testimonial-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.testimonial-card {
  padding: 28px;
}

.testimonial-card p {
  color: var(--wood-dark);
  font-size: 1.02rem;
}

.testimonial-card strong {
  display: block;
  color: var(--green-dark);
}

.testimonial-card span {
  color: var(--muted);
  font-size: 0.9rem;
}

.map-card {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(rgba(255, 250, 240, 0.7), rgba(255, 250, 240, 0.7)),
    url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%232f6b3f' stroke-opacity='0.18' stroke-width='2'%3E%3Cpath d='M0 20 C30 35 55 5 120 20'/%3E%3Cpath d='M0 60 C35 80 70 42 120 62'/%3E%3Cpath d='M0 98 C35 118 72 82 120 100'/%3E%3C/g%3E%3C/svg%3E");
  box-shadow: var(--shadow);
}

.map-card::before,
.map-card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(47, 107, 63, 0.12);
}

.map-card::before {
  width: 280px;
  height: 280px;
}

.map-card::after {
  width: 160px;
  height: 160px;
  background: rgba(217, 119, 6, 0.13);
}

.map-card>* {
  position: relative;
  z-index: 2;
}

.map-pin {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin-bottom: 12px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-size: 2rem;
  box-shadow: 0 16px 32px rgba(217, 119, 6, 0.24);
}

.map-card strong {
  display: block;
  color: var(--green-dark);
  font-size: 1.4rem;
}

.map-card span {
  color: var(--wood);
  font-weight: 750;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 80px;
  padding: 40px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background: var(--green-dark);
  box-shadow: var(--shadow-strong);
}

.cta-band h2,
.cta-band a:not(.btn) {
  color: var(--white);
}

.cta-band p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
}

.photo-stack {
  position: relative;
  min-height: 520px;
}

.old-photo {
  position: absolute;
  display: flex;
  align-items: flex-end;
  width: 78%;
  min-height: 340px;
  padding: 24px;
  border: 10px solid var(--white);
  border-radius: var(--radius-md);
  background: var(--sand);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-strong);
  overflow: hidden;
}

.old-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(53, 35, 19, 0.18);
}

.old-photo span {
  position: relative;
  z-index: 2;
  display: inline-flex;
  padding: 8px 12px;
  color: var(--white);
  background: rgba(33, 79, 45, 0.88);
  border-radius: 999px;
  font-weight: 800;
}

.old-photo-one {
  top: 0;
  left: 0;
  background-image: url("../img/histoire/image-2.png");
}

.old-photo-two {
  right: 0;
  bottom: 0;
  background-image: url("../img/histoire/histoire.gif");
}

.timeline {
  position: relative;
  display: grid;
  gap: 20px;
  max-width: 900px;
  margin-inline: auto;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 112px;
  top: 8px;
  bottom: 8px;
  width: 3px;
  background: rgba(47, 107, 63, 0.2);
  border-radius: 999px;
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 26px;
  align-items: start;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow);
}

.timeline-year {
  position: relative;
  z-index: 2;
  display: inline-flex;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--white);
  background: var(--green);
  font-weight: 900;
}

.timeline-item p {
  margin-bottom: 0;
  color: var(--muted);
}

.value-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mission-vision {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.large-card {
  min-height: 360px;
  padding: 34px;
}

.large-card p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.pricing-card {
  position: relative;
  overflow: hidden;
}

.pricing-card.featured {
  border-color: rgba(217, 119, 6, 0.45);
}

.pricing-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--white);
  background: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pricing-image,
.vehicle-image {
  min-height: 250px;
  max-height: 250px;
  background-color: var(--sand);
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

.img-cover {
  object-fit: fill;
  min-width: 445px;
}

.pricing-room {
  background-image: linear-gradient(rgba(47, 32, 21, 0.08), rgba(47, 32, 21, 0.16)), url("../img/reservation/room.webp");
}

.pricing-cabin-meal {
  background-image: linear-gradient(rgba(47, 32, 21, 0.08), rgba(47, 32, 21, 0.16)), url("../img/reservation/chalet-4a8/image5.jpg");
}

.pricing-cabin {
  background-image: linear-gradient(rgba(47, 32, 21, 0.08), rgba(47, 32, 21, 0.16)), url("../img/reservation/chalet-2a4/image5.jpg");
}

.pricing-content,
.vehicle-content {
  padding: 26px;
}

.mini-list {
  display: grid;
  gap: 8px;
  margin: 20px 0;
}

.mini-list li {
  color: var(--wood);
  font-weight: 720;
}

.mini-list li::before {
  content: "•";
  margin-right: 8px;
  color: var(--green);
  font-weight: 900;
}

.price,
.vehicle-price {
  display: flex;
  align-items: end;
  gap: 8px;
  margin: 22px 0;
  color: var(--green-dark);
}

.price strong,
.vehicle-price {
  font-size: 2.4rem;
  line-height: 1;
  font-weight: 950;
}

.price span,
.vehicle-price span {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 750;
}

.rate-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow);
}

.rate-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

.rate-table caption {
  padding: 18px;
  color: var(--muted);
  text-align: left;
  font-size: 0.95rem;
}

.rate-table th,
.rate-table td {
  padding: 18px 20px;
  border-top: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.rate-table th {
  color: var(--white);
  background: var(--green);
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rate-table td:last-child {
  color: var(--orange-dark);
  font-weight: 900;
}

.form-section {
  align-items: start;
}

.form-aside {
  position: sticky;
  top: 120px;
}

.contact-card {
  margin-top: 26px;
  padding: 26px;
  background: var(--white);
}

.contact-card h3 {
  color: var(--green-dark);
}

.contact-card p:last-child {
  margin-bottom: 0;
}

.booking-form {
  padding: 30px;
}

.form-row {
  margin-bottom: 18px;
}

.two-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

label {
  display: block;
  margin-bottom: 8px;
  color: var(--wood-dark);
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid #d8cab7;
  border-radius: 14px;
  color: var(--ink);
  background: var(--cream);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(47, 107, 63, 0.12);
}

input.is-invalid,
select.is-invalid,
textarea.is-invalid {
  border-color: #c2410c;
  box-shadow: 0 0 0 4px rgba(194, 65, 12, 0.12);
}

.form-error {
  display: block;
  min-height: 18px;
  margin-top: 6px;
  color: #b42318;
  font-size: 0.85rem;
  font-weight: 720;
}

.form-status {
  display: none;
  margin: 18px 0 0;
  padding: 14px 16px;
  border-radius: 14px;
  font-weight: 800;
}

.form-status.success {
  display: block;
  color: #14532d;
  background: #dcfce7;
}

.form-status.error {
  display: block;
  color: #7f1d1d;
  background: #fee2e2;
}

.activity-list {
  padding: 18px;
}

.activity-list article {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 16px;
  padding: 18px;
  border-radius: 18px;
}

.activity-list article+article {
  border-top: 1px solid var(--line);
}

.activity-list span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(217, 119, 6, 0.12);
  font-size: 1.6rem;
}

.activity-list h3 {
  color: var(--green-dark);
  margin-bottom: 6px;
}

.activity-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.category-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin: 50px 0 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid rgba(47, 107, 63, 0.16);
}

.category-title:first-of-type {
  margin-top: 0;
}

.category-title h3 {
  margin: 0;
  color: var(--green-dark);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
}

.category-title span {
  color: var(--orange-dark);
  font-weight: 850;
}

.vehicle-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.vehicle-card {
  overflow: hidden;
}

.vehicle-card .btn {
  width: 100%;
}

.vehicle-snow {
  background-image: linear-gradient(rgba(47, 32, 21, 0.06), rgba(47, 32, 21, 0.14)), url("https://images.unsplash.com/photo-1548777123-e216912df7d8?auto=format&fit=crop&w=900&q=82");
}

.vehicle-mountain {
  background-image: linear-gradient(rgba(47, 32, 21, 0.06), rgba(47, 32, 21, 0.14)), url("https://images.unsplash.com/photo-1549880338-65ddcdfd017b?auto=format&fit=crop&w=900&q=82");
}

.vehicle-bike {
  background-image: linear-gradient(rgba(47, 32, 21, 0.06), rgba(47, 32, 21, 0.14)), url("https://images.unsplash.com/photo-1519681393784-d120267933ba?auto=format&fit=crop&w=900&q=82");
}

.vehicle-atv,
.vehicle-side,
.vehicle-brush {
  background-image: linear-gradient(rgba(47, 32, 21, 0.06), rgba(47, 32, 21, 0.14)), url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=900&q=82");
}

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background: var(--wood-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 0.8fr;
  gap: 34px;
  max-width: var(--max-width);
  margin-inline: auto;
  padding: 64px 24px 38px;
}

.site-footer h3,
.site-footer strong {
  color: var(--white);
}

.site-footer a {
  color: rgba(255, 255, 255, 0.88);
}

.site-footer a:hover {
  color: #f7b45a;
}

.brand-footer .brand-mark {
  background: var(--orange);
}

.brand-footer small {
  color: rgba(255, 255, 255, 0.68);
}

.footer-links {
  display: grid;
  gap: 8px;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 900;
}

.footer-bottom {
  max-width: var(--max-width);
  margin-inline: auto;
  padding: 22px 24px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.92rem;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.footer-bottom a:hover {
  color: #fff;
}

/* Mobile */
@media (max-width: 640px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {

  .service-grid,
  .testimonial-grid,
  .package-row,
  .value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-grid,
  .vehicle-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .site-header {
    inset: 12px 12px auto;
    padding: 10px 12px;
    gap: 12px;
  }

  .header-logo {
    height: clamp(38px, 12vw, 58px);
    max-width: 140px;
  }

  .nav-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .main-nav {
    position: fixed;
    top: 86px;
    left: 12px;
    right: 12px;
    display: grid;
    gap: 8px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: var(--cream);
    box-shadow: var(--shadow-strong);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.22s ease;
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .main-nav a {
    width: 100%;
    padding: 14px 16px;
  }

  .hero,
  .inner-hero {
    grid-template-columns: 1fr;
    min-height: 78vh;
    padding-top: 140px;
  }

  .hero-panel {
    max-width: 560px;
  }

  .intro-grid,
  .split-section,
  .split-section--reverse,
  .form-section,
  .mission-vision,
  .location-section {
    grid-template-columns: 1fr;
  }

  .split-section--reverse .image-card {
    order: initial;
  }

  .form-aside {
    position: static;
  }

  .cta-band {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  h1 {
    font-size: clamp(2.6rem, 16vw, 4.4rem);
  }

  .brand strong {
    font-size: 0.92rem;
  }

  .brand small {
    font-size: 0.68rem;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .section {
    padding: 72px 18px;
  }

  .section-soft,
  .section-forest {
    padding-inline: 18px;
  }

  .service-grid,
  .testimonial-grid,
  .package-row,
  .value-grid,
  .pricing-grid,
  .vehicle-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stats-card {
    grid-template-columns: 1fr;
  }

  .image-card,
  .photo-stack {
    min-height: 380px;
  }

  .old-photo {
    width: 86%;
    min-height: 260px;
    border-width: 8px;
  }

  .timeline::before {
    left: 31px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-left: 56px;
  }

  .timeline-year {
    justify-self: start;
  }

  .two-columns {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .category-title {
    align-items: start;
    flex-direction: column;
  }

  .booking-form,
  .large-card,
  .contact-card,
  .cta-band {
    padding: 24px;
  }

  .footer-grid {
    padding-top: 52px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}


/* FOREST CREATIVE UPDATE - ambiance plus forestière, originale et légèrement loufoque */
body {
  background-color: var(--cream);
  background-image:
    url("data:image/svg+xml,%3Csvg width='180' height='180' viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%232f6b3f' stroke-opacity='0.055' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M34 142 L55 98 L76 142 M55 98 L55 156'/%3E%3Cpath d='M112 72 L130 34 L148 72 M130 34 L130 86'/%3E%3Cpath d='M28 42 C48 55 63 18 82 34'/%3E%3Cpath d='M96 142 C124 158 139 120 164 138'/%3E%3C/g%3E%3Cg fill='%23d97706' fill-opacity='0.075'%3E%3Ccircle cx='25' cy='95' r='3'/%3E%3Ccircle cx='160' cy='48' r='2.5'/%3E%3C/g%3E%3C/svg%3E");
}

.site-header::before {
  content: "";
  position: absolute;
  inset: -7px;
  z-index: -1;
  border-radius: 999px;
  border: 1px dashed rgba(47, 107, 63, 0.25);
  pointer-events: none;
}

.brand-mark {
  position: relative;
}

.brand-mark::after {
  content: "🌲";
  position: absolute;
  right: -10px;
  bottom: -8px;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--cream);
  font-size: 0.85rem;
  letter-spacing: 0;
  box-shadow: 0 6px 16px rgba(34, 28, 22, 0.16);
}

.hero {
  isolation: isolate;
}

.hero-content::after {
  content: "";
  position: absolute;
  left: -28px;
  bottom: -30px;
  width: 190px;
  height: 190px;
  z-index: -1;
  opacity: 0.22;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='white' stroke-width='8' stroke-linecap='round' stroke-linejoin='round' opacity='.95'%3E%3Cpath d='M100 16 L132 72 H112 L146 126 H120 L154 184 H46 L80 126 H54 L88 72 H68 Z'/%3E%3Cpath d='M100 126 V184'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
  pointer-events: none;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-tags span,
.vehicle-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  color: var(--white);
  background: rgba(47, 107, 63, 0.78);
  font-size: 0.9rem;
  font-weight: 850;
  backdrop-filter: blur(8px);
}

.whisper-box {
  margin-top: 18px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: rgba(255, 250, 240, 0.12);
}

.whisper-box span {
  display: inline-flex;
  margin-bottom: 8px;
  color: #f7b45a;
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.forest-whisper {
  margin: 0 !important;
  min-height: 48px;
  color: rgba(255, 255, 255, 0.92) !important;
  font-weight: 760;
}

.forest-note {
  position: relative;
  margin-top: 20px;
  padding: 18px 18px 18px 56px;
  border: 1px solid rgba(47, 107, 63, 0.18);
  border-radius: 18px;
  color: var(--wood-dark);
  background: rgba(47, 107, 63, 0.075);
  font-weight: 730;
}

.forest-note::before {
  content: "🌿";
  position: absolute;
  left: 18px;
  top: 16px;
  font-size: 1.35rem;
}

.forest-note.centered {
  max-width: 760px;
  margin-inline: auto;
  text-align: left;
}

.stats-card {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mascot-section {
  display: grid;
  gap: 26px;
}

.mascot-card {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding: 34px;
  border: 1px solid rgba(47, 107, 63, 0.18);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}

.mascot-face {
  display: grid;
  place-items: center;
  width: 130px;
  height: 130px;
  border-radius: 38% 62% 48% 52%;
  background: var(--sand);
  font-size: 4.6rem;
  box-shadow: inset 0 -12px 0 rgba(107, 63, 36, 0.08), 0 18px 38px rgba(47, 43, 37, 0.12);
  animation: mascotWobble 6s ease-in-out infinite;
}

@keyframes mascotWobble {

  0%,
  100% {
    transform: rotate(-2deg) translateY(0);
  }

  50% {
    transform: rotate(2deg) translateY(-5px);
  }
}

.forest-rules,
.ledger-grid,
.perk-grid,
.trail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.forest-rules article,
.ledger-card,
.perk-card,
.trail-card {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow);
}

.forest-rules article::after,
.ledger-card::after,
.perk-card::after,
.trail-card::after,
.feature-card::after,
.vehicle-card::after,
.pricing-card::after,
.testimonial-card::after {
  content: "";
  position: absolute;
  right: -24px;
  top: -24px;
  width: 90px;
  height: 90px;
  opacity: 0.08;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon fill='%232f6b3f' points='50,5 20,45 33,45 15,70 35,70 25,95 75,95 65,70 85,70 67,45 80,45'/%3E%3Crect fill='%235a3a1a' x='44' y='88' width='12' height='12'/%3E%3C/svg%3E") center / contain no-repeat;
}

.forest-rules span,
.ledger-card span,
.perk-card span,
.trail-card span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 16px;
  border-radius: 18px;
  background: rgba(217, 119, 6, 0.12);
  font-size: 1.8rem;
}

.forest-rules strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green-dark);
  font-size: 1.12rem;
}

.forest-rules p,
.ledger-card p,
.perk-card p,
.trail-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.quirky-card {
  border-color: rgba(217, 119, 6, 0.28);
  background: #fffdf7;
}

.section-forest {
  position: relative;
  overflow: hidden;
}

.section-forest::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.16;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='white' stroke-opacity='.45' stroke-width='2'%3E%3Cpath d='M16 102 L36 62 L56 102 M36 62 L36 112'/%3E%3Cpath d='M72 72 L90 34 L108 72 M90 34 L90 84'/%3E%3C/g%3E%3C/svg%3E");
}

.section-forest>* {
  position: relative;
  z-index: 1;
}

.package-card,
.value-card,
.trail-card {
  backdrop-filter: blur(4px);
}

.trail-card h3,
.trail-card p {
  color: var(--white);
}

.trail-card {
  border-color: rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.trail-card span {
  background: rgba(255, 255, 255, 0.1);
}

.map-joke {
  display: block;
  max-width: 310px;
  margin-top: 12px;
  color: var(--muted);
  font-weight: 700;
}

.timeline-quirk {
  border-color: rgba(217, 119, 6, 0.28);
}

.forest-ledger {
  max-width: none;
  padding-inline: max(24px, calc((100vw - var(--max-width)) / 2));
}

.vehicle-badge {
  margin-bottom: 14px;
  color: var(--green-dark);
  border-color: rgba(47, 107, 63, 0.16);
  background: rgba(47, 107, 63, 0.08);
  backdrop-filter: none;
}

.forest-mascot {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 990;
  display: flex;
  align-items: center;
  gap: 10px;
  pointer-events: none;
}

.mascot-emoji {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  font-size: 2rem;
}

.mascot-bubble {
  max-width: 210px;
  padding: 10px 13px;
  border-radius: 18px 18px 4px 18px;
  color: var(--wood-dark);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  font-size: 0.82rem;
  font-weight: 820;
  opacity: 0;
  transform: translateX(8px);
  transition: 0.25s ease;
}

.forest-mascot:hover .mascot-bubble,
.forest-mascot.is-awake .mascot-bubble {
  opacity: 1;
  transform: translateX(0);
}

.form-status.success::before {
  content: "🫎 ";
}

@media (max-width: 1100px) {

  .forest-rules,
  .ledger-grid,
  .perk-grid,
  .trail-grid {
    grid-template-columns: 1fr;
  }
}

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

  .forest-mascot {
    right: 14px;
    bottom: 14px;
  }

  .mascot-bubble {
    display: none;
  }
}

@media (max-width: 680px) {
  .hero-tags span {
    font-size: 0.82rem;
  }

  .mascot-face {
    width: 110px;
    height: 110px;
    font-size: 3.8rem;
  }

  .forest-mascot {
    display: none;
  }

  .stats-card {
    grid-template-columns: 1fr;
  }
}


/* ENCORE PLUS FORESTIER — détails créatifs, rustiques et loufoques */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.28;
  background-image:
    radial-gradient(circle at 14% 18%, rgba(47, 107, 63, 0.10) 0 2px, transparent 2px),
    radial-gradient(circle at 84% 24%, rgba(107, 63, 36, 0.08) 0 2px, transparent 2px),
    url("data:image/svg+xml,%3Csvg width='160' height='160' viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%232f6b3f' stroke-opacity='.07' stroke-width='2'%3E%3Cpath d='M28 132 L54 76 L80 132 M54 76 L54 144'/%3E%3Cpath d='M92 104 L116 52 L140 104 M116 52 L116 126'/%3E%3C/g%3E%3C/svg%3E");
}

.forest-atmosphere {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.forest-atmosphere span {
  position: absolute;
  top: -42px;
  color: var(--green);
  opacity: 0.22;
  font-size: 1.2rem;
  animation: floatForestBit 18s linear infinite;
}

.forest-atmosphere span:nth-child(1) {
  left: 8%;
  animation-delay: 0s;
  animation-duration: 22s;
}

.forest-atmosphere span:nth-child(2) {
  left: 24%;
  animation-delay: 5s;
  animation-duration: 18s;
}

.forest-atmosphere span:nth-child(3) {
  left: 42%;
  animation-delay: 2s;
  animation-duration: 24s;
}

.forest-atmosphere span:nth-child(4) {
  left: 63%;
  animation-delay: 8s;
  animation-duration: 20s;
}

.forest-atmosphere span:nth-child(5) {
  left: 78%;
  animation-delay: 3s;
  animation-duration: 26s;
}

.forest-atmosphere span:nth-child(6) {
  left: 92%;
  animation-delay: 10s;
  animation-duration: 19s;
}

@keyframes floatForestBit {
  0% {
    transform: translateY(-60px) rotate(0deg);
  }

  100% {
    transform: translateY(calc(100vh + 100px)) rotate(360deg);
  }
}

.hero-content::before {
  content: "✦ odeur de bois incluse ✦";
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(47, 107, 63, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}

.forest-playground,
.forest-bingo,
.artifact-cabinet,
.mud-lab {
  position: relative;
  overflow: hidden;
}

.forest-playground::after,
.artifact-cabinet::after,
.mud-lab::after {
  content: "";
  position: absolute;
  right: -70px;
  top: 40px;
  width: 190px;
  height: 190px;
  border: 2px dashed rgba(47, 107, 63, 0.18);
  border-radius: 50%;
  pointer-events: none;
}

.forest-zones,
.artifact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.forest-zones {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 32px;
}

.zone-card,
.artifact-card,
.wood-ticket {
  position: relative;
  padding: 26px;
  border: 1px solid rgba(107, 63, 36, 0.16);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow);
}

.zone-card::before,
.artifact-card::before,
.wood-ticket::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px dashed rgba(217, 119, 6, 0.20);
  border-radius: calc(var(--radius-md) - 8px);
  pointer-events: none;
}

.zone-icon,
.artifact-card span,
.wood-ticket span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: rgba(47, 107, 63, 0.10);
  color: var(--green-dark);
  font-size: 1.8rem;
}

.mood-board,
.mud-panel,
.pack-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: center;
  margin-top: 28px;
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(47, 107, 63, 0.18);
  background: #fffdf7;
  box-shadow: var(--shadow);
}

.mood-actions,
.trail-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.mood-chip,
.trail-badges span {
  padding: 11px 15px;
  border: 1px solid rgba(47, 107, 63, 0.22);
  border-radius: 999px;
  color: var(--green-dark);
  background: rgba(47, 107, 63, 0.08);
  font-weight: 900;
}

.mood-chip:hover,
.mood-chip.is-selected {
  color: var(--white);
  background: var(--green);
}

.forest-bingo {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 32px;
  align-items: center;
}

.bingo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 18px;
  border-radius: var(--radius-lg);
  background: var(--wood-dark);
  box-shadow: var(--shadow-strong);
}

.bingo-grid span {
  display: grid;
  min-height: 102px;
  place-items: center;
  padding: 14px;
  border-radius: 18px;
  text-align: center;
  color: var(--wood-dark);
  background: var(--cream);
  font-weight: 900;
  border: 2px solid rgba(217, 119, 6, 0.35);
  transform: rotate(-1deg);
}

.bingo-grid span:nth-child(even) {
  transform: rotate(1deg);
  background: #fffdf7;
}

.pack-station .pack-layout,
.pack-station .pack-checklist,
.pack-station .wood-ticket {
  color: var(--wood-dark);
}

.pack-station .pack-layout {
  background: rgba(255, 250, 240, 0.96);
}

.pack-checklist {
  display: grid;
  gap: 12px;
}

.pack-checklist label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid rgba(47, 107, 63, 0.14);
  font-weight: 800;
}

.pack-checklist input {
  width: 18px;
  height: 18px;
  accent-color: var(--green);
}

.pack-score {
  margin: 8px 0 0;
  padding: 14px;
  border-radius: 16px;
  color: var(--white);
  background: var(--green);
  font-weight: 900;
}

.mud-panel {
  grid-template-columns: 0.8fr 1.2fr;
  max-width: 900px;
  margin-inline: auto;
}

.mud-panel label {
  font-weight: 950;
  color: var(--wood-dark);
  font-size: 1.2rem;
}

.mud-range {
  width: 100%;
  accent-color: var(--orange);
}

.mud-output {
  padding: 18px;
  border-radius: 22px;
  background: rgba(217, 119, 6, 0.10);
  border: 1px solid rgba(217, 119, 6, 0.20);
}

.mud-output strong {
  display: block;
  margin-bottom: 6px;
  color: var(--orange-dark);
  font-size: 1.25rem;
}

.trail-badges {
  justify-content: center;
  margin-top: 22px;
}

.forest-mascot {
  pointer-events: auto;
}

.mascot-emoji {
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mascot-emoji:hover {
  transform: translateY(-4px) rotate(-5deg) scale(1.04);
}

.mascot-emoji::after {
  content: "";
  position: absolute;
}

.site-footer {
  position: relative;
}

.site-footer::before {
  content: "🌲 Signal forestier reçu · Merci de ne pas nourrir les écureuils avec les miettes de notre site web";
  display: block;
  max-width: var(--max-width);
  margin: 0 auto 22px;
  padding: 14px 18px;
  border-radius: 18px;
  color: var(--cream);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 800;
  text-align: center;
}

@media (max-width: 1100px) {

  .forest-zones,
  .artifact-grid,
  .bingo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .forest-bingo,
  .mood-board,
  .mud-panel,
  .pack-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {

  .forest-zones,
  .artifact-grid,
  .bingo-grid {
    grid-template-columns: 1fr;
  }

  .forest-atmosphere {
    display: none;
  }

  .hero-content::before {
    font-size: 0.66rem;
  }

  .zone-card,
  .artifact-card,
  .wood-ticket,
  .mood-board,
  .mud-panel,
  .pack-layout {
    padding: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .forest-atmosphere span {
    animation: none;
  }
}


/* GOOGLE MAP SATELLITE — emplacement réel avec itinéraire */
.google-map-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid rgba(107, 63, 36, 0.18);
  box-shadow: 0 24px 60px rgba(47, 43, 37, 0.18);
  background: var(--sand);
}

.google-map-card iframe {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 430px;
  display: block;
  border: 0;
}

.google-map-card::after {
  content: "🛰️ Vue satellite — les sapins sont maintenant officiellement géolocalisés";
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  max-width: calc(100% - 36px);
  padding: 9px 13px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(33, 79, 45, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.78rem;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.map-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 16px 18px;
  border-radius: 20px;
  color: #fff;
  background: rgba(63, 41, 29, 0.86);
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.22);
}

.map-caption strong {
  display: block;
  margin-bottom: 2px;
  color: #fff;
  font-size: 1.05rem;
}

.map-caption span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

@media (max-width: 680px) {

  .google-map-card,
  .google-map-card iframe {
    min-height: 360px;
    height: 360px;
  }

  .google-map-card::after {
    border-radius: 18px;
    font-size: 0.72rem;
  }
}

/* PAGE MENU — restaurant, breuvages et ambiance cantine forestière */
.hero--menu {
  background-image: linear-gradient(rgba(10, 17, 12, 0.35), rgba(10, 17, 12, 0.58)), url("https://images.unsplash.com/photo-1514933651103-005eec06c04b?auto=format&fit=crop&w=1800&q=82");
}

.menu-hero-panel strong {
  color: var(--white);
}

.menu-intro {
  padding-bottom: 40px;
}

.menu-toc {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.menu-toc a {
  padding: 12px 16px;
  border-radius: 999px;
  color: var(--green-dark);
  background: rgba(47, 107, 63, 0.08);
  border: 1px solid rgba(47, 107, 63, 0.16);
  font-weight: 900;
  transition: 0.2s ease;
}

.menu-toc a:hover {
  color: var(--white);
  background: var(--green);
  transform: translateY(-2px);
}

.menu-section {
  scroll-margin-top: 120px;
}

.menu-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.menu-board.three-columns {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.menu-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(107, 63, 36, 0.15);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.menu-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px dashed rgba(217, 119, 6, 0.18);
  border-radius: calc(var(--radius-lg) - 10px);
  pointer-events: none;
}

.menu-card::after {
  content: "";
  position: absolute;
  right: -34px;
  top: -34px;
  width: 120px;
  height: 120px;
  opacity: 0.07;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%232f6b3f' d='M50 4 L62 32 L92 36 L70 56 L76 88 L50 72 L24 88 L30 56 L8 36 L38 32 Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.menu-card>* {
  position: relative;
  z-index: 1;
}

.menu-featured {
  border-color: rgba(217, 119, 6, 0.25);
  background:
    linear-gradient(rgba(255, 253, 247, 0.94), rgba(255, 253, 247, 0.94)),
    repeating-linear-gradient(180deg, rgba(211, 161, 120, 0.52) 0 28px, rgba(191, 135, 87, 0.52) 28px 56px, rgba(245, 235, 222, 0.58) 56px 62px);
}

.menu-icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin-bottom: 18px;
  border-radius: 20px;
  color: var(--green-dark);
  background: rgba(47, 107, 63, 0.10);
  font-size: 1.9rem;
}

.menu-card h3 {
  margin-bottom: 18px;
  color: var(--wood-dark);
}

.menu-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
  padding: 13px 0;
  border-bottom: 1px dashed rgba(107, 63, 36, 0.18);
}

.menu-list li:last-child {
  border-bottom: 0;
}

.menu-list span {
  color: var(--ink);
  font-weight: 800;
}

.menu-list em {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.84rem;
  font-style: normal;
  font-weight: 750;
}

.menu-list strong {
  color: var(--green-dark);
  font-weight: 950;
  white-space: nowrap;
}

.wide-card {
  grid-column: span 2;
}

.responsive-table {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.menu-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.95);
}

.menu-table caption {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.menu-table th,
.menu-table td {
  padding: 18px;
  border-bottom: 1px solid rgba(107, 63, 36, 0.13);
  text-align: left;
}

.menu-table th {
  color: var(--white);
  background: var(--green);
  font-weight: 950;
}

.menu-table td:first-child {
  color: var(--wood-dark);
  font-weight: 950;
}

.menu-table tbody tr:nth-child(even) {
  background: rgba(47, 107, 63, 0.045);
}

.menu-note-card,
.bar-info-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.menu-price-pill {
  display: inline-flex;
  width: fit-content;
  margin: 12px 0;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--white);
  background: var(--orange);
  font-weight: 950;
  box-shadow: 0 10px 24px rgba(217, 119, 6, 0.20);
}

.small-muted {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
}

.menu-mini-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.menu-mini-grid article {
  padding: 22px;
  border-radius: 22px;
  border: 1px solid rgba(107, 63, 36, 0.15);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.menu-mini-grid strong,
.menu-mini-grid span {
  display: block;
}

.menu-mini-grid strong {
  color: var(--wood-dark);
  margin-bottom: 6px;
}

.menu-mini-grid span {
  color: var(--green-dark);
  font-size: 1.25rem;
  font-weight: 950;
}

.bar-info-card {
  border-color: rgba(47, 107, 63, 0.22);
  background: rgba(47, 107, 63, 0.07);
}

@media (max-width: 1180px) {
  .main-nav a {
    padding-inline: 10px;
    font-size: 0.88rem;
  }
}

@media (max-width: 1100px) {

  .menu-board,
  .menu-board.three-columns,
  .menu-mini-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wide-card {
    grid-column: span 1;
  }
}

@media (max-width: 680px) {

  .menu-board,
  .menu-board.three-columns,
  .menu-mini-grid {
    grid-template-columns: 1fr;
  }

  .menu-card {
    padding: 24px;
  }

  .menu-list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .menu-toc {
    justify-content: flex-start;
  }
}

/* RESTRUCTURE MENU V2 — mise en page carte de restaurant compacte */
.menu-hero-v2 {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  align-items: end;
}

.menu-hero-card-v2 {
  padding: clamp(1.35rem, 3vw, 2rem);
}

.menu-quick-facts {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.menu-quick-facts article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 250, 240, 0.12);
}

.menu-quick-facts span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 1.25rem;
}

.menu-quick-facts p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 740;
  line-height: 1.35;
}

.menu-catalogue {
  max-width: 1280px;
  padding-top: clamp(4rem, 7vw, 6.5rem);
}

.menu-layout-v2 {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: start;
}

.menu-sidebar {
  position: sticky;
  top: 120px;
}

.menu-sidebar-card {
  padding: 20px;
  border: 1px solid rgba(107, 63, 36, 0.15);
  border-radius: 28px;
  background:
    linear-gradient(rgba(255, 253, 247, 0.94), rgba(255, 253, 247, 0.94)),
    repeating-linear-gradient(135deg, rgba(47, 107, 63, 0.08) 0 12px, transparent 12px 24px);
  box-shadow: var(--shadow);
}

.menu-sidebar-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--orange-dark);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu-toc-v2 {
  display: grid;
  gap: 8px;
}

.menu-toc-v2 a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid rgba(47, 107, 63, 0.12);
  border-radius: 14px;
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.76);
  font-weight: 900;
  line-height: 1.2;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.menu-toc-v2 a:hover {
  transform: translateX(4px);
  color: var(--white);
  border-color: var(--green);
  background: var(--green);
}

.menu-sidebar-note {
  margin: 16px 0 0;
  padding-top: 14px;
  border-top: 1px dashed rgba(107, 63, 36, 0.22);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 720;
}

.menu-content-v2 {
  display: grid;
  gap: clamp(1.25rem, 3vw, 2rem);
}

.menu-category-v2 {
  scroll-margin-top: 120px;
  overflow: hidden;
  border: 1px solid rgba(107, 63, 36, 0.15);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.menu-category-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 260px);
  gap: clamp(1rem, 2vw, 1.4rem);
  align-items: stretch;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  background:
    linear-gradient(135deg, rgba(47, 107, 63, 0.11), rgba(217, 119, 6, 0.08)),
    var(--linen);
}

.menu-category-header.compact-header {
  grid-template-columns: minmax(0, 1fr) minmax(150px, 220px);
}

.menu-category-header.no-photo {
  grid-template-columns: 1fr;
}

.menu-category-header h2 {
  margin-bottom: 0.55rem;
  font-size: clamp(1.75rem, 3vw, 2.65rem);
}

.menu-category-header p:last-child {
  margin-bottom: 0;
  color: var(--wood);
  font-weight: 680;
}

.menu-category-header img {
  width: 100%;
  min-height: 150px;
  height: 100%;
  object-fit: cover;
  border: 8px solid rgba(255, 255, 255, 0.72);
  border-radius: 24px;
  box-shadow: 0 14px 32px rgba(47, 43, 37, 0.14);
}

.menu-group-grid {
  display: grid;
  gap: 16px;
  padding: clamp(1rem, 2.4vw, 1.45rem);
}

.menu-group-grid.two-groups {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.menu-group-grid.three-groups {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.menu-group,
.menu-callout-card,
.poutine-card,
.menu-extra-row article {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(107, 63, 36, 0.14);
  border-radius: 24px;
  background: var(--white);
}

.menu-group,
.menu-callout-card,
.poutine-card {
  padding: clamp(1rem, 2vw, 1.35rem);
}

.menu-group::after,
.menu-callout-card::after,
.poutine-card::after {
  content: "";
  position: absolute;
  right: -32px;
  top: -32px;
  width: 110px;
  height: 110px;
  opacity: 0.055;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon fill='%232f6b3f' points='50,5 20,45 33,45 15,70 35,70 25,95 75,95 65,70 85,70 67,45 80,45'/%3E%3Crect fill='%235a3a1a' x='44' y='88' width='12' height='12'/%3E%3C/svg%3E") center / contain no-repeat;
}

.menu-group>*,
.menu-callout-card>*,
.poutine-card>* {
  position: relative;
  z-index: 1;
}

.menu-group-featured,
.poutine-card-featured {
  border-color: rgba(217, 119, 6, 0.28);
  background:
    linear-gradient(rgba(255, 253, 247, 0.95), rgba(255, 253, 247, 0.95)),
    repeating-linear-gradient(180deg, rgba(211, 161, 120, 0.45) 0 28px, rgba(245, 235, 222, 0.58) 28px 56px);
}

.menu-group h3,
.poutine-card h3,
.menu-callout-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--green-dark);
  font-size: 1.18rem;
}

.menu-group h3 span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 14px;
  background: rgba(47, 107, 63, 0.1);
}

.menu-list-v2 {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-list-v2 li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: baseline;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(107, 63, 36, 0.18);
}

.menu-list-v2 li:last-child {
  border-bottom: 0;
}

.menu-list-v2 span {
  color: var(--ink);
  font-weight: 820;
  min-width: 0;
}

.menu-list-v2 em {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.84rem;
  font-style: normal;
  font-weight: 760;
}

.menu-list-v2 strong,
.size-price-grid strong,
.menu-extra-row span,
.menu-callout-card>strong {
  color: var(--green-dark);
  font-weight: 950;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.menu-callout-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  border-color: rgba(217, 119, 6, 0.22);
  background: rgba(217, 119, 6, 0.08);
}

.menu-callout-card.green-callout {
  border-color: rgba(47, 107, 63, 0.22);
  background: rgba(47, 107, 63, 0.08);
}

.callout-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
  font-size: 1.7rem;
}

.menu-callout-card p {
  color: var(--wood);
  font-weight: 720;
}

.menu-callout-card>strong {
  display: inline-flex;
  width: fit-content;
  margin: 6px 0 10px;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 10px 24px rgba(217, 119, 6, 0.18);
}

.menu-callout-card small {
  color: var(--muted);
  font-weight: 760;
}

.poutine-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(1rem, 2.4vw, 1.45rem);
}

.size-price-grid {
  display: grid;
  gap: 8px;
}

.size-price-grid span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(47, 107, 63, 0.055);
  color: var(--wood-dark);
  font-weight: 820;
}

.menu-extra-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 0 clamp(1rem, 2.4vw, 1.45rem) clamp(1rem, 2.4vw, 1.45rem);
}

.menu-extra-row article {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 12px;
  min-height: 78px;
  padding: 10px 12px;
}

.menu-extra-row .menu-extra-with-thumb {
  grid-template-columns: 56px minmax(0, 1fr);
}

.menu-extra-row img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 16px;
}

.menu-extra-row strong,
.menu-extra-row span {
  display: block;
}

.menu-extra-row strong {
  color: var(--wood-dark);
  line-height: 1.2;
}

.menu-extra-row span {
  margin-top: 2px;
  font-size: 1.08rem;
}

.menu-cta-v2 {
  margin-top: 20px;
}

@media (max-width: 1180px) {
  .menu-layout-v2 {
    grid-template-columns: 1fr;
  }

  .menu-sidebar {
    position: static;
  }

  .menu-toc-v2 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {

  .menu-hero-v2,
  .menu-group-grid.three-groups,
  .poutine-pricing-grid {
    grid-template-columns: 1fr;
  }

  .menu-category-header,
  .menu-category-header.compact-header {
    grid-template-columns: 1fr;
  }

  .menu-category-header img {
    max-height: 220px;
  }

  .menu-extra-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {

  .menu-toc-v2,
  .menu-group-grid.two-groups,
  .menu-extra-row {
    grid-template-columns: 1fr;
  }

  .menu-category-v2 {
    border-radius: 26px;
  }

  .menu-category-header img {
    min-height: 130px;
    border-width: 6px;
    border-radius: 20px;
  }

  .menu-list-v2 li {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
  }
}

@media (max-width: 480px) {

  .menu-quick-facts article,
  .menu-extra-row article {
    grid-template-columns: 1fr;
  }

  .menu-list-v2 li,
  .size-price-grid span {
    align-items: start;
  }
}

/* Language selector*/
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.language-menu {
  position: relative;
  z-index: 30;
}

.language-menu-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 42px;
  padding: 0.55rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: inherit;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.04em;
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.language-menu-trigger::after {
  content: "▾";
  font-size: 0.72rem;
  opacity: 0.85;
}

.language-menu-list {
  position: absolute;
  top: calc(100% + 0.55rem);
  right: 0;
  min-width: 150px;
  padding: 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  background: rgba(39, 58, 36, 0.96);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.language-menu:hover .language-menu-list,
.language-menu:focus-within .language-menu-list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-menu-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.72rem 0.85rem;
  border-radius: 13px;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.language-menu-list a:hover,
.language-menu-list a.is-active {
  background: rgba(255, 255, 255, 0.14);
}

.language-menu-list a.is-active::after {
  content: "✓";
  font-size: 0.8rem;
}

@media (max-width: 820px) {
  .header-actions {
    margin-left: 0;
  }

  .language-menu-list {
    right: 0;
  }
}

.turnstile-row {
  margin-top: 22px;
}

.turnstile-row .cf-turnstile {
  margin-top: 8px;
}

@media (max-width: 680px) {
  .turnstile-row {
    overflow-x: auto;
  }
}

/* Modal photo — chaque chalet peut avoir sa propre galerie */
.pricing-image.chalet-gallery-trigger {
  position: relative;
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  cursor: zoom-in;
  appearance: none;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  font: inherit;
  overflow: hidden;
}

.pricing-image.chalet-gallery-trigger::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.42));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.pricing-image.chalet-gallery-trigger:hover::before,
.pricing-image.chalet-gallery-trigger:focus-visible::before {
  opacity: 1;
}

.pricing-image.chalet-gallery-trigger:focus-visible {
  outline: 3px solid #f4a43a;
  outline-offset: 4px;
}

.image-open-label {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #24412c;
  font-size: 0.86rem;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  transform: translateY(8px);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}

.pricing-image.chalet-gallery-trigger:hover .image-open-label,
.pricing-image.chalet-gallery-trigger:focus-visible .image-open-label {
  opacity: 1;
  transform: translateY(0);
}

.chalet-image-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.chalet-image-modal.is-open {
  display: flex;
}

.chalet-image-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: brightness(0.45);
}

.chalet-image-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  max-height: 92vh;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.chalet-image-modal__viewer {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chalet-image-modal__figure {
  position: relative;
  display: inline-block;
  margin: 0;
  max-width: 100%;
}

.chalet-image-modal__figure img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 92vh;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.45);
}

.chalet-image-modal__figure figcaption {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  margin: 0;
  padding: 0.85rem 3.7rem 0.85rem 1rem;
  border-radius: 18px 18px 0 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0));
  color: #fff;
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 900;
  line-height: 1.25;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}

.chalet-image-modal__close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  z-index: 4;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.62);
  color: #fff;
  cursor: pointer;
  font-size: 1.7rem;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.chalet-image-modal__nav[hidden] {
  display: none;
}

.chalet-image-modal__nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.58);
  color: #fff;
  cursor: pointer;
  font-size: 2.2rem;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.chalet-image-modal__nav[data-modal-prev] {
  left: 0.75rem;
}

.chalet-image-modal__nav[data-modal-next] {
  right: 0.75rem;
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 700px) {
  .chalet-image-modal {
    padding: 0.75rem;
  }

  .chalet-image-modal__figure img {
    max-height: 88vh;
    border-radius: 14px;
  }

  .chalet-image-modal__figure figcaption {
    border-radius: 14px 14px 0 0;
    padding: 0.75rem 3.2rem 1.2rem 0.85rem;
  }

  .chalet-image-modal__close {
    top: 0.45rem;
    right: 0.45rem;
    width: 38px;
    height: 38px;
  }

  .chalet-image-modal__nav {
    width: 40px;
    height: 40px;
    font-size: 1.9rem;
  }

  .chalet-image-modal__nav[data-modal-prev] {
    left: 0.45rem;
  }

  .chalet-image-modal__nav[data-modal-next] {
    right: 0.45rem;
  }

  .image-open-label {
    opacity: 1;
    transform: none;
  }
}