:root {
  --ink: #27332f;
  --muted: #68716d;
  --green: #3f5b52;
  --green-dark: #2d453e;
  --clay: #b37958;
  --clay-dark: #714b38;
  --cream: #f5f0e8;
  --warm: #fbfaf7;
  --sand: #e6d9c9;
  --white: #fff;
  --line: rgba(39, 51, 47, 0.14);
  --shadow: 0 22px 70px rgba(22, 35, 30, 0.14);
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Segoe UI", Arial, sans-serif;
  --script: "Segoe Script", "Bradley Hand", cursive;
  --shell: min(1180px, calc(100vw - 48px));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

body.lightbox-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

:where(a, button, input, textarea, select):focus-visible {
  outline: 3px solid #8c573d;
  outline-offset: 4px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.15;
}

h1 {
  font-size: clamp(3rem, 7vw, 6.8rem);
}

h2 {
  font-size: clamp(2rem, 3.6vw, 3.8rem);
}

h3 {
  font-size: 1.55rem;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.narrow {
  max-width: 850px;
}

.center {
  text-align: center;
}

.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;
}

.skip-link {
  position: fixed;
  z-index: 10000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--green-dark);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: none;
}

.topbar {
  position: absolute;
  z-index: 101;
  inset: 0 0 auto;
  height: 34px;
  color: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.topbar-inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  gap: 12px;
}

.topbar a:hover {
  color: var(--sand);
}

.site-header {
  position: absolute;
  z-index: 100;
  inset: 34px 0 auto;
  color: var(--white);
  transition: color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-sticky {
  position: fixed;
  inset: 0 0 auto;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 6px 30px rgba(25, 38, 33, 0.1);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  min-height: 105px;
}

.site-header.is-sticky .header-inner {
  min-height: 78px;
}

.brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  flex-direction: column;
  min-width: 245px;
  line-height: 1;
}

.page-domaine .site-header:not(.is-sticky) .brand::before {
  position: absolute;
  z-index: -1;
  inset: -13px -20px;
  content: "";
  background: rgba(8, 12, 11, 0.58);
  border-radius: 3px;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.brand-name {
  font-family: var(--serif);
  font-size: 1.72rem;
  letter-spacing: 0.015em;
}

.brand-place {
  margin-top: 8px;
  font-size: 0.61rem;
  letter-spacing: 0.37em;
  text-transform: uppercase;
  opacity: 0.82;
}

.main-nav {
  margin-left: auto;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 31px);
  margin: 0;
  padding: 8px 20px;
  list-style: none;
  background: rgba(8, 12, 11, 0.58);
  border-radius: 3px;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-sticky .main-nav ul {
  padding: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.main-nav a {
  position: relative;
  display: block;
  padding-block: 12px;
  font-size: 0.79rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 44px;
  padding: 8px;
  margin-left: auto;
  color: inherit;
  background: transparent;
  border: 0;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 1px;
  margin: 7px 0;
  background: currentColor;
}

.home-hero {
  position: relative;
  height: 100svh;
  min-height: 690px;
  overflow: hidden;
  color: var(--white);
  background: var(--green-dark);
}

.hero-slide {
  position: absolute;
  inset: 0;
  visibility: hidden;
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.1s ease, transform 7s ease, visibility 1.1s;
}

.hero-slide.is-active {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(24, 35, 31, 0.6), rgba(24, 35, 31, 0.17) 70%, rgba(24, 35, 31, 0.12));
}

.hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  padding-top: 80px;
  padding-right: min(35vw, 460px);
}

.hero-copy h1,
.hero-copy h2 {
  max-width: 760px;
  margin-bottom: 24px;
  color: var(--white);
  text-wrap: balance;
}

.hero-copy h2 {
  font-size: clamp(3rem, 6.2vw, 6rem);
}

.hero-copy > p:not(.script-line) {
  max-width: 650px;
  margin-bottom: 36px;
  font-size: clamp(1.02rem, 1.4vw, 1.25rem);
  line-height: 1.65;
}

.script-line {
  margin-bottom: 12px;
  color: #f0d7c3;
  font-family: var(--script);
  font-size: clamp(1.35rem, 2.3vw, 2.2rem);
  transform: rotate(-2deg);
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 12px 25px;
  color: var(--white);
  background: var(--green);
  border: 1px solid var(--green);
  border-radius: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.25s ease, background 0.25s ease, border 0.25s ease, transform 0.25s ease;
}

.button:hover {
  background: var(--clay);
  border-color: var(--clay);
  transform: translateY(-2px);
}

.button-light {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}

