:root {
  --green-950: #07372b;
  --green-900: #0a4938;
  --green-800: #0d5c46;
  --green-700: #147156;
  --green-100: #dfece7;
  --sage-100: #edf3ef;
  --sage-200: #d7e3da;
  --sand-500: #b9a267;
  --sand-200: #e7dcc1;
  --ink-950: #14231f;
  --ink-800: #263b34;
  --ink-600: #52645e;
  --ink-400: #7b8b85;
  --cream-50: #fbfaf6;
  --cream-100: #f4f1e9;
  --white: #ffffff;
  --line: rgba(20, 35, 31, 0.12);
  --shadow-sm: 0 10px 30px rgba(18, 45, 36, 0.08);
  --shadow-md: 0 25px 60px rgba(18, 45, 36, 0.14);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --container: 1200px;
  --header-height: 86px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  color: var(--ink-950);
  background: var(--cream-50);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(20, 113, 86, 0.35);
  outline-offset: 4px;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.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: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 10px;
  color: var(--white);
  background: var(--green-900);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: background-color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(20, 35, 31, 0.08);
  background: rgba(251, 250, 246, 0.92);
  box-shadow: 0 8px 30px rgba(18, 45, 36, 0.06);
  backdrop-filter: blur(18px);
}

.header-inner {
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 208px;
}

.brand img {
  width: 100%;
  height: auto;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  position: relative;
  color: var(--ink-800);
  font-size: 0.91rem;
  font-weight: 680;
  letter-spacing: 0.01em;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 2px;
  background: var(--green-700);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.language-switcher {
  display: inline-flex;
  gap: 3px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
}

.language-switcher--mobile {
  display: none;
}

.language-switcher button {
  min-width: 33px;
  height: 32px;
  padding: 0 7px;
  border: 0;
  border-radius: 999px;
  color: var(--ink-600);
  background: transparent;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.language-switcher button.is-active {
  color: var(--white);
  background: var(--green-800);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  border-radius: 2px;
  background: var(--ink-950);
  transition: transform 180ms ease, opacity 180ms ease;
}

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

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

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 760;
  line-height: 1.1;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.button--small {
  min-height: 42px;
  padding: 10px 17px;
  font-size: 0.88rem;
}

.button--large {
  min-height: 56px;
  padding: 15px 24px;
}

.button--primary {
  color: var(--white);
  background: var(--green-800);
  box-shadow: 0 13px 28px rgba(13, 92, 70, 0.18);
}

.button--primary:hover {
  background: var(--green-700);
  box-shadow: 0 16px 34px rgba(13, 92, 70, 0.24);
}

.button--ghost {
  color: var(--ink-950);
  border-color: rgba(20, 35, 31, 0.17);
  background: rgba(255, 255, 255, 0.55);
}

.button--ghost:hover {
  border-color: rgba(20, 35, 31, 0.3);
  background: rgba(255, 255, 255, 0.9);
}

.button--dark {
  color: var(--white);
  background: var(--ink-950);
}

.button.is-disabled,
.button[aria-disabled="true"] {
  opacity: 0.62;
  cursor: not-allowed;
}

.hero {
  position: relative;
  min-height: 790px;
  padding: calc(var(--header-height) + 94px) 0 88px;
  overflow: hidden;
  background: linear-gradient(145deg, var(--cream-50) 0%, #f8f5ec 58%, #edf2ed 100%);
}

.hero-backdrop {
  position: absolute;
  width: 680px;
  height: 680px;
  right: -160px;
  top: -170px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, rgba(185, 162, 103, 0.22), transparent 44%),
    radial-gradient(circle at 62% 58%, rgba(13, 92, 70, 0.16), transparent 58%);
  filter: blur(2px);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto auto 0 -6%;
  width: 54%;
  height: 46%;
  opacity: 0.4;
  background-image: linear-gradient(rgba(20, 35, 31, 0.055) 1px, transparent 1px), linear-gradient(90deg, rgba(20, 35, 31, 0.055) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to top, black, transparent);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(430px, 0.98fr);
  align-items: center;
  gap: 72px;
}

.hero-copy {
  max-width: 650px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--green-700);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow--light {
  color: #bcd8ce;
}

.hero h1,
.section-heading h2,
.booking-intro h2,
.location-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(3.35rem, 6.2vw, 6.1rem);
}

.hero h1 span {
  display: block;
}

.text-accent {
  color: var(--green-800);
}

.hero-lead {
  max-width: 610px;
  margin: 28px 0 0;
  color: var(--ink-600);
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin: 34px 0 0;
  padding: 0;
  color: var(--ink-600);
  list-style: none;
  font-size: 0.88rem;
}

.hero-highlights li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sand-500);
  box-shadow: 0 0 0 5px rgba(185, 162, 103, 0.13);
}

