:root {
  --ink: #141414;
  --muted: #666b72;
  --line: #e6e1d8;
  --paper: #fbfaf7;
  --white: #ffffff;
  --brand: #af3d32;
  --brand-dark: #782920;
  --gold: #d69d46;
  --green: #4f4638;
  --shadow: 0 24px 80px rgba(20, 20, 20, .14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

[id] {
  scroll-margin-top: 112px;
}

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

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

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

.site-header {
  align-items: center;
  background: rgba(251, 250, 247, .88);
  border-bottom: 1px solid rgba(230, 225, 216, .8);
  display: flex;
  gap: 28px;
  justify-content: space-between;
  left: 0;
  min-height: 76px;
  padding: 12px clamp(18px, 4vw, 56px);
  position: fixed;
  right: 0;
  top: 0;
  transition: transform .24s ease, background .2s ease, box-shadow .2s ease;
  z-index: 20;
  backdrop-filter: blur(18px);
}

.brand img {
  height: 48px;
  width: auto;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: 8px;
}

.site-nav a,
.site-nav button {
  background: transparent;
  border: 0;
  border-radius: 999px;
  color: #2d2d2d;
  cursor: pointer;
  min-height: 42px;
  padding: 11px 15px;
}

.site-nav a:hover,
.site-nav button:hover {
  background: #efe9df;
}

.phone-link {
  background: var(--ink) !important;
  color: var(--white) !important;
}

.nav-toggle {
  background: var(--ink);
  border: 0;
  border-radius: 999px;
  color: var(--white);
  display: none;
  min-height: 42px;
  padding: 0 18px;
}

.hero {
  align-items: end;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  padding: 140px clamp(18px, 5vw, 72px) 56px;
  position: relative;
}

.hero::after {
  background: linear-gradient(90deg, rgba(11, 10, 8, .76), rgba(11, 10, 8, .18) 58%, rgba(11, 10, 8, .38));
  content: "";
  inset: 0;
  position: absolute;
}

.hero-media {
  inset: 0;
  position: absolute;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.hero-content,
.hero-panel {
  position: relative;
  z-index: 1;
}

.hero-content {
  color: var(--white);
  max-width: 820px;
}

.eyebrow,
.section-kicker,
.district {
  color: var(--gold);
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(54px, 8vw, 124px);
  line-height: .9;
  margin: 0;
  max-width: 760px;
}

.hero-copy {
  color: rgba(255, 255, 255, .86);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
  margin: 28px 0 0;
  max-width: 650px;
}

.hero-actions,
.contact-actions,
.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
}

.btn.primary {
  background: var(--brand);
  color: var(--white);
}

.btn.primary:hover {
  background: var(--brand-dark);
}

.btn.secondary {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .42);
  color: var(--white);
}

.contact-strip .btn.secondary,
.booking-band .btn.secondary {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}

.hero-panel {
  background: rgba(251, 250, 247, .92);
  border: 1px solid rgba(255, 255, 255, .48);
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: var(--ink);
  padding: 24px;
}

.hero-panel span,
.hero-panel small {
  color: var(--muted);
  display: block;
}

.hero-panel strong {
  display: block;
  font-size: 32px;
  margin: 8px 0;
}

.booking-band {
  align-items: center;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(180px, 260px) minmax(0, 1fr);
  padding: 20px clamp(18px, 5vw, 72px);
  transition: box-shadow .24s ease, padding .24s ease;
  z-index: 30;
}

.booking-band h2 {
  font-size: clamp(26px, 2.6vw, 36px);
  line-height: 1;
  margin: 0;
}

.section-head h2,
.contact-strip h2 {
  font-size: clamp(30px, 4vw, 58px);
  line-height: 1;
  margin: 0;
}

.booking-form {
  display: grid;
  gap: 12px;
  grid-template-columns: 1.2fr .92fr .92fr auto;
}

.booking-form label,
.modal-form label {
  display: grid;
  gap: 7px;
}

.booking-form span,
.modal-form span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.booking-form input,
.booking-form select,
.modal-form input,
.modal-form textarea {
  background: #f6f2eb;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  min-height: 50px;
  outline: 0;
  padding: 0 14px;
  width: 100%;
}

.booking-form .btn {
  min-height: 58px;
  padding-inline: 24px;
}

.modal-form textarea {
  min-height: 130px;
  padding-block: 12px;
  resize: vertical;
}

.booking-form input:focus,
.booking-form select:focus,
.modal-form input:focus,
.modal-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(36, 108, 99, .14);
}

