@font-face {
  font-display: swap;
  font-family: "Geometria";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/geometria-light-webfont.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "Geometria";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/geometria-medium.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "Geometria";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/geometria-medium.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "LM Roman";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/lmroman10-regular-webfont.woff") format("woff");
}

@font-face {
  font-display: swap;
  font-family: "LM Roman Dunhill";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/lmromandunh10-regular.woff2") format("woff2");
}

:root {
  --white: #ffffff;
  --milk: #f6f4ef;
  --mist: #eae6e0;
  --stone: #d7d2cb;
  --taupe: #8c8279;
  --earth: #6e6259;
  --ink: #302c28;
  --sage: #6f7d63;
  --sage-dark: #4b5842;
  --wine: #9c4f47;
  --sky: #dfe9ec;
  --line: rgba(110, 98, 89, 0.22);
  --shadow: 0 22px 80px rgba(48, 44, 40, 0.12);
  --header: 90px;
  color-scheme: light;
}

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

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: var(--header);
}

body {
  margin: 0;
  background: var(--white);
  color: var(--earth);
  font-family: "Geometria", "Avenir Next", Arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.64;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--sage-dark);
  outline-offset: 4px;
}

p {
  font-family: "Geometria", "Avenir Next", Arial, sans-serif;
  margin: 0 0 1rem;
  font-weight: 500;
  line-height: 1.62;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--ink);
  font-family: "LM Roman Dunhill", "LM Roman", Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.01;
}

h1 {
  font-size: 3.9rem;
}

h2 {
  font-size: 3rem;
}

h3 {
  font-size: 1.55rem;
}

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

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 100;
  transform: translateY(-160%);
  background: var(--ink);
  color: var(--white);
  padding: 0.75rem 1rem;
}

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

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

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

