:root {
  --bg: #eef5f6;
  --surface: #fcffff;
  --surface-soft: #dcebed;
  --text: #143038;
  --muted: #60777d;
  --line: rgba(20, 48, 56, 0.12);
  --brand: #13807a;
  --brand-strong: #0f5c61;
  --brand-accent: #f2b56b;
  --dark: #0d1d22;
  --white: #ffffff;
  --shadow-lg: 0 32px 80px rgba(15, 64, 73, 0.16);
  --shadow-md: 0 18px 36px rgba(15, 64, 73, 0.12);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
  --header-height: 84px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(19, 128, 122, 0.18), transparent 28%),
    radial-gradient(circle at top right, rgba(242, 181, 107, 0.16), transparent 24%),
    radial-gradient(circle at bottom right, rgba(15, 92, 97, 0.12), transparent 24%),
    var(--bg);
}

body.has-modal-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

section img,
.hotel-card img,
.event-card img,
.detail-gallery__thumb img,
.detail-gallery__stage-image,
.gallery-lightbox__figure img {
  content-visibility: auto;
}

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

button,
input,
select {
  font: inherit;
}

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

.site-shell {
  overflow: clip;
}

.topbar {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.82);
}

.topbar__inner,
.topbar__contact,
.topbar__links,
.header__inner,
.nav,
.hero__actions,
.hero__features,
.room-meta,
.topbar__contact {
  display: flex;
  align-items: center;
}

.topbar__inner {
  min-height: 42px;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.87rem;
}

.topbar__contact,
.topbar__links {
  gap: 1.4rem;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(238, 245, 246, 0.74);
  border-bottom: 1px solid transparent;
  transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.header.is-scrolled {
  background: rgba(252, 255, 255, 0.92);
  border-color: var(--line);
  box-shadow: 0 14px 30px rgba(15, 64, 73, 0.08);
}

.header__inner {
  min-height: var(--header-height);
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  transition: transform 0.24s ease;
}

.brand__icon {
  display: block;
  width: 4rem;
  height: 4rem;
  object-fit: contain;
  flex-shrink: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  animation: brandFloat 5.8s ease-in-out infinite;
}

.brand__wordmark {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.12rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.025em;
  background: linear-gradient(135deg, #0f5c61 10%, #1b7781 52%, #0d3f53 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
  position: relative;
  animation: brandReveal 0.9s ease-out both;
}

.brand__wordmark::after {
  content: "";
  position: absolute;
  left: 0.1rem;
  bottom: -0.28rem;
  width: calc(100% - 0.2rem);
  height: 1px;
  background: linear-gradient(90deg, rgba(15, 92, 97, 0.3), rgba(242, 181, 107, 0.5), rgba(15, 92, 97, 0));
  transform: scaleX(0.72);
  transform-origin: left center;
  opacity: 0.8;
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.hero__content h1,
.hero-card--review h2,
.section-copy h2,
.section-heading h2,
.room-feature__content h3,
.room-card__body h3,
.amenity-card__body h3,
.testimonial h3,
.offer-card__body h3,
.cta-panel__copy h2,
.footer h3 {
  font-family: "Cormorant Garamond", serif;
}

.brand__icon--footer {
  background: transparent;
  border: 0;
}

.brand__wordmark--footer {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(214, 239, 236, 0.92));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand__wordmark--footer::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.36), rgba(242, 181, 107, 0.55), rgba(255, 255, 255, 0));
}

.brand:hover,
.brand:focus-visible {
  transform: translateY(-1px);
}

.brand:hover .brand__wordmark::after,
.brand:focus-visible .brand__wordmark::after {
  transform: scaleX(1);
  opacity: 1;
}

.brand:hover .brand__icon,
.brand:focus-visible .brand__icon {
  animation-duration: 2.8s;
}

@keyframes brandReveal {
  from {
    opacity: 0;
    transform: translateY(8px);
    letter-spacing: 0.01em;
  }

  to {
    opacity: 1;
    transform: translateY(0);
    letter-spacing: -0.025em;
  }
}

@keyframes brandFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-2px);
  }
}

.nav {
  gap: 1.35rem;
}

.nav a {
  color: var(--muted);
  font-weight: 600;
  transition: color 0.2s ease;
}

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

.nav-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--surface);
  box-shadow: var(--shadow-md);
  cursor: pointer;
}

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

