@font-face {
  font-family: "Bubble Sans";
  src: url("assets/fonts/BubbleSans-1.01.otf") format("opentype");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

:root {
  --ink: #182126;
  --ink-soft: #303a3e;
  --cobalt: #173b5a;
  --cobalt-deep: #0d2b43;
  --sand: #d8cec0;
  --shell: #f2eee7;
  --paper: #fbfaf7;
  --line: rgba(24, 33, 38, 0.18);
  --white: #fff;
  --header-height: 90px;
  --page-gutter: clamp(20px, 4vw, 72px);
  --section-space: clamp(88px, 10vw, 170px);
  --display: "Bubble Sans", "Arial Narrow", "Segoe UI", sans-serif;
  --body: "Segoe UI", Calibri, Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  color: inherit;
}

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

ul {
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
.brand,
.menu-nav,
.booking-dock,
.section-kicker,
.room-choice strong,
.gallery-card figcaption,
.contact-actions strong {
  font-family: var(--display);
  font-weight: 400;
}

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

:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

[hidden] {
  display: none !important;
}

.shell {
  width: min(100% - (var(--page-gutter) * 2), 1560px);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.section-kicker {
  margin-bottom: 22px;
  font-size: 12px;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.site-header {
  position: fixed;
  z-index: 80;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  transition: color 240ms ease, background-color 240ms ease, border-color 240ms ease, transform 240ms ease;
}

.site-header__inner {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
  align-items: center;
  width: 100%;
  height: 100%;
  padding-inline: var(--page-gutter);
}

body.scrolled .site-header {
  color: var(--ink);
  background: rgba(251, 250, 247, 0.96);
  border-color: var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 12px;
  letter-spacing: 0.04em;
  line-height: 1;
}

.brand__mark {
  display: grid;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 24px;
}

.brand__copy {
  display: grid;
  gap: 4px;
}

.brand__copy strong {
  font-size: 15px;
  font-weight: 400;
  text-transform: uppercase;
}

.brand__copy span {
  font-family: var(--body);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.5vw, 42px);
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav a,
.site-footer nav a {
  position: relative;
}

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

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

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

.language-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
}

.language-switcher__button {
  width: 27px;
  padding: 4px 0;
  border: 0;
  color: inherit;
  background: transparent;
  font-size: 10px;
  opacity: 0.8;
  cursor: pointer;
  transition: opacity 180ms ease;
}

.language-switcher__button:hover,
.language-switcher__button.is-active {
  opacity: 1;
}

.language-switcher__button.is-active {
  border-bottom: 1px solid currentColor;
}

.header-book {
  padding: 11px 16px 10px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 180ms ease, background-color 180ms ease;
}

.header-book:hover,
.header-book:focus-visible {
  color: var(--ink);
  background: var(--white);
}

body.scrolled .header-book:hover,
body.scrolled .header-book:focus-visible {
  color: var(--white);
  background: var(--ink);
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 9px;
  padding: 0;
  border: 0;
  background: transparent;
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.menu-toggle i {
  position: relative;
  display: block;
  width: 24px;
  height: 8px;
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
}

.menu-panel {
  position: fixed;
  z-index: 120;
  inset: 0;
  visibility: hidden;
  background: var(--paper);
  opacity: 0;
  transition: visibility 0s linear 360ms, opacity 260ms ease;
}

.menu-panel.is-open {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}

.menu-panel__content {
  display: grid;
  grid-template-columns: 58% 42%;
  min-height: 100%;
}

.menu-panel__main {
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 34px var(--page-gutter) 52px;
}

.menu-panel__tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.menu-close {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  text-transform: uppercase;
  cursor: pointer;
}

.menu-nav {
  display: grid;
  align-self: center;
  gap: 2px;
}

.menu-nav a {
  display: flex;
  align-items: center;
  min-height: 72px;
  border-bottom: 1px solid var(--line);
  font-size: clamp(34px, 4vw, 66px);
  letter-spacing: -0.035em;
  line-height: 1;
  text-transform: uppercase;
  transition: color 180ms ease, padding-left 180ms ease;
}

.menu-nav a:hover,
.menu-nav a:focus-visible {
  padding-left: 18px;
  color: var(--cobalt);
}

.menu-panel__visual {
  position: relative;
  overflow: hidden;
  background: var(--sand);
}

.menu-panel__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.76) contrast(0.94);
}

.menu-panel__visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 55%, rgba(8, 29, 45, 0.6));
}

