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

:root {
  --paper: #f2f2f2;
  --white: #ffffff;
  --ink: #25262b;
  --navy: #293649;
  --cta: #1792a2;
  --teal-dark: #0e5573;
  --teal-light: #50bcb4;
  --green: #145c52;
  --muted: #808f92;
  --line: rgba(41, 54, 73, 0.22);
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Manrope", system-ui, sans-serif;
  --gutter: clamp(20px, 4vw, 60px);
  --max: 1320px;
  --radius-pill: 999px;
  --radius-img: 8px;
}

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

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

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select {
  font: inherit;
}

.section-title {
  margin: 0 0 48px;
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
  color: var(--navy);
}

.section-title--left {
  text-align: left;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 36px;
  border: 0;
  border-radius: var(--radius-pill);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, opacity 0.2s;
}

.btn:hover {
  opacity: 1;
}

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

.btn--cta:hover {
  background: var(--teal-dark);
}

.btn--light {
  background: var(--white);
  color: var(--navy);
}

.btn--light:hover {
  background: var(--teal-light);
  color: var(--navy);
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 24px var(--gutter);
  color: var(--white);
  background: linear-gradient(180deg, rgba(41, 54, 73, 0.72) 0%, rgba(41, 54, 73, 0) 100%);
  transition: background 0.25s, box-shadow 0.25s;
}

.site-header.is-scrolled {
  background: rgba(41, 54, 73, 0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(41, 54, 73, 0.18);
}

.site-header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-header__logo img {
  width: 36px;
  height: auto;
  filter: brightness(0) invert(1);
}

.site-header__nav {
  display: flex;
  gap: 32px;
  justify-content: center;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-header__nav a:hover {
  color: var(--teal-light);
}

.site-header__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-self: end;
  min-height: 42px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: border-color 0.2s, background 0.2s;
}

.site-header__phone:hover {
  border-color: var(--teal-light);
  background: rgba(23, 146, 162, 0.18);
}

/* Hero */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  min-height: 100svh;
  padding: 132px var(--gutter) 56px;
  color: var(--white);
  text-align: center;
  background: var(--navy);
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(41, 54, 73, 0.78) 0%,
      rgba(41, 54, 73, 0.38) 38%,
      rgba(14, 85, 115, 0.22) 68%,
      rgba(37, 38, 43, 0.88) 100%
    ),
    rgba(41, 54, 73, 0.18);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: auto 0;
}

.hero__logo {
  width: 56px;
  margin: 0 auto 12px;
  filter: brightness(0) invert(1);
}

.hero__brand {
  margin: 0 0 28px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal-light);
}

.hero__title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(44px, 7vw, 88px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero__title span {
  display: block;
}

.hero__subtitle {
  margin: 24px 0 0;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.hero__booking {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  align-items: end;
  gap: 28px 32px;
  width: min(100%, 960px);
  margin-top: auto;
  padding: 36px 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.hero__field {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}

.hero__field span {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero__field input,
.hero__field select {
  width: 100%;
  padding: 8px 0 10px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 0;
  color: var(--white);
  background: transparent;
  appearance: none;
}

.hero__field input:focus,
.hero__field select:focus {
  outline: none;
  border-bottom-color: var(--teal-light);
}

.hero__field select option {
  color: var(--ink);
}

.hero__field input::-webkit-calendar-picker-indicator {
  filter: invert(1);
  opacity: 0.7;
}

.hero__cta {
  min-height: 52px;
  padding: 0 36px;
  border: 0;
  border-radius: var(--radius-pill);
  background: var(--cta);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}

.hero__cta:hover {
  background: var(--teal-dark);
}

/* About */
.about {
  padding: 100px var(--gutter) 140px;
  background: var(--white);
}

.about__hero-img {
  width: min(100%, var(--max));
  margin: 0 auto 72px;
}

.about__hero-img img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  border-radius: var(--radius-img);
}

.about__inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.about__columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px 56px;
  margin-bottom: 72px;
}

.about__columns p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.about__columns p:last-child {
  color: var(--teal-dark);
  font-weight: 400;
}

.about__gallery {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(200px, 240px));
  gap: 12px;
  padding-bottom: 72px;
}

.about__gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-img);
}

.about__gallery img:nth-child(1) {
  grid-column: 1 / 5;
  grid-row: 1;
}

.about__gallery img:nth-child(2) {
  grid-column: 5 / 8;
  grid-row: 1;
}

.about__gallery img:nth-child(3) {
  grid-column: 8 / 13;
  grid-row: 1;
}

.about__gallery img:nth-child(4) {
  grid-column: 1 / 4;
  grid-row: 2;
}

.about__gallery img:nth-child(5) {
  grid-column: 4 / 8;
  grid-row: 2;
}

.about__gallery img:nth-child(6) {
  grid-column: 8 / 13;
  grid-row: 2;
}

