@font-face {
  font-family: "CalSans";
  src: url("../assets/fonts/CalSans.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --primary: #1c1c1d;
  --gold: #caa05c;
  --text: #59585d;
  --white: #ffffff;
  --bg: #f6f6f6;
  --brown: #574640;
  --brown-soft: #5c4e48;
  --overlay: #574642cc;
  --border: #dee2e6;
  --faq-border: #dddddd;
  --container: 1304px;
  --radius: 16px;
  --font-body: "Golos Text", sans-serif;
  --font-display: "CalSans", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.35s ease, background-color 0.35s ease;
}

.container-xl {
  width: min(100% - 30px, var(--container));
  margin-inline: auto;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: var(--brown);
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-spinner {
  width: 48px;
  height: 48px;
  border: 3px solid rgba(255, 255, 255, 0.25);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg);
  transition: box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 24px rgba(28, 28, 29, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
}

.site-logo {
  width: auto;
  max-width: 180px;
  height: 48px;
  object-fit: contain;
  object-position: left center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list > li > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 25px 20px;
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 17px;
}

.nav-list > li > a i {
  font-size: 10px;
}

.nav-list > li > a:hover,
.nav-list > li > a.active,
.has-dropdown:hover > a {
  color: var(--gold);
}

.has-dropdown {
  position: relative;
}

.dropdown-menu-custom {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  margin: 0;
  padding: 8px 0;
  list-style: none;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(28, 28, 29, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
}

.has-dropdown:hover .dropdown-menu-custom {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu-custom a {
  display: block;
  padding: 7px 15px;
  color: var(--primary);
  font-size: 15px;
  font-weight: 500;
}

.dropdown-menu-custom a:hover,
.dropdown-menu-custom a.active {
  background: var(--gold);
  color: var(--white);
}

.btn-reservation,
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--white);
  border: 0;
  border-radius: 30px;
  padding: 12px 26px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
}

.btn-reservation:hover,
.btn-gold:hover {
  color: var(--white);
  background: var(--primary);
}

.mobile-toggle,
.mobile-close {
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: var(--primary);
  font-size: 22px;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: var(--white);
  padding: 80px 30px 40px;
  transform: translateX(100%);
  transition: transform 0.35s ease;
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.mobile-close {
  position: absolute;
  top: 20px;
  right: 16px;
}

.mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-menu a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--primary);
}

.hero {
  padding: 0 8px;
}

.hero-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.hero-slider {
  position: relative;
  height: 800px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 0.9s ease, transform 1.2s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, var(--overlay) 0%, var(--overlay) 50%);
  opacity: 0.6;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px 80px;
  text-align: center;
}

.hero-content h1 {
  max-width: 860px;
  margin: -80px 0 25px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 60px;
  line-height: 1.2;
  font-weight: 400;
}

.hero-content p {
  max-width: 590px;
  margin: 0;
  padding: 25px;
  color: var(--white);
  font-size: 16px;
  background: rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(1px);
  border-radius: var(--radius);
}

.hero-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 48px;
  height: 48px;
  border: 0;
  background: transparent;
  color: var(--white);
  font-size: 22px;
  transform: translateY(-50%);
}

.hero-prev {
  left: 24px;
}

.hero-next {
  right: 24px;
}

.booking-wrap {
  position: relative;
  z-index: 5;
  margin-top: -210px;
}

.booking-form {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 0.9fr 0.9fr auto;
  gap: 20px;
  align-items: end;
  background: var(--white);
  border-radius: 20px;
  padding: 28px 30px;
  box-shadow: 0 20px 50px rgba(28, 28, 29, 0.08);
}

.booking-field label {
  display: block;
  margin-bottom: 8px;
  color: var(--primary);
  font-size: 18px;
  font-weight: 500;
}

.booking-field input[type="date"],
.qty-box input {
  width: 100%;
  border: 0;
  background: transparent;
  color: #212529;
  font-family: var(--font-body);
  font-size: 16px;
}

.booking-field input[type="date"] {
  padding: 6px 0;
}

.qty-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.qty-box input {
  width: 36px;
  text-align: center;
}

.qty-btn {
  width: 28px;
  height: 28px;
  border: 0;
  background: #dbdbdb;
  color: var(--primary);
  font-size: 18px;
  line-height: 1;
}

.booking-submit {
  padding-bottom: 2px;
}

.section {
  padding: 100px 0;
}

.section-eyebrow {
  margin: 0 0 6px;
  color: var(--primary);
  font-size: 17px;
  font-weight: 600;
  text-align: center;
}