.narrow {
  width: min(100% - 40px, 880px);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 0 28px;
  color: var(--white);
  transition: background-color 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-solid {
  background: rgba(255, 255, 255, 0.96);
  color: var(--earth);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(18px);
}

.nav-open .site-header {
  background: transparent;
  color: var(--white);
  box-shadow: none;
  backdrop-filter: none;
}

.header-left,
.header-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-right {
  justify-content: flex-end;
}

.menu-toggle {
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  background: rgba(234, 230, 224, 0.18);
  color: currentColor;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background-color 220ms ease, box-shadow 220ms ease, color 220ms ease;
}

.menu-toggle__lines {
  width: 28px;
  display: grid;
  gap: 6px;
}

.menu-toggle__lines span {
  display: block;
  height: 2px;
  background: currentColor;
  transform-origin: center;
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-header:not(.is-solid) .menu-toggle {
  background: rgba(25, 23, 21, 0.46);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.nav-open .menu-toggle__lines span:first-child {
  transform: translateY(7px) rotate(45deg);
}

.nav-open .menu-toggle__lines span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

.header-link,
.header-pill {
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  text-transform: lowercase;
  transition: opacity 180ms ease, transform 180ms ease, background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.header-link:hover,
.header-pill:hover {
  opacity: 0.78;
}

.header-link--subtle {
  opacity: 0.92;
}

.site-header:not(.is-solid) .header-link {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 999px;
  background: rgba(25, 23, 21, 0.42);
  color: var(--white);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.2);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(14px);
}

.header-pill {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid currentColor;
  border-radius: 999px;
}

.site-header:not(.is-solid) .header-pill {
  border-color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
}

.header-pill--booking {
  padding: 0 22px;
  border-color: transparent;
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(48, 44, 40, 0.2);
}

.site-header:not(.is-solid) .header-pill--booking {
  background: rgba(255, 255, 255, 0.98);
  color: var(--ink);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
}

.site-header.is-solid .header-pill--booking {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.site-menu {
  position: fixed;
  inset: 0;
  z-index: 45;
  display: none;
  padding: 14px;
}

.nav-open .site-menu {
  display: block;
}

.site-menu__backdrop {
  position: absolute;
  inset: 14px;
  border-radius: 38px;
  background: rgba(174, 166, 156, 0.97);
}

.site-menu__inner {
  position: relative;
  z-index: 1;
  height: calc(100svh - 28px);
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  padding: 110px 64px 42px;
  border-radius: 38px;
  color: var(--white);
  overflow: hidden;
}

.site-menu__side {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid rgba(255, 255, 255, 0.32);
  padding-right: 44px;
}

.site-menu__logo {
  display: inline-block;
  width: 210px;
  height: 118px;
  overflow: hidden;
}

.site-menu__small {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-menu__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0) invert(1);
}

.site-menu__small a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  color: var(--white);
  transition: border-color 180ms ease, transform 180ms ease;
}

.site-menu__small a:hover {
  border-color: rgba(255, 255, 255, 0.78);
  transform: translateY(-2px);
}

.site-menu__small svg {
  width: 18px;
  height: 18px;
  display: block;
}

.site-menu__nav {
  display: grid;
  align-content: center;
  gap: 22px;
}

.site-menu__nav a {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 10px 0;
  color: var(--white);
}

.site-menu__nav a::after {
  content: "";
  height: 1px;
  background: rgba(255, 255, 255, 0.36);
}

.site-menu__index,
.site-menu__hint {
  font-size: 0.78rem;
  text-transform: uppercase;
}

.site-menu__title {
  font-family: "LM Roman Dunhill", "LM Roman", Georgia, "Times New Roman", serif;
  font-size: 3rem;
  line-height: 1;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero__image,
.hero__video,
.page-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__video {
  transition: filter 700ms ease, opacity 420ms ease;
}

.hero__video:not(.is-loaded) {
  filter: saturate(0.9) contrast(0.96);
  opacity: 0.72;
}

.hero__video.is-loaded {
  opacity: 1;
}

.hero-video,
.hero-slider,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-video {
  overflow: hidden;
  background: var(--ink);
}

.hero-slide {
  margin: 0;
  opacity: 0;
  transition: opacity 1200ms ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.06);
}

.hero-slide.is-active img {
  animation: slowZoom 7600ms ease both;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(25, 23, 21, 0.2), rgba(25, 23, 21, 0.28) 44%, rgba(25, 23, 21, 0.82)),
    linear-gradient(90deg, rgba(25, 23, 21, 0.42), rgba(25, 23, 21, 0.08) 60%);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(100% - 40px, 1200px);
  margin: 0 auto;
  padding: 0 0 74px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
}

.hero__title {
  max-width: 860px;
  color: var(--white);
  font-size: 5rem;
}

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

.hero__lead {
  max-width: 440px;
  color: rgba(255, 255, 255, 0.93);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.58;
}

.hero__title,
.hero__lead,
.hero .eyebrow,
.scroll-cue,
.page-hero h1,
.page-hero p,
.page-hero .eyebrow,
.media-slide figcaption,
.room-card__text,
.cta__inner,
.instagram-post__meta {
  text-shadow: 0 2px 26px rgba(0, 0, 0, 0.58);
}

.slider-controls {
  position: absolute;
  right: 34px;
  bottom: 34px;
  z-index: 3;
  display: flex;
  gap: 10px;
}

.slider-controls button {
  width: 34px;
  height: 34px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.slider-controls button::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  margin: auto;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
}

.slider-controls [data-slider-prev]::before {
  transform: rotate(-135deg);
}

.slider-controls [data-slider-next]::before {
  transform: rotate(45deg);
}

.slider-dots {
  position: absolute;
  left: 34px;
  bottom: 34px;
  z-index: 3;
  display: flex;
  gap: 8px;
}

.slider-dots button {
  width: 34px;
  height: 2px;
  border: 0;
  background: rgba(255, 255, 255, 0.42);
  padding: 0;
  cursor: pointer;
}

.slider-dots button.is-active {
  background: var(--white);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 36px;
  z-index: 2;
  transform: translateX(-50%);
  display: grid;
  justify-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 0.75rem;
  text-transform: uppercase;
}

.scroll-cue::before {
  content: "";
  width: 1px;
  height: 42px;
  background: currentColor;
}

.statement {
  padding: 92px 0 110px;
  background: var(--white);
}

.statement__kicker,
.eyebrow {
  margin: 0 0 18px;
  color: var(--taupe);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
}

.statement__title {
  max-width: 1050px;
  font-size: 4.6rem;
}

.statement__body {
  max-width: 760px;
  margin-top: 34px;
  margin-left: auto;
  color: var(--earth);
  font-size: 1.28rem;
  font-weight: 500;
  line-height: 1.58;
}

.section.group-highlight {
  padding: 0;
  background: var(--white);
}

.group-highlight__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  gap: 72px;
  align-items: end;
  padding: 70px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.group-highlight h2 {
  max-width: 650px;
}

.group-highlight h2 + p {
  margin-top: 28px;
}

.group-highlight p {
  max-width: 610px;
  color: var(--earth);
}

.group-highlight__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.group-highlight__facts article {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--milk);
  padding: 26px;
}

