@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("/assets/fonts/cormorant-garamond-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("/assets/fonts/cormorant-garamond-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400 700;
  font-display: optional;
  size-adjust: 101%;
  ascent-override: 93%;
  descent-override: 24%;
  line-gap-override: 0%;
  src: url("/assets/fonts/montserrat-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400 700;
  font-display: optional;
  size-adjust: 101%;
  ascent-override: 93%;
  descent-override: 24%;
  line-gap-override: 0%;
  src: url("/assets/fonts/montserrat-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Montserrat Fallback";
  font-style: normal;
  font-weight: 400 700;
  size-adjust: 101%;
  ascent-override: 93%;
  descent-override: 24%;
  line-gap-override: 0%;
  src: local("Arial");
}

:root {
  color-scheme: light;
  --ink: #6b3b25;
  --ink-deep: #38261e;
  --body: #403631;
  --muted: #8c6958;
  --paper: #f6eee8;
  --paper-home: #f8f1ec;
  --paper-soft: #fff8f2;
  --paper-experience: #f5ebe3;
  --paper-journal: #fbf7f2;
  --line: #ead8cd;
  --line-strong: #c99075;
  --terracotta: #cf7c61;
  --terracotta-dark: #aa6049;
  --white: #ffffff;
  --serif: "Cormorant Garamond", Didot, "Bodoni 72", Georgia, serif;
  --sans: Montserrat, "Montserrat Fallback", "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  --header-menu-column: clamp(318px, 23.592vw, 454px);
  --header-menu-height: clamp(76px, 5.6vw, 96px);
  --inner-menu-height: clamp(96px, 5.4vw, 104px);
  --menu-border: rgba(201, 144, 117, 0.46);
  --sticky-nav-offset: var(--header-menu-height);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--paper);
  scrollbar-gutter: stable;
  scroll-padding-top: var(--header-menu-height);
  scroll-behavior: smooth;
}

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

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}

body {
  min-width: 320px;
  min-height: 100vh;
  min-height: 100svh;
  margin: 0;
  overflow-x: hidden;
  color: var(--body);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 12px;
  line-height: 1.45;
}

body.home-page {
  --paper: var(--paper-home);
  --home-content-rail: 881px;
  --home-room-grid-gap: 46px;
  background: var(--paper);
}

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

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid rgba(170, 96, 73, 0.68);
  outline-offset: 4px;
}

h1,
h2,
h3,
p,
figure {
  margin: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

p,
li {
  text-wrap: pretty;
}

.site-shell {
  width: 100%;
  height: auto;
  margin: 0;
  overflow: hidden;
  border-right: 0;
  border-left: 0;
  background:
    linear-gradient(90deg, rgba(255, 251, 247, 0.66), rgba(246, 238, 232, 0.78) 42%, rgba(255, 251, 247, 0.72)),
    var(--paper);
}

body.home-page .site-shell {
  background: var(--paper);
}

@supports (content-visibility: auto) {
  .rooms-section,
  .services-section,
  .quote-band,
  .gallery-section,
  .story-section,
  .room-detail-section,
  .experience-reference-services,
  .experience-reference-cuisine,
  .experience-reference-gallery,
  .experience-reference-promises,
  .experience-reference-newsletter,
  .contact-panel,
  .contact-map,
  .legal-content,
  .journal-article,
  .rf-footer {
    content-visibility: auto;
    contain-intrinsic-size: auto 720px;
  }

  .rf-footer {
    contain-intrinsic-size: auto 520px;
  }

  @media (max-width: 899px) {
    .gallery-section,
    .story-section {
      content-visibility: visible;
      contain-intrinsic-size: none;
    }
  }
}

.privacy-notice {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 50;
  display: grid;
  width: min(420px, calc(100vw - 40px));
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(201, 144, 117, 0.52);
  border-radius: 8px;
  background: rgba(255, 250, 245, 0.98);
  box-shadow: 0 18px 44px rgba(56, 38, 30, 0.18);
  color: var(--body);
  transition: opacity 180ms ease, transform 180ms ease;
}

.privacy-notice--inline {
  position: relative;
  right: auto;
  bottom: auto;
  z-index: 1;
  width: min(520px, calc(100% - 32px));
  margin: 18px auto 4px;
}

.privacy-notice.is-hiding {
  opacity: 0;
  transform: translateY(12px);
}

.privacy-notice strong {
  display: block;
  color: var(--ink-deep);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.05;
}

.privacy-notice p {
  color: #5e4a41;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.65;
}

.privacy-notice-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.privacy-notice-button,
.privacy-notice-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.privacy-notice-button {
  border: 1px solid var(--terracotta);
  background: var(--terracotta);
  color: var(--white);
  cursor: pointer;
}

.privacy-notice-link {
  border: 1px solid rgba(201, 144, 117, 0.52);
  color: var(--ink);
}

@media (max-width: 720px) {
  .privacy-notice {
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom));
    width: min(360px, calc(100vw - 28px));
    gap: 10px;
    padding: 14px;
  }

  .privacy-notice--inline {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(520px, calc(100% - 28px));
    margin: 14px auto 6px;
  }

  .privacy-notice strong {
    font-size: 20px;
  }

  .privacy-notice p {
    font-size: 10.5px;
    line-height: 1.55;
  }

  .privacy-notice-button,
  .privacy-notice-link {
    min-height: 36px;
    padding: 0 16px;
  }
}

.hero-grid {
  position: relative;
  z-index: 50;
  display: grid;
  height: clamp(640px, 50vw, 860px);
  grid-template-columns: var(--header-menu-column) minmax(0, 1fr);
  grid-template-rows: var(--header-menu-height) 1fr;
  background: #ead4c5;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.hero-grid::before,
.hero-grid::after {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  content: "";
}

.hero-grid::before {
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 250, 245, 0) 0%, rgba(255, 250, 245, 0) 46%, rgba(73, 43, 27, 0.16) 100%);
}

.hero-grid::after {
  top: clamp(-180px, -8vw, -126px);
  left: clamp(-280px, -13vw, -190px);
  width: clamp(820px, 54vw, 1120px);
  height: clamp(420px, 32vw, 560px);
  background:
    radial-gradient(ellipse 58% 84% at 35% 36%, rgba(255, 250, 245, 0.98) 0%, rgba(255, 250, 245, 0.96) 48%, rgba(255, 250, 245, 0.78) 64%, rgba(255, 250, 245, 0.34) 82%, rgba(255, 250, 245, 0.08) 94%, rgba(255, 250, 245, 0) 100%),
    linear-gradient(90deg, rgba(255, 250, 245, 0.78) 0%, rgba(255, 250, 245, 0.46) 34%, rgba(255, 250, 245, 0.14) 62%, rgba(255, 250, 245, 0) 86%);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 74%, rgba(0, 0, 0, 0.58) 88%, rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(180deg, #000 0%, #000 74%, rgba(0, 0, 0, 0.58) 88%, rgba(0, 0, 0, 0) 100%);
}

.brand-panel {
  position: relative;
  display: grid;
  grid-row: 1 / span 2;
  place-items: start center;
  z-index: 2;
  overflow: visible;
  padding-top: 17px;
  border-right: 0;
  background: transparent;
}

.brand-panel::after {
  display: none;
}

.brand-panel img {
  position: relative;
  z-index: 1;
  width: clamp(250px, 16.8vw, 318px);
  max-width: none;
  height: auto;
  margin-top: -14px;
}

.site-nav {
  position: fixed;
  top: 0;
  right: 0;
  left: var(--header-menu-column);
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(12px, 1.2vw, 22px);
  height: var(--header-menu-height);
  padding: 0 clamp(36px, 3.6vw, 68px) 0 clamp(28px, 2.5vw, 48px);
  border-bottom: 1px solid var(--menu-border);
  background: var(--paper);
  color: #34302d;
  font-size: clamp(12px, 0.78vw, 13px);
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.site-nav::before {
  position: absolute;
  top: 0;
  bottom: -1px;
  left: -156px;
  z-index: 0;
  width: 156px;
  display: none;
  pointer-events: none;
  content: "";
  background: var(--paper);
}

body.nav-scrolled .site-nav::before {
  left: calc(-1 * (100vw - 100%));
  display: none;
  width: calc(100vw - 100%);
}

.site-nav > a,
.site-nav > button {
  z-index: 1;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  transition: color 160ms ease;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 8px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--terracotta);
  opacity: 0;
  transform: scaleX(0.35);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav .active::after,
.site-nav a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--terracotta-dark);
}

.site-nav .nav-whatsapp {
  display: inline-flex;
  width: 46px;
  min-width: 46px;
  height: 46px;
  flex: 0 0 46px;
  align-items: center;
  justify-content: center;
  margin-left: -4px;
  padding: 0;
  border-radius: 50%;
  background: #fff7ef;
  box-shadow:
    0 8px 22px rgba(73, 36, 23, 0.12),
    inset 0 0 0 1px rgba(213, 161, 139, 0.18);
  transition:
    background-color 260ms ease,
    box-shadow 420ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.site-nav .nav-whatsapp::after {
  display: none;
}

.site-nav .nav-whatsapp img {
  width: 34px;
  height: 34px;
  max-width: none;
  filter: none;
  opacity: 1;
  object-fit: contain;
}

.site-nav .nav-whatsapp:hover,
.site-nav .nav-whatsapp:focus-visible {
  background: #ffffff;
  box-shadow:
    0 10px 24px rgba(73, 36, 23, 0.16),
    inset 0 0 0 1px rgba(213, 161, 139, 0.24);
  transform: translateY(-1px);
}

.site-nav .nav-whatsapp-label {
  display: none;
}

.site-nav .nav-cta {
  display: inline-flex;
  width: clamp(112px, 7vw, 140px);
  height: clamp(44px, 3vw, 58px);
  align-items: center;
  justify-content: center;
  margin-left: 8px;
  border: 1px solid var(--terracotta);
  border-radius: 2px;
  background: var(--terracotta);
  box-shadow: 0 8px 22px rgba(74, 47, 31, 0.055);
  color: var(--white);
  font-size: clamp(10px, 0.72vw, 13px);
  font-weight: 700;
  line-height: 1;
  transition:
    background-color 260ms ease,
    border-color 260ms ease,
    box-shadow 460ms cubic-bezier(0.22, 1, 0.36, 1),
    color 260ms ease,
    transform 460ms cubic-bezier(0.22, 1, 0.36, 1);
}

.site-nav .nav-cta::after {
  display: none;
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  color: var(--white);
  border-color: var(--terracotta-dark);
  background: var(--terracotta-dark);
  box-shadow: 0 14px 34px rgba(74, 47, 31, 0.12);
  transform: translateY(-1px);
}

.site-nav .language-switch {
  display: inline-flex;
  min-width: clamp(42px, 3.2vw, 54px);
  height: clamp(32px, 2.35vw, 40px);
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  padding: 0 clamp(6px, 0.5vw, 9px);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: inherit;
  font-size: clamp(10px, 0.72vw, 13px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  transition:
    color 160ms ease,
    transform 160ms ease;
}

.site-nav .language-switch::after {
  content: none;
  display: none;
}

.site-nav .language-switch:hover,
.site-nav .language-switch:focus-visible {
  background: transparent;
  box-shadow: none;
  transform: translateY(-1px);
}

.site-nav .language-switch:hover::after,
.site-nav .language-switch:focus-visible::after {
  content: none;
  display: none;
}

.site-nav .language-switch span {
  display: block;
}

@media (min-width: 1367px) {
  .site-nav {
    justify-content: flex-end;
    gap: clamp(18px, 1vw, 24px);
    padding-right: clamp(36px, 3.6vw, 68px);
    padding-left: clamp(48px, 3.2vw, 84px);
    border-bottom-color: rgba(226, 198, 181, 0.58);
    background: var(--paper);
  }

  .hero-grid .site-nav {
    border-bottom-color: rgba(226, 198, 181, 0.58);
    background: var(--paper);
  }

  .site-nav::before {
    display: none;
    right: 0;
    bottom: -24px;
    left: clamp(-230px, -12vw, -150px);
    width: auto;
    background: rgba(255, 250, 245, 0.9);
    -webkit-mask-image:
      linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.54) 16%, #000 30%, #000 100%),
      linear-gradient(180deg, #000 0%, #000 76%, rgba(0, 0, 0, 0.56) 89%, rgba(0, 0, 0, 0) 100%);
    mask-image:
      linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.54) 16%, #000 30%, #000 100%),
      linear-gradient(180deg, #000 0%, #000 76%, rgba(0, 0, 0, 0.56) 89%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-composite: source-in;
    mask-composite: intersect;
  }

  .hero-grid .site-nav::before {
    display: none;
  }

  .site-nav .nav-cta {
    margin-left: clamp(8px, 1vw, 18px);
  }
}

@media (min-width: 1921px) {
  .hero-grid::after {
    top: clamp(-280px, -12vw, -156px);
    left: clamp(-420px, -16vw, -230px);
    width: min(74vw, 1840px);
    min-width: 980px;
    height: clamp(560px, 40vw, 920px);
    background:
      radial-gradient(ellipse 58% 76% at 25% 30%, rgba(255, 250, 245, 0.98) 0%, rgba(255, 250, 245, 0.96) 38%, rgba(255, 250, 245, 0.68) 56%, rgba(255, 250, 245, 0.28) 74%, rgba(255, 250, 245, 0.07) 90%, rgba(255, 250, 245, 0) 100%),
      linear-gradient(90deg, rgba(255, 250, 245, 0.68) 0%, rgba(255, 250, 245, 0.42) 30%, rgba(255, 250, 245, 0.12) 60%, rgba(255, 250, 245, 0) 92%);
    -webkit-mask-image:
      linear-gradient(90deg, #000 0%, #000 64%, rgba(0, 0, 0, 0.54) 82%, rgba(0, 0, 0, 0) 100%),
      linear-gradient(180deg, #000 0%, #000 58%, rgba(0, 0, 0, 0.58) 78%, rgba(0, 0, 0, 0) 100%);
    mask-image:
      linear-gradient(90deg, #000 0%, #000 64%, rgba(0, 0, 0, 0.54) 82%, rgba(0, 0, 0, 0) 100%),
      linear-gradient(180deg, #000 0%, #000 58%, rgba(0, 0, 0, 0.58) 78%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-composite: source-in;
    mask-composite: intersect;
  }

  .site-nav {
    right: 0;
    left: var(--header-menu-column);
    width: auto;
  }
}

@media (min-width: 900px) {
  body.nav-scrolled .site-nav {
    right: 0;
    left: 0;
    width: auto;
    border-bottom: 1px solid rgba(226, 198, 181, 0.58);
    background: var(--paper);
  }

  body.nav-scrolled .site-nav::before {
    display: none;
  }
}

/* Opening the tablet dropdown must not put the large document-flow logo back. */
@media (min-width: 561px) and (max-width: 899px) {
  body.inner-page.mobile-menu-open .brand-panel,
  body.home-page.mobile-menu-open .brand-panel {
    position: fixed;
    top: 0;
    right: auto;
    left: clamp(12px, 3vw, 18px);
    z-index: 1001;
    width: clamp(96px, 14vw, 118px);
    height: var(--sticky-nav-offset, 76px);
    min-height: 0;
    place-items: center;
    overflow: visible;
    padding: 0;
    border: 0;
    background: var(--paper);
  }

  body.inner-page.mobile-menu-open .brand-panel::before,
  body.inner-page.mobile-menu-open .brand-panel::after,
  body.home-page.mobile-menu-open .brand-panel::before,
  body.home-page.mobile-menu-open .brand-panel::after {
    display: none;
    content: none;
  }

  body.inner-page.mobile-menu-open .brand-panel img,
  body.home-page.mobile-menu-open .brand-panel img {
    position: relative;
    top: auto;
    left: auto;
    width: clamp(60px, 8vw, 72px);
    max-width: none;
    height: auto;
    margin: 0;
    transform: none;
  }
}

.motif-button {
  position: relative;
  display: none;
  width: clamp(24px, 1.6vw, 34px);
  height: clamp(34px, 2.3vw, 46px);
  flex: 0 0 auto;
  border: 0;
  background: url("/assets/ornaments/ornament-small.svg") center / 24px 24px no-repeat;
  cursor: pointer;
  opacity: 0.88;
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.motif-button:hover,
.motif-button:focus-visible {
  opacity: 1;
  transform: translateY(-1px);
}

.motif-button span,
.motif-button::before,
.motif-button::after {
  display: none;
}

.hero-panel {
  position: relative;
  grid-column: 2;
  grid-row: 1 / span 2;
  z-index: 2;
  min-height: 0;
  overflow: hidden;
  background: transparent;
  isolation: isolate;
}

.hero-panel::before {
  display: none;
}

.hero-copy {
  position: absolute;
  z-index: 1;
  top: clamp(158px, 13vw, 236px);
  left: calc(50vw - var(--header-menu-column));
  width: min(58vw, 760px);
  color: var(--white);
  text-align: center;
  text-shadow: 0 1px 16px rgba(40, 24, 17, 0.32);
  transform: translateX(-50%);
}

.mobile-break {
  display: none;
}

.hero-copy h1 {
  font-family: var(--serif);
  font-size: clamp(48px, 3.55vw, 70px);
  font-weight: 400;
  line-height: 1.06;
}

.hero-copy p {
  width: min(100%, 620px);
  margin: clamp(12px, 0.9vw, 17px) auto 0;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(13px, 0.9vw, 17px);
  font-weight: 500;
  line-height: 1.65;
}

.title-ornament {
  position: relative;
  display: inline-block;
  width: 126px;
  height: 18px;
  margin: 6px auto 0;
  color: inherit;
  background: url("/assets/ornaments/ornament-small-white.svg") center / 16px 16px no-repeat;
}

.title-ornament::before,
.title-ornament::after {
  position: absolute;
  top: 50%;
  display: block;
  width: calc((100% - 28px) / 2);
  height: 1px;
  content: "";
  background: currentColor;
  opacity: 0.74;
  transform: translateY(-50%);
}

.title-ornament::before {
  left: 0;
}

.title-ornament::after {
  right: 0;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 1.8vw, 32px);
  margin-top: clamp(20px, 1.6vw, 30px);
}

.btn {
  display: inline-flex;
  height: clamp(44px, 2.8vw, 50px);
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  font-size: clamp(12px, 0.78vw, 13px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  transition:
    background-color 260ms ease,
    border-color 260ms ease,
    box-shadow 460ms cubic-bezier(0.22, 1, 0.36, 1),
    color 260ms ease,
    transform 460ms cubic-bezier(0.22, 1, 0.36, 1);
}

.btn .bilingual-separator {
  margin: 0 0.35em;
}

.btn.primary {
  width: clamp(178px, 12vw, 240px);
  color: var(--white);
  border-color: var(--terracotta);
  background: var(--terracotta);
  box-shadow:
    0 8px 22px rgba(74, 47, 31, 0.055),
    0 1px 0 rgba(255, 255, 255, 0.18) inset;
}

.btn.primary:hover,
.btn.primary:focus-visible {
  border-color: var(--terracotta-dark);
  background: var(--terracotta-dark);
  box-shadow:
    0 14px 34px rgba(74, 47, 31, 0.12),
    0 1px 0 rgba(255, 255, 255, 0.18) inset;
  transform: translateY(-1px);
}

.btn.ghost {
  width: clamp(221px, 15vw, 300px);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.74);
  background: rgba(60, 36, 24, 0.08);
  box-shadow: 0 8px 22px rgba(37, 24, 17, 0.045);
}

.btn.ghost:hover,
.btn.ghost:focus-visible {
  border-color: rgba(255, 255, 255, 0.96);
  background: rgba(60, 36, 24, 0.2);
  box-shadow: 0 14px 34px rgba(37, 24, 17, 0.11);
  transform: translateY(-1px);
}

.btn.outline {
  width: 209px;
  color: var(--terracotta-dark);
  background: rgba(255, 250, 245, 0.78);
  box-shadow: 0 8px 22px rgba(74, 47, 31, 0.045);
}

.btn.outline:hover,
.btn.outline:focus-visible {
  color: var(--white);
  border-color: var(--terracotta);
  background: var(--terracotta);
  box-shadow: 0 14px 34px rgba(74, 47, 31, 0.1);
  transform: translateY(-1px);
}

.section-pad {
  padding-right: 34px;
  padding-left: 34px;
}

.intro-section,
.rooms-section,
.services-section,
.gallery-section,
.site-footer {
  width: 100%;
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
}

.intro-section,
.rooms-section,
.services-section,
.gallery-section {
  clip-path: inset(0 -100vmax);
}

body.home-page .intro-section,
body.home-page .rooms-section,
body.home-page .services-section,
body.home-page .gallery-section,
body.home-page .faq-section {
  background: var(--paper);
  box-shadow: 0 0 0 100vmax var(--paper);
}

.intro-section {
  display: grid;
  min-height: 354px;
  grid-template-columns: 436px 389px;
  align-items: center;
  justify-content: center;
  padding-top: 14px;
  padding-bottom: 11px;
  background: rgba(255, 250, 245, 0.86);
  box-shadow: 0 0 0 100vmax rgba(255, 250, 245, 0.86);
}

.intro-copy {
  position: relative;
  top: 0;
  width: 360px;
  margin-left: 48px;
}

.small-ornament {
  position: relative;
  display: block;
  width: 24px;
  height: 24px;
  margin-bottom: 10px;
  color: var(--terracotta);
  background: url("/assets/ornaments/ornament-small.svg") center / 18px 18px no-repeat;
}

.small-ornament::before,
.small-ornament::after {
  display: none;
}

.intro-copy h2,
.section-heading h2 {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
  line-height: 0.98;
}

.intro-copy h2::after {
  display: block;
  width: 29px;
  height: 1px;
  margin-top: 14px;
  content: "";
  background: var(--terracotta);
}

.intro-copy p {
  margin-top: 10px;
  color: #463b35;
  font-size: 12px;
  line-height: 1.72;
}

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

.intro-photo {
  width: 389px;
  height: 240px;
  overflow: hidden;
}

.intro-photo picture,
.intro-photo img {
  width: 389px;
  height: 240px;
}

.intro-photo picture {
  display: block;
}

.intro-photo img {
  object-fit: cover;
}

.section-heading {
  display: grid;
  place-items: center;
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  font-size: 32px;
  line-height: 1;
}

.section-heading .title-ornament {
  width: 104px;
  height: 18px;
  margin-top: 2px;
  color: var(--terracotta-dark);
  background-image: url("/assets/ornaments/ornament-small.svg");
}

.section-heading .title-ornament::before,
.section-heading .title-ornament::after {
  display: block;
}

.rooms-section {
  position: relative;
  height: 386px;
  padding-top: 0;
  padding-bottom: 0;
  background: rgba(255, 250, 245, 0.78);
  box-shadow: 0 0 0 100vmax rgba(255, 250, 245, 0.78);
}

.room-grid {
  position: absolute;
  top: 86px;
  left: 50%;
  display: grid;
  width: var(--home-content-rail);
  grid-template-columns: repeat(3, 263px);
  gap: var(--home-room-grid-gap);
  justify-content: start;
  margin-top: 0;
  transform: translateX(-50%);
}

.room-card {
  width: 263px;
  height: 214px;
  overflow: hidden;
  border: 1px solid rgba(226, 198, 181, 0.88);
  background: rgba(255, 250, 245, 0.95);
}

.room-card > picture,
.room-card > picture > img,
.room-card > img,
.room-card-photo,
.room-card-photo > picture,
.room-card-photo > picture > img {
  width: auto;
  height: 142px;
  max-width: none;
  margin: 0 auto;
}

.room-card > picture,
.room-card-photo,
.room-card-photo > picture {
  display: block;
}

.room-card > picture > img,
.room-card > img,
.room-card-photo > picture > img {
  object-fit: cover;
}

.room-card-photo {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: zoom-in;
  font: inherit;
}

.room-body {
  height: 72px;
  padding: 10px 10px 9px;
}

.room-body h3 {
  margin-bottom: 8px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  text-align: center;
}

.room-body ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0;
  margin: 0;
  color: #5f5048;
  font-size: 13px;
  line-height: 1.18;
  list-style: none;
}

.room-body li {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.room-body li + li::after {
  position: absolute;
  top: 5px;
  left: -7px;
  width: 2px;
  height: 2px;
  content: "";
  border-radius: 50%;
  background: var(--terracotta);
}

.room-icon {
  width: 12px;
  height: auto;
  max-width: none;
  flex: 0 0 auto;
  object-fit: contain;
}

.room-icon.area,
.room-icon.price {
  width: 13px;
}

.rooms-link,
.gallery-link {
  display: flex;
  width: 209px;
  min-height: 44px;
  margin: 0 auto;
}

.rooms-section .section-heading {
  position: absolute;
  top: 24px;
  right: 0;
  left: 0;
}

.rooms-link {
  position: absolute;
  top: 317px;
  left: 50%;
  width: 209px;
  height: 30px;
  font-size: 12px;
  font-weight: 600;
  transform: translateX(-50%);
}

.services-section {
  --services-column: 280px;
  --services-icon-row: 66px;
  --services-icon-width: 98px;
  --services-tagine-width: 112px;
  --services-card-pad-x: 28px;
  --services-gap: 10px;
  --services-title-size: 18px;
  --services-body-size: 13px;
  --services-body-width: 232px;
  --services-tagine-offset: 17px;
  --services-divider-top: 46px;
  --services-divider-height: 132px;
  position: relative;
  display: grid;
  min-height: 236px;
  grid-template-columns: repeat(3, minmax(0, var(--services-column)));
  align-items: stretch;
  justify-content: center;
  padding: 26px 0 0;
  background: rgba(255, 250, 245, 0.72);
  box-shadow: 0 0 0 100vmax rgba(255, 250, 245, 0.72);
  text-align: center;
}

.services-section::after {
  display: none;
}

.services-section article {
  position: relative;
  display: grid;
  grid-template-rows: var(--services-icon-row) auto auto;
  min-height: 100%;
  padding: 0 var(--services-card-pad-x);
  row-gap: var(--services-gap);
  align-content: start;
  justify-items: center;
  text-align: center;
}

.services-section article + article {
  border-left: 0;
}

.services-section article + article::before {
  position: absolute;
  top: var(--services-divider-top);
  left: 0;
  width: 1px;
  height: var(--services-divider-height);
  content: "";
  background: rgba(201, 150, 123, 0.48);
}

.services-section h3 {
  margin-top: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: var(--services-title-size);
  font-weight: 400;
  line-height: 1;
  text-align: center;
  text-wrap: balance;
}

.services-section article:nth-child(3) h3 {
  margin-top: 0;
}

.services-section article:nth-child(2) h3 {
  margin-top: 0;
}

.services-section p {
  width: 100%;
  max-width: var(--services-body-width);
  margin-top: 0;
  color: #5f5048;
  font-size: var(--services-body-size);
  line-height: 1.48;
  text-align: center;
}

.services-section article:nth-child(2) p {
  max-width: var(--services-body-width);
}

.service-logo {
  width: var(--services-icon-width);
  height: var(--services-icon-row);
  margin: 0 auto;
  object-fit: contain;
  object-position: center center;
}

.service-icon {
  width: var(--services-icon-width);
  height: var(--services-icon-row);
  margin: 0 auto;
  object-fit: contain;
  object-position: center center;
}

.services-section article:last-child .service-icon {
  width: var(--services-tagine-width);
  height: var(--services-icon-row);
  margin-top: 0;
  transform: translateX(var(--services-tagine-offset));
}

.quote-band {
  position: relative;
  display: grid;
  grid-template-columns: 139px 487px 255px;
  align-items: center;
  height: 103px;
  width: min(calc(100% - 78px), var(--home-content-rail));
  margin: 0 auto;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(248, 221, 207, 0.98), rgba(250, 237, 229, 0.92) 57%, rgba(250, 237, 229, 0.12)),
    #f5ddce;
}

.quote-band::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(90deg, transparent 58%, rgba(219, 171, 143, 0.16) 66%, rgba(151, 86, 48, 0.16) 72%, transparent 80%);
}

.quote-motif {
  position: relative;
  z-index: 1;
  width: 82px;
  height: 78px;
  align-self: center;
  justify-self: start;
  margin-top: 0;
  margin-left: 45px;
  object-fit: contain;
}

.quote-band p {
  position: relative;
  z-index: 1;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.13;
}

.quote-photo {
  position: relative;
  z-index: 1;
  width: 255px;
  height: 103px;
  object-fit: cover;
}

.gallery-section {
  --gallery-scale: 1;
  --gallery-grid-top: 72px;
  --gallery-link-top: 204px;
  --gallery-link-bottom-gap: 25px;

  position: relative;
  height: calc(var(--gallery-link-top) + (44px * var(--gallery-scale)) + var(--gallery-link-bottom-gap));
  padding-top: 0;
  padding-bottom: 0;
  background: rgba(255, 250, 245, 0.72);
  box-shadow: 0 0 0 100vmax rgba(255, 250, 245, 0.72);
}

.gallery-section::before,
.rooms-section::before,
.services-section::before,
.home-faq::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: min(calc(100% - 96px), 1920px);
  height: 1px;
  content: "";
  pointer-events: none;
  background: rgba(201, 150, 123, 0.42);
  transform: translateX(-50%);
}

.gallery-section .section-heading h2 {
  font-size: 32px;
}

.gallery-grid {
  position: absolute;
  top: var(--gallery-grid-top);
  left: 50%;
  display: block;
  width: calc(var(--home-content-rail) * var(--gallery-scale));
  height: calc(120px * var(--gallery-scale));
  margin-top: 0;
  transform: translateX(-50%);
}

.gallery-grid picture,
.gallery-grid img {
  position: absolute;
  top: 0;
  height: calc(120px * var(--gallery-scale));
}

.gallery-grid picture {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(226, 198, 181, 0.88);
  background: rgba(237, 212, 197, 0.45);
}

.gallery-grid img {
  left: 0;
  width: 100%;
  border: 0;
  object-fit: cover;
}

.gallery-grid picture:nth-child(1) {
  left: 0;
  width: calc(215px * var(--gallery-scale));
}

.gallery-grid picture:nth-child(2) {
  left: calc(222px * var(--gallery-scale));
  width: calc(216px * var(--gallery-scale));
}

.gallery-grid picture:nth-child(3) {
  left: calc(446px * var(--gallery-scale));
  width: calc(213px * var(--gallery-scale));
}

.gallery-grid picture:nth-child(4) {
  left: calc(666px * var(--gallery-scale));
  width: calc(215px * var(--gallery-scale));
}

.gallery-link {
  position: absolute;
  top: var(--gallery-link-top);
  left: 50%;
  width: calc(209px * var(--gallery-scale));
  margin-top: 0;
  min-height: calc(44px * var(--gallery-scale));
  height: calc(30px * var(--gallery-scale));
  font-size: calc(12px * var(--gallery-scale));
  transform: translateX(-50%);
}

.gallery-section .gallery-link.btn.outline {
  width: calc(209px * var(--gallery-scale));
}

.gallery-section .section-heading {
  position: absolute;
  top: 20px;
  right: 0;
  left: 0;
}

.faq-section {
  position: relative;
  width: 100%;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.74), rgba(255, 250, 245, 0.86) 50%, rgba(255, 255, 255, 0.76)),
    var(--paper);
  box-shadow: 0 0 0 100vmax rgba(255, 250, 245, 0.84);
  clip-path: inset(0 -100vmax);
}

.faq-inner {
  width: min(100%, 1040px);
  margin: 0 auto;
  padding: clamp(34px, 4vw, 48px) clamp(24px, 5vw, 70px) clamp(48px, 5vw, 74px);
}

.home-faq .faq-inner {
  padding-top: clamp(26px, 2.8vw, 34px);
  padding-bottom: clamp(48px, 5vw, 76px);
}

.faq-heading {
  margin-bottom: 14px;
}

.faq-heading h2,
.faq-section > .faq-inner > h2 {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
  text-align: center;
}

.faq-section > .faq-inner > h2 {
  margin-bottom: clamp(28px, 3vw, 36px);
}

.faq-section > .faq-inner > .eyebrow {
  margin-bottom: 7px;
  text-align: center;
}

.faq-intro {
  max-width: 560px;
  margin: 0 auto 24px;
  color: #5f5048;
  font-size: 13px;
  line-height: 1.7;
  text-align: center;
}

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

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

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(226, 198, 181, 0.82);
  border-radius: 6px;
  background: rgba(255, 250, 245, 0.92);
  box-shadow: 0 10px 24px rgba(74, 47, 31, 0.035);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.faq-item summary {
  position: relative;
  min-height: 54px;
  padding: 16px 50px 16px 20px;
  color: #413832;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.38;
  list-style: none;
}

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

.faq-item summary::after {
  position: absolute;
  top: 50%;
  right: 18px;
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border: 1px solid rgba(201, 144, 117, 0.52);
  border-radius: 50%;
  color: var(--terracotta-dark);
  content: "+";
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  transform: translateY(-50%);
  transition:
    background-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.faq-item[open] summary::after {
  color: #fff;
  background: var(--terracotta);
  content: "-";
  transform: translateY(-50%);
}

.faq-item summary:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: -2px;
}

.faq-item p {
  padding: 0 20px 20px;
  color: #5a5049;
  font-size: 13px;
  line-height: 1.66;
}

@media (hover: hover) and (pointer: fine) {
  .faq-item:hover {
    box-shadow: 0 12px 28px rgba(74, 47, 31, 0.052);
    transform: translateY(-1px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .faq-item {
    transition: none;
  }

  .faq-item:hover {
    transform: none;
  }
}

.contact-faq,
.rooms-faq {
  box-shadow: none;
}

.contact-faq .faq-inner,
.rooms-faq .faq-inner {
  width: min(100%, 1060px);
  padding-top: clamp(28px, 3vw, 36px);
}

.contact-faq {
  border-top: 1px solid rgba(226, 198, 181, 0.62);
  border-bottom: 1px solid rgba(226, 198, 181, 0.62);
}

.rooms-faq {
  border-top: 0;
}

.socials {
  position: absolute;
  top: 8px;
  left: calc(50% + 293.5px);
  display: flex;
  gap: 3px;
  order: 1;
}

.socials a {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 0;
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.socials a:hover,
.socials a:focus-visible {
  opacity: 0.78;
  transform: translateY(-1px);
}

.socials img {
  width: 34px;
  height: 34px;
  max-width: none;
  opacity: 0.8;
  object-fit: contain;
}

@media (max-width: 1366px) {
  .site-shell {
    width: 100%;
    height: auto;
    min-height: 0;
    border: 0;
  }

  .intro-section,
  .rooms-section,
  .services-section,
  .gallery-section,
  .site-footer {
    max-width: none;
  }

  .hero-grid {
    height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    background: #ead4c5;
  }

  .hero-grid::before,
  .hero-grid::after {
    display: none;
  }

  .brand-panel {
    grid-row: auto;
    height: clamp(142px, 20vw, 174px);
    place-items: center;
    padding: 12px 16px;
    border-right: 0;
    border-bottom: 0;
    background: linear-gradient(180deg, rgba(255, 250, 245, 0.99) 0%, rgba(255, 250, 245, 0.96) 50%, rgba(255, 250, 245, 0.76) 72%, rgba(255, 250, 245, 0.34) 88%, rgba(255, 250, 245, 0) 100%);
  }

  .brand-panel img {
    width: clamp(138px, 19vw, 170px);
    margin-top: 0;
  }

  .site-nav {
    flex-wrap: wrap;
    justify-content: center;
    height: auto;
    min-height: 70px;
    gap: 12px 18px;
    padding: 14px 18px;
  }

  .site-nav::before {
    display: none;
  }

  body.nav-scrolled .site-nav::before {
    left: calc(-1 * (100vw - 100%));
    display: none;
    width: calc(100vw - 100%);
  }

  .site-nav .nav-cta {
    order: 2;
  }

  .site-nav .language-switch {
    order: 3;
  }

  .motif-button {
    order: 4;
  }

  .hero-panel {
    grid-column: 1;
    grid-row: auto;
    display: grid;
    min-height: 430px;
    place-items: center;
    background: linear-gradient(90deg, rgba(255, 250, 245, 0.18), rgba(255, 250, 245, 0.04) 34%, rgba(72, 45, 31, 0.2));
  }

  .hero-copy {
    position: static;
    width: calc(100% - 36px);
    margin-top: 0;
    transform: none;
  }

  .hero-copy h1 {
    font-size: 34px;
  }

  .hero-copy p {
    width: min(100%, 520px);
    transform: none;
  }

  .hero-actions {
    transform: none;
  }

  .intro-section,
  .rooms-section,
  .services-section,
  .gallery-section,
  .site-footer {
    height: auto;
  }

  .intro-section,
  .services-section {
    min-height: 0;
  }

  .intro-section,
  .room-grid,
  .services-section,
  .gallery-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .intro-section {
    gap: 24px;
    padding: 26px 22px;
  }

  .intro-copy {
    position: static;
    top: auto;
    width: auto;
    margin-left: 0;
  }

  .intro-photo,
  .intro-photo picture,
  .intro-photo img {
    width: 100%;
    height: auto;
  }

  .room-grid,
  .gallery-grid {
    position: static;
    display: grid;
    width: 100%;
    height: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    justify-items: center;
    transform: none;
  }

  .gallery-section {
    padding: 28px 22px 42px;
  }

  .rooms-section::before,
  .services-section::before,
  .gallery-section::before,
  .home-faq::before {
    width: calc(100% - 44px);
  }

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

  .rooms-section {
    padding-right: 22px;
    padding-top: 26px;
    padding-left: 22px;
    padding-bottom: 42px;
  }

  .rooms-section .section-heading,
  .gallery-section .section-heading {
    margin-bottom: 18px;
  }

  .gallery-grid picture,
  .gallery-grid img,
  .gallery-grid picture:nth-child(1),
  .gallery-grid picture:nth-child(2),
  .gallery-grid picture:nth-child(3),
  .gallery-grid picture:nth-child(4),
  .gallery-grid img:nth-child(1),
  .gallery-grid img:nth-child(2),
  .gallery-grid img:nth-child(3),
  .gallery-grid img:nth-child(4) {
    position: static;
    width: 100%;
    height: auto;
    aspect-ratio: 215 / 120;
  }

  .rooms-section .section-heading,
  .gallery-section .section-heading,
  .rooms-link,
  .gallery-link {
    position: static;
    inset: auto;
  }

  .rooms-link,
  .gallery-link {
    margin: 14px auto 0;
    transform: none;
  }

  .room-card {
    width: min(100%, 520px);
    height: auto;
  }

  .room-card > picture,
  .room-card > picture > img,
  .room-card > img,
  .room-card-photo,
  .room-card-photo > picture,
  .room-card-photo > picture > img {
    width: 100%;
    height: auto;
    aspect-ratio: 1.9 / 1;
  }

  .room-body {
    height: auto;
    padding: 12px 12px 14px;
  }

  .room-body ul {
    flex-wrap: wrap;
    gap: 8px 13px;
    font-size: 13px;
    line-height: 1.22;
  }

  .services-section article {
    position: static;
    width: auto;
    padding: 20px 32px 18px;
  }

  .services-section {
    display: grid;
    grid-template-columns: 1fr;
    padding: 0 34px;
  }

  .services-section::after {
    display: none;
  }

  .services-section article + article {
    border-top: 1px solid rgba(201, 150, 123, 0.48);
    border-left: 0;
  }

  .services-section article + article::before {
    display: none;
  }

  .services-section h3,
  .services-section article:nth-child(2) h3,
  .services-section article:nth-child(3) h3 {
    margin-top: 0;
  }

  .services-section p {
    margin-top: 0;
  }

  .service-logo {
    width: 98px;
    height: 62px;
    margin: 0 auto;
    object-fit: contain;
    object-position: center top;
  }

  .quote-band {
    grid-template-columns: 1fr;
    width: auto;
    height: auto;
    min-height: 168px;
    margin: 0 22px;
    padding: 20px 22px 22px;
    justify-items: center;
    text-align: center;
  }

  .quote-motif {
    width: 58px;
    height: 55px;
    align-self: auto;
    justify-self: center;
    margin-top: 0;
    margin-left: 0;
  }

  .quote-band::after {
    display: none;
  }

  .quote-band p {
    max-width: 580px;
    font-size: 26px;
    line-height: 1.12;
  }

  .quote-photo {
    display: none;
  }

  .footer-brand,
  .email-link,
  .socials,
  .footer-reserve,
  .footer-reserve.btn.primary,
  .copyright,
  .legal-links {
    position: static;
    inset: auto;
  }
}

@media (max-width: 899px) {
  .brand-panel {
    z-index: 4;
    background: transparent;
  }

  .brand-panel::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: clamp(-92px, -16vw, -64px);
    left: 0;
    z-index: 0;
    display: block;
    content: "";
    background:
      radial-gradient(ellipse 56% 70% at 50% 31%, rgba(255, 250, 245, 0.94) 0%, rgba(255, 250, 245, 0.84) 34%, rgba(255, 250, 245, 0.46) 58%, rgba(255, 250, 245, 0.14) 78%, rgba(255, 250, 245, 0) 100%),
      linear-gradient(180deg, rgba(255, 250, 245, 0.9) 0%, rgba(255, 250, 245, 0.74) 34%, rgba(255, 250, 245, 0.28) 60%, rgba(255, 250, 245, 0.06) 82%, rgba(255, 250, 245, 0) 100%);
    pointer-events: none;
  }

  .hero-panel {
    background: transparent;
  }

  .hero-panel::before {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
    content: "";
    background: linear-gradient(90deg, rgba(255, 250, 245, 0.18), rgba(255, 250, 245, 0.04) 34%, rgba(72, 45, 31, 0.2));
    -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.34) 10%, #000 26%, #000 100%);
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.34) 10%, #000 26%, #000 100%);
    pointer-events: none;
  }

  .hero-copy {
    position: relative;
    inset: auto;
    z-index: 1;
  }

  .faq-list,
  .home-faq .faq-list {
    grid-template-columns: 1fr;
  }

  .faq-inner {
    padding: 30px 22px 46px;
  }

  .contact-faq .faq-inner,
  .rooms-faq .faq-inner {
    padding-top: 28px;
  }

  .home-faq .faq-inner {
    padding-top: 28px;
  }

  .faq-item summary {
    min-height: 52px;
    padding: 16px 48px 16px 18px;
    font-size: 15px;
    line-height: 1.38;
  }

  .faq-item p {
    padding: 0 18px 18px;
    font-size: 13px;
  }
}

@media (min-width: 900px) and (max-width: 1366px) {
  :root {
    --header-menu-column: 23.592%;
    --header-menu-height: clamp(68px, 7.44vw, 90px);
  }

  .hero-grid {
    height: calc(100vw * 478 / 941);
    grid-template-columns: var(--header-menu-column) minmax(0, 1fr);
    grid-template-rows: var(--header-menu-height) 1fr;
    background: #ead4c5;
  }

  .hero-grid::before {
    display: block;
    top: 0;
    right: auto;
    bottom: auto;
    left: 0;
    width: calc(var(--header-menu-column) + clamp(88px, 10vw, 136px));
    height: min(58%, clamp(250px, 30vw, 340px));
    background: radial-gradient(ellipse 96% 112% at 16% 24%, rgba(255, 250, 245, 0.98) 0%, rgba(255, 250, 245, 0.96) 48%, rgba(255, 250, 245, 0.72) 66%, rgba(255, 250, 245, 0.34) 82%, rgba(255, 250, 245, 0.08) 94%, rgba(255, 250, 245, 0) 100%);
    -webkit-mask-image:
      linear-gradient(90deg, #000 0%, #000 58%, rgba(0, 0, 0, 0.68) 74%, rgba(0, 0, 0, 0) 100%),
      linear-gradient(180deg, #000 0%, #000 62%, rgba(0, 0, 0, 0.54) 78%, rgba(0, 0, 0, 0) 100%);
    mask-image:
      linear-gradient(90deg, #000 0%, #000 58%, rgba(0, 0, 0, 0.68) 74%, rgba(0, 0, 0, 0) 100%),
      linear-gradient(180deg, #000 0%, #000 62%, rgba(0, 0, 0, 0.54) 78%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-composite: source-in;
    mask-composite: intersect;
  }

  .hero-grid::after {
    display: block;
    top: clamp(-160px, -11vw, -118px);
    left: clamp(-230px, -18vw, -146px);
    width: clamp(650px, 76vw, 920px);
    height: clamp(360px, 40vw, 520px);
    background:
      radial-gradient(ellipse 58% 84% at 35% 36%, rgba(255, 250, 245, 0.98) 0%, rgba(255, 250, 245, 0.96) 48%, rgba(255, 250, 245, 0.78) 64%, rgba(255, 250, 245, 0.34) 82%, rgba(255, 250, 245, 0.08) 94%, rgba(255, 250, 245, 0) 100%),
      linear-gradient(90deg, rgba(255, 250, 245, 0.78) 0%, rgba(255, 250, 245, 0.46) 34%, rgba(255, 250, 245, 0.14) 62%, rgba(255, 250, 245, 0) 86%);
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 74%, rgba(0, 0, 0, 0.58) 88%, rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(180deg, #000 0%, #000 74%, rgba(0, 0, 0, 0.58) 88%, rgba(0, 0, 0, 0) 100%);
  }

  .brand-panel {
    grid-row: 1 / span 2;
    height: auto;
    place-items: start center;
    padding: clamp(16px, 1.8vw, 24px) 0 0;
    border-bottom: 0;
    background: transparent;
  }

  .brand-panel img {
    width: clamp(220px, 25.1vw, 300px);
    max-width: none;
    margin-top: -14px;
  }

  .site-nav {
    grid-column: 2;
    grid-row: 1;
    flex-wrap: nowrap;
    justify-content: flex-end;
    height: var(--header-menu-height);
    min-height: 0;
    gap: clamp(8px, 1.15vw, 18px);
    padding: 0 clamp(16px, 2.4vw, 36px) 0 clamp(16px, 2.2vw, 34px);
    font-size: clamp(10.5px, 0.9vw, 12px);
  }

  .site-nav .nav-cta {
    order: 0;
    width: clamp(94px, 10.6vw, 132px);
    height: clamp(40px, 4.46vw, 56px);
    margin-left: clamp(6px, 0.8vw, 12px);
    font-size: clamp(10.5px, 0.9vw, 12px);
  }

  .site-nav .language-switch {
    order: 0;
    min-width: clamp(44px, 4.8vw, 58px);
    height: clamp(32px, 3.62vw, 40px);
  }

  .motif-button {
    order: 0;
    width: clamp(24px, 2.55vw, 32px);
    height: clamp(34px, 3.61vw, 44px);
    background-size: clamp(24px, 2.55vw, 32px) clamp(28px, 2.98vw, 38px);
  }

  .hero-panel {
    grid-column: 2;
    grid-row: 2;
    display: block;
    min-height: 0;
    place-items: normal;
    background: transparent;
  }

  .hero-copy {
    position: absolute;
    top: clamp(120px, 12.75vw, 174px);
    left: 0;
    width: min(57vw, 730px);
    max-width: none;
    transform: none;
  }

  .hero-copy h1 {
    font-size: clamp(43px, 4.57vw, 62px);
  }

  .hero-copy p {
    width: min(100%, 650px);
    font-size: clamp(13px, 1.15vw, 16px);
  }

  .hero-actions {
    gap: 26px;
  }

  .hero-actions .btn.primary {
    width: 220px;
  }

  .hero-actions .btn.ghost {
    width: 280px;
  }

  .hero-actions .btn {
    height: 44px;
  }

  .intro-section {
    width: calc(100% - 44px);
    grid-template-columns: minmax(320px, 430px) minmax(0, 641px);
    column-gap: max(48px, calc(100% - 819px));
    align-items: center;
    justify-content: center;
    margin-right: auto;
    margin-left: auto;
    padding: 34px 0;
  }

  .intro-photo {
    width: 100%;
    max-width: 389px;
    justify-self: end;
  }

  .room-grid {
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }

  .gallery-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
  }

  .services-section {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 34px 44px 30px;
  }

  .services-section article {
    padding: 0 28px;
  }

  .services-section article + article {
    border-top: 0;
    border-left: 1px solid rgba(201, 150, 123, 0.48);
  }
}

@media (min-width: 1367px) {
  .btn.outline.rooms-link:hover,
  .btn.outline.rooms-link:focus-visible,
  .btn.outline.rooms-link:active,
  .btn.outline.gallery-link:hover,
  .btn.outline.gallery-link:focus-visible,
  .btn.outline.gallery-link:active {
    transform: translateX(-50%) translateY(-1px);
  }
}

@media (min-width: 1600px) {
  :root {
    --header-menu-height: 108px;
    --wide-content-scale: 1.08;
    --wide-footer-scale: 1.06;
  }

  .hero-grid {
    grid-template-rows: var(--header-menu-height) 1fr;
  }

  .intro-section,
  .rooms-section,
  .services-section,
  .gallery-section,
  .site-footer {
    max-width: min(calc(100% - 96px), 1920px);
  }

  .intro-section {
    min-height: 382px;
    grid-template-columns: 405px 430px;
    column-gap: clamp(80px, 6vw, 120px);
    justify-content: center;
  }

  .intro-copy {
    margin-left: 0;
    transform: scale(var(--wide-content-scale));
    transform-origin: center left;
  }

  .intro-photo {
    transform: none;
    transform-origin: center;
  }

  .rooms-section {
    height: 420px;
  }

  .room-grid {
    top: 92px;
    transform: translateX(-50%) scale(var(--wide-content-scale));
    transform-origin: top center;
  }

  .rooms-link {
    top: 343px;
    transform: translateX(-50%) scale(var(--wide-content-scale));
    transform-origin: top center;
  }

  .services-section {
    --services-column: calc(280px * var(--wide-content-scale));
    --services-icon-row: calc(66px * var(--wide-content-scale));
    --services-icon-width: calc(98px * var(--wide-content-scale));
    --services-tagine-width: calc(112px * var(--wide-content-scale));
    --services-card-pad-x: calc(28px * var(--wide-content-scale));
    --services-gap: calc(10px * var(--wide-content-scale));
    --services-title-size: 18px;
    --services-body-size: 13px;
    --services-body-width: calc(232px * var(--wide-content-scale));
    --services-tagine-offset: calc(17px * var(--wide-content-scale));
    --services-divider-top: calc(46px * var(--wide-content-scale));
    --services-divider-height: calc(132px * var(--wide-content-scale));
    min-height: 230px;
  }

  .quote-band {
    width: calc(var(--home-content-rail) * var(--wide-content-scale));
    height: calc(103px * var(--wide-content-scale));
    grid-template-columns:
      calc(139px * var(--wide-content-scale))
      calc(487px * var(--wide-content-scale))
      calc(255px * var(--wide-content-scale));
    justify-content: center;
  }

  .quote-motif {
    width: calc(82px * var(--wide-content-scale));
    height: calc(78px * var(--wide-content-scale));
    margin-top: 0;
    margin-left: calc(45px * var(--wide-content-scale));
  }

  .quote-band p {
    font-size: calc(24px * var(--wide-content-scale));
  }

  .quote-photo {
    width: calc(255px * var(--wide-content-scale));
    height: calc(103px * var(--wide-content-scale));
  }

  .gallery-section {
    --gallery-scale: var(--wide-content-scale);
    --gallery-grid-top: 77px;
    --gallery-link-top: 215px;

    height: calc(var(--gallery-link-top) + (44px * var(--gallery-scale)) + var(--gallery-link-bottom-gap));
  }

  .gallery-grid {
    transform: translateX(-50%);
  }

  .gallery-link {
    transform: translateX(-50%);
  }

  .btn.outline.rooms-link:hover,
  .btn.outline.rooms-link:focus-visible,
  .btn.outline.rooms-link:active {
    transform: translateX(-50%) translateY(-1px) scale(var(--wide-content-scale));
  }

  .btn.outline.gallery-link:hover,
  .btn.outline.gallery-link:focus-visible,
  .btn.outline.gallery-link:active {
    transform: translateX(-50%) translateY(-1px);
  }

  .footer-contact > div,
  .footer-brand,
  .email-link,
  .socials,
  .footer-reserve,
  .copyright,
  .legal-links {
    transform: scale(var(--wide-footer-scale));
    transform-origin: center;
  }

  .socials {
    transform-origin: top center;
  }
}

@media (min-width: 1921px) {
  :root {
    --wide-content-scale: 1.16;
    --wide-footer-scale: 1.12;
  }

  .intro-section {
    min-height: 410px;
    grid-template-columns: 450px 470px;
    column-gap: clamp(110px, 7vw, 150px);
  }

  .rooms-section {
    height: 450px;
  }

  .room-grid {
    top: 100px;
  }

  .rooms-link {
    top: 367px;
  }

  .services-section {
    min-height: 246px;
  }

  .quote-band {
    width: calc(var(--home-content-rail) * var(--wide-content-scale));
    height: calc(103px * var(--wide-content-scale));
    grid-template-columns:
      calc(139px * var(--wide-content-scale))
      calc(487px * var(--wide-content-scale))
      calc(255px * var(--wide-content-scale));
  }

  .quote-motif {
    width: calc(82px * var(--wide-content-scale));
    height: calc(78px * var(--wide-content-scale));
    margin-top: 0;
    margin-left: calc(45px * var(--wide-content-scale));
  }

  .quote-band p {
    font-size: calc(24px * var(--wide-content-scale));
  }

  .quote-photo {
    width: calc(255px * var(--wide-content-scale));
    height: calc(103px * var(--wide-content-scale));
  }

  .gallery-section {
    --gallery-grid-top: 82px;
    --gallery-link-top: 230px;

    height: calc(var(--gallery-link-top) + (44px * var(--gallery-scale)) + var(--gallery-link-bottom-gap));
  }

}

@media (min-width: 2560px) {
  :root {
    --wide-content-scale: 1.24;
    --wide-footer-scale: 1.16;
  }

  .intro-section {
    min-height: 436px;
    grid-template-columns: 500px 520px;
    column-gap: 160px;
  }

  .rooms-section {
    height: 480px;
  }

  .room-grid {
    top: 108px;
  }

  .rooms-link {
    top: 391px;
  }

  .services-section {
    min-height: 262px;
  }

  .quote-band {
    width: calc(var(--home-content-rail) * var(--wide-content-scale));
    height: calc(103px * var(--wide-content-scale));
    grid-template-columns:
      calc(139px * var(--wide-content-scale))
      calc(487px * var(--wide-content-scale))
      calc(255px * var(--wide-content-scale));
  }

  .quote-motif {
    width: calc(82px * var(--wide-content-scale));
    height: calc(78px * var(--wide-content-scale));
    margin-top: 0;
    margin-left: calc(45px * var(--wide-content-scale));
  }

  .quote-band p {
    font-size: calc(24px * var(--wide-content-scale));
  }

  .quote-photo {
    width: calc(255px * var(--wide-content-scale));
    height: calc(103px * var(--wide-content-scale));
  }

  .gallery-section {
    --gallery-grid-top: 86px;
    --gallery-link-top: 246px;

    height: calc(var(--gallery-link-top) + (44px * var(--gallery-scale)) + var(--gallery-link-bottom-gap));
  }
}

@media (min-width: 1921px) {
  .hero-copy {
    left: calc(50vw - var(--header-menu-column));
    transform: translateX(-50%);
  }
}

.inner-shell {
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto 1fr auto;
}

.inner-shell > * {
  min-width: 0;
  max-width: 100%;
}

.inner-header {
  position: relative;
  z-index: 50;
  display: grid;
  grid-template-columns: var(--header-menu-column) minmax(0, 1fr);
  border-bottom: 0;
  background: var(--paper);
}

.inner-page .brand-panel {
  display: grid;
  grid-row: auto;
  height: auto;
  place-items: center;
  padding: 0;
  background: var(--paper);
}

.inner-page .brand-panel img {
  width: clamp(96px, 5.4vw, 104px);
  margin-top: 0;
}

.inner-page .site-nav {
  border-bottom: 1px solid var(--menu-border);
  background: var(--paper);
}

.inner-page .site-nav::before {
  display: none;
}

@media (min-width: 900px) {
  .inner-header {
    min-height: var(--inner-menu-height);
  }

  .inner-page .brand-panel {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 901;
    width: var(--header-menu-column);
    height: var(--inner-menu-height);
    border-bottom: 1px solid var(--menu-border);
  }

  .inner-page .site-nav {
    height: var(--inner-menu-height);
  }

  body.nav-scrolled.contact-page .site-nav {
    right: 0;
    left: 0;
    width: auto;
    border-bottom: 1px solid rgba(226, 198, 181, 0.58);
    background: var(--paper);
  }

  body.nav-scrolled.contact-page .site-nav::before {
    display: none;
  }

  body.nav-scrolled.inner-page .site-nav {
    left: var(--header-menu-column);
  }
}

/* PageSpeed mobile accessibility: keep small homepage copy above 4.5:1. */
html[lang] body.home-page.mockup-home-page .rooms-link.btn.outline,
html[lang] body.home-page.mockup-home-page .gallery-link.btn.outline {
  border-color: #a64f3a !important;
  color: #a64f3a !important;
}

html[lang] body.home-page.mockup-home-page .faq-intro {
  color: #806052 !important;
}

/* White utility text needs a darker fill on compact mobile controls. */
html body .nav-cta,
html body .privacy-notice-button {
  background-color: #a64f3a !important;
}

.inner-main {
  background:
    linear-gradient(90deg, rgba(255, 251, 247, 0.62), rgba(246, 238, 232, 0.78) 48%, rgba(255, 251, 247, 0.7)),
    var(--paper);
}

.inner-main > .page-hero:only-child {
  min-height: 100%;
}

.page-hero {
  position: relative;
  display: grid;
  min-height: clamp(310px, 31vw, 480px);
  align-items: center;
  justify-items: center;
  overflow: hidden;
  padding: clamp(58px, 7vw, 112px) clamp(24px, 5vw, 92px);
  color: var(--white);
  text-align: center;
  isolation: isolate;
}

.page-hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(64, 36, 24, 0.58), rgba(64, 36, 24, 0.18) 48%, rgba(64, 36, 24, 0.54)),
    linear-gradient(0deg, rgba(62, 35, 22, 0.28), rgba(62, 35, 22, 0.1));
}

.page-hero-riad {
  background: #d8b39c image-set(
    url("/assets/photos/responsive/riad-patio-wide-1200.webp") type("image/webp"),
    url("/assets/photos/responsive/riad-patio-wide-1200.jpg") type("image/jpeg")
  ) center / cover no-repeat;
}

.page-hero-rooms {
  background: #d8b39c image-set(
    url("/assets/photos/responsive/riad-bath-suite-1200.webp") type("image/webp"),
    url("/assets/photos/responsive/riad-bath-suite-1200.jpg") type("image/jpeg")
  ) center / cover no-repeat;
}

.page-hero-experiences {
  background: #d8b39c image-set(
    url("/assets/photos/responsive/riad-patio-pool-1200.webp") type("image/webp"),
    url("/assets/photos/responsive/riad-patio-pool-1200.jpg") type("image/jpeg")
  ) center / cover no-repeat;
}