@media (min-width: 761px) {
  .booking-band {
    position: sticky;
    top: 0;
  }

  .reserve-is-sticky .site-header {
    transform: translateY(-100%);
  }

  .reserve-is-sticky .booking-band {
    box-shadow: 0 18px 48px rgba(20, 20, 20, .12);
    padding-block: 12px;
  }

  .reserve-is-sticky .booking-band h2 {
    font-size: 26px;
  }

  .reserve-is-sticky .booking-form input,
  .reserve-is-sticky .booking-form select {
    min-height: 46px;
  }

  .reserve-is-sticky .booking-form .btn {
    min-height: 52px;
  }
}

.section {
  padding: 76px clamp(18px, 5vw, 72px);
}

.section-head {
  align-items: end;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 760px) minmax(240px, 420px);
  margin-bottom: 34px;
}

.section-head p,
.contact-strip p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
  margin: 0;
}

.section-hotels {
  background:
    linear-gradient(180deg, #fbfaf7 0%, #ffffff 42%, #f6f2eb 100%);
}

.hotels-head {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(175, 61, 50, .06), transparent 36%),
    linear-gradient(315deg, rgba(22, 45, 42, .05), transparent 42%),
    var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 58px rgba(20, 20, 20, .06);
  display: grid;
  gap: clamp(24px, 4vw, 54px);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  margin-bottom: 28px;
  overflow: hidden;
  padding: clamp(24px, 4vw, 42px);
  position: relative;
}

.hotels-head::before {
  background:
    linear-gradient(90deg, rgba(20, 20, 20, .045) 1px, transparent 1px),
    linear-gradient(rgba(20, 20, 20, .045) 1px, transparent 1px);
  background-size: 34px 34px;
  content: "";
  inset: 0;
  opacity: .35;
  pointer-events: none;
  position: absolute;
}

.hotels-head > * {
  position: relative;
  z-index: 1;
}

.hotels-title-block {
  align-content: center;
  display: grid;
  gap: 14px;
}

.hotels-title-block h2 {
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1;
  margin: 0;
  max-width: 720px;
}

.hotels-title-block > p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
  margin: 0;
  max-width: 690px;
}

.hotels-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hotels-summary span {
  background: #fbfaf7;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  padding: 10px 13px;
}

.hotels-nav {
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
  padding-top: 16px;
}

.hotels-nav a {
  background: var(--ink);
  border-radius: 999px;
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  min-height: 38px;
  padding: 10px 13px;
}

.hotels-nav a:hover {
  background: var(--brand);
}

.location-summary {
  background:
    linear-gradient(145deg, rgba(214, 157, 70, .18), transparent 42%),
    linear-gradient(315deg, rgba(175, 61, 50, .18), transparent 48%),
    #2b2721;
  border: 1px solid rgba(214, 157, 70, .2);
  border-radius: 8px;
  box-shadow: 0 22px 62px rgba(20, 20, 20, .16);
  color: var(--white);
  display: grid;
  gap: 18px;
  padding: clamp(20px, 3vw, 28px);
}

.location-summary-head {
  display: grid;
  gap: 8px;
}

.location-summary-head span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.location-summary-head strong {
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.1;
}

.zone-list {
  display: grid;
  gap: 10px;
}

.zone-list a {
  --zone-color: var(--gold);
  align-items: center;
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--zone-color) 24%, transparent), transparent 56%),
    rgba(255, 255, 255, .08);
  border: 1px solid color-mix(in srgb, var(--zone-color) 44%, rgba(255, 255, 255, .16));
  border-radius: 8px;
  color: var(--white);
  display: grid;
  gap: 12px;
  grid-template-columns: auto minmax(0, 1fr);
  padding: 13px;
}

.zone-list a:nth-child(1) {
  --zone-color: #1565C0;
}

.zone-list a:nth-child(2) {
  --zone-color: #2E7D32;
}