.group-highlight__facts span {
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
}

.group-highlight__facts p {
  margin: 32px 0 0;
  color: var(--earth);
  font-size: 0.98rem;
}

.strip-image {
  position: relative;
  height: 46vh;
  min-height: 340px;
  overflow: hidden;
}

.strip-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.08);
}

.section {
  padding: 110px 0;
  position: relative;
}

.section--mist {
  background: var(--mist);
}

.section--stone {
  background: var(--stone);
}

.section--sky {
  background: var(--sky);
}

.editorial {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 80px;
  align-items: center;
}

.editorial--reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.editorial--reverse .editorial__media {
  order: 2;
}

.editorial__media {
  position: relative;
  min-height: 580px;
  overflow: hidden;
}

.editorial__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.08);
}

.editorial__text {
  max-width: 540px;
}

.editorial__text h2,
.section-head h2 {
  margin-bottom: 28px;
}

.editorial__text p {
  color: var(--earth);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button,
.text-button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: lowercase;
}

.button {
  padding: 0 20px;
  border: 1px solid currentColor;
  border-radius: 999px;
}

.button--accent {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
  box-shadow: 0 18px 36px rgba(48, 44, 40, 0.14);
}

.button::after,
.text-button::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}

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

.button,
.text-button {
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease, background-color 180ms ease;
}

@media (hover: hover) {
  .button:hover,
  .text-button:hover {
    transform: translateY(-2px);
  }

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

  .button--accent:hover {
    background: var(--sage-dark);
    border-color: var(--sage-dark);
    color: var(--white);
  }

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

  .text-button:hover {
    color: var(--sage-dark);
  }

  .text-button.button--light:hover {
    color: var(--white);
    opacity: 0.82;
  }
}

.section--slider {
  padding: 0;
}

.media-slider {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.media-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 1000ms ease;
}

.media-slide.is-active {
  opacity: 1;
}

.media-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.08);
}

.media-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(25, 23, 21, 0.12), rgba(25, 23, 21, 0.24) 44%, rgba(25, 23, 21, 0.82)),
    linear-gradient(90deg, rgba(25, 23, 21, 0.42), rgba(25, 23, 21, 0.05) 62%);
  pointer-events: none;
}

.media-slide figcaption {
  position: absolute;
  left: 7.75vw;
  bottom: 64px;
  z-index: 2;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.94);
  font-family: "Geometria", "Avenir Next", Arial, sans-serif;
  font-size: 0.94rem;
}

.media-slide figcaption strong {
  display: block;
  margin-bottom: 10px;
  color: var(--white);
  font-family: "LM Roman Dunhill", "LM Roman", Georgia, "Times New Roman", serif;
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 1;
}

.section-head {
  max-width: 820px;
  margin-bottom: 58px;
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.room-intro {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 72px;
  align-items: end;
}

.room-intro__title {
  max-width: 760px;
  font-size: 4.4rem;
}

.room-intro__copy {
  max-width: 620px;
}

.room-services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}

.room-service {
  min-height: 250px;
  background: var(--white);
  padding: 32px;
}

.room-service__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.room-service__icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: var(--sage-dark);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.room-service h3 {
  margin-bottom: 12px;
}

.room-service p {
  color: var(--earth);
}

.room-suite-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.room-suite {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  min-height: 560px;
  background: var(--white);
}

.room-suite:nth-child(even) .room-suite__media {
  order: 2;
}

.room-suite__media {
  position: relative;
  overflow: hidden;
}

.room-suite__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.08);
}

.room-suite__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 58px;
}

.room-suite__meta {
  margin-bottom: 18px;
  color: var(--taupe);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
}