.section-title {
  margin: 0 0 10px;
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 400;
  text-align: center;
}

.section-lead {
  max-width: 620px;
  margin: 0 auto 30px;
  text-align: center;
  font-size: 16px;
}

.room-list {
  display: grid;
  gap: 50px;
}

.room-card {
  display: flex;
  align-items: center;
  gap: 70px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 8px;
}

.room-thumb {
  position: relative;
  overflow: hidden;
  flex: 0 0 390px;
  max-width: 390px;
  height: 260px;
  border-radius: var(--radius);
}

.room-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.room-card:hover .room-thumb img {
  transform: scale(1.1);
}

.badge-seller {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 8px 16px;
  border-radius: 5px;
  background: var(--gold);
  color: var(--white);
  font-size: 14px;
}

.room-copy {
  flex: 1;
  max-width: 400px;
  padding-right: 40px;
}

.room-copy h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--primary);
}

.stars {
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.room-copy p {
  margin: 0;
  font-size: 16px;
}

.room-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  min-width: 220px;
}

.room-facts {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.room-facts span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.room-facts img {
  width: 18px;
  height: 18px;
}

.room-price {
  margin-top: 8px;
  color: var(--primary);
  font-size: 24px;
  font-weight: 600;
}

.room-price span {
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
}

.room-booking-btn {
  background: var(--gold);
  color: var(--white);
  padding: 6px 20px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 700;
}

.room-booking-btn:hover {
  background: var(--primary);
  color: var(--white);
}

.reviews-section {
  padding: 0 8px;
}

.reviews-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  padding: 100px 0;
}

.reviews-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #504640cc 0%, #504640cc 50%);
  opacity: 0.85;
}

.reviews-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 40px;
  align-items: center;
}

.reviews-score {
  text-align: center;
}

.score-number {
  margin: 0;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 96px;
  line-height: 1;
}

.score-label {
  margin: 8px 0 0;
  color: var(--white);
}

.reviews-slider {
  position: relative;
  min-height: 240px;
}

.review-slide {
  display: none;
}

.review-slide.is-active {
  display: block;
  animation: fadeUp 0.5s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.review-text {
  margin: 12px 0 16px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 40px;
  line-height: 1.25;
}

.review-author {
  margin: 0;
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
}

.review-dots {
  display: flex;
  gap: 8px;
  margin-top: 28px;
}

.review-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.2);
}

.review-dots button.is-active {
  background: var(--gold);
}

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

.facilities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 10px;
}

.facility-photo,
.facility-photo-small {
  overflow: hidden;
  border-radius: var(--radius);
}

.facility-photo img,
.facility-photo-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.facility-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.stat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  min-height: 260px;
}

.stat-label {
  margin: 0 0 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.stat-number {
  margin: 80px 0 0;
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 500;
}

.stat-number .plus {
  margin-left: 8px;
  color: var(--gold);
}

.stat-desc {
  margin: 10px 0 0;
}

.offers-section {
  padding-top: 20px;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 20px;
}

.offer-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--brown-soft);
}

.offer-card.reverse {
  flex-direction: column-reverse;
}

.offer-media {
  position: relative;
  overflow: hidden;
}

.offer-media img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.offer-card:hover img {
  transform: scale(1.08);
}

.offer-badge {
  position: absolute;
  left: 25px;
  background: var(--gold);
  color: var(--white);
  padding: 8px 14px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
}

.offer-badge.top {
  top: 25px;
}

.offer-badge.bottom {
  bottom: 25px;
}

.offer-body {
  padding: 40px;
}

.offer-body h3 {
  margin: 0 0 8px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 26px;
}

.offer-body p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 140px;
}

.faq-intro .section-eyebrow,
.faq-intro .section-title {
  text-align: left;
}

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

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
  border: 0;
  background: transparent;
  color: var(--primary);
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 600;
  text-align: left;
}

.faq-answer {
  display: none;
  padding-bottom: 8px;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.faq-item.is-open .faq-question i {
  transform: rotate(180deg);
}

.video-section {
  padding: 0 8px;
}

.video-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.video-frame img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120px;
  height: 120px;
  border: 0;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-size: 25px;
  transform: translate(-50%, -50%);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 20px;
}

.blog-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
}

.blog-thumb img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
}