.menu-panel__visual span {
  position: absolute;
  z-index: 1;
  right: 36px;
  bottom: 34px;
  left: 36px;
  color: var(--white);
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: max(720px, 100svh);
  overflow: hidden;
  color: var(--white);
  background: var(--cobalt-deep);
}

.hero__media,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  transform: scale(1.015);
  animation: hero-settle 1.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero__shade {
  background:
    linear-gradient(180deg, rgba(4, 20, 31, 0.46) 0%, rgba(7, 26, 40, 0.12) 40%, rgba(6, 21, 32, 0.66) 100%),
    linear-gradient(90deg, rgba(4, 20, 31, 0.3), transparent 50%, rgba(4, 20, 31, 0.16));
}

.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: max(720px, 100svh);
  padding: calc(var(--header-height) + 50px) var(--page-gutter) 160px;
  text-align: center;
}

.hero__eyebrow {
  margin-bottom: 24px;
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 19ch;
  overflow-wrap: anywhere;
  font-size: clamp(42px, 5.35vw, 88px);
  hyphens: auto;
  letter-spacing: -0.025em;
  line-height: 1.02;
  text-transform: uppercase;
}

.hero__scroll {
  display: grid;
  justify-items: center;
  gap: 12px;
  margin-top: 42px;
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero__scroll i {
  position: relative;
  display: block;
  width: 1px;
  height: 38px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.45);
}

.hero__scroll i::after {
  position: absolute;
  inset: 0;
  content: "";
  background: var(--white);
  animation: scroll-line 2s ease-in-out infinite;
}

.booking-dock {
  position: absolute;
  z-index: 3;
  right: var(--page-gutter);
  bottom: 28px;
  left: var(--page-gutter);
  display: grid;
  grid-template-columns: 1.1fr 1.8fr auto;
  align-items: stretch;
  min-height: 96px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(230, 235, 232, 0.2);
  backdrop-filter: blur(18px);
}

.booking-dock__item {
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 0 clamp(20px, 2.4vw, 42px);
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.booking-dock span {
  font-size: 10px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  opacity: 0.78;
}

.booking-dock strong {
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
}

.booking-dock > a {
  display: grid;
  min-width: 190px;
  place-items: center;
  color: var(--ink);
  background: var(--white);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 180ms ease, background-color 180ms ease;
}

.booking-dock > a:hover,
.booking-dock > a:focus-visible {
  color: var(--white);
  background: var(--cobalt);
}

.editorial-story {
  display: grid;
  grid-template-columns: 58% 42%;
  min-height: 900px;
}

.editorial-story__media {
  position: relative;
  min-height: 900px;
  overflow: hidden;
  background: #d9d2c7;
}

.editorial-story__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
}

.editorial-story__copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-content: center;
  padding: clamp(70px, 8vw, 140px) var(--page-gutter);
  color: var(--white);
  background: var(--cobalt-deep);
}