.hero-visual {
  position: relative;
  min-height: 590px;
}

.visual-card {
  position: absolute;
  overflow: hidden;
  border: 7px solid rgba(255, 255, 255, 0.82);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  background: var(--sage-100);
}

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

.visual-card--main {
  inset: 18px 126px 34px 0;
  transform: rotate(-1.5deg);
}

.visual-card--small {
  width: 43%;
  height: 36%;
  right: 0;
  border-radius: 26px;
}

.visual-card--top {
  top: 0;
  transform: rotate(3.5deg);
}

.visual-card--bottom {
  bottom: 38px;
  transform: rotate(-3deg);
}

.photo-label {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  color: var(--white);
  background: rgba(7, 55, 43, 0.72);
  backdrop-filter: blur(8px);
  font-size: 0.72rem;
  font-weight: 780;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.visual-badge {
  position: absolute;
  z-index: 3;
  left: -28px;
  bottom: 6px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  width: 210px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 18px;
  color: var(--ink-800);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(16px);
  font-size: 0.75rem;
  font-weight: 680;
  line-height: 1.25;
}

.visual-badge__number {
  color: var(--green-800);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.15rem;
  line-height: 1;
}

.trust-strip {
  position: relative;
  z-index: 4;
  margin-top: -28px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid rgba(20, 35, 31, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
}

.trust-grid > div {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 14px;
  min-height: 104px;
  padding: 22px 28px;
}

.trust-grid > div + div {
  border-left: 1px solid var(--line);
}

.trust-icon {
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  border-radius: 14px;
  color: var(--green-800);
  background: var(--sage-100);
}

.trust-icon svg,
.address-card__icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.trust-grid strong {
  margin-bottom: 2px;
  font-size: 0.9rem;
}

.trust-grid div > div > span {
  color: var(--ink-600);
  font-size: 0.84rem;
}

.section {
  padding: 120px 0;
}

.section--intro {
  background: var(--cream-50);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.7fr);
  gap: 100px;
  align-items: start;
}

.section-heading h2,
.location-copy h2,
.booking-intro h2 {
  font-size: clamp(2.6rem, 4.6vw, 4.75rem);
  line-height: 1.04;
}

.intro-copy {
  padding-top: 34px;
  color: var(--ink-600);
  font-size: 1.06rem;
}

.intro-copy p {
  margin: 0;
}

.intro-copy p + p {
  margin-top: 20px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 70px;
}

.feature-card {
  position: relative;
  min-height: 300px;
  padding: 34px 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 14px 35px rgba(18, 45, 36, 0.05);
}

.feature-card--accent {
  color: var(--white);
  border-color: transparent;
  background: var(--green-900);
}

.feature-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  color: var(--green-800);
  background: var(--sage-100);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.feature-card--accent .feature-number {
  color: var(--green-950);
  background: var(--sand-200);
}

.feature-card h3 {
  max-width: 300px;
  margin: 54px 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  font-weight: 500;
  line-height: 1.15;
}

.feature-card p {
  margin: 0;
  color: var(--ink-600);
}

.feature-card--accent p {
  color: rgba(255, 255, 255, 0.72);
}

.section--gallery {
  background: var(--cream-100);
}

.section-header-row {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 0.46fr);
  gap: 70px;
  align-items: end;
}

.section-note {
  margin: 0;
  color: var(--ink-600);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  margin-top: 56px;
}

.gallery-card {
  position: relative;
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  border-radius: 26px;
  background: var(--sage-100);
}

.gallery-card--wide {
  min-height: 460px;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(.2,.8,.2,1);
}

.gallery-card:hover img {
  transform: scale(1.025);
}

.gallery-card figcaption {
  position: absolute;
  left: 20px;
  bottom: 20px;
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(7, 55, 43, 0.76);
  backdrop-filter: blur(8px);
  font-size: 0.77rem;
  font-weight: 780;
  letter-spacing: 0.04em;
}

.section--location {
  background: var(--white);
}

.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(430px, 1.05fr);
  align-items: stretch;
  gap: 70px;
}

.location-copy {
  padding: 28px 0;
}

.location-copy > p:not(.eyebrow) {
  max-width: 580px;
  margin: 26px 0 0;
  color: var(--ink-600);
  font-size: 1.06rem;
}

.address-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 15px;
  align-items: start;
  margin: 34px 0 28px;
  padding: 21px;
  border: 1px solid var(--line);
  border-radius: 18px;
  font-style: normal;
  background: var(--cream-50);
}

.address-card__icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  color: var(--green-800);
  background: var(--sage-100);
}

