:root {
  --ink: #17211d;
  --forest: #16352d;
  --forest-dark: #0d2520;
  --paper: #f4f0e8;
  --paper-light: #faf8f3;
  --clay: #bd5538;
  --gold: #bca574;
  --line: rgba(23, 33, 29, 0.18);
  --serif: "Noto Serif", Georgia, serif;
  --sans: "Be Vietnam Pro", Arial, sans-serif;
  --script: "Heritage Script", cursive;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body.no-scroll {
  overflow: hidden;
}

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

h1,
h2,
h3 {
  font-family: var(--serif);
}

.menu-overlay {
  font-family: var(--sans);
}

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

button {
  border: 0;
}

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

img {
  display: block;
}

.brand-logo {
  height: auto;
  max-width: 100%;
}

.brand-logo--on-dark {
  filter: brightness(0) invert(1);
}

.site-logo__on-dark.brand-logo--on-dark {
  filter: none;
}

.amenity-icon {
  align-items: center;
  display: inline-flex;
  font-style: normal;
  justify-content: center;
}

.amenity-icon::before { content: "+"; }
.amenity-icon--wifi::before { content: "⌁"; }
.amenity-icon--aircon::before { content: "❄"; }
.amenity-icon--city_view::before { content: "▥"; }
.amenity-icon--window::before { content: "▦"; }
.amenity-icon--balcony::before { content: "⌑"; }
.amenity-icon--bathtub::before { content: "♨"; }
.amenity-icon--shower::before { content: "≋"; }
.amenity-icon--bed::before { content: "▰"; }
.amenity-icon--breakfast::before { content: "☕"; }
.amenity-icon--kitchen::before { content: "⌂"; }
.amenity-icon--fridge::before { content: "▣"; }
.amenity-icon--coffee::before { content: "◉"; }
.amenity-icon--tv::before { content: "▤"; }
.amenity-icon--projector::before { content: "▱"; }
.amenity-icon--speaker::before { content: "♪"; }
.amenity-icon--workspace::before { content: "▧"; }
.amenity-icon--wardrobe::before { content: "▥"; }
.amenity-icon--hairdryer::before { content: "≈"; }
.amenity-icon--washer::before { content: "◎"; }
.amenity-icon--parking::before { content: "P"; }
.amenity-icon--elevator::before { content: "⇅"; }
.amenity-icon--pool::before { content: "≋"; }
.amenity-icon--gym::before { content: "◇"; }
.amenity-icon--spa::before { content: "♧"; }
.amenity-icon--reception::before { content: "◷"; }
.amenity-icon--security::before { content: "⛨"; }
.amenity-icon--pet::before { content: "♡"; }
.amenity-icon--smoking::before { content: "≀"; }

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

::selection {
  background: var(--clay);
  color: white;
}

.section-shell {
  margin-inline: auto;
  max-width: 1560px;
  padding-inline: clamp(24px, 5vw, 84px);
}

.eyebrow {
  align-items: center;
  display: flex;
  font-size: 11px;
  font-weight: 600;
  gap: 12px;
  letter-spacing: 0.19em;
  margin: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  background: currentColor;
  content: "";
  height: 1px;
  width: 34px;
}

.text-link {
  align-items: center;
  border-bottom: 1px solid currentColor;
  display: inline-flex;
  font-size: 12px;
  font-weight: 600;
  gap: 22px;
  letter-spacing: 0.1em;
  padding-bottom: 8px;
  text-transform: uppercase;
  transition: gap 240ms ease, opacity 240ms ease;
}

.text-link:hover {
  gap: 30px;
  opacity: 0.72;
}

.text-link svg {
  height: 18px;
  width: 18px;
}

.text-link--light {
  color: white;
}

[data-reveal].reveal-pending {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 800ms ease, transform 900ms cubic-bezier(0.2, 0.7, 0.2, 1);
  transition-delay: var(--delay, 0ms);
}

[data-reveal].reveal-pending.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Header */
.site-header {
  align-items: center;
  color: white;
  display: grid;
  grid-template-columns: auto 1fr auto;
  height: 64px;
  left: 0;
  padding: 0 clamp(24px, 4.5vw, 76px);
  position: fixed;
  right: 0;
  top: 0;
  transition: background-color 280ms ease, color 280ms ease, height 280ms ease, box-shadow 280ms ease;
  z-index: 60;
}

.site-header--solid {
  background: rgba(250, 248, 243, 0.96);
  box-shadow: 0 1px 0 rgba(23, 33, 29, 0.1);
  color: var(--ink);
  height: 64px;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.logo {
  align-items: center;
  display: inline-flex;
  gap: 11px;
  justify-self: start;
  width: max-content;
}

.logo__mark {
  align-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  display: flex;
  font-family: var(--sans);
  font-size: 25px;
  font-style: italic;
  height: 40px;
  justify-content: center;
  line-height: 1;
  padding-right: 2px;
  width: 40px;
}

.logo__words {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.logo__words strong {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.logo__words small {
  font-size: 7px;
  letter-spacing: 0.26em;
  white-space: nowrap;
}

.logo--light {
  color: white;
}

.desktop-nav {
  align-items: center;
  display: flex;
  gap: clamp(15px, 1.7vw, 26px);
  justify-self: end;
  margin-right: clamp(14px, 1.6vw, 26px);
}

.desktop-nav a,
.desktop-nav button {
  background: transparent;
  color: currentColor;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  padding: 8px 0;
  position: relative;
  white-space: nowrap;
}

.desktop-nav a::after,
.desktop-nav button::after {
  background: currentColor;
  bottom: -8px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
  width: 100%;
}

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

.header-actions {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-self: end;
}

.language-button,
.menu-button {
  background: transparent;
  color: currentColor;
  cursor: pointer;
}

.language-button {
  font-size: 10px;
  letter-spacing: 0.12em;
  padding: 10px 0;
}

.language-button span {
  opacity: 0.55;
}

.header-login-button {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  color: currentColor;
  cursor: pointer;
  display: flex;
  font-size: 14px;
  font-weight: 500;
  gap: 7px;
  min-height: 38px;
  padding: 7px 9px;
  transition: background-color 220ms ease, color 220ms ease;
}

.site-header--solid .header-login-button {
  background: rgba(23, 33, 29, 0.05);
}

.header-login-button:hover {
  background: white;
  color: var(--clay);
}

.site-header--solid .header-login-button:hover {
  background: var(--forest);
  color: white;
}

.header-login-button svg {
  height: 19px;
  width: 19px;
}

.menu-button {
  display: block;
  height: 40px;
  padding: 9px 0 9px 10px;
  width: 38px;
}

.menu-button span {
  background: currentColor;
  display: block;
  height: 1px;
  margin-left: auto;
  transition: width 200ms ease;
  width: 26px;
}

.menu-button span + span {
  margin-top: 8px;
  width: 18px;
}

.menu-button:hover span + span {
  width: 26px;
}

/* Hero */
.hero {
  background: var(--forest-dark);
  color: white;
  height: max(760px, 100svh);
  min-height: 760px;
  overflow: hidden;
  position: relative;
}

.hero-slide {
  inset: 0;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  transition: opacity 1100ms ease;
}

.hero-slide picture {
  inset: 0;
  position: absolute;
}

.hero-slide--active {
  opacity: 1;
  z-index: 1;
}

.hero-slide__image {
  object-fit: cover;
  transform: scale(1.035);
  transition: transform 8s ease;
}

.hero-slide--active .hero-slide__image {
  transform: scale(1);
}

.hero-slide__veil {
  background:
    linear-gradient(90deg, rgba(7, 21, 17, 0.76) 0%, rgba(7, 21, 17, 0.4) 42%, rgba(7, 21, 17, 0.06) 76%),
    linear-gradient(0deg, rgba(5, 18, 14, 0.65) 0%, transparent 44%);
  inset: 0;
  position: absolute;
}

.hero__content {
  left: clamp(30px, 8vw, 132px);
  max-width: 730px;
  position: absolute;
  top: 46%;
  transform: translateY(-50%);
  z-index: 3;
}

.hero__eyebrow {
  animation: heroCopyIn 650ms ease both;
  color: rgba(255, 255, 255, 0.84);
  margin-bottom: 24px;
}

.hero h1 {
  animation: heroCopyIn 750ms 70ms ease both;
  font-family: var(--serif);
  font-size: clamp(62px, 6.5vw, 112px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1.2;
  margin: 0;
}

.hero h1 span {
  display: block;
}

.hero h1 span:last-child {
  font-style: italic;
  margin-left: clamp(20px, 5vw, 76px);
}

.hero__description {
  animation: heroCopyIn 750ms 140ms ease both;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.5;
  margin: 30px 0 26px;
  max-width: 480px;
}

.hero__content .text-link {
  animation: heroCopyIn 750ms 210ms ease both;
}

@keyframes heroCopyIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero__rail {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: absolute;
  right: clamp(26px, 4.5vw, 74px);
  top: 42%;
  z-index: 4;
}

.hero__count {
  font-family: var(--sans);
  font-size: 12px;
  font-style: italic;
}

.hero__progress {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero__progress button {
  background: rgba(255, 255, 255, 0.36);
  cursor: pointer;
  height: 24px;
  padding: 0;
  position: relative;
  width: 1px;
}

.hero__progress button.active {
  background: white;
  height: 48px;
}

.hero__arrows {
  bottom: 132px;
  display: flex;
  gap: 8px;
  position: absolute;
  right: clamp(26px, 4.5vw, 74px);
  z-index: 4;
}

.hero__arrows button,
.slider-arrows button {
  align-items: center;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  color: white;
  cursor: pointer;
  display: flex;
  height: 46px;
  justify-content: center;
  transition: background-color 220ms ease, color 220ms ease;
  width: 46px;
}

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

.hero__arrows svg,
.slider-arrows svg {
  height: 20px;
  width: 20px;
}

.hero__booking {
  bottom: 0;
  left: 50%;
  max-width: 1360px;
  padding: 0 clamp(24px, 4vw, 64px);
  position: absolute;
  transform: translateX(-50%);
  width: 100%;
  z-index: 5;
}

.hero__mobile-booking {
  display: none;
}

.booking-panel {
  align-items: stretch;
  background: rgba(250, 248, 243, 0.98);
  color: var(--ink);
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr auto;
  min-height: 92px;
}

.booking-field {
  align-items: center;
  border-right: 1px solid var(--line);
  cursor: pointer;
  display: flex;
  gap: 13px;
  min-width: 0;
  padding: 17px clamp(15px, 1.6vw, 28px);
}

.booking-field > svg {
  color: var(--clay);
  flex: 0 0 auto;
  height: 20px;
  width: 20px;
}

.booking-field span {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 7px;
  min-width: 0;
}

.booking-field small {
  color: #727772;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.booking-field input,
.booking-field select {
  appearance: none;
  background: transparent;
  border: 0;
  color: var(--ink);
  cursor: pointer;
  font-family: var(--sans);
  font-size: 14px;
  min-width: 0;
  outline: 0;
  padding: 0;
  width: 100%;
}

.booking-field input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.38;
}

.booking-submit {
  align-items: center;
  background: var(--clay);
  color: white;
  cursor: pointer;
  display: flex;
  font-size: 10px;
  font-weight: 600;
  gap: 24px;
  justify-content: center;
  letter-spacing: 0.12em;
  min-width: 194px;
  padding: 0 28px;
  text-transform: uppercase;
  transition: background-color 220ms ease;
}

.booking-submit:hover {
  background: #a4432b;
}

.booking-submit svg {
  height: 19px;
  transition: transform 220ms ease;
  width: 19px;
}

.booking-submit:hover svg {
  transform: translateX(5px);
}

/* Intro */
.intro {
  min-height: 760px;
  overflow: hidden;
  padding-bottom: 130px;
  padding-top: 140px;
  position: relative;
}

.section-kicker {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  font-size: 10px;
  gap: 18px;
  letter-spacing: 0.14em;
  padding-bottom: 18px;
  text-transform: uppercase;
  width: min(270px, 38%);
}

.section-kicker span {
  color: var(--clay);
  font-family: var(--sans);
  font-size: 16px;
  font-style: italic;
}

.section-kicker p {
  margin: 0;
}

.intro__copy {
  margin-left: clamp(0px, 14vw, 220px);
  margin-top: 66px;
  max-width: 970px;
  position: relative;
  z-index: 2;
}

.intro__copy h2 {
  font-family: var(--serif);
  font-size: clamp(52px, 6.4vw, 100px);
  font-weight: 400;
  letter-spacing: -0.052em;
  line-height: 1.2;
  margin: 24px 0 46px;
}

.intro__copy h2 em {
  color: var(--clay);
  display: inline-block;
  font-weight: 400;
  margin-left: clamp(20px, 5vw, 80px);
}

.intro__body {
  display: grid;
  gap: 50px;
  grid-template-columns: minmax(280px, 480px) auto;
  margin-left: clamp(20px, 12vw, 190px);
}

.intro__body p {
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.65;
  margin: 0;
}

.intro__body .text-link {
  align-self: end;
  justify-self: start;
  white-space: nowrap;
}

.intro__stamp {
  align-items: center;
  border: 1px solid rgba(23, 33, 29, 0.25);
  border-radius: 50%;
  bottom: 92px;
  display: flex;
  flex-direction: column;
  height: 170px;
  justify-content: center;
  position: absolute;
  right: clamp(24px, 6vw, 94px);
  transform: rotate(8deg);
  width: 170px;
}

.intro__stamp.is-visible {
  transform: rotate(8deg);
}

.intro__stamp span {
  font-family: var(--sans);
  font-size: 52px;
  font-style: italic;
  line-height: 0.9;
}

.intro__stamp small {
  font-size: 7px;
  letter-spacing: 0.16em;
  line-height: 1.5;
  margin-top: 10px;
  text-align: center;
}

/* Headings */
.section-heading {
  align-items: end;
  display: flex;
  justify-content: space-between;
  margin-bottom: 54px;
}

.section-heading h2 {
  font-family: var(--serif);
  font-size: clamp(44px, 5vw, 76px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.2;
  margin: 20px 0 0;
}

.section-heading__note {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  margin: 0 0 3px;
  max-width: 360px;
}

/* Destinations */
.destinations {
  padding-bottom: 150px;
}

.destination-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: repeat(2, minmax(290px, 40vh));
}

.destination-card {
  color: white;
  overflow: hidden;
  position: relative;
}

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

.destination-card > img {
  object-fit: cover;
  transition: transform 800ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.destination-card:hover > img {
  transform: scale(1.045);
}

.destination-card__shade {
  background: linear-gradient(0deg, rgba(4, 17, 13, 0.78), transparent 62%);
  inset: 0;
  position: absolute;
}

.destination-card__number {
  font-family: var(--sans);
  font-size: 13px;
  font-style: italic;
  left: 28px;
  position: absolute;
  top: 25px;
}

.destination-card__content {
  bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  left: 28px;
  max-width: calc(100% - 110px);
  position: absolute;
}

.destination-card__content strong {
  font-family: var(--sans);
  font-size: clamp(34px, 3.2vw, 55px);
  font-weight: 400;
  letter-spacing: -0.04em;
}

.destination-card__content > span {
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.4;
  max-width: 410px;
}

.round-arrow {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  bottom: 26px;
  display: flex;
  height: 48px;
  justify-content: center;
  position: absolute;
  right: 26px;
  transition: background-color 220ms ease, color 220ms ease, transform 220ms ease;
  width: 48px;
}

.round-arrow svg {
  height: 19px;
  width: 19px;
}

a:hover > .round-arrow,
.stay-card__image:hover .round-arrow {
  background: white;
  color: var(--ink);
  transform: rotate(45deg);
}

/* Editorial */
.editorial {
  background: var(--forest);
  color: white;
  display: grid;
  grid-template-columns: 58% 42%;
  min-height: 760px;
}

.editorial__image {
  min-height: 680px;
  overflow: hidden;
  position: relative;
}

.editorial__image img {
  object-fit: cover;
}

.editorial__copy {
  align-self: center;
  padding: 80px clamp(36px, 6vw, 100px);
  position: relative;
}

.editorial__copy h2 {
  font-family: var(--serif);
  font-size: clamp(46px, 5vw, 78px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1.2;
  margin: 28px 0 34px;
}

.editorial__copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  margin: 0 0 42px;
  max-width: 440px;
}

.editorial__index {
  bottom: -100px;
  color: rgba(255, 255, 255, 0.05);
  font-family: var(--sans);
  font-size: 290px;
  line-height: 1;
  pointer-events: none;
  position: absolute;
  right: -16px;
}

/* Stays */
.stays {
  overflow: hidden;
  padding-bottom: 160px;
  padding-top: 150px;
}

.slider-arrows {
  display: flex;
  gap: 10px;
}

.slider-arrows button {
  border-color: rgba(23, 33, 29, 0.5);
  color: var(--ink);
}

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

.stay-list {
  display: flex;
  gap: 22px;
  margin-right: calc((100vw - min(100vw, 1560px)) / -2 - clamp(24px, 5vw, 84px));
  overflow-x: auto;
  padding-bottom: 22px;
  scroll-behavior: smooth;
  scrollbar-color: rgba(23, 33, 29, 0.25) transparent;
  scrollbar-width: thin;
  scroll-snap-type: x mandatory;
}

.stay-card {
  flex: 0 0 min(500px, 38vw);
  scroll-snap-align: start;
}

.stay-card__image {
  display: block;
  height: clamp(420px, 48vw, 610px);
  overflow: hidden;
  position: relative;
}

.stay-card__image > img {
  object-fit: cover;
  transition: transform 800ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.stay-card__image:hover > img {
  transform: scale(1.04);
}

.stay-card__image::after {
  background: linear-gradient(0deg, rgba(3, 16, 12, 0.4), transparent 40%);
  content: "";
  inset: 0;
  position: absolute;
}

.stay-card__type,
.stay-card__order {
  color: white;
  position: absolute;
  top: 22px;
  z-index: 2;
}

.stay-card__type {
  font-size: 9px;
  font-weight: 600;
  left: 22px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.stay-card__order {
  font-family: var(--sans);
  font-size: 14px;
  font-style: italic;
  right: 22px;
}

.stay-card__image .round-arrow {
  z-index: 2;
}

.stay-card__content {
  align-items: start;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  padding: 22px 2px;
}

.stay-card__content h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.03em;
  margin: 0 0 7px;
}

.stay-card__content p {
  align-items: center;
  color: #747873;
  display: flex;
  font-size: 11px;
  gap: 6px;
  letter-spacing: 0.06em;
  margin: 0;
  text-transform: uppercase;
}

.stay-card__content p svg {
  height: 13px;
  width: 13px;
}

.stay-card__content > span {
  font-family: var(--sans);
  font-size: 11px;
  line-height: 1.5;
  padding-top: 7px;
  text-align: right;
  white-space: nowrap;
}

.stay-card__content > span strong {
  font-size: 15px;
  font-weight: 500;
}

/* Promise */
.promise {
  align-items: center;
  display: grid;
  gap: clamp(50px, 8vw, 130px);
  grid-template-columns: 1.05fr 0.95fr;
  padding-bottom: 160px;
}

.promise__visual {
  height: min(760px, 75vw);
  min-height: 590px;
  position: relative;
}

.promise__visual > img {
  object-fit: cover;
}

.promise__seal {
  align-items: center;
  background: var(--clay);
  border-radius: 50%;
  bottom: -50px;
  color: white;
  display: flex;
  flex-direction: column;
  height: 160px;
  justify-content: center;
  position: absolute;
  right: -50px;
  transform: rotate(-8deg);
  width: 160px;
}

.promise__seal strong {
  font-family: var(--sans);
  font-size: 46px;
  font-style: italic;
  font-weight: 400;
  line-height: 1;
}

.promise__seal small {
  font-size: 7px;
  letter-spacing: 0.15em;
  line-height: 1.4;
  margin-top: 8px;
  text-align: center;
}

.promise__content h2 {
  font-family: var(--serif);
  font-size: clamp(48px, 5vw, 76px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1.2;
  margin: 28px 0 34px;
  max-width: 650px;
}

.promise__content > p:not(.eyebrow) {
  color: #5e6560;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  max-width: 550px;
}

.promise__content ul {
  list-style: none;
  margin: 50px 0 0;
  max-width: 570px;
  padding: 0;
}

.promise__content li {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  font-family: var(--sans);
  font-size: 18px;
  gap: 24px;
  padding: 17px 0;
}

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

.promise__content li span {
  color: var(--clay);
  font-size: 12px;
  font-style: italic;
}

/* Journal */
.journal {
  background: var(--paper-light);
  max-width: none;
  padding-bottom: 150px;
  padding-top: 140px;
}

.journal-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: 1.45fr 0.75fr;
}

.journal-card__image {
  display: block;
  height: 330px;
  overflow: hidden;
  position: relative;
}

.journal-card--feature .journal-card__image {
  height: 620px;
}

.journal-card__image img {
  object-fit: cover;
  transition: transform 700ms ease;
}

.journal-card__image:hover img {
  transform: scale(1.035);
}

.journal-card__content {
  align-items: start;
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
}

.journal-card__content > span {
  color: #767b76;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.journal-card__content h3 {
  font-family: var(--serif);
  font-size: clamp(24px, 2.5vw, 38px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.2;
  margin: 10px 0 0;
  max-width: 560px;
}

.journal-card__content > a {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  flex: 0 0 auto;
  height: 44px;
  justify-content: center;
  margin-left: 20px;
  width: 44px;
}

.journal-card__content > a svg {
  height: 18px;
  width: 18px;
}

.journal-grid__side {
  display: flex;
  flex-direction: column;
  gap: 70px;
}

.journal-grid__side .journal-card__content {
  display: block;
}

.journal-grid__side blockquote {
  border-left: 1px solid var(--clay);
  color: var(--forest);
  font-family: var(--serif);
  font-size: clamp(25px, 2.4vw, 38px);
  font-style: italic;
  line-height: 1.25;
  margin: 0;
  padding: 8px 0 8px 30px;
}

.journal-grid__side blockquote span {
  display: block;
  font-family: var(--sans);
  font-size: 8px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.15em;
  margin-top: 22px;
  text-transform: uppercase;
}

/* Closing and footer */
.closing {
  align-items: center;
  color: white;
  display: flex;
  height: min(760px, 88vh);
  justify-content: center;
  min-height: 600px;
  overflow: hidden;
  position: relative;
  text-align: center;
}

.closing > img {
  object-fit: cover;
}

.closing__shade {
  background: rgba(5, 22, 17, 0.52);
  inset: 0;
  position: absolute;
}

.closing__content {
  align-items: center;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}

.closing__content h2 {
  font-family: var(--serif);
  font-size: clamp(56px, 7vw, 106px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 1.2;
  margin: 28px 0 46px;
  max-width: 900px;
}

.closing__content button {
  align-items: center;
  background: white;
  color: var(--forest);
  cursor: pointer;
  display: flex;
  font-size: 10px;
  font-weight: 600;
  gap: 26px;
  letter-spacing: 0.14em;
  min-height: 58px;
  padding: 0 26px;
  text-transform: uppercase;
  transition: background-color 220ms ease, color 220ms ease;
}

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

.closing__content button svg {
  height: 19px;
  width: 19px;
}

.site-footer {
  background: var(--forest-dark);
  color: white;
  padding: 84px clamp(24px, 5vw, 84px) 28px;
}

.site-footer__top {
  align-items: start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  justify-content: space-between;
  padding-bottom: 72px;
}

.newsletter {
  width: min(480px, 45%);
}

.newsletter p {
  font-family: var(--sans);
  font-size: 24px;
  line-height: 1.3;
  margin: 0 0 28px;
}

.newsletter form {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  display: flex;
}

.newsletter input {
  background: transparent;
  border: 0;
  color: white;
  flex: 1;
  font-family: var(--sans);
  font-size: 16px;
  outline: 0;
  padding: 14px 0;
}

.newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter button {
  background: transparent;
  color: white;
  cursor: pointer;
  padding: 12px 0 12px 20px;
}

.newsletter svg {
  height: 20px;
  width: 20px;
}

.site-footer__links {
  display: grid;
  gap: 50px;
  grid-template-columns: repeat(3, 1fr) 1.6fr;
  padding: 68px 0 88px;
}

.site-footer__links > div {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.site-footer__links span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.16em;
  margin-bottom: 7px;
  text-transform: uppercase;
}

.site-footer__links a {
  font-family: var(--sans);
  font-size: 15px;
  transition: opacity 200ms ease;
}

.site-footer__links a:hover {
  opacity: 0.55;
}

.site-footer__social {
  align-items: flex-end !important;
}

.site-footer__social p {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: flex-end;
  margin: 0;
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.48);
  display: flex;
  font-size: 8px;
  justify-content: space-between;
  letter-spacing: 0.13em;
  padding-top: 25px;
  text-transform: uppercase;
}

/* Menu */
.menu-overlay {
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  transition: opacity 300ms ease, visibility 300ms ease;
  visibility: hidden;
  z-index: 100;
}

.menu-overlay--open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.menu-overlay__backdrop {
  background: rgba(12, 15, 16, 0.42);
  cursor: default;
  inset: 0;
  opacity: 0;
  position: absolute;
  transition: opacity 350ms ease;
  width: 100%;
}

.menu-overlay--open .menu-overlay__backdrop {
  opacity: 1;
}

.menu-overlay__panel {
  background: #000;
  bottom: 0;
  color: white;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  padding: 28px 34px 30px;
  position: absolute;
  right: 0;
  top: 0;
  transform: translateX(100%);
  transition: transform 450ms cubic-bezier(0.2, 0.7, 0.2, 1);
  width: min(400px, 100%);
}

.menu-overlay--open .menu-overlay__panel {
  transform: translateX(0);
}

.menu-overlay__header {
  align-items: center;
  display: flex;
  height: 32px;
  justify-content: space-between;
}

.menu-overlay__title {
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.menu-overlay__header > button {
  background: transparent;
  cursor: pointer;
  height: 32px;
  position: relative;
  width: 32px;
}

.menu-overlay__header > button span {
  background: white;
  height: 1px;
  left: 7px;
  position: absolute;
  top: 15px;
  transform: rotate(45deg);
  width: 18px;
}

.menu-overlay__header > button span:last-child {
  transform: rotate(-45deg);
}

.menu-overlay__panel nav {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 32px;
  max-width: none;
  width: 100%;
}

.menu-overlay__panel nav a,
.menu-overlay__panel nav > button {
  align-items: center;
  background: transparent;
  color: white;
  cursor: pointer;
  display: flex;
  font-family: var(--sans);
  font-size: clamp(20px, 1.55vw, 22px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.22;
  padding: 5px 0;
  text-align: left;
  transition: color 220ms ease, transform 220ms ease;
}

.menu-overlay__panel nav a:hover,
.menu-overlay__panel nav > button:hover {
  color: #e9784f;
  transform: translateX(7px);
}

.menu-overlay__language {
  align-items: center;
  align-self: flex-start;
  background: transparent;
  color: #fff;
  display: flex;
  gap: 10px;
  margin-top: 20px;
  padding: 0;
}

.menu-overlay__language span {
  align-items: center;
  background: #e51c23;
  border-radius: 3px;
  color: #ffe63b;
  display: flex;
  font-size: 8px;
  height: 16px;
  justify-content: center;
  width: 22px;
}

.menu-overlay__language b {
  font-size: 14px;
  font-weight: 500;
}

.menu-overlay__language i {
  font-size: 16px;
  font-style: normal;
  margin-left: 2px;
}

.menu-overlay__foot {
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 26px;
}

.menu-overlay__meta,
.menu-overlay__social {
  align-items: center;
  display: flex;
}

.menu-overlay__meta {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 9px 18px;
}

.menu-overlay .menu-overlay__header > button {
  transform: translateX(7px);
}

.menu-overlay__meta a {
  color: white;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: color 200ms ease;
}

.menu-overlay__meta a:hover {
  color: #e9784f;
}

.menu-overlay__social {
  gap: 10px;
}

.menu-overlay__social a {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: white;
  display: flex;
  font-size: 11px;
  height: 28px;
  justify-content: center;
  transition: border-color 200ms ease, color 200ms ease;
  width: 28px;
}

.menu-overlay__social a:hover {
  border-color: #e9784f;
  color: #e9784f;
}

.menu-overlay__social svg {
  height: 24px;
  width: 24px;
}

/* Booking drawer */
.booking-drawer {
  inset: 0;
  pointer-events: none;
  position: fixed;
  visibility: hidden;
  z-index: 110;
}

.booking-drawer--open {
  pointer-events: auto;
  visibility: visible;
}

.booking-drawer__backdrop {
  background: rgba(6, 20, 16, 0.64);
  cursor: default;
  inset: 0;
  opacity: 0;
  position: absolute;
  transition: opacity 320ms ease;
  width: 100%;
}

.booking-drawer--open .booking-drawer__backdrop {
  opacity: 1;
}

.booking-drawer__panel {
  background: var(--paper-light);
  bottom: 0;
  left: 0;
  padding: 42px clamp(24px, 6vw, 100px) 28px;
  position: absolute;
  right: 0;
  transform: translateY(100%);
  transition: transform 500ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.booking-drawer--open .booking-drawer__panel {
  transform: translateY(0);
}

.booking-drawer__header {
  align-items: start;
  display: flex;
  justify-content: space-between;
  margin: 0 auto 30px;
  max-width: 1360px;
}

.booking-drawer__header h2 {
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 400;
  letter-spacing: -0.04em;
  margin: 16px 0 0;
}

.booking-drawer__header > button {
  background: transparent;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 38px;
  font-weight: 200;
  line-height: 1;
}

.booking-panel--compact {
  border: 1px solid var(--line);
  margin: 0 auto;
  max-width: 1360px;
}

.booking-drawer__note {
  color: #777d78;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.04em;
  margin: 18px auto 0;
  max-width: 1360px;
  text-align: center;
}

.prototype-toast {
  align-items: center;
  background: var(--paper-light);
  bottom: 24px;
  box-shadow: 0 18px 60px rgba(6, 20, 16, 0.22);
  display: flex;
  gap: 14px;
  max-width: 460px;
  opacity: 0;
  padding: 17px 18px;
  pointer-events: none;
  position: fixed;
  right: 24px;
  transform: translateY(22px);
  transition: opacity 250ms ease, transform 350ms ease;
  z-index: 120;
}

.prototype-toast--show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.prototype-toast > span {
  align-items: center;
  background: var(--forest);
  border-radius: 50%;
  color: white;
  display: flex;
  flex: 0 0 auto;
  height: 32px;
  justify-content: center;
  width: 32px;
}

.prototype-toast p {
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.35;
  margin: 0;
}

.prototype-toast p strong {
  display: block;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.07em;
  margin-bottom: 3px;
  text-transform: uppercase;
}

.prototype-toast button {
  background: transparent;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 20px;
  margin-left: auto;
}

@media (max-width: 1120px) {
  .desktop-nav {
    display: none;
  }

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

  .menu-button {
    display: block;
  }

  .booking-panel {
    grid-template-columns: 1.25fr 1fr 1fr auto;
  }

  .booking-field:nth-of-type(4) {
    display: none;
  }

  .stay-card {
    flex-basis: min(460px, 48vw);
  }

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

  .site-footer__social {
    align-items: flex-start !important;
    grid-column: 1 / -1;
  }

  .site-footer__social p {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .section-shell {
    padding-inline: 20px;
  }

  .site-header,
  .site-header--solid {
    height: 64px;
    padding-inline: 20px;
  }

  .logo__mark {
    font-size: 24px;
    height: 39px;
    width: 39px;
  }

  .logo__words strong {
    font-size: 13px;
  }

  .logo__words small {
    font-size: 6px;
  }

  .language-button {
    display: none;
  }

  .header-login-button span {
    display: none;
  }

  .header-actions {
    gap: 8px;
  }

  .hero {
    height: 100svh;
    min-height: 650px;
  }

  .hero-slide__image {
    object-position: center;
  }

  .hero-slide__veil {
    background:
      linear-gradient(90deg, rgba(7, 21, 17, 0.56), transparent 85%),
      linear-gradient(0deg, rgba(5, 18, 14, 0.8), rgba(5, 18, 14, 0.06) 72%);
  }

  .hero__content {
    bottom: 116px;
    left: 20px;
    max-width: calc(100% - 40px);
    top: auto;
    transform: none;
  }

  .hero__eyebrow {
    margin-bottom: 15px;
  }

  .hero h1 {
    font-size: clamp(44px, 12.5vw, 56px);
    line-height: 1.2;
  }

  .hero h1 span:last-child {
    margin-left: 18px;
  }

  .hero__description {
    display: none;
  }

  .hero__content .text-link {
    margin-top: 24px;
  }

  .hero__rail {
    display: none;
  }

  .hero__arrows {
    bottom: 116px;
    right: 20px;
  }

  .hero__arrows button {
    height: 40px;
    width: 40px;
  }

  .hero__arrows button:first-child {
    display: none;
  }

  .hero__booking {
    display: none;
  }

  .hero__mobile-booking {
    align-items: center;
    background: var(--clay);
    bottom: 0;
    color: white;
    cursor: pointer;
    display: flex;
    font-size: 10px;
    font-weight: 600;
    height: 64px;
    justify-content: space-between;
    left: 0;
    letter-spacing: 0.14em;
    padding: 0 21px;
    position: absolute;
    right: 0;
    text-transform: uppercase;
    width: 100%;
    z-index: 6;
  }

  .hero__mobile-booking svg {
    height: 21px;
    width: 21px;
  }

  .intro {
    min-height: 0;
    padding-bottom: 100px;
    padding-top: 90px;
  }

  .section-kicker {
    width: 100%;
  }

  .intro__copy {
    margin: 48px 0 0;
  }

  .intro__copy h2 {
    font-size: clamp(48px, 14vw, 66px);
    margin: 19px 0 33px;
  }

  .intro__copy h2 em {
    margin-left: 15px;
  }

  .intro__body {
    display: block;
    margin-left: 0;
  }

  .intro__body p {
    font-size: 17px;
  }

  .intro__body .text-link {
    margin-top: 32px;
  }

  .intro__stamp {
    display: none;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 34px;
  }

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

  .section-heading__note {
    font-size: 15px;
  }

  .destinations {
    padding-bottom: 100px;
  }

  .destination-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .destination-card,
  .destination-card--wide {
    flex: 0 0 auto;
    height: 460px;
  }

  .destination-card__content {
    bottom: 22px;
    left: 20px;
  }

  .destination-card__content strong {
    font-size: 42px;
  }

  .destination-card__content > span {
    display: none;
  }

  .destination-card__number {
    left: 20px;
    top: 20px;
  }

  .round-arrow {
    bottom: 20px;
    height: 44px;
    right: 20px;
    width: 44px;
  }

  .editorial {
    display: block;
    min-height: 0;
  }

  .editorial__image {
    min-height: 500px;
  }

  .editorial__copy {
    padding: 74px 20px 90px;
  }

  .editorial__copy h2 {
    font-size: 49px;
  }

  .editorial__index {
    bottom: -50px;
    font-size: 180px;
  }

  .stays {
    padding-bottom: 100px;
    padding-top: 95px;
  }

  .slider-arrows {
    display: none;
  }

  .stay-list {
    gap: 14px;
    margin-right: -20px;
  }

  .stay-card {
    flex-basis: 84vw;
  }

  .stay-card__image {
    height: 500px;
  }

  .stay-card__content {
    display: block;
  }

  .stay-card__content > span {
    display: block;
    padding-top: 16px;
    text-align: left;
  }

  .promise {
    display: flex;
    flex-direction: column;
    gap: 85px;
    padding-bottom: 105px;
  }

  .promise__visual {
    height: 580px;
    min-height: 0;
    width: 100%;
  }

  .promise__seal {
    bottom: -52px;
    height: 130px;
    right: -5px;
    width: 130px;
  }

  .promise__seal strong {
    font-size: 38px;
  }

  .promise__content h2 {
    font-size: 50px;
  }

  .promise__content ul {
    margin-top: 38px;
  }

  .journal {
    padding-bottom: 100px;
    padding-top: 90px;
  }

  .journal .section-heading .text-link {
    margin-top: -10px;
  }

  .journal-grid {
    display: block;
  }

  .journal-card--feature .journal-card__image,
  .journal-card__image {
    height: 440px;
  }

  .journal-card__content {
    display: block;
  }

  .journal-card__content > a {
    display: none;
  }

  .journal-card__content h3 {
    font-size: 30px;
  }

  .journal-grid__side {
    gap: 60px;
    margin-top: 60px;
  }

  .journal-grid__side blockquote {
    font-size: 28px;
    padding-left: 20px;
  }

  .closing {
    height: 76vh;
    min-height: 560px;
  }

  .closing__content {
    padding-inline: 20px;
  }

  .closing__content h2 {
    font-size: 58px;
    margin-bottom: 38px;
  }

  .site-footer {
    padding: 64px 20px 25px;
  }

  .site-footer__top {
    align-items: start;
    flex-direction: column;
    gap: 60px;
    padding-bottom: 60px;
  }

  .newsletter {
    width: 100%;
  }

  .site-footer__links {
    gap: 50px 20px;
    grid-template-columns: 1fr 1fr;
    padding: 56px 0 70px;
  }

  .site-footer__social {
    grid-column: 1 / -1;
  }

  .site-footer__bottom {
    flex-direction: column;
    gap: 10px;
  }

  .menu-overlay {
    width: 100%;
  }

  .menu-overlay__panel {
    padding: 18px 18px 22px;
    width: min(320px, calc(100% - 20px));
  }

  .menu-overlay__header {
    height: 32px;
  }

  .menu-overlay__panel nav {
    gap: 5px;
    margin-top: 26px;
  }

  .menu-overlay__panel nav a,
  .menu-overlay__panel nav > button {
    display: flex;
    font-size: clamp(19px, 5.5vw, 21px);
    line-height: 1.2;
    padding: 4px 0;
  }

  .menu-overlay__foot {
    display: flex;
  }

  .menu-overlay__language {
    margin-top: 17px;
  }

  .booking-drawer__panel {
    max-height: 92vh;
    overflow-y: auto;
    padding: 30px 20px 22px;
  }

  .booking-drawer__header {
    margin-bottom: 26px;
  }

  .booking-drawer__header h2 {
    font-size: 37px;
  }

  .booking-panel--compact {
    display: block;
  }

  .booking-panel--compact .booking-field,
  .booking-panel--compact .booking-field:nth-of-type(4) {
    border-bottom: 1px solid var(--line);
    border-right: 0;
    display: flex;
    min-height: 72px;
  }

  .booking-panel--compact .booking-submit {
    min-height: 62px;
    width: 100%;
  }

  .prototype-toast {
    bottom: 14px;
    left: 14px;
    max-width: none;
    right: 14px;
  }
}

@media (max-width: 390px) {
  .hero h1 {
    font-size: 45px;
  }

  .hero__content .text-link {
    font-size: 10px;
  }

  .hero__arrows {
    bottom: 120px;
  }

  .section-heading h2,
  .intro__copy h2,
  .promise__content h2 {
    font-size: 43px;
  }

  .destination-card,
  .destination-card--wide {
    height: 410px;
  }

  .stay-card__image {
    height: 450px;
  }
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