.zone-list a:nth-child(3) {
  --zone-color: #EF6C00;
}

.zone-list a:hover {
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--zone-color) 32%, transparent), transparent 62%),
    rgba(255, 255, 255, .14);
  transform: translateY(-1px);
}

.zone-list a > span {
  align-items: center;
  background: var(--zone-color);
  border-radius: 50%;
  color: var(--white);
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.zone-list strong {
  display: block;
  font-size: 16px;
  line-height: 1.2;
}

.zone-list small {
  color: rgba(255, 255, 255, .76);
  display: block;
  font-size: 13px;
  line-height: 1.35;
  margin-top: 3px;
}

.location-summary .btn {
  justify-self: start;
}

.hotel-feature-list {
  display: grid;
  gap: 18px;
}

.hotel-feature {
  --district-color: #AF3D32;
  --district-soft: color-mix(in srgb, var(--district-color) 10%, #ffffff);
  --district-line: color-mix(in srgb, var(--district-color) 34%, var(--line));
  background: var(--white);
  border: 1px solid var(--district-line);
  border-top: 5px solid var(--district-color);
  border-radius: 8px;
  box-shadow: 0 14px 42px rgba(20, 20, 20, .06);
  display: grid;
  gap: 0;
  grid-template-columns: minmax(300px, 390px) minmax(0, 1fr);
  overflow: hidden;
  padding: 0;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.district-surco {
  --district-color: #1565C0;
}

.district-rimac {
  --district-color: #2E7D32;
}

.district-victoria {
  --district-color: #EF6C00;
}

.hotel-feature:hover {
  border-color: color-mix(in srgb, var(--district-color) 44%, var(--line));
  box-shadow: 0 24px 80px rgba(20, 20, 20, .1);
  transform: translateY(-2px);
}

.hotel-feature:nth-child(even) {
  grid-template-columns: minmax(300px, 390px) minmax(0, 1fr);
}

.hotel-feature:nth-child(even) .hotel-gallery {
  order: 0;
}

.hotel-gallery {
  background: #151515;
  display: grid;
  gap: 2px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: 100%;
  overflow: hidden;
}

.hotel-gallery img {
  height: 100%;
  min-height: 120px;
  object-fit: cover;
  width: 100%;
}

.hotel-gallery .main-photo {
  grid-column: 1 / -1;
  min-height: 285px;
}

.hotel-info {
  align-content: center;
  display: grid;
  gap: 12px;
  padding: clamp(20px, 3vw, 34px);
}

.hotel-info .district {
  color: var(--district-color);
  margin-bottom: 0;
}

.hotel-info h3 {
  font-size: clamp(28px, 2.6vw, 38px);
  line-height: 1;
  margin: 0;
}

.hotel-info p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
  max-width: 760px;
}

.hotel-address {
  color: var(--ink) !important;
  font-weight: 800;
  margin-top: -4px !important;
}

.hotel-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0;
  padding: 0;
}

.hotel-meta span {
  background: #f6f2eb;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #343434;
  font-size: 13px;
  font-weight: 800;
  list-style: none;
  padding: 9px 12px;
}

.hotel-meta span:first-child {
  background: var(--district-soft);
  border-color: color-mix(in srgb, var(--district-color) 32%, var(--line));
  color: color-mix(in srgb, var(--district-color) 78%, #111111);
}

.room-list {
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--district-color) 9%, transparent), transparent 46%),
    linear-gradient(180deg, #fbfaf7, #f8f5ef);
  border: 1px solid color-mix(in srgb, var(--district-color) 18%, var(--line));
  border-radius: 8px;
  display: grid;
  gap: 7px;
  padding: 13px 14px;
}

.room-list strong {
  color: var(--district-color);
  font-size: 14px;
  text-transform: uppercase;
}

.visit-panel {
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--district-color) 7%, transparent), transparent 42%),
    #fbfaf7;
  border: 1px solid color-mix(in srgb, var(--district-color) 20%, var(--line));
  border-radius: 8px;
  margin-top: 2px;
  overflow: hidden;
}

.visit-panel summary {
  color: var(--ink);
  cursor: pointer;
  font-weight: 800;
  list-style: none;
  padding: 16px;
}

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