.room-suite__content h3 {
  margin-bottom: 24px;
  font-size: 3rem;
}

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

.room-suite__features li {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 12px;
  color: var(--earth);
  font-size: 0.82rem;
  font-weight: 600;
}

.room-showcase {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.55);
}

.room-card {
  min-height: 520px;
  position: relative;
  overflow: hidden;
  color: var(--white);
}

.room-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 900ms ease;
}

.room-card:hover img {
  transform: scale(1.04);
}

.room-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(25, 23, 21, 0.12), rgba(25, 23, 21, 0.28) 42%, rgba(25, 23, 21, 0.86));
}

.room-card__text {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 34px;
}

.room-card h3 {
  color: var(--white);
  font-size: 2.2rem;
}

.room-card p {
  max-width: 430px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.93);
}

.room-stack {
  display: grid;
  gap: 1px;
}

.room-stack .room-card {
  min-height: 259px;
}

.feature-grid,
.destination-grid,
.contact-grid,
.faq-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
}

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

.feature,
.destination,
.faq-item,
.contact-panel,
.contact-form {
  background: var(--white);
  padding: 34px;
}

.feature__mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.feature__mark svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: var(--sage-dark);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.feature h3,
.destination h3,
.faq-item h3 {
  margin-bottom: 14px;
}

.feature p,
.destination p,
.faq-item p {
  color: var(--earth);
}

.feature,
.destination,
.faq-item,
.contact-links a {
  transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

@media (hover: hover) {
  .feature:hover,
  .destination:hover,
  .faq-item:hover,
  .contact-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 48px rgba(48, 44, 40, 0.08);
  }
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.experience-card {
  display: grid;
  grid-template-rows: 390px auto;
  background: var(--white);
}

.experience-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.08);
}

.experience-card__text {
  padding: 30px 0 0;
}

.experience-card h3 {
  margin-bottom: 12px;
}

.instagram-preview {
  background: var(--white);
  overflow: hidden;
}

.instagram-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 44px;
  align-items: end;
  margin-bottom: 54px;
}

.instagram-head h2 {
  max-width: 720px;
  margin-bottom: 20px;
}

.instagram-head p:not(.eyebrow) {
  max-width: 560px;
  color: var(--earth);
}

.instagram-profile {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
}

.instagram-profile span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--taupe);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: lowercase;
  white-space: nowrap;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 230px;
  gap: 1px;
  background: var(--line);
}

.instagram-post {
  position: relative;
  display: block;
  overflow: hidden;
  min-width: 0;
  background: var(--ink);
  color: var(--white);
}

.instagram-post--wide {
  grid-column: span 2;
  grid-row: span 2;
}

.instagram-post img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform 900ms ease, filter 260ms ease;
}

.instagram-post::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(48, 44, 40, 0.02), rgba(48, 44, 40, 0.68));
  opacity: 0.86;
  transition: opacity 260ms ease;
}

.instagram-post:hover img {
  filter: saturate(1.06);
  transform: scale(1.09);
}

.instagram-post:hover::after {
  opacity: 1;
}

.instagram-post__meta {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.25;
  text-transform: lowercase;
}

.instagram-post__meta span:last-child {
  color: rgba(255, 255, 255, 0.72);
}

.cta {
  min-height: 540px;
  position: relative;
  display: grid;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  background: var(--ink);
}

.cta img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.08);
}

.cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(25, 23, 21, 0.76), rgba(25, 23, 21, 0.42) 58%, rgba(25, 23, 21, 0.26)),
    rgba(25, 23, 21, 0.26);
}

.cta__inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.cta h2,
.cta .eyebrow {
  color: var(--white);
}

.cta p {
  color: rgba(255, 255, 255, 0.93);
  font-size: 1.08rem;
  line-height: 1.6;
}

.page-hero {
  position: relative;
  min-height: 76svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(25, 23, 21, 0.2), rgba(25, 23, 21, 0.28) 44%, rgba(25, 23, 21, 0.82)),
    linear-gradient(90deg, rgba(25, 23, 21, 0.48), rgba(25, 23, 21, 0.08) 64%);
}

.page-hero__content {
  position: relative;
  z-index: 1;
  padding: calc(var(--header) + 100px) 0 72px;
}

