:root {
  color-scheme: light;
  --ink: #15313a;
  --ink-soft: #476067;
  --sea: #0f7c80;
  --sea-dark: #0b585e;
  --coral: #d96d52;
  --leaf: #516b43;
  --sun: #c49345;
  --sand: #f7f2e8;
  --mist: #edf6f4;
  --line: #d9e2df;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(21, 49, 58, 0.14);
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-heading: "Cormorant Garamond", Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

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

button {
  cursor: pointer;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px 32px;
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid currentColor;
  border-radius: 8px;
  font-size: 12px;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
}

.site-nav a,
.header-cta,
.language-toggle {
  text-decoration: none;
}

.site-nav a {
  opacity: 0.9;
}

.site-nav a:hover {
  opacity: 1;
}

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

.header-cta,
.language-toggle {
  padding: 10px 14px;
  border: 1px solid currentColor;
  border-radius: 8px;
  background: transparent;
  color: currentColor;
  font-size: 14px;
  font-weight: 700;
}

.language-toggle {
  min-width: 76px;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 132px 32px 56px;
}

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

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

.hero__shade {
  background:
    linear-gradient(90deg, rgba(8, 30, 35, 0.76), rgba(8, 30, 35, 0.34) 52%, rgba(8, 30, 35, 0.1)),
    linear-gradient(0deg, rgba(8, 30, 35, 0.5), rgba(8, 30, 35, 0.08) 42%);
}

.hero__content {
  position: relative;
  max-width: 760px;
  color: var(--white);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero .eyebrow {
  color: #ffd0b8;
}

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

h1 {
  max-width: 680px;
  margin-bottom: 18px;
  font-family: var(--font-heading);
  font-size: 70px;
  line-height: 0.94;
  font-weight: 500;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-family: var(--font-heading);
  font-size: 48px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-family: var(--font-heading);
  font-size: 25px;
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: 0;
}

.hero__lead {
  max-width: 620px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 19px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.1;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button--primary {
  background: var(--coral);
  color: var(--white);
}

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

.button--quiet {
  border-color: rgba(255, 255, 255, 0.72);
  color: var(--white);
}

.button--secondary {
  border-color: var(--sea);
  color: var(--sea-dark);
  background: transparent;
}

.button--full {
  width: 100%;
}

.hero__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 680px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
}

.hero__facts div {
  padding: 16px;
  background: rgba(8, 30, 35, 0.14);
}

.hero__facts dt {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero__facts dd {
  margin: 0;
  font-weight: 800;
}

.section {
  padding: 86px 32px;
}

.section__inner {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.section--intro {
  background: var(--white);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  align-items: center;
  gap: 56px;
}

.split--intro {
  align-items: start;
}

.intro-copy {
  color: var(--ink-soft);
  font-size: 18px;
}

.intro-copy p:last-child {
  margin-bottom: 0;
}

.section--snapshot {
  padding-top: 0;
  background: var(--white);
}

.snapshot-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.snapshot-card {
  min-height: 220px;
  padding: 24px;
  border-right: 1px solid var(--line);
  background: var(--white);
}

.snapshot-card:last-child {
  border-right: 0;
}

.snapshot-card__label {
  display: block;
  margin-bottom: 14px;
  color: var(--sea);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.snapshot-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.2;
}

.snapshot-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section--gallery .section-heading p:last-child {
  max-width: 640px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 18px;
}

.section--gallery {
  background: linear-gradient(180deg, var(--white) 0%, #f8fbfa 100%);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 190px;
  gap: 14px;
}

.photo-card {
  position: relative;
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: 8px;
  overflow: hidden;
  background: var(--mist);
  color: var(--white);
  box-shadow: 0 18px 44px rgba(21, 49, 58, 0.1);
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease, filter 420ms ease;
}

.photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 30, 35, 0) 42%, rgba(8, 30, 35, 0.62) 100%),
    linear-gradient(90deg, rgba(8, 30, 35, 0.08), rgba(8, 30, 35, 0));
  opacity: 0.82;
  transition: opacity 220ms ease;
}

.photo-card:hover img {
  filter: saturate(1.04);
  transform: scale(1.035);
}

.photo-card:hover::after {
  opacity: 0.9;
}

.photo-card span {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 1;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  text-shadow: 0 2px 16px rgba(8, 30, 35, 0.5);
}

.photo-card--feature {
  grid-column: span 2;
  grid-row: span 2;
}

.photo-card--feature span {
  left: 24px;
  bottom: 22px;
  font-size: 34px;
}

.photo-card--wide {
  grid-column: span 2;
}

.photo-card--tall {
  grid-row: span 2;
}

.gallery-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--mist);
  color: var(--ink-soft);
}

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

