:root {
  --navy-950: #06101f;
  --navy-900: #0a1730;
  --navy-800: #102543;
  --navy-700: #193453;
  --blue-200: #c8e9ff;
  --blue-300: #8fc8ed;
  --blue-500: #4b9ecc;
  --gold-500: #bd903a;
  --gold-600: #9e7526;
  --gold-100: #f2dfaa;
  --ink: #eef7ff;
  --muted: #abc1d4;
  --paper: #f7fbff;
  --paper-muted: #d7e8f4;
  --line: rgba(200, 233, 255, 0.18);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  --max-site: 1440px;
  --content: 1160px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--navy-950);
  color: var(--ink);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

body.lightbox-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  transform: translateY(-140%);
  background: var(--gold-500);
  color: var(--navy-950);
  padding: 10px 14px;
  border-radius: 4px;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-body {
  width: 100%;
  margin: 0;
  background: var(--navy-900);
  overflow: hidden;
  box-shadow: none;
}

.section-inner {
  width: min(calc(100% - 80px), var(--content));
  margin: 0 auto;
}

.intro-section .section-inner,
.media-feature .section-inner,
.stay-details-section .section-inner,
.house-policy-section .section-inner,
.location-section .section-inner,
.faq-section .section-inner,
.site-footer .footer-inner {
  width: min(calc(100% - 96px), var(--max-site));
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 12;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 82px;
  padding: 0 48px;
  border-bottom: 1px solid transparent;
  background: rgba(6, 16, 31, 0.74);
  backdrop-filter: blur(18px);
  transition: background 260ms ease, border-color 260ms ease, min-height 260ms ease;
}

.site-header.is-scrolled {
  min-height: 70px;
  border-color: var(--line);
  background: rgba(6, 16, 31, 0.94);
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
}

.brand-logo {
  display: block;
  width: 138px;
  height: auto;
  transition: width 260ms ease, opacity 180ms ease;
}

.brand:hover .brand-logo,
.brand:focus-visible .brand-logo {
  opacity: 0.88;
}

.site-header.is-scrolled .brand-logo {
  width: 126px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  color: var(--muted);
}

.site-nav a {
  transition: color 180ms ease;
}

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

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(189, 144, 58, 0.7);
  border-radius: 4px;
  color: var(--gold-100) !important;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.section-dark {
  background: var(--navy-950);
}

.hero-image,
.contact-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image {
  object-position: center right;
  transform: translateY(var(--hero-shift, 0));
  transition: transform 80ms linear;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(6, 16, 31, 0.96) 0%, rgba(6, 16, 31, 0.78) 38%, rgba(6, 16, 31, 0.16) 72%),
    linear-gradient(0deg, rgba(6, 16, 31, 0.82) 0%, rgba(6, 16, 31, 0) 42%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(620px, calc(100% - 80px));
  margin-left: 64px;
  padding-top: 18px;
}

.section-label {
  position: relative;
  display: inline-block;
  margin: 0 0 26px;
  color: var(--gold-100);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.08;
  text-transform: none;
  letter-spacing: 0;
}

.section-label::after {
  content: "";
  display: block;
  width: 48px;
  height: 1px;
  margin-top: 14px;
  background: currentColor;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 24px;
  max-width: 620px;
  font-size: 76px;
  line-height: 0.98;
}

h2 {
  margin-bottom: 28px;
  color: var(--ink);
  font-size: 58px;
  line-height: 1.02;
  text-wrap: balance;
}

h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
}

p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.hero-copy {
  max-width: 560px;
  margin-bottom: 34px;
  color: #d9e8f3;
  font-size: 19px;
}

.hero-subtitle {
  margin: -8px 0 18px;
  color: var(--gold-100);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  line-height: 1.25;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 4px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-gold {
  background: var(--gold-500);
  color: var(--navy-950);
  border-color: var(--gold-500);
}

.button-gold:hover,
.button-gold:focus-visible {
  background: var(--gold-100);
  border-color: var(--gold-100);
}

.button-ghost {
  background: rgba(6, 16, 31, 0.2);
  border-color: rgba(200, 233, 255, 0.28);
  color: var(--ink);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: var(--blue-300);
}

.hero-panel {
  position: absolute;
  right: 64px;
  bottom: 42px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(130px, 1fr));
  width: min(560px, calc(100% - 128px));
  border-top: 1px solid rgba(200, 233, 255, 0.24);
  border-bottom: 1px solid rgba(200, 233, 255, 0.2);
  background: rgba(6, 16, 31, 0.62);
  backdrop-filter: blur(16px);
}