.visit-panel summary::after {
  color: var(--district-color);
  content: "+";
  float: right;
  font-size: 20px;
  line-height: .8;
}

.visit-panel[open] summary::after {
  content: "-";
}

.visit-body {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(190px, .9fr) minmax(0, 1.1fr);
}

.visit-body iframe {
  border: 0;
  height: 100%;
  min-height: 280px;
  width: 100%;
}

.visit-body > div {
  align-content: center;
  display: grid;
  gap: 12px;
  padding: 22px 22px 22px 0;
}

.visit-body span {
  color: var(--ink);
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.visit-body span::first-letter {
  color: var(--district-color);
}

.visit-body p {
  font-size: 14px;
}

.nearby-list {
  color: var(--muted);
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

.nearby-list li {
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.card-actions a,
.card-actions button {
  background: #f6f2eb;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  cursor: pointer;
  font-weight: 800;
  min-height: 42px;
  padding: 10px 14px;
}

.hotel-info .card-actions {
  margin-top: 4px;
}

.hotel-info .card-actions button:first-child {
  background: var(--district-color);
  border-color: var(--district-color);
  color: var(--white);
}

.hotel-info .card-actions button:first-child:hover {
  background: color-mix(in srgb, var(--district-color) 78%, #111111);
}

.card-actions a:hover,
.card-actions button:hover {
  background: var(--ink);
  color: var(--white);
}

@supports not (color: color-mix(in srgb, #000 50%, #fff)) {
  .zone-list a {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .22);
  }

  .zone-list a:hover {
    background: rgba(255, 255, 255, .16);
  }

  .hotel-feature {
    --district-soft: #fbfaf7;
    --district-line: var(--line);
  }

  .hotel-feature:hover,
  .hotel-meta span:first-child {
    border-color: var(--district-color);
  }

  .hotel-meta span:first-child {
    background: #fbfaf7;
    color: var(--district-color);
  }

  .room-list,
  .visit-panel {
    border-color: var(--line);
  }

  .hotel-info .card-actions button:first-child:hover {
    filter: brightness(.86);
  }
}

.services-band {
  background:
    linear-gradient(135deg, rgba(175, 61, 50, .2), transparent 34%),
    linear-gradient(225deg, rgba(214, 157, 70, .18), transparent 32%),
    #162d2a;
  color: var(--white);
  overflow: hidden;
  position: relative;
}

.services-band::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
  inset: 0;
  opacity: .34;
  position: absolute;
}

.services-layout {
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(280px, .82fr) minmax(360px, 1.18fr);
  position: relative;
  z-index: 1;
}

.services-copy {
  align-content: start;
  display: grid;
  gap: 22px;
}

.services-copy h2 {
  font-size: clamp(34px, 5vw, 66px);
  line-height: .98;
  margin: 0;
  max-width: 680px;
}

.services-copy p {
  color: rgba(255, 255, 255, .78);
  font-size: 18px;
  line-height: 1.55;
  margin: 0;
  max-width: 520px;
}

.service-highlight {
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .17);
  border-radius: 8px;
  display: grid;
  gap: 6px;
  margin-top: 8px;
  padding: 20px;
}

.service-highlight strong {
  color: var(--gold);
  font-size: 22px;
}

.service-highlight span {
  color: rgba(255, 255, 255, .78);
  line-height: 1.45;
}

.service-visual {
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .26);
  min-height: 260px;
  overflow: hidden;
  position: relative;
}

.service-visual::after {
  background: linear-gradient(180deg, transparent 44%, rgba(0, 0, 0, .48));
  content: "";
  inset: 0;
  position: absolute;
}

.service-visual img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.service-visual span {
  background: rgba(17, 19, 19, .68);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  bottom: 16px;
  color: rgba(255, 255, 255, .9);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  padding: 9px 12px;
  position: absolute;
  right: 16px;
  text-transform: uppercase;
  z-index: 1;
  backdrop-filter: blur(10px);
}

.section-head.compact {
  display: block;
  max-width: 720px;
}

.service-grid {
  display: grid;
  gap: 14px;
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 8px;
}

.service-card {
  align-items: start;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  display: grid;
  gap: 18px;
  grid-template-columns: 52px minmax(0, 1fr);
  min-height: 142px;
  padding: 20px;
  transition: background .2s ease, transform .2s ease, border-color .2s ease;
}

.service-card:hover {
  background: rgba(255, 255, 255, .16);
  border-color: rgba(214, 157, 70, .56);
  transform: translateY(-4px);
}

.service-card img {
  background: rgba(255, 255, 255, .92);
  border-radius: 8px;
  height: 52px;
  object-fit: contain;
  padding: 10px;
  width: 52px;
}

.service-card h3 {
  color: var(--white);
  font-size: 19px;
  line-height: 1.15;
  margin: 0;
}

.service-card p {
  color: rgba(255, 255, 255, .68);
  line-height: 1.45;
  margin: 8px 0 0;
}

.contact-strip {
  align-items: center;
  background: var(--white);
  border-top: 1px solid var(--line);
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) auto;
}