.about__gallery-more {
  position: absolute;
  right: 32px;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 128px;
  height: 128px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0 18px 48px rgba(41, 54, 73, 0.22);
  transition: background 0.2s, transform 0.2s;
}

.about__gallery-more:hover {
  background: var(--cta);
  transform: translateY(-2px);
}

.section-title--rooms {
  margin-bottom: 12px;
}

/* Rooms */
.rooms {
  padding: 100px var(--gutter);
}

.rooms__inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 64px clamp(24px, 4vw, 56px);
  background: var(--white);
  border-radius: calc(var(--radius-img) * 2);
  box-shadow: 0 24px 70px rgba(41, 54, 73, 0.08);
}

.rooms__lead {
  margin: 0 auto 36px;
  max-width: 520px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  letter-spacing: 0.04em;
}

.rooms__tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 44px;
  max-width: 100%;
}

.rooms__tab {
  flex: 0 1 auto;
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: var(--white);
  color: var(--navy);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.rooms__tab:hover {
  border-color: var(--cta);
  color: var(--cta);
}

.rooms__tab.is-active {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

.rooms__panels {
  min-height: 420px;
}

.rooms__panel {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: stretch;
}

.rooms__panel[hidden] {
  display: none;
}

.rooms__media {
  min-width: 0;
}

.rooms__slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-img);
  background: var(--paper);
}

.rooms__main {
  display: none;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.rooms__main.is-active {
  display: block;
}

.rooms__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(41, 54, 73, 0.14);
  transition: background 0.2s;
}

.rooms__arrow:hover {
  background: var(--teal-light);
}

.rooms__arrow::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  margin: auto;
  border-top: 1.5px solid var(--navy);
  border-right: 1.5px solid var(--navy);
}

.rooms__arrow--prev {
  left: 16px;
}

.rooms__arrow--prev::before {
  transform: rotate(-135deg);
}

.rooms__arrow--next {
  right: 16px;
}

.rooms__arrow--next::before {
  transform: rotate(45deg);
}

.rooms__thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.rooms__thumb {
  padding: 0;
  border: 2px solid transparent;
  border-radius: var(--radius-img);
  overflow: hidden;
  cursor: pointer;
  background: none;
  transition: border-color 0.2s;
}

.rooms__thumb.is-active {
  border-color: var(--cta);
}

.rooms__thumb img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.rooms__info {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding-top: 4px;
}

.rooms__label {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cta);
}

.rooms__info h3 {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
}

.rooms__area {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 14px;
}

.rooms__included-title {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}

.rooms__amenities {
  margin: 0 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 14px;
}

.rooms__amenities li {
  position: relative;
  padding-left: 14px;
}

.rooms__amenities li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal-light);
}

.rooms__amenities li + li {
  margin-top: 10px;
}

.rooms__info .btn {
  margin-top: auto;
  align-self: flex-start;
  min-width: min(100%, 300px);
}

.rooms__all {
  margin: 48px 0 0;
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rooms__all a {
  color: var(--teal-dark);
  transition: color 0.2s;
}

.rooms__all a:hover {
  color: var(--cta);
}

/* Services */
.services {
  padding: 100px var(--gutter);
  background: var(--white);
}

.services > .section-title {
  width: min(100%, var(--max));
  margin-left: auto;
  margin-right: auto;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  width: min(100%, var(--max));
  margin: 0 auto;
  border: 1px solid var(--line);
}

.services__column {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.services__column + .services__column {
  border-left: 1px solid var(--line);
}

.service-card {
  display: flex;
  flex: 1;
  flex-direction: column;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

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

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 14px;
  padding: 28px 24px 32px;
}

.service-card__body h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
}

.service-card__body p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.service-card--text-top .service-card__body {
  flex: 0 0 auto;
}

.service-card--text-top img {
  flex: 1;
  height: auto;
  min-height: 220px;
}

/* Location */
.location {
  padding: 100px var(--gutter) 120px;
}

.location__address {
  margin: -24px auto 40px;
  max-width: 720px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}

.location__map {
  width: min(100%, var(--max));
  margin: 0 auto;
  overflow: hidden;
  border-radius: var(--radius-img);
  border: 1px solid var(--line);
}

.location__map iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
  filter: grayscale(0.85) sepia(0.12) contrast(0.95);
}

/* WhatsApp CTA */
.whatsapp-cta {
  position: relative;
  overflow: hidden;
  min-height: 340px;
}

.whatsapp-cta__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.whatsapp-cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(41, 54, 73, 0.88) 0%, rgba(14, 85, 115, 0.72) 100%);
}

.whatsapp-cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(100%, var(--max));
  min-height: 340px;
  margin: 0 auto;
  padding: 72px var(--gutter);
  color: var(--white);
}

