:root {
  --color-sepia: #f6eadc;
  --color-text: #4a3428;
  --color-sage: #1f6663;
  --color-gurka: #dfc3a4;
  --color-clay: #b65f38;
  --color-saffron: #d99a2b;
  --color-palm: #556b3f;
  --color-line: rgba(74, 52, 40, 0.24);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Mulish", Arial, sans-serif;
  --ease-out: cubic-bezier(0.19, 1, 0.22, 1);
  --header-h: 85px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  overflow-x: hidden;
  background: var(--color-sepia);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 20px;
  letter-spacing: 1px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(182, 95, 56, 0.09) 1px, transparent 1px), linear-gradient(rgba(217, 154, 43, 0.08) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: radial-gradient(circle at 10% 10%, black, transparent 58%);
}

body.is-locked {
  overflow: hidden;
}

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

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

main img[role=button] {
  cursor: zoom-in;
}

button {
  font: inherit;
  color: inherit;
}

main,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-illustrations {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.site-illustrations__item {
  position: absolute;
  width: var(--w);
  height: auto;
  opacity: var(--o, 0.14);
  object-fit: contain;
  filter: saturate(0.9);
  mix-blend-mode: multiply;
  transform: rotate(var(--r, 0deg));
}
.site-illustrations__item--medallion {
  --w: min(23vw, 315px);
  --o: 0.19;
  --r: -7deg;
  top: 2.5%;
  right: 32vw;
}
.site-illustrations__item--tree {
  --w: min(27vw, 390px);
  --o: 0.22;
  --r: 5deg;
  top: 5.5%;
  right: 4vw;
}
.site-illustrations__item--goat {
  --w: min(22vw, 310px);
  --o: 0.23;
  --r: -9deg;
  top: 16%;
  left: 5vw;
}
.site-illustrations__item--cactus {
  --w: min(17vw, 235px);
  --o: 0.23;
  --r: 8deg;
  top: 23%;
  right: 5vw;
}
.site-illustrations__item--tea {
  --w: min(23vw, 320px);
  --o: 0.21;
  --r: -5deg;
  top: 34%;
  left: 8vw;
}
.site-illustrations__item--amlou {
  --w: min(22vw, 310px);
  --o: 0.23;
  --r: 7deg;
  top: 45%;
  right: 12vw;
}
.site-illustrations__item--bread {
  --w: min(24vw, 340px);
  --o: 0.23;
  --r: -3deg;
  top: 56%;
  left: 22vw;
}
.site-illustrations__item--tagine {
  --w: min(22vw, 310px);
  --o: 0.22;
  --r: 5deg;
  top: 66%;
  right: 6vw;
}
.site-illustrations__item--surf {
  --w: min(21vw, 290px);
  --o: 0.22;
  --r: -8deg;
  top: 76%;
  left: 6vw;
}
.site-illustrations__item--oil {
  --w: min(19vw, 270px);
  --o: 0.22;
  --r: 6deg;
  top: 84%;
  right: 13vw;
}
.site-illustrations__item--lantern {
  --w: min(17vw, 245px);
  --o: 0.22;
  --r: 4deg;
  top: 91%;
  right: 8vw;
}
.site-illustrations__item--valley {
  --w: min(34vw, 520px);
  --o: 0.18;
  --r: -2deg;
  top: 72%;
  right: 18vw;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  height: var(--header-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 5vw;
  pointer-events: none;
  background: rgba(246, 234, 220, 0);
  transition: background 0.6s var(--ease-out), box-shadow 0.6s var(--ease-out), backdrop-filter 0.6s var(--ease-out);
}
.site-header::after {
  content: "";
  position: absolute;
  inset: 100% 0 auto;
  height: 24px;
  pointer-events: none;
  background: linear-gradient(rgba(246, 234, 220, 0.56), rgba(246, 234, 220, 0));
  opacity: 0;
  transition: opacity 0.6s var(--ease-out);
}
.site-header.is-scrolled, .site-header.is-open {
  background: rgba(246, 234, 220, 0.82);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(74, 52, 40, 0.12);
}
.site-header.is-scrolled::after, .site-header.is-open::after {
  opacity: 1;
}
.site-header__langs, .site-header__brand, .site-header__toggle {
  pointer-events: auto;
}
.site-header__langs, .site-header__brand {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 17px;
  letter-spacing: 0.85px;
  transition: color 0.6s var(--ease-out), opacity 0.6s var(--ease-out);
}
.site-header__langs {
  justify-self: start;
  display: flex;
  gap: clamp(10px, 1.25vw, 18px);
}
.site-header__langs .is-active {
  border-bottom: 1px solid currentColor;
}
.site-header__brand {
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.site-header__toggle {
  justify-self: end;
  width: 64px;
  height: 46px;
  display: grid;
  align-content: center;
  gap: 8px;
  border: 0;
  background: transparent;
  cursor: pointer;
  outline: none;
}
.site-header__toggle span {
  display: block;
  height: 1px;
  background: var(--color-text);
  transform-origin: center;
  transition: transform 0.8s var(--ease-out), opacity 0.8s var(--ease-out);
}
.site-header__toggle:focus-visible {
  outline: 1px solid var(--color-text);
  outline-offset: 8px;
}
.site-header.is-open .site-header__toggle span:first-child {
  transform: translateY(9px) rotate(16deg);
}
.site-header.is-open .site-header__toggle span:nth-child(2) {
  opacity: 0;
}
.site-header.is-open .site-header__toggle span:last-child {
  transform: translateY(-9px) rotate(-16deg);
}

.menu {
  position: fixed;
  inset: 0;
  z-index: 15;
  background: var(--color-gurka);
  overflow: hidden;
  transform: translateY(-105%);
  transition: transform 1s var(--ease-out);
}
.menu.is-open {
  transform: translateY(0) !important;
}
.menu__image {
  position: absolute;
  top: calc(var(--header-h) + 80px);
  left: 9vw;
  width: min(37vw, 560px);
  height: min(70vh, 700px);
  border-radius: 24px;
  background-image: var(--menu-image);
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: translate3d(-18px, 18px, 0) scale(0.98);
  filter: saturate(0.9);
  mix-blend-mode: multiply;
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out), background-image 0.2s linear;
  pointer-events: none;
}
.menu.has-image .menu__image {
  opacity: 0.22;
  transform: translate3d(0, 0, 0) scale(1);
}
.menu__inner {
  position: relative;
  z-index: 1;
  min-height: 100%;
  padding: 12vh 8vw 6vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 360px);
  gap: clamp(48px, 7vw, 120px);
}
.menu__brand {
  align-self: start;
  font-family: var(--font-display);
  max-width: 100%;
  font-size: clamp(72px, 9vw, 150px);
  line-height: 0.82;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}
.menu__contact {
  display: grid;
  gap: 12px;
  align-content: start;
  font-size: 16px;
  text-transform: uppercase;
}
.menu__contact a {
  width: fit-content;
  overflow-wrap: anywhere;
}
.menu__list {
  grid-column: 2;
  align-self: start;
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 7vh 0 0;
  padding: 0;
  font-family: var(--font-display);
  font-size: clamp(34px, 3vw, 48px);
  line-height: 0.95;
  text-transform: uppercase;
}
.menu__list a {
  transition: color 0.5s var(--ease-out), padding-left 0.5s var(--ease-out);
}
.menu__list a:hover {
  color: var(--color-clay);
  padding-left: 0.35em;
}
.menu__list a:focus-visible {
  color: var(--color-clay);
  outline: 1px solid currentColor;
  outline-offset: 6px;
}

.hero {
  position: relative;
  min-height: 1550px;
  padding-top: 108px;
  overflow: hidden;
}
.hero__ornament, .hero__decal, .hero__tree {
  position: absolute;
  height: auto;
  object-fit: contain;
  pointer-events: none;
  mix-blend-mode: multiply;
}
.hero__ornament {
  right: 7vw;
  bottom: 90px;
  width: min(18vw, 240px);
  opacity: 0.22;
}
.hero__decal {
  right: 34vw;
  top: 118px;
  width: min(13vw, 170px);
  opacity: 0.13;
}
.hero__tree {
  right: 3vw;
  top: 245px;
  width: min(16vw, 210px);
  opacity: 0.16;
}
.hero__content {
  width: min(80vw, 1120px);
  margin-left: 10vw;
}
.hero__title {
  margin: 0 0 54px;
  display: grid;
  justify-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: clamp(54px, 6.3vw, 104px);
  font-weight: 400;
  line-height: 0.88;
  text-align: center;
  text-transform: uppercase;
}
.hero__copy, .hero__note {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(19px, 1.35vw, 22px);
  line-height: 1.68;
}
.hero__copy {
  max-width: 520px;
}
.hero__note {
  position: absolute;
  top: 1325px;
  left: 10vw;
  width: 80vw;
  margin: 0;
  font-size: 25.92px;
  line-height: 50.4px;
  text-transform: uppercase;
}
.hero__cta {
  width: fit-content;
  min-height: 48px;
  margin-top: 34px;
  border: 1px solid var(--color-text);
  display: inline-grid;
  place-items: center;
  padding: 0 18px;
  color: var(--color-text);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 0.35s var(--ease-out), color 0.35s var(--ease-out);
}
.hero__cta:hover, .hero__cta:focus-visible {
  background: var(--color-text);
  color: var(--color-sepia);
}
.hero__portrait {
  position: absolute;
  top: 850px;
  left: 5vw;
  width: 27.5vw;
  max-width: 396px;
  height: 396px;
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
}
.hero__landscape {
  position: absolute;
  top: 500px;
  left: 37vw;
  width: 58vw;
  height: 650px;
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--color-sage);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.section-separator {
  width: min(50vw, 680px);
  margin: 24px auto 80px;
  opacity: 0.34;
  pointer-events: none;
}
.section-separator img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.section-separator--wide {
  width: min(42vw, 640px);
  margin-top: -40px;
  margin-bottom: 10px;
  opacity: 0.24;
}

.rooms {
  height: 9000px;
  margin-top: 144px;
  position: relative;
}
.rooms__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: grid;
  align-items: center;
}
.rooms__divider, .rooms__goat, .rooms__cactus {
  position: absolute;
  z-index: 1;
  height: auto;
  object-fit: contain;
  pointer-events: none;
  mix-blend-mode: multiply;
}
.rooms__divider {
  right: 9vw;
  top: 9vh;
  width: min(28vw, 430px);
  opacity: 0.16;
}
.rooms__goat {
  left: 6vw;
  bottom: 8vh;
  width: min(13vw, 170px);
  opacity: 0.18;
}
.rooms__cactus {
  right: 4vw;
  bottom: 11vh;
  width: min(10vw, 130px);
  opacity: 0.18;
}
.rooms__intro {
  position: absolute;
  z-index: 2;
  top: 11vh;
  left: 10vw;
  width: 220px;
  pointer-events: none;
}
.rooms__intro h2 {
  display: none;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(34px, 3.3vw, 58px);
  font-weight: 300;
  line-height: 1.06;
  text-transform: uppercase;
}
.rooms__track {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12vw;
  width: max-content;
  padding: 0 14vw 0 42vw;
  transform: translate3d(var(--track-x, 0px), 0, 0);
  transition: transform 0.18s linear;
  will-change: transform;
}
.rooms__progress {
  position: absolute;
  left: 10vw;
  right: 10vw;
  bottom: 60px;
  height: 1px;
  background: var(--color-line);
}
.rooms__progress span {
  display: block;
  width: calc(var(--track-progress, 0) * 100%);
  height: 100%;
  background: var(--color-text);
}