.button-light:hover {
  color: var(--white);
  background: var(--clay);
  border-color: var(--clay);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-link span {
  font-size: 1.2rem;
  transition: transform 0.2s ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

.text-link.light {
  color: var(--white);
}

.hero-dots {
  position: absolute;
  z-index: 3;
  right: 42px;
  bottom: 42px;
  display: flex;
  gap: 10px;
}

.hero-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  background: rgba(255, 255, 255, 0.4);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-dots button.is-active {
  background: var(--white);
  transform: scale(1.45);
}

.hero-scroll {
  position: absolute;
  z-index: 3;
  bottom: 32px;
  left: 50%;
  width: 24px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 20px;
  transform: translateX(-50%);
}

.hero-scroll span {
  position: absolute;
  top: 8px;
  left: 10px;
  width: 2px;
  height: 8px;
  background: var(--white);
  animation: scrollCue 1.8s infinite;
}

@keyframes scrollCue {
  0% { opacity: 0; transform: translateY(0); }
  35% { opacity: 1; }
  100% { opacity: 0; transform: translateY(15px); }
}

.section {
  padding-block: clamp(80px, 10vw, 145px);
}

.section-topless {
  padding-bottom: clamp(80px, 10vw, 145px);
}

.warm {
  background: var(--cream);
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--clay-dark);
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.21em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #ecd4c1;
}

.display-title {
  margin-bottom: 30px;
  text-wrap: balance;
}

.lead {
  color: #52605b;
  font-family: var(--serif);
  font-size: clamp(1.18rem, 1.8vw, 1.48rem);
  line-height: 1.75;
}

.intro-section {
  background: linear-gradient(180deg, #fff, #fbfaf7);
}

.intro-section.has-attached-calendar {
  padding-bottom: 0;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 80px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 190px;
  padding: 26px 18px;
  background: rgba(255, 255, 255, 0.48);
  border-right: 1px solid var(--line);
  transition: background 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

.stat-card::after {
  position: absolute;
  right: -45px;
  bottom: -60px;
  width: 130px;
  height: 130px;
  background: radial-gradient(circle, rgba(190, 137, 98, 0.2), transparent 68%);
  border-radius: 50%;
  content: "";
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.4s ease, transform 0.5s ease;
}

.stat-card:hover {
  z-index: 1;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(35, 55, 46, 0.12);
  transform: translateY(-5px);
}

.stat-card:hover::after {
  opacity: 1;
  transform: scale(1);
}

.stat-card:last-child {
  border-right: 0;
}

.stat-grid strong {
  position: relative;
  z-index: 1;
  color: var(--green);
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3.1rem);
  font-weight: 400;
}

.stat-grid .stat-label {
  position: relative;
  z-index: 1;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.67rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.stat-illustration {
  position: relative;
  z-index: 1;
  display: block;
  width: 94px;
  height: 54px;
  margin-bottom: 10px;
  color: var(--green);
}

.stat-illustration svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.stat-illustration circle,
.stat-illustration path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.stat-illustration .guest circle {
  fill: rgba(53, 86, 70, 0.14);
}

.guest,
.guest-spark,
.tree-crown,
.tree-leaf,
.pool-heat,
.route-pin {
  transform-box: fill-box;
  transform-origin: center;
}

.guest-left,
.guest-right {
  opacity: 0.65;
}

.guest-smile {
  stroke: var(--clay) !important;
  stroke-width: 1.5 !important;
}

.guest-spark {
  opacity: 0;
  stroke: var(--clay) !important;
}

.stat-guests:hover .guest-left {
  animation: stat-guest-left 1.15s cubic-bezier(0.22, 0.75, 0.26, 1) both;
}

.stat-guests:hover .guest-right {
  animation: stat-guest-right 1.15s cubic-bezier(0.22, 0.75, 0.26, 1) both;
}

.stat-guests:hover .guest-center {
  animation: stat-guest-welcome 1.15s ease both;
}

.stat-guests:hover .guest-spark {
  animation: stat-guest-spark 1.15s ease both;
}

.tree-ground {
  opacity: 0.35;
}

.tree-trunk {
  stroke-width: 3 !important;
}

.tree-crown circle {
  fill: rgba(190, 137, 98, 0.16);
  stroke: var(--clay);
}

.tree-leaf {
  fill: rgba(53, 86, 70, 0.17) !important;
  opacity: 0.55;
}

.stat-park:hover .tree-trunk {
  animation: stat-tree-trunk 1.2s ease-out both;
}

.stat-park:hover .tree-crown {
  animation: stat-tree-crown 1.2s cubic-bezier(0.2, 0.75, 0.22, 1) both;
}

.stat-park:hover .leaf-one {
  animation: stat-leaf-one 1.45s ease-in-out both;
}

.stat-park:hover .leaf-two {
  animation: stat-leaf-two 1.45s ease-in-out both;
}

.pool-edge {
  fill: rgba(53, 86, 70, 0.05) !important;
}

.pool-wave {
  stroke: #4c8c92 !important;
  stroke-dasharray: 13 7;
}

.pool-heat {
  opacity: 0.45;
  stroke: var(--clay);
}

.stat-pool:hover .pool-wave-one {
  animation: stat-pool-wave 1.25s linear infinite;
}

.stat-pool:hover .pool-wave-two {
  animation: stat-pool-wave 1.25s linear infinite reverse;
}

.stat-pool:hover .pool-heat {
  animation: stat-pool-heat 1.35s ease-in-out infinite;
}

.route-house {
  fill: rgba(190, 137, 98, 0.11) !important;
  stroke: var(--clay) !important;
  transform-box: fill-box;
  transform-origin: center;
}

.route-line {
  stroke-dasharray: 5 6;
}

.route-pin path {
  fill: rgba(53, 86, 70, 0.13);
}

.route-pin circle {
  fill: var(--white);
}

.stat-distance:hover .route-line {
  animation: stat-route-draw 1.35s ease-out both;
}

.stat-distance:hover .route-pin {
  animation: stat-route-pin 1.35s cubic-bezier(0.2, 0.75, 0.22, 1) both;
}

.stat-distance:hover .route-house {
  animation: stat-route-house 1.35s ease both;
}

@keyframes stat-guest-left {
  0% { opacity: 0; transform: translateX(15px); }
  55%,
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes stat-guest-right {
  0% { opacity: 0; transform: translateX(-15px); }
  55%,
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes stat-guest-welcome {
  0%,
  35% { transform: translateY(4px); }
  58% { transform: translateY(-3px); }
  100% { transform: translateY(0); }
}

@keyframes stat-guest-spark {
  0%,
  58% { opacity: 0; transform: scale(0.45) rotate(-20deg); }
  74% { opacity: 1; transform: scale(1.25) rotate(5deg); }
  100% { opacity: 0.8; transform: scale(1) rotate(0); }
}

@keyframes stat-tree-trunk {
  0% { stroke-dasharray: 75; stroke-dashoffset: 75; }
  100% { stroke-dasharray: 75; stroke-dashoffset: 0; }
}

@keyframes stat-tree-crown {
  0%,
  25% { opacity: 0; transform: scale(0.45) translateY(13px); }
  72% { opacity: 1; transform: scale(1.08) translateY(-1px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes stat-leaf-one {
  0%,
  35% { opacity: 0; transform: translate(-10px, -8px) rotate(-25deg); }
  100% { opacity: 0.8; transform: translate(0, 0) rotate(0); }
}

@keyframes stat-leaf-two {
  0%,
  45% { opacity: 0; transform: translate(12px, -7px) rotate(28deg); }
  100% { opacity: 0.8; transform: translate(0, 0) rotate(0); }
}

@keyframes stat-pool-wave {
  to { stroke-dashoffset: -40; }
}

@keyframes stat-pool-heat {
  0% { opacity: 0.18; transform: translateY(3px); }
  55% { opacity: 0.75; }
  100% { opacity: 0.18; transform: translateY(-3px); }
}

@keyframes stat-route-draw {
  0% { stroke-dasharray: 80; stroke-dashoffset: 80; }
  100% { stroke-dasharray: 5 6; stroke-dashoffset: 0; }
}

@keyframes stat-route-pin {
  0%,
  48% { opacity: 0; transform: translateY(-15px) scale(0.72); }
  70% { opacity: 1; transform: translateY(3px) scale(1.04); }
  86% { transform: translateY(-2px) scale(1); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes stat-route-house {
  0%,
  18% { opacity: 0.35; transform: translateY(3px); }
  42%,
  100% { opacity: 1; transform: translateY(0); }
}

.split-feature {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 690px;
}

.split-image {
  min-height: 560px;
  background-position: center;
  background-size: cover;
}

.split-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(55px, 8vw, 125px);
  background: var(--green-dark);
  color: rgba(255, 255, 255, 0.82);
}

.split-copy h2 {
  color: var(--white);
}

.split-copy .text-link {
  margin-top: 15px;
  color: #f1d8c4;
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 55px;
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.image-card {
  position: relative;
  display: block;
  min-height: 510px;
  overflow: hidden;
  color: var(--white);
  box-shadow: var(--shadow);
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.image-card::after {
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(transparent, rgba(25, 35, 31, 0.85));
  content: "";
}

.image-card > span {
  position: absolute;
  z-index: 1;
  right: 28px;
  bottom: 30px;
  left: 28px;
  font-family: var(--serif);
  font-size: 2rem;
}

.image-card small {
  display: block;
  margin-bottom: 2px;
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.image-card:hover img {
  transform: scale(1.05);
}

.story-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(45px, 8vw, 110px);
}

.story-grid img {
  width: 100%;
  min-height: 400px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.button-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 34px;
}

.cta-band {
  color: var(--white);
  background: var(--clay);
}

.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 260px;
  gap: 40px;
  padding-block: 48px;
}

.cta-inner h2 {
  max-width: 750px;
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.7rem);
}

.page-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 67vh;
  padding-top: 150px;
  color: var(--white);
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
}

.page-hero .hero-shade {
  background: linear-gradient(0deg, rgba(25, 37, 33, 0.7), rgba(25, 37, 33, 0.08) 70%);
}

.page-hero-copy {
  position: relative;
  z-index: 1;
  padding-bottom: clamp(60px, 8vw, 105px);
}

.page-hero-copy .eyebrow.light {
  color: #241b16;
  text-shadow:
    0 1px 2px rgba(255, 255, 255, 0.9),
    0 0 10px rgba(255, 255, 255, 0.72);
}

.page-hero-copy h1 {
  max-width: 920px;
  margin-bottom: 18px;
  font-size: clamp(3.2rem, 7vw, 6.7rem);
}

.page-hero-copy > p:last-child {
  max-width: 720px;
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.7vw, 1.4rem);
}

.two-column-intro {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: start;
  gap: clamp(45px, 8vw, 120px);
}

.two-column-intro h2 {
  margin-bottom: 0;
}

.content-split {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: clamp(45px, 8vw, 110px);
}

.content-split.reverse {
  grid-template-columns: 0.92fr 1.08fr;
}

.content-split.reverse img {
  order: 2;
}

.content-split img {
  width: 100%;
  min-height: 480px;
  max-height: 670px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.content-split h2 {
  margin-bottom: 25px;
}

.full-photo-quote {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 620px;
  color: var(--white);
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

.full-photo-quote.compact {
  min-height: 470px;
}

.full-photo-quote .hero-shade {
  background: rgba(26, 42, 36, 0.48);
}

.full-photo-quote .shell {
  position: relative;
  z-index: 1;
  max-width: 820px;
  text-align: center;
}

.full-photo-quote h2 {
  margin-bottom: 26px;
  font-size: clamp(2.7rem, 5vw, 5.2rem);
}

.full-photo-quote p:last-child {
  font-size: 1.1rem;
}

.info-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  max-width: 980px;
  margin: auto;
  background: var(--white);
  box-shadow: var(--shadow);
}

.info-panel > div {
  padding: clamp(35px, 6vw, 75px);
}

.info-panel img {
  width: 100%;
  min-height: 430px;
  height: 100%;
  object-fit: cover;
}

.info-panel h3 {
  font-size: 2.3rem;
}

.photo-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  grid-template-rows: repeat(2, 310px);
  gap: 14px;
}

.photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-grid .wide {
  grid-row: 1 / 3;
}

.amenity-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.amenity-columns article {
  padding: clamp(32px, 4vw, 55px);
  background: var(--white);
}

.amenity-columns.conditions article {
  background: var(--cream);
}

.number {
  display: block;
  margin-bottom: 30px;
  color: var(--clay);
  font-family: var(--serif);
  font-size: 2rem;
}

.amenity-columns h2 {
  margin-bottom: 26px;
  font-size: 2rem;
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 9px 0 9px 24px;
  border-bottom: 1px solid var(--line);
}

.check-list li::before {
  position: absolute;
  top: 10px;
  left: 0;
  color: var(--clay);
  content: "—";
}

.check-list.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 28px;
  margin-bottom: 28px;
}

.note-band {
  padding-block: 30px;
  color: var(--white);
  background: var(--green);
}

.note-band .shell {
  display: flex;
  align-items: center;
  gap: 28px;
}

.note-band strong {
  flex: none;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
}

.pool-intro {
  grid-template-columns: 1.15fr 0.85fr;
}

.icon-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.icon-card-grid article {
  min-height: 220px;
  padding: 38px;
  background: var(--white);
  border-top: 3px solid var(--clay);
  box-shadow: 0 12px 35px rgba(30, 45, 39, 0.07);
}

.icon-card-grid h3 {
  margin-bottom: 18px;
}

.activity-card {
  position: relative;
  overflow: hidden;
  min-height: 275px;
  padding: 30px 32px;
  color: var(--ink);
  background: var(--white);
  border: 0;
  border-top: 3px solid var(--clay);
  box-shadow: 0 12px 35px rgba(30, 45, 39, 0.07);
  cursor: pointer;
  text-align: left;
  transition: border-color 0.3s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

.activity-card::after {
  position: absolute;
  right: -45px;
  bottom: -50px;
  width: 125px;
  height: 125px;
  background: radial-gradient(circle, rgba(190, 137, 98, 0.2), transparent 68%);
  border-radius: 50%;
  content: "";
  opacity: 0;
  transition: opacity 0.35s ease, transform 0.45s ease;
}

.activity-card:hover,
.activity-card:focus-visible {
  border-top-color: var(--green);
  box-shadow: 0 22px 48px rgba(30, 45, 39, 0.14);
  transform: translateY(-6px);
}

.activity-card:focus-visible {
  outline: 3px solid #8c573d;
  outline-offset: 4px;
}

.activity-card:hover::after,
.activity-card:focus-visible::after {
  opacity: 1;
  transform: scale(1.15);
}

.activity-card h3 {
  margin: 8px 0 12px;
}

.activity-card p {
  min-height: 3.4em;
  color: var(--muted);
  line-height: 1.65;
}

.activity-icon {
  display: block;
  width: 94px;
  height: 68px;
  color: var(--green);
}

.activity-svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.activity-svg path,
.activity-svg circle,
.activity-svg ellipse,
.activity-svg rect {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.activity-ground {
  opacity: 0.28;
}

.activity-detail-only {
  opacity: 0;
}

.activity-card-action {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  margin-top: 18px;
  color: var(--green);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.activity-card-action i {
  font-family: var(--serif);
  font-size: 1rem;
  font-style: normal;
  transition: transform 0.25s ease;
}

.activity-card:hover .activity-card-action i,
.activity-card:focus-visible .activity-card-action i {
  transform: translateX(5px);
}

.activity-racket,
.boule,
.golf-flag,
.golf-ball,
.dumbbell,
.swing,
.play-ball,
.paddle,
.ping-ball,
.guest,
.route-pin {
  transform-box: fill-box;
  transform-origin: center;
}

.activity-tennis:hover .activity-racket,
.activity-tennis:focus-visible .activity-racket {
  animation: activity-tennis-racket 0.85s cubic-bezier(0.2, 0.75, 0.22, 1) both;
}

.activity-tennis:hover .activity-ball,
.activity-tennis:focus-visible .activity-ball {
  animation: activity-tennis-ball 0.85s ease both;
}

.activity-petanque:hover .boule-one,
.activity-petanque:focus-visible .boule-one {
  animation: activity-boule-roll 0.9s ease-out both;
}

.activity-petanque:hover .boule-two,
.activity-petanque:focus-visible .boule-two {
  animation: activity-boule-roll 0.9s ease-out 0.1s both;
}

.activity-petanque:hover .boule-three,
.activity-petanque:focus-visible .boule-three {
  animation: activity-boule-roll 0.9s ease-out 0.2s both;
}

.activity-golf:hover .golf-ball,
.activity-golf:focus-visible .golf-ball {
  animation: activity-golf-ball 1s ease-in-out both;
}

.activity-golf:hover .golf-banner,
.activity-golf:focus-visible .golf-banner {
  animation: activity-golf-flag 0.65s ease-in-out 2 alternate;
  transform-origin: left center;
}

.activity-fitness:hover .dumbbell,
.activity-fitness:focus-visible .dumbbell {
  animation: activity-dumbbell 0.9s ease-in-out both;
}

.activity-children:hover .swing,
.activity-children:focus-visible .swing {
  animation: activity-swing 1s ease-in-out 2 alternate;
  transform-origin: top center;
}

.activity-children:hover .play-ball,
.activity-children:focus-visible .play-ball {
  animation: activity-play-ball 1s ease-in-out both;
}

.activity-more:hover .paddle-left,
.activity-more:focus-visible .paddle-left {
  animation: activity-paddle-left 0.7s ease-in-out 2 alternate;
}

.activity-more:hover .paddle-right,
.activity-more:focus-visible .paddle-right {
  animation: activity-paddle-right 0.7s ease-in-out 2 alternate;
}

.activity-more:hover .ping-ball,
.activity-more:focus-visible .ping-ball {
  animation: activity-ping-ball 1.2s linear both;
}

.activity-modal {
  position: fixed;
  z-index: 9900;
  inset: 0;
  display: grid;
  overflow-y: auto;
  padding: 45px;
  background: rgba(17, 25, 22, 0.92);
  place-items: center;
}

.activity-modal[hidden],
.activity-detail[hidden] {
  display: none;
}

.activity-modal-card {
  position: relative;
  width: min(980px, 100%);
  max-height: calc(100vh - 90px);
  overflow-y: auto;
  background: var(--white);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.32);
  animation: activity-modal-in 0.45s cubic-bezier(0.22, 0.75, 0.26, 1) both;
}

.activity-modal-close {
  position: sticky;
  z-index: 5;
  top: 14px;
  float: right;
  display: grid;
  width: 42px;
  height: 42px;
  margin: 14px 14px -56px 0;
  color: var(--white);
  background: rgba(28, 43, 37, 0.86);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.7rem;
  place-items: center;
}

.activity-detail {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: clamp(28px, 5vw, 65px);
  padding: clamp(40px, 7vw, 78px);
}

.activity-detail-scene {
  display: grid;
  min-height: 225px;
  color: var(--green);
  background:
    radial-gradient(circle at 50% 50%, rgba(190, 137, 98, 0.13), transparent 58%),
    var(--cream);
  place-items: center;
}

.activity-detail-scene .activity-svg {
  width: min(280px, 90%);
  height: auto;
}

.activity-detail-copy h2 {
  margin: 8px 0 18px;
  font-size: clamp(2.3rem, 5vw, 4.3rem);
}

.activity-detail-copy > p:last-child {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.75;
}

.activity-detail-photo,
.activity-photo-placeholder {
  grid-column: 1 / -1;
  margin: 0;
}

.activity-detail-photo button {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  padding: 0;
  background: var(--green-dark);
  border: 0;
  cursor: zoom-in;
}

.activity-detail-photo img {
  display: block;
  width: 100%;
  height: clamp(270px, 42vw, 430px);
  object-fit: cover;
  transition: filter 0.35s ease, transform 0.6s ease;
}

.activity-detail-photo button:hover img,
.activity-detail-photo button:focus-visible img {
  filter: brightness(0.72);
  transform: scale(1.025);
}

.activity-detail-photo button > span {
  position: absolute;
  right: 24px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 15px;
  color: var(--white);
  background: rgba(25, 39, 33, 0.78);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.activity-detail-photo button i {
  font-size: 1rem;
  font-style: normal;
}

.activity-photo-placeholder {
  display: grid;
  min-height: 115px;
  color: var(--muted);
  background: var(--cream);
  border: 1px dashed rgba(53, 86, 70, 0.3);
  place-items: center;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.activity-detail-scene .activity-detail-only {
  opacity: 1;
}

.activity-detail-scene .activity-racket {
  animation: detail-tennis-racket 1.7s ease-in-out infinite;
}

.activity-detail-scene .activity-svg-tennis .activity-ball {
  animation: detail-tennis-ball 1.7s ease-in-out infinite;
}

.activity-detail-scene .activity-svg-tennis .activity-trail {
  animation: detail-path-draw 1.7s ease-in-out infinite;
}

.activity-detail-scene .activity-svg-petanque .boule {
  animation: detail-boule 2.2s ease-in-out infinite;
}

.activity-detail-scene .activity-svg-petanque .boule-two { animation-delay: -0.35s; }
.activity-detail-scene .activity-svg-petanque .boule-three { animation-delay: -0.7s; }
.activity-detail-scene .petanque-target { animation: detail-target 1.6s ease-in-out infinite; }
.activity-detail-scene .activity-svg-golf .golf-ball { animation: detail-golf-ball 2.1s ease-in-out infinite; }
.activity-detail-scene .activity-svg-golf .golf-arc { animation: detail-path-draw 2.1s ease-in-out infinite; }
.activity-detail-scene .activity-svg-golf .golf-banner { animation: activity-golf-flag 0.8s ease-in-out infinite alternate; transform-origin: left center; }
.activity-detail-scene .activity-svg-fitness .dumbbell { animation: detail-dumbbell 1.45s ease-in-out infinite; }
.activity-detail-scene .activity-svg-fitness .fitness-pulse { animation: detail-path-draw 1.45s ease-in-out infinite; }
.activity-detail-scene .activity-svg-children .swing { animation: detail-swing 1.5s ease-in-out infinite alternate; transform-origin: top center; }
.activity-detail-scene .activity-svg-children .play-ball { animation: detail-play-ball 1.5s ease-in-out infinite; }
.activity-detail-scene .activity-svg-children .play-star { animation: detail-target 1.5s ease-in-out infinite; }
.activity-detail-scene .activity-svg-more .paddle-left { animation: activity-paddle-left 0.7s ease-in-out infinite alternate; }
.activity-detail-scene .activity-svg-more .paddle-right { animation: activity-paddle-right 0.7s ease-in-out infinite alternate; }
.activity-detail-scene .activity-svg-more .ping-ball { animation: detail-ping-ball 1.4s linear infinite; }
.activity-detail-scene .activity-svg-more .ping-trail { animation: detail-path-draw 1.4s linear infinite; }

@keyframes activity-tennis-racket {
  0% { transform: rotate(-12deg); }
  55% { transform: rotate(15deg) translateX(3px); }
  100% { transform: rotate(0); }
}

@keyframes activity-tennis-ball {
  0% { opacity: 0; transform: translate(18px, -10px); }
  55% { opacity: 1; transform: translate(-16px, 20px); }
  100% { opacity: 1; transform: translate(0, 0); }
}

@keyframes activity-boule-roll {
  from { opacity: 0; transform: translateX(-25px) rotate(-90deg); }
  to { opacity: 1; transform: translateX(0) rotate(0); }
}

@keyframes activity-golf-ball {
  0% { transform: translate(0, 0); }
  45% { transform: translate(28px, -28px); }
  100% { transform: translate(52px, 2px); }
}

@keyframes activity-golf-flag {
  from { transform: skewY(-5deg); }
  to { transform: skewY(8deg); }
}

@keyframes activity-dumbbell {
  0% { transform: translateY(8px) rotate(-2deg); }
  60% { transform: translateY(-10px) rotate(2deg); }
  100% { transform: translateY(0); }
}

@keyframes activity-swing {
  from { transform: rotate(-4deg); }
  to { transform: rotate(5deg); }
}

@keyframes activity-play-ball {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-18px) rotate(90deg); }
}

@keyframes activity-paddle-left {
  from { transform: rotate(-8deg); }
  to { transform: rotate(12deg) translateX(2px); }
}

@keyframes activity-paddle-right {
  from { transform: rotate(9deg); }
  to { transform: rotate(-12deg) translateX(-2px); }
}

@keyframes activity-ping-ball {
  0% { transform: translate(-18px, 8px); }
  50% { transform: translate(18px, -7px); }
  100% { transform: translate(0, 0); }
}

@keyframes activity-modal-in {
  from { opacity: 0; transform: translateY(20px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes detail-tennis-racket {
  0%, 100% { transform: rotate(-16deg); }
  48% { transform: rotate(18deg) translateX(4px); }
}

@keyframes detail-tennis-ball {
  0% { transform: translate(26px, -12px); }
  48% { transform: translate(-22px, 22px); }
  100% { transform: translate(26px, -12px); }
}

@keyframes detail-path-draw {
  0% { opacity: 0; stroke-dasharray: 90; stroke-dashoffset: 90; }
  45%, 75% { opacity: 0.8; stroke-dasharray: 90; stroke-dashoffset: 0; }
  100% { opacity: 0; stroke-dasharray: 90; stroke-dashoffset: -90; }
}

@keyframes detail-boule {
  0%, 100% { transform: translateX(-8px) rotate(-25deg); }
  50% { transform: translateX(8px) rotate(25deg); }
}

@keyframes detail-target {
  0%, 100% { opacity: 0.15; transform: scale(0.7); }
  50% { opacity: 0.85; transform: scale(1.12); }
}

@keyframes detail-golf-ball {
  0%, 10% { transform: translate(0, 0); }
  55% { transform: translate(38px, -37px); }
  100% { transform: translate(55px, 2px); }
}

@keyframes detail-dumbbell {
  0%, 100% { transform: translateY(13px) rotate(-2deg); }
  50% { transform: translateY(-15px) rotate(2deg); }
}

@keyframes detail-swing {
  from { transform: rotate(-7deg); }
  to { transform: rotate(8deg); }
}

@keyframes detail-play-ball {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-25px) rotate(140deg); }
}

@keyframes detail-ping-ball {
  0% { transform: translate(-28px, 11px); }
  50% { transform: translate(28px, -10px); }
  100% { transform: translate(-28px, 11px); }
}

.mosaic {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-template-rows: 280px 280px;
  gap: 14px;
}

.mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mosaic img:first-child {
  grid-row: 1 / 3;
}

.mosaic img:last-child {
  grid-column: 2 / 4;
}

.table-wrap {
  overflow-x: auto;
}

.rates-table {
  width: 100%;
  margin-top: 65px;
  border-collapse: collapse;
  background: var(--white);
  box-shadow: var(--shadow);
}

.rates-table th,
.rates-table td {
  padding: 25px 28px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

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

.rates-table td:nth-child(n+2) {
  color: var(--green);
  font-family: var(--serif);
  font-size: 1.3rem;
  white-space: nowrap;
}

.rates-note {
  max-width: 810px;
  margin-top: 35px;
  color: var(--muted);
  font-size: 0.93rem;
}

.availability-calendar {
  padding-block: 62px;
  background: var(--warm);
  transition: padding 0.45s ease;
}

.availability-calendar.is-expanded {
  padding-block: 105px;
}

.availability-calendar.is-attached:not(.is-expanded) {
  padding: 0 0 62px;
  background: #fbfaf7;
}

.availability-calendar.is-attached:not(.is-expanded) .calendar-shell {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 0;
}

.availability-calendar.is-attached:not(.is-expanded) .calendar-preview-card {
  width: 100%;
  margin-top: -1px;
  border-right: 0;
  border-left: 0;
  border-top-color: transparent;
  box-shadow: none;
}

.availability-calendar.is-attached:not(.is-expanded) .calendar-preview-card:hover,
.availability-calendar.is-attached:not(.is-expanded) .calendar-preview-card:focus-visible {
  border-top-color: rgba(190, 137, 98, 0.75);
  box-shadow: inset 0 0 0 2px rgba(190, 137, 98, 0.35);
  transform: none;
}

.calendar-side-photo {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  margin: -1px 0 0;
  border: 1px solid var(--line);
  border-top-color: transparent;
}

.calendar-side-tennis {
  border-right: 0;
}

.calendar-side-pool {
  border-left: 0;
}

.calendar-side-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.calendar-side-photo::after {
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(transparent, rgba(28, 43, 37, 0.76));
  content: "";
}

.calendar-side-photo figcaption {
  position: absolute;
  z-index: 1;
  right: 22px;
  bottom: 20px;
  left: 22px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.28rem;
  text-shadow: 0 2px 12px rgba(18, 29, 25, 0.72);
}

.availability-calendar.is-attached:not(.is-expanded):hover .calendar-side-photo img {
  transform: scale(1.035);
}

.availability-calendar.is-expanded .calendar-side-photo {
  display: none;
}

.calendar-shell {
  display: flex;
  justify-content: center;
}

.calendar-preview-card {
  width: min(100%, 340px);
  overflow: hidden;
  padding: 0;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(39, 51, 47, 0.13);
  box-shadow: 0 18px 48px rgba(35, 55, 46, 0.12);
  cursor: pointer;
  text-align: left;
  transition: border-color 0.3s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

.calendar-preview-card:hover,
.calendar-preview-card:focus-visible {
  border-color: rgba(190, 137, 98, 0.75);
  box-shadow: 0 24px 60px rgba(35, 55, 46, 0.18);
  transform: translateY(-6px);
}

.calendar-preview-card:focus-visible {
  outline: 3px solid #8c573d;
  outline-offset: 4px;
}

.mini-calendar {
  position: relative;
  display: block;
  min-height: 190px;
  padding: 22px 21px 18px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.98)),
    repeating-linear-gradient(90deg, transparent 0 39px, rgba(39, 51, 47, 0.04) 39px 40px);
  border-bottom: 1px solid var(--line);
}

.mini-calendar-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  margin-bottom: 16px;
  color: var(--green);
}

.mini-calendar-rings {
  display: flex;
  gap: 8px;
}

.mini-calendar-rings i {
  position: relative;
  display: block;
  width: 4px;
  height: 11px;
  background: var(--clay);
  border-radius: 4px;
}

.mini-calendar-rings i::after {
  position: absolute;
  left: -3px;
  bottom: -4px;
  width: 10px;
  height: 5px;
  border: 1px solid var(--clay);
  border-radius: 50%;
  content: "";
}

.mini-calendar-month {
  font-family: var(--serif);
  font-size: 1.05rem;
  text-transform: capitalize;
}

.mini-calendar-nav {
  justify-self: end;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 1.05rem;
}

.mini-calendar-week,
.mini-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

.mini-calendar-week {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.49rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.mini-calendar-grid {
  gap: 3px;
}

.mini-calendar-cell {
  position: relative;
  display: grid;
  height: 20px;
  color: #53605b;
  border-radius: 2px;
  place-items: center;
  font-size: 0.53rem;
}

.mini-calendar-cell.is-muted {
  opacity: 0.18;
}

.mini-calendar-cell.is-booked {
  color: #855639;
  background: rgba(190, 137, 98, 0.19);
  animation: mini-booking-pulse 4.8s ease-in-out infinite;
}

.mini-calendar-cell.is-booked:nth-child(8n + 1) {
  animation-delay: -1.6s;
}

.mini-calendar-cell.is-booked:nth-child(6n + 2) {
  animation-delay: -3.1s;
}

.mini-calendar-pointer {
  position: absolute;
  top: 97px;
  left: 55px;
  width: 8px;
  height: 8px;
  background: var(--green);
  border: 2px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(53, 86, 70, 0.24);
  animation: mini-calendar-scan 6.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  pointer-events: none;
}

.calendar-preview-copy {
  position: relative;
  display: block;
  padding: 20px 24px 22px;
}

.calendar-preview-copy::after {
  position: absolute;
  right: -25px;
  bottom: -50px;
  width: 115px;
  height: 115px;
  background: radial-gradient(circle, rgba(190, 137, 98, 0.2), transparent 68%);
  border-radius: 50%;
  content: "";
  transition: transform 0.4s ease;
}

.calendar-preview-card:hover .calendar-preview-copy::after,
.calendar-preview-card:focus-visible .calendar-preview-copy::after {
  transform: scale(1.18);
}

.calendar-preview-copy .eyebrow {
  display: block;
  margin: 0 0 7px;
  font-size: 0.59rem;
}

.calendar-preview-copy strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.42rem;
  font-weight: 400;
  line-height: 1.15;
}

.calendar-preview-copy > span:last-child {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-top: 13px;
  color: var(--green);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.calendar-preview-copy i {
  position: relative;
  z-index: 1;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: normal;
  transition: transform 0.25s ease;
}

.calendar-preview-card:hover .calendar-preview-copy i,
.calendar-preview-card:focus-visible .calendar-preview-copy i {
  transform: translate(3px, -3px);
}

.calendar-expanded-panel {
  position: relative;
  width: 100%;
  animation: calendar-panel-open 0.55s cubic-bezier(0.22, 0.75, 0.26, 1) both;
}

.calendar-expanded-panel[hidden],
.calendar-preview-card[hidden] {
  display: none;
}

.calendar-collapse {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 22px auto;
  padding: 8px 0;
  color: var(--green);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.calendar-collapse span {
  display: grid;
  width: 24px;
  height: 24px;
  border: 1px solid currentColor;
  border-radius: 50%;
  place-items: center;
  font-size: 1rem;
}

.calendar-collapse:hover,
.calendar-collapse:focus-visible {
  color: var(--clay);
}

@keyframes mini-booking-pulse {
  0%,
  100% {
    background: rgba(190, 137, 98, 0.15);
    box-shadow: inset 0 0 0 0 rgba(190, 137, 98, 0);
  }
  50% {
    background: rgba(190, 137, 98, 0.34);
    box-shadow: inset 0 -2px 0 rgba(190, 137, 98, 0.65);
  }
}

@keyframes mini-calendar-scan {
  0%,
  12% { opacity: 0; transform: translate(0, 0) scale(0.7); }
  18% { opacity: 1; transform: translate(0, 0) scale(1); }
  38% { opacity: 1; transform: translate(86px, 23px) scale(1); }
  58% { opacity: 1; transform: translate(173px, 46px) scale(1); }
  78% { opacity: 1; transform: translate(42px, 69px) scale(1); }
  88%,
  100% { opacity: 0; transform: translate(130px, 69px) scale(0.7); }
}

@keyframes calendar-panel-open {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.availability-calendar .section-heading {
  max-width: 780px;
  margin-inline: auto;
}

.calendar-frame {
  position: relative;
  overflow: hidden;
  min-height: 610px;
  margin-top: 45px;
  background: var(--white);
  border: 1px solid rgba(39, 51, 47, 0.12);
  box-shadow: var(--shadow);
}

.calendar-frame iframe {
  display: block;
  width: 100%;
  height: 610px;
  border: 0;
}

.calendar-frame iframe[hidden],
.calendar-consent[hidden] {
  display: none;
}

.calendar-consent {
  display: grid;
  min-height: 610px;
  place-items: center;
  align-content: center;
  gap: 14px;
  padding: 45px 24px;
  text-align: center;
  background:
    linear-gradient(rgba(245, 240, 232, 0.88), rgba(245, 240, 232, 0.94)),
    url("../images/paysage-gers.jpg") center / cover;
}

.calendar-consent svg {
  width: 58px;
  height: 58px;
  color: var(--green);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.calendar-consent h3 {
  margin: 8px 0 0;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.calendar-consent p {
  max-width: 620px;
  margin: 0 0 8px;
  color: var(--muted);
}

.calendar-consent .text-link {
  margin-top: 4px;
}

.calendar-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
}

.small-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 900px;
}

.small-card-grid article {
  padding: 38px 25px;
  text-align: center;
  background: var(--cream);
}

.small-card-grid h3 {
  min-height: 55px;
}

.small-card-grid strong {
  display: block;
  color: var(--clay);
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 400;
}

.reservation-panel {
  padding-block: 85px;
  color: var(--white);
  background: var(--green-dark);
}

.reservation-panel .shell {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}

.reservation-panel h2 {
  margin-bottom: 18px;
}

.reservation-panel p:last-child {
  margin-bottom: 0;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: none;
  gap: 20px;
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.destination-card {
  position: relative;
  overflow: hidden;
  min-height: 275px;
  padding: 40px;
  color: var(--ink);
  background: var(--white);
  border: 0;
  cursor: pointer;
  text-align: left;
  isolation: isolate;
}

.destination-card::before,
.destination-card::after {
  position: absolute;
  z-index: -2;
  inset: 0;
  content: "";
  transition: opacity 0.35s ease, transform 0.5s ease;
}

.destination-card::before {
  background: var(--destination-image) center / cover;
  opacity: 0.2;
}

.destination-card::after {
  z-index: -1;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.97) 20%, rgba(255, 255, 255, 0.72) 100%);
}

.destination-card:hover::before,
.destination-card:focus-visible::before {
  animation: destination-photo-reveal 1.65s ease both;
}

.destination-card:hover::after,
.destination-card:focus-visible::after {
  animation: destination-wash-away 1.65s ease both;
}

.destination-card:hover .destination-card-copy,
.destination-card:focus-visible .destination-card-copy {
  animation: destination-copy-reveal 1.65s ease both;
}

.destination-card:hover .destination-eyebrow,
.destination-card:focus-visible .destination-eyebrow {
  animation: destination-eyebrow-reveal 1.65s ease both;
}

.destination-card:hover .destination-card-action,
.destination-card:focus-visible .destination-card-action {
  animation: destination-action-reveal 1.65s ease both;
}

.destination-card:focus-visible {
  z-index: 1;
  outline: 3px solid var(--clay);
  outline-offset: -3px;
}

.destination-card-copy,
.destination-eyebrow,
.destination-title,
.destination-text,
.destination-card-action {
  display: block;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.destination-eyebrow {
  color: var(--clay);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.destination-title {
  margin: 18px 0;
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1.15;
}

.destination-text {
  line-height: 1.75;
}

.destination-card-action {
  margin-top: 25px;
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.destination-card-action span {
  display: inline;
  margin-left: 7px;
  font-size: 1rem;
  transition: margin-left 0.2s ease;
}

.destination-card:hover .destination-card-action span,
.destination-card:focus-visible .destination-card-action span {
  margin-left: 12px;
}

.destination-hiker {
  position: absolute;
  right: 20px;
  bottom: 15px;
  width: 86px;
  color: var(--green);
  opacity: 0;
  pointer-events: none;
  transform: translateX(18px);
}

.destination-hiker svg {
  display: block;
  width: 100%;
  overflow: visible;
}

.hiker-path,
.hiker-hat,
.hiker-body,
.hiker-leg,
.hiker-arm,
.hiker-camera,
.hiker-lens,
.hiker-flash path,
.hiker-flash circle {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hiker-path {
  opacity: 0.35;
  stroke-width: 1.5;
}

.hiker-head {
  fill: var(--clay);
}

.hiker-hat,
.hiker-body,
.hiker-leg,
.hiker-arm {
  stroke-width: 3;
}

.hiker-pack {
  fill: var(--clay);
  stroke: var(--white);
  stroke-width: 1.5;
}

.hiker-camera {
  fill: var(--green);
  stroke-width: 2;
}

.hiker-lens {
  stroke: var(--white);
  stroke-width: 1.5;
}

.hiker-flash {
  color: #c48645;
  opacity: 0;
  transform-origin: 85px 26px;
}

.hiker-flash path,
.hiker-flash circle {
  stroke-width: 2;
}

.hiker-leg {
  transform-box: fill-box;
  transform-origin: top center;
}

.destination-card:hover .destination-hiker,
.destination-card:focus-visible .destination-hiker {
  animation: hiker-arrives 1.65s cubic-bezier(0.22, 0.75, 0.26, 1) both;
}

.destination-card:hover .hiker-leg-front,
.destination-card:focus-visible .hiker-leg-front {
  animation: hiker-step-front 0.36s ease-in-out 2 alternate;
}

.destination-card:hover .hiker-leg-back,
.destination-card:focus-visible .hiker-leg-back {
  animation: hiker-step-back 0.36s ease-in-out 2 alternate;
}

.destination-card:hover .hiker-camera-arm,
.destination-card:focus-visible .hiker-camera-arm {
  animation: hiker-raises-camera 1.65s ease both;
  transform-origin: 60px 32px;
}

.destination-card:hover .hiker-flash,
.destination-card:focus-visible .hiker-flash {
  animation: hiker-takes-photo 1.65s ease both;
}

@keyframes hiker-arrives {
  0% {
    color: var(--green);
    opacity: 0;
    transform: translateX(20px);
  }
  18% {
    opacity: 0.92;
  }
  48% {
    color: var(--green);
    opacity: 0.92;
    transform: translateX(0);
  }
  78%,
  100% {
    color: var(--white);
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes destination-photo-reveal {
  0% {
    opacity: 0.2;
    transform: scale(1);
  }
  22%,
  70% {
    opacity: 0.38;
    transform: scale(1.045);
  }
  78% {
    opacity: 0.78;
  }
  100% {
    opacity: 0.96;
    transform: scale(1.065);
  }
}

@keyframes destination-wash-away {
  0%,
  70% {
    opacity: 1;
  }
  78% {
    opacity: 0.42;
  }
  100% {
    opacity: 0.08;
  }
}

@keyframes destination-copy-reveal {
  0%,
  70% {
    color: var(--ink);
    text-shadow: none;
  }
  80%,
  100% {
    color: var(--white);
    text-shadow: 0 2px 12px rgba(18, 29, 25, 0.9);
  }
}

@keyframes destination-eyebrow-reveal {
  0%,
  70% {
    color: var(--clay);
    text-shadow: none;
  }
  80%,
  100% {
    color: var(--white);
    text-shadow: 0 2px 10px rgba(18, 29, 25, 0.95);
  }
}

@keyframes destination-action-reveal {
  0%,
  70% {
    color: var(--green);
    text-shadow: none;
  }
  80%,
  100% {
    color: var(--white);
    text-shadow: 0 2px 10px rgba(18, 29, 25, 0.95);
  }
}

@keyframes hiker-step-front {
  from { transform: rotate(13deg); }
  to { transform: rotate(-10deg); }
}

@keyframes hiker-step-back {
  from { transform: rotate(-12deg); }
  to { transform: rotate(10deg); }
}

@keyframes hiker-raises-camera {
  0%,
  42% {
    transform: translate(-3px, 6px) rotate(13deg);
  }
  62%,
  100% {
    transform: translate(0, 0) rotate(0);
  }
}

@keyframes hiker-takes-photo {
  0%,
  68%,
  79%,
  100% {
    opacity: 0;
    transform: scale(0.65);
  }
  72% {
    opacity: 1;
    transform: scale(1.18);
  }
}

.destination-credits {
  margin-top: 24px;
  padding: 18px 22px;
  color: var(--muted);
  background: var(--cream);
  font-size: 0.78rem;
}

.destination-credits summary {
  color: var(--green);
  cursor: pointer;
  font-weight: 700;
}

.destination-credits p {
  margin: 14px 0 8px;
}

.destination-credits ul {
  columns: 2;
  margin: 0;
  padding-left: 18px;
}

.destination-credits li {
  margin-bottom: 6px;
  break-inside: avoid;
}

.destination-credits a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.destination-section-compact-end {
  padding-bottom: clamp(28px, 4vw, 52px);
}

.destination-section-compact-end + .gers-outdoor-section {
  padding-top: clamp(28px, 4vw, 52px);
}

.gers-outdoor-layout {
  align-items: stretch;
}

.gers-outdoor-layout > div {
  align-self: center;
}

.outdoor-activity-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 30px;
}

.outdoor-activity-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 68px;
  align-items: center;
  width: 100%;
  min-height: 84px;
  overflow: hidden;
  padding: 13px 10px 13px 18px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(63, 91, 82, 0.25);
  border-radius: 3px;
  box-shadow: 0 5px 16px rgba(25, 39, 34, 0.055);
  cursor: pointer;
  text-align: left;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.outdoor-activity-card::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(201, 125, 84, 0.1), transparent 62%);
  content: "";
  opacity: 0;
  transform: translateX(-25%);
  transition: opacity 0.3s ease, transform 0.45s ease;
}

.outdoor-activity-card:hover,
.outdoor-activity-card:focus-visible {
  z-index: 1;
  color: var(--green);
  border-color: rgba(201, 125, 84, 0.85);
  box-shadow: 0 13px 28px rgba(25, 39, 34, 0.13);
  transform: translateY(-3px);
}

.outdoor-activity-card:focus-visible {
  outline: 3px solid #8c573d;
  outline-offset: 4px;
}

.outdoor-activity-card:hover::before,
.outdoor-activity-card:focus-visible::before {
  opacity: 1;
  transform: translateX(0);
}

.outdoor-activity-copy,
.outdoor-activity-animation {
  position: relative;
  z-index: 1;
}

.outdoor-activity-copy {
  min-width: 0;
}

.outdoor-activity-copy strong,
.outdoor-activity-copy small {
  display: block;
}

.outdoor-activity-copy strong {
  font-family: var(--serif);
  font-size: clamp(0.92rem, 1.1vw, 1.06rem);
  font-weight: 600;
  line-height: 1.2;
}

.outdoor-activity-copy small {
  margin-top: 7px;
  color: var(--clay-dark);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.outdoor-activity-copy small span {
  display: inline-block;
  margin-left: 4px;
  transition: transform 0.25s ease;
}

.outdoor-activity-card:hover .outdoor-activity-copy small span,
.outdoor-activity-card:focus-visible .outdoor-activity-copy small span {
  transform: translateX(4px);
}

.outdoor-activity-animation {
  display: grid;
  place-items: center;
  justify-self: end;
  width: 62px;
  height: 54px;
  color: var(--green);
  background: rgba(63, 91, 82, 0.07);
  border-radius: 50%;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.outdoor-activity-card:hover .outdoor-activity-animation,
.outdoor-activity-card:focus-visible .outdoor-activity-animation {
  color: var(--clay-dark);
  background: rgba(255, 255, 255, 0.72);
  transform: scale(1.05);
}

.outdoor-activity-animation svg {
  display: block;
  width: 50px;
  height: 36px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.1;
}

.outdoor-activity-note {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.outdoor-activity-credits {
  margin-top: clamp(28px, 4vw, 52px);
}

.outdoor-wheel,
.outdoor-golf-ball,
.outdoor-note-head {
  fill: var(--white);
}

.outdoor-water-line,
.outdoor-wave,
.outdoor-golf-flight {
  stroke-dasharray: 5 5;
}

.outdoor-activity-card:hover .outdoor-wheel,
.outdoor-activity-card:focus-visible .outdoor-wheel {
  animation: outdoor-wheel-turn 0.7s linear infinite;
  transform-box: fill-box;
  transform-origin: center;
}

.outdoor-activity-card:hover .outdoor-bike,
.outdoor-activity-card:focus-visible .outdoor-bike {
  animation: outdoor-bike-ride 0.7s ease-in-out infinite alternate;
}

.outdoor-activity-card:hover .outdoor-boat,
.outdoor-activity-card:focus-visible .outdoor-boat {
  animation: outdoor-boat-bob 1.2s ease-in-out infinite;
}

.outdoor-activity-card:hover .outdoor-paddle,
.outdoor-activity-card:focus-visible .outdoor-paddle {
  animation: outdoor-paddle-stroke 1.2s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}

.outdoor-activity-card:hover .outdoor-water-line,
.outdoor-activity-card:focus-visible .outdoor-water-line {
  animation: outdoor-dashes 1.1s linear infinite;
}

.outdoor-activity-card:hover .outdoor-horse-body,
.outdoor-activity-card:focus-visible .outdoor-horse-body {
  animation: outdoor-horse-gallop 0.55s ease-in-out infinite alternate;
}

.outdoor-activity-card:hover .outdoor-horse-leg,
.outdoor-activity-card:focus-visible .outdoor-horse-leg {
  animation: outdoor-horse-step 0.55s ease-in-out infinite alternate;
  transform-box: fill-box;
  transform-origin: top center;
}

.outdoor-activity-card:hover .outdoor-horse-leg.leg-b,
.outdoor-activity-card:focus-visible .outdoor-horse-leg.leg-b {
  animation-direction: alternate-reverse;
}

.outdoor-activity-card:hover .outdoor-horse-tail,
.outdoor-activity-card:focus-visible .outdoor-horse-tail {
  animation: outdoor-horse-tail 0.7s ease-in-out infinite alternate;
  transform-box: fill-box;
  transform-origin: right center;
}

.outdoor-activity-card:hover .outdoor-club,
.outdoor-activity-card:focus-visible .outdoor-club {
  animation: outdoor-golf-swing 1.35s cubic-bezier(0.52, 0, 0.3, 1) infinite;
  transform-box: fill-box;
  transform-origin: top left;
}

.outdoor-activity-card:hover .outdoor-golf-ball,
.outdoor-activity-card:focus-visible .outdoor-golf-ball {
  animation: outdoor-golf-shot 1.35s ease-in-out infinite;
}

.outdoor-activity-card:hover .outdoor-golf-flight,
.outdoor-activity-card:focus-visible .outdoor-golf-flight {
  animation: outdoor-dashes 1.35s linear infinite;
}

.outdoor-activity-card:hover .outdoor-fishing-rod,
.outdoor-activity-card:focus-visible .outdoor-fishing-rod {
  animation: outdoor-rod-bend 1.4s ease-in-out infinite alternate;
  transform-box: fill-box;
  transform-origin: left bottom;
}

.outdoor-activity-card:hover .outdoor-float,
.outdoor-activity-card:focus-visible .outdoor-float {
  animation: outdoor-float-bob 0.9s ease-in-out infinite alternate;
}

.outdoor-activity-card:hover .outdoor-fish,
.outdoor-activity-card:focus-visible .outdoor-fish {
  animation: outdoor-fish-swim 1.4s ease-in-out infinite;
}

.outdoor-activity-card:hover .outdoor-wave,
.outdoor-activity-card:focus-visible .outdoor-wave {
  animation: outdoor-dashes 1.1s linear infinite;
}

.outdoor-activity-card:hover .wave-b,
.outdoor-activity-card:focus-visible .wave-b {
  animation-direction: reverse;
}

.outdoor-activity-card:hover .outdoor-swimmer,
.outdoor-activity-card:focus-visible .outdoor-swimmer {
  animation: outdoor-swimmer-stroke 1.1s ease-in-out infinite alternate;
}

.outdoor-activity-card:hover .outdoor-steam,
.outdoor-activity-card:focus-visible .outdoor-steam {
  animation: outdoor-steam-rise 1.8s ease-in-out infinite;
}

.outdoor-activity-card:hover .steam-b,
.outdoor-activity-card:focus-visible .steam-b {
  animation-delay: -0.6s;
}

.outdoor-activity-card:hover .steam-c,
.outdoor-activity-card:focus-visible .steam-c {
  animation-delay: -1.2s;
}

.outdoor-activity-card:hover .outdoor-reel,
.outdoor-activity-card:focus-visible .outdoor-reel {
  animation: outdoor-reel-spin 2.4s linear infinite;
  transform-box: fill-box;
  transform-origin: center;
}

.outdoor-activity-card:hover .outdoor-note,
.outdoor-activity-card:focus-visible .outdoor-note,
.outdoor-activity-card:hover .outdoor-note-head,
.outdoor-activity-card:focus-visible .outdoor-note-head {
  animation: outdoor-note-dance 0.9s ease-in-out infinite alternate;
}

@keyframes outdoor-wheel-turn {
  to { transform: rotate(360deg); }
}

@keyframes outdoor-bike-ride {
  to { transform: translateY(-2px); }
}

@keyframes outdoor-boat-bob {
  50% { transform: translateY(3px) rotate(-1deg); }
}

@keyframes outdoor-paddle-stroke {
  0%, 100% { transform: rotate(-9deg); }
  50% { transform: rotate(13deg); }
}

@keyframes outdoor-dashes {
  to { stroke-dashoffset: -20; }
}

@keyframes outdoor-horse-gallop {
  to { transform: translateY(-3px); }
}

@keyframes outdoor-horse-step {
  to { transform: rotate(13deg); }
}

@keyframes outdoor-horse-tail {
  to { transform: rotate(-12deg); }
}

@keyframes outdoor-golf-swing {
  0%, 25% { transform: rotate(-26deg); }
  55%, 100% { transform: rotate(18deg); }
}

@keyframes outdoor-golf-shot {
  0%, 42% { opacity: 1; transform: translate(0, 0); }
  72%, 100% { opacity: 0; transform: translate(13px, -18px); }
}

@keyframes outdoor-rod-bend {
  to { transform: rotate(-4deg) skewX(-3deg); }
}

@keyframes outdoor-float-bob {
  to { transform: translateY(3px); }
}

@keyframes outdoor-fish-swim {
  0%, 100% { opacity: 0.45; transform: translateX(-2px); }
  50% { opacity: 1; transform: translateX(3px); }
}

@keyframes outdoor-swimmer-stroke {
  to { transform: translateX(7px) rotate(-3deg); }
}

@keyframes outdoor-steam-rise {
  0% { opacity: 0; transform: translateY(5px) scaleY(0.8); }
  40% { opacity: 1; }
  100% { opacity: 0; transform: translateY(-7px) scaleY(1.12); }
}

@keyframes outdoor-reel-spin {
  to { transform: rotate(360deg); }
}

@keyframes outdoor-note-dance {
  to { transform: translateY(-4px); }
}

@media (max-width: 700px) {
  .gers-outdoor-section {
    overflow: hidden;
  }

  .gers-outdoor-layout {
    gap: 32px;
  }

  .gers-outdoor-layout > img {
    min-height: 280px;
    max-height: 340px;
  }

  .outdoor-activity-grid {
    grid-template-columns: 1fr;
    gap: 9px;
    margin-top: 24px;
  }

  .outdoor-activity-card {
    grid-template-columns: minmax(0, 1fr) 62px;
    min-height: 80px;
    padding: 12px 9px 12px 16px;
    touch-action: manipulation;
  }

  .outdoor-activity-animation {
    width: 58px;
    height: 50px;
  }

  .outdoor-activity-copy strong {
    overflow-wrap: anywhere;
    font-size: 1rem;
  }

  .outdoor-activity-note {
    margin-top: 20px;
  }
}

@media (hover: none) and (pointer: coarse) {
  .outdoor-activity-card:hover {
    color: var(--ink);
    border-color: rgba(63, 91, 82, 0.25);
    box-shadow: 0 5px 16px rgba(25, 39, 34, 0.055);
    transform: none;
  }

  .outdoor-activity-card:hover::before {
    opacity: 0;
  }

  .outdoor-activity-card:hover .outdoor-activity-animation {
    color: var(--green);
    background: rgba(63, 91, 82, 0.07);
    transform: none;
  }

  .outdoor-activity-card:hover .outdoor-activity-animation * {
    animation: none;
  }

  .outdoor-activity-card:active {
    color: var(--green);
    border-color: rgba(201, 125, 84, 0.85);
    background: var(--cream);
    transform: scale(0.99);
  }
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(55px, 9vw, 125px);
}

.contact-list {
  margin-top: 40px;
  border-top: 1px solid var(--line);
}

.contact-list a {
  display: flex;
  flex-direction: column;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
}

.contact-list span {
  color: var(--muted);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-list strong {
  margin-top: 4px;
  color: var(--green);
  font-family: var(--serif);
  font-size: clamp(1.08rem, 1.7vw, 1.45rem);
  font-weight: 400;
  overflow-wrap: anywhere;
}

.inquiry-form {
  position: relative;
  overflow: hidden;
  padding: clamp(35px, 5vw, 60px);
  background: var(--cream);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.inquiry-form label {
  display: block;
  margin-bottom: 22px;
  color: var(--green-dark);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.inquiry-form input,
.inquiry-form textarea {
  display: block;
  width: 100%;
  margin-top: 8px;
  padding: 13px 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(39, 51, 47, 0.38);
  border-radius: 0;
  outline: none;
  text-transform: none;
}

.inquiry-form textarea {
  padding-inline: 12px;
  border: 1px solid rgba(39, 51, 47, 0.28);
  resize: vertical;
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
  border-color: var(--clay);
}

.form-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.77rem;
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.inquiry-form .button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.inquiry-form > :not(.form-success-card) {
  transition:
    opacity 0.35s ease,
    transform 0.35s ease,
    filter 0.35s ease;
}

.inquiry-form.is-sent > :not(.form-success-card) {
  pointer-events: none;
  opacity: 0;
  filter: blur(5px);
  transform: translateY(-10px);
}

.inquiry-form.is-sending [data-submit-button]::after {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-left: 10px;
  vertical-align: -2px;
  content: "";
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: form-spinner 0.75s linear infinite;
}

.form-success-card {
  position: absolute;
  z-index: 3;
  inset: -1px;
  display: grid;
  place-items: center;
  min-height: calc(100% + 2px);
  padding: clamp(35px, 6vw, 70px);
  overflow: hidden;
  color: var(--white);
  text-align: center;
  background-image:
    linear-gradient(180deg, rgba(17, 31, 27, 0.4), rgba(17, 31, 27, 0.82)),
    radial-gradient(circle at 50% 25%, transparent, rgba(17, 31, 27, 0.32)),
    url("../images/carte-postale-contact.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.06);
  transition:
    opacity 0.65s ease 0.12s,
    transform 1.4s cubic-bezier(0.2, 0.75, 0.25, 1),
    visibility 0s linear 0.8s;
}

.form-success-card::after {
  position: absolute;
  inset: -30%;
  content: "";
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(255, 255, 255, 0.25) 48%,
    transparent 61%
  );
  transform: translateX(-75%);
}

.form-success-shade {
  display: none;
}

.form-success-content {
  position: relative;
  z-index: 2;
  max-width: 480px;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.55s ease 0.4s,
    transform 0.7s cubic-bezier(0.2, 0.75, 0.25, 1) 0.4s;
}

.form-success-content .script-line {
  margin: 18px 0 6px;
  color: #f2c8aa;
  font-size: clamp(1.7rem, 4vw, 2.6rem);
}

.form-success-content h3 {
  margin-bottom: 16px;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 400;
}

.form-success-content p:not(.script-line) {
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.88);
}

.success-mark {
  width: 66px;
  height: 66px;
  fill: none;
  stroke: var(--white);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.success-mark circle,
.success-mark path {
  stroke-dasharray: 190;
  stroke-dashoffset: 190;
}

.success-mark path {
  stroke-dasharray: 52;
  stroke-dashoffset: 52;
}

.inquiry-form.is-sent .form-success-card {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  transition-delay: 0.12s, 0.12s, 0s;
}

.inquiry-form.is-sent .form-success-card::after {
  animation: postcard-shimmer 1.4s ease 0.45s both;
}

.inquiry-form.is-sent .form-success-content {
  opacity: 1;
  transform: translateY(0);
}

.inquiry-form.is-sent .success-mark circle {
  animation: draw-success 0.65s ease 0.5s forwards;
}

.inquiry-form.is-sent .success-mark path {
  animation: draw-success 0.5s ease 0.95s forwards;
}

@keyframes form-spinner {
  to { transform: rotate(360deg); }
}

@keyframes postcard-shimmer {
  from { transform: translateX(-75%); }
  to { transform: translateX(75%); }
}

@keyframes draw-success {
  to { stroke-dashoffset: 0; }
}

.form-status {
  min-height: 1.5em;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 600;
}

.form-status.is-success {
  color: #315f46;
}

.form-status.is-error {
  color: #9b3b32;
}

.access-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(55px, 9vw, 125px);
}

.access-grid img {
  width: 100%;
  min-height: 570px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.route-list {
  padding-left: 24px;
  margin-block: 28px;
}

.route-list li {
  padding: 7px 0 7px 10px;
}

.gps-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.gps-button {
  min-height: 42px;
  padding: 9px 15px;
  font-size: 0.66rem;
  letter-spacing: 0.09em;
}

.gps-button-waze {
  color: var(--green);
  background: transparent;
}

.gps-button-waze:hover {
  color: var(--white);
}

.photo-carousel-section {
  overflow: hidden;
  background: var(--cream);
}

.photo-carousel-shell {
  position: relative;
  max-width: 1060px;
}

.photo-carousel-viewport {
  overflow: hidden;
  background: var(--green-dark);
  box-shadow: var(--shadow);
}

.photo-carousel-track {
  display: flex;
  transition: transform 0.75s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}

.photo-carousel-slide {
  position: relative;
  flex: 0 0 100%;
  aspect-ratio: 16 / 9;
  margin: 0;
  overflow: hidden;
}

.photo-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-carousel-slide figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 45px 28px 22px;
  color: var(--white);
  background: linear-gradient(transparent, rgba(19, 29, 25, 0.78));
  font-family: var(--serif);
  font-size: 1.15rem;
  pointer-events: none;
}

.photo-carousel-arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  padding: 0 0 5px;
  color: var(--white);
  background: rgba(22, 31, 28, 0.76);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  font-family: var(--serif);
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.2s ease, transform 0.2s ease;
}

.photo-carousel-arrow:hover {
  background: var(--clay);
  transform: translateY(-50%) scale(1.06);
}

.photo-carousel-arrow.previous {
  left: -26px;
}

.photo-carousel-arrow.next {
  right: -26px;
}

.photo-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 27px;
}

.photo-carousel-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  background: rgba(63, 91, 82, 0.28);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.photo-carousel-dots button.is-active {
  background: var(--green);
  transform: scale(1.4);
}

img.is-zoomable {
  cursor: zoom-in;
  transition: filter 0.25s ease;
}

img.is-zoomable:hover {
  filter: brightness(0.88);
}

.background-zoom {
  position: absolute;
  z-index: 5;
  right: 38px;
  bottom: 32px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0 0 3px;
  color: var(--white);
  background: rgba(12, 18, 16, 0.68);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  font-size: 1.35rem;
  cursor: zoom-in;
  transition: background 0.2s ease, transform 0.2s ease;
}

.background-zoom:hover {
  background: var(--clay);
  transform: scale(1.06);
}

.hero-slide .background-zoom {
  right: 39px;
  bottom: 76px;
}

.is-zoomable:focus-visible,
.background-zoom:focus-visible,
.photo-carousel-arrow:focus-visible,
.photo-carousel-dots button:focus-visible {
  outline: 3px solid #f1d8c4;
  outline-offset: 4px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-flow: dense;
  gap: 12px;
}

.gallery-item {
  position: relative;
  min-height: 245px;
  overflow: hidden;
  background: var(--cream);
}

.gallery-item:nth-child(7n+1),
.gallery-item:nth-child(11n+4) {
  grid-column: span 2;
}

.gallery-item:nth-child(8n+3) {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 0.55s ease, filter 0.55s ease;
}

.gallery-item span {
  position: absolute;
  right: 14px;
  bottom: 12px;
  left: 14px;
  padding: 7px 10px;
  color: var(--white);
  background: rgba(32, 47, 41, 0.72);
  font-size: 0.72rem;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.gallery-item:hover img {
  filter: brightness(0.82);
  transform: scale(1.035);
}

.gallery-item:hover span {
  opacity: 1;
  transform: none;
}

.lightbox {
  position: fixed;
  z-index: 9999;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 60px 90px;
  background: rgba(17, 25, 22, 0.94);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(1180px, 88vw);
  max-height: 76vh;
  object-fit: contain;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
}

.lightbox-content {
  display: grid;
  max-width: min(1180px, 88vw);
  max-height: calc(100vh - 90px);
}

.lightbox-details {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 5px 24px;
  padding: 16px 18px;
  color: var(--white);
  background: rgba(37, 54, 47, 0.98);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
}

.lightbox-details[hidden] {
  display: none;
}

.lightbox-kicker {
  margin-bottom: 2px;
  color: var(--sand);
  font-family: var(--serif);
  font-size: 1.15rem;
}

.lightbox-caption {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.83rem;
}

.lightbox-count {
  align-self: center;
  grid-row: 1 / 3;
  grid-column: 2;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.lightbox-credit {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.68rem;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.lightbox button {
  position: absolute;
  color: var(--white);
  background: transparent;
  border: 0;
  cursor: pointer;
}

.lightbox-close {
  top: 15px;
  right: 25px;
  font-size: 3rem;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  font-family: var(--serif);
  font-size: 4rem;
  transform: translateY(-50%);
}

.lightbox-prev { left: 25px; }
.lightbox-next { right: 25px; }

@media (max-width: 700px) {
  .lightbox {
    display: block;
    padding: 0;
    overflow: hidden;
    background: #111916;
  }

  .lightbox-content {
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    width: 100%;
    max-width: none;
    height: 100vh;
    height: 100dvh;
    max-height: none;
    padding-top: max(54px, env(safe-area-inset-top));
  }

  .lightbox img {
    align-self: center;
    width: 100%;
    max-width: none;
    height: 100%;
    max-height: none;
    padding: 8px 12px;
    object-fit: contain;
    box-shadow: none;
  }

  .lightbox-details {
    max-height: 29vh;
    max-height: 29dvh;
    padding: 13px 54px max(14px, env(safe-area-inset-bottom));
    overflow-y: auto;
    box-shadow: none;
  }

  .lightbox-close,
  .lightbox-prev,
  .lightbox-next {
    z-index: 3;
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    padding: 0;
    background: rgba(37, 54, 47, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    line-height: 1;
    touch-action: manipulation;
  }

  .lightbox-close {
    top: max(7px, env(safe-area-inset-top));
    right: 10px;
    font-size: 2.35rem;
  }

  .lightbox-prev,
  .lightbox-next {
    top: 43%;
    font-size: 2.7rem;
  }

  .lightbox-prev {
    left: 7px;
  }

  .lightbox-next {
    right: 7px;
  }

  .photo-carousel-slide {
    aspect-ratio: 4 / 3;
  }

  .photo-carousel-arrow {
    width: 44px;
    height: 44px;
    font-size: 2.15rem;
  }

  .photo-carousel-arrow.previous {
    left: 8px;
  }

  .photo-carousel-arrow.next {
    right: 8px;
  }

  .photo-carousel-slide figcaption {
    padding: 40px 18px 15px;
    font-size: 1rem;
  }

  .background-zoom,
  .hero-slide .background-zoom {
    right: 18px;
    bottom: 18px;
  }

  .hero-slide .background-zoom {
    bottom: 66px;
  }
}

.site-footer {
  padding-top: 85px;
  color: rgba(255, 255, 255, 0.7);
  background: #25362f;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.7fr 0.7fr;
  gap: 55px;
  padding-bottom: 65px;
}

.footer-brand {
  margin: 6px 0 18px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 2rem;
}

.footer-grid h2 {
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-grid a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 0.71rem;
  letter-spacing: 0.06em;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
}

.footer-legal button {
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.footer-legal a:hover,
.footer-legal button:hover {
  color: var(--white);
}

.legal-page {
  background: var(--cream);
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(230px, 0.38fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(35px, 6vw, 90px);
}

.legal-summary {
  position: sticky;
  top: 125px;
  padding: 28px;
  border-left: 4px solid var(--clay);
  background: #fff8e9;
  box-shadow: 0 15px 45px rgba(39, 51, 47, 0.08);
}

.legal-summary {
  border-left-color: var(--green);
  background: var(--white);
}

.legal-summary strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green-dark);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-summary p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
}

.legal-content {
  padding: clamp(32px, 5vw, 68px);
  background: var(--white);
  box-shadow: var(--shadow);
}

.legal-layout-single {
  grid-template-columns: minmax(0, 900px);
  justify-content: center;
}

.legal-content h2 {
  margin: 52px 0 16px;
  font-size: clamp(1.65rem, 2.4vw, 2.25rem);
}

.legal-content h2:first-of-type {
  margin-top: 28px;
}

.legal-content a {
  color: var(--green);
  text-decoration: underline;
  text-decoration-color: rgba(63, 91, 82, 0.35);
  text-underline-offset: 3px;
}

.legal-content .button {
  color: var(--white);
  text-decoration: none;
}

.legal-content code {
  padding: 2px 6px;
  background: var(--cream);
  border-radius: 3px;
  overflow-wrap: anywhere;
}

.legal-updated {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-details {
  margin: 25px 0 0;
}

.legal-details > div {
  display: grid;
  grid-template-columns: minmax(155px, 0.4fr) minmax(0, 1fr);
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.legal-details dt {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.legal-details dd {
  margin: 0;
}

.cookie-table {
  margin: 32px 0;
  border: 1px solid var(--line);
}

.cookie-row {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr 0.8fr;
}

.cookie-row + .cookie-row {
  border-top: 1px solid var(--line);
}

.cookie-row span {
  padding: 16px;
}

.cookie-row span + span {
  border-left: 1px solid var(--line);
}

.cookie-head {
  color: var(--white);
  background: var(--green);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mobile-booking-cta {
  display: none;
}

.cookie-banner {
  position: fixed;
  z-index: 10020;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: flex;
  width: min(1040px, calc(100% - 40px));
  max-height: calc(100vh - 40px);
  margin-inline: auto;
  padding: 24px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  overflow-y: auto;
  color: var(--white);
  background: rgba(37, 54, 47, 0.98);
  box-shadow: 0 22px 70px rgba(12, 20, 17, 0.4);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner-copy {
  max-width: 560px;
}

.cookie-banner-copy strong {
  display: block;
  margin-bottom: 4px;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
}

.cookie-banner-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.88rem;
  line-height: 1.55;
}

.cookie-banner-copy a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-banner-actions {
  display: flex;
  flex: none;
  gap: 10px;
}

.cookie-banner .button {
  padding: 13px 18px;
  white-space: nowrap;
}

.button-secondary {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.65);
}

.button-secondary:hover {
  color: var(--green-dark);
  background: var(--white);
}

@media (max-width: 1080px) {
  .main-nav ul {
    gap: 15px;
  }

  .main-nav a {
    font-size: 0.68rem;
  }

  .brand {
    min-width: 225px;
  }

  .feature-cards,
  .amenity-columns,
  .destination-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .amenity-columns article:last-child {
    grid-column: 1 / 3;
  }

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

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .footer-grid > div:last-child {
    grid-column: 2;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: min(100% - 36px, 720px);
  }

  .topbar {
    position: absolute;
  }

  .header-inner,
  .site-header.is-sticky .header-inner {
    min-height: 78px;
  }

  .brand-name {
    font-size: 1.35rem;
  }

  .brand-place {
    letter-spacing: 0.26em;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 1;
    display: grid;
    place-items: center;
    color: var(--white);
    background: #25362f;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s;
  }

  .main-nav.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  body.mobile-menu-open .site-header {
    position: fixed;
    inset: 0;
    min-height: 100vh;
    min-height: 100dvh;
    color: var(--white);
    background: #25362f;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  body.mobile-menu-open .site-header .header-inner {
    min-height: 78px;
  }

  body.mobile-menu-open .main-nav,
  .site-header.is-sticky .main-nav.is-open {
    background-color: #25362f;
    background-image:
      radial-gradient(circle at 15% 15%, rgba(190, 137, 98, 0.14), transparent 34%),
      linear-gradient(#25362f, #25362f);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 8px;
    padding: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    text-align: center;
  }

  .main-nav a {
    font-family: var(--serif);
    font-size: 1.55rem;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
  }

  .menu-toggle {
    z-index: 2;
  }

  .menu-toggle span:not(.sr-only) {
    transition: opacity 0.2s ease, transform 0.25s ease;
    transform-origin: center;
  }

  body.mobile-menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  body.mobile-menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  body.mobile-menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .main-nav.is-open + * {
    color: var(--white);
  }

  .home-hero {
    min-height: 650px;
  }

  .hero-copy {
    justify-content: flex-end;
    padding: 150px 0 105px;
  }

  .hero-copy h1,
  .hero-copy h2 {
    font-size: clamp(3rem, 13vw, 5rem);
  }

  .hero-scroll {
    display: none;
  }

  .hero-dots {
    right: 20px;
    bottom: 25px;
  }

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

  .stat-grid .stat-card:nth-child(2) {
    border-right: 0;
  }

  .stat-grid .stat-card:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .availability-calendar.is-attached:not(.is-expanded) .calendar-preview-card {
    width: 100%;
  }

  .split-feature,
  .story-grid,
  .content-split,
  .content-split.reverse,
  .two-column-intro,
  .contact-layout,
  .access-grid {
    grid-template-columns: 1fr;
  }

  .split-feature {
    min-height: 0;
  }

  .split-image {
    min-height: 520px;
  }

  .content-split.reverse img {
    order: 0;
  }

  .content-split img {
    min-height: 420px;
  }

  .full-photo-quote {
    background-attachment: scroll;
  }

  .info-panel {
    grid-template-columns: 1fr;
  }

  .info-panel img {
    min-height: 400px;
  }

  .pool-intro {
    grid-template-columns: 1fr;
  }

  .icon-card-grid,
  .destination-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reservation-panel .shell,
  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-actions {
    align-items: flex-start;
  }

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

  .footer-grid {
    grid-template-columns: 1.4fr 1fr;
  }

  .footer-grid > div:last-child {
    grid-column: auto;
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-summary {
    position: static;
  }

  .mobile-booking-cta {
    position: fixed;
    z-index: 9800;
    right: 16px;
    bottom: calc(16px + env(safe-area-inset-bottom));
    left: 16px;
    display: flex;
    width: min(460px, calc(100% - 32px));
    min-height: 56px;
    margin-inline: auto;
    padding: 13px 20px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--white);
    background: rgba(37, 54, 47, 0.96);
    box-shadow: 0 12px 35px rgba(18, 29, 25, 0.35);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-align: center;
    text-transform: uppercase;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .mobile-booking-cta svg {
    flex: none;
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
  }

  body.cookie-banner-open .mobile-booking-cta,
  body.lightbox-open .mobile-booking-cta {
    opacity: 0;
    pointer-events: none;
    transform: translateY(18px);
  }

  .site-footer {
    padding-bottom: calc(72px + env(safe-area-inset-bottom));
  }

  .cookie-banner {
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: calc(100% - 24px);
    max-height: calc(100vh - 24px);
    padding: 22px;
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .cookie-banner-actions {
    display: grid;
  }

  .cookie-banner .button {
    width: 100%;
    white-space: normal;
  }
}

@media (max-width: 560px) {
  :root {
    --shell: calc(100% - 30px);
  }

  body {
    font-size: 15px;
  }

  .activity-modal {
    padding: 15px;
  }

  .activity-modal-card {
    max-height: calc(100vh - 30px);
  }

  .activity-detail {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 55px 22px 28px;
  }

  .activity-detail-scene {
    min-height: 185px;
  }

  .activity-detail-photo,
  .activity-photo-placeholder {
    grid-column: auto;
  }

  .activity-detail-photo img {
    height: 245px;
  }

  .availability-calendar.is-attached:not(.is-expanded) .calendar-preview-card {
    width: 100%;
  }

  .availability-calendar.is-attached:not(.is-expanded) .calendar-shell {
    grid-template-columns: 1fr;
  }

  .calendar-side-photo {
    min-height: 230px;
  }

  .calendar-side-tennis {
    border-right: 1px solid var(--line);
  }

  .availability-calendar.is-attached:not(.is-expanded) .calendar-preview-card {
    border-right: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

  .calendar-side-pool {
    border-left: 1px solid var(--line);
  }

  .topbar-inner {
    justify-content: center;
  }

  .brand {
    min-width: 0;
  }

  .brand-name {
    font-size: 1.13rem;
  }

  .brand-place {
    font-size: 0.52rem;
  }

  .page-hero {
    min-height: 620px;
  }

  .hero-copy {
    padding-bottom: 80px;
  }

  .hero-copy > p:not(.script-line) {
    font-size: 0.98rem;
  }

  .feature-cards,
  .amenity-columns,
  .icon-card-grid,
  .destination-grid,
  .small-card-grid {
    grid-template-columns: 1fr;
  }

  .amenity-columns article:last-child {
    grid-column: auto;
  }

  .image-card {
    min-height: 430px;
  }

  .photo-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 280px);
  }

  .photo-grid .wide {
    grid-row: auto;
  }

  .mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 235px);
  }

  .mosaic img:first-child {
    grid-column: 1 / 3;
    grid-row: auto;
  }

  .mosaic img:last-child {
    grid-column: 1 / 3;
  }

  .field-row,
  .check-list.two {
    grid-template-columns: 1fr;
  }

  .rates-table th,
  .rates-table td {
    padding: 18px 16px;
  }

  .calendar-frame,
  .calendar-frame iframe {
    min-height: 560px;
    height: 560px;
  }

  .calendar-consent {
    min-height: 560px;
  }

  .calendar-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .calendar-actions .button,
  .calendar-actions .text-link {
    text-align: center;
  }

  .note-band .shell {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .access-grid img {
    min-height: 380px;
  }

  .gps-actions {
    gap: 8px;
  }

  .gps-button {
    flex: 1 1 145px;
    max-width: 190px;
    padding-inline: 12px;
  }

  .gallery-grid {
    display: block;
  }

  .gallery-item {
    display: block;
    min-height: 280px;
    margin-bottom: 12px;
  }

  .gallery-item span {
    opacity: 1;
    transform: none;
  }

  .lightbox {
    padding: 0;
  }

  .lightbox img {
    max-width: none;
    max-height: none;
  }

  .lightbox-content {
    max-width: none;
  }

  .lightbox-details {
    grid-template-columns: 1fr auto;
    padding: 13px 54px max(14px, env(safe-area-inset-bottom));
  }

  .lightbox-kicker {
    font-size: 1rem;
  }

  .lightbox-credit {
    grid-column: 1 / 3;
  }

  .destination-card {
    min-height: 255px;
    padding: 30px;
  }

  .destination-hiker {
    right: 14px;
    bottom: 12px;
    width: 76px;
  }

  .destination-credits ul {
    columns: 1;
  }

  .lightbox-prev { left: 7px; }
  .lightbox-next { right: 7px; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }

  .legal-content {
    padding: 28px 20px;
  }

  .legal-details > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .cookie-row {
    display: block;
    padding: 14px 16px;
  }

  .cookie-row span {
    display: block;
    padding: 2px 0;
  }

  .cookie-row span + span {
    border-left: 0;
  }

  .cookie-row span::before {
    color: var(--muted);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  .cookie-row:not(.cookie-head) span:nth-child(1)::before {
    content: "Service : ";
  }

  .cookie-row:not(.cookie-head) span:nth-child(2)::before {
    content: "Finalité : ";
  }

  .cookie-row:not(.cookie-head) span:nth-child(3)::before {
    content: "Déclenchement : ";
  }

  html[lang="en"] .cookie-row:not(.cookie-head) span:nth-child(2)::before {
    content: "Purpose: ";
  }

  html[lang="en"] .cookie-row:not(.cookie-head) span:nth-child(3)::before {
    content: "Triggered: ";
  }

  .cookie-head {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