.hero-panel div {
  padding: 22px 24px;
  border-right: 1px solid rgba(200, 233, 255, 0.18);
}

.hero-panel div:last-child {
  border-right: 0;
}

.hero-panel span {
  display: block;
  margin-bottom: 8px;
  color: var(--blue-200);
  font-size: 12px;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-weight: 400;
}

.intro-section {
  position: relative;
  padding: 160px 0;
  overflow: hidden;
  background: var(--paper);
  clip-path: inset(0);
  isolation: isolate;
}

.intro-section::before {
  content: "Residence";
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 0;
  color: rgba(6, 16, 31, 0.045);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(120px, 18vw, 300px);
  font-weight: 400;
  line-height: 0.8;
  pointer-events: none;
  text-align: center;
  transform: translate(-50%, -46%);
  white-space: nowrap;
}

.intro-section .section-inner {
  position: relative;
  z-index: 1;
}

.intro-section .section-label {
  color: var(--gold-600);
}

.intro-section .section-label {
  font-size: 34px;
}

.intro-section h2,
.intro-section h3 {
  color: var(--navy-950);
}

.intro-section h2 {
  max-width: 760px;
  font-size: 62px;
}

.intro-section p {
  color: #37506a;
}

.amenities-section,
.contact-section {
  padding: 112px 0;
  background: var(--navy-900);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 84px;
  align-items: start;
}

.section-heading h2,
.split-heading h2 {
  max-width: 760px;
}

.intro-copy p:last-child {
  margin-bottom: 0;
}

.media-feature,
.arrival-section {
  padding: 104px 0;
  background: linear-gradient(180deg, var(--navy-900), var(--navy-800));
}

.feature-grid,
.arrival-grid {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 68px;
  align-items: center;
}

.feature-image,
.arrival-image,
.gallery-item {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--navy-800);
  box-shadow: var(--shadow);
}

.feature-image img,
.arrival-image img {
  width: 100%;
  height: 620px;
  object-fit: cover;
}

.feature-content p {
  margin-bottom: 28px;
}

.feature-list {
  margin: 36px 0 0;
}

.feature-list div {
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.feature-list dt {
  margin-bottom: 6px;
  color: var(--blue-200);
  font-size: 13px;
  text-transform: uppercase;
}

.feature-list dd {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.split-heading {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 50px;
  align-items: start;
  margin-bottom: 50px;
}

.amenity-rows {
  border-top: 1px solid var(--line);
}

.amenity-row {
  display: grid;
  grid-template-columns: 90px 320px 1fr;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}

.amenity-row span {
  color: var(--gold-100);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}

.amenity-row h3,
.amenity-row p {
  margin-bottom: 0;
}

.gallery-section {
  padding: 112px 0;
  background: var(--navy-950);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
}

.gallery-item {
  position: relative;
  min-height: 280px;
}

.gallery-large {
  grid-row: span 2;
  min-height: 580px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 700ms ease;
}

.gallery-item:nth-child(2) img {
  object-position: center;
}

.gallery-item:nth-child(3) img {
  object-position: 68% center;
}

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

.gallery-item figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 9px 12px;
  border: 1px solid rgba(200, 233, 255, 0.2);
  background: rgba(6, 16, 31, 0.72);
  color: var(--ink);
  font-size: 13px;
}

.booking-section {
  padding: 110px 0;
  background:
    linear-gradient(135deg, rgba(75, 158, 204, 0.18), transparent 42%),
    var(--navy-800);
}

.stay-details-section {
  padding: 120px 0;
  background:
    radial-gradient(circle at 88% 18%, rgba(75, 158, 204, 0.16), transparent 32%),
    var(--navy-950);
}

.stay-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.72fr);
  gap: 72px;
  align-items: end;
  margin-bottom: 46px;
}

.stay-heading h2 {
  margin-bottom: 0;
}

.stay-heading p:last-child {
  margin-bottom: 6px;
  color: #d9e8f3;
}

