:root {
  --ink: #152032;
  --muted: #5c6878;
  --brand: #174ea6;
  --brand-deep: #0d2f68;
  --gold: #f4b942;
  --green: #21845b;
  --surface: #f5f7fb;
  --line: #dce3ee;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(20, 39, 75, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 86px;
  padding: 10px 16px 14px 12px;
  background: #073a82;
  border-bottom: 5px solid #009bd8;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.12) inset;
}

.brand,
.header-actions,
.booking-form,
.section-heading,
.footer-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 9px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: #006cff;
  background: var(--white);
  border-radius: 8px;
}

.brand-mark svg {
  width: 23px;
  height: 23px;
  fill: #006cff;
  stroke: #006cff;
  stroke-width: 1.8;
}

.brand-name {
  color: var(--white);
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
}

.brand-name span {
  color: #9bc5ef;
}

.header-actions {
  gap: 11px;
  margin-left: auto;
  order: 3;
}

.nav-icon-button {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(163, 197, 238, 0.48);
  border-radius: 9px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.nav-icon-button svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.25;
}

.nav-icon-button:hover,
.nav-icon-button:focus-visible {
  background: rgba(255, 255, 255, 0.18);
  outline: none;
}

.nav-menu {
  position: absolute;
  top: calc(100% + 5px);
  right: 16px;
  display: none;
  min-width: 210px;
  padding: 10px;
  color: var(--white);
  background: #073a82;
  border: 1px solid rgba(163, 197, 238, 0.42);
  border-radius: 8px;
  box-shadow: 0 18px 35px rgba(10, 28, 61, 0.28);
}

.site-header.menu-open .nav-menu {
  display: grid;
  gap: 4px;
}

.nav-menu a {
  min-height: 40px;
  padding: 0 12px;
  color: var(--white);
  background: transparent;
  border: 0;
  border-radius: 6px;
  font-weight: 800;
  text-align: left;
}

.nav-menu a {
  display: flex;
  align-items: center;
}

.nav-menu a:hover {
  background: rgba(255, 255, 255, 0.12);
}

@media (min-width: 961px) {
  .nav-menu {
    position: static;
    order: 2;
    display: flex;
    align-items: center;
    gap: 4px;
    min-width: 0;
    margin-left: auto;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .nav-menu a {
    min-height: 40px;
    padding: 0 10px;
    font-size: 14px;
    white-space: nowrap;
  }

  .menu-toggle {
    display: none;
  }

  .header-actions {
    margin-left: 0;
  }
}

.hero {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  color: var(--white);
}

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

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 20, 43, 0.88) 0%, rgba(12, 35, 73, 0.68) 42%, rgba(12, 35, 73, 0.12) 100%),
    linear-gradient(0deg, rgba(7, 20, 43, 0.3), rgba(7, 20, 43, 0.05));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100% - 36px));
  padding: 86px 0 92px clamp(18px, 7vw, 92px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2,
h3,
.faq-list summary {
  overflow-wrap: anywhere;
  text-wrap: balance;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(38px, 5.2vw, 64px);
  line-height: 1.05;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 19px;
  line-height: 1.7;
}

.primary-btn,
.secondary-btn,
.booking-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 0;
  border-radius: 8px;
  font-weight: 900;
}

.primary-btn,
.booking-form button {
  color: #152032;
  background: var(--gold);
}

.secondary-btn {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.36);
}

.booking-band {
  position: relative;
  z-index: 5;
  width: min(calc(100% - 36px), 680px);
  margin: -54px auto 0;
  padding: 30px 26px 0;
  background: #004aa6;
  border: 0;
  border-radius: 0;
  box-shadow: 0 16px 34px rgba(17, 46, 84, 0.22);
}

.booking-form {
  display: grid;
  gap: 0;
}

.booking-form .search-row {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 46px;
  background: var(--white);
  border: 2px solid #f2a800;
  border-bottom-width: 1px;
  overflow: hidden;
}

.booking-form .search-row:first-child {
  border-radius: 6px 6px 0 0;
}

.booking-form .search-row svg {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  margin-left: 14px;
  color: #272727;
  stroke-width: 1.55;
}

.booking-form input,
.booking-form select {
  width: 100%;
  min-width: 0;
  min-height: 44px;
  padding: 0 14px 0 9px;
  color: #111;
  background: transparent;
  border: 0;
  border-radius: 0;
  outline: none;
  font-size: clamp(14px, 1.4vw, 15px);
  font-weight: 500;
  line-height: 1.25;
}

.booking-form input::placeholder {
  color: #111;
  opacity: 1;
}