.page-hero h1 {
  max-width: 900px;
  color: var(--white);
  font-size: 4.2rem;
}

.page-hero p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 1.08rem;
  line-height: 1.6;
}

.page-hero .eyebrow {
  color: var(--white);
}

.page-hero__image {
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.08);
}

.split-list {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 72px;
  align-items: start;
}

.text-list {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.text-list article {
  background: var(--white);
  padding: 28px;
}

.text-list span,
.destination span {
  display: block;
  margin-bottom: 12px;
  color: var(--taupe);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
}

.gallery-band {
  display: grid;
  grid-template-columns: 1fr 0.75fr 1fr;
  gap: 20px;
  align-items: end;
}

.gallery-band img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.08);
}

.gallery-band img:nth-child(2) {
  height: 420px;
}

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

.contact-grid {
  grid-template-columns: 0.82fr 1.18fr;
  align-items: stretch;
}

.contact-links {
  display: grid;
  gap: 1px;
  margin: 28px 0;
  background: var(--line);
}

.contact-links a {
  display: block;
  background: var(--milk);
  padding: 18px;
}

.contact-links span {
  display: block;
  color: var(--taupe);
  font-size: 0.75rem;
  text-transform: uppercase;
}

.contact-links strong {
  display: block;
  color: var(--ink);
  font-weight: 500;
}

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

label {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: lowercase;
}

input,
select,
textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  color: var(--earth);
  padding: 10px 0;
  outline: 0;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--ink);
}

.form-status,
.small-note {
  color: var(--taupe);
  font-size: 0.88rem;
}

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

/* Booking engine */
.booking-page {
  background: var(--milk);
}

.booking-page:not(.nav-open) .site-header {
  background: rgba(48, 44, 40, 0.94);
  color: var(--white);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.booking-page:not(.nav-open) .menu-toggle {
  background: transparent;
  color: var(--white);
  box-shadow: none;
  backdrop-filter: none;
}

.booking-page:not(.nav-open) .header-link {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--white);
  box-shadow: none;
  text-shadow: none;
  backdrop-filter: none;
}

.booking-page:not(.nav-open) .header-pill {
  border-color: rgba(255, 255, 255, 0.7);
  background: transparent;
  color: var(--white);
  box-shadow: none;
  backdrop-filter: none;
}

.booking-page:not(.nav-open) .header-pill--booking {
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.booking-section {
  overflow-x: hidden;
  background: linear-gradient(180deg, var(--milk), var(--white));
  padding: calc(var(--header) + 36px) 0 76px;
}

.booking-engine {
  display: grid;
  gap: 28px;
  min-width: 0;
}

.booking-engine__head {
  max-width: 760px;
  margin-inline: auto;
  text-align: left;
}

.booking-engine__head h1 {
  font-size: 2.45rem;
}

.booking-engine__head p:not(.eyebrow) {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--earth);
  font-size: 1.08rem;
  line-height: 1.6;
}

.booking-engine__frame {
  width: 100%;
  min-width: 0;
  overflow: hidden;
  border: 0;
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 22px 70px rgba(48, 44, 40, 0.12);
}

.booking-engine__frame iframe {
  display: block;
  width: 100%;
  height: 1100px;
  border: 0;
  background: var(--white);
}

.booking-engine__fallback {
  margin: 0;
  text-align: center;
  font-family: "Geometria", "Avenir Next", Arial, sans-serif;
  font-size: 0.9rem;
}

.booking-engine__fallback a {
  color: var(--sage-dark);
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}

@media (min-width: 761px) {
  .booking-section {
    padding: calc(var(--header) + 54px) 0 92px;
  }

  .booking-engine__head {
    text-align: center;
  }

  .booking-engine__head h1 {
    font-size: 4.2rem;
  }

  .booking-engine__head p:not(.eyebrow) {
    margin-inline: auto;
  }

  .booking-engine__frame iframe {
    height: 900px;
  }
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 60px;
}

.footer-brand {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--white);
  font-family: "LM Roman Dunhill", "LM Roman", Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.footer-brand img {
  width: 220px;
  height: 136px;
  filter: brightness(0) invert(1);
  object-fit: cover;
  object-position: center;
  opacity: 1;
}

.footer-booking {
  margin-top: 24px;
  border-color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.16);
}