.stay-detail-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.stay-detail-card {
  min-height: 250px;
  padding: 28px;
  border: 1px solid rgba(200, 233, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(10, 23, 48, 0.74);
  box-shadow: 0 20px 58px rgba(0, 0, 0, 0.18);
}

.stay-detail-card span,
.trust-strip span {
  display: block;
  margin-bottom: 12px;
  color: var(--blue-200);
  font-size: 12px;
  line-height: 1.4;
  text-transform: uppercase;
}

.stay-detail-card strong {
  display: block;
  margin-bottom: 18px;
  color: var(--gold-100);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.06;
}

.stay-detail-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 18px;
  border: 1px solid rgba(200, 233, 255, 0.14);
  background: rgba(6, 16, 31, 0.52);
}

.trust-strip div {
  min-height: 118px;
  padding: 24px;
  border-right: 1px solid rgba(200, 233, 255, 0.12);
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip strong {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.15;
}

.house-policy-section {
  padding: 112px 0;
  background:
    linear-gradient(180deg, var(--navy-800), var(--navy-900)),
    var(--navy-900);
}

.house-policy-heading {
  display: grid;
  grid-template-columns: minmax(240px, 0.52fr) minmax(0, 0.94fr) minmax(260px, 0.62fr);
  gap: 44px;
  align-items: end;
  margin-bottom: 44px;
}

.house-policy-heading h2 {
  margin-bottom: 0;
}

.house-policy-heading p:last-child {
  margin-bottom: 6px;
  color: #d9e8f3;
}

.house-policy-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.house-policy-card {
  min-height: 216px;
  padding: 26px;
  border: 1px solid rgba(200, 233, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(6, 16, 31, 0.36);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.16);
}

.house-policy-card span {
  display: block;
  margin-bottom: 12px;
  color: var(--blue-200);
  font-size: 12px;
  line-height: 1.4;
  text-transform: uppercase;
}

.house-policy-card strong {
  display: block;
  margin-bottom: 16px;
  color: var(--gold-100);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.08;
}

.house-policy-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.booking-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  gap: 70px;
  align-items: start;
}

.booking-copy {
  max-width: 460px;
}

.concept-gallery-section {
  background: var(--paper);
}

.concept-gallery-slider {
  position: relative;
  --gallery-frame-height: 396px;
  width: min(100%, var(--max-site));
  margin: 0 auto;
  padding: 24px 0 30px;
}

.concept-gallery-viewport {
  position: relative;
  overflow: hidden;
}

.concept-gallery-track {
  display: flex;
  gap: 16px;
  transition: transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.concept-gallery-slide {
  position: relative;
  flex: 0 0 calc((100% - 48px) / 4);
  min-width: 0;
  margin: 0;
  border: 8px solid #f1ede5;
  overflow: hidden;
  background: #e7e0d4;
  box-shadow: 0 16px 38px rgba(6, 16, 31, 0.08);
}

.gallery-open {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: zoom-in;
}

.concept-gallery-slide img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  filter: saturate(0.92) contrast(0.96) brightness(1.04);
  transition: transform 700ms ease;
}

.concept-gallery-slide:hover img,
.gallery-open:focus-visible img {
  transform: scale(1.035);
}

.concept-gallery-slide figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 1;
  padding: 8px 10px;
  border: 1px solid rgba(247, 251, 255, 0.42);
  background: rgba(6, 16, 31, 0.66);
  color: var(--ink);
  font-size: 12px;
  line-height: 1;
  text-transform: uppercase;
}

.concept-gallery-controls {
  position: absolute;
  top: 24px;
  left: 18px;
  right: 18px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--gallery-frame-height);
  margin-top: 0;
  pointer-events: none;
}

.concept-gallery-controls button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(6, 16, 31, 0.22);
  border-radius: 4px;
  background: rgba(6, 16, 31, 0.9);
  color: var(--gold-100);
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 0 12px 28px rgba(6, 16, 31, 0.18);
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.concept-gallery-controls button:hover,
.concept-gallery-controls button:focus-visible {
  border-color: var(--gold-500);
  background: var(--gold-500);
  color: var(--navy-950);
}

.concept-gallery-controls svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.concept-gallery-progress {
  position: relative;
  width: 140px;
  height: 1px;
  margin: 18px auto 0;
  overflow: hidden;
  background: rgba(6, 16, 31, 0.18);
}

.concept-gallery-progress span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 100%;
  background: var(--gold-500);
  transform: scaleX(0.125);
  transform-origin: left center;
  transition: transform 520ms ease;
}

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

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: 40px;
  background: rgba(6, 16, 31, 0.92);
  backdrop-filter: blur(18px);
}

.gallery-lightbox figure {
  width: min(1080px, 100%);
  margin: 0;
}