.page-hero-journal {
  background: #d8b39c image-set(
    url("/assets/photos/responsive/riad-patio-bright-1200.webp") type("image/webp"),
    url("/assets/photos/responsive/riad-patio-bright-1200.jpg") type("image/jpeg")
  ) center / cover no-repeat;
}

.page-hero > div {
  max-width: 820px;
}

.page-hero .small-ornament {
  margin: 0 auto 12px;
  background-image: url("/assets/ornaments/ornament-small-white.svg");
}

.eyebrow,
.article-kicker {
  color: var(--terracotta-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.page-hero .eyebrow {
  color: rgba(255, 255, 255, 0.9);
}

.page-hero h1 {
  margin-top: 12px;
  font-family: var(--serif);
  font-size: clamp(42px, 5.2vw, 82px);
  font-weight: 400;
  line-height: 0.98;
  text-shadow: 0 1px 18px rgba(40, 24, 17, 0.36);
}

.accent-fix {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.92em;
  letter-spacing: 0;
}

.story-section {
  display: grid;
  max-width: 1180px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
  margin: 0 auto;
  padding: clamp(54px, 6vw, 92px) clamp(28px, 5vw, 76px);
}

.story-copy {
  max-width: 680px;
}

.story-copy p,
.journal-article p,
.room-detail-card p {
  color: #463b35;
  font-size: 14px;
  line-height: 1.85;
}

.story-copy p + p,
.journal-article p + p {
  margin-top: 18px;
}

.story-copy .signature {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.1;
}

.story-photo {
  overflow: hidden;
  border: 1px solid rgba(226, 198, 181, 0.84);
}

.story-photo picture,
.story-photo img {
  width: 100%;
  height: 100%;
  min-height: 420px;
}

.story-photo picture {
  display: block;
}

.story-photo img {
  object-fit: cover;
}

.room-detail-section {
  display: grid;
  max-width: 1180px;
  gap: 22px;
  margin: 0 auto;
  padding: clamp(46px, 6vw, 86px) clamp(24px, 5vw, 72px) clamp(28px, 4vw, 48px);
}

.room-detail-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
  align-items: stretch;
  overflow: hidden;
  border: 1px solid rgba(226, 198, 181, 0.88);
  background: rgba(255, 250, 245, 0.92);
}

.room-detail-card:nth-child(even) {
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
}

.room-detail-card:nth-child(even) > picture,
.room-detail-card:nth-child(even) > img {
  order: 2;
}

.room-detail-card picture,
.room-detail-card img {
  width: 100%;
  height: 100%;
  min-height: 290px;
}

.room-detail-card picture {
  display: block;
}

.room-detail-card img {
  object-fit: cover;
}

.room-detail-card > picture,
.room-detail-card > img,
.room-detail-card > .rf-photo-launch {
  min-width: 0;
  min-height: clamp(300px, 24vw, 376px);
}

.room-detail-card > .rf-photo-launch > picture,
.room-detail-card > .rf-photo-launch > img {
  height: 100%;
  min-height: 0;
}

.room-detail-card > .rf-photo-launch > img,
.room-detail-card > .rf-photo-launch > picture > img {
  object-fit: cover;
}

@media (min-width: 821px) {
  .room-detail-card > picture,
  .room-detail-card > img,
  .room-detail-card > .rf-photo-launch {
    height: clamp(300px, 24vw, 346px);
    min-height: 0;
    max-height: 346px;
  }
}

.room-amenity-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.room-detail-card .room-detail-copy {
  display: grid;
  align-content: center;
  padding: clamp(28px, 4vw, 56px);
}

.room-detail-card h2 {
  width: fit-content;
  margin-bottom: 14px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 400;
  line-height: 1;
}

@media (hover: hover) and (pointer: fine) {
  .room-detail-card > picture > img,
  .room-detail-card > img,
  .room-detail-card > .rf-photo-launch > picture > img,
  .room-detail-card > .rf-photo-launch > img {
    transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .room-detail-card:has(.room-detail-copy h2:hover) > picture > img,
  .room-detail-card:has(.room-detail-copy h2:hover) > img,
  .room-detail-card:has(.room-detail-copy h2:hover) > .rf-photo-launch > picture > img,
  .room-detail-card:has(.room-detail-copy h2:hover) > .rf-photo-launch > img {
    transform: translateX(10px) scale(1.035);
  }

  .room-detail-card:nth-child(even):has(.room-detail-copy h2:hover) > picture > img,
  .room-detail-card:nth-child(even):has(.room-detail-copy h2:hover) > img,
  .room-detail-card:nth-child(even):has(.room-detail-copy h2:hover) > .rf-photo-launch > picture > img,
  .room-detail-card:nth-child(even):has(.room-detail-copy h2:hover) > .rf-photo-launch > img {
    transform: translateX(-10px) scale(1.035);
  }
}

.room-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.room-amenities li {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 8px;
  padding: 7px 12px 7px 10px;
  border: 1px solid rgba(201, 144, 117, 0.52);
  border-radius: 999px;
  color: #5a4539;
  background: rgba(255, 250, 245, 0.78);
  box-shadow: 0 6px 16px rgba(74, 47, 31, 0.035);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.15;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.room-amenities svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  color: var(--terracotta-dark);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

@media (hover: hover) and (pointer: fine) {
  .room-amenities li:hover {
    box-shadow: 0 10px 22px rgba(74, 47, 31, 0.075);
    transform: translateY(-2px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .room-detail-card > picture > img,
  .room-detail-card > img,
  .room-detail-card > .rf-photo-launch > picture > img,
  .room-detail-card > .rf-photo-launch > img {
    transition: none;
  }

  .room-detail-card:has(.room-detail-copy h2:hover) > picture > img,
  .room-detail-card:has(.room-detail-copy h2:hover) > img,
  .room-detail-card:has(.room-detail-copy h2:hover) > .rf-photo-launch > picture > img,
  .room-detail-card:has(.room-detail-copy h2:hover) > .rf-photo-launch > img {
    transform: none;
  }

  .room-amenities li {
    transition: none;
  }

  .room-amenities li:hover {
    transform: none;
  }
}

.journal-main {
  padding-bottom: clamp(18px, 3vw, 42px);
}

.journal-article {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(46px, 6vw, 86px) clamp(24px, 5vw, 72px);
}

.journal-article .article-kicker {
  margin-bottom: 18px;
}

.journal-article figure {
  margin: clamp(34px, 5vw, 58px) 0;
  overflow: hidden;
  border: 1px solid rgba(226, 198, 181, 0.84);
}

.journal-article figure img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.services-section.services-expanded {
  display: block;
  height: auto;
  max-width: 1180px;
  padding-top: 42px;
  padding-bottom: 54px;
  background: rgba(255, 250, 245, 0.72);
  box-shadow: 0 0 0 100vmax rgba(255, 250, 245, 0.72);
}

.services-section.services-expanded::before,
.services-section.services-expanded::after {
  display: none;
}

.services-expanded .services-heading {
  margin-bottom: 24px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  border: 1px solid rgba(226, 198, 181, 0.58);
  background: rgba(255, 250, 245, 0.68);
}

.services-section.services-expanded article,
.services-section.services-expanded article:nth-child(1),
.services-section.services-expanded article:nth-child(2),
.services-section.services-expanded article:nth-child(3),
.services-section.services-expanded article:nth-child(4),
.services-section.services-expanded article:nth-child(5) {
  position: static;
  display: grid;
  grid-template-rows: 56px auto auto;
  width: auto;
  min-height: 0;
  padding: 22px 18px 24px;
  row-gap: 10px;
  align-content: start;
  justify-items: center;
  border-left: 1px solid rgba(226, 198, 181, 0.58);
  text-align: center;
  transform: none;
}

.services-section.services-expanded article:first-child {
  border-left: 0;
}

.services-section.services-expanded h3,
.services-section.services-expanded article:nth-child(2) h3,
.services-section.services-expanded article:nth-child(3) h3 {
  margin-top: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(20px, 1.7vw, 28px);
  font-weight: 400;
  line-height: 1;
}

.services-section.services-expanded p {
  width: 100%;
  margin-top: 0;
  color: #5f5048;
  font-size: 10px;
  line-height: 1.55;
  text-align: center;
}

.services-section.services-expanded .service-logo,
.services-section.services-expanded .service-icon,
.services-section.services-expanded article:last-child .service-icon {
  width: 74px;
  height: 56px;
  margin: 0 auto;
  object-fit: contain;
}

.services-section.services-expanded article:nth-child(3) .service-logo {
  width: 42px;
}

.services-section.services-expanded article:nth-child(5) .service-logo {
  opacity: 0.82;
}

@media (max-width: 1180px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-section.services-expanded article {
    border-top: 1px solid rgba(226, 198, 181, 0.58);
  }

  .services-section.services-expanded article:nth-child(1),
  .services-section.services-expanded article:nth-child(2) {
    border-top: 0;
  }

  .services-section.services-expanded article:nth-child(odd) {
    border-left: 0;
  }
}

@media (max-width: 899px) {
  :root {
    --sticky-nav-offset: 74px;
  }

  html {
    scroll-padding-top: var(--sticky-nav-offset, 74px);
  }

  .hero-grid {
    padding-top: var(--sticky-nav-offset, 74px);
  }

  .inner-header {
    padding-top: var(--sticky-nav-offset, 74px);
    grid-template-columns: 1fr;
  }

  .site-nav {
    right: 0;
    left: 0;
  }

  .inner-page .brand-panel {
    height: clamp(142px, 20vw, 174px);
    place-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(226, 198, 181, 0.7);
    background: linear-gradient(180deg, rgba(255, 250, 245, 0.98), rgba(255, 250, 245, 0.9));
  }

  .inner-page .brand-panel img {
    width: clamp(138px, 19vw, 170px);
    margin-top: 0;
  }
}

@media (min-width: 561px) and (max-width: 899px) {
  :root {
    --sticky-nav-offset: 76px;
  }

  html[lang="fr"] {
    --sticky-nav-offset: 76px;
  }

  body.mobile-menu-open {
    overflow: hidden;
  }

  body.mobile-menu-open::before {
    position: fixed;
    inset: 0;
    z-index: 899;
    background: rgba(40, 28, 22, 0.34);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    content: "";
    pointer-events: none;
  }

  .js-enabled .site-nav:not(.is-open) a:not(.nav-cta):not(.language-switch) {
    display: none;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    flex-wrap: nowrap;
    justify-content: flex-end;
    min-height: 76px;
    gap: 12px;
    padding: 12px 22px;
  }

  .site-nav .nav-cta {
    order: 1;
    width: clamp(132px, 21vw, 168px);
    height: 44px;
    margin-left: 0;
  }

  .site-nav .language-switch {
    order: 2;
    width: auto;
    min-width: 48px;
    height: 44px;
    padding: 0 8px;
  }

  .motif-button {
    position: relative;
    display: block;
    order: 3;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(201, 144, 117, 0.42);
    background: rgba(255, 250, 245, 0.72);
    opacity: 1;
  }

  .motif-button span,
  .motif-button::before,
  .motif-button::after {
    position: absolute;
    left: 10px;
    display: block;
    width: 22px;
    height: 2px;
    content: "";
    background: var(--terracotta-dark);
    transform-origin: center;
    transition:
      opacity 160ms ease,
      transform 160ms ease;
  }

  .motif-button::before {
    top: 13px;
  }

  .motif-button span {
    top: 20px;
  }

  .motif-button::after {
    top: 27px;
  }

  .site-nav.is-open {
    z-index: 1002;
    flex-wrap: wrap;
    justify-content: center;
    height: auto;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(226, 198, 181, 0.74);
    background: rgba(255, 250, 245, 0.98);
    box-shadow: 0 18px 42px rgba(76, 48, 34, 0.18);
  }

  .site-nav.is-open .motif-button::before {
    top: 20px;
    transform: rotate(45deg);
  }

  .site-nav.is-open .motif-button span {
    opacity: 0;
  }

  .site-nav.is-open .motif-button::after {
    top: 20px;
    transform: rotate(-45deg);
  }

  .site-nav.is-open a:not(.nav-cta):not(.language-switch) {
    display: inline-flex;
    width: calc(33.333% - 12px);
    height: 44px;
    order: 4;
    border: 1px solid rgba(226, 198, 181, 0.74);
    background: rgba(255, 250, 245, 0.88);
    color: var(--ink-deep);
    font-size: 10px;
  }

  .site-nav.is-open a::after {
    bottom: 6px;
  }

  .site-nav.is-open .nav-whatsapp-label {
    display: inline;
  }
}

@media (max-width: 820px) {
  .page-hero-riad {
    background-image: image-set(
      url("/assets/photos/responsive/riad-patio-wide-768.webp") type("image/webp"),
      url("/assets/photos/responsive/riad-patio-wide-768.jpg") type("image/jpeg")
    );
  }

  .page-hero-rooms {
    background-image: image-set(
      url("/assets/photos/responsive/riad-bath-suite-768.webp") type("image/webp"),
      url("/assets/photos/responsive/riad-bath-suite-768.jpg") type("image/jpeg")
    );
  }

  .page-hero-experiences {
    background-image: image-set(
      url("/assets/photos/responsive/riad-patio-pool-768.webp") type("image/webp"),
      url("/assets/photos/responsive/riad-patio-pool-768.jpg") type("image/jpeg")
    );
  }

  .page-hero-journal {
    background-image: image-set(
      url("/assets/photos/responsive/riad-patio-bright-768.webp") type("image/webp"),
      url("/assets/photos/responsive/riad-patio-bright-768.jpg") type("image/jpeg")
    );
  }

  .story-section,
  .room-detail-card,
  .room-detail-card:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .room-detail-card:nth-child(even) > picture,
  .room-detail-card:nth-child(even) > img {
    order: 0;
  }

  .story-photo picture,
  .story-photo img,
  .room-detail-card picture,
  .room-detail-card img {
    min-height: 240px;
  }

  .room-amenities {
    margin-top: 18px;
  }

  .page-hero h1 {
    font-size: clamp(36px, 10vw, 58px);
  }
}

@media (max-width: 620px) {
  .room-amenities {
    gap: 7px;
  }

  .room-amenities li {
    min-height: 32px;
    padding: 7px 10px 7px 9px;
    font-size: 10.5px;
  }

  .room-amenities svg {
    width: 16px;
    height: 16px;
  }

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

  .services-section.services-expanded article,
  .services-section.services-expanded article:nth-child(1),
  .services-section.services-expanded article:nth-child(2),
  .services-section.services-expanded article:nth-child(3),
  .services-section.services-expanded article:nth-child(4),
  .services-section.services-expanded article:nth-child(5) {
    border-top: 1px solid rgba(226, 198, 181, 0.58);
    border-left: 0;
  }

  .services-section.services-expanded article:first-child {
    border-top: 0;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 14px;
  }

  body.mobile-menu-open {
    --mobile-menu-lockup-size: min(89.1304vw, 386px);
    --mobile-menu-lockup-top: clamp(4px, 1.8vw, 8px);
    --mobile-menu-lockup-center: 52.1739vw;
    --mobile-menu-logo-width: min(48vw, 208px);
    --mobile-menu-logo-top: calc(var(--mobile-menu-lockup-top) + min(33.5vw, 145px));
    --mobile-menu-close-top: calc(var(--mobile-menu-lockup-top) + min(8vw, 34px));
    --mobile-menu-brand-height: calc(var(--mobile-menu-lockup-top) + var(--mobile-menu-lockup-size) + 2px);
    --mobile-menu-action-shift: 2.1739vw;
    overflow: hidden;
  }

  body.mobile-menu-open .site-shell,
  body.mobile-menu-open .inner-shell {
    overflow: visible;
  }

  body.mobile-menu-open .hero-grid,
  body.mobile-menu-open .inner-header {
    position: relative;
    z-index: 1000;
  }

  .js-enabled .site-nav:not(.is-open) a:not(.nav-cta):not(.language-switch) {
    display: none;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    gap: 10px 12px;
    align-items: center;
  }

  .site-nav .nav-cta {
    order: 1;
  }

  .site-nav .language-switch {
    min-width: 44px;
    width: auto;
    height: 44px;
    padding: 0 4px;
    font-size: 11px;
    order: 2;
  }

  .motif-button {
    display: block;
    width: 42px;
    height: 38px;
    order: 3;
    border: 1px solid rgba(201, 144, 117, 0.42);
    border-radius: 0;
    background: rgba(255, 250, 245, 0.72);
    opacity: 1;
  }

  .motif-button span,
  .motif-button::before,
  .motif-button::after {
    position: absolute;
    left: 9px;
    display: block;
    width: 22px;
    height: 2px;
    content: "";
    background: var(--terracotta-dark);
    transform-origin: center;
    transition:
      opacity 160ms ease,
      transform 160ms ease;
  }

  .motif-button::before {
    top: 11px;
  }

  .motif-button span {
    top: 18px;
  }

  .motif-button::after {
    top: 25px;
  }

  body.mobile-menu-open .brand-panel,
  body.mobile-menu-open .inner-page .brand-panel {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1001;
    display: grid;
    height: var(--mobile-menu-brand-height);
    min-height: 0;
    place-items: start center;
    overflow: hidden;
    padding: 0;
    border: 0;
    background:
      radial-gradient(circle at 50% 44%, rgba(201, 135, 108, 0.14), rgba(255, 249, 244, 0) 37%),
      #fff9f4;
  }

  body.mobile-menu-open .brand-panel::before,
  body.mobile-menu-open .inner-page .brand-panel::before {
    position: absolute;
    top: clamp(22px, 4svh, 36px);
    left: 50%;
    width: min(72vw, 292px);
    height: calc(var(--mobile-menu-brand-height) - clamp(30px, 6svh, 48px));
    content: "";
    background:
      radial-gradient(circle at 50% 44%, rgba(201, 135, 108, 0.2), rgba(201, 135, 108, 0.07) 34%, rgba(201, 135, 108, 0) 66%),
      linear-gradient(180deg, rgba(242, 217, 203, 0.72), rgba(255, 249, 244, 0.1));
    clip-path: polygon(50% 0, 62% 7%, 72% 19%, 79% 34%, 87% 39%, 92% 55%, 96% 73%, 96% 100%, 4% 100%, 4% 73%, 8% 55%, 13% 39%, 21% 34%, 28% 19%, 38% 7%);
    filter: blur(0.2px);
    opacity: 0.92;
    transform: translateX(-50%);
  }

  body.mobile-menu-open .brand-panel::after,
  body.mobile-menu-open .inner-page .brand-panel::after {
    position: absolute;
    top: clamp(28px, 5svh, 42px);
    left: 50%;
    display: block;
    width: min(60vw, 238px);
    height: calc(var(--mobile-menu-brand-height) - clamp(42px, 7svh, 62px));
    content: "";
    border-radius: 50% 50% 15% 15%;
    background: radial-gradient(circle at 50% 40%, rgba(255, 250, 245, 0.76), rgba(255, 250, 245, 0) 62%);
    opacity: 0.74;
    transform: translateX(-50%);
  }

  body.mobile-menu-open {
    --mobile-menu-lockup-size: min(89.1304vw, 386px);
    --mobile-menu-lockup-top: clamp(4px, 1.8vw, 8px);
    --mobile-menu-lockup-center: 52.1739vw;
    --mobile-menu-logo-width: min(48vw, 208px);
    --mobile-menu-logo-top: calc(var(--mobile-menu-lockup-top) + min(33.5vw, 145px));
    --mobile-menu-close-top: calc(var(--mobile-menu-lockup-top) + min(8vw, 34px));
    --mobile-menu-brand-height: calc(var(--mobile-menu-lockup-top) + var(--mobile-menu-lockup-size) + 2px);
    --mobile-menu-action-shift: 2.1739vw;
    overflow: hidden;
  }

  body.mobile-menu-open .site-shell,
  body.mobile-menu-open .inner-shell {
    overflow: visible;
  }

  body.mobile-menu-open .hero-grid,
  body.mobile-menu-open .inner-header {
    position: relative;
    z-index: 1000;
  }

  body.mobile-menu-open .brand-panel,
  body.mobile-menu-open .inner-page .brand-panel {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1001;
    display: grid;
    height: var(--mobile-menu-brand-height);
    min-height: 0;
    place-items: start center;
    overflow: hidden;
    padding: 0;
    border: 0;
    background: #fdf6f1;
  }

  body.mobile-menu-open .brand-panel::before,
  body.mobile-menu-open .inner-page .brand-panel::before {
    position: absolute;
    top: var(--mobile-menu-lockup-top);
    left: var(--mobile-menu-lockup-center);
    width: var(--mobile-menu-lockup-size);
    height: var(--mobile-menu-lockup-size);
    content: "";
    background: url("/assets/ornaments/mobile-menu-arch-shape.png?v=20260711-contact-form-interactions-v2") center / 100% 100% no-repeat;
    filter: none;
    opacity: 1;
    transform: translateX(-50%);
    z-index: 0;
  }

  body.mobile-menu-open .brand-panel::after,
  body.mobile-menu-open .inner-page .brand-panel::after {
    position: absolute;
    top: calc(var(--mobile-menu-logo-top) - min(3vw, 12px));
    left: var(--mobile-menu-lockup-center);
    z-index: 1;
    display: block;
    width: min(74vw, 288px);
    height: min(52vw, 202px);
    content: "";
    background: radial-gradient(ellipse at 50% 52%, rgba(255, 250, 245, 0.72) 0%, rgba(255, 250, 245, 0.52) 52%, rgba(255, 250, 245, 0.18) 78%, rgba(255, 250, 245, 0) 100%);
    filter: blur(3px);
    pointer-events: none;
    transform: translateX(-50%);
  }

  body.mobile-menu-open .brand-panel img,
  body.mobile-menu-open .inner-page .brand-panel img {
    position: absolute;
    top: var(--mobile-menu-logo-top);
    left: var(--mobile-menu-lockup-center);
    z-index: 2;
    width: var(--mobile-menu-logo-width);
    max-width: none;
    height: auto;
    margin: 0;
    opacity: 1;
    filter: none;
    transform: translateX(-50%);
  }

  body.mobile-menu-open .site-nav,
  body.mobile-menu-open .inner-page .site-nav {
    --menu-icon-home: url("/assets/ornaments/menu-home.svg");
    --menu-icon-riad: url("/assets/ornaments/menu-riad.svg");
    --menu-icon-rooms: url("/assets/ornaments/menu-rooms.svg");
    --menu-icon-experiences: url("/assets/ornaments/menu-experiences.svg");
    --menu-icon-gallery: url("/assets/ornaments/menu-gallery.svg");
    --menu-icon-journal: url("/assets/ornaments/menu-journal.svg");
    --menu-icon-contact: url("/assets/ornaments/menu-contact.svg");
    position: fixed;
    top: var(--mobile-menu-brand-height);
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1002;
    display: grid;
    height: auto;
    min-height: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-content: start;
    align-items: stretch;
    justify-content: stretch;
    gap: 9px;
    padding: 0 max(15px, calc(50vw - 165px)) 16px;
    border: 0;
    background: #fff9f4;
    color: #463f3a;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  body.mobile-menu-open .site-nav .nav-cta {
    display: inline-flex;
    width: min(78.8043vw, 341px);
    height: clamp(58px, 18.4783vw, 80px);
    grid-column: 1 / -1;
    align-items: center;
    justify-content: center;
    justify-self: center;
    margin: 0 0 4px;
    border: 1px solid var(--terracotta);
    border-radius: 999px;
    background: var(--terracotta);
    box-shadow: 0 8px 22px rgba(74, 47, 31, 0.055);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    order: 1;
    transform: none;
  }

  body.mobile-menu-open .site-nav .language-switch {
    display: inline-flex;
    width: auto;
    min-width: 62px;
    height: 42px;
    grid-column: 1 / -1;
    align-items: center;
    justify-content: center;
    justify-self: center;
    gap: 7px;
    margin: 8px 0 13px;
    border: 1px solid rgba(231, 214, 203, 0.9);
    border-radius: 999px;
    background: rgba(255, 250, 246, 0.96);
    box-shadow: 0 8px 18px rgba(126, 80, 58, 0.08);
    color: #5d4a40;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    order: 2;
  }

  body.mobile-menu-open .site-nav .language-switch::before {
    display: none;
  }

  body.mobile-menu-open .site-nav .language-switch::after {
    content: none;
    display: none;
  }

  body.mobile-menu-open .site-nav.is-open a:not(.nav-cta):not(.language-switch) {
    display: inline-flex;
    height: clamp(68px, 9svh, 86px);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 11px;
    border: 1px solid rgba(232, 211, 199, 0.94);
    border-radius: 14px;
    background: rgba(255, 251, 247, 0.82);
    box-shadow:
      0 10px 22px rgba(133, 84, 62, 0.06),
      inset 0 1px 0 rgba(255, 255, 255, 0.72);
    color: #403a36;
    font-size: 10px;
    font-weight: 800;
    line-height: 1;
    order: 3;
  }

  body.mobile-menu-open .site-nav.is-open a:not(.nav-cta):not(.language-switch)::before {
    display: block;
    width: 32px;
    height: 32px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
  }

  body.mobile-menu-open .site-nav.is-open a:nth-of-type(1)::before {
    background-image: var(--menu-icon-home);
  }

  body.mobile-menu-open .site-nav.is-open a:nth-of-type(2)::before {
    background-image: var(--menu-icon-riad);
  }

  body.mobile-menu-open .site-nav.is-open a:nth-of-type(3)::before {
    background-image: var(--menu-icon-rooms);
  }

  body.mobile-menu-open .site-nav.is-open a:nth-of-type(4)::before {
    background-image: var(--menu-icon-experiences);
  }

  body.mobile-menu-open .site-nav.is-open a:nth-of-type(5)::before {
    background-image: var(--menu-icon-gallery);
  }

  body.mobile-menu-open .site-nav.is-open a:nth-of-type(6)::before {
    background-image: var(--menu-icon-journal);
  }

  body.mobile-menu-open .site-nav.is-open a:nth-of-type(7):not(.nav-cta):not(.language-switch)::before {
    background-image: var(--menu-icon-contact);
  }

  body.mobile-menu-open .site-nav.is-open a.nav-whatsapp:not(.nav-cta):not(.language-switch) {
    display: inline-flex;
    width: auto;
    min-width: 0;
    flex: initial;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 11px;
    margin: 0;
    padding: 0;
    text-align: center;
    background: rgba(255, 251, 247, 0.82);
    border-radius: 14px;
    box-shadow:
      0 10px 22px rgba(133, 84, 62, 0.06),
      inset 0 1px 0 rgba(255, 255, 255, 0.72);
  }

  body.mobile-menu-open .site-nav.is-open a.nav-whatsapp:not(.nav-cta):not(.language-switch)::before {
    content: none;
    display: none;
  }

  body.mobile-menu-open .site-nav.is-open .nav-whatsapp img {
    display: block;
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    align-self: center;
    justify-self: center;
    margin: 0 auto;
    filter: none;
    opacity: 1;
  }

  body.mobile-menu-open .site-nav.is-open .nav-whatsapp-label {
    display: block;
    width: 100%;
    line-height: 1;
    text-align: center;
  }

  body.mobile-menu-open .site-nav.is-open a:not(.nav-cta):not(.language-switch)::after {
    display: none;
  }

  body.mobile-menu-open .site-nav.is-open .motif-button {
    position: fixed;
    top: clamp(42px, 6.3svh, 54px);
    right: max(14px, calc((100vw - 342px) / 2));
    z-index: 20;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(232, 211, 199, 0.98);
    border-radius: 50%;
    background: rgba(255, 251, 247, 0.94);
    box-shadow: 0 8px 20px rgba(126, 80, 58, 0.1);
  }

  body.mobile-menu-open .site-nav.is-open .motif-button::before,
  body.mobile-menu-open .site-nav.is-open .motif-button::after {
    top: 19px;
    left: 10px;
    width: 18px;
    height: 1.6px;
    background: #654339;
  }

  body.mobile-menu-open .site-nav.is-open .motif-button span {
    opacity: 0;
  }

  body.mobile-menu-open .site-nav.is-open .motif-button::before {
    transform: rotate(45deg);
  }

  body.mobile-menu-open .site-nav.is-open .motif-button::after {
    transform: rotate(-45deg);
  }

  .site-nav.is-open a:not(.nav-cta):not(.language-switch) {
    display: inline-flex;
  }

  body.mobile-menu-open .site-nav .language-switch,
  body.mobile-menu-open .inner-page .site-nav .language-switch {
    display: inline-grid;
    width: 62px;
    min-width: 62px;
    height: 44px;
    min-height: 44px;
    padding: 0 8px;
    place-items: center;
    justify-self: center;
    order: 2;
    grid-column: 1 / -1;
    margin: 14px 0 10px;
    border: 1px solid rgba(226, 198, 181, 0.55);
    border-radius: 999px;
    background: rgba(255, 250, 245, 0.96);
    box-shadow:
      0 10px 18px rgba(75, 47, 31, 0.09),
      inset 0 1px 0 rgba(255, 255, 255, 0.72);
    color: #4d4540;
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
  }

  body.mobile-menu-open .site-nav .language-switch img {
    display: none;
  }

  body.mobile-menu-open .site-nav .language-switch span {
    display: block;
    font-size: inherit;
    line-height: 1;
  }

  body.mobile-menu-open .site-nav .language-switch::before,
  body.mobile-menu-open .site-nav .language-switch::after {
    content: none;
    display: none;
  }

  body.mobile-menu-open .site-nav .language-switch {
    grid-auto-flow: row;
    grid-template-columns: auto;
  }

  body.mobile-menu-open .site-nav.is-open .motif-button,
  body.mobile-menu-open .inner-page .site-nav.is-open .motif-button {
    position: fixed;
    top: var(--mobile-menu-close-top);
    right: min(7.6087vw, 33px);
    z-index: 1003;
    display: block;
    width: 44px;
    min-width: 44px;
    height: 44px;
    min-height: 44px;
    order: 5;
    border: 1px solid rgba(201, 144, 117, 0.42);
    border-radius: 50%;
    background:
      linear-gradient(45deg, transparent calc(50% - 1px), #654339 calc(50% - 1px), #654339 calc(50% + 1px), transparent calc(50% + 1px)) center / 20px 20px no-repeat,
      linear-gradient(-45deg, transparent calc(50% - 1px), #654339 calc(50% - 1px), #654339 calc(50% + 1px), transparent calc(50% + 1px)) center / 20px 20px no-repeat,
      rgba(255, 250, 245, 0.96);
    box-shadow: 0 8px 20px rgba(126, 80, 58, 0.1);
  }

  body.mobile-menu-open .site-nav.is-open .motif-button::before,
  body.mobile-menu-open .site-nav.is-open .motif-button::after {
    display: none;
  }

  body.mobile-menu-open .site-nav.is-open .motif-button::before {
    transform: rotate(45deg);
  }

  body.mobile-menu-open .site-nav.is-open .motif-button span {
    display: none;
  }

  body.mobile-menu-open .site-nav.is-open .motif-button::after {
    transform: rotate(-45deg);
  }

  body.mobile-menu-open .site-nav a:hover,
  body.mobile-menu-open .site-nav a:focus-visible {
    color: var(--terracotta-dark);
  }

  body.mobile-menu-open .site-nav .nav-cta,
  body.mobile-menu-open .site-nav .nav-cta:hover,
  body.mobile-menu-open .site-nav .nav-cta:focus-visible {
    color: var(--white);
  }

  .hero-panel {
    min-height: 440px;
  }

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

  .hero-copy h1 {
    font-size: 30px;
  }

  .mobile-break {
    display: block;
  }

  .hero-copy p {
    font-size: 14px;
  }

  .hero-actions {
    flex-wrap: wrap;
    gap: 12px;
  }

  .btn,
  .btn.primary,
  .btn.ghost,
  .btn.outline {
    width: 100%;
    max-width: 286px;
  }

  .intro-copy h2,
  .section-heading h2 {
    font-size: 30px;
  }

  .quote-band {
    grid-template-columns: 1fr;
    padding: 24px 22px;
    text-align: center;
  }

  .quote-motif {
    display: none;
  }

  .quote-band p {
    font-size: 24px;
  }

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

  @media (max-height: 640px) {
    body.mobile-menu-open {
      --mobile-menu-brand-height: calc(var(--mobile-menu-lockup-top) + var(--mobile-menu-lockup-size) + 2px);
    }

    body.mobile-menu-open .brand-panel img,
    body.mobile-menu-open .inner-page .brand-panel img {
      top: var(--mobile-menu-logo-top);
      width: var(--mobile-menu-logo-width);
      opacity: 1;
    }

    body.mobile-menu-open .brand-panel::before,
    body.mobile-menu-open .inner-page .brand-panel::before {
      top: var(--mobile-menu-lockup-top);
      width: var(--mobile-menu-lockup-size);
      height: var(--mobile-menu-lockup-size);
    }

    body.mobile-menu-open .brand-panel::after,
    body.mobile-menu-open .inner-page .brand-panel::after {
      display: block;
    }

    body.mobile-menu-open .site-nav,
    body.mobile-menu-open .inner-page .site-nav {
      gap: 6px;
      padding-bottom: 10px;
    }

    body.mobile-menu-open .site-nav .nav-cta {
      margin-bottom: 2px;
    }

    body.mobile-menu-open .site-nav .language-switch,
    body.mobile-menu-open .inner-page .site-nav .language-switch {
      height: 36px;
      min-height: 36px;
      margin: 8px 0 8px;
    }

    body.mobile-menu-open .site-nav.is-open a:not(.nav-cta):not(.language-switch) {
      height: clamp(58px, 11svh, 68px);
      gap: 7px;
      border-radius: 10px;
    }

    body.mobile-menu-open .site-nav.is-open a:not(.nav-cta):not(.language-switch)::before {
      width: 28px;
      height: 28px;
    }

    body.mobile-menu-open .site-nav.is-open .nav-whatsapp img {
      width: 28px;
      height: 28px;
      flex-basis: 28px;
    }

    body.mobile-menu-open .site-nav.is-open a.nav-whatsapp:not(.nav-cta):not(.language-switch) {
      gap: 7px;
    }

    body.mobile-menu-open .site-nav.is-open .motif-button,
    body.mobile-menu-open .inner-page .site-nav.is-open .motif-button {
      top: var(--mobile-menu-close-top);
    }
  }
}

.experience-reference-page {
  --paper: var(--paper-experience);
  background: var(--paper-experience);
}

.experience-reference-page .inner-main,
.experience-reference-main {
  background:
    linear-gradient(90deg, rgba(255, 248, 242, 0.62), rgba(245, 235, 227, 0.78) 48%, rgba(255, 248, 242, 0.7)),
    var(--paper-experience);
}

.experience-reference-hero {
  display: grid;
  width: 100%;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  height: clamp(420px, 31vw, 620px);
  margin: 0 auto;
  overflow: hidden;
  border-bottom: 1px solid rgba(226, 198, 181, 0.62);
  background: rgba(255, 250, 245, 0.88);
}

.experience-reference-hero-photo {
  display: block;
  overflow: hidden;
  width: 100%;
  height: 100%;
  min-height: 0;
}

.experience-reference-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
}

.experience-reference-hero-copy {
  display: grid;
  align-content: center;
  justify-items: center;
  padding: clamp(42px, 5vw, 86px) clamp(30px, 5vw, 84px);
  text-align: center;
}

.experience-reference-motif {
  width: clamp(20px, 1.5vw, 28px);
  height: clamp(20px, 1.5vw, 28px);
  background: url("/assets/ornaments/ornament-small.svg") center / contain no-repeat;
}

.experience-reference-motif.lower {
  width: clamp(24px, 1.8vw, 34px);
  height: clamp(24px, 1.8vw, 34px);
  margin-top: clamp(28px, 2.3vw, 42px);
}

.experience-reference-hero-copy .eyebrow {
  margin-top: 12px;
  color: var(--terracotta-dark);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.experience-reference-hero-copy h1 {
  max-width: 680px;
  margin-top: clamp(18px, 2vw, 34px);
  color: #171412;
  font-family: var(--serif);
  font-size: clamp(42px, 5.2vw, 82px);
  font-weight: 400;
  line-height: 0.98;
  text-align: center;
}

.experience-reference-hero-copy p:not(.eyebrow) {
  max-width: 500px;
  margin-top: clamp(18px, 1.7vw, 30px);
  color: #3d332e;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.85;
  text-align: center;
}

.experience-reference-services {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: clamp(46px, 6vw, 86px) clamp(24px, 5vw, 72px);
  background: rgba(255, 250, 245, 0.78);
  box-shadow: 0 0 0 100vmax rgba(255, 250, 245, 0.78);
  clip-path: inset(0 -100vmax);
}

.experience-reference-heading {
  display: grid;
  justify-items: center;
  color: var(--terracotta);
  text-align: center;
}

.experience-reference-heading h2 {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
}

.experience-reference-heading span {
  position: relative;
  display: block;
  width: 104px;
  height: 18px;
  margin-top: 2px;
  background: url("/assets/ornaments/ornament-small.svg") center / 16px 16px no-repeat;
}

.experience-reference-heading span::before,
.experience-reference-heading span::after {
  position: absolute;
  top: 50%;
  width: calc((100% - 34px) / 2);
  height: 1px;
  content: "";
  background: rgba(200, 111, 82, 0.76);
  transform: translateY(-50%);
}

.experience-reference-heading span::before {
  left: 0;
}

.experience-reference-heading span::after {
  right: 0;
}

.experience-reference-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 24px;
  border: 1px solid rgba(226, 198, 181, 0.58);
  background: rgba(255, 250, 245, 0.68);
}

.experience-reference-card {
  display: grid;
  min-height: 260px;
  min-width: 0;
  grid-template-rows: auto auto 1fr auto;
  justify-items: center;
  padding: 28px 18px 24px;
  border-left: 1px solid rgba(226, 198, 181, 0.58);
  text-align: center;
}

.experience-reference-card:first-child {
  border-left: 0;
}

.experience-reference-card img {
  width: 74px;
  height: 56px;
  max-width: none;
  object-fit: contain;
}

.experience-reference-card h3 {
  max-width: 210px;
  margin-top: 12px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(20px, 1.7vw, 28px);
  font-weight: 400;
  line-height: 1;
}

.experience-reference-card p {
  width: 100%;
  max-width: 190px;
  margin-top: 12px;
  color: #5f5048;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.55;
}

.experience-reference-card a {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  align-self: end;
  margin-top: 20px;
  color: var(--terracotta);
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
}

.experience-reference-advice {
  position: relative;
  display: grid;
  min-height: clamp(190px, 14vw, 250px);
  align-content: center;
  justify-items: center;
  overflow: hidden;
  padding: clamp(42px, 4vw, 68px) 24px;
  background:
    radial-gradient(circle at 78% 42%, rgba(242, 219, 205, 0.92), rgba(255, 250, 246, 0.42) 42%, rgba(255, 250, 246, 0) 70%),
    linear-gradient(90deg, #fbf3ee 0%, #f5e3d8 52%, #fff9f4 100%);
}

.experience-reference-advice::before {
  position: absolute;
  top: -52px;
  left: max(-88px, calc((100vw - 1500px) / 2 - 180px));
  width: clamp(320px, 32vw, 620px);
  height: clamp(230px, 23vw, 430px);
  content: "";
  background:
    repeating-linear-gradient(63deg, rgba(104, 75, 57, 0.16) 0 7px, transparent 7px 30px);
  filter: blur(7px);
  opacity: 0.66;
  transform: rotate(3deg);
}

.experience-reference-advice p {
  position: relative;
  z-index: 1;
  color: #3b2e29;
  font-family: var(--serif);
  font-size: clamp(24px, 2vw, 34px);
  font-weight: 400;
  line-height: 1.16;
  text-align: center;
}

.experience-reference-advice-button.btn.primary {
  position: relative;
  z-index: 1;
  width: clamp(178px, 12vw, 240px);
  height: clamp(38px, 2.8vw, 50px);
  margin-top: clamp(20px, 1.6vw, 30px);
  border-color: var(--terracotta);
  background: var(--terracotta);
  color: var(--white);
}

.experience-reference-footer-gap {
  height: 0;
  border-top: 1px solid rgba(226, 198, 181, 0.36);
  border-bottom: 0;
  background: rgba(255, 250, 246, 0.96);
}

@media (min-width: 1800px) {
  .experience-reference-services {
    max-width: min(calc(100% - 96px), 1920px);
  }
}

@media (min-width: 2400px) {
  .experience-reference-services {
    max-width: min(calc(100% - 96px), 1920px);
  }
}

@media (max-width: 1180px) {
  .experience-reference-hero {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .experience-reference-services {
    width: 100%;
  }

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

  .experience-reference-card:nth-child(odd) {
    border-left: 0;
  }

  .experience-reference-card:nth-child(n + 3) {
    border-top: 1px solid rgba(226, 198, 181, 0.58);
  }
}

@media (max-width: 820px) {
  .experience-reference-hero {
    height: auto;
    grid-template-columns: 1fr;
  }

  .experience-reference-hero-photo,
  .experience-reference-hero-photo img {
    height: clamp(340px, 74vw, 520px);
  }

  .experience-reference-hero-copy {
    min-height: 420px;
  }

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

  .experience-reference-card,
  .experience-reference-card:nth-child(odd) {
    border-left: 0;
  }

  .experience-reference-card + .experience-reference-card,
  .experience-reference-card:nth-child(n + 3) {
    border-top: 1px solid rgba(226, 198, 181, 0.58);
  }
}

@media (max-width: 560px) {
  .experience-reference-hero-copy h1 {
    font-size: clamp(42px, 12vw, 58px);
  }

  .experience-reference-services {
    width: 100%;
  }

  .experience-reference-advice p {
    font-size: clamp(24px, 7vw, 34px);
  }
}

.experience-reference-page {
  --experience-shell: min(100%, 1180px);
  --experience-rust: #ad5a3c;
  --experience-rust-dark: #8f442c;
  --experience-text: #3d332e;
}

.experience-reference-page .site-shell {
  background:
    linear-gradient(90deg, rgba(255, 248, 242, 0.66), rgba(245, 235, 227, 0.8) 45%, rgba(255, 248, 242, 0.72)),
    var(--paper-experience);
}

.experience-reference-page .inner-main,
.experience-reference-main {
  background: var(--paper-experience);
}

.experience-reference-main > section {
  width: var(--experience-shell);
  margin-right: auto;
  margin-left: auto;
}

.experience-reference-services,
.experience-reference-cuisine,
.experience-reference-gallery,
.experience-reference-promises,
.experience-reference-newsletter {
  clip-path: inset(0 -100vmax);
}

.experience-reference-hero {
  position: relative;
  display: grid;
  width: 100vw;
  max-width: none;
  height: clamp(430px, 44vw, 620px);
  grid-template-columns: 1fr;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  border-bottom: 0;
  background: #d8b39c;
  isolation: isolate;
}

.experience-reference-main > .experience-reference-hero {
  width: 100vw;
  max-width: none;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
}

.experience-reference-hero::before {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  width: clamp(30px, 5.6vw, 70px);
  content: "";
  background:
    linear-gradient(rgba(169, 85, 55, 0.82), rgba(169, 85, 55, 0.82)),
    url("/assets/ornaments/ornament-small-white.svg") center / 34px 34px repeat;
  opacity: 0.9;
}

.experience-reference-hero-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}

.experience-reference-hero-photo img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 54% center;
}

.experience-reference-hero-copy {
  position: relative;
  z-index: 2;
  display: grid;
  width: clamp(286px, 35vw, 410px);
  min-height: clamp(300px, 37vw, 430px);
  align-self: center;
  align-content: center;
  justify-items: start;
  margin-left: clamp(54px, 8.6vw, 92px);
  padding: clamp(30px, 4.2vw, 52px) clamp(28px, 4vw, 48px);
  background: rgba(255, 250, 245, 0.88);
  color: var(--experience-text);
  text-align: left;
  box-shadow: 0 24px 70px rgba(69, 37, 22, 0.12);
}

.experience-reference-hero-copy::before,
.experience-reference-hero-copy::after {
  position: absolute;
  left: 0;
  width: clamp(20px, 2.8vw, 34px);
  height: clamp(20px, 2.8vw, 34px);
  content: "";
  border-color: rgba(173, 90, 60, 0.28);
  pointer-events: none;
}

.experience-reference-hero-copy::before {
  top: 0;
  border-top: 1px solid;
  border-left: 1px solid;
}

.experience-reference-hero-copy::after {
  bottom: 0;
  border-bottom: 1px solid;
  border-left: 1px solid;
}

.experience-reference-hero-copy .eyebrow {
  margin-top: 0;
  color: #3f3732;
  font-size: clamp(10px, 0.92vw, 13px);
  font-weight: 500;
  text-align: left;
  text-transform: none;
}

.experience-reference-hero-copy h1 {
  max-width: 100%;
  margin-top: clamp(12px, 1.5vw, 18px);
  color: #2c2521;
  font-size: clamp(34px, 3.8vw, 48px);
  line-height: 1.02;
  text-align: left;
}

.experience-reference-hero-copy p:not(.eyebrow) {
  max-width: 300px;
  margin-top: clamp(14px, 1.8vw, 22px);
  color: #51443d;
  font-size: clamp(12px, 0.92vw, 14px);
  font-weight: 400;
  line-height: 1.72;
  text-align: left;
}

.experience-reference-hero-button.btn.primary {
  width: clamp(164px, 15vw, 202px);
  height: clamp(36px, 3.6vw, 46px);
  margin-top: clamp(20px, 2.3vw, 28px);
  border-color: #20201d;
  background: #20201d;
  box-shadow: none;
  color: #fffaf5;
  font-size: clamp(8px, 0.72vw, 10px);
}

.experience-reference-services {
  position: relative;
  width: var(--experience-shell);
  padding: clamp(44px, 5.6vw, 72px) clamp(34px, 5.2vw, 58px) clamp(54px, 6vw, 82px);
  background: #f8f1ec;
  box-shadow: 0 0 0 100vmax #f8f1ec;
  isolation: isolate;
}

.experience-reference-services::before,
.experience-reference-services::after {
  position: absolute;
  right: 0;
  left: 0;
  z-index: -1;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, rgba(201, 144, 117, 0), rgba(201, 144, 117, 0.42), rgba(201, 144, 117, 0));
}

.experience-reference-services::before {
  top: 0;
}

.experience-reference-services::after {
  bottom: 0;
}

.experience-reference-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1.2vw, 16px);
}

.experience-reference-heading h2 {
  color: var(--ink);
  font-size: clamp(24px, 2.4vw, 31px);
  line-height: 1;
}

.experience-reference-heading span {
  display: contents;
}

.experience-reference-heading::before,
.experience-reference-heading::after {
  width: clamp(40px, 5.6vw, 72px);
  height: 1px;
  content: "";
  background: rgba(200, 111, 82, 0.76);
}

.experience-reference-heading span::before,
.experience-reference-heading span::after {
  display: none;
}

.experience-reference-heading-copy {
  max-width: 520px;
  margin: clamp(12px, 1.3vw, 18px) auto 0;
  color: #665850;
  font-size: clamp(13px, 0.94vw, 16px);
  line-height: 1.65;
  text-align: center;
}

.experience-reference-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
  margin-top: clamp(34px, 4vw, 54px);
  border: 0;
  background: transparent;
}

.experience-reference-card,
.experience-reference-card:nth-child(odd) {
  position: relative;
  display: grid;
  min-height: 0;
  grid-template-rows: auto auto 1fr auto;
  justify-items: start;
  overflow: hidden;
  padding: clamp(15px, 1.4vw, 22px) clamp(15px, 1.5vw, 24px) clamp(20px, 1.8vw, 28px);
  border: 1px solid rgba(205, 124, 94, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 250, 245, 0.98), rgba(249, 240, 233, 0.96));
  box-shadow:
    0 16px 36px rgba(83, 48, 32, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  text-align: center;
  transition:
    border-color 220ms ease,
    box-shadow 260ms ease,
    transform 260ms ease;
}

.experience-reference-card::before {
  position: absolute;
  top: 0;
  right: clamp(18px, 1.4vw, 26px);
  left: clamp(18px, 1.4vw, 26px);
  height: 3px;
  content: "";
  background: linear-gradient(90deg, rgba(200, 111, 82, 0), rgba(200, 111, 82, 0.6), rgba(200, 111, 82, 0));
  opacity: 0.55;
}

.experience-reference-card:hover,
.experience-reference-card:focus-within {
  border-color: rgba(200, 111, 82, 0.46);
  box-shadow:
    0 20px 42px rgba(83, 48, 32, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
  transform: translateY(-4px);
}

.experience-reference-card img {
  width: 100%;
  height: clamp(124px, 9.5vw, 168px);
  border-radius: 6px;
  object-fit: cover;
  box-shadow: 0 12px 26px rgba(64, 35, 22, 0.12);
  transition: transform 360ms ease;
}

.experience-reference-card:hover img,
.experience-reference-card:focus-within img {
  transform: scale(1.025);
}

.experience-reference-card h3 {
  max-width: 100%;
  margin-top: clamp(18px, 1.8vw, 24px);
  color: #2e2926;
  font-size: clamp(18px, 1.9vw, 24px);
  line-height: 1.05;
  text-align: left;
}

.experience-reference-card p {
  max-width: 100%;
  margin-top: clamp(10px, 1.1vw, 14px);
  color: #51443d;
  font-size: clamp(11px, 0.9vw, 13px);
  line-height: 1.68;
  text-align: left;
}

.experience-reference-card a,
.experience-reference-card-button {
  display: inline-flex;
  width: auto;
  min-width: clamp(86px, 8.6vw, 112px);
  height: clamp(30px, 3vw, 38px);
  align-items: center;
  justify-content: center;
  align-self: end;
  justify-self: start;
  margin-top: clamp(20px, 2.4vw, 30px);
  padding: 0 16px;
  border: 1px solid rgba(173, 90, 60, 0.68);
  appearance: none;
  background: rgba(255, 250, 245, 0.72);
  color: var(--experience-rust-dark);
  cursor: pointer;
  font-family: var(--sans);
  font-size: clamp(8px, 0.68vw, 10px);
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    color 220ms ease,
    transform 220ms ease;
}

.experience-reference-card a:hover,
.experience-reference-card a:focus-visible,
.experience-reference-card-button:hover,
.experience-reference-card-button:focus-visible {
  border-color: var(--experience-rust);
  background: var(--experience-rust);
  color: #fffaf5;
  transform: translateY(-1px);
}

.experience-reference-cuisine {
  --experience-cuisine-pad-x: clamp(48px, 9vw, 120px);
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1fr);
  gap: clamp(26px, 4.2vw, 54px);
  align-items: center;
  min-height: clamp(250px, 26vw, 336px);
  padding: clamp(34px, 4.8vw, 62px) calc((100vw - var(--experience-shell)) / 2 + var(--experience-cuisine-pad-x));
  overflow: hidden;
  background:
    linear-gradient(rgba(158, 75, 45, 0.94), rgba(158, 75, 45, 0.94)),
    url("/assets/ornaments/ornament-small-white.svg") center / 46px 46px repeat;
  color: #fff8f1;
}

.experience-reference-main > .experience-reference-cuisine {
  width: 100vw;
  max-width: none;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
}

.experience-reference-cuisine-copy {
  position: relative;
  z-index: 1;
  max-width: 360px;
}

.experience-reference-cuisine .eyebrow {
  color: rgba(255, 244, 236, 0.84);
  font-size: clamp(9px, 0.8vw, 11px);
  font-weight: 500;
  text-transform: none;
}

.experience-reference-cuisine h2 {
  margin-top: 8px;
  color: #fff8f1;
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.06;
}

.experience-reference-cuisine-copy > p:not(.eyebrow) {
  max-width: 330px;
  margin-top: clamp(12px, 1.4vw, 18px);
  color: rgba(255, 247, 241, 0.86);
  font-size: clamp(12px, 0.94vw, 14px);
  line-height: 1.72;
}

.experience-reference-cuisine-button,
.experience-reference-gallery-button {
  display: inline-flex;
  min-width: clamp(150px, 16vw, 208px);
  height: clamp(32px, 3.4vw, 42px);
  align-items: center;
  justify-content: center;
  margin-top: clamp(20px, 2.4vw, 30px);
  padding: 0 18px;
  border: 1px solid rgba(255, 250, 245, 0.78);
  background: rgba(255, 250, 245, 0.96);
  color: var(--experience-rust-dark);
  font-size: clamp(8px, 0.7vw, 10px);
  font-weight: 700;
  text-transform: uppercase;
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    color 220ms ease,
    transform 220ms ease;
}

.experience-reference-cuisine-button:hover,
.experience-reference-cuisine-button:focus-visible {
  border-color: #fff;
  background: #fff;
  transform: translateY(-1px);
}

.experience-reference-cuisine-photo {
  position: relative;
  z-index: 1;
  display: block;
  overflow: hidden;
  border-radius: 4px;
}

.experience-reference-cuisine-photo img {
  width: 100%;
  aspect-ratio: 2.08 / 1;
  object-fit: cover;
  object-position: center;
}

.experience-reference-gallery {
  padding: clamp(34px, 4.6vw, 54px) clamp(34px, 3.8vw, 46px) clamp(28px, 4vw, 44px);
  background: rgba(255, 250, 245, 0.92);
  box-shadow: 0 0 0 100vmax rgba(255, 250, 245, 0.92);
  text-align: center;
}

.experience-reference-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(8px, 1vw, 12px);
  margin-top: clamp(24px, 3vw, 34px);
}

.experience-reference-gallery-launch {
  height: auto;
  min-height: 0;
  border: 0;
  background: rgba(237, 212, 197, 0.45);
  cursor: zoom-in;
}

.experience-reference-gallery-grid picture {
  display: block;
  overflow: hidden;
}

.experience-reference-gallery-launch,
.experience-reference-gallery-grid picture {
  width: 100%;
  aspect-ratio: 1.88 / 1;
}

.experience-reference-gallery-grid img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  transition: transform 420ms ease;
}