.site-footer h2 {
  margin-bottom: 18px;
  color: var(--white);
  font-family: "Geometria", "Avenir Next", Arial, sans-serif;
  font-size: 0.86rem;
  font-weight: 600;
  text-transform: uppercase;
}

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

.footer-nav a {
  transition: color 180ms ease, opacity 180ms ease;
}

.footer-nav a:hover {
  color: var(--white);
  opacity: 1;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 58px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.85rem;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-socials a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: var(--white);
  opacity: 0.82;
  transition: border-color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.footer-socials a:hover {
  border-color: rgba(255, 255, 255, 0.74);
  opacity: 1;
  transform: translateY(-2px);
}

.footer-socials svg {
  width: 17px;
  height: 17px;
  display: block;
}

.mobile-actions {
  display: none;
}

@supports (content-visibility: auto) {
  .statement,
  .section,
  .site-footer {
    content-visibility: auto;
    contain-intrinsic-size: 760px;
  }
}

.js .reveal {
  transform: translateY(24px);
  opacity: 0;
  transition: transform 700ms ease, opacity 700ms ease;
}

.js .reveal.is-visible {
  transform: none;
  opacity: 1;
}

.js .photo-reveal {
  clip-path: inset(10% 0 10% 0);
  opacity: 0;
  transition:
    clip-path 980ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 760ms ease;
  transition-delay: var(--photo-reveal-delay, 0ms);
  will-change: clip-path, opacity;
}

.js .photo-reveal:not(img) {
  transform: translateY(34px) scale(0.985);
  transition:
    clip-path 980ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 760ms ease,
    transform 980ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: clip-path, opacity, transform;
}

.js .photo-reveal.is-photo-visible {
  clip-path: inset(0);
  opacity: 1;
}

.js .photo-reveal.is-photo-visible:not(img) {
  transform: none;
}

.nav-open .site-menu__nav a {
  animation: menuItemIn 460ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.nav-open .site-menu__nav a:nth-child(2) {
  animation-delay: 45ms;
}

.nav-open .site-menu__nav a:nth-child(3) {
  animation-delay: 90ms;
}

.nav-open .site-menu__nav a:nth-child(4) {
  animation-delay: 135ms;
}

.nav-open .site-menu__nav a:nth-child(5) {
  animation-delay: 180ms;
}

.nav-open .site-menu__nav a:nth-child(6) {
  animation-delay: 225ms;
}

@keyframes menuItemIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slowZoom {
  from {
    transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.04);
  }

  to {
    transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.1);
  }
}

@media (min-width: 1180px) {
  .room-stack .room-card__text {
    padding: 24px;
  }
}

@media (max-width: 1080px) {
  h1,
  .hero__title {
    font-size: 4rem;
  }

  h2,
  .statement__title,
  .page-hero h1 {
    font-size: 3.2rem;
  }

  .header-link {
    display: none;
  }

  .editorial,
  .editorial--reverse,
  .split-list,
  .contact-grid,
  .group-highlight__inner {
    grid-template-columns: 1fr;
  }

  .editorial--reverse .editorial__media {
    order: 0;
  }

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

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

  .room-suite:nth-child(even) .room-suite__media {
    order: 0;
  }

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

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

  .experience-card {
    grid-template-rows: 430px auto;
  }

  .instagram-head {
    grid-template-columns: 1fr;
  }

  .instagram-profile {
    justify-content: flex-start;
  }

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

  .instagram-post:nth-child(6) {
    grid-column: span 2;
  }

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

  .site-menu__inner {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 104px 34px 34px;
  }

  .site-menu__side {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.32);
    padding: 0 0 22px;
  }
}

