@font-face {
  font-family: "Circular Std Book";
  src: url("860c3ec7bbc5da3e97233ccecafe512e.eot");
  src: url("860c3ec7bbc5da3e97233ccecafe512e.eot%3F") format("embedded-opentype"),
    url("860c3ec7bbc5da3e97233ccecafe512e.woff2") format("woff2"),
    url("860c3ec7bbc5da3e97233ccecafe512e.woff") format("woff"),
    url("860c3ec7bbc5da3e97233ccecafe512e.ttf") format("truetype"),
    url("860c3ec7bbc5da3e97233ccecafe512e.svg") format("svg");
}

@font-face {
  font-family: "Circular Std Black";
  src: url("f1a22f6f15d272c7aa56da8b2c91f5e5.eot");
  src: url("f1a22f6f15d272c7aa56da8b2c91f5e5.eot%3F") format("embedded-opentype"),
    url("f1a22f6f15d272c7aa56da8b2c91f5e5.woff2") format("woff2"),
    url("f1a22f6f15d272c7aa56da8b2c91f5e5.woff") format("woff"),
    url("f1a22f6f15d272c7aa56da8b2c91f5e5.ttf") format("truetype"),
    url("f1a22f6f15d272c7aa56da8b2c91f5e5.svg") format("svg");
}

:root {
  --bg: #ffffff;
  --soft-bg: #f3fcff;
  --text: #1d242c;
  --muted: #52606f;
  --subtle: #8f8f8f;
  --border: #e8e8e8;
  --brand: #00a0a2;
  --brand-soft: #e7f7f7;
  --wa: #25d366;
  --shadow: 0 14px 28px rgba(0, 0, 0, 0.06);
  --card-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  --radius-lg: 16px;
  --radius-md: 8px;
  --radius-sm: 4px;
  --container: 1270px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Circular Std Book", sans-serif;
  color: var(--text);
  background: var(--bg);
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

p {
  color: #666;
  line-height: 1.67;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Circular Std Black", sans-serif;
  color: var(--text);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  padding: 10px 14px;
  background: var(--text);
  color: #fff;
  z-index: 1000;
  border-radius: 6px;
}

.skip-link:focus {
  top: 12px;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.section-chip {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(142, 210, 161, 0.12);
  color: #8ed2a1;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.section-heading {
  margin-bottom: 48px;
}

.section-heading--center {
  text-align: center;
}

.section-heading h2 {
  margin-top: 18px;
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.section-heading p {
  max-width: 640px;
  margin: 16px auto 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  gap: 24px;
}

.site-logo img {
  width: min(260px, 100%);
}

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

.site-nav a {
  color: var(--muted);
  font-size: 1rem;
}

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hero {
  padding: 0;
}

.hero-slider {
  position: relative;
  overflow: hidden;
}

.hero-slider__track {
  position: relative;
  min-height: min(456px, 66vw);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide__button {
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  background: none;
}

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

.slider-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

.slider-control::before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  margin: auto;
  border-top: 2px solid var(--text);
  border-right: 2px solid var(--text);
}

.slider-control--prev {
  left: 24px;
}

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

.slider-control--next {
  right: 24px;
}

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

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 28px;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.slider-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
}

.slider-dot.is-active {
  background: #fff;
}

.booking-panel-section {
  padding: 0 0 20px;
}

.booking-panel {
  position: relative;
  margin-top: -76px;
  padding: 40px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  z-index: 2;
}

.booking-panel__title {
  margin-bottom: 24px;
}

.booking-panel__title h2 {
  margin-top: 16px;
  font-size: clamp(1.75rem, 3vw, 2.2rem);
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.1fr 236px;
  gap: 16px;
  align-items: end;
}

.booking-field {
  position: relative;
}

.booking-field label {
  display: block;
  margin-bottom: 10px;
  font-size: 0.9rem;
  font-family: "Circular Std Black", sans-serif;
}

.booking-display {
  width: 100%;
  min-height: 56px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--subtle);
  text-align: left;
}

.booking-display:focus-visible,
.guest-room-panel select:focus-visible,
.form-field input:focus-visible {
  outline: 2px solid rgba(49, 222, 229, 0.45);
  outline-offset: 2px;
}

.booking-display__icon {
  width: 18px;
  height: 18px;
  background: url("calendar.png") center / contain no-repeat;
  flex: 0 0 auto;
}

.booking-display__icon--bed {
  background-image: url("king-bed.png");
}

.guest-room-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 320px;
  padding: 18px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 6px 6px 20px rgba(176, 176, 176, 0.16);
  z-index: 20;
}