.experience-reference-gallery-launch:hover img,
.experience-reference-gallery-launch:focus-visible img {
  transform: scale(1.035);
}

.experience-reference-gallery-launch .rf-photo-cue {
  margin: 0 0 clamp(10px, 1vw, 16px) clamp(10px, 1vw, 16px);
}

.experience-reference-gallery-button {
  margin-top: clamp(24px, 3vw, 34px);
  border-color: rgba(173, 90, 60, 0.58);
  background: transparent;
}

.experience-reference-gallery-button:hover,
.experience-reference-gallery-button:focus-visible {
  border-color: var(--experience-rust);
  background: var(--experience-rust);
  color: #fffaf5;
  transform: translateY(-1px);
}

.experience-reference-promises {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(22px, 4vw, 58px);
  align-items: start;
  padding: clamp(34px, 4.5vw, 58px) clamp(42px, 7vw, 96px);
  background: #f4ece5;
  box-shadow: 0 0 0 100vmax #f4ece5;
}

.experience-reference-promises article {
  display: grid;
  min-width: 0;
  grid-template-rows: clamp(54px, 3.9vw, 62px) auto auto;
  justify-items: center;
  align-items: start;
  text-align: center;
}

.experience-reference-promises img {
  display: block;
  width: clamp(48px, 3.6vw, 56px);
  height: clamp(48px, 3.6vw, 56px);
  place-self: center;
  object-fit: contain;
  object-position: center;
  opacity: 1;
}