.blog-date {
  position: absolute;
  top: 0;
  right: 18px;
  min-width: 72px;
  padding: 10px 8px;
  text-align: center;
  color: var(--white);
  background: rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.blog-date strong {
  display: block;
  font-family: var(--font-display);
  font-size: 36px;
  line-height: 1;
}

.blog-card h3 {
  margin: 30px 0 15px;
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1.5;
  color: var(--primary);
}

.blog-card p {
  margin: 0;
  line-height: 28px;
}

.site-footer {
  padding: 8px;
}

.footer-shell {
  background: var(--brown);
  border-radius: var(--radius);
  overflow: hidden;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  padding: 100px 0 50px;
}

.footer-col h3 {
  margin: 0 0 12px;
  color: var(--white);
  font-family: var(--font-display);
  letter-spacing: 1px;
  text-align: center;
}

.footer-col p {
  margin: 0;
  color: var(--white);
  text-align: center;
}

.footer-brand {
  text-align: center;
}

.footer-brand img {
  width: auto;
  max-width: 180px;
  height: 48px;
  object-fit: contain;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.6);
}

.footer-social a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 0 20px;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px 28px;
  flex-wrap: wrap;
}

.footer-copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  letter-spacing: 0.02em;
}

.developer-credit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 6px 4px;
  color: inherit;
  text-decoration: none;
  border-radius: 999px;
  outline: none;
}

.developer-credit-label {
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}

.developer-credit-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.developer-credit-mark {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--gold);
}

.developer-credit-mark svg,
.developer-credit-out svg {
  display: block;
  width: 100%;
  height: 100%;
}

.developer-credit-name {
  color: rgba(255, 255, 255, 0.96);
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.03em;
  line-height: 1;
  white-space: nowrap;
  background-image: linear-gradient(var(--gold), var(--gold));
  background-size: 0 1px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  transition: color 0.3s ease, background-size 0.3s ease;
}

.developer-credit-out {
  display: grid;
  place-items: center;
  width: 12px;
  height: 12px;
  color: var(--gold);
  opacity: 0.45;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.developer-credit:hover .developer-credit-name,
.developer-credit:focus-visible .developer-credit-name {
  color: var(--gold);
  background-size: 100% 1px;
}

.developer-credit:hover .developer-credit-out,
.developer-credit:focus-visible .developer-credit-out {
  opacity: 1;
  transform: translate(1px, -1px);
}

.developer-credit:focus-visible {
  box-shadow: 0 0 0 2px rgba(202, 160, 92, 0.35);
}

@media (min-width: 768px) {
  .footer-bottom-inner .developer-credit {
    position: relative;
    padding-left: 22px;
  }

  .footer-bottom-inner .developer-credit::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 1px;
    height: 16px;
    transform: translateY(-50%);
    background: rgba(202, 160, 92, 0.45);
  }
}

.developer-credit--auth {
  justify-content: center;
  margin: 6px auto 0;
}

.developer-credit--compact {
  width: 100%;
  justify-content: center;
  min-height: 36px;
  padding: 4px 2px;
}

.developer-credit--compact .developer-credit-label {
  font-size: 9px;
  letter-spacing: 0.16em;
}

.developer-credit--compact .developer-credit-name {
  font-size: 13px;
}

.developer-credit--compact .developer-credit-mark {
  width: 18px;
  height: 18px;
}

.developer-credit--light .developer-credit-label {
  color: #8a7f78;
}

.developer-credit--light .developer-credit-name {
  color: #1c1c1d;
}

.developer-credit--light:hover .developer-credit-name,
.developer-credit--light:focus-visible .developer-credit-name {
  color: #caa05c;
}

@media (prefers-reduced-motion: reduce) {
  .developer-credit-name,
  .developer-credit-out {
    transition: none;
  }
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 20;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  place-items: center;
  background: rgba(0, 0, 0, 0.75);
  padding: 20px;
}

.video-modal.is-open {
  display: grid;
}

.video-modal-inner {
  width: min(920px, 100%);
  position: relative;
}

.video-modal-close {
  position: absolute;
  top: -42px;
  right: 0;
  border: 0;
  background: transparent;
  color: var(--white);
  font-size: 36px;
  line-height: 1;
}

.booking-toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 30;
  transform: translateX(-50%) translateY(20px);
  background: var(--primary);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 30px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.booking-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.page-banner {
  padding: 0 8px;
}

.page-banner-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  padding: 100px 15px 130px;
  min-height: 280px;
}

.page-banner-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(0deg, #504640cc 0%, #504640cc 50%);
  opacity: 0.6;
}

.page-banner-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.page-banner-eyebrow {
  margin: 0 0 6px;
  color: var(--gold);
  font-size: 17px;
  font-weight: 600;
}