.room-card {
  width: min(32vw, 460px);
  display: grid;
  gap: 34px;
}
.room-card--wide {
  width: min(48vw, 690px);
}
.room-card img {
  height: 64vh;
  min-height: 500px;
  border-radius: 24px;
}
.room-card__body {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 34px;
}
.room-card__kicker {
  margin: 0;
  color: var(--color-sage);
  font-size: 13px;
  text-transform: uppercase;
}
.room-card h3 {
  margin: 0 0 18px;
  color: var(--color-sage);
  font-size: clamp(22px, 1.8vw, 28px);
  font-weight: 300;
  line-height: 1.3;
  text-transform: uppercase;
}
.room-card ul {
  grid-column: 2;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 15px;
  line-height: 1.8;
}
.room-card__description {
  grid-column: 2;
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.65;
}
.room-card__button {
  grid-column: 2;
  width: fit-content;
  min-height: 44px;
  margin-top: 20px;
  border: 1px solid var(--color-text);
  display: inline-grid;
  place-items: center;
  padding: 0 15px;
  color: var(--color-text);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.35s var(--ease-out), color 0.35s var(--ease-out);
}
.room-card__button:hover, .room-card__button:focus-visible {
  background: var(--color-text);
  color: var(--color-sepia);
}

.touches {
  position: relative;
  min-height: 540px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7vw;
  align-items: center;
  padding: 72px 10vw 108px;
  background: var(--color-gurka);
  overflow: hidden;
}
.touches__ornament, .touches__accent, .touches__amlou, .touches__bread, .touches__tagine {
  position: absolute;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
  pointer-events: none;
}
.touches__ornament {
  right: 4vw;
  bottom: -90px;
  width: min(24vw, 280px);
  opacity: 0.2;
}
.touches__accent {
  left: 5vw;
  top: 18px;
  width: min(14vw, 180px);
  opacity: 0.16;
}
.touches__amlou {
  right: 38vw;
  bottom: 8px;
  width: min(12vw, 155px);
  opacity: 0.18;
}
.touches__bread {
  left: 34vw;
  bottom: 24px;
  width: min(13vw, 175px);
  opacity: 0.18;
}
.touches__tagine {
  right: 8vw;
  top: 32px;
  width: min(12vw, 160px);
  opacity: 0.16;
}
.touches__media {
  height: 390px;
}
.touches__media img {
  border-radius: 24px;
}
.touches h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(34px, 2.35vw, 42px);
  font-weight: 300;
  line-height: 1.25;
  text-transform: uppercase;
}
.touches p:last-child {
  max-width: 550px;
  margin: 32px 0 0;
  font-size: 17px;
  line-height: 1.8;
}