.experience-reference-promises h3 {
  margin-top: clamp(12px, 1.2vw, 16px);
  color: #312b27;
  font-family: var(--sans);
  font-size: clamp(10px, 0.82vw, 12px);
  font-weight: 700;
  line-height: 1.25;
}

.experience-reference-promises p {
  max-width: 188px;
  margin-top: clamp(6px, 0.9vw, 10px);
  color: #5a4d45;
  font-size: clamp(11px, 0.88vw, 13px);
  line-height: 1.58;
}

.experience-reference-newsletter {
  position: relative;
  display: grid;
  min-height: clamp(144px, 13vw, 186px);
  align-items: center;
  justify-items: center;
  overflow: hidden;
  padding: clamp(28px, 3.8vw, 46px) clamp(48px, 9vw, 120px);
  padding-inline: max(22px, calc((100vw - var(--experience-shell)) / 2 + clamp(48px, 6vw, 96px)));
  background:
    linear-gradient(90deg, rgba(238, 235, 229, 0.98), rgba(249, 246, 241, 0.98) 50%, rgba(233, 229, 221, 0.98)),
    #f0ede7;
  border: 0;
  box-shadow: none;
  color: #342d29;
}

.experience-reference-newsletter::before {
  display: none;
}

.experience-reference-main > .experience-reference-newsletter {
  width: 100vw;
  max-width: none;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
}

.experience-reference-newsletter-copy {
  position: relative;
  z-index: 1;
  width: min(100%, 620px);
  margin: 0 auto;
  text-align: center;
}

.experience-reference-newsletter h2 {
  color: #342d29;
  font-family: var(--serif);
  font-size: clamp(24px, 2.6vw, 36px);
  font-weight: 400;
  line-height: 1;
}

.experience-reference-newsletter p {
  margin-top: 8px;
  color: #655c55;
  font-size: clamp(11px, 0.86vw, 13px);
  line-height: 1.5;
}

.experience-reference-newsletter-form {
  display: flex;
  width: min(100%, 460px);
  margin: clamp(16px, 2vw, 24px) auto 0;
}

.experience-reference-newsletter-form input {
  width: 100%;
  min-width: 0;
  height: clamp(32px, 3.4vw, 42px);
  padding: 0 16px;
  border: 1px solid rgba(195, 184, 174, 0.7);
  border-right: 0;
  background: #fffaf5;
  color: #3d332e;
  font: 500 clamp(10px, 0.82vw, 12px)/1 var(--sans);
}

.experience-reference-newsletter-form button {
  width: clamp(118px, 12vw, 154px);
  height: clamp(32px, 3.4vw, 42px);
  flex: none;
  border: 0;
  background: #22201d;
  color: #fffaf5;
  cursor: pointer;
  font: 700 clamp(8px, 0.72vw, 10px)/1 var(--sans);
  text-transform: uppercase;
  transition:
    background-color 220ms ease,
    transform 220ms ease;
}

.experience-reference-newsletter-form button:hover,
.experience-reference-newsletter-form button:focus-visible {
  background: #3a302b;
  transform: translateY(-1px);
}

.experience-reference-newsletter-form button:disabled,
.contact-submit:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.experience-reference-newsletter-status {
  width: min(100%, 460px);
  margin: 10px auto 0;
  color: #655c55;
  font: 500 12px/1.45 var(--sans);
  text-align: center;
}

.experience-reference-newsletter-status[hidden] {
  display: none;
}

@media (min-width: 1400px) {
  .experience-reference-page {
    --experience-shell: min(calc(100% - 96px), 1420px);
  }
}

@media (max-width: 1040px) {
  .experience-reference-card-grid {
    gap: clamp(18px, 3vw, 34px);
  }
}

@media (max-width: 900px) {
  .experience-reference-page .inner-header {
    width: 100%;
    grid-template-columns: 106px minmax(0, 1fr);
    padding-top: 0;
  }

  .js-enabled .experience-reference-page .site-nav:not(.is-open) a:not(.nav-cta):not(.language-switch) {
    display: none;
  }

  .experience-reference-page .motif-button {
    display: block;
    width: 42px;
    height: 38px;
    order: 3;
    border: 1px solid rgba(201, 144, 117, 0.42);
    background: rgba(255, 250, 245, 0.72);
    opacity: 1;
  }

  .experience-reference-page .motif-button span,
  .experience-reference-page .motif-button::before,
  .experience-reference-page .motif-button::after {
    position: absolute;
    left: 9px;
    display: block;
    width: 22px;
    height: 2px;
    content: "";
    background: var(--terracotta-dark);
    transform-origin: center;
    transition:
      opacity 160ms ease,
      transform 160ms ease;
  }

  .experience-reference-page .motif-button::before {
    top: 11px;
  }

  .experience-reference-page .motif-button span {
    top: 18px;
  }

  .experience-reference-page .motif-button::after {
    top: 25px;
  }

  .experience-reference-page .site-nav.is-open .motif-button::before {
    top: 18px;
    transform: rotate(45deg);
  }

  .experience-reference-page .site-nav.is-open .motif-button span {
    opacity: 0;
  }

  .experience-reference-page .site-nav.is-open .motif-button::after {
    top: 18px;
    transform: rotate(-45deg);
  }

  .experience-reference-page .site-nav,
  .experience-reference-page.inner-page .site-nav {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
    height: auto;
    min-height: 70px;
    padding: 12px 16px;
  }

  .experience-reference-page .site-nav .nav-cta {
    order: 1;
  }

  .experience-reference-page .site-nav .language-switch {
    order: 2;
  }

  .experience-reference-page .site-nav.is-open a:not(.nav-cta):not(.language-switch) {
    display: inline-flex;
    width: calc(50% - 5px);
    height: 40px;
    align-items: center;
    justify-content: center;
    order: 4;
    border: 1px solid rgba(226, 198, 181, 0.74);
    background: rgba(255, 250, 245, 0.9);
    color: var(--ink-deep);
    font-size: 10px;
  }

  .experience-reference-hero {
    height: auto;
    min-height: 0;
    padding: clamp(54px, 8vw, 74px) clamp(18px, 4vw, 34px);
  }

  .experience-reference-hero::before {
    width: clamp(18px, 4vw, 34px);
  }

  .experience-reference-hero-photo img {
    object-position: 62% center;
  }

  .experience-reference-hero-copy {
    width: min(100%, 420px);
    min-height: 0;
    margin-left: clamp(22px, 5vw, 48px);
  }

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

  .experience-reference-cuisine {
    --experience-cuisine-pad-x: clamp(28px, 7vw, 70px);
    grid-template-columns: 1fr;
  }

  .experience-reference-cuisine-copy {
    max-width: 540px;
  }

  .experience-reference-cuisine-photo img {
    aspect-ratio: 1.8 / 1;
  }

}

@media (max-width: 620px) {
  .experience-reference-page .inner-header {
    grid-template-columns: 86px minmax(0, 1fr);
  }

  .experience-reference-page .brand-panel,
  .experience-reference-page.inner-page .brand-panel {
    height: 70px;
  }

  .experience-reference-page .brand-panel img,
  .experience-reference-page.inner-page .brand-panel img {
    width: 56px;
  }

  .experience-reference-page .site-nav .nav-cta {
    width: 92px;
    height: 44px;
    margin-left: 0;
  }

  .experience-reference-page .site-nav .language-switch {
    min-width: 44px;
    height: 44px;
  }

  .experience-reference-page .site-nav.is-open a:not(.nav-cta):not(.language-switch) {
    width: 100%;
  }

  .experience-reference-hero {
    padding: 320px 18px 28px;
  }

  .experience-reference-hero-photo {
    height: 380px;
  }

  .experience-reference-hero-photo img {
    object-position: 64% top;
  }

  .experience-reference-hero-copy {
    width: min(100%, 390px);
    margin: 0 auto;
    padding: 28px 24px;
  }

  .experience-reference-hero-copy h1 {
    font-size: clamp(35px, 11vw, 46px);
  }

  .experience-reference-services,
  .experience-reference-gallery,
  .experience-reference-promises,
  .experience-reference-newsletter {
    padding-right: 22px;
    padding-left: 22px;
  }

  .experience-reference-card-grid,
  .experience-reference-gallery-grid,
  .experience-reference-promises {
    grid-template-columns: 1fr;
  }

  .experience-reference-card:nth-child(even) {
    margin-top: 0;
  }

  .experience-reference-card img {
    height: clamp(190px, 52vw, 250px);
  }

  .experience-reference-card p {
    max-width: 100%;
  }

  .experience-reference-promises p {
    max-width: 260px;
  }

  .experience-reference-gallery-launch,
  .experience-reference-gallery-grid picture {
    aspect-ratio: 1.65 / 1;
  }

  .experience-reference-gallery-grid img {
    aspect-ratio: 1.65 / 1;
  }

  .experience-reference-newsletter-form {
    display: grid;
  }

  .experience-reference-newsletter-form button {
    width: 100%;
  }
}

@media (max-width: 900px) {
  body.experience-reference-page.mobile-menu-open .site-nav,
  body.experience-reference-page.mobile-menu-open.inner-page .site-nav {
    position: fixed;
    top: var(--mobile-menu-brand-height);
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-content: start;
    gap: 9px;
    padding: 0 max(15px, calc(50vw - 165px)) 16px;
    background: #fff9f4;
    color: #463f3a;
    overflow-y: auto;
  }

  body.experience-reference-page.mobile-menu-open .brand-panel,
  body.experience-reference-page.mobile-menu-open.inner-page .brand-panel {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1001;
    display: grid;
    height: var(--mobile-menu-brand-height);
    min-height: 0;
    place-items: start center;
    overflow: hidden;
    padding: 0;
    border: 0;
    background: #fff9f4;
  }

  body.experience-reference-page.mobile-menu-open .brand-panel img,
  body.experience-reference-page.mobile-menu-open.inner-page .brand-panel img {
    width: clamp(126px, 34vw, 164px);
    margin-top: clamp(42px, 11vw, 68px);
  }

  body.experience-reference-page.mobile-menu-open .site-nav .nav-cta {
    width: min(85.5vw, 356px);
    height: clamp(50px, 8svh, 62px);
    grid-column: 1 / -1;
    justify-self: center;
    margin: 0 0 4px;
    order: 1;
  }

  body.experience-reference-page.mobile-menu-open .site-nav .language-switch {
    width: auto;
    min-width: 62px;
    height: 42px;
    grid-column: 1 / -1;
    justify-self: center;
    margin: 8px 0 13px;
    order: 2;
  }

  body.experience-reference-page.mobile-menu-open .site-nav.is-open a:not(.nav-cta):not(.language-switch) {
    width: auto;
    min-width: 0;
    height: clamp(68px, 9svh, 86px);
    justify-self: stretch;
    margin: 0;
    order: 3;
  }

  body.experience-reference-page.mobile-menu-open .site-nav.is-open .nav-whatsapp {
    width: auto;
    min-width: 0;
    height: clamp(68px, 9svh, 86px);
    flex: initial;
    margin: 0;
    border-radius: 14px;
  }

  body.experience-reference-page.mobile-menu-open .site-nav.is-open .nav-whatsapp-label {
    display: block;
  }
}

.contact-page {
  --contact-paper: #f6eee8;
  --contact-ink: #2f2926;
  --contact-muted: #776a64;
  --contact-accent: #c87154;
  --contact-accent-dark: #a95840;
  --contact-line: #ead9cf;
  --contact-media-max: 1920px;
  background: var(--contact-paper);
}

.contact-page .contact-shell {
  overflow: visible;
  background:
    linear-gradient(90deg, rgba(255, 251, 247, 0.66), rgba(246, 238, 232, 0.78) 42%, rgba(255, 251, 247, 0.72)),
    var(--contact-paper);
}

.contact-header {
  height: 126px;
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid rgba(225, 207, 195, 0.86);
  background: rgba(255, 250, 247, 0.96);
}

.contact-header-inner {
  display: grid;
  width: min(100%, 1200px);
  height: 100%;
  grid-template-columns: 226px minmax(0, 1fr);
  align-items: center;
  margin: 0 auto;
}

.contact-brand {
  display: grid;
  width: 112px;
  height: 112px;
  place-items: center;
  justify-self: start;
  margin-left: 17px;
}

.contact-brand img {
  width: 108px;
  max-width: none;
  opacity: 0.98;
}

.contact-page .contact-nav {
  height: 100%;
  min-height: 0;
  justify-content: flex-end;
  gap: 28px;
  padding: 0 35px 0 0;
  border-bottom: 0;
  background: transparent;
  color: #161616;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
}

.contact-page .contact-nav::before {
  display: none;
}

.contact-page .contact-nav a::after {
  bottom: -17px;
  height: 1px;
  background: #111;
}

.contact-page .contact-nav a:hover,
.contact-page .contact-nav a:focus-visible {
  color: #111;
}

.contact-page .contact-nav .nav-cta {
  width: 115px;
  height: 45px;
  margin-left: 78px;
  border: 1px solid var(--terracotta);
  border-radius: 2px;
  color: #fff;
  background: var(--terracotta);
  box-shadow: 0 8px 22px rgba(74, 47, 31, 0.055);
  font-size: 11px;
  letter-spacing: 0;
  line-height: 1;
}

.contact-page .contact-nav .contact-language {
  display: inline-flex;
  width: auto;
  height: 45px;
  align-items: center;
  gap: 13px;
  margin-left: 0;
  color: #181513;
  font-size: 11px;
  font-weight: 700;
  box-shadow: none;
  transform: none;
}

.contact-page .contact-nav .contact-language::after {
  display: none;
}

.contact-page .contact-nav .contact-language i {
  width: 0;
  height: 0;
  border-top: 4px solid var(--contact-accent-dark);
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}

.contact-main {
  border-bottom: 1px solid rgba(225, 207, 195, 0.86);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.72), rgba(255, 250, 245, 0.8) 44%, rgba(255, 255, 255, 0.86)),
    var(--contact-paper);
}

.contact-stage {
  display: grid;
  width: min(100%, 1543px);
  height: 686px;
  grid-template-columns: 60.66% 39.34%;
  margin: 0 auto;
}

.contact-left {
  position: relative;
  min-width: 0;
  height: 686px;
}

.contact-door {
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.contact-door {
  position: absolute;
  top: 0;
  left: 0;
  width: min(252px, 16.34vw);
  height: 331px;
  background-position: center;
}

.contact-intro {
  position: absolute;
  top: 44px;
  left: min(278px, 18.02vw);
  width: min(360px, 23.32vw);
  color: var(--contact-ink);
}

.contact-ornament {
  display: block;
  width: 25px;
  height: 24px;
  margin: 0 0 18px 4px;
  background: url("/assets/ornaments/ornament-small.svg") center / 17px 17px no-repeat;
  opacity: 0.9;
}

.contact-kicker,
.contact-form-title,
.contact-footer-social p {
  color: var(--contact-accent-dark);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.contact-intro h1 {
  margin-top: 27px;
  color: #332a25;
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 400;
  line-height: 1.17;
}

.contact-lead {
  margin-top: 25px;
  color: #6f6460;
  font-size: 11px;
  line-height: 1.75;
}

.contact-details {
  position: absolute;
  top: 42px;
  left: min(656px, 42.52vw);
  width: min(255px, 17vw);
  color: #332e2a;
  font-style: normal;
}

.contact-detail {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 15px;
}

.contact-detail + .contact-detail {
  margin-top: 23px;
}

.contact-detail-icon {
  display: block;
  width: 22px;
  height: 22px;
  color: var(--contact-accent);
}

.contact-detail-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.contact-detail strong {
  display: block;
  margin: 0 0 6px;
  color: #342d29;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.25;
}

.contact-detail p {
  color: #4f4743;
  font-size: 11px;
  line-height: 1.72;
}

.contact-detail a {
  display: inline-flex;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  transition: color 160ms ease;
}

.contact-detail a:hover,
.contact-detail a:focus-visible {
  color: var(--contact-accent-dark);
}

.contact-map {
  position: absolute;
  top: 331px;
  left: 0;
  width: 100%;
  height: 333px;
  overflow: hidden;
  background-color: #eee5dd;
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.56) contrast(0.92) brightness(1.08) opacity(0.82);
}

.contact-form-card {
  width: min(504px, calc(100% - 64px));
  height: 589px;
  margin: 42px 0 0;
  padding: 49px 50px 34px;
  border: 1px solid rgba(225, 207, 195, 0.9);
  background: rgba(255, 250, 247, 0.56);
  box-shadow: 0 18px 42px rgba(138, 94, 72, 0.03);
}

.contact-form-title {
  margin-bottom: 22px;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(225, 207, 195, 0.96);
  border-radius: 6px;
  color: #342e2a;
  background: rgba(255, 250, 247, 0.68);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  outline: none;
  transition:
    border-color 160ms ease,
    background-color 160ms ease,
    box-shadow 160ms ease;
}

.contact-form input {
  height: 46px;
  padding: 0 13px;
}

.contact-form textarea {
  height: 167px;
  resize: vertical;
  padding: 18px 13px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #9d9b99;
  opacity: 1;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(194, 113, 84, 0.78);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 0 0 3px rgba(200, 114, 84, 0.1);
}

.contact-submit {
  display: inline-flex;
  width: 100%;
  height: 45px;
  align-items: center;
  justify-content: center;
  border: 0;
  color: #fff;
  background: linear-gradient(180deg, #cf8064, #bf6d52);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background-color 160ms ease,
    transform 160ms ease;
}

.contact-submit:hover,
.contact-submit:focus-visible {
  background: var(--contact-accent-dark);
  transform: translateY(-1px);
}

.contact-privacy {
  margin-top: 13px;
  color: #918884;
  font-size: 9px;
  line-height: 1.5;
  text-align: center;
}

.contact-privacy a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-footer-about,
.contact-footer-address,
.contact-footer-logo,
.contact-footer-social,
.contact-footer-reserve,
.contact-footer-bottom {
  position: absolute;
}

.contact-footer-heading {
  display: inline-flex;
  align-items: center;
  gap: 19px;
  color: #171514;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.contact-footer-home {
  display: inline-grid;
  width: 14px;
  height: 14px;
  color: var(--contact-accent);
  place-items: center;
}

.contact-footer-home svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.contact-footer-social {
  top: 50px;
  right: 263px;
  width: 160px;
}

.contact-footer-social p {
  color: #161514;
  font-weight: 700;
}

.contact-socials {
  display: flex;
  gap: 12px;
  margin-top: 19px;
}

.contact-socials a {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.contact-socials a:hover,
.contact-socials a:focus-visible {
  opacity: 0.78;
  transform: translateY(-1px);
}

.contact-socials img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.contact-social-letter {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(199, 114, 84, 0.72);
  border-radius: 50%;
  color: var(--contact-accent-dark);
  font-family: Georgia, serif;
  font-size: 20px;
  font-style: italic;
  font-weight: 700;
  line-height: 1;
}

@media (max-width: 1400px) {
  .contact-header-inner {
    width: min(100% - 96px, 1200px);
  }

  .contact-page .contact-nav {
    gap: 22px;
  }

  .contact-page .contact-nav .nav-cta {
    margin-left: 38px;
  }
}

@media (min-width: 1600px) and (min-height: 1100px) {
  .contact-page {
    --contact-wide-scale: 1.03;
    --contact-wide-stage-offset: 21px;
    --contact-wide-header-height: 130px;
    --contact-wide-footer-height: 227px;
  }

  .contact-header {
    height: var(--contact-wide-header-height);
  }

  .contact-header-inner,
  .contact-footer-inner {
    transform: scale(var(--contact-wide-scale));
    transform-origin: top center;
  }

  .contact-stage {
    margin-bottom: var(--contact-wide-stage-offset);
    transform: scale(var(--contact-wide-scale));
    transform-origin: top center;
  }
}

@media (min-width: 1700px) and (min-height: 1100px) {
  .contact-page {
    --contact-wide-scale: 1.08;
    --contact-wide-stage-offset: 55px;
    --contact-wide-header-height: 136px;
    --contact-wide-footer-height: 238px;
  }
}

@media (min-width: 1800px) and (min-height: 1100px) {
  .contact-page {
    --contact-wide-scale: 1.13;
    --contact-wide-stage-offset: 89px;
    --contact-wide-header-height: 142px;
    --contact-wide-footer-height: 249px;
  }
}

@media (min-width: 1900px) and (min-height: 1100px) {
  .contact-page {
    --contact-wide-scale: 1.18;
    --contact-wide-stage-offset: 123px;
    --contact-wide-header-height: 149px;
    --contact-wide-footer-height: 260px;
  }
}

@media (min-width: 2000px) and (min-height: 1100px) {
  .contact-page {
    --contact-wide-scale: 1.22;
    --contact-wide-stage-offset: 151px;
    --contact-wide-header-height: 154px;
    --contact-wide-footer-height: 268px;
  }
}

@media (max-width: 1180px) {
  .contact-header {
    height: auto;
  }

  .contact-header-inner {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .contact-brand {
    height: 126px;
    margin: 0 auto;
  }

  .contact-page .contact-nav {
    min-height: 70px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 13px 20px;
    padding: 14px 20px;
    border-top: 1px solid rgba(225, 207, 195, 0.7);
  }

  .contact-page .contact-nav .nav-cta {
    margin-left: 8px;
  }

  .contact-stage {
    height: auto;
    grid-template-columns: 1fr;
  }

  .contact-left {
    display: grid;
    height: auto;
    min-height: 0;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
    gap: 28px 32px;
    padding: 56px clamp(28px, 6vw, 72px) 0;
  }

  .contact-door {
    top: 0;
    width: 230px;
    height: 304px;
    opacity: 0.34;
  }

  .contact-intro,
  .contact-details,
  .contact-map {
    position: relative;
    inset: auto;
  }

  .contact-intro {
    width: auto;
    max-width: 480px;
  }

  .contact-details {
    width: auto;
    max-width: 360px;
    align-self: start;
  }

  .contact-map {
    grid-column: 1 / -1;
    width: calc(100% + clamp(56px, 12vw, 144px));
    height: clamp(260px, 34vw, 360px);
    margin: 16px calc(clamp(28px, 6vw, 72px) * -1) 0;
  }

  .contact-form-card {
    width: min(100% - 56px, 600px);
    height: auto;
    margin: 44px auto 58px;
  }

  .contact-footer-about,
  .contact-footer-address,
  .contact-footer-logo,
  .contact-footer-social,
  .contact-footer-reserve,
  .contact-footer-bottom {
    position: static;
  }

  .contact-footer-social {
    justify-self: center;
  }
}

@media (max-width: 820px) {
  .js-enabled .contact-page .contact-nav:not(.is-open) a:not(.nav-cta):not(.language-switch) {
    display: none;
  }

  .contact-page .contact-nav {
    gap: 10px 12px;
    padding: 12px 16px;
  }

  .contact-page .contact-nav .nav-cta {
    order: 1;
    flex: 0 0 min(42vw, 140px);
    width: min(42vw, 140px);
    margin-left: 0;
  }

  .contact-page .contact-nav .language-switch {
    order: 2;
    width: 48px;
    height: 38px;
    justify-content: center;
    gap: 7px;
  }

  .contact-page .contact-nav .motif-button {
    position: relative;
    display: block;
    width: 42px;
    height: 38px;
    order: 3;
    border: 1px solid rgba(201, 144, 117, 0.42);
    border-radius: 0;
    background: rgba(255, 250, 245, 0.72);
    opacity: 1;
  }

  .contact-page .contact-nav .motif-button span,
  .contact-page .contact-nav .motif-button::before,
  .contact-page .contact-nav .motif-button::after {
    position: absolute;
    left: 9px;
    display: block;
    width: 22px;
    height: 2px;
    content: "";
    background: var(--contact-accent-dark);
    transform-origin: center;
    transition:
      opacity 160ms ease,
      transform 160ms ease;
  }

  .contact-page .contact-nav .motif-button::before {
    top: 11px;
  }

  .contact-page .contact-nav .motif-button span {
    top: 18px;
  }

  .contact-page .contact-nav .motif-button::after {
    top: 25px;
  }

  .contact-page .contact-nav.is-open .motif-button::before {
    top: 18px;
    transform: rotate(45deg);
  }

  .contact-page .contact-nav.is-open .motif-button span {
    opacity: 0;
  }

  .contact-page .contact-nav.is-open .motif-button::after {
    top: 18px;
    transform: rotate(-45deg);
  }

  .contact-page .contact-nav.is-open a:not(.nav-cta):not(.language-switch) {
    display: inline-flex;
    width: calc(50% - 6px);
    height: 38px;
    align-items: center;
    justify-content: center;
    order: 4;
    border: 1px solid rgba(226, 198, 181, 0.74);
    background: rgba(255, 250, 245, 0.86);
    color: var(--ink-deep);
    font-size: 10px;
  }

  .contact-page .contact-nav.is-open a::after {
    bottom: 6px;
  }

  .contact-left {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact-intro h1 {
    font-size: clamp(34px, 9vw, 44px);
  }

  .contact-details {
    max-width: 480px;
  }

  .contact-form-card {
    width: min(100% - 36px, 520px);
    padding: 34px 24px 28px;
  }

  .contact-form-row {
    grid-template-columns: 1fr;
  }

  .contact-footer-heading,
  .contact-footer-address p {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .contact-brand {
    height: 112px;
  }

  .contact-page .contact-nav .nav-cta {
    width: 132px;
    height: 42px;
  }

  .contact-left {
    padding: 40px 22px 0;
  }

  .contact-door {
    width: 190px;
    height: 270px;
  }

  .contact-intro h1 {
    font-size: 32px;
  }

  .contact-lead br {
    display: none;
  }

  .contact-detail {
    gap: 12px;
  }

  .contact-map {
    width: calc(100% + 44px);
    height: 260px;
    margin-right: -22px;
    margin-left: -22px;
  }

  .contact-form input {
    height: 48px;
  }
}

.contact-page {
  --contact-paper: #f6eee8;
  --contact-ink: #2d2621;
  --contact-muted: #726862;
  --contact-accent: #c87154;
  --contact-accent-dark: #a9553d;
  --contact-line: rgba(224, 197, 181, 0.82);
  --contact-media-max: 1920px;
  background: var(--contact-paper);
}

.contact-page .contact-shell {
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 251, 247, 0.62), rgba(246, 238, 232, 0.78) 42%, rgba(255, 251, 247, 0.68)),
    var(--contact-paper);
}

.contact-header {
  height: 70px;
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid rgba(225, 207, 195, 0.9);
  background: rgba(255, 250, 247, 0.98);
}

.contact-header-inner {
  display: grid;
  width: min(100% - 120px, 970px);
  height: 100%;
  grid-template-columns: 155px minmax(0, 1fr);
  align-items: center;
  margin: 0 auto;
  transform: none;
}

.contact-brand {
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  justify-self: start;
  margin-left: 0;
}

.contact-brand img {
  width: 64px;
  max-width: none;
  opacity: 0.96;
}

.contact-page .contact-nav {
  height: 100%;
  min-height: 0;
  justify-content: flex-end;
  gap: 28px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #111;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0;
}

.contact-page .contact-nav::before {
  display: none;
}

.contact-page .contact-nav a::after {
  bottom: -12px;
  height: 1px;
  background: #111;
}

.contact-page .contact-nav .nav-cta {
  display: inline-flex;
  flex: 0 0 86px;
  width: 86px;
  height: 28px;
  align-items: center;
  justify-content: center;
  margin-left: 74px;
  border: 1px solid var(--terracotta);
  border-radius: 2px;
  color: #fff;
  background: var(--terracotta);
  box-shadow: 0 8px 22px rgba(74, 47, 31, 0.055);
  font-size: 8px;
  letter-spacing: 0;
  line-height: 1;
}

.contact-page .contact-nav .contact-language {
  display: inline-flex;
  width: auto;
  height: 28px;
  align-items: center;
  gap: 12px;
  margin-left: 0;
  color: #14110f;
  font-size: 8px;
  font-weight: 700;
  box-shadow: none;
  transform: none;
}

.contact-page .contact-nav .contact-language::after {
  display: none;
}

.contact-page .contact-nav .contact-language i {
  width: 0;
  height: 0;
  border-top: 3px solid var(--contact-accent-dark);
  border-right: 3px solid transparent;
  border-left: 3px solid transparent;
}

.contact-main {
  border-bottom: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.76), rgba(255, 250, 245, 0.78) 44%, rgba(255, 255, 255, 0.86)),
    var(--contact-paper);
}

.contact-hero {
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  width: min(100%, var(--contact-media-max));
  height: 202px;
  margin: 0 auto;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.08) 55%, rgba(0, 0, 0, 0.16)),
    image-set(
      url("/assets/photos/responsive/hero-clean-1200.webp") type("image/webp"),
      url("/assets/photos/responsive/hero-clean-1200.jpg") type("image/jpeg")
    ) center 47% / cover no-repeat;
  background-color: #160f0b;
}

.contact-hero::before {
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: 0;
  width: min(760px, 48%);
  content: "";
  pointer-events: none;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.34) 58%, rgba(0, 0, 0, 0) 100%);
}

.contact-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(100% - 96px, 872px);
  margin: 0 auto;
  padding-top: 0;
  text-align: center;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(10px);
}

.contact-ornament {
  display: block;
  width: 22px;
  height: 16px;
  margin: 0 0 8px;
  background: url("/assets/ornaments/ornament-small-white.svg") center / 14px 14px no-repeat;
  opacity: 0.82;
}

.contact-kicker,
.contact-section-label,
.contact-form-title,
.contact-footer-social p {
  color: var(--contact-accent-dark);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.contact-kicker {
  color: rgba(255, 255, 255, 0.86);
}

.contact-hero h1 {
  max-width: min(100%, 1040px);
  margin: 11px auto 0;
  color: #fff;
  font-family: var(--serif);
  font-size: 37px;
  font-weight: 500;
  line-height: 0.96;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.48);
  text-wrap: balance;
}

.contact-lead {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.7;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.44);
}

.contact-panel {
  height: 244px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.82), rgba(255, 250, 245, 0.72) 52%, rgba(255, 255, 255, 0.86)),
    var(--contact-paper);
}

.contact-panel-inner {
  display: grid;
  width: min(100% - 96px, 850px);
  height: 100%;
  grid-template-columns: 220px 1px 170px 1px minmax(0, 394px);
  align-items: center;
  gap: 16px;
  margin: 0 auto;
}

.contact-coordinates {
  align-self: start;
  padding-top: 27px;
}

.contact-section-label {
  margin-bottom: 17px;
}

.contact-details {
  position: static;
  width: auto;
  max-width: none;
  color: var(--contact-ink);
  font-style: normal;
}

.contact-detail {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 14px;
}

.contact-detail + .contact-detail {
  margin-top: 18px;
}

.contact-detail-icon {
  display: block;
  width: 16px;
  height: 16px;
  color: var(--contact-accent);
}

.contact-detail-icon svg,
.contact-footer-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-detail-icon svg {
  stroke-width: 1.6;
}

.contact-detail strong {
  display: block;
  margin: 0 0 5px;
  color: #302a26;
  font-size: 8px;
  font-weight: 700;
  line-height: 1.25;
}

.contact-detail p {
  color: #4d4540;
  font-size: 8px;
  line-height: 1.5;
}

.contact-detail a {
  display: inline-flex;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  transition: color 160ms ease;
}

.contact-detail a:hover,
.contact-detail a:focus-visible,
.contact-footer-address a:hover,
.contact-footer-address a:focus-visible {
  color: var(--contact-accent-dark);
}

.contact-panel-rule {
  width: 1px;
  height: 132px;
  background: var(--contact-line);
}

.contact-hours {
  align-self: center;
}