.booking-form select {
  appearance: none;
  padding-right: 34px;
  text-overflow: ellipsis;
  background-image:
    linear-gradient(45deg, transparent 50%, #111 50%),
    linear-gradient(135deg, #111 50%, transparent 50%);
  background-position:
    calc(100% - 16px) 50%,
    calc(100% - 11px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.visually-hidden-field {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.booking-form input:focus,
.booking-form select:focus {
  box-shadow: none;
}

.booking-form .search-row:focus-within {
  z-index: 1;
  box-shadow: 0 0 0 2px rgba(255, 196, 0, 0.45) inset;
}

.booking-form button {
  min-height: 56px;
  color: var(--white);
  background: #006fe8;
  border: 2px solid #f2a800;
  border-top-width: 1px;
  border-radius: 0 0 5px 5px;
  font-size: clamp(17px, 1.7vw, 19px);
  font-weight: 800;
  line-height: 1.1;
}

.booking-form button:hover {
  background: #0062cc;
}

.form-note {
  margin: 10px 0 0;
  padding: 0 0 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(11px, 2vw, 12px);
  line-height: 1.35;
  text-align: center;
}

.intro-section,
.property-section,
.packages-section,
.faq-section,
.reviews-section,
.disclaimer-section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 86px 0 0;
}

.section-heading {
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 28px;
}

.section-heading h2,
.faq-section h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(28px, 4.4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

.support-grid,
.property-grid,
.package-grid {
  display: grid;
  gap: 18px;
}

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

.support-grid article,
.property-grid article,
.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(20, 39, 75, 0.06);
}

.support-grid article {
  padding: 26px;
}

.support-grid svg {
  width: 36px;
  height: 36px;
  color: var(--brand);
}

.support-grid h3,
.property-grid h3 {
  margin: 18px 0 10px;
  font-size: clamp(20px, 2.3vw, 22px);
  line-height: 1.2;
}

.support-grid p,
.property-grid p,
.faq-list p,
.site-footer p {
  color: var(--muted);
  line-height: 1.65;
}

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

.property-grid article {
  min-height: 220px;
  padding: 24px;
  border-top: 5px solid var(--gold);
}

.property-grid span {
  color: var(--brand);
  font-weight: 900;
}

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

.package-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(20, 39, 75, 0.08);
}

.package-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.package-body {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.package-location {
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.package-body h3 {
  margin: 0;
  font-size: clamp(20px, 2.3vw, 22px);
  line-height: 1.2;
}

.package-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.package-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 6px;
}

.package-meta strong {
  color: var(--brand-deep);
  font-size: 18px;
}

.package-meta a {
  min-height: 38px;
  padding: 9px 12px;
  color: var(--white);
  background: var(--brand);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.faq-section {
  padding-bottom: 0;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details,
.review-card {
  padding: 20px 22px;
}

.faq-list summary {
  cursor: pointer;
  font-size: clamp(16px, 2.2vw, 18px);
  line-height: 1.35;
  font-weight: 900;
}

.faq-list p {
  margin: 14px 0 0;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.review-card {
  display: grid;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(20, 39, 75, 0.06);
}

.review-stars {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 0;
}

.review-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.review-card strong {
  color: var(--ink);
  font-size: 16px;
}

.review-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.disclaimer-section {
  padding-bottom: 88px;
}

.disclaimer-panel {
  padding: 26px;
  background: #fff8e7;
  border: 1px solid #f0d58a;
  border-left: 5px solid var(--gold);
  border-radius: 8px;
}

.disclaimer-panel h2 {
  margin-bottom: 12px;
  font-size: clamp(24px, 4vw, 34px);
  line-height: 1.12;
}

.disclaimer-panel p:last-child {
  margin-bottom: 0;
  color: #5c4b22;
  line-height: 1.75;
}

.call-popup {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  place-items: center;
  padding: 20px;
}

.call-popup.is-visible {
  display: grid;
}

.call-popup-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 19, 38, 0.86), rgba(7, 58, 130, 0.58)),
    rgba(7, 19, 38, 0.68);
  backdrop-filter: blur(3px);
}

.call-popup-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(220px, 0.78fr) minmax(0, 1fr);
  width: min(100%, 760px);
  max-height: calc(100vh - 40px);
  overflow: auto;
  padding: 0;
  color: #101827;
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
  text-align: left;
}

.call-popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: #5c6574;
  background: rgba(245, 247, 251, 0.92);
  border: 1px solid rgba(220, 227, 238, 0.9);
  border-radius: 50%;
}

.call-popup-close svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.3;
}

.call-popup-media {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 16px;
  min-height: 100%;
  padding: 32px 24px;
  color: var(--white);
  background:
    linear-gradient(150deg, rgba(7, 58, 130, 0.98), rgba(0, 111, 232, 0.86)),
    url("./assets/hero-resort.jpg") center / cover;
}

.call-popup-agent {
  display: grid;
  place-items: center;
  width: 154px;
  height: 154px;
  overflow: hidden;
  background: #d8e8ff;
  border: 8px solid rgba(255, 255, 255, 0.86);
  border-radius: 50%;
  box-shadow: 0 18px 40px rgba(5, 24, 54, 0.28);
}

.call-popup-agent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.call-popup-media p {
  max-width: 220px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
}

.call-popup-content {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 14px;
  padding: 44px 42px 34px;
  text-align: center;
}

.call-popup-kicker {
  width: fit-content;
  margin: 0;
  padding: 7px 11px;
  color: #1740a0;
  background: #eaf2ff;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.call-popup h2 {
  max-width: 420px;
  margin: 0 auto;
  color: #102247;
  font-size: clamp(28px, 3.5vw, 38px);
  line-height: 1.08;
}

.call-popup-copy {
  max-width: 460px;
  margin: 0 auto;
  color: #5c6574;
  font-size: 16px;
  line-height: 1.65;
}

.call-popup-number {
  width: fit-content;
  color: #1740a0;
  font-size: clamp(25px, 3vw, 32px);
  font-weight: 950;
  line-height: 1.05;
}

.call-popup-cta {
  display: inline-flex;
  width: fit-content;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  color: var(--white);
  background: #0078f2;
  border-radius: 10px;
  box-shadow: 0 14px 22px rgba(0, 90, 210, 0.2);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.15;
}

.call-popup-cta:hover,
.call-popup-cta:focus-visible {
  background: #0067d0;
  outline: none;
}

.call-popup-cta svg {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  stroke-width: 2.2;
}

.call-popup-note {
  max-width: 360px;
  margin: 0 auto;
  color: #7a8493;
  font-size: 13px;
  line-height: 1.45;
}

body.popup-open {
  overflow: hidden;
}

.site-footer {
  padding: 58px clamp(18px, 4vw, 56px) 24px;
  color: var(--white);
  background: #071326;
}

.footer-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.15fr) minmax(150px, 0.72fr) minmax(230px, 1fr) minmax(260px, 1.2fr);
  gap: 34px;
}