.video-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.48fr);
  align-items: center;
  gap: 56px;
}

.video-layout p {
  color: var(--ink-soft);
  font-size: 18px;
}

.video-frame {
  justify-self: center;
  width: min(360px, 100%);
  border-radius: 8px;
  overflow: hidden;
  background: #07181d;
  box-shadow: var(--shadow);
}

.video-frame video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
}

.is-hidden {
  display: none !important;
}

.section--amenities,
.section--rules {
  background: var(--sand);
}

.amenity-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.amenity-group {
  padding: 26px;
  border: 1px solid rgba(21, 49, 58, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--ink-soft);
}

.check-list li {
  position: relative;
  padding-left: 25px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 12px;
  height: 8px;
  border-left: 2px solid var(--leaf);
  border-bottom: 2px solid var(--leaf);
  transform: rotate(-45deg);
}

.section--booking {
  background: var(--ink);
  color: var(--white);
}

.section--booking .section-kicker {
  color: #ffd0b8;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.68fr);
  gap: 56px;
  align-items: start;
}

.booking-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 32px 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  overflow: hidden;
}

.trust-row div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.trust-row strong {
  display: block;
  color: var(--white);
  font-size: 30px;
  line-height: 1;
}

.trust-row div > span,
.small-note,
.form-help {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.booking-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.booking-form__header {
  display: grid;
  gap: 4px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.booking-form__header span {
  color: var(--coral);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.booking-form__header strong {
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 31px;
  font-weight: 600;
  line-height: 1;
}

.booking-form__header p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.form-row {
  display: grid;
  gap: 14px;
}

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

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  padding: 10px 12px;
}

textarea {
  min-height: 112px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(15, 124, 128, 0.28);
  outline-offset: 2px;
}

.snapshot-card,
.amenity-group,
.rules-grid article,
.booking-form,
.review-slide {
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

@media (hover: hover) {
  .snapshot-card:hover,
  .amenity-group:hover,
  .rules-grid article:hover {
    border-color: rgba(15, 124, 128, 0.28);
    box-shadow: 0 16px 38px rgba(21, 49, 58, 0.09);
    transform: translateY(-2px);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .reveal-on-scroll {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 620ms ease, transform 620ms ease, box-shadow 220ms ease, border-color 220ms ease;
  }

  .reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}

.booking-summary {
  display: block;
  padding: 12px;
  border-radius: 8px;
  background: var(--mist);
  color: var(--sea-dark);
  font-weight: 700;
}

.availability-status {
  margin: -4px 0 0;
  padding: 10px 12px;
  border-radius: 8px;
  background: var(--mist);
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
}

.availability-status.is-ready {
  background: #edf6f4;
  color: var(--sea-dark);
}

.availability-status.is-warning {
  background: #fff4ed;
  color: #9b412e;
}

.availability-status.is-blocked {
  background: #fff1ef;
  color: #a13624;
}

.availability-calendar {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfc;
}

.availability-calendar__header {
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  align-items: center;
  gap: 10px;
}

.availability-calendar__header strong {
  text-align: center;
  font-size: 14px;
  text-transform: uppercase;
}

.availability-calendar__nav {
  display: grid;
  place-items: center;
  width: 40px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
}

.availability-calendar__months {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.availability-month h4 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.2;
  text-transform: capitalize;
}

.availability-month__grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 4px;
}

.availability-month__weekday {
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 800;
  text-align: center;
}

.availability-day {
  min-width: 0;
  min-height: 32px;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.availability-day:not(:disabled):hover {
  border-color: var(--sea);
  color: var(--sea-dark);
}

.availability-day.is-in-range {
  background: var(--mist);
}

.availability-day.is-selected {
  background: var(--sea);
  color: var(--white);
}

.availability-day.is-blocked,
.availability-day.is-past {
  background: #f1e7df;
  color: rgba(21, 49, 58, 0.42);
  text-decoration: line-through;
}

.availability-day--empty {
  min-height: 32px;
  background: transparent;
  border-color: transparent;
}

.availability-calendar__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
}

.availability-calendar__legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.availability-calendar__legend i {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
}

.availability-calendar__legend span:nth-child(2) i {
  background: #f1e7df;
}

.availability-calendar__legend span:nth-child(3) i {
  background: var(--sea);
  border-color: var(--sea);
}

.form-help {
  margin: 0;
  color: var(--ink-soft);
}

.form-result {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--sand);
}

.form-result p {
  color: var(--ink-soft);
  white-space: pre-wrap;
}

.section--reviews {
  background: var(--sand);
}

.review-note {
  color: var(--ink-soft);
}

.reviews-grid {
  display: block;
}

.reviews-carousel {
  display: grid;
  gap: 24px;
  max-width: 920px;
  margin: 0 auto;
}

.review-slide {
  position: relative;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 20px;
  min-height: 360px;
  padding: 56px clamp(28px, 7vw, 92px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  text-align: center;
  overflow: hidden;
}

.review-slide::before {
  content: "“";
  position: absolute;
  top: -36px;
  left: 28px;
  color: rgba(15, 124, 128, 0.12);
  font-family: var(--font-heading);
  font-size: 190px;
  line-height: 1;
}

.review-slide__rating {
  position: relative;
  color: var(--sun);
  font-size: 15px;
  letter-spacing: 0;
}

.review-slide__quote {
  position: relative;
  max-width: 720px;
  margin-bottom: 0;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 500;
  line-height: 1.12;
}

.review-slide__meta {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 4px;
  margin-top: 26px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 800;
}

.review-slide__meta span {
  color: var(--sea-dark);
  font-size: 13px;
  text-transform: uppercase;
}

.review-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.review-arrow,
.review-dot {
  display: grid;
  place-items: center;
  border-radius: 999px;
}

.review-arrow {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font-size: 30px;
  line-height: 1;
}

.review-arrow:hover {
  border-color: var(--sea);
  color: var(--sea-dark);
}

.review-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.review-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  background: rgba(21, 49, 58, 0.22);
}

.review-dot.is-active {
  width: 28px;
  background: var(--sea);
}

.review-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--mist);
  color: var(--ink-soft);
}