.guest-room-panel__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.guest-room-panel__row label,
.guest-room-panel__row span {
  color: var(--text);
  font-size: 0.92rem;
}

.guest-room-panel select {
  width: 170px;
  min-height: 40px;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 8px 12px;
  color: var(--muted);
}

.counter {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.counter__btn {
  width: 34px;
  height: 34px;
  border: 1px solid #bfbfbf;
  border-radius: 999px;
  background: #fff;
  font-size: 1.25rem;
  line-height: 1;
}

.counter__btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.counter__value {
  min-width: 18px;
  text-align: center;
  color: var(--text);
}

.guest-room-panel__note {
  margin: 6px 0 14px;
  font-size: 0.85rem;
  color: #b0b0b0;
}

.guest-room-panel__apply {
  min-height: 40px;
  width: 100%;
  border: 0;
  border-radius: 4px;
  background: var(--brand);
  color: #fff;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 4px;
  border: 1px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.button--primary {
  background: var(--brand);
  color: #fff;
}

.button--primary:hover:not(:disabled) {
  background: #008d8f;
}

.button--primary:disabled {
  background: #cdd3da;
  cursor: not-allowed;
}

.button--outline {
  border-color: var(--wa);
  color: var(--wa);
  background: #fff;
}

.button--ghost {
  border-color: var(--border);
  color: var(--muted);
  background: #fff;
}

.booking-action {
  display: flex;
  align-items: flex-end;
}

.booking-action .button {
  width: 100%;
  min-height: 56px;
}

.booking-helper {
  margin: 12px 0 0;
  font-size: 0.9rem;
  color: #a7a7a7;
  line-height: 1.45;
}

.services-section,
.rooms-section,
.menu-section,
.review-section {
  padding: 76px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  text-align: center;
}

.service-card__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 12px;
  border-radius: 50%;
  object-fit: cover;
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

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

.rooms-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.room-card {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  background: #fff;
  border-radius: 8px;
  box-shadow: var(--card-shadow);
  overflow: hidden;
}

.room-card__gallery {
  position: relative;
  min-height: 360px;
  background: #eef7fb;
}

.room-card__main {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

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

.room-card__thumbs {
  display: flex;
  gap: 10px;
  padding: 14px 16px 18px;
  overflow-x: auto;
}

.room-card__thumb {
  flex: 0 0 54px;
  width: 54px;
  height: 44px;
  padding: 0;
  border: 1px solid #d7dfe7;
  border-radius: 5px;
  overflow: hidden;
  background: transparent;
}

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

.room-card__thumb.is-active {
  border-color: var(--brand);
}

.room-card__body {
  padding: 28px 24px;
  display: grid;
  gap: 22px;
}

.room-card__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 290px;
  gap: 24px;
  align-items: start;
}

.room-card__header h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.room-card__rates {
  padding: 18px 18px 16px;
  border-radius: 12px;
  background: #f7fbfc;
  text-align: left;
  min-width: 0;
}

.room-card__rates-label {
  display: block;
  margin-bottom: 10px;
  color: #22292e;
}

.room-card__rate-from {
  display: block;
  color: #cdd3da;
  text-decoration: line-through;
  font-size: 1.05rem;
}

.room-card__rate {
  display: block;
  color: var(--text);
  font-size: 1.55rem;
  font-family: "Circular Std Black", sans-serif;
  white-space: nowrap;
  line-height: 1.15;
}

.room-card__meta {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.room-card__meta li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: var(--muted);
}

.room-card__meta-icon {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  background: url("room-sprites.png") no-repeat;
}

.room-card__meta-icon--size {
  background-position: -1px -110px;
}

.room-card__meta-icon--capacity {
  background-position: -1px -82px;
}

.room-card__meta-icon--bed {
  background-position: -1px -59px;
}

.room-card__meta-icon--checkin {
  background-position: -1px -30px;
}

.room-card__meta-icon--facility {
  background-position: -1px -1px;
}

.room-card__section-title {
  display: block;
  margin-bottom: 12px;
  font-size: 1rem;
  color: #22292e;
}

.room-card__detail-panels {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 18px;
}

.room-card__detail-panel {
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0 0 18px;
  list-style: none;
}

.pill-list li {
  padding: 4px 10px;
  border-radius: 4px;
  background: var(--brand-soft);
  color: #000;
  font-size: 0.92rem;
}

.room-card__actions {
  display: flex;
  gap: 12px;
  align-items: center;
  padding-top: 4px;
}

.room-card__actions .button {
  min-width: 150px;
  min-height: 52px;
}

.room-card__rate-inline {
  color: #a7a7a7;
  font-size: 0.9rem;
  line-height: 1.4;
}

.menu-grid,
.review-grid {
  display: grid;
  gap: 24px;
}

.menu-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.menu-card,
.review-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
}

.menu-card {
  overflow: hidden;
}

.menu-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.menu-card__body {
  padding: 20px 24px 24px;
}

.menu-tag {
  display: inline-block;
  padding: 5px 7px;
  border-radius: 5px;
  background: #e9fcfc;
  color: #31dee5;
  font-size: 0.85rem;
}

.menu-card__body h3 {
  margin-top: 16px;
  font-size: 1.25rem;
}

.review-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.review-card {
  padding: 32px;
}

.review-card__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.review-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  object-fit: cover;
}