.footer-brand,
.footer-links,
.footer-service {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-brand strong,
.footer-links strong,
.footer-service strong {
  color: var(--white);
  font-size: 19px;
  line-height: 1.25;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-brand p,
.footer-service p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.7;
}

.footer-links {
  justify-items: start;
}

.footer-links a {
  font-size: 14px;
  line-height: 1.45;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

.footer-badges span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 7px 10px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
}

.footer-bottom {
  margin-top: 36px;
  padding-top: 20px;
  color: rgba(255, 255, 255, 0.62);
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 13px;
  line-height: 1.5;
}

.subpage-main {
  background: var(--surface);
}

.page-hero {
  padding: clamp(56px, 8vw, 96px) clamp(18px, 4vw, 56px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 20, 43, 0.88), rgba(7, 58, 130, 0.72)),
    url("./assets/hero-resort.jpg") center / cover;
}

.page-hero-inner,
.page-content,
.page-footer-inner {
  width: min(1040px, 100%);
  margin: 0 auto;
}

.page-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(34px, 5.8vw, 60px);
  line-height: 1.08;
}

.page-hero p {
  max-width: 720px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.7;
}

.page-content {
  display: grid;
  gap: 22px;
  padding: 44px 18px 72px;
}

.page-content.wide {
  width: min(1120px, 100%);
}

.page-card {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(20, 39, 75, 0.06);
}

.page-card.featured {
  border-top: 5px solid var(--gold);
}

.page-grid-two,
.page-grid-three,
.page-package-list,
.page-timeline {
  display: grid;
  gap: 18px;
}

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

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

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

.page-mini-card,
.page-package-item,
.page-contact-panel,
.page-notice {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(20, 39, 75, 0.06);
}

.page-mini-card,
.page-contact-panel,
.page-notice {
  padding: 22px;
}

.page-mini-card strong,
.page-contact-panel strong,
.page-package-item strong {
  display: block;
  margin-bottom: 8px;
  color: var(--brand-deep);
  font-size: 17px;
}

.page-mini-card p,
.page-contact-panel p,
.page-notice p,
.page-package-item p {
  margin-bottom: 0;
}