.editorial-story__copy h2 {
  font-size: clamp(36px, 4.1vw, 66px);
  letter-spacing: -0.035em;
  line-height: 1.03;
  text-transform: uppercase;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.editorial-story__copy > p:not(.section-kicker) {
  max-width: 560px;
  margin-top: 38px;
  font-size: clamp(16px, 1.25vw, 20px);
  color: rgba(255, 255, 255, 0.8);
}

.text-link {
  width: fit-content;
  margin-top: 44px;
  padding-bottom: 7px;
  border-bottom: 1px solid currentColor;
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.media-label,
.concept-label {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 18px;
  padding: 8px 11px 7px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  color: var(--white);
  background: rgba(7, 29, 44, 0.48);
  backdrop-filter: blur(9px);
  font-family: var(--body);
  font-size: 9px;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.rooms,
.gallery-section {
  padding-block: var(--section-space);
}

.rooms {
  background: var(--shell);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.55fr);
  gap: clamp(40px, 8vw, 140px);
  align-items: end;
  margin-bottom: clamp(54px, 7vw, 108px);
}

.section-heading h2 {
  max-width: 1000px;
  font-size: clamp(38px, 4.4vw, 72px);
  letter-spacing: -0.04em;
  line-height: 1.04;
  text-transform: uppercase;
}

.section-heading > p {
  max-width: 450px;
}

.section-heading--compact {
  grid-template-columns: minmax(0, 1fr);
}

.section-heading--compact h2 {
  max-width: 900px;
}

.room-browser {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.72fr);
  min-height: 660px;
  background: var(--paper);
}

.room-browser__choices {
  display: grid;
  align-content: stretch;
  border: 1px solid var(--line);
  border-right: 0;
}

.room-choice {
  display: grid;
  grid-template-columns: 34px 1fr;
  grid-template-rows: auto auto;
  gap: 10px 12px;
  align-content: center;
  width: 100%;
  padding: 34px clamp(24px, 2.5vw, 44px);
  border: 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: color 200ms ease, background-color 200ms ease, padding-left 200ms ease;
}

.room-choice:last-child {
  border-bottom: 0;
}

.room-choice > span {
  grid-row: 1 / 3;
  padding-top: 5px;
  font-size: 11px;
  opacity: 0.5;
}

.room-choice strong {
  font-size: clamp(24px, 2vw, 34px);
  letter-spacing: -0.025em;
  line-height: 1.05;
  text-transform: uppercase;
}

.room-choice small {
  max-width: 360px;
  font-size: 13px;
  line-height: 1.45;
  opacity: 0.72;
}

.room-choice:hover,
.room-choice:focus-visible,
.room-choice.is-active {
  padding-left: clamp(30px, 3.2vw, 56px);
  color: var(--white);
  background: var(--cobalt);
}

.room-choice:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: -7px;
  box-shadow: inset 0 0 0 5px var(--ink);
}

.room-browser__stage {
  position: relative;
  min-width: 0;
  min-height: 660px;
  overflow: hidden;
  background: #c8c1b5;
}

.room-panel {
  position: absolute;
  inset: 0;
  overflow: hidden;
  animation: room-panel-in 480ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.room-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.concept-note {
  max-width: 900px;
  margin-top: 22px;
  padding-left: 14px;
  border-left: 2px solid var(--cobalt);
  font-size: 12px;
  color: rgba(24, 33, 38, 0.68);
}

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

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

.gallery-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: var(--sand);
}

.gallery-card--wide {
  grid-column: span 8;
}

.gallery-card--portrait {
  grid-column: span 4;
}

.gallery-card--full {
  grid-column: 1 / -1;
  min-height: 460px;
  aspect-ratio: 16 / 7;
}

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

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

.gallery-card figcaption {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 22px;
  left: 24px;
  color: var(--white);
  font-size: clamp(24px, 2.2vw, 38px);
  letter-spacing: -0.02em;
  line-height: 1;
  text-transform: uppercase;
}

.gallery-card::after {
  position: absolute;
  inset: 45% 0 0;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(4, 20, 31, 0.68));
  pointer-events: none;
}

.gallery-card .concept-label,
.gallery-card .media-label {
  z-index: 3;
}

.amenities-section {
  padding-block: clamp(82px, 8vw, 130px);
  color: var(--white);
  background: var(--cobalt);
}

.amenities-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(60px, 10vw, 170px);
  align-items: start;
}

.amenities-section h2 {
  max-width: 700px;
  font-size: clamp(38px, 4.8vw, 76px);
  letter-spacing: -0.04em;
  line-height: 1.02;
  text-transform: uppercase;
}

.amenities-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 34px;
  counter-reset: amenity;
}

.amenities-list li {
  position: relative;
  min-height: 76px;
  padding: 25px 0 20px 42px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  counter-increment: amenity;
  font-size: 15px;
}

.amenities-list li::before {
  position: absolute;
  top: 25px;
  left: 0;
  content: "0" counter(amenity);
  font-family: var(--display);
  font-size: 10px;
  opacity: 0.6;
}

.location-section {
  display: grid;
  grid-template-columns: 50% 50%;
  min-height: 820px;
  background: var(--sand);
}

.location-section__image {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  background: var(--cobalt-deep);
}

.location-section__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.02);
  transform: scale(1.01);
}

.image-credit {
  position: absolute;
  z-index: 2;
  right: 14px;
  bottom: 14px;
  max-width: calc(100% - 28px);
  padding: 7px 9px;
  color: var(--white);
  background: rgba(13, 43, 67, 0.82);
  font-size: 10px;
  line-height: 1.35;
}