.page-banner-content h1 {
  margin: 0;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 60px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  font-weight: 400;
}

.page-breadcrumb {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.1);
  padding: 0 20px 5px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.02em;
}

.page-breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
}

.page-breadcrumb a:hover {
  color: var(--white);
}

.page-breadcrumb i {
  font-size: 10px;
  color: var(--gold);
}

.contact-layout {
  display: flex;
  align-items: stretch;
  gap: 30px;
}

.contact-info,
.contact-form-panel {
  flex: 1 1 0;
  min-width: 0;
}

.contact-info {
  display: flex;
  flex-direction: column;
}

.contact-copy {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-eyebrow {
  margin: 0 0 -5px;
  color: var(--gold);
  font-size: 17px;
  font-weight: 600;
}

.contact-title {
  margin: 0;
  text-align: left;
}

.contact-intro {
  max-width: 420px;
  margin: 20px 0 0;
  font-size: 16px;
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding-top: 20px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-card-icon {
  display: grid;
  place-items: center;
  flex: 0 0 60px;
  width: 60px;
  height: 60px;
  border-radius: 10px;
  background: var(--gold);
  color: var(--white);
  font-size: 22px;
}

.contact-card-copy h3 {
  margin: 0 0 5px;
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
}

.contact-card-copy p {
  margin: 0;
  font-size: 16px;
}

.contact-card-copy a:hover {
  color: var(--gold);
}

.contact-form-panel {
  background: #caa05c1a;
  border-radius: var(--radius);
  padding: 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-field label {
  display: block;
  margin: 0 0 20px;
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  border: 0;
  border-radius: 6px;
  background: var(--white);
  color: var(--primary);
  font-family: var(--font-body);
  font-size: 16px;
  padding: 10px;
}

.contact-field textarea {
  min-height: 220px;
  resize: vertical;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: #c9c1c1;
}

.contact-field input:focus,
.contact-field textarea:focus {
  outline: 0;
  box-shadow: 0 0 0 1px var(--gold);
}

.contact-field input.is-invalid,
.contact-field textarea.is-invalid {
  box-shadow: 0 0 0 1px #c45c4a;
}

.contact-error {
  display: block;
  min-height: 0;
  margin-top: 6px;
  color: #c45c4a;
  font-size: 13px;
}

.btn-send-message {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 25px;
  background: var(--gold);
  color: var(--white);
  padding: 10px 20px;
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.02em;
}

.btn-send-message:hover,
.btn-send-message:focus {
  background: var(--text);
  color: var(--white);
}

.btn-send-message:disabled {
  opacity: 0.7;
  pointer-events: none;
}

.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.gallery-filter {
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--text);
  padding: 10px 20px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.gallery-filter:hover,
.gallery-filter.is-active {
  background: var(--gold);
  color: var(--white);
}

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

.gallery-item {
  min-width: 0;
  border-radius: var(--radius);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.gallery-item.is-hidden {
  display: none;
}

.gallery-link {
  display: block;
}

.gallery-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-hover {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-hover {
  opacity: 1;
}

.gallery-hover span {
  color: var(--white);
  font-size: 18px;
  letter-spacing: 0.5px;
  text-transform: capitalize;
}

.gallery-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 3000;
  place-items: center;
  background: rgba(0, 0, 0, 0.9);
}

.gallery-lightbox.is-open {
  display: grid;
}

.gallery-lightbox-image {
  position: relative;
  z-index: 1;
  max-width: 90%;
  max-height: 80%;
  width: auto;
  height: auto;
  border-radius: 10px;
}

.gallery-lightbox-close,
.gallery-lightbox-prev,
.gallery-lightbox-next {
  border: 0;
  background: none;
  color: var(--white);
  cursor: pointer;
  line-height: 1;
}

.gallery-lightbox-close {
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 35px;
}

.gallery-lightbox-prev,
.gallery-lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  padding: 10px;
}

.gallery-lightbox-prev {
  left: 40px;
}

.gallery-lightbox-next {
  right: 40px;
}

.gallery-lightbox-close:hover,
.gallery-lightbox-prev:hover,
.gallery-lightbox-next:hover {
  color: var(--gold);
}

body.gallery-lightbox-open {
  overflow: hidden;
}

.facilities-page-section {
  padding-top: 100px;
  padding-bottom: 100px;
}

.facilities-showcase {
  display: flex;
  flex-wrap: wrap;
}

.facility-block {
  display: flex;
  flex-direction: row;
  width: 50%;
  min-width: 0;
}

.facility-block-media,
.facility-block-copy {
  width: 50%;
  min-width: 0;
}

.facility-block-media {
  overflow: hidden;
}

.facility-block-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.facility-block:hover .facility-block-media img {
  transform: scale(1.06);
}

.facility-block-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
}

.facility-block-copy h3 {
  margin: 0 0 20px;
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.facility-block-copy p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
}

.facility-block.is-flipped .facility-block-media {
  order: 1;
}

@media (max-width: 1200px) {
  .hero-content h1,
  .section-title,
  .faq-intro .section-title {
    font-size: 42px;
  }

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

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 1024px) {
  .hero-slider {
    height: 640px;
  }

  .hero-content h1 {
    font-size: 45px;
    margin-top: 0;
  }

  .booking-wrap {
    margin-top: -80px;
  }

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

  .booking-submit {
    grid-column: 1 / -1;
  }

  .reviews-inner,
  .facilities-grid,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    flex-direction: column;
  }

  .contact-info,
  .contact-form-panel {
    width: 100%;
    flex-basis: auto;
  }

  .page-banner-content h1 {
    font-size: 48px;
  }

  .faq-intro {
    position: static;
  }

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

  .room-card {
    gap: 30px;
  }

  .room-thumb {
    flex-basis: 280px;
    max-width: 280px;
    height: 220px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .facility-block {
    width: 100%;
    justify-content: center;
  }

  .facility-block-media,
  .facility-block-copy {
    flex: 0 0 320px;
    width: 320px;
  }

  .facility-block.is-flipped .facility-block-media {
    order: 0;
  }

  .facility-block.is-flipped-tablet .facility-block-media {
    order: 1;
  }
}

@media (max-width: 767px) {
  .section {
    padding: 60px 0;
  }

  .facilities-page-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .facility-block {
    flex-direction: column;
  }

  .facility-block-media,
  .facility-block-copy,
  .facility-block.is-flipped .facility-block-media,
  .facility-block.is-flipped-tablet .facility-block-media {
    flex: none;
    order: 0;
    width: 100%;
  }

  .facility-block-copy {
    padding: 40px 0;
  }

  .hero-slider {
    height: 560px;
  }

  .hero-content h1,
  .section-title {
    font-size: 36px;
  }

  .page-banner-frame {
    padding: 60px 15px 90px;
  }

  .page-banner-content h1 {
    font-size: 28px;
  }

  .contact-cards,
  .contact-form-row,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-lightbox-prev {
    left: 12px;
  }

  .gallery-lightbox-next {
    right: 12px;
  }

  .contact-form-panel {
    padding: 50px 25px;
  }

  .booking-form {
    grid-template-columns: 1fr;
    padding: 24px 18px;
  }

  .room-card {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .room-thumb,
  .room-copy,
  .room-meta {
    max-width: none;
    min-width: 0;
    flex: none;
    padding: 0 12px;
  }

  .room-thumb {
    width: 100%;
    height: 220px;
    padding: 0;
  }

  .room-meta {
    padding-bottom: 20px;
  }

  .score-number {
    font-size: 72px;
  }

  .review-text {
    font-size: 28px;
    text-align: center;
  }

  .reviews-score,
  .review-author,
  .review-dots {
    text-align: center;
  }

  .review-dots {
    justify-content: center;
  }

  .facility-stats,
  .blog-grid,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .video-frame img {
    height: 350px;
  }

  .video-play {
    width: 80px;
    height: 80px;
    font-size: 20px;
  }
}

.header-actions {
  align-items: center;
  gap: 16px;
}

.header-login {
  font-weight: 600;
  color: var(--primary);
}

.empty-copy,
.thanks-card,
.blog-article,
.amenity-list {
  color: var(--text);
}

.thanks-card,
.blog-article {
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  padding: 32px 24px;
  border-radius: var(--radius);
}

.thanks-list {
  padding-left: 18px;
  margin: 20px 0 28px;
}

.amenity-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 16px;
  padding: 0;
  list-style: none;
  margin-top: 16px;
}

.blog-hero-image {
  width: 100%;
  border-radius: var(--radius);
  margin-bottom: 24px;
}

@media (max-width: 767px) {
  .amenity-list {
    grid-template-columns: 1fr;
  }

  .footer-bottom-inner {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .footer-copy,
  .developer-credit {
    justify-content: center;
    margin-inline: auto;
  }

  .btn-gold,
  .btn-reservation,
  .room-booking-btn,
  .btn-send-message {
    min-height: 48px;
  }
}