.gallery-lightbox img {
  width: 100%;
  max-height: 78vh;
  border: 1px solid rgba(200, 233, 255, 0.16);
  object-fit: contain;
  box-shadow: var(--shadow);
}

.gallery-lightbox figcaption {
  margin-top: 16px;
  color: var(--gold-100);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  text-align: center;
}

.gallery-lightbox button {
  display: grid;
  place-items: center;
  border: 1px solid rgba(189, 144, 58, 0.7);
  border-radius: 4px;
  background: rgba(6, 16, 31, 0.72);
  color: var(--gold-100);
  cursor: pointer;
}

.gallery-lightbox button:hover,
.gallery-lightbox button:focus-visible {
  background: var(--gold-500);
  color: var(--navy-950);
}

.gallery-lightbox svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gallery-lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 46px;
  height: 46px;
}

.gallery-lightbox-nav {
  position: absolute;
  top: 50%;
  width: 48px;
  height: 48px;
  transform: translateY(-50%);
}

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

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

.amenity-availability-band {
  padding: 42px 0;
  background:
    radial-gradient(circle at 8% 10%, rgba(75, 158, 204, 0.24), transparent 34%),
    linear-gradient(90deg, #08284d 0%, #04182f 100%);
}

.amenity-availability-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 72px;
  align-items: center;
  width: min(calc(100% - 150px), 1180px);
  margin: 0 auto;
}

.amenity-compact h2,
.availability-compact h2 {
  margin-bottom: 10px;
  color: var(--gold-500);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.06;
}

.gold-rule {
  width: 44px;
  height: 1px;
  margin: 0 0 24px;
  background: var(--gold-500);
}

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

.amenity-icon-list li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 14px;
  align-items: center;
  min-width: 0;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.45;
}

.amenity-icon {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: var(--gold-500);
}

.amenity-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.availability-compact {
  min-height: 164px;
  padding-left: 62px;
  border-left: 1px solid rgba(189, 144, 58, 0.44);
}

.availability-compact p {
  max-width: 330px;
  margin-bottom: 24px;
  color: var(--paper-muted);
  font-size: 15px;
  line-height: 1.65;
}

.availability-compact .button {
  min-width: 190px;
}

.location-section {
  padding: 120px 0;
  background: var(--navy-950);
}

.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(520px, 1.12fr);
  gap: 78px;
  align-items: center;
}

.location-copy {
  max-width: 560px;
}

.location-copy p:last-child {
  color: #d9e8f3;
}

.location-card {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  min-height: 520px;
  border: 1px solid rgba(200, 233, 255, 0.14);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(10, 23, 48, 0.78);
  box-shadow: var(--shadow);
}

.map-panel {
  position: relative;
  display: grid;
  min-height: 100%;
  background: var(--navy-800);
}

.map-panel::before,
.map-panel::after {
  content: none;
}

.map-panel iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
  filter: saturate(0.9) contrast(1.02);
}

.location-list {
  margin: 0;
  padding: 18px 30px;
}

.location-list div {
  display: grid;
  gap: 7px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(200, 233, 255, 0.12);
}

.location-list div:last-child {
  border-bottom: 0;
}

.location-list dt {
  color: var(--blue-200);
  font-size: 13px;
  text-transform: uppercase;
}

.location-list dd {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  line-height: 1.18;
}

.faq-section {
  padding: 126px 0;
  background: var(--paper);
}

.faq-heading {
  display: grid;
  grid-template-columns: 0.48fr 1fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 44px;
}

.faq-heading .section-label {
  color: var(--gold-600);
}