.image-credit a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.location-section__copy {
  display: grid;
  align-content: center;
  padding: clamp(70px, 8vw, 140px) var(--page-gutter);
}

.location-section__copy h2 {
  font-size: clamp(38px, 4.2vw, 68px);
  letter-spacing: -0.04em;
  line-height: 1.03;
  text-transform: uppercase;
}

.location-section__copy > p:not(.section-kicker) {
  max-width: 560px;
  margin-top: 34px;
}

.location-facts {
  display: grid;
  gap: 0;
  margin-top: 50px;
}

.location-facts > div {
  display: grid;
  grid-template-columns: minmax(120px, 0.4fr) 1fr;
  gap: 30px;
  padding-block: 20px;
  border-top: 1px solid rgba(24, 33, 38, 0.24);
}

.location-facts dt {
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.location-facts dd {
  font-size: 15px;
}

.location-facts a {
  border-bottom: 1px solid currentColor;
}

.contact-section {
  padding-block: var(--section-space);
  color: var(--white);
  background: var(--ink);
}

.contact-section__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.85fr);
  gap: clamp(70px, 12vw, 190px);
  align-items: start;
}

.contact-section h2 {
  max-width: 820px;
  font-size: clamp(42px, 5vw, 80px);
  letter-spacing: -0.045em;
  line-height: 1.02;
  text-transform: uppercase;
}

.contact-section__inner > div:first-child > p:last-child {
  max-width: 620px;
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.72);
}