.location-carousel {
  display: grid;
  gap: 12px;
}

.location-carousel__frame {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--mist);
}

.location-carousel__frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 420ms ease;
}

.location-carousel__frame:hover img {
  transform: scale(1.02);
}

.location-carousel__button {
  position: absolute;
  top: 50%;
  display: grid;
  place-items: center;
  width: 42px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 8px;
  background: rgba(8, 30, 35, 0.7);
  color: var(--white);
  font-size: 38px;
  line-height: 1;
  transform: translateY(-50%);
}

.location-carousel__button--prev {
  left: 10px;
}

.location-carousel__button--next {
  right: 10px;
}

.location-carousel__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--ink-soft);
  font-size: 14px;
}

.location-carousel__meta strong {
  color: var(--ink);
}

.rules-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(21, 49, 58, 0.12);
  border-radius: 8px;
  overflow: hidden;
}

.rules-grid article {
  min-height: 168px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.68);
}

.rules-grid p {
  margin: 0;
  color: var(--ink-soft);
}

.text-link {
  display: inline-block;
  color: var(--sea-dark);
  font-weight: 800;
}

.site-footer {
  padding: 56px 32px;
  background:
    linear-gradient(180deg, rgba(16, 38, 45, 0.96), rgba(9, 27, 33, 1)),
    #10262d;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.6fr 0.9fr 0.8fr;
  gap: 32px;
  align-items: start;
}

.footer-brand > strong {
  display: block;
  margin-bottom: 12px;
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 600;
  line-height: 1;
}

.site-footer p,
.site-footer a,
.footer-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer a {
  display: block;
  width: fit-content;
  margin-top: 8px;
  text-decoration: none;
  transition: color 160ms ease, transform 160ms ease;
}

.site-footer a:hover {
  color: var(--white);
  transform: translateX(2px);
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 2px;
}

.footer-links > span {
  margin-bottom: 8px;
  color: #ffd0b8;
  font-size: 12px;
  text-transform: uppercase;
}