.review-card__name {
  display: block;
  color: #22292e;
}

.review-card__place {
  font-size: 0.9rem;
  color: rgba(34, 41, 46, 0.66);
}

.review-card p {
  margin: 0;
  color: #22292e;
}

.site-footer {
  background: var(--soft-bg);
  padding: 66px 0 46px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr;
  gap: 32px;
}

.footer-title {
  display: block;
  margin-bottom: 25px;
  font-family: "Circular Std Black", sans-serif;
  font-size: 1.1rem;
  color: #000;
}

.footer-title img {
  width: min(260px, 100%);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links a,
.footer-contact a {
  color: #666;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-contact__item span {
  display: block;
}

.icon-svg {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  flex: 0 0 auto;
}

.icon-svg svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.wa-link {
  color: var(--wa);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.m-brand {
  color: #f0b101;
  font-weight: 700;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-social a {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 999px;
}

.footer-social .icon-svg {
  width: 16px;
  height: 16px;
}

.floating-wa {
  position: fixed;
  right: 32px;
  bottom: 24px;
  width: 64px;
  height: 64px;
  z-index: 90;
}

.back-to-top {
  position: fixed;
  right: 40px;
  bottom: 100px;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 5px;
  background: var(--brand);
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 90;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
}

.modal[hidden] {
  display: none;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 26, 34, 0.55);
}

.modal__dialog {
  position: relative;
  width: min(calc(100% - 32px), 620px);
  max-height: calc(100vh - 48px);
  margin: 24px auto;
  overflow: auto;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.22);
}

.modal__dialog--reservation {
  width: min(calc(100% - 32px), 720px);
}

.modal__content {
  padding: 28px;
}

.modal__close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: #f5f7f9;
  font-size: 1.5rem;
}

.promo-modal__subtitle {
  color: var(--text);
}

.reservation-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 24px 0;
  padding: 18px;
  border-radius: 10px;
  background: #f8fbfc;
}

.reservation-summary span {
  display: block;
  margin-bottom: 4px;
  color: #8f8f8f;
  font-size: 0.85rem;
}

.reservation-summary strong {
  color: var(--text);
}

.form-grid {
  display: grid;
  gap: 16px;
}

.form-field span {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
}

.form-field input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
}

.field-error {
  display: block;
  min-height: 18px;
  margin-top: 6px;
  color: #d14f4f;
  font-size: 0.82rem;
}

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

.form-actions .button {
  flex: 1;
}

.form-status {
  min-height: 20px;
  margin: 14px 0 0;
  color: var(--brand);
}

.flatpickr-calendar {
  border: none;
  box-shadow: 6px 6px 20px rgba(176, 176, 176, 0.18);
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 1024px) {
  .booking-grid,
  .footer-grid,
  .review-grid,
  .menu-grid,
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .room-card {
    grid-template-columns: 1fr;
  }

  .room-card__header {
    flex-direction: column;
  }

  .room-card__header {
    grid-template-columns: 1fr;
  }

  .room-card__detail-panels {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .site-header__inner {
    min-height: 78px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 14px 16px 18px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
  }

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

  .site-nav a {
    width: 100%;
    padding: 12px 0;
  }

  .booking-panel {
    margin-top: -42px;
    padding: 24px;
  }

  .booking-grid,
  .services-grid,
  .menu-grid,
  .review-grid,
  .footer-grid,
  .footer-bottom,
  .reservation-summary {
    grid-template-columns: 1fr;
  }

  .booking-action {
    display: flex;
  }

  .guest-room-panel {
    width: 100%;
  }

  .slider-control {
    width: 44px;
    height: 44px;
  }

  .slider-control--prev {
    left: 12px;
  }

  .slider-control--next {
    right: 12px;
  }

  .services-section,
  .rooms-section,
  .menu-section,
  .review-section,
  .gallery-section {
    padding: 60px 0;
  }

  .floating-wa {
    right: 18px;
    bottom: 16px;
    width: 58px;
    height: 58px;
  }

  .back-to-top {
    right: 20px;
    bottom: 86px;
  }
}