.contact-actions {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.contact-actions a {
  display: grid;
  gap: 10px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.contact-actions .contact-action {
  grid-template-columns: 44px minmax(0, 1fr);
  column-gap: 18px;
}

.contact-action__icon {
  grid-row: 1 / span 2;
  width: 36px;
  height: 36px;
  align-self: center;
  overflow: visible;
  color: #9ec1da;
}

.contact-action--whatsapp .contact-action__icon {
  color: #25d366;
}

.contact-action__icon circle {
  fill: currentColor;
  stroke: none;
}

.contact-action__icon path {
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-action--whatsapp .contact-action__icon path {
  stroke: var(--white);
}

.contact-actions .contact-action > span,
.contact-actions .contact-action > strong {
  grid-column: 2;
}

.contact-actions span {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.58;
}

.contact-actions strong {
  font-size: clamp(23px, 2.2vw, 36px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-transform: uppercase;
}

.contact-actions a:hover strong,
.contact-actions a:focus-visible strong {
  color: #9ec1da;
}

.site-footer {
  color: var(--ink);
  background: var(--shell);
}

.site-footer__top,
.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-footer__top {
  min-height: 190px;
  gap: 50px;
  border-bottom: 1px solid var(--line);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px 34px;
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer__bottom {
  min-height: 82px;
  gap: 30px;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-footer__credit {
  display: flex;
  align-items: center;
  gap: 7px;
}

.mobile-bookbar {
  display: none;
}

@keyframes hero-settle {
  from {
    opacity: 0;
    transform: scale(1.08);
  }
  to {
    opacity: 1;
    transform: scale(1.015);
  }
}

@keyframes scroll-line {
  0% {
    transform: translateY(-100%);
  }
  45%,
  55% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(100%);
  }
}

@keyframes room-panel-in {
  from {
    opacity: 0;
    transform: scale(1.025);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 1280px) {
  .site-header__inner {
    grid-template-columns: minmax(190px, 1fr) auto minmax(190px, 1fr);
  }

  .room-browser {
    grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.45fr);
  }
}

@media (max-width: 991px) {
  :root {
    --header-height: 70px;
    --section-space: clamp(76px, 15vw, 118px);
  }

  body {
    padding-bottom: 60px;
    font-size: 16px;
  }

  .site-header__inner {
    display: flex;
    justify-content: space-between;
  }

  .desktop-nav,
  .header-book {
    display: none;
  }

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

  .menu-toggle {
    display: flex;
  }

  .brand__mark {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }

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

  .brand__copy span {
    font-size: 9px;
  }

  .menu-panel__content {
    grid-template-columns: 1fr;
  }

  .menu-panel {
    overflow: hidden;
  }

  .menu-panel__visual {
    display: none;
  }

  .menu-panel__main {
    min-height: 100dvh;
    max-height: 100dvh;
    padding-top: 22px;
    padding-bottom: 30px;
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .menu-nav a {
    min-height: 64px;
    font-size: clamp(32px, 8vw, 52px);
  }

  .hero,
  .hero__content {
    min-height: 100svh;
  }

  .hero__media img {
    object-position: 58% center;
  }

  .hero__content {
    align-content: end;
    justify-items: start;
    padding: calc(var(--header-height) + 36px) var(--page-gutter) 150px;
    text-align: left;
  }

  .hero h1 {
    max-width: 14ch;
    font-size: clamp(36px, 8.6vw, 60px);
  }

  body:not([data-language="el"]) .hero h1 {
    max-width: 100%;
    font-size: clamp(32px, 8vw, 52px);
  }

  .hero__scroll {
    display: none;
  }

  .booking-dock {
    display: none;
  }

  .editorial-story,
  .location-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .editorial-story__media,
  .location-section__image {
    min-height: min(78svh, 720px);
  }

  .editorial-story__copy,
  .location-section__copy {
    min-height: 640px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .section-heading > p {
    max-width: 650px;
  }

  .room-browser {
    grid-template-columns: 1fr;
    min-height: auto;
    background: transparent;
  }

  .room-browser__choices {
    grid-template-columns: repeat(3, minmax(230px, 1fr));
    overflow-x: auto;
    border-right: 1px solid var(--line);
    border-bottom: 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .room-browser__choices::-webkit-scrollbar {
    display: none;
  }

  .room-choice {
    min-height: 190px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
    scroll-snap-align: start;
  }

  .room-choice:last-child {
    border-right: 0;
  }

  .room-choice:hover,
  .room-choice:focus-visible,
  .room-choice.is-active {
    padding-left: 30px;
  }

  .room-browser__stage {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .amenities-section__grid,
  .contact-section__inner {
    grid-template-columns: 1fr;
  }

  .amenities-section__grid,
  .contact-section__inner {
    gap: 64px;
  }

  .mobile-bookbar {
    position: fixed;
    z-index: 70;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 60px;
    color: var(--white);
    background: var(--ink);
  }

  .mobile-bookbar a {
    display: grid;
    place-items: center;
    border-right: 1px solid rgba(255, 255, 255, 0.22);
    font-family: var(--display);
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .mobile-bookbar a:last-child {
    border-right: 0;
    background: var(--cobalt);
  }
}

@media (max-width: 991px) and (max-height: 500px) {
  .menu-panel__main {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .menu-nav {
    align-self: start;
    margin-block: 14px;
  }

  .menu-nav a {
    min-height: 46px;
    font-size: 28px;
  }
}

@media (max-width: 760px) {
  .hero__eyebrow {
    font-size: 10px;
  }

  .editorial-story__media,
  .location-section__image {
    min-height: 72svh;
  }

  .editorial-story__copy,
  .location-section__copy {
    min-height: auto;
    padding-block: 88px;
  }

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

  .gallery-card,
  .gallery-card--wide,
  .gallery-card--portrait,
  .gallery-card--full {
    grid-column: auto;
    min-height: min(132vw, 680px);
    aspect-ratio: auto;
  }

  .amenities-section__grid {
    grid-template-columns: 1fr;
  }

  .amenities-list {
    grid-template-columns: 1fr;
  }

  .location-facts > div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .site-footer__top,
  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer__top {
    justify-content: center;
    min-height: 270px;
    padding-block: 55px;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .site-footer__bottom {
    justify-content: center;
    min-height: 140px;
    padding-block: 38px;
  }
}

@media (max-width: 520px) {
  .menu-toggle > span {
    display: none;
  }

  .hero__content {
    padding-bottom: 132px;
  }

  .hero h1 {
    font-size: clamp(34px, 10vw, 48px);
    line-height: 0.98;
  }

  .section-heading h2,
  .editorial-story__copy h2,
  .location-section__copy h2,
  .amenities-section h2,
  .contact-section h2 {
    font-size: clamp(34px, 9vw, 48px);
  }

  .room-choice {
    min-height: 172px;
  }

  .room-browser__stage {
    aspect-ratio: 3 / 4;
  }

  .room-panel img {
    object-position: center;
  }

  .gallery-card,
  .gallery-card--wide,
  .gallery-card--portrait,
  .gallery-card--full {
    flex-basis: 86vw;
    min-height: 520px;
  }

  .contact-actions strong {
    overflow-wrap: anywhere;
  }
}

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

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