.footer-note + .footer-note {
  margin-top: 8px;
}

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
}

.photo-dialog {
  width: min(960px, calc(100% - 32px));
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.photo-dialog::backdrop {
  background: rgba(8, 30, 35, 0.72);
}

.photo-dialog img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  background: #07181d;
}

.photo-dialog p {
  margin: 0;
  padding: 12px 16px 16px;
}

.dialog-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  background: rgba(8, 30, 35, 0.72);
  color: var(--white);
  font-size: 30px;
  line-height: 1;
}

.dialog-nav {
  position: absolute;
  top: 50%;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 44px;
  height: 56px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  background: rgba(8, 30, 35, 0.72);
  color: var(--white);
  font-size: 44px;
  line-height: 1;
  transform: translateY(-50%);
}

.dialog-nav--prev {
  left: 10px;
}

.dialog-nav--next {
  right: 10px;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 14px 20px;
  }

  .site-nav {
    display: none;
  }

  .hero {
    min-height: 88vh;
    padding: 112px 20px 40px;
  }

  h1 {
    font-size: 54px;
  }

  h2 {
    font-size: 40px;
  }

  .section {
    padding: 66px 20px;
  }

  .split,
  .booking-layout,
  .video-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .snapshot-grid,
  .amenity-columns,
  .rules-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .availability-calendar__months {
    grid-template-columns: 1fr;
  }

  .review-slide__quote {
    font-size: 32px;
  }

  .snapshot-card:nth-child(2),
  .snapshot-card:nth-child(4) {
    border-right: 0;
  }

  .snapshot-card:nth-child(1),
  .snapshot-card:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 210px;
  }

  .photo-card--feature {
    grid-column: span 2;
    grid-row: span 2;
  }
}

@media (max-width: 640px) {
  .site-header {
    gap: 10px;
  }

  .brand span:last-child {
    display: none;
  }

  .header-cta {
    padding: 9px 10px;
    font-size: 13px;
  }

  .language-toggle {
    min-width: 62px;
    padding: 9px 10px;
    font-size: 13px;
  }

  .hero {
    min-height: 90vh;
    padding-bottom: 28px;
  }

  .hero__shade {
    background:
      linear-gradient(0deg, rgba(8, 30, 35, 0.78), rgba(8, 30, 35, 0.18)),
      rgba(8, 30, 35, 0.18);
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 34px;
  }

  .hero__lead,
  .intro-copy {
    font-size: 16px;
  }

  .hero__facts,
  .trust-row,
  .snapshot-grid,
  .amenity-columns,
  .rules-grid,
  .footer-grid,
  .form-row--two {
    grid-template-columns: 1fr;
  }

  .booking-form {
    padding: 22px;
  }

  .booking-form__header strong {
    font-size: 28px;
  }

  .availability-calendar {
    padding: 14px;
  }

  .availability-calendar__header {
    grid-template-columns: 36px 1fr 36px;
  }

  .availability-calendar__nav {
    width: 36px;
    height: 36px;
  }

  .hero__facts div,
  .trust-row div {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .hero__facts div:last-child,
  .trust-row div:last-child {
    border-bottom: 0;
  }

  .snapshot-card,
  .snapshot-card:nth-child(2),
  .snapshot-card:nth-child(4) {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .snapshot-card:last-child {
    border-bottom: 0;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }

  .photo-card--wide,
  .photo-card--feature,
  .photo-card--tall {
    grid-column: auto;
    grid-row: auto;
  }

  .photo-card span,
  .photo-card--feature span {
    left: 16px;
    bottom: 14px;
    font-size: 24px;
  }

  .video-frame {
    width: min(320px, 100%);
  }

  .review-slide {
    min-height: auto;
    padding: 40px 22px;
  }

  .review-slide::before {
    top: -24px;
    left: 12px;
    font-size: 132px;
  }

  .review-slide__quote {
    font-size: 28px;
  }

  .review-controls {
    gap: 12px;
  }

  .review-arrow {
    width: 40px;
    height: 40px;
  }

  .location-carousel__button {
    width: 38px;
    height: 48px;
    font-size: 34px;
  }

  .dialog-nav {
    width: 38px;
    height: 48px;
    font-size: 36px;
  }
}
