:root {
  --hf-ink: #102033;
  --hf-ink-soft: #33465c;
  --hf-muted: #66768a;
  --hf-line: rgba(16, 32, 51, 0.12);
  --hf-gold: #b9852c;
  --hf-gold-strong: #93631a;
  --hf-sea: #0d5d73;
  --hf-mint: #e8f4ef;
  --hf-sand: #f8f1e4;
  --hf-cream: #fffaf1;
  --hf-white: #ffffff;
  --hf-radius-xl: 34px;
  --hf-radius-lg: 24px;
  --hf-shadow: 0 24px 70px rgba(16, 32, 51, 0.14);
  --hf-shadow-soft: 0 16px 44px rgba(16, 32, 51, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.guest-site {
  overflow-x: hidden;
  margin: 0;
  background:
    radial-gradient(circle at 16% 4%, rgba(185, 133, 44, 0.18), transparent 30rem),
    radial-gradient(circle at 100% 16%, rgba(13, 93, 115, 0.14), transparent 34rem),
    linear-gradient(180deg, #fffaf1 0, #ffffff 34rem);
  color: var(--hf-ink);
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.guest-site img,
.guest-site iframe {
  max-width: 100%;
}

.guest-site a {
  color: inherit;
  text-decoration: none;
}

.guest-site p {
  color: var(--hf-muted);
}

.guest-site h1,
.guest-site h2,
.guest-site h3,
.guest-site h4 {
  color: var(--hf-ink);
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: -0.04em;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 24, 39, 0.74);
  backdrop-filter: blur(18px);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.site-header.navbar-shrink,
.site-header:has(.navbar-collapse.show) {
  background: rgba(8, 24, 39, 0.95);
  box-shadow: 0 14px 40px rgba(8, 24, 39, 0.22);
}

.site-header .container {
  min-height: 78px;
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0;
}

.site-logo {
  width: 72px;
  height: 56px;
  object-fit: contain;
  padding: 0.3rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
}

.brand-text {
  display: grid;
  color: #fff;
  line-height: 1.1;
}

.brand-name {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand-location {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.navbar-toggler {
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: #fff;
}

.menu-label {
  margin-left: 0.45rem;
  color: #fff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.navbar-nav {
  align-items: center;
  gap: 0.2rem;
}

.navbar-dark .navbar-nav .nav-link {
  min-height: 44px;
  padding: 0.72rem 0.9rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .active > .nav-link {
  color: #fff;
}

.language-switcher {
  position: relative;
}

.language-switcher summary {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  gap: 0.5rem;
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 800;
  list-style: none;
}

.language-switcher summary::-webkit-details-marker {
  display: none;
}

.language-switcher summary > span[aria-hidden="true"] {
  display: none;
}

.language-switcher .language-current-code,
.language-option .language-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 0.7rem;
}

.language-menu {
  position: absolute;
  top: calc(100% + 0.55rem);
  right: 0;
  display: grid;
  min-width: 190px;
  padding: 0.45rem;
  border: 1px solid var(--hf-line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--hf-shadow-soft);
}

.language-option {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.62rem 0.7rem;
  border-radius: 14px;
  color: var(--hf-ink);
  font-size: 0.88rem;
  font-weight: 700;
}

.language-option:hover,
.language-option.active {
  background: var(--hf-sand);
}

.language-option .language-code {
  background: rgba(185, 133, 44, 0.12);
  color: var(--hf-gold-strong);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  line-height: 1.15;
  text-align: center;
  border-radius: 999px;
  font-weight: 800;
}

.btn-brand,
.btn-primary,
.btn-booking {
  border: 0;
  background: linear-gradient(135deg, var(--hf-gold), #e2b967);
  color: #fff !important;
  box-shadow: 0 16px 34px rgba(185, 133, 44, 0.28);
}

.btn-brand:hover,
.btn-primary:hover,
.btn-booking:hover {
  background: linear-gradient(135deg, var(--hf-gold-strong), var(--hf-gold));
  color: #fff !important;
  transform: translateY(-1px);
}

.btn-outline-brand,
.btn-outline-dark {
  border: 1px solid rgba(16, 32, 51, 0.2);
  background: rgba(255, 255, 255, 0.72);
  color: var(--hf-ink);
}

.btn-outline-brand:hover,
.btn-outline-dark:hover {
  border-color: var(--hf-gold);
  background: var(--hf-sand);
  color: var(--hf-ink);
}

.btn-whatsapp,
.btn-whatsapp-nav {
  border: 0;
  background: linear-gradient(135deg, #22bf74, #0d8757);
  color: #fff !important;
  box-shadow: 0 14px 32px rgba(13, 135, 87, 0.22);
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 118px 0 52px;
  background: linear-gradient(135deg, #071927, #102033);
  color: #fff;
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 82% 18%, rgba(226, 185, 103, 0.24), transparent 28rem),
    linear-gradient(90deg, rgba(7, 25, 39, 0.88), rgba(7, 25, 39, 0.6), rgba(7, 25, 39, 0.86));
}

.hero .container {
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  color: #f1d38d;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  content: "";
  background: currentColor;
  box-shadow: 0 0 0 6px rgba(241, 211, 141, 0.16);
}

.subheading {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.65rem;
  color: var(--hf-gold-strong);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 800px;
  margin-bottom: 1rem;
  color: #fff;
  font-size: clamp(3.75rem, 10vw, 8.2rem);
  line-height: 0.88;
  text-shadow: 0 22px 54px rgba(0, 0, 0, 0.32);
}

.hero-lead {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
}

.hero-actions,
.inline-actions,
.contact-actions,
.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-actions {
  margin-top: 1.6rem;
}

.hero-actions .btn {
  padding-right: 1.2rem;
  padding-left: 1.2rem;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.hero-proof-item {
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.hero-proof-item strong {
  display: block;
  color: #fff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.55rem;
  line-height: 1;
}

.hero-proof-item span {
  display: block;
  margin-top: 0.25rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-media {
  position: relative;
  min-height: 560px;
}

.hero-photo {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: #d9c9a8;
  box-shadow: 0 32px 88px rgba(0, 0, 0, 0.34);
}

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

.hero-photo-main {
  inset: 0 0 64px 70px;
  border-radius: 42px;
}

.hero-photo-small {
  bottom: 0;
  left: 0;
  width: 46%;
  height: 34%;
  border-radius: 30px;
}

.floating-card {
  position: absolute;
  right: 26px;
  bottom: 24px;
  width: min(310px, 78%);
  padding: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--hf-shadow);
  backdrop-filter: blur(16px);
}

.floating-card strong {
  display: block;
  color: var(--hf-ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.45rem;
  line-height: 1.05;
}

.floating-card span {
  color: var(--hf-muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.quick-book {
  position: relative;
  z-index: 4;
  margin-top: -48px;
}

.booking-panel,
.booking-search-card,
.booking-guest-card,
.booking-empty,
.booking-alert,
.guest-card,
.contact-card,
.contact-form-card,
.contact-map-card,
.story-card {
  border: 1px solid var(--hf-line);
  border-radius: var(--hf-radius-xl);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--hf-shadow-soft);
  backdrop-filter: blur(14px);
}

.booking-panel {
  padding: clamp(1rem, 2vw, 1.4rem);
}

.booking-form-grid,
.booking-search-form .row {
  align-items: end;
}

.form-label {
  color: var(--hf-ink);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-control,
.form-select {
  min-height: 52px;
  border: 1px solid rgba(16, 32, 51, 0.12);
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--hf-ink);
  font-size: 16px;
  box-shadow: none;
}

textarea.form-control {
  border-radius: 22px;
}

.form-control:focus,
.form-select:focus {
  border-color: rgba(185, 133, 44, 0.72);
  box-shadow: 0 0 0 0.22rem rgba(185, 133, 44, 0.16);
}

/* Modern native date fields for the booking search */
.booking-date {
  position: relative;
  padding-right: 2.9rem;
  font-weight: 700;
  cursor: pointer;
}
.booking-date::-webkit-calendar-picker-indicator {
  position: absolute;
  right: 0.55rem;
  width: 1.7rem;
  height: 1.7rem;
  padding: 0.32rem;
  background-color: rgba(185, 133, 44, 0.14);
  border-radius: 999px;
  cursor: pointer;
  opacity: 1;
}
.booking-date::-webkit-calendar-picker-indicator:hover {
  background-color: rgba(185, 133, 44, 0.26);
}
.booking-date::-webkit-datetime-edit { padding: 0; }

/* Check-in -> check-out connector on wider screens */
.booking-date-col-end { position: relative; }
@media (min-width: 768px) {
  .booking-date-col-end::before {
    content: "\2192";
    position: absolute;
    top: 50%;
    left: -0.7rem;
    transform: translate(-50%, 6px);
    color: rgba(185, 133, 44, 0.85);
    font-size: 1.2rem;
    font-weight: 900;
    pointer-events: none;
  }
}

.booking-search-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem 1.1rem;
}
.booking-nights-badge {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  padding: 0.5rem 1rem;
  color: var(--hf-ink);
  background-color: rgba(185, 133, 44, 0.12);
  border: 1px solid rgba(185, 133, 44, 0.28);
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
}
.booking-nights-badge strong { font-size: 1.1rem; }

.guest-section {
  padding: clamp(4rem, 8vw, 7.5rem) 0;
}

.guest-section.compact {
  padding-top: clamp(3rem, 6vw, 5rem);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
  text-align: center;
}

.section-heading.text-start {
  margin-right: 0;
  margin-left: 0;
}

.section-heading h2 {
  font-size: clamp(2.25rem, 5vw, 4.35rem);
  line-height: 0.96;
}

.section-heading p {
  font-size: 1.05rem;
}

.guest-card {
  position: relative;
  overflow: hidden;
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.guest-card:hover,
.contact-card:hover,
.booking-room-card:hover {
  border-color: rgba(185, 133, 44, 0.38);
  box-shadow: var(--hf-shadow);
  transform: translateY(-4px);
}

.guest-card-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #d9c9a8;
}

.guest-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.guest-card:hover .guest-card-image img {
  transform: scale(1.04);
}

.guest-card-body {
  padding: 1.35rem;
}

.guest-card-body h3 {
  margin-bottom: 0.5rem;
  font-size: 1.7rem;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  background: var(--hf-sand);
  color: var(--hf-gold-strong);
  font-size: 0.78rem;
  font-weight: 900;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.feature-tile {
  min-height: 100%;
  padding: 1.3rem;
  border: 1px solid var(--hf-line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
}

.feature-icon,
.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 1rem;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(185, 133, 44, 0.16), rgba(13, 93, 115, 0.08));
  color: var(--hf-gold-strong);
  font-size: 1.55rem;
}

.feature-tile h3 {
  font-size: 1.28rem;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.86fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
}

.media-frame {
  overflow: hidden;
  padding: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 38px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--hf-shadow);
}

.media-frame img {
  width: 100%;
  min-height: 440px;
  object-fit: cover;
  border-radius: 30px;
}

.map-frame,
.ratio iframe {
  border: 0;
  border-radius: 24px;
}

.nearby-list,
.check-list {
  display: grid;
  gap: 0.75rem;
  padding: 0;
  margin: 1.2rem 0;
  list-style: none;
}

.nearby-list li,
.check-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--hf-ink-soft);
  font-weight: 700;
}

.nearby-list li::before,
.check-list li::before {
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  border-radius: 50%;
  content: "";
  background: var(--hf-gold);
  box-shadow: 0 0 0 5px rgba(185, 133, 44, 0.12);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 1rem;
}

.gallery-grid a,
.gallery-grid img {
  display: block;
  width: 100%;
  height: 100%;
}

.gallery-grid a {
  overflow: hidden;
  min-height: 220px;
  border-radius: 26px;
  background: #d9c9a8;
  box-shadow: var(--hf-shadow-soft);
}

.gallery-grid a:first-child {
  grid-row: span 2;
}

.gallery-grid img {
  object-fit: cover;
}

.page-hero {
  position: relative;
  display: grid;
  min-height: 460px;
  place-items: center;
  padding: 126px 0 70px;
  background: #102033;
  color: #fff;
}

.page-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(100deg, rgba(7, 25, 39, 0.9), rgba(7, 25, 39, 0.58)),
    url("../images/PHOTO-3.jpg") center/cover;
}

.page-hero .container {
  position: relative;
}

.page-hero h1 {
  color: #fff;
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 0.92;
}

.page-hero p {
  max-width: 680px;
  margin: 1rem auto 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.1rem;
}

.story-card {
  padding: clamp(1.3rem, 3vw, 2rem);
}

.contact-card {
  height: 100%;
  padding: 1.25rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.contact-card a {
  color: var(--hf-gold-strong);
  font-weight: 900;
}

.contact-form-card,
.contact-map-card {
  height: 100%;
  padding: clamp(1.2rem, 3vw, 2rem);
}

.public-booking-page {
  background:
    radial-gradient(circle at 8% 0, rgba(185, 133, 44, 0.14), transparent 28rem),
    linear-gradient(180deg, #fffaf1 0, #ffffff 100%);
}

.booking-search-card,
.booking-guest-card,
.booking-empty,
.booking-alert {
  padding: clamp(1.2rem, 3vw, 2rem);
}

.booking-results {
  margin-top: clamp(2rem, 4vw, 3rem);
}

.booking-section-heading {
  max-width: 820px;
  margin-bottom: 1.6rem;
}

.booking-section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.booking-room-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.booking-room-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 0.9rem;
  padding: 0 0 1.2rem;
  border: 1px solid var(--hf-line);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--hf-shadow-soft);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.booking-room-card input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.booking-room-image {
  display: block;
  height: 180px;
  background-color: #d9c9a8;
  background-position: center;
  background-size: cover;
}

.booking-room-top,
.booking-room-features,
.booking-room-price {
  margin-right: 1.2rem;
  margin-left: 1.2rem;
}

.booking-room-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.booking-room-top small {
  display: block;
  color: var(--hf-muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.booking-room-top strong {
  color: var(--hf-ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.8rem;
}

.booking-room-category {
  align-self: start;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(185, 133, 44, 0.12);
  color: var(--hf-gold-strong);
  font-size: 0.76rem;
  font-weight: 900;
}

.booking-room-features {
  color: var(--hf-muted);
  font-size: 0.92rem;
}

.booking-room-price {
  justify-self: start;
  padding: 0.62rem 0.9rem;
  border-radius: 999px;
  background: var(--hf-sand);
  color: var(--hf-gold-strong);
  font-weight: 900;
}

.booking-room-card.selected {
  border-color: rgba(185, 133, 44, 0.72);
  box-shadow: 0 0 0 4px rgba(185, 133, 44, 0.15), var(--hf-shadow);
}

.booking-policy-note {
  display: inline-flex;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: rgba(16, 32, 51, 0.06);
  color: var(--hf-muted);
  font-weight: 800;
}

.site-footer {
  position: relative;
  padding: clamp(3.5rem, 7vw, 6rem) 0 1.5rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 18%, rgba(185, 133, 44, 0.26), transparent 26rem),
    linear-gradient(135deg, #071927, #102033 60%, #1d2b36);
  color: rgba(255, 255, 255, 0.82);
}

.site-footer h2,
.site-footer h3,
.site-footer p,
.site-footer .text {
  color: rgba(255, 255, 255, 0.86);
}

.site-footer h2,
.site-footer h3 {
  color: #fff;
}

.footer-contact-list {
  display: grid;
  gap: 0.8rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-contact-list a {
  display: inline-flex;
  gap: 0.65rem;
  color: rgba(255, 255, 255, 0.84);
}

.footer-icon {
  color: #f1d38d;
}

.footer-social {
  display: flex;
  gap: 0.7rem;
  padding: 0;
  margin: 1.5rem 0 0;
  list-style: none;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-back-to-top {
  color: #f1d38d;
  font-weight: 900;
}

.footer-back-to-top + .footer-back-to-top {
  margin-left: 1.25rem;
}

.privacy-layout {
  display: grid;
  gap: 1.25rem;
  max-width: 960px;
}

.privacy-section h2 {
  margin-bottom: 0.8rem;
}

.privacy-section p:last-child {
  margin-bottom: 0;
}

.mobile-action-bar {
  position: fixed;
  z-index: 60;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: none;
  gap: 0.55rem;
  padding: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--hf-shadow);
  backdrop-filter: blur(14px);
}

.mobile-action-bar .btn {
  flex: 1;
  min-height: 48px;
  padding-right: 0.65rem;
  padding-left: 0.65rem;
  font-size: 0.86rem;
}

@media (max-width: 1199.98px) {
  .hero-grid,
  .split-layout {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 460px;
  }

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

@media (max-width: 991.98px) {
  .site-header .container {
    min-height: 70px;
  }

  .navbar-collapse {
    margin-top: 0.85rem;
    padding: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    background: rgba(8, 24, 39, 0.98);
  }

  .navbar-nav {
    align-items: stretch;
  }

  .language-menu {
    position: static;
    margin-top: 0.55rem;
  }

  .nav-cta .btn {
    width: 100%;
  }
}

@media (max-width: 767.98px) {
  body.guest-site {
    padding-bottom: 82px;
  }

  .brand-location {
    display: none;
  }

  .site-logo {
    width: 58px;
    height: 46px;
  }

  .hero {
    min-height: auto;
    padding-top: 102px;
  }

  .hero h1 {
    font-size: clamp(3rem, 17vw, 5rem);
  }

  .hero-grid {
    gap: 2rem;
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 380px;
  }

  .hero-photo-main {
    inset: 0 0 44px 36px;
    border-radius: 30px;
  }

  .hero-photo-small {
    width: 52%;
    height: 32%;
    border-radius: 22px;
  }

  .floating-card {
    right: 14px;
    bottom: 16px;
  }

  .quick-book {
    margin-top: 0;
    padding-top: 1rem;
  }

  .booking-panel,
  .booking-search-card,
  .booking-guest-card,
  .booking-empty,
  .contact-form-card,
  .contact-map-card,
  .story-card {
    border-radius: 24px;
  }

  .feature-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid a:first-child {
    grid-row: auto;
  }

  .media-frame img {
    min-height: 320px;
  }

  .page-hero {
    min-height: 390px;
    padding-top: 108px;
  }

  .page-hero h1 {
    font-size: clamp(2.8rem, 15vw, 4.5rem);
  }

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

  .mobile-action-bar {
    display: flex;
  }
}

@media (max-width: 575.98px) {
  .hero-actions,
  .inline-actions,
  .contact-actions,
  .footer-actions {
    flex-direction: column;
  }

  .hero-actions .btn,
  .inline-actions .btn,
  .contact-actions .btn,
  .footer-actions .btn {
    width: 100%;
  }

  .booking-room-image {
    height: 154px;
  }
}