.around {
  position: relative;
  padding: 130px 8vw 150px;
  overflow: hidden;
}
.around__heading {
  width: min(760px, 84vw);
  margin: 0 0 72px 2vw;
}
.around__heading h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(44px, 5.4vw, 88px);
  font-weight: 300;
  line-height: 0.98;
  text-transform: uppercase;
}
.around__heading p:last-child {
  max-width: 620px;
  margin: 28px 0 0;
  font-size: 18px;
  line-height: 1.8;
}
.around__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px;
  align-items: end;
}

.around-card {
  margin: 0;
  grid-column: span 4;
}
.around-card--large {
  grid-column: span 8;
}
.around-card img {
  height: 440px;
  border-radius: 24px;
}
.around-card--large img {
  height: 620px;
}
.around-card figcaption {
  margin-top: 16px;
  color: var(--color-sage);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.gallery {
  position: relative;
  overflow: hidden;
  padding: 144px 0 132px;
}
.gallery__divider, .gallery__surf, .gallery__oil {
  position: absolute;
  height: auto;
  object-fit: contain;
  pointer-events: none;
  mix-blend-mode: multiply;
}
.gallery__divider {
  left: 50%;
  top: 42px;
  width: min(38vw, 520px);
  opacity: 0.16;
  transform: translateX(-50%);
}
.gallery__surf {
  right: 5vw;
  top: 86px;
  width: min(12vw, 170px);
  opacity: 0.17;
}
.gallery__oil {
  left: 5vw;
  bottom: 30px;
  width: min(11vw, 145px);
  opacity: 0.16;
}
.gallery__heading {
  position: relative;
  z-index: 1;
  width: min(520px, 80vw);
  margin-left: 10vw;
}
.gallery__heading h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 76px);
  font-weight: 300;
  line-height: 0.95;
  text-transform: uppercase;
}
.gallery__rail {
  position: relative;
  z-index: 1;
  margin-top: 70px;
  display: flex;
  gap: 32px;
  overflow-x: auto;
  padding: 0 10vw 22px;
  scroll-snap-type: x mandatory;
}
.gallery__rail img {
  flex: 0 0 min(58vw, 760px);
  height: 480px;
  border-radius: 24px;
  scroll-snap-align: center;
}