.page-package-item {
  overflow: hidden;
}

.page-package-item img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.page-package-item div {
  padding: 18px;
}

.page-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.page-badges span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 7px 10px;
  color: var(--brand-deep);
  background: #eaf2ff;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.page-timeline {
  counter-reset: step;
}

.page-timeline li {
  position: relative;
  list-style: none;
  padding-left: 52px;
}

.page-timeline li::before {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  counter-increment: step;
  content: counter(step);
  color: var(--white);
  background: var(--brand);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
}

.page-callout {
  padding: 24px;
  color: var(--white);
  background: linear-gradient(135deg, #073a82, #006fe8);
  border-radius: 8px;
}

.page-callout h2,
.page-callout p {
  color: inherit;
}

.page-callout p {
  max-width: 760px;
}

.page-callout .page-top-link {
  color: #152032;
  background: var(--gold);
}

.page-card h2 {
  margin-bottom: 12px;
  font-size: clamp(24px, 3.6vw, 32px);
  line-height: 1.15;
}

.page-card p,
.page-card li {
  color: var(--muted);
  line-height: 1.7;
}

.page-card ul {
  margin: 0;
  padding-left: 20px;
}

.page-top-link {
  display: inline-flex;
  width: fit-content;
  min-height: 42px;
  align-items: center;
  padding: 0 16px;
  color: var(--white);
  background: var(--brand);
  border-radius: 8px;
  font-weight: 800;
}

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

  .hero-content {
    padding-top: 78px;
    padding-bottom: 82px;
  }

  .section-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .support-grid,
  .property-grid,
  .package-grid,
  .reviews-grid,
  .page-grid-three,
  .page-package-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 86px;
  }

  .hero {
    min-height: 620px;
  }

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

  .hero-content {
    width: calc(100% - 28px);
    padding: 88px 0 84px 18px;
  }

  h1 {
    font-size: clamp(34px, 10.8vw, 46px);
    line-height: 1.08;
  }

  .section-heading {
    gap: 10px;
    margin-bottom: 22px;
  }

  .section-heading h2,
  .faq-section h2 {
    font-size: clamp(26px, 8vw, 34px);
    line-height: 1.12;
  }

  .page-hero h1 {
    font-size: clamp(31px, 9vw, 42px);
    line-height: 1.1;
  }

  .page-card h2,
  .disclaimer-panel h2 {
    font-size: clamp(23px, 7vw, 28px);
  }

  .hero-copy {
    font-size: 18px;
    line-height: 1.65;
  }

  .booking-band {
    width: min(100% - 24px, 560px);
    margin-top: -72px;
    padding: 24px 12px 0;
  }

  .booking-form .search-row {
    min-height: 48px;
  }

  .booking-form input,
  .booking-form select {
    min-height: 46px;
    font-size: 15px;
  }

  .booking-form button {
    min-height: 58px;
    font-size: 19px;
  }

  .call-popup {
    place-items: center;
    padding: 12px;
  }

  .call-popup-card {
    grid-template-columns: 1fr;
    width: 100%;
    max-height: calc(100vh - 24px);
    border-radius: 16px;
  }

  .call-popup-close {
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
  }

  .call-popup-media {
    min-height: 154px;
    gap: 10px;
    padding: 26px 18px 22px;
  }

  .call-popup-agent {
    width: 112px;
    height: 112px;
    border-width: 6px;
  }

  .call-popup-media p {
    font-size: 13px;
  }

  .call-popup-content {
    gap: 12px;
    padding: 24px 20px 20px;
  }

  .call-popup h2 {
    font-size: clamp(25px, 7vw, 32px);
  }

  .call-popup-copy {
    font-size: 15px;
    line-height: 1.55;
  }

  .call-popup-number {
    font-size: clamp(25px, 7vw, 34px);
  }

  .call-popup-cta {
    width: 100%;
    min-height: 52px;
    border-radius: 10px;
    font-size: 16px;
  }

  .call-popup-cta svg {
    width: 21px;
    height: 21px;
  }

  .support-grid,
  .property-grid,
  .package-grid,
  .reviews-grid,
  .page-grid-two,
  .page-grid-three,
  .page-package-list {
    grid-template-columns: 1fr;
  }

  .page-content {
    padding-top: 34px;
  }

  .page-mini-card,
  .page-contact-panel,
  .page-notice,
  .page-card,
  .page-callout {
    padding: 20px;
  }

  .intro-section,
  .property-section,
  .packages-section,
  .faq-section,
  .reviews-section,
  .disclaimer-section {
    padding-top: 64px;
  }
}