.faq-heading h2 {
  margin-bottom: 0;
  color: var(--navy-950);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.faq-item {
  border: 1px solid rgba(6, 16, 31, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.faq-item summary {
  position: relative;
  display: block;
  padding: 24px 56px 24px 24px;
  color: var(--navy-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  cursor: pointer;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 22px;
  color: var(--gold-600);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: -6px 24px 24px;
  color: #37506a;
  font-size: 16px;
}

.cta-section {
  padding: 96px 0;
  background:
    linear-gradient(90deg, rgba(6, 16, 31, 0.9), rgba(6, 16, 31, 0.62)),
    url("../images/pexels-gallery-view.webp") center/cover;
}

.cta-inner {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 64px;
}

.cta-inner h2 {
  max-width: 850px;
  margin-bottom: 0;
}

.cta-inner .button {
  flex: 0 0 auto;
}

.partners-section {
  padding: 104px 0 96px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(10, 23, 48, 0.96), rgba(6, 16, 31, 0.98)),
    var(--navy-950);
}

.partners-inner {
  width: min(calc(100% - 96px), var(--max-site));
  margin: 0 auto;
}

.partners-heading {
  display: grid;
  grid-template-columns: minmax(240px, 0.48fr) minmax(0, 1fr);
  gap: 72px;
  align-items: end;
  margin-bottom: 44px;
}

.partners-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.partners-viewport {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(200, 233, 255, 0.14);
  border-bottom: 1px solid rgba(200, 233, 255, 0.14);
}

.partners-viewport::before,
.partners-viewport::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  width: 90px;
  pointer-events: none;
}

.partners-viewport::before {
  left: 0;
  background: linear-gradient(90deg, var(--navy-950), rgba(6, 16, 31, 0));
}

.partners-viewport::after {
  right: 0;
  background: linear-gradient(270deg, var(--navy-950), rgba(6, 16, 31, 0));
}

.partners-track {
  display: flex;
  width: max-content;
  animation: partnerMarquee 34s linear infinite;
}

.partners-viewport:hover .partners-track,
.partners-viewport:focus-within .partners-track {
  animation-play-state: paused;
}

.partner-set {
  display: flex;
  flex: 0 0 auto;
  gap: 18px;
  padding: 24px 9px;
}

.partner-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: 244px;
  min-height: 88px;
  padding: 18px 20px;
  border: 1px solid rgba(200, 233, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(10, 23, 48, 0.62);
  color: var(--ink);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.16);
}

.partner-mark {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(189, 144, 58, 0.84);
  color: var(--gold-100);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  line-height: 1;
}

.partner-logo span:last-child {
  color: #d9e8f3;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1.1;
  white-space: nowrap;
}

.back-to-top {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 24;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(189, 144, 58, 0.76);
  border-radius: 4px;
  background: rgba(6, 16, 31, 0.86);
  color: var(--gold-100);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease, color 180ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  background: var(--gold-500);
  color: var(--navy-950);
}

.back-to-top svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@keyframes partnerMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.reviews-section {
  padding: 104px 0 90px;
  background: var(--navy-900);
}

.reviews-inner {
  width: min(calc(100% - 96px), var(--max-site));
  margin: 0 auto;
}

.reviews-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 44px;
}

.reviews-heading h2 {
  max-width: 620px;
  margin-bottom: 0;
}

.review-viewport {
  overflow: hidden;
}

.review-track {
  display: flex;
  gap: 24px;
  transition: transform 520ms ease;
  will-change: transform;
}

.review-card {
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: 0;
  padding: 28px;
  border: 1px solid rgba(200, 233, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(6, 16, 31, 0.4);
  box-shadow: 0 20px 58px rgba(0, 0, 0, 0.18);
}

.review-card img {
  width: 82px;
  height: 82px;
  margin-bottom: 22px;
  border: 2px solid rgba(189, 144, 58, 0.8);
  border-radius: 50%;
  object-fit: cover;
}

.review-stars {
  margin-bottom: 16px;
  color: var(--gold-500);
  font-size: 14px;
  letter-spacing: 0;
}

.review-card p {
  min-height: 116px;
  margin-bottom: 22px;
  color: #d9e8f3;
  font-size: 17px;
  line-height: 1.65;
}

.review-card h3 {
  margin-bottom: 4px;
  font-size: 22px;
}

.review-card span {
  color: var(--blue-200);
  font-size: 13px;
  text-transform: uppercase;
}

.review-controls {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 28px;
}

.review-controls button {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(189, 144, 58, 0.7);
  border-radius: 4px;
  background: transparent;
  color: var(--gold-100);
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}

.review-controls button:hover,
.review-controls button:focus-visible {
  background: var(--gold-500);
  color: var(--navy-950);
}

.review-controls svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.enquiry-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(6, 16, 31, 0.44);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-wide {
  grid-column: 1 / -1;
}

label {
  color: var(--blue-200);
  font-size: 13px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(200, 233, 255, 0.22);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

select {
  appearance: none;
  background-color: rgba(255, 255, 255, 0.055);
  background-image:
    linear-gradient(45deg, transparent 50%, var(--gold-100) 50%),
    linear-gradient(135deg, var(--gold-100) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 50%,
    calc(100% - 12px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

select option {
  background: var(--navy-900);
  color: var(--ink);
}

select option:checked {
  background: var(--gold-500);
  color: var(--navy-950);
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue-300);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 0 0 3px rgba(143, 200, 237, 0.12);
}

input::placeholder,
textarea::placeholder {
  color: rgba(215, 232, 244, 0.58);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--blue-200);
  font-size: 14px;
  line-height: 1.6;
}

.form-status.is-error {
  color: #ffd3c2;
}

.contact-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.contact-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(6, 16, 31, 0.94), rgba(6, 16, 31, 0.44)),
    linear-gradient(0deg, rgba(6, 16, 31, 0.92), rgba(6, 16, 31, 0.12));
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  width: min(800px, calc(100% - 80px));
  margin: 0 auto;
  padding: 130px 0 86px;
}

.contact-hero-content h1 {
  margin-bottom: 18px;
}

.contact-hero-content p:last-child {
  max-width: 650px;
  color: #d9e8f3;
  font-size: 19px;
}

.contact-details {
  max-width: 500px;
}

.contact-list {
  display: grid;
  gap: 20px;
  margin-top: 42px;
  border-top: 1px solid var(--line);
}

.contact-list div {
  padding-top: 20px;
}

.contact-list span {
  display: block;
  margin-bottom: 8px;
  color: var(--blue-200);
  font-size: 13px;
  text-transform: uppercase;
}

.contact-list a,
.contact-list p {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
}

.contact-list a:hover,
.contact-list a:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  color: var(--gold-100);
}