.nav-toggle.is-active span:first-child {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-active span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.9rem 1.45rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
  color: var(--white);
  font-weight: 700;
  box-shadow: 0 14px 28px rgba(15, 92, 97, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(15, 92, 97, 0.28);
}

.button--ghost {
  background: rgba(255, 255, 255, 0.5);
  color: var(--text);
  border-color: var(--line);
  box-shadow: none;
}

.button--sm,
.button--dark {
  min-height: 44px;
}

.button--dark {
  background: linear-gradient(135deg, #f2b56b, #e29a45);
  color: #10272d;
  border-color: rgba(162, 98, 24, 0.18);
  box-shadow: 0 16px 30px rgba(226, 154, 69, 0.26);
}

.button--dark:hover,
.button--dark:focus-visible {
  box-shadow: 0 20px 34px rgba(226, 154, 69, 0.34);
}

.nav a.button--dark {
  color: #10272d;
}

.button--full {
  width: 100%;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
  color: var(--brand-strong);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.eyebrow::before {
  content: "";
  width: 2.3rem;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
}

.eyebrow--small {
  font-size: 0.72rem;
  margin-bottom: 0.7rem;
}

.hero {
  padding: 1.6rem 0 1.2rem;
}

.hero,
.detail-hero,
.footer {
  content-visibility: visible;
}

.hero__layout,
.section-grid,
.rooms-grid,
.cta-panel,
.footer__grid {
  display: grid;
  gap: 2rem;
}

.hero__layout {
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
}

.hero__content h1 {
  margin: 0;
  font-size: clamp(2.4rem, 4.2vw, 4.1rem);
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.hero__lead,
.section-copy p,
.section-heading p,
.room-feature__content p,
.room-card__body p,
.amenity-card__body p,
.testimonial span,
.offer-card__body p,
.cta-panel__copy p,
.footer p,
.footer__summary,
.location-list {
  color: var(--muted);
  line-height: 1.8;
}

.hero__lead {
  margin: 0.75rem 0 0;
  max-width: 41rem;
  font-size: 1rem;
}

.hero__features {
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 0.9rem;
}

.hero-feature {
  padding: 0.55rem 0.82rem;
  border-radius: 999px;
  background: rgba(252, 255, 255, 0.78);
  border: 1px solid var(--line);
  font-size: 0.84rem;
  font-weight: 700;
}

.hero__actions {
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.hero-search,
.hotel-filter {
  margin-top: 1rem;
  display: grid;
  gap: 0.7rem;
  width: min(100%, 34rem);
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.hotel-filter {
  margin: 0 0 1.1rem;
  width: min(100%, 30rem);
  padding: 0.8rem;
  border: 1px solid rgba(19, 128, 122, 0.18);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(220, 235, 237, 0.52));
}

.hero-search__copy {
  display: grid;
  gap: 0.2rem;
}

.hero-search__copy strong {
  font-size: 1.05rem;
}

.hero-search__copy span {
  color: var(--muted);
  font-weight: 600;
}

.hero-search__controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.65rem;
  align-items: center;
}

.hero-search__controls input,
.hotel-filter__field select {
  min-height: 52px;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  color: var(--text);
  width: 100%;
}

.hotel-filter__field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 2.5rem;
  font-weight: 700;
  background-color: rgba(255, 255, 255, 0.96);
}

.hero-search__controls input:focus,
.hotel-filter__field select:focus {
  outline: 0;
  border-color: rgba(19, 128, 122, 0.45);
  box-shadow: 0 0 0 3px rgba(19, 128, 122, 0.12);
}

.hero-search__controls .button {
  min-width: 120px;
}

.hero-search__message {
  margin: 0;
  min-height: 1.3rem;
  color: var(--brand-strong);
  font-weight: 700;
  font-size: 0.88rem;
}

.hero__visual {
  position: relative;
  min-height: 430px;
}

.hero-card {
  position: absolute;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-card--main {
  inset: 0 1.5rem 2.4rem 0;
}

.hero-card--main img,
.about-visual__frame img,
.about-visual__secondary img,
.room-feature__image img,
.room-card img,
.amenity-card img,
.offer-card img,
.location-visual img,
.gallery-item img {
  height: 100%;
  object-fit: cover;
}

.hero-card--review {
  right: 0;
  bottom: 0.6rem;
  width: min(18rem, 78%);
  min-height: 185px;
  padding: 0.85rem;
  background: rgba(252, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
  font-size: 0;
}

.hero-card--review .stars,
.hero-card--review .guest,
.hero-card--review > p,
.hero-spotlight__footer {
  display: none;
}

.hero-spotlight__eyebrow {
  display: inline-block;
  margin-bottom: 0.3rem;
  color: var(--brand-strong);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.stars {
  color: var(--brand-accent);
  letter-spacing: 0.12em;
  font-size: 0.92rem;
  font-weight: 800;
}

.hero-card--review h2 {
  margin: 0.15rem 0 0.45rem;
  font-size: 1.18rem;
  min-height: auto;
  line-height: 1.15;
}

.hero-card--review p,
.about-visual__panel p {
  margin: 0;
  line-height: 1.6;
}

.hero-spotlight__media {
  display: block;
  margin-top: 0.2rem;
  overflow: hidden;
  border-radius: 1.1rem;
  border: 1px solid rgba(20, 48, 56, 0.08);
  box-shadow: 0 12px 24px rgba(15, 64, 73, 0.08);
  flex: 1;
}

.hero-spotlight__media img {
  width: 100%;
  height: 100%;
  min-height: 95px;
  object-fit: cover;
}

.guest {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 0.8rem;
}

.guest img {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
}

.guest span {
  font-weight: 700;
}

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

.stat-card,
.amenity-card__body,
.offer-card__body,
.testimonial,
.booking-form,
.location-visual,
.feature-panel {
  border-radius: var(--radius-lg);
}

.stat-card {
  padding: 1rem;
  background: rgba(252, 255, 255, 0.86);
  border: 1px solid var(--line);
}

.stat-card strong {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 1.75rem;
  line-height: 1;
}

.stat-card span {
  font-size: 0.95rem;
}

.section {
  padding: 3rem 0 2.2rem;
  content-visibility: auto;
  contain-intrinsic-size: 700px;
}

.section-grid {
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
}

.section-grid--reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.section-copy h2,
.section-heading h2,
.cta-panel__copy h2 {
  margin: 0;
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

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

.about__stats div {
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(252, 255, 255, 0.82);
  border: 1px solid var(--line);
}

.about__stats strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1.8rem;
}

.about-visual {
  position: relative;
  min-height: 620px;
}

.about-visual__frame {
  position: absolute;
  inset: 0 3.6rem 4.8rem 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.about-visual__secondary {
  position: absolute;
  right: 0;
  top: 3rem;
  width: min(14rem, 42%);
  height: 13rem;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.about-visual__panel {
  position: absolute;
  left: 1rem;
  bottom: 0;
  width: min(16rem, 60%);
  padding: 1.35rem;
  border-radius: var(--radius-lg);
  background: rgba(252, 255, 255, 0.94);
  box-shadow: var(--shadow-md);
}

.about-visual__panel span {
  display: block;
  margin-bottom: 0.35rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
}

.section-heading {
  max-width: 52rem;
  margin-bottom: 0.9rem;
}

.section-heading--split {
  max-width: none;
  display: grid;
  grid-template-columns: 1fr minmax(18rem, 27rem);
  gap: 1.6rem;
  align-items: end;
}

.rooms-grid {
  grid-template-columns: 1.25fr 0.95fr;
  align-items: start;
}

.hotel-grid,
.event-grid,
.detail-amenities,
.detail-gallery {
  display: grid;
  gap: 1.2rem;
}

.hotel-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.hotel-grid__mobile-intro {
  display: none;
}

.hotel-grid__mobile-eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(19, 128, 122, 0.12);
  color: var(--brand-strong);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hotel-location-group,
.hotel-location-group__head,
.hotel-location-group__rail {
  display: grid;
}

.hotel-location-group {
  gap: 0.8rem;
}

.hotel-location-group__head {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 0.75rem;
}

.hotel-location-group__head h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.hotel-location-group__head span {
  color: var(--brand-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hotel-location-group__rail {
  grid-auto-flow: column;
}

.hotel-grid__empty {
  margin: 0;
  padding: 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: rgba(252, 255, 255, 0.88);
  color: var(--muted);
  font-weight: 700;
}

.hotel-filter__field {
  display: grid;
  gap: 0.45rem;
  width: 100%;
  font-weight: 800;
  font-size: 0.86rem;
  letter-spacing: 0.02em;
  color: var(--brand-strong);
  position: relative;
}

.hotel-filter__field::after {
  content: "";
  position: absolute;
  right: 0.95rem;
  bottom: 1rem;
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid rgba(20, 48, 56, 0.65);
  border-bottom: 2px solid rgba(20, 48, 56, 0.65);
  transform: rotate(45deg);
  pointer-events: none;
}

.hotel-card,
.event-card {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.hotel-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.hotel-card:hover,
.event-card:hover,
.room-card:hover,
.amenity-card:hover,
.offer-card:hover {
  transform: translateY(-4px);
  border-color: rgba(19, 128, 122, 0.22);
  box-shadow: 0 22px 44px rgba(15, 64, 73, 0.14);
}

.hotel-card img,
.event-card img {
  height: 180px;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.hotel-card__media {
  display: block;
  position: relative;
}

.hotel-card__city {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  background: rgba(12, 30, 35, 0.68);
  color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hotel-card__title-link {
  color: inherit;
}

.hotel-card__title-link:hover,
.hotel-card__title-link:focus-visible {
  color: var(--brand-strong);
}

.hotel-card__body,
.event-card__body {
  padding: 0.95rem;
}

.hotel-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.65rem;
}

.hotel-card__top h3,
.event-card__body h3,
.detail-hero__copy h1 {
  margin: 0 0 0.5rem;
  font-family: "Cormorant Garamond", serif;
}

.hotel-card__top h3 {
  font-size: 1.4rem;
  line-height: 1.05;
  min-height: 2.7rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.event-card__body p,
.detail-hero__lead,
.detail-contact__card p {
  color: var(--muted);
  line-height: 1.75;
}

.hotel-card__meta,
.hotel-card__amenities,
.hotel-card__actions,
.detail-hero__info {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.hotel-card__meta,
.hotel-card__amenities {
  margin-top: 0;
}

.hotel-card__meta {
  min-height: 5.2rem;
  align-content: flex-start;
}

.hotel-card__amenities {
  min-height: 4rem;
  align-content: flex-start;
}

.hotel-card__meta > span,
.hotel-card__amenities > span,
.detail-amenity {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.38rem 0.62rem;
  border-radius: 999px;
  background: rgba(220, 235, 237, 0.92);
  font-size: 0.78rem;
  font-weight: 700;
}

.ui-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(19, 128, 122, 0.14), rgba(15, 92, 97, 0.22));
  color: var(--brand-strong);
  flex-shrink: 0;
}

.ui-icon svg {
  width: 0.92rem;
  height: 0.92rem;
}

.hotel-card__actions {
  margin-top: auto;
  display: grid;
  gap: 0.45rem;
}

.hotel-card__links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hotel-card__actions .text-link {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  font-size: 0.9rem;
}

.hotel-card__cta-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.hotel-card__cta {
  min-height: 40px;
  padding: 0.6rem 0.8rem;
  min-width: 0;
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.1;
  white-space: nowrap;
}

.hotel-card__cta:not(.hotel-card__cta--enquire) {
  background: linear-gradient(135deg, rgba(19, 128, 122, 0.14), rgba(15, 92, 97, 0.22));
  color: var(--brand-strong);
  border-color: rgba(19, 128, 122, 0.26);
  box-shadow: 0 10px 20px rgba(15, 92, 97, 0.1);
}

.hotel-card__cta:not(.hotel-card__cta--enquire):hover,
.hotel-card__cta:not(.hotel-card__cta--enquire):focus-visible {
  box-shadow: 0 14px 26px rgba(15, 92, 97, 0.14);
}

.hotel-card__cta--enquire {
  background: linear-gradient(135deg, #0f5c61, #143038);
  color: #ffffff;
  border-color: rgba(15, 92, 97, 0.32);
  box-shadow: 0 16px 28px rgba(11, 23, 27, 0.24);
}

.hotel-card__cta--enquire:hover,
.hotel-card__cta--enquire:focus-visible {
  box-shadow: 0 20px 34px rgba(11, 23, 27, 0.3);
}

.event-grid {
  grid-template-columns: 1.2fr 1fr 1fr;
  align-items: stretch;
}

.event-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.event-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 12, 15, 0) 38%, rgba(5, 12, 15, 0.52) 100%);
  pointer-events: none;
}

.event-card__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 0.95rem;
}

.event-card--spotlight {
  grid-row: span 2;
}

.event-card--spotlight img {
  height: 100%;
  min-height: 430px;
}

.event-card__body span {
  display: inline-block;
  margin-bottom: 0.2rem;
  color: rgba(255, 255, 255, 0.96);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.event-card__badge {
  align-self: flex-start;
  margin-bottom: 0.35rem;
  padding: 0.28rem 0.62rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: rgba(255, 255, 255, 0.98);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}

.event-card__cta {
  align-self: flex-start;
  margin-top: 0.25rem;
  padding: 0.4rem 0.72rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #12353d;
  font-size: 0.78rem;
  font-weight: 800;
}

.event-card__body h3 {
  margin: 0;
  font-size: 1.32rem;
  line-height: 1.2;
}

.room-feature,
.room-card,
.amenity-card,
.offer-card {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.room-feature {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
}

.room-feature__image {
  min-height: 100%;
}

.room-feature__content {
  padding: 1.6rem;
}

.room-feature__content h3,
.room-card__body h3,
.amenity-card__body h3,
.offer-card__body h3,
.testimonial h3 {
  margin: 0 0 0.55rem;
  font-size: 2rem;
}

.room-meta {
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 1rem 0 1.2rem;
}

.room-meta span {
  padding: 0.48rem 0.72rem;
  border-radius: 999px;
  background: rgba(220, 235, 237, 0.92);
  font-size: 0.88rem;
  font-weight: 700;
}

.text-link {
  color: var(--brand-strong);
  font-weight: 800;
}

.room-list,
.amenity-grid,
.offer-grid,
.gallery-grid {
  display: grid;
  gap: 1.2rem;
}

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

.room-card img {
  height: 220px;
}

.room-card__body,
.amenity-card__body,
.offer-card__body {
  padding: 1.2rem 1.25rem 1.35rem;
}

.amenity-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.9rem;
}

.experience {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 5%, rgba(19, 128, 122, 0.28), transparent 36%),
    radial-gradient(circle at 90% 90%, rgba(242, 181, 107, 0.22), transparent 32%),
    linear-gradient(160deg, #d2e5e8 0%, #e5f0f2 45%, #edf5f6 100%);
}

.experience::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.experience .container {
  position: relative;
  z-index: 1;
}

.experience .section-heading {
  margin-bottom: 1.6rem;
}

.experience .section-heading h2 {
  max-width: 44rem;
}

.amenity-card {
  text-align: center;
  border: 1px solid rgba(19, 128, 122, 0.2);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(242, 249, 250, 0.94));
  box-shadow: 0 12px 26px rgba(15, 64, 73, 0.1);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.amenity-card:hover,
.amenity-card:focus-within {
  transform: translateY(-5px);
  border-color: rgba(19, 128, 122, 0.34);
  box-shadow: 0 18px 34px rgba(15, 64, 73, 0.16);
}

.amenity-card__body {
  display: grid;
  justify-items: center;
  gap: 0.55rem;
  padding: 1rem 0.7rem;
}

.amenity-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(19, 128, 122, 0.2), rgba(242, 181, 107, 0.28));
  color: var(--brand-strong);
  box-shadow: inset 0 0 0 1px rgba(19, 128, 122, 0.16), 0 8px 16px rgba(15, 64, 73, 0.1);
}

.amenity-card:nth-child(1) .amenity-card__icon {
  background: linear-gradient(145deg, rgba(19, 128, 122, 0.24), rgba(31, 145, 126, 0.28));
}

.amenity-card:nth-child(2) .amenity-card__icon {
  background: linear-gradient(145deg, rgba(15, 92, 97, 0.22), rgba(19, 128, 122, 0.22));
}

.amenity-card:nth-child(3) .amenity-card__icon {
  background: linear-gradient(145deg, rgba(19, 128, 122, 0.2), rgba(242, 181, 107, 0.22));
}

.amenity-card:nth-child(4) .amenity-card__icon {
  background: linear-gradient(145deg, rgba(242, 181, 107, 0.24), rgba(19, 128, 122, 0.2));
}

.amenity-card:nth-child(5) .amenity-card__icon {
  background: linear-gradient(145deg, rgba(19, 128, 122, 0.24), rgba(15, 92, 97, 0.24));
}

.amenity-card:nth-child(6) .amenity-card__icon {
  background: linear-gradient(145deg, rgba(242, 181, 107, 0.22), rgba(15, 92, 97, 0.24));
}

.amenity-card__icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.amenity-card__body h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.offer-card img {
  height: 230px;
}

.testimonials {
  background: linear-gradient(180deg, rgba(242, 249, 250, 0.45), rgba(252, 255, 255, 0.95));
}

.testimonial-slider {
  position: relative;
  min-height: 250px;
}

.testimonial {
  display: none;
  padding: 2.05rem 2.15rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(20, 48, 56, 0.1);
  border-radius: 24px;
  box-shadow: var(--shadow-md);
}

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

.testimonial__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.testimonial__author img {
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonials .testimonial h3 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 1.5rem;
  line-height: 1.15;
}

.testimonials .testimonial__author span {
  color: #4f5f65;
  font-size: 1.05rem;
  font-weight: 500;
}

.testimonial__source {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(20, 48, 56, 0.1);
  box-shadow: 0 8px 18px rgba(15, 64, 73, 0.08);
}

.testimonial__source svg {
  width: 1.2rem;
  height: 1.2rem;
}

.testimonial__stars {
  margin: 1.15rem 0 0.85rem;
  color: #e7b028;
  letter-spacing: 0.08em;
  font-size: 1.55rem;
}

.testimonial p {
  margin: 0;
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  line-height: 1.65;
  color: #30474f;
}

.testimonial-dots {
  display: flex;
  gap: 0.7rem;
  margin-top: 1.3rem;
}

.testimonial-dots button {
  width: 0.85rem;
  height: 0.85rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(19, 128, 122, 0.22);
  cursor: pointer;
}

.testimonial-dots button.is-active {
  background: var(--brand);
}

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

.offer-card--accent {
  background: linear-gradient(160deg, #10343a, #13807a);
  color: var(--white);
  border-color: transparent;
}

.offer-card--accent .offer-card__body p,
.offer-card--accent .offer-card__body span {
  color: rgba(255, 255, 255, 0.82);
}

.offer-card__body span {
  display: inline-block;
  margin-bottom: 0.55rem;
  color: var(--brand-strong);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cta-panel {
  grid-template-columns: 1fr minmax(20rem, 27rem);
  padding: 2rem;
  border-radius: calc(var(--radius-xl) + 6px);
  background: linear-gradient(145deg, rgba(252, 255, 255, 0.98), rgba(220, 235, 237, 0.96));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  padding: 1rem 1.1rem;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid var(--line);
  align-items: start;
}

.booking-form label {
  display: grid;
  gap: 0.5rem;
  font-weight: 700;
  width: 100%;
  min-width: 0;
}

.booking-field {
  min-width: 0;
}

.booking-field--span-2,
.booking-field--details,
.booking-submit,
.booking-message {
  grid-column: 1 / -1;
}

.booking-form input,
.booking-form select {
  min-height: 52px;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  color: var(--text);
  width: 100%;
}

.booking-form input[type="date"] {
  /* Native date inputs can visually overflow when too short. */
  min-height: 56px;
  padding: 0.65rem 0.85rem;
  line-height: 1.2;
  box-sizing: border-box;
  overflow: hidden;
}

.booking-message {
  min-height: 1.4rem;
  margin: 0;
  color: var(--brand-strong);
  font-weight: 700;
}

.location-visual {
  overflow: hidden;
  min-height: 300px;
  max-height: 420px;
  height: clamp(300px, 38vw, 420px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.location .section-grid--reverse {
  align-items: stretch;
}

.location-list {
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.location-list li {
  padding: 0.7rem 0.8rem;
  border-radius: 12px;
  background: rgba(252, 255, 255, 0.88);
  border: 1px solid var(--line);
  font-weight: 600;
  line-height: 1.35;
}

.header--solid {
  position: relative;
  background: rgba(252, 255, 255, 0.92);
  border-bottom-color: var(--line);
}

.nav--static {
  position: static;
}

.detail-hero {
  padding: 4rem 0 2rem;
}

.detail-hero__layout,
.detail-contact {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

.detail-hero__copy h1 {
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.detail-hero__visual {
  overflow: hidden;
  min-height: 520px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}

.detail-hero__visual img {
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.detail-hero__info {
  margin: 1.5rem 0 2rem;
}

.detail-hero__info > div {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  min-width: 12rem;
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(252, 255, 255, 0.84);
  border: 1px solid var(--line);
}

.detail-hero__info .ui-icon {
  width: 2.2rem;
  height: 2.2rem;
  background: linear-gradient(135deg, rgba(19, 128, 122, 0.16), rgba(242, 181, 107, 0.24));
}

.detail-hero__info strong {
  display: block;
  margin-bottom: 0.35rem;
}

.detail-hero__info span {
  color: var(--muted);
  line-height: 1.7;
}

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

.detail-amenity {
  justify-content: flex-start;
  padding: 0.8rem 0.95rem;
  border-radius: var(--radius-md);
  font-size: 0.92rem;
}

.detail-gallery {
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.8fr);
  align-items: start;
  gap: 1.4rem;
}

.detail-gallery__stage,
.detail-gallery__thumb {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.detail-gallery__stage {
  overflow: hidden;
  border-radius: calc(var(--radius-xl) + 2px);
}

.detail-gallery__stage-media {
  display: grid;
  place-items: center;
  min-height: 540px;
  padding: 1.2rem;
  background:
    radial-gradient(circle at top left, rgba(19, 128, 122, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(252, 255, 255, 0.96), rgba(220, 235, 237, 0.88));
}

.detail-gallery__stage-image {
  width: 100%;
  max-width: 100%;
  max-height: 72vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
  cursor: zoom-in;
}

.detail-gallery__stage-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.2rem 1.2rem;
}

.detail-gallery__label,
.detail-gallery__thumb-meta {
  display: inline-block;
  color: var(--brand-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.detail-gallery__counter {
  display: block;
  margin-top: 0.25rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
}

.detail-gallery__expand {
  min-height: 46px;
}

.detail-gallery__rail {
  display: grid;
  gap: 0.95rem;
  max-height: 650px;
  padding-right: 0.35rem;
  overflow: auto;
}

.detail-gallery__thumb {
  width: 100%;
  padding: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: pointer;
  text-align: left;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.detail-gallery__thumb:hover,
.detail-gallery__thumb:focus-visible,
.detail-gallery__thumb.is-active {
  transform: translateY(-2px);
  border-color: rgba(19, 128, 122, 0.45);
  box-shadow: 0 24px 40px rgba(15, 64, 73, 0.14);
}

.detail-gallery__thumb img {
  height: 150px;
  object-fit: cover;
}

.detail-gallery__thumb-meta {
  display: block;
  padding: 0.85rem 1rem 1rem;
}

.gallery-lightbox[hidden] {
  display: none;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
}

.gallery-lightbox__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(14, 10, 7, 0.82);
  backdrop-filter: blur(8px);
}

.gallery-lightbox__dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  width: min(calc(100% - 2rem), 1180px);
  height: min(calc(100% - 2rem), 900px);
  margin: 1rem auto;
  padding: 1.2rem;
}

.gallery-lightbox__figure {
  margin: 0;
  display: grid;
  gap: 1rem;
  align-items: center;
  justify-items: center;
  min-height: 0;
  padding: 1rem;
  border-radius: calc(var(--radius-xl) + 6px);
  background: linear-gradient(180deg, rgba(252, 255, 255, 0.96), rgba(220, 235, 237, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow-lg);
}

.gallery-lightbox__figure img {
  width: 100%;
  max-height: calc(100vh - 180px);
  object-fit: contain;
  border-radius: var(--radius-lg);
}

.gallery-lightbox__caption {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--text);
}

.gallery-lightbox__caption span {
  color: var(--muted);
}

.gallery-lightbox__caption strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
}

.gallery-lightbox__nav,
.gallery-lightbox__close {
  display: grid;
  place-items: center;
  border: 0;
  color: var(--white);
  cursor: pointer;
}

.gallery-lightbox__nav {
  width: 3.7rem;
  height: 3.7rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  font-size: 2rem;
}

.gallery-lightbox__close {
  position: absolute;
  top: 0.2rem;
  right: 0.2rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(13, 29, 34, 0.76);
  font-size: 2rem;
}

.detail-contact__card {
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  background: rgba(252, 255, 255, 0.92);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

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

.gallery-item {
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.gallery-item img {
  min-height: 230px;
}

.gallery-item--large {
  grid-column: span 6;
  grid-row: span 2;
}

.gallery-item--wide {
  grid-column: span 6;
}

.gallery-item:not(.gallery-item--large):not(.gallery-item--wide) {
  grid-column: span 3;
}

.footer {
  padding: 4rem 0;
  background:
    radial-gradient(circle at top left, rgba(242, 181, 107, 0.18), transparent 24%),
    linear-gradient(180deg, #10272d, #0b171b);
  color: rgba(255, 255, 255, 0.84);
}

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

.footer h3 {
  margin-top: 0;
  margin-bottom: 0.8rem;
  color: var(--white);
  font-size: 1.7rem;
}

.footer__links {
  display: grid;
  gap: 0.55rem;
}

.footer__social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 700;
}

.footer__social-link:hover,
.footer__social-link:focus-visible {
  color: #ffffff;
}

.footer__social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
}

.footer__social-icon svg {
  width: 0.95rem;
  height: 0.95rem;
}

.footer p,
.footer__summary,
.footer__links a {
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 1120px) {
  .hero__layout,
  .section-grid,
  .section-grid--reverse,
  .rooms-grid,
  .cta-panel,
  .footer__grid,
  .section-heading--split {
    grid-template-columns: 1fr;
  }

  .amenity-grid,
  .offer-grid,
  .hotel-grid,
  .event-grid,
  .detail-amenities,
  .detail-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .hero__visual,
  .about-visual {
    min-height: 420px;
  }

  .detail-hero__layout,
  .detail-contact {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 820px) {
  .topbar {
    display: none;
  }

  .nav-toggle {
    display: inline-block;
  }

  .nav {
    position: absolute;
    top: calc(100% + 0.8rem);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(252, 255, 255, 0.98);
    box-shadow: var(--shadow-lg);
  }

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

  .hero__visual,
  .about-visual {
    min-height: 300px;
  }

  .hero__stats,
  .about__stats,
  .offer-grid,
  .hotel-grid,
  .detail-amenities,
  .detail-gallery {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    margin-bottom: 0.9rem;
  }

  .hero__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
  }

  .amenity-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
  }

  .amenity-card__body {
    padding: 0.8rem 0.6rem;
  }

  .amenity-card__icon {
    width: 2.6rem;
    height: 2.6rem;
  }

  .amenity-card__body h3 {
    font-size: 0.92rem;
  }

  .event-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(230px, 78%);
    grid-template-columns: none;
    gap: 0.85rem;
    overflow-x: auto;
    padding-bottom: 0.35rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .event-card {
    scroll-snap-align: start;
  }

  .event-card::after {
    background: linear-gradient(180deg, rgba(5, 12, 15, 0.06) 35%, rgba(5, 12, 15, 0.56) 100%);
  }

  .event-card--spotlight {
    grid-row: auto;
  }

  .event-card--spotlight img {
    min-height: 220px;
    height: 220px;
  }

  .event-grid::-webkit-scrollbar {
    height: 6px;
  }

  .event-grid::-webkit-scrollbar-thumb {
    background: rgba(19, 128, 122, 0.3);
    border-radius: 999px;
  }

  .stat-card {
    padding: 0.8rem 0.85rem;
  }

  .stat-card strong {
    font-size: 1.6rem;
  }

  .stat-card span {
    font-size: 0.88rem;
    line-height: 1.35;
  }

  .hotel-card__amenities {
    display: none;
  }

  .hotel-card img,
  .event-card img {
    height: 160px;
  }

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

  .hero-search,
  .hotel-filter {
    width: 100%;
  }

  .hotel-filter {
    padding: 0.72rem;
    border-radius: 14px;
  }

  .hotel-filter__field {
    gap: 0.4rem;
    font-size: 0.84rem;
    letter-spacing: 0.015em;
  }

  .hotel-filter__field select {
    min-height: 48px;
    padding: 0.65rem 2.35rem 0.65rem 0.78rem;
    border-radius: 12px;
    font-size: 0.95rem;
  }

  .hotel-filter__field::after {
    right: 0.85rem;
    bottom: 0.92rem;
    width: 0.5rem;
    height: 0.5rem;
  }

  .hero-search__controls .button {
    width: 100%;
  }

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

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

  .detail-hero__visual {
    min-height: 360px;
  }

  .detail-gallery__stage-media {
    min-height: 420px;
  }

  .detail-gallery__rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-height: none;
    overflow: visible;
  }

  .gallery-lightbox__dialog {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    height: auto;
    min-height: calc(100% - 2rem);
  }

  .gallery-lightbox__figure img {
    max-height: calc(100vh - 220px);
  }

  .gallery-lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }

  .gallery-lightbox__nav--prev {
    left: 1rem;
  }

  .gallery-lightbox__nav--next {
    right: 1rem;
  }

  .gallery-item,
  .gallery-item--large,
  .gallery-item--wide,
  .gallery-item:not(.gallery-item--large):not(.gallery-item--wide) {
    grid-column: auto;
    grid-row: auto;
  }

  .location-visual {
    min-height: 240px;
    height: 240px;
  }

  .location-list {
    display: grid;
    gap: 0.6rem;
    margin-top: 0.85rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible;
    padding-bottom: 0;
    white-space: normal;
  }

  .location-list li {
    min-width: 0;
    padding: 0.62rem 0.74rem;
    border-radius: 10px;
    font-size: 0.84rem;
    line-height: 1.3;
  }

  .testimonial {
    padding: 1.3rem 1.2rem;
    border-radius: 18px;
  }

  .testimonials .testimonial h3 {
    font-size: 1.24rem;
  }

  .testimonials .testimonial__author span {
    font-size: 0.95rem;
  }

  .testimonial__author img {
    width: 2.7rem;
    height: 2.7rem;
  }

  .testimonial__source {
    width: 2rem;
    height: 2rem;
  }

  .testimonial__source svg {
    width: 1.05rem;
    height: 1.05rem;
  }

  .testimonial__stars {
    margin: 0.95rem 0 0.65rem;
    font-size: 1.3rem;
  }

  .testimonial p {
    font-size: 1.05rem;
    line-height: 1.7;
  }
}

@media (max-width: 620px) {
  :root {
    --header-height: 76px;
  }

  .hero__content h1,
  .hero__content .hero__lead {
    display: none;
  }

  .container {
    width: min(calc(100% - 1.2rem), var(--container));
  }

  .brand {
    gap: 0.55rem;
  }

  .brand__icon {
    width: 3.25rem;
    height: 3.25rem;
  }

  .brand__wordmark {
    font-size: 1.58rem;
  }

  .section,
  .footer {
    padding: 1.75rem 0 1.2rem;
  }

  .section-heading {
    margin-bottom: 0.65rem;
  }

  .hotel-filter {
    display: none;
  }

  .section-copy h2,
  .section-heading h2,
  .cta-panel__copy h2 {
    font-size: clamp(2rem, 7vw, 2.45rem);
  }

  .hero {
    padding-top: 0;
  }

  .hero__content h1 {
    font-size: clamp(2.15rem, 8vw, 3rem);
  }

  .hero-card--main {
    inset: 0 0.8rem 3.8rem 0;
  }

  .hero-card--review {
    width: 78%;
    bottom: 0;
  }

  .hotel-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    padding: 0.2rem 0.15rem 1rem;
  }

  .hotel-grid__mobile-intro {
    display: grid;
    gap: 0.35rem;
    padding: 0.15rem 0.1rem 0.55rem;
    margin-bottom: 0.15rem;
    position: sticky;
    top: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(238, 245, 246, 0.96), rgba(238, 245, 246, 0.82), rgba(238, 245, 246, 0));
    backdrop-filter: blur(6px);
  }

  .hotel-grid__mobile-intro strong {
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    line-height: 0.95;
    letter-spacing: -0.03em;
  }

  .hotel-grid__mobile-intro p {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.6;
  }

  .hotel-location-group {
    gap: 0.75rem;
  }

  .hotel-location-group__rail {
    grid-auto-columns: minmax(272px, 84%);
    gap: 0.9rem;
    overflow-x: auto;
    overflow-y: visible;
    padding: 0.15rem 0.1rem 0.35rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .hotel-location-group__rail::-webkit-scrollbar {
    display: none;
  }

  .hotel-card {
    scroll-snap-align: start;
    border-radius: 24px;
    animation: hotelCardFloatIn 0.55s ease both;
    min-width: 0;
  }

  .hotel-card:nth-of-type(2) {
    animation-delay: 0.06s;
  }

  .hotel-card:nth-of-type(3) {
    animation-delay: 0.12s;
  }

  .hotel-card:nth-of-type(4) {
    animation-delay: 0.18s;
  }

  .hotel-card:nth-of-type(5) {
    animation-delay: 0.24s;
  }

  .hotel-card__media::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 48%;
    background: linear-gradient(180deg, rgba(10, 22, 27, 0) 0%, rgba(10, 22, 27, 0.34) 100%);
    pointer-events: none;
  }

  .hotel-card img {
    height: 210px;
  }

  .hotel-card__body {
    gap: 0.8rem;
    padding: 1rem;
  }

  .hotel-card__top h3 {
    min-height: auto;
    font-size: 1.55rem;
  }

  .hotel-card__meta {
    min-height: auto;
    gap: 0.55rem;
  }

  .hotel-card__meta > span {
    width: 100%;
    border-radius: 16px;
    padding: 0.52rem 0.68rem;
    background: linear-gradient(180deg, rgba(220, 235, 237, 0.9), rgba(255, 255, 255, 0.94));
  }

  .hotel-card__links {
    gap: 0.55rem;
  }

  .hotel-card__actions .text-link {
    min-height: 32px;
    font-size: 0.86rem;
  }

  .hotel-card__cta-group {
    gap: 0.45rem;
  }

  .hotel-card__cta {
    min-height: 38px;
    padding: 0.55rem 0.68rem;
    font-size: 0.78rem;
    letter-spacing: 0.01em;
  }

  .about-visual__frame {
    inset: 0 2rem 4.4rem 0;
  }

  .about-visual__secondary {
    width: 42%;
    height: 8.5rem;
  }

  .about-visual__panel {
    width: 68%;
  }

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

  .location-list {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .amenity-card__body {
    padding: 1rem;
  }

  .detail-gallery__stage-media {
    min-height: 320px;
    padding: 0.8rem;
  }

  .detail-gallery__stage-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .detail-gallery__rail {
    grid-template-columns: 1fr;
  }

  .cta-panel {
    padding: 1.25rem;
  }

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

  .booking-form input,
  .booking-form select {
    min-height: 48px;
    padding: 0.65rem 0.75rem;
  }

  .booking-form input[type="date"] {
    /* Override the compact mobile sizing so the date widget doesn't overlap. */
    min-height: 56px;
    padding: 0.65rem 0.75rem;
  }

  .gallery-lightbox__dialog {
    width: min(calc(100% - 1rem), 1180px);
    margin: 0.5rem auto;
    padding: 0.5rem;
  }

  .gallery-lightbox__figure {
    padding: 0.75rem;
  }

  .gallery-lightbox__caption {
    flex-direction: column;
    align-items: flex-start;
  }

  .gallery-lightbox__nav {
    width: 3.2rem;
    height: 3.2rem;
  }
}

@keyframes hotelCardFloatIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 480px) {
  .hero__stats {
    margin-top: 0.1rem;
  }

  .stat-card {
    padding: 0.72rem 0.78rem;
    border-radius: 16px;
  }

  .stat-card strong {
    margin-bottom: 0.1rem;
    font-size: 1.45rem;
  }

  .stat-card span {
    font-size: 0.82rem;
  }

  .booking-field--checkin,
  .booking-field--checkout {
    grid-column: 1 / -1;
  }
}

@media (max-width: 320px) {
  .booking-form {
    grid-template-columns: 1fr;
  }

  .booking-field--span-2,
  .booking-field--details,
  .booking-submit,
  .booking-message {
    grid-column: 1 / -1;
  }
}
