:root {
  color-scheme: light;
  --ink: #19221f;
  --muted: #65706c;
  --paper: #f3f4ef;
  --white: #ffffff;
  --line: rgba(25, 34, 31, 0.16);
  --forest: #163d37;
  --forest-bright: #275f55;
  --coral: #e4533f;
  --cobalt: #2856c7;
  --yellow: #f2c84b;
  --shadow: 0 20px 55px rgba(20, 38, 33, 0.16);
  --page-gutter: clamp(18px, 6vw, 72px);
  --section-space: clamp(58px, 8vw, 92px);
  --section-head-gap: clamp(28px, 4vw, 40px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", ui-sans-serif, system-ui, sans-serif;
}

body.is-locked {
  overflow: hidden;
}

button,
input {
  font: inherit;
}

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

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

img {
  max-width: 100%;
}

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

.shell {
  width: min(100%, 1180px);
  margin: 0 auto;
  background: var(--white);
  box-shadow: 0 0 70px rgba(26, 41, 36, 0.1);
}

.hero {
  position: relative;
  min-height: min(820px, 92vh);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--forest);
  color: var(--white);
}

.hero__image,
.hero__veil {
  position: absolute;
  inset: 0;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__veil {
  background: rgba(7, 24, 20, 0.46);
}

.hero__nav {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px clamp(18px, 4vw, 52px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.brand-mark img {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 50%;
  object-fit: cover;
}

.hero__links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.78rem;
  font-weight: 700;
}

.hero__links a {
  padding: 8px 0;
  border-bottom: 1px solid transparent;
}

.hero__links a:hover {
  border-color: currentColor;
}

.hero__body {
  position: relative;
  z-index: 1;
  width: min(820px, 100%);
  padding: 170px clamp(18px, 7vw, 82px) clamp(60px, 9vh, 92px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 2px;
  background: var(--yellow);
  content: "";
}

.hero h1 {
  max-width: 8ch;
  margin: 0 0 28px;
  font-family: "Prata", Georgia, serif;
  font-size: 6.8rem;
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero__lead {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.16rem;
  line-height: 1.65;
}

.action-dock {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.action-dock__item {
  min-height: 72px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 10px clamp(12px, 2vw, 18px);
  border-right: 1px solid var(--line);
  transition: background 160ms ease, color 160ms ease;
}

.action-dock__item:last-child {
  border-right: 0;
}

.action-dock__item:hover {
  background: var(--forest);
  color: var(--white);
}

.action-dock__item.is-primary {
  background: var(--coral);
  color: var(--white);
}

.action-dock__icon,
.circle-button {
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.action-dock__icon {
  width: 32px;
  height: 32px;
}

.action-dock svg,
.circle-button svg,
.list-arrow svg,
.search-box svg,
.bottom-nav svg,
.info-icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.8;
}

.action-dock strong,
.action-dock small {
  display: block;
}

.action-dock strong {
  margin-bottom: 2px;
  font-size: 0.82rem;
  line-height: 1.2;
}

.action-dock small {
  color: currentColor;
  font-size: 0.64rem;
  opacity: 0.68;
}

.section {
  padding: var(--section-space) var(--page-gutter);
}

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

.section--dark {
  background: var(--forest);
  color: var(--white);
}

.section--compact {
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
}

.section--compact .section__head {
  margin-bottom: var(--section-head-gap);
}

.section__head {
  width: 100%;
  max-width: none;
  margin-bottom: var(--section-head-gap);
}

.section__label {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.section__head h2,
.editorial-copy h2,
.excursion-copy h2 {
  margin: 0 0 18px;
  font-family: "Prata", Georgia, serif;
  font-size: 3.8rem;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.section__head p,
.editorial-copy p,
.excursion-copy p {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.section--dark .section__head p,
.section--dark .editorial-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.stay-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 12px;
}

.wifi-panel {
  padding: 24px;
  background: var(--cobalt);
  color: var(--white);
}

.wifi-panel__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.wifi-panel__top p {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.wifi-panel__signal {
  display: flex;
  align-items: end;
  gap: 4px;
  height: 24px;
}

.wifi-panel__signal span {
  width: 4px;
  background: var(--yellow);
}

.wifi-panel__signal span:nth-child(1) { height: 7px; }
.wifi-panel__signal span:nth-child(2) { height: 12px; }
.wifi-panel__signal span:nth-child(3) { height: 18px; }
.wifi-panel__signal span:nth-child(4) { height: 24px; }

.wifi-panel__content {
  margin-top: 20px;
}

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

.wifi-panel__value {
  width: 100%;
  min-width: 0;
  display: block;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  cursor: pointer;
  text-align: left;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.wifi-panel__value .wifi-panel__label {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.wifi-panel__value strong {
  display: block;
  min-width: 0;
  font-family: "Prata", Georgia, serif;
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.wifi-panel__copy-hint {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.66rem;
  font-weight: 700;
  line-height: 1.25;
}

.wifi-panel__copy-hint svg {
  width: 15px;
  height: 15px;
}

.wifi-panel__value:hover,
.wifi-panel__value:focus-visible,
.wifi-panel__value.is-copied {
  border-color: var(--yellow);
  background: rgba(242, 200, 75, 0.14);
  outline: 0;
}

.wifi-panel__value:disabled,
.wifi-panel__value:disabled:hover {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.04);
  cursor: default;
  opacity: 0.72;
}

.wifi-panel__value.is-copied .wifi-panel__copy-hint {
  color: var(--yellow);
}

.text-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid currentColor;
  border-radius: 4px;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 800;
}

.text-button:hover {
  background: currentColor;
}

.text-button:hover span,
.text-button:hover svg {
  color: var(--cobalt);
  stroke: var(--cobalt);
}

.route-panel {
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid var(--line);
  background: var(--white);
}

.route-panel__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px;
  border-bottom: 1px solid var(--line);
}

.route-panel__title h3 {
  margin: 0;
  font-size: 1rem;
}

.route-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: var(--line);
}

.route-link {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  min-height: 88px;
  padding: 16px 22px;
  border: 0;
  background: var(--white);
  color: inherit;
  cursor: pointer;
  text-align: left;
}

.route-link:hover {
  background: var(--paper);
}

.route-details {
  min-width: 0;
  background: var(--white);
}

.route-details summary {
  list-style: none;
  cursor: pointer;
}

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

.route-details .list-arrow {
  transition: transform 180ms ease;
}

.route-details[open] .list-arrow {
  transform: rotate(180deg);
}

.route-details__body {
  padding: 0 22px 18px;
}

.route-details__body img {
  display: block;
  width: min(100%, 560px);
  max-height: 420px;
  object-fit: contain;
}

.route-link__number {
  color: var(--coral);
  font-family: "Prata", Georgia, serif;
  font-size: 1.25rem;
}

.route-link strong,
.route-link small {
  display: block;
}

.route-link strong {
  font-size: 0.86rem;
  line-height: 1.35;
}

.route-link small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.7rem;
}

.special-section {
  display: grid;
  gap: clamp(28px, 4vw, 42px);
  padding: 0 var(--page-gutter) var(--section-space);
  background: var(--paper);
}

.section--before-special { padding-bottom: clamp(28px, 4vw, 46px); }

.special-promo {
  width: 100%;
  min-width: 0;
  display: grid;
  overflow: hidden;
  border: 2px solid var(--yellow);
  background: var(--white);
  container-type: inline-size;
}

.special-promo--text-only .special-promo__copy { padding-top: 36px; }

.special-promo__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px clamp(22px, 4vw, 38px) 32px;
}

.special-promo__copy h2 {
  width: 100%;
  max-width: none;
  margin: 0;
  font-family: "Prata", Georgia, serif;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.special-promo__lead {
  max-width: 720px;
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

.special-promo__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.special-promo__actions .text-button { min-width: 138px; }
.special-promo__actions .text-button:hover span,
.special-promo__actions .text-button:hover svg { color: var(--forest); stroke: var(--forest); }
.special-promo__link { background: var(--yellow); border-color: var(--yellow); }

.special-promo__gallery,
.dialog__media {
  min-width: 0;
  display: grid;
  overflow: hidden;
}

.special-promo__gallery {
  gap: clamp(8px, 1vw, 12px);
  padding: 0;
  background: var(--white);
}

.special-promo__gallery--1 { grid-template-columns: 1fr; }
.special-promo__gallery--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.special-promo__gallery--3,
.special-promo__gallery--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.special-promo__gallery--3 .media-grid__item:last-child { grid-column: 1 / -1; }

.media-grid__item {
  position: relative;
  min-width: 0;
  min-height: 0;
  display: block;
  overflow: hidden;
}

.special-promo__gallery .media-grid__item {
  aspect-ratio: 16 / 9;
  background: var(--paper);
}

.special-promo__gallery--3 .media-grid__item:last-child {
  aspect-ratio: 2 / 1;
}

.media-grid__label {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  width: fit-content;
  max-width: calc(100% - 20px);
  padding: 7px 10px;
  overflow: hidden;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.special-promo__gallery img,
.dialog__media img {
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  display: block;
}

.special-promo__gallery img { object-fit: cover; }
.dialog__media img { object-fit: contain; }

.list-arrow {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
}

.benefit-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.benefit {
  min-height: 122px;
  display: grid;
  grid-template-rows: auto auto;
  align-content: start;
  gap: 14px;
  padding: 18px 20px;
  border: 1px solid var(--yellow);
  background: var(--white);
  transition: background-color 160ms ease, border-color 160ms ease;
}

.benefit[href]:not([aria-disabled="true"]):hover { background: rgba(242, 200, 75, 0.12); }

.benefit__top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.benefit__top span {
  color: var(--coral);
  font-size: 0.7rem;
  font-weight: 800;
}

.benefit h3 {
  width: 100%;
  max-width: none;
  margin: 0;
  font-size: 1rem;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.benefit p {
  margin: 8px 0 0;
  color: rgba(25, 34, 31, 0.7);
  font-size: 0.78rem;
  line-height: 1.5;
}

.benefit__code {
  display: block;
  width: fit-content;
  margin-top: 10px;
  padding: 5px 8px;
  border: 1px solid var(--yellow);
  font-size: 0.72rem;
  line-height: 1.2;
}

.excursion {
  display: block;
  overflow: hidden;
  background: var(--forest);
  color: var(--white);
}

.excursion-media {
  position: relative;
  min-height: 0;
  aspect-ratio: 16 / 9;
  margin: 0 var(--page-gutter);
  overflow: hidden;
}

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

.excursion-offer {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 var(--page-gutter);
  padding: 14px 22px;
  background: var(--yellow);
  color: var(--ink);
}

.excursion-offer span,
.excursion-offer strong {
  display: block;
}

.excursion-offer span {
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

.excursion-offer strong {
  font-family: "Prata", Georgia, serif;
  font-size: 2.6rem;
  font-weight: 400;
  line-height: 1;
}

.excursion-copy {
  width: 100%;
  max-width: none;
  padding: var(--section-space) var(--page-gutter) 38px;
}

.excursion-copy .section__label {
  color: var(--yellow);
}

.excursion-copy p {
  color: rgba(255, 255, 255, 0.7);
}

.excursion-actions {
  padding: 24px var(--page-gutter) var(--section-space);
}

.excursion-actions .primary-button {
  margin-top: 0;
}

.primary-button {
  width: fit-content;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
  padding: 12px 18px;
  border-radius: 4px;
  background: var(--coral);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 800;
}

.primary-button:hover {
  background: #f06450;
}

.editorial {
  display: grid;
  gap: 34px;
}

.editorial-media {
  height: 520px;
  margin: 0;
  overflow: hidden;
}

.editorial-media__main {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.place-list {
  margin-top: 2px;
  border-top: 1px solid currentColor;
}

.place-link {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 14px;
  min-height: 0;
  padding: 14px 0;
  border-bottom: 1px solid currentColor;
}

.place-link[hidden] {
  display: none;
}

.place-link:hover strong {
  color: var(--coral);
}

.place-link span:first-child {
  color: var(--coral);
  font-size: 0.7rem;
  font-weight: 800;
}

.place-link__copy {
  min-width: 0;
}

.place-link strong,
.place-link small {
  display: block;
  overflow-wrap: anywhere;
}

.place-link strong {
  font-size: 0.86rem;
  line-height: 1.35;
  transition: color 160ms ease;
}

.place-link small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.45;
}

.section--dark .place-link small {
  color: rgba(255, 255, 255, 0.62);
}

.place-link .list-arrow {
  color: currentColor;
}

.more-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}

.more-button {
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 800;
}

.more-button:hover {
  color: var(--coral);
}

.safety-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.26);
  border-left: 1px solid rgba(255, 255, 255, 0.26);
}

.safety-note {
  min-height: 130px;
  padding: 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.26);
  border-bottom: 1px solid rgba(255, 255, 255, 0.26);
}

.safety-note span {
  color: var(--yellow);
  font-family: "Prata", Georgia, serif;
  font-size: 1.35rem;
}

.safety-note h3 {
  margin: 18px 0 6px;
  font-size: 0.85rem;
}

.safety-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.74rem;
  line-height: 1.4;
}

.safety--light .safety-row {
  border-color: var(--line);
}

.safety--light .safety-note {
  border-color: var(--line);
}

.safety--light .safety-note span {
  color: var(--coral);
}

.safety--light .safety-note p {
  color: var(--muted);
}

.safety--light .section-actions .text-button:hover span,
.safety--light .section-actions .text-button:hover svg {
  color: var(--white);
  stroke: var(--white);
}

.section-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.section-actions .text-button:hover span,
.section-actions .text-button:hover svg {
  color: var(--forest);
  stroke: var(--forest);
}

.help-tools {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  margin-bottom: 26px;
}

.search-box {
  min-height: 52px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 0 14px;
  border: 1px solid var(--line);
  background: var(--white);
}

.search-box input {
  min-width: 0;
  width: 100%;
  padding: 0 2px;
  border: 0;
  outline: 0;
  appearance: none;
  background: transparent;
  color: var(--ink);
}

.contact-button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 20px;
  border-radius: 4px;
  background: var(--coral);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item[hidden] {
  display: none;
}

.faq-item summary {
  min-height: 74px;
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 12px 4px;
  cursor: pointer;
  list-style: none;
}

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

.info-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--forest);
}

.faq-item summary strong {
  font-size: 0.9rem;
  line-height: 1.4;
}

.faq-toggle {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--forest);
  color: var(--white);
  font-size: 1.15rem;
}

.faq-item[open] .faq-toggle {
  background: var(--coral);
}

.faq-body {
  max-width: 790px;
  padding: 0 52px 28px 62px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.75;
  white-space: pre-line;
}

.faq-body__image {
  display: block;
  width: min(100%, 360px);
  max-height: 320px;
  margin: 0 0 18px;
  object-fit: contain;
}

.empty-state {
  padding: 38px 0;
  color: var(--muted);
}

.help--dark .faq-list,
.help--dark .faq-item {
  border-color: rgba(255, 255, 255, 0.24);
}

.help--dark .info-icon {
  border-color: rgba(255, 255, 255, 0.34);
  color: var(--yellow);
}

.help--dark .faq-toggle {
  background: var(--yellow);
  color: var(--forest);
}

.help--dark .faq-body,
.help--dark .empty-state {
  color: rgba(255, 255, 255, 0.72);
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 24px;
  padding: 52px clamp(18px, 6vw, 72px) 86px;
  background: #111614;
  color: var(--white);
}

.footer h2 {
  max-width: 8ch;
  margin: 0 0 18px;
  font-family: "Prata", Georgia, serif;
  font-size: 3.8rem;
  font-weight: 400;
  line-height: 1.05;
}

.footer p {
  max-width: 500px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.6;
}

.footer__contacts {
  display: flex;
  gap: 10px;
}

.circle-button {
  width: 48px;
  height: 48px;
  color: var(--white);
}

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

.bottom-nav {
  display: none;
}

.dialog {
  width: min(720px, calc(100% - 28px));
  max-height: min(760px, calc(100vh - 28px));
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.dialog::backdrop {
  background: rgba(10, 18, 15, 0.72);
}

.dialog__head {
  position: sticky;
  z-index: 2;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.dialog__head h2 {
  margin: 0;
  font-family: "Prata", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 400;
}

.dialog__close {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
}

.dialog__body {
  max-height: calc(100vh - 110px);
  overflow: auto;
  padding: 24px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.75;
  white-space: pre-line;
}

.dialog__media {
  width: 100%;
  height: min(470px, 58vh);
  gap: 3px;
  margin-bottom: 24px;
  white-space: normal;
}

.dialog__media--1 { grid-template-columns: 1fr; }
.dialog__media--1 img { object-fit: contain; background: var(--paper); }
.dialog__media--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.dialog__media--3,
.dialog__media--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); }
.dialog__media--3 .media-grid__item:first-child { grid-row: 1 / -1; }
.dialog__text { white-space: pre-line; }

@media (max-width: 960px) {
  .hero h1 {
    font-size: 5rem;
  }

  .section__head h2,
  .editorial-copy h2,
  .excursion-copy h2 {
    font-size: 3.1rem;
  }

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

  .action-dock__item:nth-child(2) {
    border-right: 0;
  }

  .action-dock__item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

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

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

@media (max-width: 700px) {
  :root {
    --page-gutter: 16px;
    --section-space: 56px;
    --section-head-gap: 28px;
  }

  body {
    padding-bottom: 66px;
  }

  .shell {
    box-shadow: none;
  }

  .hero {
    min-height: 690px;
  }

  .hero__nav {
    padding: 16px 18px;
  }

  .brand-mark img {
    width: 44px;
    height: 44px;
  }

  .hero__links {
    display: none;
  }

  .hero__body {
    padding: 150px 18px 92px;
  }

  .hero h1 {
    max-width: 7ch;
    font-size: 4rem;
  }

  .action-dock__item {
    min-height: 66px;
    grid-template-columns: 28px 1fr;
    gap: 9px;
    padding: 8px 10px;
  }

  .action-dock__icon {
    width: 28px;
    height: 28px;
  }

  .action-dock small {
    display: none;
  }

  .section {
    padding: var(--section-space) var(--page-gutter);
  }

  .section--compact {
    padding-top: var(--section-space);
    padding-bottom: var(--section-space);
  }

  .section--compact .section__head {
    margin-bottom: var(--section-head-gap);
  }

  .stay-grid {
    gap: 12px;
  }

  .wifi-panel {
    padding: 20px;
  }

  .wifi-panel__content {
    margin-top: 17px;
  }

  .wifi-panel__values {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .wifi-panel__value strong {
    font-size: 1.5rem;
  }

  .benefit-strip {
    grid-template-columns: 1fr;
  }

  .section__head h2,
  .editorial-copy h2,
  .excursion-copy h2 {
    font-size: 2.35rem;
  }

  .excursion-media {
    width: calc(100% - 32px);
    max-width: calc(100% - 32px);
    min-height: 0;
    aspect-ratio: 5 / 3;
    margin: 0 16px;
  }

  .excursion-copy {
    padding: 54px 16px 28px;
  }

  .excursion-offer {
    min-height: 66px;
    margin: 0 16px;
    padding: 10px 14px;
  }

  .excursion-offer span {
    max-width: 15ch;
    font-size: 0.78rem;
    line-height: 1.35;
  }

  .excursion-offer strong {
    font-size: 2rem;
  }

  .excursion-actions {
    padding: 18px 16px 54px;
  }

  .excursion-actions .primary-button {
    width: 100%;
    margin-top: 0;
  }

  .editorial {
    gap: 24px;
  }

  .editorial-media {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .special-section { padding: 0 var(--page-gutter) var(--section-space); }
  .section--before-special { padding-bottom: 28px; }
  .special-promo__copy { padding: 24px 18px 28px; }
  .special-promo__copy h2 { font-size: 2.15rem; }
  .special-promo__gallery { gap: 7px; }
  .special-promo__gallery .media-grid__item { aspect-ratio: 4 / 3; }
  .special-promo__gallery--3 .media-grid__item:last-child { aspect-ratio: 16 / 9; }
  .special-promo__actions { width: 100%; }
  .special-promo__actions .text-button { flex: 1; min-width: 0; }
  .media-grid__label { right: 7px; bottom: 7px; left: 7px; max-width: calc(100% - 14px); }
  .dialog__media { height: 320px; }

  .safety-row {
    grid-template-columns: 1fr;
  }

  .safety-note {
    min-height: 108px;
    padding: 15px;
  }

  .safety-note h3 {
    margin-top: 18px;
  }

  .section-actions,
  .help-tools {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .contact-button {
    justify-content: center;
  }

  .faq-item summary {
    grid-template-columns: 38px 1fr 30px;
    gap: 10px;
  }

  .faq-body {
    padding: 0 0 24px 48px;
  }

  .footer {
    grid-template-columns: 1fr;
    padding-bottom: 42px;
  }

  .footer h2 {
    font-size: 2.6rem;
  }

  .bottom-nav {
    position: fixed;
    z-index: 40;
    left: 0;
    right: 0;
    bottom: 0;
    min-height: 66px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
  }

  .bottom-nav a {
    display: grid;
    place-items: center;
    align-content: center;
    gap: 4px;
    color: var(--muted);
    font-size: 0.6rem;
    font-weight: 700;
  }

  .bottom-nav a:hover,
  .bottom-nav a:focus-visible {
    color: var(--coral);
  }
}

@media (max-width: 370px) {
  .hero h1 {
    font-size: 3.35rem;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