.arrival-grid {
  grid-template-columns: 0.9fr 1fr;
}

.arrival-copy {
  max-width: 540px;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--gold-100);
  font-weight: 700;
}

.policy-section {
  padding: 150px 0 118px;
  background:
    linear-gradient(180deg, rgba(6, 16, 31, 0.94), rgba(10, 23, 48, 0.98)),
    var(--navy-950);
}

.policy-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.44fr) minmax(0, 1fr);
  gap: 76px;
  align-items: start;
}

.policy-heading {
  position: sticky;
  top: 112px;
}

.policy-heading .section-label {
  color: var(--gold-100);
}

.policy-heading h1 {
  margin-bottom: 18px;
  font-size: 58px;
  line-height: 1.02;
}

.policy-heading p {
  color: #d9e8f3;
}

.policy-content {
  display: grid;
  gap: 18px;
}

.policy-content article {
  padding: 30px;
  border: 1px solid rgba(200, 233, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(6, 16, 31, 0.32);
}

.policy-content h2 {
  margin-bottom: 12px;
  color: var(--gold-100);
  font-size: 30px;
}

.policy-content p,
.policy-content li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.policy-content p:last-child,
.policy-content ul:last-child {
  margin-bottom: 0;
}

.policy-content ul {
  padding-left: 20px;
  margin: 0 0 10px;
}

.policy-content a {
  color: var(--gold-100);
}

.site-footer {
  padding: 34px 0 24px;
  background: var(--navy-950);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(280px, 1.35fr) minmax(150px, 0.72fr) minmax(170px, 0.78fr) minmax(260px, 1fr);
  gap: 58px;
  width: min(calc(100% - 96px), var(--max-site));
  margin: 0 auto;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
}

.footer-logo-image {
  display: block;
  width: 220px;
  max-width: 100%;
  height: auto;
  transition: opacity 180ms ease;
}

.footer-brand p,
.footer-contact p {
  margin: 14px 0 0;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.6;
}

.footer-socials {
  display: flex;
  gap: 18px;
  margin-top: 18px;
}

.footer-socials a,
.footer-social-icon {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  color: var(--gold-500);
}

.footer-social-icon {
  color: rgba(189, 144, 58, 0.54);
}

.footer-socials svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-column,
.footer-contact {
  display: grid;
  gap: 12px;
  align-content: start;
  color: var(--ink);
  font-size: 14px;
}

.footer-column h2,
.footer-contact h2 {
  margin: 0 0 4px;
  color: var(--gold-500);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
}

.footer-column a,
.footer-contact a,
.footer-socials a,
.footer-logo {
  transition: color 180ms ease;
}

.footer-column a:hover,
.footer-column a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible,
.footer-socials a:hover,
.footer-socials a:focus-visible,
.footer-logo:hover,
.footer-logo:focus-visible {
  color: var(--gold-100);
}

.footer-logo:hover .footer-logo-image,
.footer-logo:focus-visible .footer-logo-image {
  opacity: 0.88;
}

.footer-bottom {
  width: 100%;
  margin-top: 32px;
  border-top: 1px solid rgba(200, 233, 255, 0.13);
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  width: min(calc(100% - 96px), var(--max-site));
  margin: 0 auto;
  padding-top: 18px;
}

.footer-bottom p,
.footer-bottom a {
  margin: 0;
  color: rgba(215, 232, 244, 0.86);
  font-size: 12px;
  line-height: 1.5;
}

.footer-bottom a {
  color: var(--gold-100);
}

@media (max-width: 1100px) {
  .site-header {
    padding: 0 28px;
  }

  .hero-content {
    margin-left: 40px;
  }

  h1 {
    font-size: 64px;
  }

  h2 {
    font-size: 48px;
  }

  .intro-section h2 {
    font-size: 54px;
  }

  .intro-grid,
  .stay-heading,
  .feature-grid,
  .booking-grid,
  .contact-grid,
  .arrival-grid,
  .location-grid,
  .faq-heading,
  .policy-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .policy-heading {
    position: static;
  }

  .stay-detail-grid,
  .trust-strip,
  .house-policy-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .house-policy-heading,
  .partners-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

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

  .map-panel {
    min-height: 300px;
  }

  .map-panel iframe {
    min-height: 360px;
  }

  .feature-image img,
  .arrival-image img {
    height: 520px;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .amenity-row {
    grid-template-columns: 70px 1fr;
  }

  .amenity-row p {
    grid-column: 2;
  }

  .concept-gallery-slide {
    flex-basis: calc((100% - 16px) / 2);
  }

  .concept-gallery-slider {
    --gallery-frame-height: 346px;
  }

  .concept-gallery-slide img {
    height: 330px;
  }

  .amenity-availability-inner,
  .footer-inner {
    width: min(calc(100% - 64px), 980px);
  }

  .amenity-availability-inner {
    gap: 42px;
  }

  .availability-compact {
    padding-left: 42px;
  }

  .review-card {
    flex-basis: calc((100% - 24px) / 2);
  }

  .footer-inner {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

@media (max-width: 820px) {
  .section-inner {
    width: min(calc(100% - 40px), var(--content));
  }

  .stay-details-section .section-inner,
  .house-policy-section .section-inner,
  .location-section .section-inner,
  .faq-section .section-inner {
    width: calc(100% - 40px);
  }

  .site-header {
    min-height: 70px;
    padding: 0 20px;
  }

  .brand-logo,
  .site-header.is-scrolled .brand-logo {
    width: 118px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 70px 20px auto 20px;
    display: grid;
    gap: 6px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(6, 16, 31, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 12px;
  }

  .nav-cta {
    margin-top: 8px;
  }

  .hero {
    min-height: 760px;
    align-items: end;
  }

  .hero-image {
    object-position: 62% center;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(6, 16, 31, 0.38), rgba(6, 16, 31, 0.95) 65%),
      linear-gradient(90deg, rgba(6, 16, 31, 0.68), rgba(6, 16, 31, 0.1));
  }

  .hero-content {
    width: calc(100% - 40px);
    margin: 0 auto;
    padding-bottom: 220px;
  }

  h1 {
    font-size: 54px;
    line-height: 1.04;
  }

  h2 {
    font-size: 42px;
  }

  .section-label {
    margin-bottom: 22px;
    font-size: 28px;
  }

  .intro-section .section-label {
    font-size: 30px;
  }

  .intro-section h2 {
    font-size: 44px;
  }

  .hero-copy,
  .contact-hero-content p:last-child {
    font-size: 17px;
  }

  .hero-panel {
    left: 20px;
    right: 20px;
    bottom: 28px;
    grid-template-columns: 1fr;
    width: auto;
  }

  .hero-panel div {
    padding: 16px 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(200, 233, 255, 0.16);
  }

  .hero-panel div:last-child {
    border-bottom: 0;
  }

  .amenities-section,
  .contact-section,
  .gallery-section {
    padding: 78px 0;
  }

  .intro-section {
    padding: 108px 0;
  }

  .intro-section::before {
    top: 45%;
    font-size: clamp(86px, 30vw, 180px);
  }

  .media-feature,
  .arrival-section,
  .booking-section,
  .stay-details-section,
  .house-policy-section,
  .location-section,
  .faq-section,
  .cta-section,
  .partners-section,
  .policy-section {
    padding: 78px 0;
  }

  .policy-heading h1 {
    font-size: 44px;
  }

  .policy-content article {
    padding: 24px;
  }

  .stay-heading,
  .house-policy-heading,
  .faq-heading {
    margin-bottom: 32px;
  }

  .stay-detail-grid,
  .trust-strip,
  .house-policy-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(200, 233, 255, 0.12);
  }

  .trust-strip div:last-child {
    border-bottom: 0;
  }

  .feature-image img,
  .arrival-image img {
    height: 420px;
  }

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

  .gallery-large {
    min-height: 400px;
  }

  .concept-gallery-slider {
    --gallery-frame-height: 362px;
    width: calc(100% - 40px);
  }

  .concept-gallery-slide {
    flex-basis: 100%;
    border-width: 6px;
  }

  .concept-gallery-slide img {
    height: 350px;
  }

  .concept-gallery-controls {
    left: 12px;
    right: 12px;
  }

  .concept-gallery-progress {
    width: 180px;
  }

  .gallery-lightbox {
    padding: 24px 20px;
  }

  .gallery-lightbox-nav {
    top: auto;
    bottom: 24px;
    transform: none;
  }

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

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

  .gallery-lightbox figcaption {
    padding: 0 64px;
    font-size: 22px;
  }

  .amenity-availability-inner {
    grid-template-columns: 1fr;
    width: calc(100% - 40px);
    gap: 34px;
  }

  .availability-compact {
    min-height: auto;
    padding: 34px 0 0;
    border-left: 0;
    border-top: 1px solid rgba(189, 144, 58, 0.44);
  }

  .footer-inner {
    grid-template-columns: 1fr;
    width: calc(100% - 40px);
    gap: 30px;
  }

  .footer-bottom {
    margin-top: 26px;
  }

  .footer-bottom-inner {
    display: grid;
    width: calc(100% - 40px);
    gap: 8px;
  }

  .location-card {
    min-height: auto;
  }

  .map-panel iframe {
    min-height: 320px;
  }

  .location-list {
    padding: 10px 24px;
  }

  .cta-inner {
    display: grid;
    gap: 28px;
  }

  .partners-inner {
    width: calc(100% - 40px);
  }

  .back-to-top {
    right: 18px;
    bottom: 18px;
    width: 44px;
    height: 44px;
  }

  .partners-heading {
    margin-bottom: 32px;
  }

  .partner-logo {
    width: 222px;
  }

  .amenity-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .amenity-row p {
    grid-column: auto;
  }

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

  .form-wide {
    grid-column: auto;
  }

  .contact-hero {
    min-height: 480px;
  }

  .contact-hero-content {
    width: calc(100% - 40px);
    padding: 120px 0 60px;
  }

  .site-footer {
    padding: 44px 0 24px;
  }

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

  .reviews-inner {
    width: calc(100% - 40px);
  }

  .reviews-heading {
    display: block;
    margin-bottom: 32px;
  }

  .review-card {
    flex-basis: 100%;
  }

  .review-card p {
    min-height: auto;
  }
}

@media (max-width: 520px) {
  .hero {
    min-height: 840px;
  }

  .hero-content {
    padding-bottom: 320px;
  }

  h1 {
    font-size: 40px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: 38px;
    line-height: 1.06;
  }

  .hero-subtitle {
    margin: -4px 0 16px;
    font-size: 22px;
  }

  h2 {
    font-size: 34px;
  }

  .section-label,
  .intro-section .section-label {
    font-size: 26px;
  }

  .intro-section h2 {
    font-size: 36px;
  }

  .intro-section::before {
    top: 48%;
    left: 50%;
    font-size: 118px;
  }

  h3 {
    font-size: 22px;
  }

  p {
    font-size: 16px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .feature-image img,
  .arrival-image img,
  .gallery-large,
  .gallery-item {
    height: 340px;
    min-height: 340px;
  }

  .concept-gallery-slide img {
    height: 310px;
  }

  .concept-gallery-slider {
    --gallery-frame-height: 322px;
  }

  .stay-detail-card {
    min-height: auto;
    padding: 24px;
  }

  .house-policy-card {
    min-height: auto;
    padding: 24px;
  }

  .house-policy-card strong {
    font-size: 25px;
  }

  .stay-detail-card strong {
    font-size: 28px;
  }

  .faq-item summary {
    font-size: 21px;
  }

  .map-panel strong {
    font-size: 34px;
  }

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

  .amenity-compact h2,
  .availability-compact h2 {
    font-size: 31px;
  }
}