.faq {
  position: relative;
  overflow: hidden;
  padding: 70px 15vw 120px;
}
.faq__accent, .faq__lantern {
  position: absolute;
  height: auto;
  object-fit: contain;
  pointer-events: none;
  mix-blend-mode: multiply;
}
.faq__accent {
  right: 6vw;
  top: 22px;
  width: min(13vw, 165px);
  opacity: 0.11;
}
.faq__lantern {
  right: 13vw;
  bottom: 18px;
  width: min(10vw, 130px);
  opacity: 0.15;
}
.faq__heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 6vw;
  margin-bottom: 50px;
}
.faq__heading h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(38px, 4.3vw, 68px);
  font-weight: 300;
  text-transform: uppercase;
}

.faq-item {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--color-line);
}
.faq-item:last-child {
  border-bottom: 1px solid var(--color-line);
}
.faq-item__question {
  width: 100%;
  padding: 30px 0;
  border: 0;
  background: transparent;
  color: var(--color-sage);
  text-align: left;
  font-size: clamp(21px, 1.8vw, 27px);
  font-weight: 300;
  text-transform: uppercase;
  cursor: pointer;
}
.faq-item__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.8s var(--ease-out);
}
.faq-item__answer p {
  overflow: hidden;
  margin: 0;
  max-width: 680px;
  font-size: 17px;
  line-height: 1.8;
}
.faq-item.is-open .faq-item__answer {
  grid-template-rows: 1fr;
  padding-bottom: 30px;
}