.map-art {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #e7ece6;
  box-shadow: inset 0 0 0 1px rgba(20, 35, 31, 0.08);
}

.map-grid {
  position: absolute;
  inset: 0;
  opacity: 0.55;
  background-image: linear-gradient(rgba(20, 35, 31, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(20, 35, 31, 0.08) 1px, transparent 1px);
  background-size: 54px 54px;
}

.map-art::before,
.map-art::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(1px);
}

.map-art::before {
  left: -180px;
  top: -70px;
  background: rgba(185, 162, 103, 0.22);
}

.map-art::after {
  right: -150px;
  bottom: -110px;
  background: rgba(13, 92, 70, 0.17);
}

.map-road {
  position: absolute;
  height: 18px;
  border: 4px solid rgba(255, 255, 255, 0.95);
  border-radius: 999px;
  background: #c5d0c8;
  box-shadow: 0 0 0 1px rgba(20, 35, 31, 0.08);
}

.map-road--one {
  width: 760px;
  left: -120px;
  top: 40%;
  transform: rotate(-25deg);
}

.map-road--two {
  width: 620px;
  left: 40px;
  top: 60%;
  transform: rotate(38deg);
}

.map-road--three {
  width: 430px;
  right: -80px;
  top: 18%;
  transform: rotate(78deg);
}