.whatsapp-cta__text {
  margin: 0;
  max-width: 520px;
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Footer */
.site-footer {
  padding: 64px var(--gutter) 32px;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.82);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 40px;
  width: min(100%, var(--max));
  margin: 0 auto 40px;
  font-size: 14px;
}

.site-footer__grid strong {
  display: block;
  margin-bottom: 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-light);
}

.site-footer__grid p,
.site-footer__grid a {
  display: block;
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer__grid a:hover {
  color: var(--teal-light);
}

.site-footer__logo img {
  width: 120px;
  filter: brightness(0) invert(1);
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
}

.site-footer__legal a:hover {
  color: var(--teal-light);
}

/* Inner pages */
.page-inner {
  padding-top: 88px;
}

.site-header--inner {
  color: var(--navy);
  background: rgba(242, 242, 242, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  box-shadow: none;
}

.site-header--inner .site-header__logo img {
  filter: none;
}

.site-header--inner .site-header__nav a:hover {
  color: var(--cta);
  opacity: 1;
}

.site-header--inner .site-header__phone {
  border-color: var(--line);
  color: var(--navy);
}

.site-header--inner .site-header__phone:hover {
  border-color: var(--cta);
  background: rgba(23, 146, 162, 0.08);
}

.site-header--inner.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 8px 32px rgba(41, 54, 73, 0.08);
}

.inner-page {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 48px var(--gutter) 100px;
}

.inner-page__head {
  margin-bottom: 40px;
}

.inner-page__lead {
  margin: 12px 0 0;
  max-width: 640px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.booking-widget {
  width: 100%;
  min-height: 680px;
  padding: clamp(20px, 3vw, 32px);
  border-radius: calc(var(--radius-img) * 2);
  background: var(--white);
  box-shadow: 0 24px 70px rgba(41, 54, 73, 0.08);
}

.booking-widget > div,
.booking-widget iframe {
  width: 100% !important;
  min-width: 100% !important;
}

jdiv {
  display: none !important;
}

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

.room-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: calc(var(--radius-img) * 2);
  background: var(--white);
  box-shadow: 0 18px 48px rgba(41, 54, 73, 0.08);
}

.room-card__image {
  display: block;
  overflow: hidden;
}

.room-card__image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.room-card:hover .room-card__image img {
  transform: scale(1.03);
}

.room-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
  padding: 24px;
}

.room-card__label {
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cta);
}

.room-card__title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.room-card__title a {
  color: var(--navy);
}

.room-card__title a:hover {
  color: var(--cta);
}

.room-card__area {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.room-card__cta {
  margin-top: auto;
  width: 100%;
  min-height: 48px;
}

/* Responsive */
@media (max-width: 1024px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-header__nav {
    display: none;
  }

  .hero__booking {
    grid-template-columns: 1fr 1fr;
    padding-left: 0;
    padding-right: 0;
  }

  .hero__cta {
    grid-column: 1 / -1;
    width: 100%;
  }

  .rooms__tabs {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    mask-image: linear-gradient(90deg, #000 92%, transparent);
  }

  .about__columns,
  .rooms__panel {
    grid-template-columns: 1fr;
  }

  .rooms__info .btn {
    width: 100%;
    max-width: none;
  }

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

  .services__column + .services__column {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .about__gallery {
    grid-template-rows: repeat(3, minmax(160px, 200px));
    padding-bottom: 0;
  }

  .about__gallery img:nth-child(1) {
    grid-column: 1 / 7;
    grid-row: 1;
  }

  .about__gallery img:nth-child(2) {
    grid-column: 7 / 13;
    grid-row: 1;
  }

  .about__gallery img:nth-child(3) {
    grid-column: 1 / 13;
    grid-row: 2;
  }

  .about__gallery img:nth-child(4) {
    grid-column: 1 / 7;
    grid-row: 3;
  }

  .about__gallery img:nth-child(5) {
    grid-column: 7 / 13;
    grid-row: 3;
  }

  .about__gallery img:nth-child(6) {
    display: none;
  }

  .about__gallery-more {
    position: static;
    width: 100%;
    height: auto;
    margin-top: 16px;
    padding: 20px;
    border-radius: var(--radius-pill);
  }

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

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

@media (max-width: 640px) {
  .site-header__logo span {
    display: none;
  }

  .site-header__phone {
    padding: 0 14px;
    font-size: 0;
  }

  .site-header__phone svg {
    margin: 0;
  }

  .hero {
    padding-bottom: 40px;
  }

  .hero__booking {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero__title {
    font-size: 36px;
  }

  .rooms__inner {
    padding: 40px 20px;
  }

  .inner-page {
    padding-top: 32px;
    padding-bottom: 72px;
  }

  .whatsapp-cta__inner {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .rooms-catalog {
    grid-template-columns: 1fr;
  }
}