.contact-form-card {
  align-self: start;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 27px 0 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.contact-form-title {
  margin-bottom: 12px;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 12px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(225, 207, 195, 0.94);
  border-radius: 2px;
  color: #342e2a;
  background: rgba(255, 250, 247, 0.62);
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 400;
  outline: none;
  transition:
    border-color 160ms ease,
    background-color 160ms ease,
    box-shadow 160ms ease;
}

.contact-form input {
  height: 25px;
  padding: 0 11px;
}

.contact-form textarea {
  grid-column: 1 / -1;
  height: 61px;
  resize: vertical;
  padding: 11px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #9f9894;
  opacity: 1;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(194, 113, 84, 0.8);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 0 0 2px rgba(200, 114, 84, 0.1);
}

.contact-submit {
  display: inline-flex;
  grid-column: 1 / -1;
  width: 100%;
  height: 25px;
  align-items: center;
  justify-content: center;
  border: 0;
  color: #fff;
  background: linear-gradient(180deg, #cf8064, #bf6d52);
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background-color 160ms ease,
    transform 160ms ease;
}

.contact-submit:hover,
.contact-submit:focus-visible {
  background: var(--contact-accent-dark);
  transform: translateY(-1px);
}

.contact-privacy {
  margin-top: 7px;
  color: #918884;
  font-size: 6.5px;
  line-height: 1.45;
  text-align: center;
}

.contact-privacy a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-map {
  position: relative;
  inset: auto;
  width: min(100%, var(--contact-media-max));
  height: 320px;
  margin: 0 auto;
  overflow: hidden;
  border-top: 1px solid rgba(225, 207, 195, 0.72);
  border-bottom: 1px solid rgba(225, 207, 195, 0.72);
  background: #eee5dd;
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.58) contrast(0.92) brightness(1.08) opacity(0.82);
}

.contact-map-trigger {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.contact-map-trigger-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  color: #fff;
  background: rgba(190, 106, 76, 0.92);
  box-shadow: 0 14px 32px rgba(84, 48, 34, 0.22);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.92);
  transition:
    opacity 160ms ease,
    transform 160ms ease,
    background-color 160ms ease;
}

.contact-map-trigger-icon svg {
  display: block;
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.contact-map-trigger:hover .contact-map-trigger-icon,
.contact-map-trigger:focus-visible .contact-map-trigger-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.contact-map-trigger:focus-visible {
  outline: 2px solid rgba(190, 106, 76, 0.9);
  outline-offset: -4px;
}

.contact-map-modal[hidden] {
  display: none;
}

.contact-map-modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 32px;
  background: rgba(25, 18, 14, 0.64);
}

.contact-map-modal-card {
  width: min(100%, 1120px);
  max-height: min(88vh, 760px);
  overflow: hidden;
  border: 1px solid rgba(225, 207, 195, 0.9);
  border-radius: 6px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.86), rgba(255, 250, 245, 0.9)),
    var(--contact-paper);
  box-shadow: 0 28px 70px rgba(37, 24, 17, 0.28);
}

.contact-map-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 28px 18px;
  border-bottom: 1px solid rgba(225, 207, 195, 0.76);
}

.contact-map-modal-kicker {
  margin-bottom: 7px;
  color: var(--contact-accent-dark);
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-map-modal-header h2 {
  margin: 0;
  color: var(--contact-ink);
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 500;
  line-height: 1;
}

.contact-map-modal-header p:last-child {
  margin-top: 8px;
  color: #554c47;
  font-size: 10px;
  line-height: 1.55;
}

.contact-map-modal-close {
  display: grid;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(194, 113, 84, 0.42);
  border-radius: 50%;
  color: var(--contact-accent-dark);
  background: rgba(255, 250, 247, 0.72);
  font-family: var(--sans);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition:
    background-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.contact-map-modal-close:hover,
.contact-map-modal-close:focus-visible {
  color: #fff;
  background: var(--contact-accent-dark);
  transform: translateY(-1px);
}

.contact-map-modal-frame {
  display: block;
  width: 100%;
  height: min(58vh, 560px);
  min-height: 360px;
  border: 0;
  filter: saturate(0.74) contrast(0.98) brightness(1.02);
}

.contact-map-modal-actions {
  display: flex;
  justify-content: flex-end;
  padding: 16px 28px 24px;
  border-top: 1px solid rgba(225, 207, 195, 0.76);
}

.contact-map-external {
  display: inline-flex;
  width: 230px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(194, 113, 84, 0.74);
  color: var(--contact-accent-dark);
  background: rgba(255, 250, 247, 0.52);
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  transition:
    background-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.contact-map-external:hover,
.contact-map-external:focus-visible {
  color: #fff;
  background: var(--contact-accent);
  transform: translateY(-1px);
}

body.map-modal-open {
  overflow: hidden;
}

.contact-footer-about,
.contact-footer-address,
.contact-footer-logo,
.contact-footer-social,
.contact-footer-reserve,
.contact-footer-bottom {
  position: static;
}

.contact-footer-social {
  width: auto;
  padding-top: 24px;
}

.contact-footer-social p {
  color: #161514;
}

.contact-socials {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.contact-social-letter,
.contact-socials img {
  width: 22px;
  height: 22px;
}

.contact-socials a {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.contact-socials a:hover,
.contact-socials a:focus-visible {
  opacity: 0.78;
  transform: translateY(-1px);
}

.contact-social-letter {
  display: grid;
  place-items: center;
  border: 1px solid rgba(199, 114, 84, 0.72);
  border-radius: 50%;
  color: var(--contact-accent-dark);
  font-family: Georgia, serif;
  font-size: 13px;
  font-style: italic;
  font-weight: 700;
  line-height: 1;
}

@media (min-width: 1181px) and (min-height: 1130px) {
  .contact-page {
    --contact-fit-scale: min(1.42, calc(100vh / 1130px), calc((100vw - 80px) / 1050px));
    --contact-fit-scale: min(1.42, calc(100dvh / 1130px), calc((100vw - 80px) / 1050px));
  }

  .contact-header,
  .contact-hero,
  .contact-panel,
  .contact-map,
  .contact-footer {
    zoom: normal;
  }

  .contact-header {
    height: calc(70px * var(--contact-fit-scale));
  }

  .contact-header-inner {
    width: min(calc((100% - 120px) / var(--contact-fit-scale)), 970px);
    height: calc(100% / var(--contact-fit-scale));
    zoom: var(--contact-fit-scale);
  }

  .contact-hero {
    height: calc(202px * var(--contact-fit-scale));
  }

  .contact-hero-inner {
    width: min(calc((100% - 96px) / var(--contact-fit-scale)), 872px);
    zoom: var(--contact-fit-scale);
  }

  .contact-panel {
    height: calc(244px * var(--contact-fit-scale));
  }

  .contact-panel-inner {
    width: min(calc((100% - 96px) / var(--contact-fit-scale)), 850px);
    height: calc(100% / var(--contact-fit-scale));
    zoom: var(--contact-fit-scale);
  }

  .contact-map {
    height: calc(320px * var(--contact-fit-scale));
  }

}

@media (max-width: 1180px) {
  .contact-header {
    height: auto;
  }

  .contact-header-inner {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .contact-brand {
    height: 94px;
    margin: 0 auto;
  }

  .contact-page .contact-nav {
    min-height: 62px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 20px;
    padding: 12px 22px;
    border-top: 1px solid rgba(225, 207, 195, 0.72);
    font-size: 9px;
  }

  .contact-page .contact-nav .nav-cta {
    margin-left: 24px;
  }

  .contact-hero {
    height: clamp(260px, 32vw, 360px);
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.64), rgba(0, 0, 0, 0.26) 48%, rgba(0, 0, 0, 0.48)),
      linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.34)),
      image-set(
        url("/assets/photos/responsive/riad-patio-wide-1200.webp") type("image/webp"),
        url("/assets/photos/responsive/riad-patio-wide-1200.jpg") type("image/jpeg")
      ) center 52% / cover no-repeat;
  }

  .contact-hero-inner {
    padding-top: 0;
    opacity: 1;
    pointer-events: auto;
  }

  .contact-hero h1 {
    font-size: clamp(40px, 6vw, 58px);
  }

  .contact-panel {
    height: auto;
    padding: 42px 0;
  }

  .contact-panel-inner {
    width: min(100% - 72px, 760px);
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.74fr);
    gap: 34px 42px;
  }

  .contact-panel-rule {
    display: none;
  }

  .contact-form-card {
    grid-column: 1 / -1;
    padding-top: 0;
  }

  .contact-section-label,
  .contact-form-title,
  .contact-footer-social p,
  .contact-detail strong {
    font-size: 10px;
  }

  .contact-detail p,
  .contact-form input,
  .contact-form textarea,
  .contact-footer-about,
  .contact-footer-address p {
    font-size: 10px;
  }

  .contact-form input {
    height: 42px;
  }

  .contact-form textarea {
    height: 128px;
  }

  .contact-submit {
    height: 42px;
    font-size: 10px;
  }

  .contact-privacy {
    font-size: 9px;
  }

  .contact-map {
    width: 100%;
    height: clamp(300px, 38vw, 420px);
    margin: 0;
  }

  .contact-footer-logo,
  .contact-footer-about,
  .contact-footer-address,
  .contact-footer-social,
  .contact-footer-reserve,
  .contact-footer-bottom {
    position: static;
    padding-top: 0;
  }

  .contact-footer-social {
    grid-column: 1 / 2;
  }
}

@media (max-width: 900px) {
  .contact-header {
    height: 70px;
  }

  .contact-header-inner {
    height: 70px;
    grid-template-columns: auto minmax(0, 1fr);
    padding: 0 14px 0 16px;
  }

  .contact-brand {
    width: 72px;
    height: 70px;
    margin: 0;
    justify-content: start;
  }

  .contact-brand img {
    width: 54px;
  }

  .js-enabled .contact-page .contact-nav:not(.is-open) a:not(.nav-cta):not(.language-switch) {
    display: none;
  }

  .contact-page .contact-nav {
    height: 70px;
    min-height: 70px;
    flex-wrap: nowrap;
    justify-content: flex-end;
    gap: 10px 12px;
    padding: 0;
    border-top: 0;
  }

  .contact-page .contact-nav .nav-cta {
    order: 1;
    flex: 0 0 min(36vw, 132px);
    width: min(36vw, 132px);
    margin-left: 0;
  }

  .contact-page .contact-nav .language-switch {
    order: 2;
    width: 48px;
    height: 38px;
    justify-content: center;
    gap: 7px;
  }

  .contact-page .contact-nav .motif-button {
    position: relative;
    display: block;
    width: 42px;
    height: 38px;
    order: 3;
    border: 1px solid rgba(201, 144, 117, 0.42);
    border-radius: 0;
    background: rgba(255, 250, 245, 0.72);
    opacity: 1;
  }

  .contact-page .contact-nav .motif-button span,
  .contact-page .contact-nav .motif-button::before,
  .contact-page .contact-nav .motif-button::after {
    position: absolute;
    left: 9px;
    display: block;
    width: 22px;
    height: 2px;
    content: "";
    background: var(--contact-accent-dark);
    transform-origin: center;
    transition:
      opacity 160ms ease,
      transform 160ms ease;
  }

  .contact-page .contact-nav .motif-button::before {
    top: 11px;
  }

  .contact-page .contact-nav .motif-button span {
    top: 18px;
  }

  .contact-page .contact-nav .motif-button::after {
    top: 25px;
  }

  .contact-page .contact-nav.is-open .motif-button::before {
    top: 18px;
    transform: rotate(45deg);
  }

  .contact-page .contact-nav.is-open .motif-button span {
    opacity: 0;
  }

  .contact-page .contact-nav.is-open .motif-button::after {
    top: 18px;
    transform: rotate(-45deg);
  }

  .contact-page .contact-nav.is-open a:not(.nav-cta):not(.language-switch) {
    display: inline-flex;
    width: calc(50% - 6px);
    height: 38px;
    align-items: center;
    justify-content: center;
    order: 4;
    border: 1px solid rgba(226, 198, 181, 0.74);
    background: rgba(255, 250, 245, 0.86);
    color: var(--ink-deep);
    font-size: 10px;
  }

  .contact-page .contact-nav.is-open a::after {
    bottom: 6px;
  }

  .contact-hero {
    height: 360px;
  }

  .contact-hero-inner {
    width: min(100% - 42px, 520px);
    padding-top: 0;
  }

  .contact-hero h1 {
    font-size: clamp(38px, 10vw, 52px);
  }

  .contact-lead br {
    display: none;
  }

  .contact-panel-inner {
    width: min(100% - 42px, 520px);
    grid-template-columns: 1fr;
  }

  .contact-coordinates {
    padding-top: 0;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-form textarea,
  .contact-submit {
    grid-column: auto;
  }

  .contact-map-modal {
    padding: 16px;
  }

  .contact-map-modal-card {
    max-height: calc(100dvh - 32px);
    overflow: auto;
  }

  .contact-map-modal-header {
    padding: 20px 18px 16px;
  }

  .contact-map-modal-header h2 {
    font-size: 28px;
  }

  .contact-map-modal-frame {
    height: min(54vh, 440px);
    min-height: 260px;
  }

  .contact-map-modal-actions {
    justify-content: stretch;
    padding: 14px 18px 20px;
  }

  .contact-map-external {
    width: 100%;
  }

  .contact-footer-social,
  .contact-footer-reserve {
    grid-column: auto;
    justify-self: center;
  }
}

@media (min-width: 700px) and (max-width: 900px) {
  .contact-panel-inner {
    width: min(100% - 72px, 760px);
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.74fr);
  }

  .contact-form-card {
    grid-column: 1 / -1;
  }

}

@media (max-width: 480px) {
  .contact-brand {
    height: 70px;
  }

  .contact-hero {
    height: 340px;
    background-image:
      linear-gradient(90deg, rgba(0, 0, 0, 0.64), rgba(0, 0, 0, 0.26) 48%, rgba(0, 0, 0, 0.48)),
      linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.34)),
      image-set(
        url("/assets/photos/responsive/riad-patio-wide-768.webp") type("image/webp"),
        url("/assets/photos/responsive/riad-patio-wide-768.jpg") type("image/jpeg")
      );
  }

  .contact-hero-inner {
    padding-top: 0;
  }

  .contact-hero h1 {
    font-size: 36px;
  }

  .contact-panel {
    padding: 34px 0;
  }

  .contact-map {
    height: 300px;
  }

  .contact-map-trigger-icon {
    width: 42px;
    height: 42px;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  .contact-map-modal-frame {
    height: 42vh;
    min-height: 230px;
  }

}

.sr-only:not(:focus):not(:active) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  border: 0;
  margin: -1px;
  white-space: nowrap;
}

.skip-link {
  position: fixed;
  z-index: 1200;
  top: 12px;
  left: 12px;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0 18px;
  color: #fff;
  background: var(--terracotta-dark);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  transform: translateY(calc(-100% - 24px));
  transition: transform 160ms ease;
}

.skip-link:focus-visible {
  outline-color: rgba(255, 255, 255, 0.92);
  transform: translateY(0);
}

.contact-panel {
  position: relative;
  z-index: 2;
  height: auto;
  padding: clamp(34px, 4vw, 54px) 0;
}

.contact-panel-inner {
  height: auto;
  align-items: start;
  grid-template-columns: minmax(220px, 0.82fr) 1px minmax(158px, 0.58fr) 1px minmax(320px, 1.2fr);
}

.contact-coordinates,
.contact-form-card {
  padding-top: 0;
}

.contact-form input {
  min-height: 44px;
}

.contact-form textarea {
  min-height: 132px;
}

.contact-submit {
  min-height: 44px;
}

.contact-map {
  z-index: 1;
}

.contact-map-trigger {
  touch-action: manipulation;
}

.contact-map-fallback {
  position: absolute;
  right: clamp(14px, 3vw, 32px);
  bottom: clamp(14px, 3vw, 28px);
  left: clamp(14px, 3vw, 32px);
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px 18px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 250, 245, 0.82);
  border-radius: 4px;
  background: rgba(55, 37, 28, 0.82);
  box-shadow: 0 14px 34px rgba(43, 27, 19, 0.18);
  color: #fffaf5;
  pointer-events: none;
}

.contact-map-fallback[hidden] {
  display: none;
}

.contact-map-fallback strong,
.contact-map-fallback span,
.contact-map-fallback a {
  font-size: 11px;
  line-height: 1.45;
}

.contact-map-fallback strong {
  display: block;
  margin-bottom: 2px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-map-fallback a {
  display: inline-flex;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid rgba(255, 250, 245, 0.76);
  border-radius: 2px;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: auto;
}

.contact-form-status {
  margin-top: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(194, 113, 84, 0.28);
  border-radius: 4px;
  background: rgba(255, 246, 239, 0.86);
  color: #4a342c;
  font-size: 12px;
  line-height: 1.55;
}

.contact-form-status[hidden] {
  display: none;
}

.contact-form-status a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--contact-accent-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 1180px) {

  .contact-panel-inner {
    grid-template-columns: minmax(240px, 0.72fr) minmax(320px, 1.28fr);
  }

  .contact-wayfinding {
    padding-right: 36px;
  }
}