@media (max-width: 760px) {
  :root {
    --header: 74px;
  }

  body {
    padding-bottom: calc(84px + env(safe-area-inset-bottom));
  }

  h1,
  .hero__title {
    font-size: 3rem;
  }

  h2,
  .statement__title,
  .page-hero h1 {
    font-size: 2.35rem;
  }

  h3 {
    font-size: 1.35rem;
  }

  .container,
  .narrow {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    padding: 0 14px;
    grid-template-columns: 1fr 1fr;
  }

  .header-left,
  .header-right {
    gap: 10px;
  }

  .header-pill {
    display: none;
  }

  .header-link--subtle {
    display: none;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .site-header .header-right .header-link[href^="tel:"] {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 84px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 0;
    white-space: nowrap;
  }

  .site-header .header-right .header-link[href^="tel:"]::before {
    content: "chiama";
    font-size: 0.76rem;
    font-weight: 600;
    line-height: 1;
  }

  .site-header.is-solid .header-right .header-link[href^="tel:"] {
    border: 1px solid rgba(110, 98, 89, 0.2);
    background: rgba(255, 255, 255, 0.96);
    color: var(--earth);
    box-shadow: 0 8px 22px rgba(48, 44, 40, 0.08);
  }

  .booking-page .site-header .header-right .header-link[href^="tel:"] {
    border: 1px solid rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    box-shadow: none;
  }

  .hero__content {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-bottom: 112px;
  }

  .hero__lead {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.58;
  }

  .scroll-cue {
    left: auto;
    right: 18px;
    bottom: 100px;
    transform: none;
    font-size: 0;
  }

  .scroll-cue::before {
    height: 54px;
    opacity: 0.84;
  }

  .slider-controls {
    right: 18px;
    bottom: 20px;
  }

  .slider-dots {
    left: 18px;
    bottom: 22px;
  }

  .statement {
    padding: 70px 0;
  }

  .statement__body {
    margin-top: 24px;
    margin-left: 0;
    font-size: 1.12rem;
  }

  .section {
    padding: 72px 0;
  }

  .editorial,
  .editorial--reverse {
    gap: 36px;
  }

  .editorial__media {
    min-height: 420px;
  }

  .editorial__media,
  .room-card,
  .experience-card,
  .gallery-band img {
    border-radius: 8px;
  }

  .feature-grid,
  .destination-grid,
  .faq-grid,
  .form-row,
  .group-highlight__facts {
    grid-template-columns: 1fr;
  }

  .group-highlight__inner {
    gap: 34px;
    padding: 54px 0;
  }

  .group-highlight__facts article {
    border: 1px solid var(--line);
    min-height: 0;
    padding: 24px;
  }

  .gallery-band {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-inline: 0;
    padding: 0;
    overflow: visible;
    scroll-snap-type: none;
  }

  .gallery-band img,
  .gallery-band img:nth-child(2) {
    width: 100%;
    height: 300px;
    scroll-snap-align: none;
  }

  .media-slider {
    min-height: 540px;
  }

  .media-slide figcaption {
    left: 24px;
    right: 24px;
    bottom: 70px;
    max-width: none;
  }

  .media-slide figcaption strong,
  .room-suite__content h3 {
    font-size: 2.1rem;
  }

  .room-intro {
    gap: 28px;
  }

  .room-intro__title {
    font-size: 2.35rem;
  }

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

  .room-service {
    min-height: 0;
    padding: 24px;
  }

  .room-suite {
    min-height: 0;
  }

  .room-suite__media {
    min-height: 330px;
  }

  .room-suite__content {
    padding: 28px 24px;
  }

  .site-menu {
    padding: 8px;
  }

  .site-menu__backdrop {
    inset: 8px;
    border-radius: 26px;
  }

  .site-menu__inner {
    height: calc(100svh - 16px);
    padding: 86px 24px 24px;
    border-radius: 26px;
    overflow: auto;
  }

  .site-menu__logo {
    width: 156px;
    height: 88px;
  }

  .site-menu__nav a {
    grid-template-columns: auto 1fr;
    gap: 14px;
  }

  .site-menu__nav a::after,
  .site-menu__hint {
    display: none;
  }

  .site-menu__title {
    font-size: 2.05rem;
  }

  .page-hero {
    min-height: 70svh;
  }

  .page-hero__content {
    padding-bottom: 52px;
  }

  .room-card,
  .room-stack .room-card {
    min-height: 390px;
  }

  .room-showcase,
  .room-stack {
    gap: 12px;
    background: transparent;
  }

  .room-card__text,
  .feature,
  .destination,
  .faq-item,
  .contact-panel,
  .contact-form {
    padding: 24px;
  }

  .experience-card {
    grid-template-rows: 280px auto;
    scroll-snap-align: none;
  }

  .experience-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-inline: 0;
    padding: 0;
    overflow: visible;
    scroll-snap-type: none;
  }

  .instagram-head {
    gap: 24px;
    margin-bottom: 34px;
  }

  .instagram-profile {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .instagram-profile .button {
    grid-column: 1 / -1;
  }

  .instagram-profile span,
  .instagram-profile .button {
    justify-content: center;
  }

  .instagram-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 300px;
  }

  .instagram-post--wide {
    grid-column: auto;
    grid-row: auto;
  }

  .instagram-post:nth-child(6) {
    grid-column: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    justify-items: center;
    text-align: center;
  }

  .footer-brand,
  .footer-brand img,
  .footer-booking {
    margin-inline: auto;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-bottom {
    display: grid;
    justify-items: center;
    text-align: center;
  }

  .mobile-actions {
    position: fixed;
    inset: auto 14px calc(14px + env(safe-area-inset-bottom));
    z-index: 44;
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr) 56px;
    gap: 10px;
    pointer-events: none;
  }

  .mobile-actions a {
    --mobile-action-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 12h13M13 7l5 5-5 5' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    min-height: 56px;
    display: grid;
    place-items: center;
    pointer-events: auto;
    border: 1px solid rgba(110, 98, 89, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--ink);
    box-shadow: 0 18px 54px rgba(48, 44, 40, 0.18);
    backdrop-filter: blur(18px);
    transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
  }

  .mobile-actions a:active {
    transform: translateY(1px) scale(0.98);
  }

  .mobile-actions .mobile-actions__primary {
    grid-template-columns: 18px auto;
    justify-content: center;
    gap: 8px;
    padding: 0 18px;
    background: rgba(75, 88, 66, 0.96);
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: lowercase;
  }

  .mobile-actions .mobile-actions__primary--book {
    background: rgba(48, 44, 40, 0.96);
  }

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

  .mobile-actions a::before {
    content: "";
    width: 18px;
    height: 18px;
    background: currentColor;
    -webkit-mask: var(--mobile-action-icon) center / contain no-repeat;
    mask: var(--mobile-action-icon) center / contain no-repeat;
  }

  .mobile-actions .mobile-actions__icon::before {
    width: 21px;
    height: 21px;
  }

  .mobile-actions .mobile-actions__icon--call {
    --mobile-action-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 4l2.2 4.7-1.8 1.4c1.2 2.4 3.1 4.2 5.5 5.5l1.4-1.8L20 16v3.2c0 .6-.4 1-1 1C10.6 20.2 3.8 13.4 3.8 5c0-.6.4-1 1-1H8z' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  }

  .mobile-actions .mobile-actions__primary--whatsapp {
    --mobile-action-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.5 18.5l.9-3A7 7 0 1 1 9 18.3l-3.5.2z' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M9 9.4c.8 2 2.1 3.3 4 4l1-.9 1.5.7c-.2 1-.8 1.5-1.7 1.5-2.5 0-5.7-3.1-5.7-5.6 0-.9.5-1.5 1.4-1.7l.8 1.5-1.3.5z' fill='black'/%3E%3C/svg%3E");
  }

  .mobile-actions .mobile-actions__primary--book {
    --mobile-action-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 5h10a2 2 0 0 1 2 2v12l-3-2-3 2-3-2-3 2V7a2 2 0 0 1 2-2z' fill='none' stroke='black' stroke-width='1.8' stroke-linejoin='round'/%3E%3Cpath d='M9 9h6M9 13h4' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
  }

  .mobile-actions .mobile-actions__icon--email {
    --mobile-action-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.5 7.5h15v10h-15z' fill='none' stroke='black' stroke-width='1.8' stroke-linejoin='round'/%3E%3Cpath d='m5 8 7 5 7-5' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  }

  .mobile-actions .mobile-actions__icon--request {
    --mobile-action-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 5h12v14H6z' fill='none' stroke='black' stroke-width='1.8' stroke-linejoin='round'/%3E%3Cpath d='M9 9h6M9 12h6M9 15h3' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
  }

  .js .photo-reveal,
  .js .photo-reveal:not(img) {
    clip-path: inset(0);
    transform: translateY(18px) scale(0.992);
    transition: opacity 620ms ease, transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .js .photo-reveal.is-photo-visible {
    transform: none;
  }
}