.site-footer {
  background: #111313;
  color: rgba(255, 255, 255, .78);
  overflow: hidden;
}

.footer-showcase {
  display: grid;
  grid-template-columns: 1.2fr .9fr .9fr 1.1fr;
  min-height: 260px;
}

.footer-showcase img {
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  width: 100%;
}

.footer-main {
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(280px, 1.15fr) minmax(220px, .85fr) minmax(240px, .75fr);
  padding: 58px clamp(18px, 5vw, 72px);
  position: relative;
}

.footer-main::before {
  background: linear-gradient(90deg, var(--brand), var(--gold), var(--green));
  content: "";
  height: 4px;
  left: clamp(18px, 5vw, 72px);
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  top: 0;
}

.footer-brand img {
  background: var(--white);
  border-radius: 8px;
  height: 58px;
  padding: 5px;
  width: max-content;
}

.footer-brand p {
  color: rgba(255, 255, 255, .76);
  font-size: 18px;
  line-height: 1.55;
  margin: 24px 0 0;
  max-width: 520px;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.footer-badges span {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  color: rgba(255, 255, 255, .86);
  font-size: 13px;
  font-weight: 800;
  padding: 10px 12px;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 12px;
  align-content: start;
}

.footer-links h2,
.footer-contact h2 {
  color: var(--white);
  font-size: 18px;
  margin: 0 0 8px;
}

.footer-links a,
.footer-contact a,
.footer-bottom a {
  color: rgba(255, 255, 255, .76);
}

.footer-links a:hover,
.footer-contact a:hover,
.footer-bottom a:hover {
  color: var(--white);
}

.footer-contact .btn {
  justify-self: start;
  margin-top: 8px;
}

.footer-bottom {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  padding: 22px clamp(18px, 5vw, 72px);
}

.footer-bottom p {
  margin: 0;
}

.footer-credits {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-credits a:last-child {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  color: var(--white);
  font-weight: 800;
  padding: 10px 14px;
}

.modal {
  align-items: center;
  background: rgba(20, 20, 20, .58);
  display: none;
  inset: 0;
  justify-content: center;
  padding: 20px;
  position: fixed;
  z-index: 40;
}

.modal.is-open {
  display: flex;
}

.modal-dialog {
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
  max-height: calc(100vh - 40px);
  max-width: 560px;
  overflow: auto;
  padding: 28px;
  position: relative;
  width: min(100%, 560px);
}

.map-dialog {
  max-width: 920px;
  width: min(100%, 920px);
}

.modal-dialog h2 {
  font-size: 32px;
  margin: 0 0 18px;
}

.modal-close {
  background: #f2eee8;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  height: 38px;
  position: absolute;
  right: 18px;
  top: 18px;
  width: 38px;
}

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

.form-note {
  color: var(--muted);
  line-height: 1.45;
  margin: 0;
}

#mapFrame {
  border: 0;
  border-radius: 8px;
  height: min(62vh, 560px);
  width: 100%;
}

@media (max-width: 1020px) {
  .hero,
  .booking-band,
  .section-head,
  .hotels-head,
  .contact-strip {
    grid-template-columns: 1fr;
  }

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

  .hotels-head {
    padding: 28px;
  }

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

  .hotel-feature,
  .hotel-feature:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .hotel-feature:nth-child(even) .hotel-gallery {
    order: 0;
  }

  .hotel-feature {
    padding: 0;
  }

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

  .service-visual {
    min-height: 320px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 78px;
  }

  [id] {
    scroll-margin-top: 78px;
  }

  .site-header {
    min-height: 62px;
    padding: 9px 16px;
  }

  .brand img {
    height: 40px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    min-height: 38px;
    padding-inline: 15px;
  }

  .site-nav {
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    display: none;
    left: 0;
    padding: 12px 18px 18px;
    position: absolute;
    right: 0;
    top: 62px;
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a,
  .site-nav button {
    justify-content: flex-start;
    text-align: left;
    width: 100%;
  }

  .hero {
    align-items: end;
    gap: 14px;
    min-height: 100vh;
    min-height: 100svh;
    padding: 92px 16px 24px;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(11, 10, 8, .28), rgba(11, 10, 8, .72) 46%, rgba(11, 10, 8, .62));
  }

  .hero-media img {
    object-position: 57% center;
  }

  .hero h1 {
    font-size: clamp(39px, 12vw, 50px);
    line-height: .94;
    max-width: 310px;
  }

  .hero-copy {
    font-size: 15px;
    line-height: 1.42;
    margin-top: 14px;
    max-width: 310px;
  }

  .hero-actions {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 18px;
    max-width: 310px;
  }

  .hero-actions .btn {
    font-size: 14px;
    min-height: 44px;
    padding-inline: 10px;
    width: 100%;
  }

  .hero-panel {
    box-shadow: 0 18px 42px rgba(20, 20, 20, .18);
    max-width: 310px;
    padding: 16px 18px;
    width: 100%;
  }

  .hero-panel strong {
    font-size: 24px;
    margin: 5px 0;
  }

  .hero-panel span,
  .hero-panel small {
    font-size: 13px;
  }

  .booking-form,
  .hotel-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .booking-band {
    padding-block: 28px;
  }

  .booking-band h2 {
    font-size: 32px;
  }

  .booking-form .btn {
    min-height: 52px;
  }

  .hotels-head {
    padding: 16px;
  }

  .hotels-title-block h2 {
    font-size: 34px;
  }

  .location-summary {
    gap: 14px;
    padding: 18px;
  }

  .location-summary-head strong {
    font-size: 22px;
  }

  .zone-list a {
    gap: 10px;
    padding: 12px;
  }

  .zone-list small {
    font-size: 12px;
  }

  .location-summary .btn {
    justify-self: stretch;
  }

  .hotel-gallery {
    min-height: auto;
  }

  .hotel-gallery .main-photo {
    min-height: 230px;
  }

  .hotel-gallery img {
    min-height: 135px;
  }

  .hotels-nav a {
    flex: 1 1 auto;
    text-align: center;
  }

  .hotel-info .card-actions button {
    width: 100%;
  }

  .visit-panel {
    grid-template-columns: 1fr;
  }

  .visit-body {
    grid-template-columns: 1fr;
  }

  .visit-body > div {
    padding: 0 18px 18px;
  }

  .visit-body iframe {
    min-height: 210px;
  }

  .services-copy h2 {
    font-size: 38px;
  }

  .service-visual {
    min-height: 220px;
  }

  .service-card {
    min-height: auto;
  }

  .section {
    padding-block: 58px;
  }

  .booking-band {
    padding-block: 34px;
  }

  .contact-actions {
    width: 100%;
  }

  .contact-actions .btn {
    width: 100%;
  }

  .footer-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: auto;
  }

  .footer-showcase img {
    min-height: 150px;
  }

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

  .footer-brand {
    grid-column: auto;
  }

  .footer-contact .btn {
    width: 100%;
  }
}

@media (max-width: 760px) and (max-height: 700px) {
  .hero {
    gap: 10px;
    padding-bottom: 16px;
    padding-top: 84px;
  }

  .hero h1 {
    font-size: clamp(36px, 11vw, 45px);
  }

  .hero-copy {
    font-size: 14px;
    line-height: 1.35;
    margin-top: 10px;
  }

  .hero-actions {
    margin-top: 14px;
  }

  .hero-actions .btn {
    min-height: 42px;
  }

  .hero-panel {
    padding: 14px 16px;
  }

  .hero-panel strong {
    font-size: 22px;
  }
}