@media (max-width: 900px) {
  .contact-panel-inner {
    grid-template-columns: 1fr;
  }

  .contact-wayfinding {
    padding-right: 0;
  }

  .contact-map-fallback {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 512px) {
  .privacy-notice {
    right: 12px;
    bottom: 12px;
    width: calc(100vw - 24px);
    padding: 16px;
  }

  .privacy-notice strong {
    font-size: 20px;
  }

  .privacy-notice p {
    font-size: 10.5px;
  }

  .privacy-notice-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .privacy-notice-button,
  .privacy-notice-link {
    width: 100%;
  }
}

.site-nav .language-switch,
.site-nav .nav-whatsapp,
.motif-button,
.contact-page .contact-nav .motif-button,
.privacy-notice-button,
.privacy-notice-link,
.experience-reference-advice-button.btn.primary {
  min-width: 44px;
  min-height: 44px;
}

.motif-button,
.contact-page .contact-nav .motif-button {
  width: 44px;
  height: 44px;
}

.privacy-notice-button,
.privacy-notice-link {
  min-height: 44px;
}

.legal-document a,
.contact-privacy a {
  display: inline-flex;
  min-width: 48px;
  min-height: 44px;
  align-items: center;
  vertical-align: middle;
}

@media (min-width: 1181px) {
  body.contact-page .contact-hero,
  body.contact-page .contact-map {
    width: 100%;
    max-width: none;
  }

  body.contact-page .contact-hero-inner {
    width: min(100% - 120px, 1120px);
  }

  body.contact-page .contact-kicker {
    font-size: 10px;
  }

  body.contact-page .contact-lead {
    max-width: 520px;
    font-size: 11px;
    line-height: 1.65;
  }

  body.contact-page .contact-panel {
    padding: clamp(30px, 3vw, 44px) 0 clamp(10px, 1vw, 18px);
  }

  body.contact-page .contact-panel-inner {
    width: min(calc(100% - clamp(64px, 8vw, 140px)), 1180px);
    grid-template-columns: minmax(240px, 0.72fr) 1px minmax(280px, 0.98fr) 1px minmax(420px, 1.32fr);
    gap: clamp(18px, 2vw, 28px);
  }

  body.contact-page .contact-wayfinding {
    padding-right: clamp(36px, 2.5vw, 48px);
  }

  body.contact-page .contact-hours {
    align-self: start;
    padding-top: 34px;
  }

  body.contact-page .contact-section-label,
  body.contact-page .contact-form-title,
  body.contact-page .contact-detail strong,
  body.contact-page .contact-submit {
    font-size: 12px;
  }

  body.contact-page .contact-detail p,
  body.contact-page .contact-form input,
  body.contact-page .contact-form textarea {
    font-size: 13px;
  }

  body.contact-page .contact-form {
    gap: 12px 14px;
  }

  body.contact-page .contact-form input {
    padding: 0 13px;
  }

  body.contact-page .contact-form textarea {
    padding: 13px;
  }

  body.contact-page .contact-privacy {
    margin-top: 6px;
    font-size: 10px;
  }

  body.contact-page .contact-privacy a {
    min-width: auto;
    min-height: 22px;
  }
}

@media (max-width: 1180px) {
  body.contact-page .contact-section-label,
  body.contact-page .contact-form-title,
  body.contact-page .contact-detail strong,
  body.contact-page .contact-submit {
    font-size: 12px;
  }

  body.contact-page .contact-detail p,
  body.contact-page .contact-form input,
  body.contact-page .contact-form textarea {
    font-size: 13px;
  }

  body.contact-page .contact-panel {
    padding-bottom: clamp(22px, 3vw, 32px);
  }

  body.contact-page .contact-privacy {
    margin-top: 4px;
    font-size: 10px;
  }

  body.contact-page .contact-privacy a {
    min-width: auto;
    min-height: 30px;
  }
}

@media (max-width: 480px) {
  body.contact-page .contact-panel {
    padding-bottom: 16px;
  }
}

body.contact-page .contact-coordinates,
body.contact-page .contact-wayfinding,
body.contact-page .contact-form-card {
  align-self: start;
  padding-top: 0;
}

body.contact-page .contact-panel .contact-section-label,
body.contact-page .contact-panel .contact-form-title,
body.contact-page .contact-panel .contact-detail strong,
body.contact-page .contact-panel .contact-wayfinding-item strong,
body.contact-page .contact-panel .contact-submit {
  font-family: var(--sans);
  letter-spacing: 0;
}

body.contact-page .contact-panel .contact-section-label,
body.contact-page .contact-panel .contact-form-title {
  color: var(--contact-accent-dark);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

body.contact-page .contact-panel .contact-detail {
  align-items: start;
  gap: 13px;
}

body.contact-page .contact-panel .contact-detail + .contact-detail {
  margin-top: 18px;
}

body.contact-page .contact-panel .contact-detail-icon {
  margin-top: 1px;
}

body.contact-page .contact-panel .contact-detail a {
  display: inline;
  min-width: 0;
  min-height: 0;
}

body.contact-page .contact-panel .contact-detail strong,
body.contact-page .contact-panel .contact-wayfinding-item strong {
  color: #3f3732;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
}

body.contact-page .contact-panel .contact-submit {
  font-size: 12px;
}

body.contact-page .contact-panel .contact-detail p,
body.contact-page .contact-panel .contact-wayfinding-item p {
  color: #5d534d;
  font-size: 13px;
  line-height: 1.58;
}

body.contact-page .contact-panel .contact-form input,
body.contact-page .contact-panel .contact-form textarea {
  font-size: 13px;
  line-height: 1.55;
}

body.contact-page .contact-wayfinding .contact-section-label {
  margin-bottom: 17px;
}

body.contact-page .contact-wayfinding-stack {
  display: grid;
  gap: 16px;
}

body.contact-page .contact-wayfinding-item {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  column-gap: 13px;
}

body.contact-page .contact-wayfinding-copy {
  display: grid;
  gap: 6px;
  min-width: 0;
}

/* Contact form interactions: stable hit areas, tactile depth, clear focus. */
body.contact-page .contact-form input,
body.contact-page .contact-form textarea {
  position: relative;
  z-index: 0;
  transform: scale(1);
  transform-origin: center;
  transition:
    border-color 200ms ease,
    background-color 200ms ease,
    box-shadow 240ms cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 240ms cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: transform;
}

body.contact-page .contact-form input:focus,
body.contact-page .contact-form textarea:focus {
  z-index: 1;
  border-color: rgba(184, 95, 69, 0.82);
  background: #fff;
  box-shadow:
    0 0 0 3px rgba(184, 95, 69, 0.12),
    0 10px 24px rgba(94, 50, 35, 0.11);
  transform: scale(1.008);
}

body.contact-page .contact-submit {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(180deg, #cf8064 0%, #b85f45 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 4px 0 rgba(112, 55, 37, 0.1),
    0 8px 18px rgba(94, 50, 35, 0.12);
  transform: none;
  transition:
    background 220ms ease,
    box-shadow 240ms cubic-bezier(0.2, 0.7, 0.2, 1),
    filter 220ms ease;
}

body.contact-page .contact-submit::after {
  position: absolute;
  inset: -2px auto -2px -45%;
  z-index: 0;
  width: 36%;
  content: "";
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  pointer-events: none;
  transform: skewX(-18deg) translateX(-220%);
  transition: transform 560ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

body.contact-page .contact-submit:hover,
body.contact-page .contact-submit:focus-visible {
  background: linear-gradient(180deg, #d8896b 0%, #a9553d 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.26),
    0 4px 0 rgba(112, 55, 37, 0.08),
    0 12px 26px rgba(94, 50, 35, 0.2);
  filter: saturate(1.04);
  transform: none;
}

body.contact-page .contact-submit:hover::after,
body.contact-page .contact-submit:focus-visible::after {
  transform: skewX(-18deg) translateX(520%);
}

body.contact-page .contact-submit:focus-visible {
  outline: 2px solid rgba(169, 85, 61, 0.72);
  outline-offset: 3px;
}

body.contact-page .contact-submit:active {
  box-shadow:
    inset 0 3px 8px rgba(91, 42, 28, 0.18),
    0 3px 9px rgba(94, 50, 35, 0.14);
  filter: brightness(0.97);
  transform: none;
}

@media (hover: hover) and (pointer: fine) {
  body.contact-page .contact-form input:hover:not(:focus),
  body.contact-page .contact-form textarea:hover:not(:focus) {
    z-index: 1;
    border-color: rgba(194, 113, 84, 0.7);
    background: rgba(255, 253, 250, 0.94);
    box-shadow: 0 9px 22px rgba(94, 50, 35, 0.1);
    transform: scale(1.008);
  }
}

@media (prefers-reduced-motion: reduce) {
  body.contact-page .contact-form input,
  body.contact-page .contact-form textarea,
  body.contact-page .contact-submit,
  body.contact-page .contact-submit::after {
    transition-duration: 0.01ms;
  }

  body.contact-page .contact-form input:hover,
  body.contact-page .contact-form input:focus,
  body.contact-page .contact-form textarea:hover,
  body.contact-page .contact-form textarea:focus {
    transform: none;
  }

  body.contact-page .contact-submit::after {
    display: none;
  }
}

.contact-page .rf-footer {
  margin-top: clamp(30px, 4vw, 56px);
}

/* ============================================================
   Footer — responsive redesign (rf-footer)
   Supersedes the legacy .site-footer / .contact-footer /
   .gallery-footer components (their rules are now unused).
   Fully namespaced (.rf-*) to avoid any collision.
   ============================================================ */
.rf-footer {
  --rf-shell: min(calc(100% - clamp(32px, 11vw, 430px)), 2460px);
  --rf-rust: #b85f45;
  --rf-rust-light: #c86f50;
  --rf-rust-dark: #7b3e28;
  --rf-rust-deep: #6e371f;
  --rf-ink: #96614f;
  --rf-warm-white: #fff7ef;
  --rf-soft-text: rgba(255, 238, 229, 0.83);
  position: relative;
  overflow: hidden;
  background: var(--rf-rust);
  color: var(--rf-warm-white);
  font-family: var(--sans);
}

.rf-contact,
.rf-bottom-inner {
  width: var(--rf-shell);
  margin: 0 auto;
}

.rf-reserve {
  position: relative;
  display: inline-flex;
  width: clamp(178px, 10vw, 250px);
  max-width: calc(100vw - 72px);
  flex: none;
  min-height: clamp(54px, 3.3vw, 76px);
  align-items: center;
  justify-content: center;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(255, 247, 239, 0.94);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0) 44%),
    linear-gradient(180deg, #fffaf4 0%, #fff0e6 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -2px 0 rgba(117, 56, 36, 0.06),
    0 5px 10px rgba(74, 34, 21, 0.13),
    0 14px 24px rgba(68, 31, 19, 0.16);
  color: var(--rf-rust-dark);
  font: 800 clamp(11px, 0.62vw, 15px)/1 var(--sans);
  letter-spacing: .25em;
  text-decoration: none;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  transform: translateY(0);
  transition:
    border-color 260ms ease,
    box-shadow 300ms cubic-bezier(0.2, 0.7, 0.2, 1),
    color 220ms ease,
    filter 300ms ease,
    transform 300ms cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: transform;
}

.rf-reserve::before {
  position: absolute;
  top: 7px;
  right: 10px;
  left: 10px;
  z-index: -1;
  height: 1px;
  content: "";
  background: rgba(255, 255, 255, 0.86);
}

.rf-reserve:hover,
.rf-reserve:focus-visible {
  border-color: #ffffff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0) 42%),
    linear-gradient(180deg, #fff5eb 0%, #ffe9dd 100%);
  box-shadow:
    inset 0 2px 7px rgba(117, 56, 36, 0.09),
    inset 0 -1px 0 rgba(117, 56, 36, 0.04),
    0 3px 7px rgba(74, 34, 21, 0.12),
    0 8px 16px rgba(68, 31, 19, 0.13);
  color: var(--rf-rust-deep);
  filter: saturate(1.02);
  transform: translateY(3px);
}

.rf-reserve:active {
  box-shadow:
    inset 0 3px 11px rgba(117, 56, 36, 0.13),
    inset 0 -1px 0 rgba(117, 56, 36, 0.04),
    0 2px 5px rgba(74, 34, 21, 0.11),
    0 5px 11px rgba(68, 31, 19, 0.11);
  transform: translateY(5px);
}

.rf-contact-band {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(100deg, #97482f 0%, var(--rf-rust) 48%, var(--rf-rust-light) 100%);
}

.rf-contact-band::before {
  position: absolute;
  inset: 0;
  content: "";
  background: url("/assets/ornaments/ornament-small.svg") 0 0 / 76px 76px repeat;
  opacity: .06;
  pointer-events: none;
}

.rf-contact {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 0;
  grid-template-columns: minmax(250px, 1.06fr) minmax(170px, .82fr) minmax(214px, .9fr) minmax(164px, .72fr) minmax(150px, .7fr);
  align-items: stretch;
}

.rf-contact-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: clamp(96px, 5.6vw, 154px);
  align-items: flex-start;
  gap: clamp(14px, 1.2vw, 26px);
  padding: clamp(26px, 2.6vw, 58px) clamp(20px, 2.6vw, 62px);
  color: var(--rf-soft-text);
  text-decoration: none;
}

.rf-contact-card + .rf-contact-card::before {
  position: absolute;
  top: 18%;
  bottom: 18%;
  left: 0;
  width: 1px;
  content: "";
  background: rgba(255, 239, 230, 0.2);
}

.rf-contact-card > img {
  flex: none;
  width: clamp(20px, 1.2vw, 28px);
  height: clamp(20px, 1.2vw, 28px);
  opacity: .96;
}

.rf-contact-copy {
  display: block;
  min-width: 0;
}

.rf-contact-card h2,
.rf-contact-copy strong {
  display: block;
  margin: 0 0 clamp(8px, 0.6vw, 14px);
  color: var(--rf-warm-white);
  font: 800 clamp(10.5px, 0.52vw, 12px)/1.1 var(--sans);
  letter-spacing: .14em;
  text-transform: uppercase;
}

.rf-contact-card p,
.rf-contact-copy span {
  display: block;
  margin: 0;
  color: var(--rf-soft-text);
  font-size: clamp(12px, 0.56vw, 14px);
  line-height: 1.72;
}

.rf-address,
.rf-phone,
.rf-email {
  transition:
    background-color 160ms ease,
    color 160ms ease;
}

.rf-address:hover,
.rf-address:focus-visible,
.rf-phone:hover,
.rf-phone:focus-visible,
.rf-email:hover,
.rf-email:focus-visible {
  background: rgba(255, 247, 239, 0.06);
}

.rf-follow {
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: clamp(14px, 1.1vw, 24px);
  text-align: left;
}

.rf-follow h2 { margin: 0; }

.rf-booking {
  align-items: center;
  justify-content: flex-start;
}

.rf-socials {
  display: flex;
  gap: clamp(10px, 0.85vw, 18px);
}

.rf-socials a {
  display: grid;
  width: clamp(44px, 1.75vw, 46px);
  min-width: 44px;
  min-height: 44px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: var(--rf-warm-white);
  box-shadow: 0 8px 22px rgba(73, 36, 23, 0.12);
  transition:
    background-color 160ms ease,
    transform 160ms ease;
}

.rf-socials a:hover,
.rf-socials a:focus-visible {
  background: #ffffff;
  transform: translateY(-1px);
}

.rf-socials a:active { transform: translateY(0); }

.rf-socials img {
  width: 34px;
  height: 34px;
}

.rf-bottom {
  background: linear-gradient(90deg, var(--rf-rust-deep), var(--rf-rust-dark));
}

.rf-bottom-inner {
  display: grid;
  min-height: clamp(62px, 3.9vw, 104px);
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(18px, 2vw, 42px);
  color: rgba(255, 238, 229, 0.84);
}

.rf-copyright,
.rf-signature {
  margin: 0;
  font-size: clamp(12px, 0.56vw, 14px);
  letter-spacing: .02em;
}

.rf-copyright { justify-self: start; }

.rf-signature {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  justify-self: end;
  white-space: nowrap;
}

.rf-signature-mark {
  display: none;
  width: 19px;
  height: 18px;
  flex: none;
  background: url("/assets/ornaments/footer-heart.svg?v=20260711-contact-form-interactions-v2") center / contain no-repeat;
}

.rf-signature-mark::before,
.rf-signature-mark::after {
  content: none;
}

.rf-legal {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(18px, 2vw, 46px);
}

.rf-mobile-label {
  display: none;
}

.rf-legal a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: inherit;
  font-size: clamp(12px, 0.56vw, 14px);
  letter-spacing: .02em;
  text-decoration: none;
  transition: color 160ms ease;
  white-space: nowrap;
}

.rf-legal a:hover,
.rf-legal a:focus-visible { color: #ffffff; }

.rf-footer a:focus-visible {
  outline: 2px solid rgba(255, 247, 239, 0.86);
  outline-offset: 3px;
  border-radius: 2px;
}

.rf-footer .rf-reserve:focus-visible {
  border-radius: 8px;
}

.rf-socials a:focus-visible {
  border-radius: 50%;
  outline-offset: 2px;
}

@media (max-width: 1180px) {
  .rf-footer {
    --rf-shell: min(calc(100% - clamp(32px, 6vw, 72px)), 980px);
  }

  .rf-contact {
    min-height: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 20px 0;
  }

  .rf-contact-card {
    min-height: 128px;
    padding: 28px clamp(20px, 4vw, 44px);
  }

  .rf-contact-card + .rf-contact-card::before { display: none; }

  .rf-contact-card:nth-child(even)::before {
    position: absolute;
    top: 22%;
    bottom: 22%;
    left: 0;
    display: block;
    width: 1px;
    content: "";
    background: rgba(255, 239, 230, 0.18);
  }

  .rf-contact-card:nth-child(n+3) {
    border-top: 1px solid rgba(255, 239, 230, 0.16);
  }

  .rf-bottom-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 12px;
    padding: 20px 0;
  }

  .rf-copyright,
  .rf-signature {
    justify-self: center;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .rf-footer {
    --rf-shell: min(calc(100% - 36px), 430px);
  }

  .rf-contact {
    grid-template-columns: 1fr;
    padding: 12px 0;
  }

  .rf-contact-card {
    min-height: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 26px 18px;
    text-align: center;
  }

  .rf-contact-card:nth-child(even)::before {
    display: none;
  }

  .rf-contact-card:nth-child(n+2) {
    border-top: 1px solid rgba(255, 239, 230, 0.16);
  }

  .rf-contact-card p,
  .rf-contact-copy span {
    overflow-wrap: anywhere;
  }

  .rf-bottom-inner {
    padding: 22px 0 24px;
  }

  .rf-legal {
    flex-direction: column;
    gap: 4px;
  }

  .rf-signature {
    white-space: normal;
  }
}

.journal-page .inner-shell,
.journal-page .inner-main {
  background: var(--paper-journal);
}

.journal-page .inner-page .site-nav,
.journal-page .site-nav {
  justify-content: flex-end;
}

.journal-cover {
  position: relative;
  display: grid;
  justify-items: center;
  min-height: 0;
  overflow: visible;
  background: var(--paper-journal);
  isolation: isolate;
}

.journal-cover-image {
  position: relative;
  width: 100%;
  height: clamp(320px, min(30vw, 47svh), 500px);
  overflow: hidden;
}

.journal-cover-image picture,
.journal-cover-image img {
  width: 100%;
  height: 100%;
}

.journal-cover-image picture {
  display: block;
}

.journal-cover-image img {
  max-width: none;
  object-fit: cover;
  object-position: center 54%;
}

.journal-title-card {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(calc(100% - clamp(64px, 7vw, 140px)), 720px);
  min-height: clamp(184px, 14.5vw, 240px);
  align-content: center;
  justify-items: center;
  margin: clamp(-76px, -4vw, -50px) auto 0;
  padding: clamp(30px, 2.5vw, 44px) clamp(34px, 3.3vw, 54px);
  border: 1px solid rgba(233, 218, 207, 0.92);
  border-radius: 6px;
  background: var(--paper-journal);
  box-shadow: 0 14px 38px rgba(73, 48, 34, 0.08);
  color: var(--ink-deep);
  text-align: center;
}

.journal-title-card .eyebrow {
  margin-bottom: 15px;
  color: var(--terracotta-dark);
  font-size: clamp(9px, 0.56vw, 11px);
}

.journal-title-card h1 {
  max-width: 9.8em;
  font-family: var(--serif);
  font-size: clamp(38px, 3.35vw, 58px);
  font-weight: 400;
  line-height: 1.04;
  text-shadow: none;
}

.journal-title-card .small-ornament {
  width: 24px;
  height: 24px;
  margin: 18px auto 0;
  background-size: 17px 17px;
}

.journal-page .journal-main {
  padding-bottom: 0;
}

.journal-page .journal-article {
  width: min(100%, 760px);
  max-width: none;
  margin: 0 auto;
  padding: clamp(48px, 5.8vw, 82px) clamp(34px, 5.2vw, 72px) clamp(64px, 7vw, 100px);
}

.journal-page .journal-article .article-kicker {
  margin-bottom: 18px;
  color: var(--terracotta-dark);
  font-size: 10px;
}

.journal-page .journal-article p {
  color: #463b35;
  font-size: 15px;
  line-height: 1.82;
}

.journal-page .journal-article p + p {
  margin-top: 20px;
}

.journal-page .journal-article figure {
  margin: clamp(34px, 5vw, 56px) 0;
}

@media (min-width: 1600px) {
  .journal-cover-image {
    height: clamp(440px, min(22vw, 48svh), 620px);
  }

  .journal-cover-image img {
    object-position: center 52%;
  }
}

@media (min-width: 900px) and (max-width: 1180px) {
  .journal-cover {
    min-height: 0;
  }

  .journal-cover-image {
    height: clamp(320px, min(38vw, 48svh), 420px);
  }

  .journal-title-card {
    top: auto;
    right: auto;
    width: min(calc(100% - 72px), 700px);
    min-height: clamp(182px, 21vw, 210px);
    margin-top: -54px;
    padding: 30px 34px;
  }

  .journal-title-card h1 {
    font-size: clamp(31px, 3.35vw, 36px);
  }
}

@media (max-width: 899px) {
  .journal-cover {
    display: grid;
    min-height: 0;
    overflow: visible;
    background: #fffdfa;
  }

  .journal-cover-image {
    position: relative;
    height: clamp(312px, 82vw, 350px);
  }

  .journal-cover-image img {
    object-position: center 42%;
  }

  .journal-title-card {
    position: relative;
    top: auto;
    right: auto;
    z-index: 1;
    width: min(calc(100% - 84px), 560px);
    min-height: 178px;
    margin: -38px auto 0;
    padding: 24px 24px 22px;
    box-shadow: 0 10px 24px rgba(73, 48, 34, 0.06);
  }

  .journal-title-card .eyebrow {
    margin-bottom: 13px;
    font-size: 8px;
  }

  .journal-title-card h1 {
    max-width: 10.6em;
    font-size: clamp(27px, 7.1vw, 38px);
    line-height: 1.03;
  }

  .journal-title-card .small-ornament {
    margin-top: 16px;
  }

  .journal-page .journal-article {
    width: 100%;
    padding: 34px clamp(32px, 9.6vw, 76px) 64px;
  }

  .journal-page .journal-article .article-kicker {
    margin-bottom: 14px;
    font-size: 8px;
  }

  .journal-page .journal-article p {
    font-size: 10px;
    line-height: 1.76;
  }

  .journal-page .journal-article p + p {
    margin-top: 18px;
  }
}

@media (min-width: 561px) and (max-width: 899px) {
  .journal-cover-image {
    height: clamp(372px, 52vw, 412px);
  }

  .journal-title-card {
    width: min(calc(100% - 56px), 720px);
    min-height: 228px;
    margin-top: -54px;
    padding: 34px 42px;
  }

  .journal-title-card .eyebrow {
    margin-bottom: 18px;
    font-size: 9px;
  }

  .journal-title-card h1 {
    font-size: clamp(40px, 6vw, 46px);
  }

  .journal-page .journal-article {
    width: min(100%, 690px);
    padding-right: 34px;
    padding-left: 34px;
    padding-top: 46px;
  }

  .journal-page .journal-article p {
    font-size: 11px;
    line-height: 1.78;
  }
}

@media (max-width: 899px) and (orientation: landscape) {
  .journal-cover {
    min-height: calc(100svh - 68px);
    grid-template-columns: minmax(0, 1fr) minmax(286px, 0.82fr);
    gap: 18px;
    align-items: center;
    padding: 22px 20px;
    overflow: hidden;
    background: #fffdfa;
  }

  .journal-cover-image {
    height: min(278px, calc(100svh - 112px));
    min-height: 226px;
  }

  .journal-title-card {
    width: 100%;
    min-height: min(278px, calc(100svh - 112px));
    margin: 0;
    padding: 28px 26px;
  }

  .journal-title-card h1 {
    font-size: clamp(29px, 4.2vw, 36px);
  }

  .journal-page .journal-article {
    padding-top: 38px;
  }
}

@media (max-width: 374px) {
  .journal-title-card {
    width: min(calc(100% - 42px), 320px);
    min-height: 172px;
    padding-right: 20px;
    padding-left: 20px;
  }

  .journal-title-card h1 {
    font-size: 25px;
  }
}

@media (max-width: 899px) {
  .hero-copy p,
  .intro-copy p,
  .story-copy p,
  .room-detail-card p,
  .journal-page .journal-article p,
  .experience-reference-hero-copy p:not(.eyebrow) {
    font-size: 14px;
    line-height: 1.85;
  }

  .intro-copy p {
    font-size: 12px;
    line-height: 1.72;
  }

  .room-body ul {
    gap: 8px 14px;
    font-size: 13px;
    line-height: 1.25;
  }

  .services-section {
    --services-body-size: 13px;
    --services-body-width: min(100%, 320px);
    --services-gap: 12px;
  }

  .services-section p {
    line-height: 1.55;
  }

  .experience-reference-card p,
  .experience-reference-promises p,
  .experience-reference-cuisine-copy > p:not(.eyebrow),
  .experience-reference-newsletter p {
    max-width: min(100%, 320px);
    font-size: 14px;
    line-height: 1.65;
  }

  body.experience-reference-page .experience-reference-hero-copy p:not(.eyebrow),
  body.experience-reference-page .experience-reference-card p,
  body.experience-reference-page .experience-reference-promises p,
  body.experience-reference-page .experience-reference-cuisine-copy > p:not(.eyebrow),
  body.experience-reference-page .experience-reference-newsletter p {
    font-size: 16px;
  }
}

@media (max-width: 560px) {
  body.mobile-menu-open .site-nav.is-open .motif-button span,
  body.mobile-menu-open .inner-page .site-nav.is-open .motif-button span,
  body.mobile-menu-open .site-nav.is-open .motif-button::before,
  body.mobile-menu-open .inner-page .site-nav.is-open .motif-button::before,
  body.mobile-menu-open .site-nav.is-open .motif-button::after,
  body.mobile-menu-open .inner-page .site-nav.is-open .motif-button::after {
    display: none !important;
  }
}

@media (max-width: 899px) {
  html:not(.js-enabled) .site-nav,
  html:not(.js-enabled) .inner-page .site-nav {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    display: flex;
    height: auto;
    min-height: 0;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    padding: 12px 14px;
  }

  html:not(.js-enabled) .site-nav a:not(.nav-cta):not(.language-switch) {
    display: inline-flex;
    flex: 1 1 calc(50% - 8px);
    width: auto;
    min-width: 130px;
    min-height: 38px;
    order: 4;
    border: 1px solid rgba(226, 198, 181, 0.74);
    background: rgba(255, 250, 245, 0.88);
    color: var(--ink-deep);
    font-size: 10px;
  }

  html:not(.js-enabled) .site-nav .nav-cta {
    flex: 1 1 150px;
    width: auto;
    max-width: 220px;
    margin-left: 0;
    order: 1;
  }

  html:not(.js-enabled) .site-nav .language-switch {
    order: 2;
  }

  html:not(.js-enabled) .site-nav .nav-whatsapp {
    width: auto;
    min-width: 130px;
    flex-direction: row;
    gap: 8px;
  }

  html:not(.js-enabled) .site-nav .nav-whatsapp-label {
    display: inline;
  }

  html:not(.js-enabled) .motif-button {
    display: none !important;
  }
}

/* Reference homepage preview, scoped to the French homepage branch view. */
html[lang="fr"] body.home-page {
  --hp-bg: #f8f1ec;
  --hp-bg-soft: #faf4ef;
  --hp-cream: #fff8f1;
  --hp-blush: #f7dcd1;
  --hp-blush-deep: #f5d3c5;
  --hp-terracotta: #c96f55;
  --hp-terracotta-dark: #b85b44;
  --hp-brown: #5f3428;
  --hp-brown-soft: #7a4536;
  --hp-muted: #8a6b5d;
  --hp-border: #e7c9ba;
  --hp-footer: #c7664c;
  --hp-footer-dark: #73361f;
  color: var(--hp-brown);
  background: var(--hp-bg);
}

html[lang="fr"] body.home-page .site-shell {
  overflow: clip;
  background: var(--hp-bg);
}

html[lang="fr"] body.home-page main {
  background: var(--hp-bg);
}

html[lang="fr"] body.home-page .home-header {
  position: sticky;
  top: 0;
  z-index: 1100;
  display: grid;
  width: 100%;
  height: 92px;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  padding-inline: max(32px, calc((100% - 1240px) / 2));
  border-bottom: 1px solid rgba(231, 201, 186, 0.72);
  background: rgba(255, 248, 241, 0.98);
  box-shadow: 0 10px 28px rgba(95, 52, 40, 0.08);
}

html[lang="fr"] body.home-page .home-header .brand-panel,
html[lang="fr"] body.home-page.mobile-menu-open .home-header .brand-panel {
  position: relative;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  z-index: 2;
  display: flex;
  width: 156px;
  height: 100%;
  min-height: 0;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

html[lang="fr"] body.home-page .home-header .brand-panel::before,
html[lang="fr"] body.home-page .home-header .brand-panel::after {
  display: none;
}

html[lang="fr"] body.home-page .home-header .brand-panel img,
html[lang="fr"] body.home-page.mobile-menu-open .home-header .brand-panel img {
  width: auto;
  height: 74px;
  max-width: none;
  margin: 0;
}

html[lang="fr"] body.home-page .home-header .site-nav,
html[lang="fr"] body.home-page.nav-scrolled .home-header .site-nav,
html[lang="fr"] body.home-page.mobile-menu-open .home-header .site-nav {
  position: relative;
  top: auto;
  right: auto;
  left: auto;
  z-index: 1;
  display: flex;
  width: auto;
  height: 100%;
  min-height: 0;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: var(--hp-brown);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
}

html[lang="fr"] body.home-page .home-header .site-nav::before {
  display: none;
}

html[lang="fr"] body.home-page .home-header .site-nav a {
  color: inherit;
  text-decoration: none;
}

html[lang="fr"] body.home-page .home-header .site-nav a::after {
  bottom: 14px;
  background: var(--hp-terracotta);
}

html[lang="fr"] body.home-page .home-header .site-nav a:hover,
html[lang="fr"] body.home-page .home-header .site-nav a:focus-visible {
  color: var(--hp-terracotta-dark);
}

html[lang="fr"] body.home-page .home-header .site-nav .nav-whatsapp {
  width: 38px;
  min-width: 38px;
  height: 38px;
  flex-basis: 38px;
  margin-left: 0;
  border: 1px solid rgba(201, 111, 85, 0.52);
  background: rgba(255, 248, 241, 0.78);
  box-shadow: none;
}

html[lang="fr"] body.home-page .home-header .site-nav .nav-whatsapp img {
  width: 28px;
  height: 28px;
}

html[lang="fr"] body.home-page .home-header .site-nav .nav-cta {
  width: auto;
  height: 46px;
  min-width: 124px;
  margin-left: 2px;
  padding: 0 30px;
  border-color: var(--hp-terracotta);
  border-radius: 2px;
  background: var(--hp-terracotta);
  box-shadow: none;
  color: var(--hp-cream);
  font-size: 11px;
  letter-spacing: 0.11em;
}

html[lang="fr"] body.home-page .home-header .site-nav .nav-cta:hover,
html[lang="fr"] body.home-page .home-header .site-nav .nav-cta:focus-visible {
  border-color: var(--hp-terracotta-dark);
  background: var(--hp-terracotta-dark);
  box-shadow: none;
  color: var(--hp-cream);
}

html[lang="fr"] body.home-page .home-header .site-nav .language-switch {
  min-width: 36px;
  height: 36px;
  color: var(--hp-brown);
  font-size: 11px;
  letter-spacing: 0.04em;
}

html[lang="fr"] body.home-page .home-header .site-nav .language-switch::after {
  display: block;
  position: relative;
  width: 6px;
  height: 6px;
  margin-left: 7px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  content: "";
  background: none;
  opacity: 1;
  transform: translateY(-2px) rotate(45deg);
}

html[lang="fr"] body.home-page .home-header .motif-button {
  display: none;
}

html[lang="fr"] body.home-page .hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  width: 100%;
  min-height: 720px;
  height: min(78svh, 820px);
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: minmax(0, 1fr);
  overflow: hidden;
  background: #8a6b5d;
  isolation: isolate;
}

html[lang="fr"] body.home-page .hero-grid::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  content: "";
  background: rgba(66, 36, 23, 0.35);
  pointer-events: none;
}

html[lang="fr"] body.home-page .hero-grid::after {
  display: none;
}

html[lang="fr"] body.home-page .hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

html[lang="fr"] body.home-page .hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

html[lang="fr"] body.home-page .hero-panel {
  position: relative;
  z-index: 2;
  display: grid;
  width: 100%;
  height: 100%;
  grid-column: 1;
  grid-row: 1;
  place-items: center;
  overflow: visible;
}

html[lang="fr"] body.home-page .hero-copy {
  position: relative;
  top: auto;
  left: auto;
  width: min(calc(100% - 64px), 760px);
  color: var(--hp-cream);
  text-align: center;
  text-shadow: 0 2px 18px rgba(48, 26, 18, 0.38);
  transform: none;
}

html[lang="fr"] body.home-page .hero-copy h1 {
  color: inherit;
  font-family: var(--serif);
  font-size: 70px;
  font-weight: 400;
  line-height: 1.02;
}

html[lang="fr"] body.home-page .hero-copy p {
  width: min(100%, 660px);
  margin: 18px auto 0;
  color: rgba(255, 248, 241, 0.96);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.68;
}

html[lang="fr"] body.home-page .title-ornament {
  width: 120px;
  margin-top: 14px;
}

html[lang="fr"] body.home-page .hero-actions {
  gap: 18px;
  margin-top: 34px;
}

html[lang="fr"] body.home-page .btn {
  min-height: 48px;
  border-radius: 2px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.11em;
}

html[lang="fr"] body.home-page .btn.primary {
  width: auto;
  min-width: 190px;
  padding: 0 32px;
  border-color: var(--hp-terracotta);
  background: var(--hp-terracotta);
  color: var(--hp-cream);
  box-shadow: none;
}

html[lang="fr"] body.home-page .btn.primary:hover,
html[lang="fr"] body.home-page .btn.primary:focus-visible {
  border-color: var(--hp-terracotta-dark);
  background: var(--hp-terracotta-dark);
  box-shadow: none;
}

html[lang="fr"] body.home-page .btn.ghost {
  width: auto;
  min-width: 220px;
  padding: 0 32px;
  border-color: rgba(255, 248, 241, 0.86);
  background: rgba(95, 52, 40, 0.18);
  color: var(--hp-cream);
  box-shadow: none;
}

html[lang="fr"] body.home-page .btn.outline {
  width: auto;
  min-width: 214px;
  padding: 0 26px;
  border-color: var(--hp-terracotta);
  background: transparent;
  color: var(--hp-terracotta-dark);
  box-shadow: none;
}

html[lang="fr"] body.home-page .section-pad {
  padding-inline: max(24px, calc((100% - 1180px) / 2));
}

html[lang="fr"] body.home-page .intro-section,
html[lang="fr"] body.home-page .rooms-section,
html[lang="fr"] body.home-page .services-section,
html[lang="fr"] body.home-page .gallery-section,
html[lang="fr"] body.home-page .faq-section {
  width: 100%;
  max-width: none;
  margin: 0;
  clip-path: none;
  content-visibility: visible;
  contain-intrinsic-size: none;
  background: var(--hp-bg);
  box-shadow: none;
}

html[lang="fr"] body.home-page .quote-band,
html[lang="fr"] body.home-page .rf-footer {
  content-visibility: visible;
  contain-intrinsic-size: none;
}

html[lang="fr"] body.home-page .intro-section {
  display: grid;
  min-height: 0;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.7fr);
  gap: 64px;
  align-items: center;
  padding-block: 88px 72px;
}

html[lang="fr"] body.home-page .intro-copy {
  position: relative;
  top: auto;
  width: auto;
  max-width: 560px;
  margin: 0;
}

html[lang="fr"] body.home-page .small-ornament {
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  background-size: 32px 32px;
}

html[lang="fr"] body.home-page .intro-copy h2,
html[lang="fr"] body.home-page .section-heading h2 {
  color: var(--hp-brown);
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 400;
  line-height: 1.02;
}

html[lang="fr"] body.home-page .intro-copy h2::after {
  width: 48px;
  margin-top: 18px;
  background: var(--hp-terracotta);
}

html[lang="fr"] body.home-page .intro-copy p {
  max-width: 540px;
  margin-top: 18px;
  color: var(--hp-muted);
  font-size: 16px;
  line-height: 1.72;
}

html[lang="fr"] body.home-page .intro-photo {
  width: 100%;
  height: auto;
  overflow: hidden;
  border: 1px solid var(--hp-border);
}

html[lang="fr"] body.home-page .intro-photo picture,
html[lang="fr"] body.home-page .intro-photo img {
  display: block;
  width: 100%;
  height: auto;
}

html[lang="fr"] body.home-page .intro-photo img {
  aspect-ratio: 389 / 240;
  object-fit: cover;
}

html[lang="fr"] body.home-page .quote-band {
  display: grid;
  width: min(calc(100% - 64px), 1180px);
  height: auto;
  min-height: 132px;
  grid-template-columns: 148px minmax(0, 1fr) minmax(260px, 34%);
  align-items: stretch;
  margin: 0 auto 76px;
  overflow: hidden;
  border-top: 1px solid rgba(231, 201, 186, 0.8);
  border-bottom: 1px solid rgba(231, 201, 186, 0.8);
  background: var(--hp-blush);
}

html[lang="fr"] body.home-page .quote-band::after {
  display: none;
}

html[lang="fr"] body.home-page .quote-motif {
  width: 70px;
  height: 70px;
  justify-self: center;
  margin: 0;
  align-self: center;
  opacity: 0.84;
}

html[lang="fr"] body.home-page .quote-band p {
  align-self: center;
  padding: 26px 24px 26px 0;
  color: var(--hp-brown);
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 400;
  line-height: 1.28;
}

html[lang="fr"] body.home-page .quote-photo {
  width: 100%;
  height: 100%;
  min-height: 132px;
  object-fit: cover;
}

html[lang="fr"] body.home-page .rooms-section,
html[lang="fr"] body.home-page .gallery-section,
html[lang="fr"] body.home-page .services-section,
html[lang="fr"] body.home-page .faq-section {
  position: relative;
  height: auto;
  padding-block: 0 88px;
}

html[lang="fr"] body.home-page .rooms-section::before,
html[lang="fr"] body.home-page .gallery-section::before,
html[lang="fr"] body.home-page .services-section::before,
html[lang="fr"] body.home-page .home-faq::before {
  top: 0;
  width: min(calc(100% - 64px), 1180px);
  background: rgba(201, 111, 85, 0.28);
}

html[lang="fr"] body.home-page .section-heading {
  position: relative;
  top: auto;
  right: auto;
  left: auto;
  margin-bottom: 36px;
}

html[lang="fr"] body.home-page .section-heading h2 {
  margin: 0;
  font-size: 38px;
  text-align: center;
}

html[lang="fr"] body.home-page .section-heading .title-ornament {
  width: 116px;
  margin-top: 10px;
  color: var(--hp-terracotta);
  background-image: url("/assets/ornaments/ornament-small.svg");
}

html[lang="fr"] body.home-page .rooms-section .section-heading,
html[lang="fr"] body.home-page .gallery-section .section-heading,
html[lang="fr"] body.home-page .services-section .section-heading {
  padding-top: 68px;
}

html[lang="fr"] body.home-page .room-grid {
  position: relative;
  top: auto;
  left: auto;
  display: grid;
  width: min(100%, 1080px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  justify-content: center;
  margin: 0 auto;
  transform: none;
}

html[lang="fr"] body.home-page .room-card {
  width: auto;
  height: auto;
  min-height: 0;
  border: 1px solid var(--hp-border);
  border-radius: 3px;
  background: rgba(255, 248, 241, 0.86);
  box-shadow: none;
}

html[lang="fr"] body.home-page .room-card-photo,
html[lang="fr"] body.home-page .room-card-photo > picture,
html[lang="fr"] body.home-page .room-card-photo > picture > img {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
}

html[lang="fr"] body.home-page .room-card-photo > picture > img {
  aspect-ratio: 4 / 2.55;
  object-fit: cover;
}

html[lang="fr"] body.home-page .room-body {
  height: auto;
  padding: 18px 18px 20px;
}

html[lang="fr"] body.home-page .room-body h3 {
  margin-bottom: 10px;
  color: var(--hp-brown);
  font-size: 21px;
}

html[lang="fr"] body.home-page .room-body ul {
  color: var(--hp-muted);
  font-size: 13px;
}

html[lang="fr"] body.home-page .rooms-link,
html[lang="fr"] body.home-page .gallery-link {
  position: relative;
  top: auto;
  left: auto;
  display: flex;
  width: max-content;
  max-width: 100%;
  min-height: 46px;
  min-width: 224px;
  margin-top: 34px;
  margin-right: auto;
  margin-left: auto;
  transform: none;
}

html[lang="fr"] body.home-page .rooms-section .rooms-link.btn.outline,
html[lang="fr"] body.home-page .gallery-section .gallery-link.btn.outline {
  width: 224px;
}

html[lang="fr"] body.home-page .gallery-section {
  --gallery-scale: 1;
}

html[lang="fr"] body.home-page .gallery-grid {
  position: relative;
  top: auto;
  left: auto;
  display: grid;
  width: min(100%, 1080px);
  height: auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
  margin: 0 auto;
  transform: none;
}

html[lang="fr"] body.home-page .gallery-grid picture,
html[lang="fr"] body.home-page .gallery-grid img,
html[lang="fr"] body.home-page .gallery-grid picture:nth-child(1),
html[lang="fr"] body.home-page .gallery-grid picture:nth-child(2),
html[lang="fr"] body.home-page .gallery-grid picture:nth-child(3),
html[lang="fr"] body.home-page .gallery-grid picture:nth-child(4) {
  position: relative;
  top: auto;
  left: auto;
  display: block;
  width: 100%;
  height: auto;
}

html[lang="fr"] body.home-page .gallery-grid picture {
  overflow: hidden;
  border: 1px solid var(--hp-border);
  background: rgba(245, 211, 197, 0.4);
}

html[lang="fr"] body.home-page .gallery-grid img {
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

html[lang="fr"] body.home-page .services-section {
  display: block;
  text-align: center;
}

html[lang="fr"] body.home-page .services-grid {
  display: grid;
  width: min(100%, 1080px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-content: center;
  margin: 0 auto;
}

html[lang="fr"] body.home-page .services-grid article {
  position: relative;
  display: grid;
  min-height: 0;
  grid-template-rows: 76px auto auto;
  justify-items: center;
  align-content: start;
  gap: 12px;
  padding: 8px 34px 0;
  text-align: center;
}

html[lang="fr"] body.home-page .services-grid article + article::before {
  position: absolute;
  top: 18px;
  bottom: 8px;
  left: 0;
  width: 1px;
  height: auto;
  content: "";
  background: rgba(201, 111, 85, 0.28);
}

html[lang="fr"] body.home-page .service-icon,
html[lang="fr"] body.home-page .service-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  transform: none;
}

html[lang="fr"] body.home-page .services-grid article:last-child .service-icon {
  width: 82px;
  height: 72px;
  transform: none;
}

html[lang="fr"] body.home-page .services-grid h3 {
  margin: 0;
  color: var(--hp-brown);
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.15;
}

html[lang="fr"] body.home-page .services-grid p {
  width: auto;
  max-width: 280px;
  margin: 0;
  color: var(--hp-muted);
  font-size: 14px;
  line-height: 1.62;
}

html[lang="fr"] body.home-page .faq-section {
  padding-bottom: 92px;
  background: var(--hp-bg-soft);
  box-shadow: 0 0 0 100vmax var(--hp-bg-soft);
  clip-path: inset(0 -100vmax);
}

html[lang="fr"] body.home-page .faq-inner,
html[lang="fr"] body.home-page .home-faq .faq-inner {
  width: min(100%, 1120px);
  padding: 68px max(24px, calc((100% - 1120px) / 2)) 0;
}

html[lang="fr"] body.home-page .faq-heading h2 {
  color: var(--hp-brown);
  font-size: 38px;
}

html[lang="fr"] body.home-page .faq-intro {
  max-width: 620px;
  margin-bottom: 34px;
  color: var(--hp-muted);
  font-size: 15px;
}

html[lang="fr"] body.home-page .home-faq .faq-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

html[lang="fr"] body.home-page .faq-item {
  border: 1px solid var(--hp-border);
  border-radius: 3px;
  background: rgba(255, 248, 241, 0.92);
  box-shadow: none;
}

html[lang="fr"] body.home-page .faq-item summary {
  min-height: 66px;
  padding: 18px 54px 18px 20px;
  color: var(--hp-brown);
  font-size: 14px;
  line-height: 1.35;
}

html[lang="fr"] body.home-page .faq-item summary::after {
  right: 18px;
  width: 24px;
  height: 24px;
  border-color: rgba(201, 111, 85, 0.54);
  color: var(--hp-terracotta-dark);
}

html[lang="fr"] body.home-page .faq-item[open] summary::after {
  background: var(--hp-terracotta);
  color: #fff;
}

html[lang="fr"] body.home-page .faq-item p {
  padding: 0 20px 20px;
  color: var(--hp-muted);
  font-size: 14px;
  line-height: 1.65;
}

html[lang="fr"] body.home-page .rf-footer {
  --rf-shell: min(calc(100% - 64px), 1240px);
  background: var(--hp-footer);
}

html[lang="fr"] body.home-page .rf-contact-band {
  background: var(--hp-footer);
}

html[lang="fr"] body.home-page .rf-contact-band::before {
  background-size: 72px 72px;
  opacity: 0.06;
}

html[lang="fr"] body.home-page .rf-contact {
  grid-template-columns: minmax(230px, 1.1fr) minmax(160px, 0.78fr) minmax(210px, 0.9fr) minmax(160px, 0.72fr) minmax(190px, 0.78fr);
}

html[lang="fr"] body.home-page .rf-contact-card {
  min-height: 168px;
  padding: 36px 26px;
}

html[lang="fr"] body.home-page .rf-reserve {
  width: 210px;
  min-height: 58px;
  border-radius: 4px;
  box-shadow: 0 10px 20px rgba(95, 52, 40, 0.16);
}

html[lang="fr"] body.home-page .rf-bottom {
  background: var(--hp-footer-dark);
}

@media (max-width: 1439px) {
  html[lang="fr"] body.home-page .home-header {
    height: 88px;
    gap: 18px;
    padding-inline: max(28px, calc((100% - 1120px) / 2));
  }

  html[lang="fr"] body.home-page .home-header .brand-panel {
    width: 136px;
  }

  html[lang="fr"] body.home-page .home-header .brand-panel img {
    height: 66px;
  }

  html[lang="fr"] body.home-page .home-header .site-nav {
    gap: 15px;
    font-size: 10px;
  }

  html[lang="fr"] body.home-page .home-header .site-nav .nav-cta {
    min-width: 116px;
    padding-inline: 24px;
  }

  html[lang="fr"] body.home-page .hero-grid {
    min-height: 660px;
    height: min(76svh, 760px);
  }

  html[lang="fr"] body.home-page .hero-copy h1 {
    font-size: 62px;
  }
}

@media (max-width: 1023px) {
  html[lang="fr"] body.home-page .home-header {
    height: 80px;
    padding-inline: 32px;
  }

  html[lang="fr"] body.home-page .home-header .brand-panel {
    width: 118px;
  }

  html[lang="fr"] body.home-page .home-header .brand-panel img {
    height: 58px;
  }

  html[lang="fr"] body.home-page .home-header .site-nav {
    gap: 12px;
  }

  html[lang="fr"] body.home-page .home-header .motif-button,
  html[lang="fr"] body.home-page .home-header .site-nav .motif-button {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(201, 111, 85, 0.3);
    border-radius: 3px;
    background: rgba(255, 248, 241, 0.62);
  }

  html[lang="fr"] body.home-page .home-header .motif-button span,
  html[lang="fr"] body.home-page .home-header .motif-button::before,
  html[lang="fr"] body.home-page .home-header .motif-button::after {
    position: absolute;
    left: 12px;
    display: block !important;
    width: 18px;
    height: 2px;
    content: "";
    background: var(--hp-brown);
  }

  html[lang="fr"] body.home-page .home-header .motif-button::before { top: 15px; }
  html[lang="fr"] body.home-page .home-header .motif-button span { top: 21px; }
  html[lang="fr"] body.home-page .home-header .motif-button::after { top: 27px; }

  html[lang="fr"] body.home-page .home-header .site-nav:not(.is-open) a:not(.nav-cta):not(.language-switch),
  html[lang="fr"] body.home-page .home-header .site-nav:not(.is-open) .nav-whatsapp {
    display: none;
  }

  html[lang="fr"] body.home-page .home-header .site-nav:not(.is-open) .nav-cta {
    min-width: 112px;
    height: 42px;
    padding-inline: 18px;
  }

  html[lang="fr"] body.home-page .home-header .site-nav.is-open {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: flex;
    height: auto;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    overflow-y: auto;
    padding: 112px 32px 42px;
    background: var(--hp-bg);
  }

  html[lang="fr"] body.home-page .home-header .site-nav.is-open a:not(.language-switch),
  html[lang="fr"] body.home-page .home-header .site-nav.is-open .nav-whatsapp {
    display: inline-flex;
    width: min(100%, 360px);
    min-height: 48px;
    justify-content: center;
    border: 1px solid rgba(231, 201, 186, 0.86);
    background: rgba(255, 248, 241, 0.7);
    color: var(--hp-brown);
  }

  html[lang="fr"] body.home-page .home-header .site-nav.is-open .nav-whatsapp {
    gap: 8px;
    border-radius: 3px;
  }

  html[lang="fr"] body.home-page .home-header .site-nav.is-open .nav-whatsapp-label {
    display: inline;
  }

  html[lang="fr"] body.home-page .home-header .site-nav.is-open .nav-cta {
    margin-top: 10px;
    border-color: var(--hp-terracotta);
    background: var(--hp-terracotta);
    color: var(--hp-cream);
  }

  html[lang="fr"] body.home-page .home-header .site-nav.is-open .language-switch {
    position: absolute;
    top: 22px;
    right: 88px;
  }

  html[lang="fr"] body.home-page .home-header .site-nav.is-open .motif-button {
    position: absolute;
    top: 18px;
    right: 32px;
  }

  html[lang="fr"] body.home-page .home-header .site-nav.is-open .motif-button::before {
    top: 21px;
    transform: rotate(45deg);
  }

  html[lang="fr"] body.home-page .home-header .site-nav.is-open .motif-button span {
    opacity: 0;
  }

  html[lang="fr"] body.home-page .home-header .site-nav.is-open .motif-button::after {
    top: 21px;
    transform: rotate(-45deg);
  }

  html[lang="fr"] body.home-page.mobile-menu-open .home-header .brand-panel {
    position: fixed;
    top: 0;
    left: 32px;
    z-index: 1210;
    height: 80px;
  }

  html[lang="fr"] body.home-page .hero-grid {
    min-height: 620px;
    height: 660px;
  }

  html[lang="fr"] body.home-page .hero-copy h1 {
    font-size: 50px;
  }

  html[lang="fr"] body.home-page .hero-copy p {
    font-size: 15px;
  }

  html[lang="fr"] body.home-page .intro-section {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-block: 68px 58px;
  }

  html[lang="fr"] body.home-page .intro-copy {
    max-width: 680px;
    text-align: center;
    justify-self: center;
  }

  html[lang="fr"] body.home-page .small-ornament,
  html[lang="fr"] body.home-page .intro-copy h2::after {
    margin-inline: auto;
  }

  html[lang="fr"] body.home-page .intro-photo {
    width: min(100%, 620px);
    justify-self: center;
  }

  html[lang="fr"] body.home-page .quote-band {
    grid-template-columns: 118px minmax(0, 1fr) minmax(220px, 30%);
    width: min(calc(100% - 64px), 920px);
  }

  html[lang="fr"] body.home-page .quote-band p {
    font-size: 24px;
  }

  html[lang="fr"] body.home-page .room-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 720px);
  }

  html[lang="fr"] body.home-page .room-card:nth-child(3) {
    grid-column: 1 / -1;
    width: min(100%, 346px);
    justify-self: center;
  }

  html[lang="fr"] body.home-page .gallery-grid {
    width: min(100%, 720px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  html[lang="fr"] body.home-page .gallery-grid img {
    aspect-ratio: 4 / 2.55;
  }

  html[lang="fr"] body.home-page .services-grid {
    width: min(100%, 720px);
    grid-template-columns: 1fr;
    gap: 34px;
  }

  html[lang="fr"] body.home-page .services-grid article {
    padding: 0;
  }

  html[lang="fr"] body.home-page .services-grid article + article::before {
    display: none;
  }

  html[lang="fr"] body.home-page .home-faq .faq-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  html[lang="fr"] body.home-page .rf-contact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 599px) {
  html[lang="fr"] body.home-page .home-header {
    height: 72px;
    padding-inline: 20px;
  }

  html[lang="fr"] body.home-page .home-header .brand-panel {
    width: 94px;
  }

  html[lang="fr"] body.home-page .home-header .brand-panel img,
  html[lang="fr"] body.home-page.mobile-menu-open .home-header .brand-panel img {
    height: 50px;
  }

  html[lang="fr"] body.home-page .home-header .site-nav:not(.is-open) .nav-cta {
    display: none;
  }

  html[lang="fr"] body.home-page .home-header .site-nav.is-open {
    padding: 96px 24px 34px;
  }

  html[lang="fr"] body.home-page.mobile-menu-open .home-header .brand-panel {
    left: 20px;
    height: 72px;
  }

  html[lang="fr"] body.home-page .home-header .site-nav.is-open .language-switch {
    top: 18px;
    right: 76px;
  }

  html[lang="fr"] body.home-page .home-header .site-nav.is-open .motif-button {
    top: 14px;
    right: 20px;
  }

  html[lang="fr"] body.home-page .hero-grid {
    min-height: 680px;
    height: 720px;
  }

  html[lang="fr"] body.home-page .hero-media img {
    object-position: center center;
  }

  html[lang="fr"] body.home-page .hero-copy {
    width: min(calc(100% - 48px), 340px);
  }

  html[lang="fr"] body.home-page .hero-copy h1 {
    font-size: 40px;
    line-height: 1.04;
  }

  html[lang="fr"] body.home-page .hero-copy p {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.62;
  }

  html[lang="fr"] body.home-page .hero-actions {
    display: grid;
    gap: 12px;
    margin-top: 28px;
  }

  html[lang="fr"] body.home-page .btn.primary,
  html[lang="fr"] body.home-page .btn.ghost {
    width: min(100%, 320px);
    min-width: 0;
  }

  html[lang="fr"] body.home-page .section-pad {
    padding-inline: 22px;
  }

  html[lang="fr"] body.home-page .intro-section {
    padding-block: 56px 46px;
  }

  html[lang="fr"] body.home-page .intro-copy h2,
  html[lang="fr"] body.home-page .section-heading h2 {
    font-size: 32px;
  }

  html[lang="fr"] body.home-page .intro-copy p {
    font-size: 15px;
  }

  html[lang="fr"] body.home-page .quote-band {
    width: calc(100% - 44px);
    grid-template-columns: 1fr;
    margin-bottom: 58px;
    text-align: center;
  }

  html[lang="fr"] body.home-page .quote-motif {
    margin-top: 26px;
  }

  html[lang="fr"] body.home-page .quote-band p {
    padding: 12px 24px 24px;
    font-size: 22px;
  }

  html[lang="fr"] body.home-page .quote-photo {
    min-height: 132px;
  }

  html[lang="fr"] body.home-page .rooms-section,
  html[lang="fr"] body.home-page .gallery-section,
  html[lang="fr"] body.home-page .services-section,
  html[lang="fr"] body.home-page .faq-section {
    padding-bottom: 64px;
  }

  html[lang="fr"] body.home-page .rooms-section .section-heading,
  html[lang="fr"] body.home-page .gallery-section .section-heading,
  html[lang="fr"] body.home-page .services-section .section-heading {
    padding-top: 54px;
  }

  html[lang="fr"] body.home-page .room-grid,
  html[lang="fr"] body.home-page .gallery-grid,
  html[lang="fr"] body.home-page .services-grid,
  html[lang="fr"] body.home-page .home-faq .faq-list {
    grid-template-columns: 1fr;
  }

  html[lang="fr"] body.home-page .room-card:nth-child(3) {
    grid-column: auto;
    width: auto;
  }

  html[lang="fr"] body.home-page .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  html[lang="fr"] body.home-page .gallery-grid img {
    aspect-ratio: 1 / 0.82;
  }

  html[lang="fr"] body.home-page .faq-inner,
  html[lang="fr"] body.home-page .home-faq .faq-inner {
    padding-top: 54px;
    padding-inline: 22px;
  }

  html[lang="fr"] body.home-page .faq-heading h2 {
    font-size: 32px;
  }

  html[lang="fr"] body.home-page .rf-footer {
    --rf-shell: min(calc(100% - 36px), 430px);
  }

  html[lang="fr"] body.home-page .rf-contact {
    grid-template-columns: 1fr;
  }

  html[lang="fr"] body.home-page .rf-contact-card {
    min-height: 0;
  }
}

@media (max-width: 389px) {
  html[lang="fr"] body.home-page .hero-copy {
    width: min(calc(100% - 40px), 320px);
  }

  html[lang="fr"] body.home-page .hero-copy h1 {
    font-size: 34px;
  }

  html[lang="fr"] body.home-page .hero-copy p,
  html[lang="fr"] body.home-page .intro-copy p {
    font-size: 14px;
  }

  html[lang="fr"] body.home-page .quote-band p {
    font-size: 20px;
  }

  html[lang="fr"] body.home-page .gallery-grid {
    gap: 8px;
  }
}

/* Homepage mockup rebuild: reference order and composition. */
html[lang="fr"] body.home-page.mockup-home-page {
  --mockup-bg: #f8f1ec;
  --mockup-bg-soft: #faf4ef;
  --mockup-cream: #fff8f1;
  --mockup-blush: #f7dcd1;
  --mockup-terracotta: #c96f55;
  --mockup-terracotta-dark: #b85b44;
  --mockup-brown: #5f3428;
  --mockup-muted: #8a6b5d;
  --mockup-border: #e7c9ba;
  --mockup-rail: min(calc(100% - 64px), 1180px);
  background: var(--mockup-bg);
  color: var(--mockup-brown);
}

html[lang="fr"] body.home-page.mockup-home-page .site-shell,
html[lang="fr"] body.home-page.mockup-home-page main {
  overflow: clip;
  background: var(--mockup-bg);
}

html[lang="fr"] body.home-page.mockup-home-page .privacy-notice {
  display: none !important;
}

html[lang="fr"] body.home-page.mockup-home-page .home-header {
  position: sticky;
  top: 0;
  z-index: 1100;
  display: grid;
  width: 100%;
  height: 92px;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  padding-inline: max(32px, calc((100% - 1240px) / 2));
  border-bottom: 1px solid rgba(231, 201, 186, 0.72);
  background: rgba(255, 248, 241, 0.98);
  box-shadow: 0 10px 28px rgba(95, 52, 40, 0.08);
}

html[lang="fr"] body.home-page.mockup-home-page .home-header .brand-panel,
html[lang="fr"] body.home-page.mockup-home-page.mobile-menu-open .home-header .brand-panel {
  position: relative;
  inset: auto;
  z-index: 2;
  display: flex;
  width: 156px;
  height: 100%;
  min-height: 0;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

html[lang="fr"] body.home-page.mockup-home-page .home-header .brand-panel::before,
html[lang="fr"] body.home-page.mockup-home-page .home-header .brand-panel::after {
  display: none;
}

html[lang="fr"] body.home-page.mockup-home-page .home-header .brand-panel img,
html[lang="fr"] body.home-page.mockup-home-page.mobile-menu-open .home-header .brand-panel img {
  width: auto;
  height: 74px;
  max-width: none;
  margin: 0;
}

html[lang="fr"] body.home-page.mockup-home-page .home-header .site-nav,
html[lang="fr"] body.home-page.mockup-home-page.nav-scrolled .home-header .site-nav,
html[lang="fr"] body.home-page.mockup-home-page.mobile-menu-open .home-header .site-nav {
  position: relative;
  inset: auto;
  z-index: 1;
  display: flex;
  width: auto;
  height: 100%;
  min-height: 0;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(12px, 1.2vw, 22px);
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: var(--mockup-brown);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
}

html[lang="fr"] body.home-page.mockup-home-page .home-header .site-nav::before {
  display: none;
}

html[lang="fr"] body.home-page.mockup-home-page .home-header .site-nav a {
  color: inherit;
  text-decoration: none;
}

html[lang="fr"] body.home-page.mockup-home-page .home-header .site-nav a::after {
  bottom: 14px;
  background: var(--mockup-terracotta);
}

html[lang="fr"] body.home-page.mockup-home-page .home-header .site-nav a:hover,
html[lang="fr"] body.home-page.mockup-home-page .home-header .site-nav a:focus-visible {
  color: var(--mockup-terracotta-dark);
}

html[lang="fr"] body.home-page.mockup-home-page .home-header .site-nav .nav-whatsapp {
  width: 38px;
  min-width: 38px;
  height: 38px;
  flex-basis: 38px;
  margin-left: 0;
  border: 1px solid rgba(201, 111, 85, 0.52);
  border-radius: 50%;
  background: rgba(255, 248, 241, 0.78);
  box-shadow: none;
}

html[lang="fr"] body.home-page.mockup-home-page .home-header .site-nav .nav-whatsapp img {
  width: 28px;
  height: 28px;
}

html[lang="fr"] body.home-page.mockup-home-page .home-header .site-nav .nav-cta {
  width: auto;
  height: 46px;
  min-width: 124px;
  margin-left: 2px;
  padding: 0 30px;
  border-color: var(--mockup-terracotta);
  border-radius: 2px;
  background: var(--mockup-terracotta);
  box-shadow: none;
  color: var(--mockup-cream);
  font-size: 11px;
  letter-spacing: 0.11em;
}

html[lang="fr"] body.home-page.mockup-home-page .home-header .site-nav .nav-cta:hover,
html[lang="fr"] body.home-page.mockup-home-page .home-header .site-nav .nav-cta:focus-visible {
  border-color: var(--mockup-terracotta-dark);
  background: var(--mockup-terracotta-dark);
  box-shadow: none;
  color: var(--mockup-cream);
}

html[lang="fr"] body.home-page.mockup-home-page .home-header .site-nav .language-switch {
  position: relative;
  inset: auto;
  display: inline-flex;
  min-width: clamp(42px, 3.2vw, 54px);
  height: clamp(32px, 2.35vw, 40px);
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  padding: 0 clamp(6px, 0.5vw, 9px);
  border: 0;
  background: transparent;
  box-shadow: none;
  color: inherit;
  font-size: clamp(10px, 0.72vw, 13px);
  letter-spacing: 0;
}

html[lang="fr"] body.home-page.mockup-home-page .home-header .site-nav .language-switch::before,
html[lang="fr"] body.home-page.mockup-home-page .home-header .site-nav .language-switch::after {
  content: none;
  display: none;
}

html[lang="fr"] body.home-page.mockup-home-page .home-header .motif-button {
  display: none;
}

html[lang="fr"] body.home-page.mockup-home-page .hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  width: 100%;
  min-height: 720px;
  height: min(78svh, 820px);
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: minmax(0, 1fr);
  overflow: hidden;
  background: #8a6b5d;
  isolation: isolate;
}

html[lang="fr"] body.home-page.mockup-home-page .hero-grid::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  content: "";
  background: rgba(66, 36, 23, 0.34);
  pointer-events: none;
}

html[lang="fr"] body.home-page.mockup-home-page .hero-grid::after {
  display: none;
}

html[lang="fr"] body.home-page.mockup-home-page .hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

html[lang="fr"] body.home-page.mockup-home-page .hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

html[lang="fr"] body.home-page.mockup-home-page .hero-panel {
  position: relative;
  z-index: 2;
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
}

html[lang="fr"] body.home-page.mockup-home-page .hero-copy {
  position: relative;
  top: auto;
  left: auto;
  width: min(calc(100% - 64px), 760px);
  color: var(--mockup-cream);
  text-align: center;
  text-shadow: 0 2px 18px rgba(48, 26, 18, 0.38);
  transform: none;
}

html[lang="fr"] body.home-page.mockup-home-page .hero-copy h1 {
  color: inherit;
  font-family: var(--serif);
  font-size: clamp(52px, 4.85vw, 72px);
  font-weight: 400;
  line-height: 1.02;
}

html[lang="fr"] body.home-page.mockup-home-page .hero-copy p {
  width: min(100%, 660px);
  margin: 18px auto 0;
  color: rgba(255, 248, 241, 0.96);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.68;
}

html[lang="fr"] body.home-page.mockup-home-page .title-ornament {
  width: 120px;
  margin-top: 14px;
}

html[lang="fr"] body.home-page.mockup-home-page .hero-actions {
  gap: 18px;
  margin-top: 34px;
}

html[lang="fr"] body.home-page.mockup-home-page .btn {
  min-height: 48px;
  border-radius: 2px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

html[lang="fr"] body.home-page.mockup-home-page .btn.primary {
  width: auto;
  min-width: 190px;
  padding: 0 32px;
  border-color: var(--mockup-terracotta);
  background: var(--mockup-terracotta);
  color: var(--mockup-cream);
  box-shadow: none;
}

html[lang="fr"] body.home-page.mockup-home-page .btn.ghost {
  width: auto;
  min-width: 220px;
  padding: 0 32px;
  border-color: rgba(255, 248, 241, 0.86);
  background: rgba(95, 52, 40, 0.18);
  color: var(--mockup-cream);
  box-shadow: none;
}

html[lang="fr"] body.home-page.mockup-home-page .btn.outline {
  width: auto;
  min-width: 214px;
  padding: 0 26px;
  border-color: var(--mockup-terracotta);
  background: transparent;
  color: var(--mockup-terracotta-dark);
  box-shadow: none;
}

html[lang="fr"] body.home-page.mockup-home-page .quote-band {
  display: grid;
  width: var(--mockup-rail);
  height: auto;
  min-height: 132px;
  grid-template-columns: 148px minmax(0, 1fr) minmax(260px, 34%);
  align-items: stretch;
  margin: 0 auto 76px;
  overflow: hidden;
  border-top: 1px solid rgba(231, 201, 186, 0.8);
  border-bottom: 1px solid rgba(231, 201, 186, 0.8);
  background: var(--mockup-blush);
  content-visibility: visible;
  contain-intrinsic-size: none;
}

html[lang="fr"] body.home-page.mockup-home-page .quote-band::after {
  display: none;
}

html[lang="fr"] body.home-page.mockup-home-page .quote-motif {
  width: 70px;
  height: 70px;
  justify-self: center;
  align-self: center;
  margin: 0;
  opacity: 0.84;
}

html[lang="fr"] body.home-page.mockup-home-page .quote-band p {
  align-self: center;
  padding: 26px 24px 26px 0;
  color: var(--mockup-brown);
  font-family: var(--serif);
  font-size: clamp(24px, 2.05vw, 31px);
  font-weight: 400;
  line-height: 1.3;
}

html[lang="fr"] body.home-page.mockup-home-page .quote-photo {
  width: 100%;
  height: 100%;
  min-height: 132px;
  object-fit: cover;
}

html[lang="fr"] body.home-page.mockup-home-page .section-pad {
  width: var(--mockup-rail);
  margin-right: auto;
  margin-left: auto;
  padding-right: 0;
  padding-left: 0;
}

html[lang="fr"] body.home-page.mockup-home-page .rooms-section,
html[lang="fr"] body.home-page.mockup-home-page .gallery-section,
html[lang="fr"] body.home-page.mockup-home-page .services-section,
html[lang="fr"] body.home-page.mockup-home-page .faq-section {
  position: relative;
  width: var(--mockup-rail);
  max-width: none;
  height: auto;
  margin-right: auto;
  margin-left: auto;
  padding-block: 0 88px;
  clip-path: none;
  background: var(--mockup-bg);
  box-shadow: none;
  content-visibility: visible;
  contain-intrinsic-size: none;
}

html[lang="fr"] body.home-page.mockup-home-page .rooms-section::before,
html[lang="fr"] body.home-page.mockup-home-page .gallery-section::before,
html[lang="fr"] body.home-page.mockup-home-page .services-section::before,
html[lang="fr"] body.home-page.mockup-home-page .home-faq::before {
  top: 0;
  width: 100%;
  background: rgba(201, 111, 85, 0.28);
}

html[lang="fr"] body.home-page.mockup-home-page .section-heading {
  position: relative;
  inset: auto;
  margin-bottom: 38px;
  text-align: center;
}

html[lang="fr"] body.home-page.mockup-home-page .rooms-section .section-heading,
html[lang="fr"] body.home-page.mockup-home-page .gallery-section .section-heading,
html[lang="fr"] body.home-page.mockup-home-page .services-section .section-heading {
  padding-top: 70px;
}

html[lang="fr"] body.home-page.mockup-home-page .section-heading h2 {
  margin: 0;
  color: var(--mockup-brown);
  font-family: var(--serif);
  font-size: clamp(34px, 2.85vw, 42px);
  font-weight: 400;
  line-height: 1.05;
  text-align: center;
}

html[lang="fr"] body.home-page.mockup-home-page .section-heading .title-ornament {
  width: 116px;
  margin-top: 10px;
  color: var(--mockup-terracotta);
  background-image: url("/assets/ornaments/ornament-small.svg");
}

html[lang="fr"] body.home-page.mockup-home-page .room-grid {
  position: relative;
  inset: auto;
  display: grid;
  width: 100%;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  justify-content: center;
  margin: 0 auto;
  transform: none;
}

html[lang="fr"] body.home-page.mockup-home-page .room-card {
  width: auto;
  height: auto;
  min-height: 0;
  overflow: hidden;
  border: 1px solid var(--mockup-border);
  border-radius: 3px;
  background: rgba(255, 248, 241, 0.86);
  box-shadow: none;
}

html[lang="fr"] body.home-page.mockup-home-page .room-card-photo,
html[lang="fr"] body.home-page.mockup-home-page .room-card-photo > picture,
html[lang="fr"] body.home-page.mockup-home-page .room-card-photo > picture > img {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
}

html[lang="fr"] body.home-page.mockup-home-page .room-card-photo > picture > img {
  aspect-ratio: 4 / 2.45;
  object-fit: cover;
}

html[lang="fr"] body.home-page.mockup-home-page .room-body {
  height: auto;
  padding: 18px 18px 20px;
}

html[lang="fr"] body.home-page.mockup-home-page .room-body h3 {
  margin-bottom: 10px;
  color: var(--mockup-brown);
  font-size: 21px;
}

html[lang="fr"] body.home-page.mockup-home-page .room-body ul {
  color: var(--mockup-muted);
  font-size: 13px;
}

html[lang="fr"] body.home-page.mockup-home-page .rooms-link,
html[lang="fr"] body.home-page.mockup-home-page .gallery-link {
  position: relative;
  inset: auto;
  z-index: 2;
  display: grid !important;
  box-sizing: border-box;
  place-items: center;
  width: 224px;
  max-width: 100%;
  height: 46px !important;
  min-height: 46px !important;
  margin: 34px auto 0;
  padding: 2px 26px 0;
  cursor: pointer;
  font-size: 11px !important;
  letter-spacing: 0.1em;
  line-height: 1;
  text-align: center !important;
  text-decoration: none;
  vertical-align: middle;
  white-space: nowrap;
  pointer-events: auto;
  transform: none !important;
}

html[lang="fr"] body.home-page.mockup-home-page .rooms-link:hover,
html[lang="fr"] body.home-page.mockup-home-page .rooms-link:focus-visible,
html[lang="fr"] body.home-page.mockup-home-page .gallery-link:hover,
html[lang="fr"] body.home-page.mockup-home-page .gallery-link:focus-visible {
  border-color: var(--terracotta-dark) !important;
  background: var(--terracotta-dark) !important;
  color: var(--mockup-cream) !important;
  box-shadow:
    0 14px 34px rgba(74, 47, 31, 0.12),
    0 1px 0 rgba(255, 255, 255, 0.18) inset !important;
  transform: translateY(-1px) !important;
}

html[lang="fr"] body.home-page.mockup-home-page .rooms-link:active,
html[lang="fr"] body.home-page.mockup-home-page .gallery-link:active {
  transform: translateY(0) !important;
}

html[lang="fr"] body.home-page.mockup-home-page .gallery-section {
  --gallery-scale: 1;
}

html[lang="fr"] body.home-page.mockup-home-page .gallery-grid {
  position: relative;
  inset: auto;
  display: grid;
  width: 100%;
  height: auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
  margin: 0 auto;
  transform: none;
}

html[lang="fr"] body.home-page.mockup-home-page .gallery-grid picture,
html[lang="fr"] body.home-page.mockup-home-page .gallery-grid img,
html[lang="fr"] body.home-page.mockup-home-page .gallery-grid picture:nth-child(1),
html[lang="fr"] body.home-page.mockup-home-page .gallery-grid picture:nth-child(2),
html[lang="fr"] body.home-page.mockup-home-page .gallery-grid picture:nth-child(3),
html[lang="fr"] body.home-page.mockup-home-page .gallery-grid picture:nth-child(4) {
  position: relative;
  inset: auto;
  display: block;
  width: 100%;
  height: auto;
}

html[lang="fr"] body.home-page.mockup-home-page .gallery-grid picture {
  overflow: hidden;
  border: 1px solid var(--mockup-border);
  background: rgba(245, 211, 197, 0.4);
}

html[lang="fr"] body.home-page.mockup-home-page .gallery-grid img {
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

html[lang="fr"] body.home-page.mockup-home-page .services-section {
  display: block;
  text-align: center;
}

html[lang="fr"] body.home-page.mockup-home-page .services-grid {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-content: center;
  margin: 0 auto;
}

html[lang="fr"] body.home-page.mockup-home-page .services-grid article {
  position: relative;
  display: grid;
  min-height: 0;
  grid-template-rows: 76px auto auto;
  justify-items: center;
  align-content: start;
  gap: 12px;
  padding: 8px 34px 30px;
  text-align: center;
}

html[lang="fr"] body.home-page.mockup-home-page .services-grid article + article::before {
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 0;
  width: 1px;
  height: auto;
  content: "";
  background: rgba(201, 111, 85, 0.28);
}

html[lang="fr"] body.home-page.mockup-home-page .service-icon,
html[lang="fr"] body.home-page.mockup-home-page .service-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  transform: none;
}

html[lang="fr"] body.home-page.mockup-home-page .services-grid article:last-child .service-icon {
  width: 82px;
  height: 72px;
  transform: none;
}

html[lang="fr"] body.home-page.mockup-home-page .services-grid h3 {
  margin: 0;
  color: var(--mockup-brown);
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.15;
}

html[lang="fr"] body.home-page.mockup-home-page .services-grid p {
  width: auto;
  max-width: 280px;
  margin: 0;
  color: var(--mockup-muted);
  font-size: 14px;
  line-height: 1.62;
}

html[lang="fr"] body.home-page.mockup-home-page .faq-section {
  width: 100%;
  padding-bottom: 92px;
  background: var(--mockup-bg-soft);
  box-shadow: 0 0 0 100vmax var(--mockup-bg-soft);
  clip-path: inset(0 -100vmax);
}

html[lang="fr"] body.home-page.mockup-home-page .faq-inner,
html[lang="fr"] body.home-page.mockup-home-page .home-faq .faq-inner {
  width: var(--mockup-rail);
  max-width: none;
  margin-right: auto;
  margin-left: auto;
  padding: 68px 0 0;
}

html[lang="fr"] body.home-page.mockup-home-page .faq-heading h2 {
  color: var(--mockup-brown);
  font-size: clamp(34px, 2.85vw, 42px);
}

html[lang="fr"] body.home-page.mockup-home-page .faq-intro {
  max-width: 620px;
  margin-bottom: 34px;
  color: var(--mockup-muted);
  font-size: 15px;
}

html[lang="fr"] body.home-page.mockup-home-page .home-faq .faq-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

html[lang="fr"] body.home-page.mockup-home-page .faq-item {
  border: 1px solid var(--mockup-border);
  border-radius: 3px;
  background: rgba(255, 248, 241, 0.92);
  box-shadow: none;
}

html[lang="fr"] body.home-page.mockup-home-page .faq-item summary {
  min-height: 66px;
  padding: 18px 54px 18px 20px;
  color: var(--mockup-brown);
  font-size: 14px;
  line-height: 1.35;
}

html[lang="fr"] body.home-page.mockup-home-page .faq-item summary::after {
  right: 18px;
  width: 24px;
  height: 24px;
  border-color: rgba(201, 111, 85, 0.54);
  color: var(--mockup-terracotta-dark);
}

html[lang="fr"] body.home-page.mockup-home-page .faq-item[open] summary::after {
  background: var(--mockup-terracotta);
  color: #fff;
}

html[lang="fr"] body.home-page.mockup-home-page .faq-item p {
  padding: 0 20px 20px;
  color: var(--mockup-muted);
  font-size: 14px;
  line-height: 1.65;
}

html[lang="fr"] body.home-page.mockup-home-page .rf-footer {
  --rf-shell: min(calc(100% - clamp(32px, 11vw, 430px)), 2460px);
  background: var(--rf-rust);
  content-visibility: visible;
  contain-intrinsic-size: none;
}

html[lang="fr"] body.home-page.mockup-home-page .rf-contact-band {
  background:
    linear-gradient(100deg, #97482f 0%, var(--rf-rust) 48%, var(--rf-rust-light) 100%);
}

html[lang="fr"] body.home-page.mockup-home-page .rf-contact-band::before {
  background-size: 76px 76px;
  opacity: .06;
}

html[lang="fr"] body.home-page.mockup-home-page .rf-contact {
  width: var(--rf-shell);
  grid-template-columns: minmax(250px, 1.06fr) minmax(170px, .82fr) minmax(214px, .9fr) minmax(164px, .72fr) minmax(150px, .7fr);
}

html[lang="fr"] body.home-page.mockup-home-page .rf-contact-card {
  min-height: clamp(96px, 5.6vw, 154px);
  padding: clamp(26px, 2.6vw, 58px) clamp(20px, 2.6vw, 62px);
}

html[lang="fr"] body.home-page.mockup-home-page .rf-reserve {
  width: clamp(178px, 10vw, 250px);
  min-height: clamp(54px, 3.3vw, 76px);
  border-radius: 8px;
}

html[lang="fr"] body.home-page.mockup-home-page .rf-bottom {
  background: linear-gradient(90deg, var(--rf-rust-deep), var(--rf-rust-dark));
}

@media (max-width: 1439px) {
  html[lang="fr"] body.home-page.mockup-home-page .home-header {
    height: 88px;
    gap: 18px;
    padding-inline: max(28px, calc((100% - 1120px) / 2));
  }

  html[lang="fr"] body.home-page.mockup-home-page .home-header .brand-panel {
    width: 136px;
  }

  html[lang="fr"] body.home-page.mockup-home-page .home-header .brand-panel img {
    height: 66px;
  }

  html[lang="fr"] body.home-page.mockup-home-page .home-header .site-nav {
    gap: 15px;
    font-size: 10px;
  }

  html[lang="fr"] body.home-page.mockup-home-page .hero-grid {
    min-height: 660px;
    height: min(76svh, 760px);
  }
}

@media (max-width: 1180px) {
  html[lang="fr"] body.home-page.mockup-home-page .rf-footer {
    --rf-shell: min(calc(100% - clamp(32px, 6vw, 72px)), 980px);
  }

  html[lang="fr"] body.home-page.mockup-home-page .rf-contact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 20px 0;
  }

  html[lang="fr"] body.home-page.mockup-home-page .rf-contact-card {
    min-height: 128px;
    padding: 28px clamp(20px, 4vw, 44px);
  }
}

@media (max-width: 1023px) {
  html[lang="fr"] body.home-page.mockup-home-page {
    --mockup-rail: min(calc(100% - 64px), 920px);
  }

  html[lang="fr"] body.home-page.mockup-home-page .home-header {
    height: 80px;
    padding-inline: 32px;
  }

  html[lang="fr"] body.home-page.mockup-home-page .home-header .brand-panel {
    width: 118px;
  }

  html[lang="fr"] body.home-page.mockup-home-page .home-header .brand-panel img {
    height: 58px;
  }

  html[lang="fr"] body.home-page.mockup-home-page .home-header .site-nav {
    gap: 12px;
  }

  html[lang="fr"] body.home-page.mockup-home-page .home-header .motif-button,
  html[lang="fr"] body.home-page.mockup-home-page .home-header .site-nav .motif-button {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(201, 111, 85, 0.3);
    border-radius: 3px;
    background: rgba(255, 248, 241, 0.62);
  }

  html[lang="fr"] body.home-page.mockup-home-page .home-header .motif-button span,
  html[lang="fr"] body.home-page.mockup-home-page .home-header .motif-button::before,
  html[lang="fr"] body.home-page.mockup-home-page .home-header .motif-button::after {
    position: absolute;
    left: 12px;
    display: block !important;
    width: 18px;
    height: 2px;
    content: "";
    background: var(--mockup-brown);
  }

  html[lang="fr"] body.home-page.mockup-home-page .home-header .motif-button::before { top: 15px; }
  html[lang="fr"] body.home-page.mockup-home-page .home-header .motif-button span { top: 21px; }
  html[lang="fr"] body.home-page.mockup-home-page .home-header .motif-button::after { top: 27px; }

  html[lang="fr"] body.home-page.mockup-home-page .home-header .site-nav:not(.is-open) a:not(.nav-cta):not(.language-switch),
  html[lang="fr"] body.home-page.mockup-home-page .home-header .site-nav:not(.is-open) .nav-whatsapp {
    display: none;
  }

  html[lang="fr"] body.home-page.mockup-home-page .home-header .site-nav:not(.is-open) .nav-cta {
    min-width: 112px;
    height: 42px;
    padding-inline: 18px;
  }

  html[lang="fr"] body.home-page.mockup-home-page .home-header .site-nav.is-open,
  html[lang="fr"] body.home-page.mockup-home-page.mobile-menu-open .home-header .site-nav.is-open {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: grid;
    height: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-content: start;
    align-items: stretch;
    justify-content: stretch;
    gap: 10px;
    overflow-y: auto;
    padding: 112px 32px 42px;
    background: var(--mockup-bg);
  }

  html[lang="fr"] body.home-page.mockup-home-page .home-header .site-nav.is-open a:not(.language-switch),
  html[lang="fr"] body.home-page.mockup-home-page .home-header .site-nav.is-open .nav-whatsapp {
    display: inline-flex;
    width: auto;
    min-height: 58px;
    justify-content: center;
    border: 1px solid rgba(231, 201, 186, 0.86);
    border-radius: 10px;
    background: rgba(255, 248, 241, 0.7);
    color: var(--mockup-brown);
  }

  html[lang="fr"] body.home-page.mockup-home-page .home-header .site-nav.is-open .nav-cta {
    grid-column: 1 / -1;
    margin-top: 10px;
    border-color: var(--mockup-terracotta);
    border-radius: 3px;
    background: var(--mockup-terracotta);
    color: var(--mockup-cream);
  }

  html[lang="fr"] body.home-page.mockup-home-page .home-header .site-nav.is-open .language-switch {
    position: relative;
    inset: auto;
    grid-column: 1 / -1;
    justify-self: center;
    order: 2;
    margin: 8px 0 4px;
  }

  html[lang="fr"] body.home-page.mockup-home-page .home-header .site-nav.is-open .motif-button {
    position: absolute;
    top: 18px;
    right: 32px;
  }

  html[lang="fr"] body.home-page.mockup-home-page .home-header .site-nav.is-open .motif-button::before {
    top: 21px;
    transform: rotate(45deg);
  }

  html[lang="fr"] body.home-page.mockup-home-page .home-header .site-nav.is-open .motif-button span {
    opacity: 0;
  }

  html[lang="fr"] body.home-page.mockup-home-page .home-header .site-nav.is-open .motif-button::after {
    top: 21px;
    transform: rotate(-45deg);
  }

  html[lang="fr"] body.home-page.mockup-home-page.mobile-menu-open .home-header .brand-panel {
    position: fixed;
    top: 0;
    left: 32px;
    z-index: 1210;
    height: 80px;
  }

  html[lang="fr"] body.home-page.mockup-home-page .hero-grid {
    min-height: 620px;
    height: 660px;
  }

  html[lang="fr"] body.home-page.mockup-home-page .hero-copy h1 {
    font-size: 50px;
  }

  html[lang="fr"] body.home-page.mockup-home-page .quote-band {
    grid-template-columns: 118px minmax(0, 1fr) minmax(220px, 30%);
  }

  html[lang="fr"] body.home-page.mockup-home-page .quote-band p {
    font-size: 24px;
  }

  html[lang="fr"] body.home-page.mockup-home-page .room-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  html[lang="fr"] body.home-page.mockup-home-page .room-card:nth-child(3) {
    grid-column: 1 / -1;
    width: min(100%, 346px);
    justify-self: center;
  }

  html[lang="fr"] body.home-page.mockup-home-page .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  html[lang="fr"] body.home-page.mockup-home-page .gallery-grid img {
    aspect-ratio: 4 / 2.55;
  }

  html[lang="fr"] body.home-page.mockup-home-page .services-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  html[lang="fr"] body.home-page.mockup-home-page .services-grid article {
    padding: 8px 28px 30px;
  }

  html[lang="fr"] body.home-page.mockup-home-page .services-grid article + article::before {
    display: none;
  }

  html[lang="fr"] body.home-page.mockup-home-page .home-faq .faq-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  html[lang="fr"] body.home-page.mockup-home-page .rf-footer {
    --rf-shell: min(calc(100% - 36px), 430px);
  }

  html[lang="fr"] body.home-page.mockup-home-page .rf-contact {
    grid-template-columns: 1fr;
    padding: 12px 0;
  }

  html[lang="fr"] body.home-page.mockup-home-page .rf-contact-card {
    min-height: 0;
    padding: 26px 18px;
  }
}

@media (max-width: 599px) {
  html[lang="fr"] body.home-page.mockup-home-page {
    --mockup-rail: calc(100% - 44px);
  }

  html[lang="fr"] body.home-page.mockup-home-page .home-header {
    height: 72px;
    padding-inline: 20px;
  }

  html[lang="fr"] body.home-page.mockup-home-page .home-header .brand-panel {
    width: 94px;
  }

  html[lang="fr"] body.home-page.mockup-home-page .home-header .brand-panel img,
  html[lang="fr"] body.home-page.mockup-home-page.mobile-menu-open .home-header .brand-panel img {
    height: 50px;
  }

  html[lang="fr"] body.home-page.mockup-home-page .home-header .site-nav:not(.is-open) .nav-cta {
    display: none;
  }

  html[lang="fr"] body.home-page.mockup-home-page .home-header .site-nav.is-open {
    padding: 96px 24px 34px;
  }

  html[lang="fr"] body.home-page.mockup-home-page.mobile-menu-open .home-header .brand-panel {
    left: 20px;
    height: 72px;
  }

  html[lang="fr"] body.home-page.mockup-home-page .home-header .site-nav.is-open .motif-button {
    top: 14px;
    right: 20px;
  }

  html[lang="fr"] body.home-page.mockup-home-page .hero-grid {
    min-height: 680px;
    height: 720px;
  }

  html[lang="fr"] body.home-page.mockup-home-page .hero-copy {
    width: min(calc(100% - 48px), 340px);
  }

  html[lang="fr"] body.home-page.mockup-home-page .hero-copy h1 {
    font-size: 40px;
    line-height: 1.04;
  }

  html[lang="fr"] body.home-page.mockup-home-page .hero-copy p {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.62;
  }

  html[lang="fr"] body.home-page.mockup-home-page .hero-actions {
    display: grid;
    gap: 12px;
    margin-top: 28px;
  }

  html[lang="fr"] body.home-page.mockup-home-page .btn.primary,
  html[lang="fr"] body.home-page.mockup-home-page .btn.ghost {
    width: min(100%, 320px);
    min-width: 0;
  }

  html[lang="fr"] body.home-page.mockup-home-page .quote-band {
    grid-template-columns: 1fr;
    margin-bottom: 58px;
    text-align: center;
  }

  html[lang="fr"] body.home-page.mockup-home-page .quote-motif {
    margin-top: 26px;
  }

  html[lang="fr"] body.home-page.mockup-home-page .quote-band p {
    padding: 12px 24px 24px;
    font-size: 22px;
  }

  html[lang="fr"] body.home-page.mockup-home-page .quote-photo {
    min-height: 132px;
  }

  html[lang="fr"] body.home-page.mockup-home-page .rooms-section,
  html[lang="fr"] body.home-page.mockup-home-page .gallery-section,
  html[lang="fr"] body.home-page.mockup-home-page .services-section,
  html[lang="fr"] body.home-page.mockup-home-page .faq-section {
    padding-bottom: 64px;
  }

  html[lang="fr"] body.home-page.mockup-home-page .rooms-section .section-heading,
  html[lang="fr"] body.home-page.mockup-home-page .gallery-section .section-heading,
  html[lang="fr"] body.home-page.mockup-home-page .services-section .section-heading {
    padding-top: 54px;
  }

  html[lang="fr"] body.home-page.mockup-home-page .section-heading h2,
  html[lang="fr"] body.home-page.mockup-home-page .faq-heading h2 {
    font-size: 32px;
  }

  html[lang="fr"] body.home-page.mockup-home-page .room-grid,
  html[lang="fr"] body.home-page.mockup-home-page .gallery-grid,
  html[lang="fr"] body.home-page.mockup-home-page .services-grid,
  html[lang="fr"] body.home-page.mockup-home-page .home-faq .faq-list {
    grid-template-columns: 1fr;
  }

  html[lang="fr"] body.home-page.mockup-home-page .services-grid article {
    padding: 10px 24px 32px;
  }

  html[lang="fr"] body.home-page.mockup-home-page .room-card:nth-child(3) {
    grid-column: auto;
    width: auto;
  }

  html[lang="fr"] body.home-page.mockup-home-page .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  html[lang="fr"] body.home-page.mockup-home-page .gallery-grid img {
    aspect-ratio: 1 / 0.82;
  }

  html[lang="fr"] body.home-page.mockup-home-page .faq-inner,
  html[lang="fr"] body.home-page.mockup-home-page .home-faq .faq-inner {
    padding-top: 54px;
  }
}

@media (max-width: 389px) {
  html[lang="fr"] body.home-page.mockup-home-page .hero-copy {
    width: min(calc(100% - 40px), 320px);
  }

  html[lang="fr"] body.home-page.mockup-home-page .hero-copy h1 {
    font-size: 34px;
  }

  html[lang="fr"] body.home-page.mockup-home-page .hero-copy p {
    font-size: 14px;
  }

  html[lang="fr"] body.home-page.mockup-home-page .quote-band p {
    font-size: 20px;
  }

  html[lang="fr"] body.home-page.mockup-home-page .gallery-grid {
    gap: 8px;
  }
}

/* Keep the French homepage overlay aligned with the shared mobile menu. */
@media (max-width: 560px) {
  html[lang="fr"] body.home-page.mobile-menu-open,
  html[lang="fr"] body.home-page.mockup-home-page.mobile-menu-open {
    --mobile-menu-lockup-size: min(89.1304vw, 386px);
    --mobile-menu-lockup-top: clamp(4px, 1.8vw, 8px);
    --mobile-menu-lockup-center: 52.1739vw;
    --mobile-menu-logo-width: min(48vw, 208px);
    --mobile-menu-logo-top: calc(var(--mobile-menu-lockup-top) + min(33.5vw, 145px));
    --mobile-menu-close-top: calc(var(--mobile-menu-lockup-top) + min(8vw, 34px));
    --mobile-menu-brand-height: calc(var(--mobile-menu-lockup-top) + var(--mobile-menu-lockup-size) + 2px);
    --mobile-menu-action-shift: 2.1739vw;
    overflow: hidden;
  }

  html[lang="fr"] body.home-page.mobile-menu-open .home-header .brand-panel,
  html[lang="fr"] body.home-page.mockup-home-page.mobile-menu-open .home-header .brand-panel {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1201;
    display: grid;
    width: auto;
    height: var(--mobile-menu-brand-height);
    min-height: 0;
    place-items: start center;
    overflow: hidden;
    padding: 0;
    border: 0;
    background: #fdf6f1;
    box-shadow: none;
  }

  html[lang="fr"] body.home-page.mobile-menu-open .home-header .brand-panel::before,
  html[lang="fr"] body.home-page.mockup-home-page.mobile-menu-open .home-header .brand-panel::before {
    position: absolute;
    top: var(--mobile-menu-lockup-top);
    left: var(--mobile-menu-lockup-center);
    z-index: 0;
    display: block;
    width: var(--mobile-menu-lockup-size);
    height: var(--mobile-menu-lockup-size);
    content: "";
    background: url("/assets/ornaments/mobile-menu-arch-shape.png?v=20260711-contact-form-interactions-v2") center / 100% 100% no-repeat;
    filter: none;
    opacity: 1;
    transform: translateX(-50%);
  }

  html[lang="fr"] body.home-page.mobile-menu-open .home-header .brand-panel::after,
  html[lang="fr"] body.home-page.mockup-home-page.mobile-menu-open .home-header .brand-panel::after {
    position: absolute;
    top: calc(var(--mobile-menu-logo-top) - min(3vw, 12px));
    left: var(--mobile-menu-lockup-center);
    z-index: 1;
    display: block;
    width: min(74vw, 288px);
    height: min(52vw, 202px);
    content: "";
    background: radial-gradient(ellipse at 50% 52%, rgba(255, 250, 245, 0.72) 0%, rgba(255, 250, 245, 0.52) 52%, rgba(255, 250, 245, 0.18) 78%, rgba(255, 250, 245, 0) 100%);
    filter: blur(3px);
    pointer-events: none;
    transform: translateX(-50%);
  }

  html[lang="fr"] body.home-page.mobile-menu-open .home-header .brand-panel img,
  html[lang="fr"] body.home-page.mockup-home-page.mobile-menu-open .home-header .brand-panel img {
    position: absolute;
    top: var(--mobile-menu-logo-top);
    left: var(--mobile-menu-lockup-center);
    z-index: 2;
    width: var(--mobile-menu-logo-width);
    max-width: none;
    height: auto;
    margin: 0;
    opacity: 1;
    filter: none;
    transform: translateX(-50%);
  }

  html[lang="fr"] body.home-page.mobile-menu-open .home-header .site-nav.is-open,
  html[lang="fr"] body.home-page.mockup-home-page.mobile-menu-open .home-header .site-nav.is-open {
    --menu-icon-home: url("/assets/ornaments/menu-home.svg");
    --menu-icon-riad: url("/assets/ornaments/menu-riad.svg");
    --menu-icon-rooms: url("/assets/ornaments/menu-rooms.svg");
    --menu-icon-experiences: url("/assets/ornaments/menu-experiences.svg");
    --menu-icon-gallery: url("/assets/ornaments/menu-gallery.svg");
    --menu-icon-journal: url("/assets/ornaments/menu-journal.svg");
    --menu-icon-contact: url("/assets/ornaments/menu-contact.svg");
    position: fixed;
    inset: var(--mobile-menu-brand-height) 0 0;
    z-index: 1202;
    display: grid;
    width: auto;
    height: auto;
    min-height: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-content: start;
    align-items: stretch;
    justify-content: stretch;
    gap: 9px;
    overflow-y: auto;
    padding: 0 max(15px, calc(50vw - 165px)) 16px;
    border: 0;
    background: #fff9f4;
    color: #463f3a;
    -webkit-overflow-scrolling: touch;
  }

  html[lang="fr"] body.home-page.mobile-menu-open .home-header .site-nav.is-open .nav-cta,
  html[lang="fr"] body.home-page.mockup-home-page.mobile-menu-open .home-header .site-nav.is-open .nav-cta {
    display: inline-flex;
    width: min(78.8043vw, 341px);
    height: clamp(58px, 18.4783vw, 80px);
    grid-column: 1 / -1;
    align-items: center;
    justify-content: center;
    justify-self: center;
    margin: 0 0 4px;
    border: 1px solid var(--terracotta);
    border-radius: 999px;
    background: var(--terracotta);
    box-shadow: 0 8px 22px rgba(74, 47, 31, 0.055);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    order: 1;
    transform: translateX(var(--mobile-menu-action-shift));
  }

  html[lang="fr"] body.home-page.mobile-menu-open .home-header .site-nav.is-open .language-switch,
  html[lang="fr"] body.home-page.mockup-home-page.mobile-menu-open .home-header .site-nav.is-open .language-switch {
    position: relative;
    inset: auto;
    display: inline-grid;
    width: 62px;
    min-width: 62px;
    height: 36px;
    min-height: 36px;
    grid-column: 1 / -1;
    place-items: center;
    justify-self: center;
    margin: 14px 0 10px;
    padding: 0 8px;
    border: 1px solid rgba(226, 198, 181, 0.55);
    border-radius: 999px;
    background: rgba(255, 250, 245, 0.96);
    box-shadow:
      0 10px 18px rgba(75, 47, 31, 0.09),
      inset 0 1px 0 rgba(255, 255, 255, 0.72);
    color: #4d4540;
    font-size: 0;
    font-weight: 700;
    line-height: 1;
    order: 2;
  }

  html[lang="fr"] body.home-page.mobile-menu-open .home-header .site-nav.is-open .language-switch span,
  html[lang="fr"] body.home-page.mockup-home-page.mobile-menu-open .home-header .site-nav.is-open .language-switch span {
    font-size: 11px;
  }

  html[lang="fr"] body.home-page.mobile-menu-open .home-header .site-nav.is-open .language-switch::before,
  html[lang="fr"] body.home-page.mobile-menu-open .home-header .site-nav.is-open .language-switch::after,
  html[lang="fr"] body.home-page.mockup-home-page.mobile-menu-open .home-header .site-nav.is-open .language-switch::before,
  html[lang="fr"] body.home-page.mockup-home-page.mobile-menu-open .home-header .site-nav.is-open .language-switch::after {
    display: none;
    content: none;
  }

  html[lang="fr"] body.home-page.mobile-menu-open .home-header .site-nav.is-open a:not(.nav-cta):not(.language-switch),
  html[lang="fr"] body.home-page.mockup-home-page.mobile-menu-open .home-header .site-nav.is-open a:not(.nav-cta):not(.language-switch) {
    display: inline-flex;
    width: auto;
    min-width: 0;
    height: clamp(68px, 9svh, 86px);
    min-height: 0;
    align-items: center;
    justify-content: center;
    flex: initial;
    flex-direction: column;
    gap: 11px;
    margin: 0;
    padding: 0;
    border: 1px solid rgba(232, 211, 199, 0.94);
    border-radius: 14px;
    background: rgba(255, 251, 247, 0.82);
    box-shadow:
      0 10px 22px rgba(133, 84, 62, 0.06),
      inset 0 1px 0 rgba(255, 255, 255, 0.72);
    color: #403a36;
    font-size: 10px;
    font-weight: 800;
    line-height: 1;
    text-align: center;
    order: 3;
  }

  html[lang="fr"] body.home-page.mobile-menu-open .home-header .site-nav.is-open a:not(.nav-cta):not(.language-switch)::before,
  html[lang="fr"] body.home-page.mockup-home-page.mobile-menu-open .home-header .site-nav.is-open a:not(.nav-cta):not(.language-switch)::before {
    display: block;
    width: 32px;
    height: 32px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
  }

  html[lang="fr"] body.home-page.mobile-menu-open .home-header .site-nav.is-open a:nth-of-type(1)::before,
  html[lang="fr"] body.home-page.mockup-home-page.mobile-menu-open .home-header .site-nav.is-open a:nth-of-type(1)::before {
    background-image: var(--menu-icon-home);
  }

  html[lang="fr"] body.home-page.mobile-menu-open .home-header .site-nav.is-open a:nth-of-type(2)::before,
  html[lang="fr"] body.home-page.mockup-home-page.mobile-menu-open .home-header .site-nav.is-open a:nth-of-type(2)::before {
    background-image: var(--menu-icon-riad);
  }

  html[lang="fr"] body.home-page.mobile-menu-open .home-header .site-nav.is-open a:nth-of-type(3)::before,
  html[lang="fr"] body.home-page.mockup-home-page.mobile-menu-open .home-header .site-nav.is-open a:nth-of-type(3)::before {
    background-image: var(--menu-icon-rooms);
  }

  html[lang="fr"] body.home-page.mobile-menu-open .home-header .site-nav.is-open a:nth-of-type(4)::before,
  html[lang="fr"] body.home-page.mockup-home-page.mobile-menu-open .home-header .site-nav.is-open a:nth-of-type(4)::before {
    background-image: var(--menu-icon-experiences);
  }

  html[lang="fr"] body.home-page.mobile-menu-open .home-header .site-nav.is-open a:nth-of-type(5)::before,
  html[lang="fr"] body.home-page.mockup-home-page.mobile-menu-open .home-header .site-nav.is-open a:nth-of-type(5)::before {
    background-image: var(--menu-icon-gallery);
  }

  html[lang="fr"] body.home-page.mobile-menu-open .home-header .site-nav.is-open a:nth-of-type(6)::before,
  html[lang="fr"] body.home-page.mockup-home-page.mobile-menu-open .home-header .site-nav.is-open a:nth-of-type(6)::before {
    background-image: var(--menu-icon-journal);
  }

  html[lang="fr"] body.home-page.mobile-menu-open .home-header .site-nav.is-open a:nth-of-type(7)::before,
  html[lang="fr"] body.home-page.mockup-home-page.mobile-menu-open .home-header .site-nav.is-open a:nth-of-type(7)::before {
    background-image: var(--menu-icon-contact);
  }

  html[lang="fr"] body.home-page.mobile-menu-open .home-header .site-nav.is-open a.nav-whatsapp:not(.nav-cta):not(.language-switch)::before,
  html[lang="fr"] body.home-page.mockup-home-page.mobile-menu-open .home-header .site-nav.is-open a.nav-whatsapp:not(.nav-cta):not(.language-switch)::before {
    display: none;
    content: none;
  }

  html[lang="fr"] body.home-page.mobile-menu-open .home-header .site-nav.is-open .nav-whatsapp img,
  html[lang="fr"] body.home-page.mockup-home-page.mobile-menu-open .home-header .site-nav.is-open .nav-whatsapp img {
    display: block;
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    align-self: center;
    justify-self: center;
    margin: 0 auto;
    filter: none;
    opacity: 1;
  }

  html[lang="fr"] body.home-page.mobile-menu-open .home-header .site-nav.is-open .nav-whatsapp-label,
  html[lang="fr"] body.home-page.mockup-home-page.mobile-menu-open .home-header .site-nav.is-open .nav-whatsapp-label {
    display: block;
    width: 100%;
    line-height: 1;
    text-align: center;
  }

  html[lang="fr"] body.home-page.mobile-menu-open .home-header .site-nav.is-open a:not(.nav-cta):not(.language-switch)::after,
  html[lang="fr"] body.home-page.mockup-home-page.mobile-menu-open .home-header .site-nav.is-open a:not(.nav-cta):not(.language-switch)::after {
    display: none;
  }

  html[lang="fr"] body.home-page.mobile-menu-open .home-header .site-nav.is-open .motif-button,
  html[lang="fr"] body.home-page.mockup-home-page.mobile-menu-open .home-header .site-nav.is-open .motif-button {
    position: fixed;
    top: clamp(42px, 6.3svh, 54px);
    right: max(14px, calc((100vw - 342px) / 2));
    z-index: 20;
    display: block;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(232, 211, 199, 0.98);
    border-radius: 50%;
    background: rgba(255, 251, 247, 0.94);
    box-shadow: 0 8px 20px rgba(126, 80, 58, 0.1);
  }

  html[lang="fr"] body.home-page.mobile-menu-open .home-header .site-nav.is-open .motif-button::before,
  html[lang="fr"] body.home-page.mobile-menu-open .home-header .site-nav.is-open .motif-button::after,
  html[lang="fr"] body.home-page.mockup-home-page.mobile-menu-open .home-header .site-nav.is-open .motif-button::before,
  html[lang="fr"] body.home-page.mockup-home-page.mobile-menu-open .home-header .site-nav.is-open .motif-button::after {
    top: 19px;
    left: 10px;
    width: 18px;
    height: 1.6px;
    background: #654339;
  }

  html[lang="fr"] body.home-page.mobile-menu-open .home-header .site-nav.is-open .motif-button::before,
  html[lang="fr"] body.home-page.mockup-home-page.mobile-menu-open .home-header .site-nav.is-open .motif-button::before {
    transform: rotate(45deg);
  }

  html[lang="fr"] body.home-page.mobile-menu-open .home-header .site-nav.is-open .motif-button span,
  html[lang="fr"] body.home-page.mockup-home-page.mobile-menu-open .home-header .site-nav.is-open .motif-button span {
    opacity: 0;
  }

  html[lang="fr"] body.home-page.mobile-menu-open .home-header .site-nav.is-open .motif-button::after,
  html[lang="fr"] body.home-page.mockup-home-page.mobile-menu-open .home-header .site-nav.is-open .motif-button::after {
    transform: rotate(-45deg);
  }
}

/* Keep the French homepage navigation on the same system as the rest of the site. */
@media (min-width: 900px) {
  html[lang="fr"] body.home-page .home-header,
  html[lang="fr"] body.home-page.mockup-home-page .home-header {
    position: relative;
    top: auto;
    z-index: 50;
    display: grid;
    width: 100%;
    min-height: var(--inner-menu-height);
    height: var(--inner-menu-height);
    grid-template-columns: var(--header-menu-column) minmax(0, 1fr);
    align-items: stretch;
    gap: 0;
    padding: 0;
    border: 0;
    background: var(--paper);
    box-shadow: none;
  }

  html[lang="fr"] body.home-page .home-header .brand-panel,
  html[lang="fr"] body.home-page.mobile-menu-open .home-header .brand-panel,
  html[lang="fr"] body.home-page.mockup-home-page .home-header .brand-panel,
  html[lang="fr"] body.home-page.mockup-home-page.mobile-menu-open .home-header .brand-panel {
    position: fixed;
    top: 0;
    right: auto;
    bottom: auto;
    left: 0;
    z-index: 901;
    display: grid;
    width: var(--header-menu-column);
    height: var(--inner-menu-height);
    min-height: 0;
    place-items: center;
    padding: 0;
    border: 0;
    border-bottom: 1px solid var(--menu-border);
    background: var(--paper);
    box-shadow: none;
  }

  html[lang="fr"] body.home-page .home-header .brand-panel::before,
  html[lang="fr"] body.home-page .home-header .brand-panel::after,
  html[lang="fr"] body.home-page.mockup-home-page .home-header .brand-panel::before,
  html[lang="fr"] body.home-page.mockup-home-page .home-header .brand-panel::after {
    display: none;
  }

  html[lang="fr"] body.home-page .home-header .brand-panel img,
  html[lang="fr"] body.home-page.mobile-menu-open .home-header .brand-panel img,
  html[lang="fr"] body.home-page.mockup-home-page .home-header .brand-panel img,
  html[lang="fr"] body.home-page.mockup-home-page.mobile-menu-open .home-header .brand-panel img {
    position: relative;
    top: auto;
    left: auto;
    z-index: 1;
    width: clamp(96px, 5.4vw, 104px);
    max-width: none;
    height: auto;
    margin: 0;
    opacity: 1;
    filter: none;
    transform: none;
  }

  html[lang="fr"] body.home-page .home-header .site-nav,
  html[lang="fr"] body.home-page.nav-scrolled .home-header .site-nav,
  html[lang="fr"] body.home-page.mobile-menu-open .home-header .site-nav,
  html[lang="fr"] body.home-page.mockup-home-page .home-header .site-nav,
  html[lang="fr"] body.home-page.mockup-home-page.nav-scrolled .home-header .site-nav,
  html[lang="fr"] body.home-page.mockup-home-page.mobile-menu-open .home-header .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: auto;
    left: var(--header-menu-column);
    z-index: 900;
    display: flex;
    width: auto;
    height: var(--inner-menu-height);
    min-height: 0;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: nowrap;
    gap: clamp(12px, 1.2vw, 22px);
    padding: 0 clamp(36px, 3.6vw, 68px) 0 clamp(28px, 2.5vw, 48px);
    border: 0;
    border-bottom: 1px solid var(--menu-border);
    background: var(--paper);
    box-shadow: none;
    color: #34302d;
    font-size: clamp(12px, 0.78vw, 13px);
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1;
    text-transform: uppercase;
  }

  html[lang="fr"] body.home-page .home-header .site-nav::before,
  html[lang="fr"] body.home-page.mockup-home-page .home-header .site-nav::before {
    display: none;
  }

  html[lang="fr"] body.home-page .home-header .site-nav a,
  html[lang="fr"] body.home-page.mockup-home-page .home-header .site-nav a {
    color: inherit;
    text-decoration: none;
  }

  html[lang="fr"] body.home-page .home-header .site-nav a::after,
  html[lang="fr"] body.home-page.mockup-home-page .home-header .site-nav a::after {
    bottom: 8px;
    background: var(--terracotta);
  }

  html[lang="fr"] body.home-page .home-header .site-nav .nav-whatsapp,
  html[lang="fr"] body.home-page.mockup-home-page .home-header .site-nav .nav-whatsapp {
    display: inline-flex;
    width: 46px;
    min-width: 46px;
    height: 46px;
    flex: 0 0 46px;
    margin-left: -4px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #fff7ef;
    box-shadow:
      0 8px 22px rgba(73, 36, 23, 0.12),
      inset 0 0 0 1px rgba(213, 161, 139, 0.18);
  }

  html[lang="fr"] body.home-page .home-header .site-nav .nav-whatsapp img,
  html[lang="fr"] body.home-page.mockup-home-page .home-header .site-nav .nav-whatsapp img {
    width: 34px;
    height: 34px;
  }

  html[lang="fr"] body.home-page .home-header .site-nav .nav-cta,
  html[lang="fr"] body.home-page.mockup-home-page .home-header .site-nav .nav-cta {
    display: inline-flex;
    width: clamp(112px, 7vw, 140px);
    min-width: 0;
    height: clamp(44px, 3vw, 58px);
    margin-left: 8px;
    padding: 0;
    border: 1px solid var(--terracotta);
    border-radius: 2px;
    background: var(--terracotta);
    box-shadow: 0 8px 22px rgba(74, 47, 31, 0.055);
    color: var(--white);
    font-size: clamp(10px, 0.72vw, 13px);
    font-weight: 700;
    letter-spacing: 0;
  }

  html[lang="fr"] body.home-page .home-header .site-nav .language-switch,
  html[lang="fr"] body.home-page.mockup-home-page .home-header .site-nav .language-switch {
    display: inline-flex;
    min-width: clamp(42px, 3.2vw, 54px);
    height: clamp(32px, 2.35vw, 40px);
    padding: 0 clamp(6px, 0.5vw, 9px);
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: inherit;
    font-size: clamp(10px, 0.72vw, 13px);
    font-weight: 700;
    letter-spacing: 0;
  }

  html[lang="fr"] body.home-page .home-header .site-nav .language-switch::before,
  html[lang="fr"] body.home-page .home-header .site-nav .language-switch::after,
  html[lang="fr"] body.home-page.mockup-home-page .home-header .site-nav .language-switch::before,
  html[lang="fr"] body.home-page.mockup-home-page .home-header .site-nav .language-switch::after {
    display: none;
    content: none;
  }

  html[lang="fr"] body.home-page .home-header .motif-button,
  html[lang="fr"] body.home-page.mockup-home-page .home-header .motif-button {
    display: none;
  }
}

@media (min-width: 561px) and (max-width: 899px) {
  html[lang="fr"] body.home-page .home-header,
  html[lang="fr"] body.home-page.mockup-home-page .home-header {
    position: relative;
    top: auto;
    z-index: 50;
    display: grid;
    width: 100%;
    min-height: 0;
    height: auto;
    grid-template-columns: 1fr;
    gap: 0;
    padding: var(--sticky-nav-offset, 76px) 0 0;
    border: 0;
    background: var(--paper);
    box-shadow: none;
  }

  html[lang="fr"] body.home-page .home-header .brand-panel,
  html[lang="fr"] body.home-page.mobile-menu-open .home-header .brand-panel,
  html[lang="fr"] body.home-page.mockup-home-page .home-header .brand-panel,
  html[lang="fr"] body.home-page.mockup-home-page.mobile-menu-open .home-header .brand-panel {
    position: relative;
    inset: auto;
    z-index: 1;
    display: grid;
    width: auto;
    height: clamp(142px, 20vw, 174px);
    min-height: 0;
    place-items: center;
    place-content: center;
    padding: 12px 16px;
    border: 0;
    border-bottom: 1px solid rgba(226, 198, 181, 0.7);
    background: linear-gradient(180deg, rgba(255, 250, 245, 0.98), rgba(255, 250, 245, 0.9));
    box-shadow: none;
  }

  html[lang="fr"] body.home-page .home-header .brand-panel::before,
  html[lang="fr"] body.home-page .home-header .brand-panel::after,
  html[lang="fr"] body.home-page.mockup-home-page .home-header .brand-panel::before,
  html[lang="fr"] body.home-page.mockup-home-page .home-header .brand-panel::after {
    display: none;
  }

  html[lang="fr"] body.home-page .home-header .brand-panel img,
  html[lang="fr"] body.home-page.mobile-menu-open .home-header .brand-panel img,
  html[lang="fr"] body.home-page.mockup-home-page .home-header .brand-panel img,
  html[lang="fr"] body.home-page.mockup-home-page.mobile-menu-open .home-header .brand-panel img {
    position: relative;
    top: auto;
    left: auto;
    justify-self: center;
    align-self: center;
    width: clamp(138px, 19vw, 170px);
    max-width: none;
    height: auto;
    margin: 0 auto;
    opacity: 1;
    transform: none;
  }

  html[lang="fr"] body.home-page .home-header .site-nav,
  html[lang="fr"] body.home-page.nav-scrolled .home-header .site-nav,
  html[lang="fr"] body.home-page.mobile-menu-open .home-header .site-nav,
  html[lang="fr"] body.home-page.mockup-home-page .home-header .site-nav,
  html[lang="fr"] body.home-page.mockup-home-page.nav-scrolled .home-header .site-nav,
  html[lang="fr"] body.home-page.mockup-home-page.mobile-menu-open .home-header .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: auto;
    left: 0;
    z-index: 900;
    display: flex;
    width: auto;
    min-height: 76px;
    height: 76px;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: nowrap;
    gap: 12px;
    padding: 12px 22px;
    border: 0;
    border-bottom: 1px solid var(--menu-border);
    background: var(--paper);
    box-shadow: none;
    color: #34302d;
    font-size: clamp(12px, 0.78vw, 13px);
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1;
    text-transform: uppercase;
  }

  html[lang="fr"] body.home-page .home-header .site-nav:not(.is-open) a:not(.nav-cta):not(.language-switch),
  html[lang="fr"] body.home-page .home-header .site-nav:not(.is-open) .nav-whatsapp,
  html[lang="fr"] body.home-page.mockup-home-page .home-header .site-nav:not(.is-open) a:not(.nav-cta):not(.language-switch),
  html[lang="fr"] body.home-page.mockup-home-page .home-header .site-nav:not(.is-open) .nav-whatsapp {
    display: none;
  }

  html[lang="fr"] body.home-page .home-header .site-nav .nav-cta,
  html[lang="fr"] body.home-page.mockup-home-page .home-header .site-nav .nav-cta {
    order: 1;
    width: clamp(132px, 21vw, 168px);
    min-width: 0;
    height: 44px;
    margin: 0;
    padding: 0;
    border-radius: 2px;
    letter-spacing: 0;
  }

  html[lang="fr"] body.home-page .home-header .site-nav .language-switch,
  html[lang="fr"] body.home-page.mockup-home-page .home-header .site-nav .language-switch {
    order: 2;
    width: auto;
    min-width: 48px;
    height: 44px;
    padding: 0 8px;
    border: 0;
    background: transparent;
    box-shadow: none;
    color: inherit;
    letter-spacing: 0;
  }

  html[lang="fr"] body.home-page .home-header .site-nav .language-switch::before,
  html[lang="fr"] body.home-page .home-header .site-nav .language-switch::after,
  html[lang="fr"] body.home-page.mockup-home-page .home-header .site-nav .language-switch::before,
  html[lang="fr"] body.home-page.mockup-home-page .home-header .site-nav .language-switch::after {
    display: none;
    content: none;
  }

  html[lang="fr"] body.home-page .home-header .motif-button,
  html[lang="fr"] body.home-page .home-header .site-nav .motif-button,
  html[lang="fr"] body.home-page.mockup-home-page .home-header .motif-button,
  html[lang="fr"] body.home-page.mockup-home-page .home-header .site-nav .motif-button {
    position: relative;
    display: block;
    order: 3;
    width: 44px;
    min-width: 44px;
    height: 44px;
    border: 1px solid rgba(201, 144, 117, 0.42);
    border-radius: 0;
    background: rgba(255, 250, 245, 0.72);
    opacity: 1;
  }

  html[lang="fr"] body.home-page .home-header .motif-button span,
  html[lang="fr"] body.home-page .home-header .motif-button::before,
  html[lang="fr"] body.home-page .home-header .motif-button::after,
  html[lang="fr"] body.home-page.mockup-home-page .home-header .motif-button span,
  html[lang="fr"] body.home-page.mockup-home-page .home-header .motif-button::before,
  html[lang="fr"] body.home-page.mockup-home-page .home-header .motif-button::after {
    position: absolute;
    left: 10px;
    display: block !important;
    width: 22px;
    height: 2px;
    content: "";
    background: var(--terracotta-dark);
    transform-origin: center;
  }

  html[lang="fr"] body.home-page .home-header .motif-button::before,
  html[lang="fr"] body.home-page.mockup-home-page .home-header .motif-button::before {
    top: 13px;
  }

  html[lang="fr"] body.home-page .home-header .motif-button span,
  html[lang="fr"] body.home-page.mockup-home-page .home-header .motif-button span {
    top: 20px;
  }

  html[lang="fr"] body.home-page .home-header .motif-button::after,
  html[lang="fr"] body.home-page.mockup-home-page .home-header .motif-button::after {
    top: 27px;
  }

  html[lang="fr"] body.home-page .home-header .site-nav.is-open,
  html[lang="fr"] body.home-page.mobile-menu-open .home-header .site-nav.is-open,
  html[lang="fr"] body.home-page.mockup-home-page .home-header .site-nav.is-open,
  html[lang="fr"] body.home-page.mockup-home-page.mobile-menu-open .home-header .site-nav.is-open {
    z-index: 1002;
    position: fixed;
    top: 0;
    right: 0;
    bottom: auto;
    left: 0;
    display: flex;
    width: auto;
    height: auto;
    min-height: 76px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    overflow: visible;
    padding: 12px 22px 18px;
    border: 0;
    border-bottom: 1px solid rgba(226, 198, 181, 0.74);
    background: rgba(255, 250, 245, 0.98);
    box-shadow: 0 18px 42px rgba(76, 48, 34, 0.18);
  }

  html[lang="fr"] body.home-page .home-header .site-nav.is-open .motif-button,
  html[lang="fr"] body.home-page.mockup-home-page .home-header .site-nav.is-open .motif-button {
    position: relative;
    top: auto;
    right: auto;
  }

  html[lang="fr"] body.home-page .home-header .site-nav.is-open .motif-button::before,
  html[lang="fr"] body.home-page.mockup-home-page .home-header .site-nav.is-open .motif-button::before {
    top: 20px;
    transform: rotate(45deg);
  }

  html[lang="fr"] body.home-page .home-header .site-nav.is-open .motif-button span,
  html[lang="fr"] body.home-page.mockup-home-page .home-header .site-nav.is-open .motif-button span {
    opacity: 0;
  }

  html[lang="fr"] body.home-page .home-header .site-nav.is-open .motif-button::after,
  html[lang="fr"] body.home-page.mockup-home-page .home-header .site-nav.is-open .motif-button::after {
    top: 20px;
    transform: rotate(-45deg);
  }

  html[lang="fr"] body.home-page .home-header .site-nav.is-open a:not(.nav-cta):not(.language-switch),
  html[lang="fr"] body.home-page.mockup-home-page .home-header .site-nav.is-open a:not(.nav-cta):not(.language-switch) {
    display: inline-flex;
    width: calc(33.333% - 12px);
    min-width: 0;
    height: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    order: 4;
    padding: 0;
    border: 1px solid rgba(226, 198, 181, 0.74);
    border-radius: 0;
    background: rgba(255, 250, 245, 0.88);
    color: var(--ink-deep);
    font-size: 10px;
    letter-spacing: 0;
  }

  html[lang="fr"] body.home-page .home-header .site-nav.is-open .nav-whatsapp,
  html[lang="fr"] body.home-page.mockup-home-page .home-header .site-nav.is-open .nav-whatsapp {
    gap: 8px;
    flex: 0 0 auto;
    margin: 0;
    box-shadow: none;
  }

  html[lang="fr"] body.home-page .home-header .site-nav.is-open .nav-whatsapp img,
  html[lang="fr"] body.home-page.mockup-home-page .home-header .site-nav.is-open .nav-whatsapp img {
    width: 28px;
    height: 28px;
  }

  html[lang="fr"] body.home-page .home-header .site-nav.is-open .nav-whatsapp-label,
  html[lang="fr"] body.home-page.mockup-home-page .home-header .site-nav.is-open .nav-whatsapp-label {
    display: inline;
  }

  html[lang="fr"] body.home-page .home-header .site-nav.is-open a:not(.nav-cta):not(.language-switch)::before,
  html[lang="fr"] body.home-page .home-header .site-nav.is-open a:not(.nav-cta):not(.language-switch)::after,
  html[lang="fr"] body.home-page.mockup-home-page .home-header .site-nav.is-open a:not(.nav-cta):not(.language-switch)::before,
  html[lang="fr"] body.home-page.mockup-home-page .home-header .site-nav.is-open a:not(.nav-cta):not(.language-switch)::after {
    display: none;
  }
}

/* Keep fixed mobile home navigation outside Safari's offscreen hero clip. */
@media (max-width: 899px) {
  html[lang] body.home-page .hero-grid,
  html[lang="fr"] body.home-page.mockup-home-page .hero-grid {
    z-index: auto;
    overflow: visible;
    isolation: auto;
  }

  html[lang] body.home-page:not(.mobile-menu-open) .brand-panel,
  html[lang] body.home-page:not(.mobile-menu-open) .site-nav:not(.is-open) {
    background: var(--paper);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
  }

  html[lang] body.home-page:not(.mobile-menu-open) .site-nav:not(.is-open) .language-switch,
  html[lang] body.home-page:not(.mobile-menu-open) .site-nav:not(.is-open) .motif-button {
    background: var(--paper);
  }
}

/* Use the homepage's compact footer rhythm across every mobile page. */
@media (max-width: 767px) {
  .rf-contact {
    padding: 0;
  }

  .rf-contact-card {
    padding: 20px 18px;
  }

  .rf-contact-card h2,
  .rf-contact-copy strong {
    margin-bottom: 7px;
  }

  .rf-booking {
    min-height: 96px;
    padding-top: 18px;
    padding-bottom: 24px;
  }

  .rf-bottom-inner {
    min-height: 0;
    gap: 5px;
    padding: 8px 0 10px;
  }

  .rf-copyright,
  .rf-signature {
    font-size: 11px;
    line-height: 1.35;
    letter-spacing: .01em;
  }

  .rf-copyright .rf-rights {
    display: none;
  }

  .rf-legal {
    flex-flow: row wrap;
    gap: 2px 14px;
    max-width: min(100%, 340px);
  }

  .rf-legal a {
    min-height: 24px;
    font-size: 11px;
    line-height: 1.35;
    letter-spacing: .01em;
  }

  .rf-legal a + a:has(.rf-mobile-label)::before {
    width: 3px;
    height: 3px;
    flex: none;
    margin: 0 8px 0 0;
    border-radius: 50%;
    background: rgba(255, 238, 229, 0.58);
    content: "";
  }

  .rf-signature {
    color: rgba(255, 238, 229, 0.72);
    font-size: 10.5px;
  }

  .rf-legal .rf-full-label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    border: 0;
    margin: -1px;
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .rf-legal .rf-mobile-label {
    display: inline;
  }
}

@media (max-width: 374px) {
  .rf-legal {
    gap: 2px 8px;
  }

  .rf-legal a {
    font-size: 10.5px;
  }

  .rf-legal a + a:has(.rf-mobile-label)::before {
    margin-right: 6px;
  }
}

/* Let mobile home room imagery fill the same content rail as the gallery. */
@media (max-width: 767px) {
  html[lang] body.home-page .room-grid {
    justify-items: stretch;
  }

  html[lang] body.home-page .room-grid > .room-card {
    width: 100%;
    max-width: none;
    justify-self: stretch;
  }

  html[lang] body.home-page .room-card-photo,
  html[lang] body.home-page .room-card-photo > picture,
  html[lang] body.home-page .room-card-photo > picture > img {
    width: 100%;
    max-width: none;
  }
}

/* Keep the complete compact header pinned on every non-home mobile page. */
@media (max-width: 899px) {
  body.inner-page:not(.mobile-menu-open) {
    --mobile-header-brand-left: clamp(8px, 3vw, 18px);
    --mobile-header-brand-width: clamp(84px, 27.5vw, 118px);
  }

  body.inner-page:not(.mobile-menu-open) .inner-header {
    padding-top: var(--sticky-nav-offset, 74px);
    grid-template-columns: 1fr;
  }

  body.inner-page:not(.mobile-menu-open) .brand-panel {
    position: fixed;
    top: 0;
    right: auto;
    left: var(--mobile-header-brand-left);
    z-index: 1101;
    display: grid;
    width: var(--mobile-header-brand-width);
    height: var(--sticky-nav-offset, 74px);
    min-height: 0;
    place-items: center;
    overflow: visible;
    padding: 0;
    border: 0;
    background: var(--paper);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
  }

  body.inner-page:not(.mobile-menu-open) .brand-panel::before,
  body.inner-page:not(.mobile-menu-open) .brand-panel::after {
    display: none;
    content: none;
  }

  body.inner-page:not(.mobile-menu-open) .brand-panel img {
    position: relative;
    top: auto;
    left: auto;
    width: clamp(52px, 17.5vw, 72px);
    max-width: none;
    height: auto;
    margin: 0;
    opacity: 1;
    transform: none;
  }

  body.inner-page:not(.mobile-menu-open) .site-nav:not(.is-open) {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1100;
    display: flex;
    width: auto;
    height: var(--sticky-nav-offset, 74px);
    min-height: var(--sticky-nav-offset, 74px);
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(6px, 2vw, 12px);
    padding: 10px clamp(8px, 2.5vw, 22px) 10px
      calc(var(--mobile-header-brand-left) + var(--mobile-header-brand-width) + 4px);
    border-top: 0;
    border-bottom: 1px solid rgba(226, 198, 181, 0.7);
    background: var(--paper);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
  }

  body.inner-page:not(.mobile-menu-open) .site-nav:not(.is-open) .nav-cta {
    flex: 0 0 auto;
    margin-left: 0;
  }

  body.inner-page:not(.mobile-menu-open) .site-nav:not(.is-open) .language-switch,
  body.inner-page:not(.mobile-menu-open) .site-nav:not(.is-open) .motif-button {
    width: 44px;
    min-width: 44px;
    height: 44px;
    min-height: 44px;
    flex: 0 0 44px;
    margin: 0;
    padding: 0;
    background-color: var(--paper);
  }

  body.inner-page:not(.mobile-menu-open) .site-nav:not(.is-open) .motif-button span,
  body.inner-page:not(.mobile-menu-open) .site-nav:not(.is-open) .motif-button::before,
  body.inner-page:not(.mobile-menu-open) .site-nav:not(.is-open) .motif-button::after {
    left: 10px;
    width: 22px;
  }

  body.inner-page:not(.mobile-menu-open) .site-nav:not(.is-open) .motif-button::before {
    top: 13px;
  }

  body.inner-page:not(.mobile-menu-open) .site-nav:not(.is-open) .motif-button span {
    top: 20px;
  }

  body.inner-page:not(.mobile-menu-open) .site-nav:not(.is-open) .motif-button::after {
    top: 27px;
  }

  body.mobile-menu-open .site-nav .language-switch,
  body.mobile-menu-open .inner-page .site-nav .language-switch {
    height: 44px;
    min-height: 44px;
  }
}

/* The Experiences header switches layout at 900px; keep that exact edge pinned. */
@media (min-width: 900px) {
  body.experience-reference-page .site-nav,
  body.experience-reference-page.inner-page .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    left: var(--header-menu-column);
    width: auto;
  }
}