.booking {
  position: relative;
  overflow: hidden;
  padding: 88px 10vw;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 7vw;
  align-items: start;
  border-top: 1px solid var(--color-line);
  background: rgba(255, 252, 247, 0.22);
  color: var(--color-text);
}
.booking > *:not(.booking__ornament) {
  position: relative;
  z-index: 1;
}
.booking__ornament {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(620px, 70vw);
  height: auto;
  opacity: 0.18;
  transform: translate(-50%, -50%);
  filter: saturate(0.95) contrast(1.02);
  mix-blend-mode: screen;
  pointer-events: none;
}
.booking h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(42px, 5.4vw, 82px);
  font-weight: 300;
  line-height: 0.98;
  text-transform: uppercase;
}
.booking__intro > p:not(.eyebrow) {
  max-width: 520px;
  margin: 26px 0 0;
  font-size: 17px;
  line-height: 1.8;
}
.booking__link {
  color: var(--color-sage);
  font-size: 18px;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}
.booking__links {
  margin-top: 34px;
  display: grid;
  gap: 12px;
}

.booking-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 26px;
  border: 1px solid rgba(74, 52, 40, 0.16);
  background: rgba(246, 234, 220, 0.72);
}
.booking-form label {
  display: grid;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.booking-form__wide, .booking-form__status, .booking-form__button {
  grid-column: 1/-1;
}
.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border: 1px solid rgba(74, 52, 40, 0.24);
  border-radius: 0;
  background: rgba(255, 252, 247, 0.72);
  color: var(--color-text);
  padding: 13px 14px;
  font: inherit;
  font-size: 15px;
  letter-spacing: 0.02em;
}
.booking-form textarea {
  resize: vertical;
}
.booking-form__status {
  min-height: 18px;
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
}
.booking-form__status[data-state=success] {
  color: var(--color-sage);
}
.booking-form__status[data-state=error] {
  color: var(--color-clay);
}
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: 1px solid var(--color-clay);
  outline-offset: 2px;
}
.booking-form__button {
  min-height: 52px;
  border: 1px solid var(--color-text);
  background: var(--color-text);
  color: var(--color-sepia);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.booking-form__button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.site-footer {
  min-height: 180px;
  display: grid;
  place-content: center;
  gap: 12px;
  padding: 40px 10vw;
  text-align: center;
  font-size: 13px;
  text-transform: uppercase;
}
.site-footer p {
  margin: 0;
}

.whatsapp {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 30;
  font-family: var(--font-body);
  display: flex;
  align-items: center;
  gap: 12px;
}
.whatsapp__tag {
  padding: 9px 12px;
  border: 1px solid rgba(74, 52, 40, 0.16);
  border-radius: 999px;
  background: rgba(246, 234, 220, 0.94);
  box-shadow: 0 12px 34px rgba(74, 52, 40, 0.18);
  color: var(--color-text);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}
.whatsapp__bubble {
  width: 64px;
  height: 64px;
  border: 1px solid rgba(246, 234, 220, 0.5);
  border-radius: 50%;
  background: #1f8f5f;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 18px 42px rgba(74, 52, 40, 0.28);
  cursor: pointer;
  animation: whatsapp-pulse 2.4s ease-out infinite;
  transition: transform 0.45s var(--ease-out), background 0.45s var(--ease-out);
}
.whatsapp__bubble span {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.whatsapp__bubble:hover {
  transform: translateY(-3px);
  background: #16784f;
  animation-play-state: paused;
}
.whatsapp__bubble svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
  display: block;
}
.whatsapp__panel {
  position: absolute;
  right: 0;
  bottom: 82px;
  width: min(390px, 100vw - 32px);
  padding: 22px;
  border: 1px solid rgba(74, 52, 40, 0.14);
  border-radius: 24px;
  background: rgba(246, 234, 220, 0.96);
  box-shadow: 0 24px 70px rgba(74, 52, 40, 0.24);
  backdrop-filter: blur(14px);
  opacity: 0;
  transform: translateY(16px) scale(0.98);
  pointer-events: none;
  transition: opacity 0.45s var(--ease-out), transform 0.45s var(--ease-out);
}
.whatsapp.is-open .whatsapp__panel {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.whatsapp.is-open .whatsapp__tag {
  opacity: 0;
  transform: translateX(8px);
  pointer-events: none;
}
.whatsapp__header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 18px;
  margin-bottom: 16px;
}
.whatsapp__header .eyebrow {
  margin-bottom: 0;
}
.whatsapp__close {
  width: 32px;
  height: 32px;
  border: 1px solid var(--color-line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}
.whatsapp__step {
  display: none;
}
.whatsapp__step.is-active {
  display: grid;
  gap: 14px;
}
.whatsapp label {
  display: grid;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.whatsapp input {
  width: 100%;
  border: 1px solid rgba(74, 52, 40, 0.22);
  border-radius: 0;
  background: rgba(255, 252, 247, 0.65);
  color: var(--color-text);
  padding: 13px 14px;
  font: inherit;
  font-size: 15px;
  letter-spacing: 0.02em;
}
.whatsapp input:focus {
  outline: 1px solid var(--color-clay);
  outline-offset: 2px;
}
.whatsapp__calendar {
  display: grid;
  gap: 10px;
}
.whatsapp__calendar-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: var(--color-text);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.whatsapp__calendar-controls {
  display: grid;
  grid-template-columns: 30px 1fr 30px;
  align-items: center;
  min-width: 210px;
  border: 1px solid rgba(74, 52, 40, 0.16);
  background: rgba(255, 252, 247, 0.5);
}
.whatsapp__calendar-controls button {
  height: 32px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
}
.whatsapp__calendar-controls strong {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.whatsapp__weekdays, .whatsapp__days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.whatsapp__weekdays {
  color: var(--color-sage);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}
.whatsapp__day {
  aspect-ratio: 1;
  border: 1px solid rgba(74, 52, 40, 0.14);
  background: rgba(255, 252, 247, 0.52);
  color: var(--color-text);
  cursor: pointer;
  font-size: 12px;
}
.whatsapp__day:hover:not(:disabled) {
  border-color: var(--color-clay);
  color: var(--color-clay);
}
.whatsapp__day:disabled {
  opacity: 0.28;
  cursor: default;
}
.whatsapp__day.is-muted {
  opacity: 0.45;
}
.whatsapp__day.is-range {
  background: rgba(47, 119, 116, 0.13);
  border-color: rgba(47, 119, 116, 0.26);
}
.whatsapp__day.is-selected {
  background: var(--color-text);
  border-color: var(--color-text);
  color: var(--color-sepia);
}
.whatsapp__calendar-status, .whatsapp__error {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
}
.whatsapp__calendar-status {
  color: var(--color-sage);
}
.whatsapp__error {
  color: var(--color-clay);
}
.whatsapp__summary {
  margin: 0;
  display: grid;
  gap: 12px;
}
.whatsapp__summary div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(74, 52, 40, 0.14);
  padding-bottom: 10px;
}
.whatsapp__summary dt {
  color: var(--color-sage);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.whatsapp__summary dd {
  margin: 0;
  text-align: right;
  font-size: 15px;
}
.whatsapp__actions {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 10px;
}
.whatsapp__button, .whatsapp__ghost {
  min-height: 48px;
  border: 1px solid var(--color-text);
  display: inline-grid;
  place-items: center;
  padding: 0 16px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}
.whatsapp__button {
  background: var(--color-text);
  color: var(--color-sepia);
}
.whatsapp__ghost {
  background: transparent;
  color: var(--color-text);
}

body.is-locked .whatsapp {
  display: none;
}

@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 18px 42px rgba(74, 52, 40, 0.28), 0 0 0 0 rgba(31, 143, 95, 0.42);
  }
  70% {
    box-shadow: 0 18px 42px rgba(74, 52, 40, 0.28), 0 0 0 18px rgba(31, 143, 95, 0);
  }
  100% {
    box-shadow: 0 18px 42px rgba(74, 52, 40, 0.28), 0 0 0 0 rgba(31, 143, 95, 0);
  }
}
.image-lightbox {
  width: min(1120px, 100vw - 32px);
  max-height: calc(100dvh - 32px);
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--color-sepia);
}
.image-lightbox::backdrop {
  background: rgba(35, 24, 18, 0.78);
}
.image-lightbox img {
  width: 100%;
  height: auto;
  max-height: calc(100dvh - 32px);
  border-radius: 16px;
  object-fit: contain;
}
.image-lightbox button {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 1;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(246, 234, 220, 0.55);
  border-radius: 50%;
  background: rgba(74, 52, 40, 0.72);
  color: var(--color-sepia);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(42px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--slow {
  transition-delay: 0.16s;
}
.reveal--slower {
  transition-delay: 0.28s;
}

@media (min-width: 768px) and (max-width: 1100px) {
  .site-header {
    padding: 0 5vw;
  }
  .site-header__brand {
    width: 1px;
    height: 1px;
  }
  .menu {
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  .menu__inner {
    min-height: auto;
    padding: 120px 8vw 48px;
    display: block;
  }
  .menu__brand {
    width: min(680px, 82vw);
    font-size: clamp(70px, 12vw, 118px);
    line-height: 0.86;
  }
  .menu__contact {
    margin-top: 34px;
    max-width: 440px;
  }
  .menu__list {
    margin-top: 48px;
    font-size: clamp(40px, 7vw, 62px);
  }
}
@media (max-width: 767px) {
  :root {
    --header-h: 72px;
  }
  body {
    font-size: 17px;
  }
  .site-illustrations__item {
    opacity: calc(var(--o, 0.14) * 0.8);
  }
  .site-illustrations__item--medallion {
    --w: 82px;
    top: 2%;
    right: 24px;
  }
  .site-illustrations__item--tree {
    display: none;
  }
  .site-illustrations__item--goat {
    --w: 86px;
    top: 23%;
    left: 18px;
  }
  .site-illustrations__item--cactus {
    --w: 72px;
    top: 31%;
    right: 16px;
  }
  .site-illustrations__item--tea {
    --w: 92px;
    top: 42%;
    left: 18px;
  }
  .site-illustrations__item--amlou {
    --w: 100px;
    top: 52%;
    right: 18px;
  }
  .site-illustrations__item--bread {
    --w: 108px;
    top: 61%;
    left: 28px;
  }
  .site-illustrations__item--tagine {
    --w: 92px;
    top: 70%;
    right: 20px;
  }
  .site-illustrations__item--surf {
    --w: 88px;
    top: 79%;
    left: 20px;
  }
  .site-illustrations__item--oil {
    --w: 72px;
    top: 87%;
    right: 32px;
  }
  .site-illustrations__item--lantern {
    --w: 70px;
    top: 94%;
    right: 18px;
  }
  .site-illustrations__item--valley {
    --w: 180px;
    top: 74%;
    right: 22px;
  }
  .site-header {
    padding: 0 18px;
    grid-template-columns: minmax(92px, 1fr) minmax(0, auto) minmax(58px, 1fr);
  }
  .site-header__brand {
    width: 1px;
    height: 1px;
  }
  .site-header__langs {
    gap: 9px;
    font-size: 14px;
    letter-spacing: 0.56px;
  }
  .menu {
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  .menu__image {
    top: calc(var(--header-h) + 34px);
    left: 24px;
    width: calc(100% - 48px);
    height: 260px;
    opacity: 0;
  }
  .menu.has-image .menu__image {
    opacity: 0.14;
  }
  .menu__inner {
    min-height: auto;
    padding: 100px 24px 34px;
    display: block;
  }
  .menu__brand {
    width: 100%;
    font-size: clamp(44px, 15vw, 68px);
    line-height: 0.86;
  }
  .menu__contact {
    margin-top: 28px;
    font-size: 14px;
  }
  .menu__list {
    margin-top: 34px;
    gap: 6px;
    font-size: clamp(32px, 10vw, 42px);
    line-height: 0.9;
  }
  .hero {
    min-height: 0;
    padding: 92px 24px 54px;
    display: flex;
    flex-direction: column;
  }
  .hero__content {
    width: auto;
    margin: 0;
    display: contents;
  }
  .hero__title {
    order: 1;
    margin-bottom: 34px;
    font-size: clamp(48px, 15vw, 74px);
    line-height: 0.9;
  }
  .hero__copy {
    order: 2;
  }
  .hero__cta {
    order: 3;
    margin-top: 28px;
  }
  .hero__copy, .hero__note {
    font-size: 18px;
    line-height: 1.62;
  }
  .hero__note {
    order: 5;
    position: static;
    width: auto;
    margin-top: 34px;
    font-size: 18px;
    line-height: 1.8;
  }
  .hero__portrait {
    display: none;
  }
  .hero__landscape {
    order: 4;
    position: static;
    width: 100%;
    height: 210px;
    margin-top: 38px;
  }
  .hero__ornament {
    right: -58px;
    bottom: 20px;
    width: 170px;
    opacity: 0.16;
  }
  .hero__decal {
    right: 22px;
    top: 74px;
    width: 82px;
    opacity: 0.11;
  }
  .hero__tree {
    display: none;
  }
  .rooms {
    height: auto;
    margin-top: 0;
    padding: 54px 0 0;
    background: rgba(47, 119, 116, 0.2);
  }
  .rooms__sticky {
    position: relative;
    height: auto;
    overflow: visible;
    display: block;
  }
  .rooms__intro {
    position: static;
    width: auto;
    padding: 0 24px 34px;
  }
  .rooms__intro h2 {
    display: block;
  }
  .rooms__track {
    width: auto;
    padding: 0;
    display: grid;
    gap: 0;
    transform: none !important;
  }
  .rooms__progress {
    display: none;
  }
  .rooms__divider {
    left: 24px;
    right: auto;
    top: 20px;
    width: 160px;
    opacity: 0.13;
  }
  .rooms__goat, .rooms__cactus {
    display: none;
  }
  .room-card,
  .room-card--wide {
    width: 100%;
    padding: 34px 24px 40px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: start;
  }
  .room-card:nth-child(even),
  .room-card--wide:nth-child(even) {
    background: var(--color-sepia);
  }
  .room-card img,
  .room-card--wide img {
    grid-column: 1;
    grid-row: 1;
    height: min(56vw, 250px);
    min-height: 0;
    border-radius: 16px;
  }
  .room-card__body,
  .room-card--wide__body {
    display: block;
    grid-column: 1;
    grid-row: 2;
  }
  .room-card ul,
  .room-card--wide ul {
    margin-top: 18px;
  }
  .room-card__description, .room-card__button,
  .room-card--wide__description,
  .room-card--wide__button {
    grid-column: auto;
  }
  .touches {
    grid-template-columns: 1fr;
    padding: 70px 24px;
  }
  .touches__ornament {
    width: 185px;
    opacity: 0.13;
  }
  .touches__accent {
    left: auto;
    right: 18px;
    top: 18px;
    width: 92px;
    opacity: 0.13;
  }
  .touches__amlou, .touches__bread, .touches__tagine {
    display: none;
  }
  .touches__media {
    height: 320px;
  }
  .section-separator {
    width: 250px;
    margin: 12px auto 52px;
    opacity: 0.26;
  }
  .section-separator--wide {
    width: 280px;
    margin: 20px auto 0;
  }
  .around {
    padding: 78px 24px 90px;
  }
  .around__heading {
    width: auto;
    margin: 0 0 40px;
  }
  .around__heading h2 {
    font-size: clamp(36px, 12vw, 54px);
  }
  .around__heading p:last-child {
    font-size: 16px;
  }
  .around__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .around-card,
  .around-card--large {
    grid-column: auto;
  }
  .around-card img,
  .around-card--large img {
    height: 330px;
    border-radius: 18px;
  }
  .whatsapp {
    right: 12px;
    bottom: 12px;
    gap: 9px;
  }
  .whatsapp__tag {
    display: none;
  }
  .whatsapp__bubble {
    width: 52px;
    height: 52px;
  }
  .whatsapp__bubble svg {
    width: 29px;
    height: 29px;
  }
  .whatsapp__panel {
    position: fixed;
    inset: calc(var(--header-h) + 10px) 12px 86px;
    width: auto;
    padding: 18px;
    overflow-y: auto;
    border-radius: 18px;
  }
  .whatsapp__calendar-top {
    display: grid;
    gap: 8px;
  }
  .whatsapp__calendar-controls {
    min-width: 0;
    width: 100%;
  }
  .gallery {
    padding: 90px 0;
  }
  .gallery__divider {
    width: 260px;
    top: 32px;
    opacity: 0.12;
  }
  .gallery__surf {
    right: 18px;
    top: 54px;
    width: 82px;
    opacity: 0.13;
  }
  .gallery__oil {
    display: none;
  }
  .gallery__heading {
    margin-left: 24px;
  }
  .gallery__rail {
    padding: 0 24px 18px;
  }
  .gallery__rail img {
    flex-basis: 82vw;
    height: 360px;
  }
  .faq {
    padding: 40px 24px 90px;
  }
  .faq__accent {
    right: -36px;
    top: 8px;
    width: 120px;
    opacity: 0.08;
  }
  .faq__lantern {
    display: none;
  }
  .faq__heading {
    display: block;
  }
  .booking {
    padding: 70px 24px 130px;
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .booking__ornament {
    width: 118vw;
    opacity: 0.14;
  }
  .booking h2 {
    font-size: clamp(42px, 14vw, 62px);
  }
  .booking-form {
    grid-template-columns: 1fr;
    padding: 18px;
  }
  body.is-booking-visible .whatsapp {
    display: none;
  }
}
@media (max-width: 359px) {
  .site-header {
    grid-template-columns: 1fr auto 1fr;
  }
}