.map-pin {
  position: absolute;
  z-index: 4;
  left: 51%;
  top: 45%;
  width: 48px;
  height: 48px;
  border: 8px solid var(--white);
  border-radius: 50% 50% 50% 0;
  background: var(--green-800);
  box-shadow: 0 10px 25px rgba(7, 55, 43, 0.26);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.map-pin span {
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: var(--sand-200);
}

.map-label {
  position: absolute;
  z-index: 4;
  left: 51%;
  top: calc(45% + 55px);
  padding: 7px 10px;
  border-radius: 8px;
  color: var(--white);
  background: var(--green-950);
  transform: translateX(-50%);
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1.15;
  text-align: center;
}

.map-country {
  position: absolute;
  z-index: 2;
  color: rgba(20, 35, 31, 0.38);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.18em;
}

.map-country--fr {
  left: 30px;
  bottom: 25px;
}

.map-country--lu {
  right: 28px;
  top: 24px;
}

.section--booking {
  padding: 70px 0;
  background: var(--white);
}

.booking-shell {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
  padding: 64px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background:
    radial-gradient(circle at 15% 10%, rgba(185, 162, 103, 0.22), transparent 34%),
    linear-gradient(135deg, var(--green-950), var(--green-800));
  box-shadow: var(--shadow-md);
}

.booking-intro h2 {
  font-size: clamp(2.4rem, 4.2vw, 4.15rem);
}

.booking-intro p:not(.eyebrow) {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.platform-grid {
  display: grid;
  gap: 14px;
}

.platform-card {
  position: relative;
  display: grid;
  gap: 4px;
  min-height: 150px;
  padding: 26px 70px 26px 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.1);
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.platform-card:hover {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
}

.platform-card.is-disabled {
  opacity: 0.62;
  cursor: not-allowed;
}

.platform-card__kicker {
  color: #c6ddd4;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.platform-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
  font-weight: 500;
}

.platform-card > span:last-of-type {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
}

.platform-card svg {
  position: absolute;
  top: 50%;
  right: 28px;
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform: translateY(-50%);
}

.section--faq {
  background: var(--cream-50);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(430px, 1fr);
  gap: 90px;
  align-items: start;
}

.faq-grid .section-note {
  margin-top: 24px;
}

.accordion details {
  border-top: 1px solid var(--line);
}

.accordion details:last-child {
  border-bottom: 1px solid var(--line);
}

.accordion summary {
  position: relative;
  padding: 24px 50px 24px 0;
  cursor: pointer;
  list-style: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  line-height: 1.25;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary::before,
.accordion summary::after {
  content: "";
  position: absolute;
  right: 4px;
  top: 50%;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--green-800);
  transition: transform 180ms ease;
}

.accordion summary::after {
  transform: rotate(90deg);
}

.accordion details[open] summary::after {
  transform: rotate(0);
}

.accordion p {
  max-width: 670px;
  margin: -2px 0 24px;
  color: var(--ink-600);
}

.site-footer {
  padding: 76px 0 24px;
  color: rgba(255, 255, 255, 0.76);
  background: var(--ink-950);
}

.footer-main {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
  padding-bottom: 54px;
}

.footer-brand img {
  width: 245px;
  height: auto;
}

.footer-brand p {
  max-width: 360px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.footer-links > div {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-links strong {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 0.8rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
  transition: color 180ms ease;
}

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

.footer-links a[aria-disabled="true"] {
  opacity: 0.45;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
}

.noscript-message {
  position: fixed;
  z-index: 999;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 12px 16px;
  border-radius: 12px;
  color: var(--white);
  background: var(--ink-950);
  text-align: center;
}

/* Pages secondaires */
.simple-page {
  min-height: 100vh;
  padding-top: calc(var(--header-height) + 70px);
  background: var(--cream-50);
}

.simple-page__hero {
  padding: 70px 0 42px;
}

.simple-page__hero h1 {
  max-width: 850px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1;
}

.prose {
  max-width: 850px;
  padding: 0 0 110px;
}

.prose h2 {
  margin: 48px 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  font-weight: 500;
}

.prose p,
.prose li {
  color: var(--ink-600);
}

.prose a {
  color: var(--green-800);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.notice-box {
  margin: 28px 0;
  padding: 20px 22px;
  border: 1px solid rgba(185, 162, 103, 0.45);
  border-radius: 16px;
  background: rgba(231, 220, 193, 0.25);
}

@media (max-width: 1050px) {
  .header-inner {
    gap: 18px;
  }

  .main-nav {
    gap: 18px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(370px, 0.78fr);
    gap: 40px;
  }

  .visual-card--main {
    right: 88px;
  }

  .location-grid,
  .booking-shell {
    gap: 42px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 76px;
  }

  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .brand {
    width: 177px;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
    grid-column: 3;
    grid-row: 1;
  }

  .header-actions {
    justify-self: end;
    grid-column: 2;
    grid-row: 1;
  }

  .header-actions > .button {
    display: none;
  }

  .main-nav {
    position: fixed;
    z-index: 98;
    top: var(--header-height);
    left: 15px;
    right: 15px;
    display: grid;
    gap: 0;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(251, 250, 246, 0.98);
    box-shadow: var(--shadow-md);
    transform: translateY(-18px);
    opacity: 0;
    pointer-events: none;
    transition: transform 180ms ease, opacity 180ms ease;
  }

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

  .main-nav a {
    padding: 14px 8px;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .main-nav a::after {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 64px);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-visual {
    width: min(100%, 650px);
    min-height: 540px;
    margin-inline: auto;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid > div {
    min-height: 88px;
  }

  .trust-grid > div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .split-layout,
  .section-header-row,
  .location-grid,
  .booking-shell,
  .faq-grid,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .split-layout,
  .faq-grid,
  .footer-main {
    gap: 44px;
  }

  .intro-copy {
    padding-top: 0;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 255px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-card,
  .gallery-card--wide {
    min-height: 330px;
  }

  .location-grid {
    gap: 48px;
  }

  .map-art {
    min-height: 500px;
  }

  .booking-shell {
    padding: 48px;
  }

  .footer-links {
    max-width: 650px;
  }
}

@media (max-width: 620px) {
  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .header-actions {
    display: none;
  }

  .language-switcher--mobile {
    display: inline-flex;
    width: fit-content;
    margin-top: 10px;
  }

  .menu-toggle {
    grid-column: 2;
  }

  .hero {
    padding-bottom: 70px;
  }

  .hero h1 {
    font-size: clamp(3rem, 16vw, 4.6rem);
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-highlights {
    display: grid;
  }

  .hero-visual {
    min-height: 455px;
  }

  .visual-card {
    border-width: 5px;
    border-radius: 24px;
  }

  .visual-card--main {
    inset: 12px 68px 30px 0;
  }

  .visual-card--small {
    width: 41%;
    height: 32%;
    border-radius: 18px;
  }

  .visual-card--bottom {
    bottom: 46px;
  }

  .visual-badge {
    left: 8px;
    bottom: -8px;
    width: 185px;
  }

  .photo-label {
    left: 10px;
    bottom: 10px;
    padding: 6px 8px;
    font-size: 0.62rem;
  }

  .section {
    padding: 86px 0;
  }

  .section-heading h2,
  .location-copy h2,
  .booking-intro h2 {
    font-size: clamp(2.5rem, 12vw, 3.7rem);
  }

  .feature-grid {
    margin-top: 44px;
  }

  .feature-card {
    padding: 28px 24px;
  }

  .feature-card h3 {
    margin-top: 34px;
  }

  .section-header-row {
    gap: 22px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-card,
  .gallery-card--wide {
    min-height: 310px;
  }

  .map-art {
    min-height: 390px;
    border-radius: 24px;
  }

  .booking-shell {
    padding: 34px 24px;
    border-radius: 26px;
  }

  .platform-card {
    min-height: 136px;
    padding: 24px 60px 24px 22px;
  }

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

  .footer-bottom {
    flex-direction: column;
  }
}

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