:root {
  --navy: #07101f;
  --navy-soft: #0c1728;
  --cream: #f4efe6;
  --cream-2: #fbf7ef;
  --white: #ffffff;
  --gold: #d9aa4f;
  --gold-dark: #a87220;
  --text: #101928;
  --muted: #667085;
  --line: rgba(16, 24, 40, 0.14);
  --line-dark: rgba(255, 255, 255, 0.16);
  --shadow: 0 32px 90px rgba(7, 16, 31, 0.28);
  --serif: "montserrat", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --header-h: 78px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background: var(--cream-2);
  overflow-x: hidden;
}
body.modal-open {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
img,
video {
  display: block;
  max-width: 100%;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: #02050a;
  transition:
    opacity 0.8s ease,
    visibility 0.8s ease;
}
.loader img {
  width: min(520px, 72vw);
  filter: drop-shadow(0 20px 55px rgba(0, 0, 0, 0.6));
  animation: loaderFloat 2.6s ease-in-out infinite;
}
.loader span {
  position: absolute;
  bottom: 20%;
  width: 160px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: loaderLine 1.5s ease-in-out infinite;
}
.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 75px;
  z-index: 1000;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.2rem;
  padding: 0 clamp(1rem, 4vw, 4.5rem);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(2, 5, 10, 0.74), rgba(2, 5, 10, 0.22));
  backdrop-filter: blur(14px);
  transition:
    background 0.35s ease,
    box-shadow 0.35s ease,
    height 0.35s ease;
}
.site-header.is-scrolled {
  height: 100px;
  background: rgba(7, 16, 31, 0.92);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.28);
}
.brand {
  display: flex;
  align-items: center;
  min-width: 0;
  width: min(220px, 32vw);
}
.brand__logo {
  width: 65%;
  height: auto;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.35));
}
.brand--footer {
  width: min(260px, 70vw);
  margin-bottom: 1.1rem;
}
.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.8vw, 2.4rem);
}
.site-nav a {
  position: relative;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.25s ease;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.55rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.32s ease;
}
.site-nav a:hover,
.site-nav a.is-active {
  color: var(--white);
}
.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  place-items: center;
  padding: 0;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  margin: 3px auto;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}
.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 1.45rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  white-space: nowrap;
  overflow: hidden;
  cursor: pointer;
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease,
    color 0.35s ease,
    box-shadow 0.35s ease;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.38), transparent);
  transform: translateX(-120%);
  transition: transform 0.72s ease;
}
.btn:hover::before {
  transform: translateX(120%);
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
}
.btn--gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn--outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}
.btn--outline-dark {
  background: transparent;
  color: var(--gold);
  border-color: rgba(217, 170, 79, 0.55);
}
.btn--small {
  min-height: 42px;
  padding-inline: 1.1rem;
  font-size: 0.7rem;
}
.text-link {
  border: 0;
  padding: 0;
  margin-top: 1rem;
  background: transparent;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}
.text-link::after {
  content: " ->";
}

.section {
  padding: clamp(5rem, 10vw, 9rem) clamp(1.15rem, 6vw, 9rem);
}
.section--dark {
  background: var(--navy);
  color: var(--white);
}
.section--soft {
  background: var(--cream);
}
.eyebrow,
.section-kicker {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.38em;
  font-size: 0.74rem;
  font-weight: 800;
}
.display,
h1,
h2 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: -0.055em;
  margin: 0;
}
h1 {
  font-size: clamp(3.2rem, 4.5vw, 8rem);
}
h2 {
  font-size: clamp(2.5rem, 3.5vw, 5.8rem);
}
h3 {
  margin: 0;
  font-size: 1.22rem;
}
em {
  font-style: italic;
  font-weight: 500;
}
.lead,
p {
  line-height: 1.8;
  color: rgba(16, 24, 40, 0.68);
}
.section--dark p {
  color: rgba(255, 255, 255, 0.66);
}

.video-hero {
  min-height: 100svh;
  display: grid;
  align-items: center;
  position: relative;
  isolation: isolate;
  color: var(--white);
  overflow: hidden;
  padding-top: calc(var(--header-h) + 3rem);
  padding-bottom: 7.5rem;
}
.video-hero__media,
.video-hero__media video,
.video-hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.video-hero__media picture,
.video-hero__media img {
  width: 100%;
  height: 100%;
  display: block;
}

.video-hero__media {
  z-index: -2;
  background: #02050a;
}
.video-hero__media video {
  object-fit: cover;
  transform: scale(1.02);
  filter: saturate(0.9) contrast(1.04);
}
.video-hero__overlay {
  z-index: 1;
}
.video-hero__content {
  width: min(980px, 100%);
  position: relative;
  z-index: 2;
}
.hero-logo {
  width: min(560px, 84vw);
  margin: 0 0 1.35rem -1.2rem;
  filter: drop-shadow(0 22px 50px rgba(0, 0, 0, 0.55));
}
.video-hero .lead {
  max-width: 700px;
  margin: 1.35rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
}
.hero__buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.hero__features {
  position: absolute;
  z-index: 2;
  left: clamp(1.15rem, 6vw, 9rem);
  right: clamp(1.15rem, 6vw, 9rem);
  bottom: 2.1rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}
.hero__features span {
  padding: 1rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.73rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}
.scroll-cue {
  position: absolute;
  z-index: 3;
  right: clamp(1.15rem, 4vw, 4.5rem);
  bottom: 8.5rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.scroll-cue span {
  width: 28px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  position: relative;
}
.scroll-cue span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 9px;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  transform: translateX(-50%);
  animation: scrollDot 1.6s ease infinite;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 3.6rem clamp(1.15rem, 6vw, 9rem);
  border-top: 1px solid rgba(217, 170, 79, 0.18);
  border-bottom: 1px solid rgba(217, 170, 79, 0.18);
}
.stat {
  text-align: center;
  position: relative;
  padding: 0 1rem;
}
.stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: rgba(217, 170, 79, 0.2);
}
.stat strong {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 4.5rem);
  font-weight: 500;
  color: var(--gold);
}
.stat span {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--gold);
  margin-left: 0.28rem;
}
.stat small {
  display: block;
  margin-top: 0.3rem;
  color: rgba(255, 255, 255, 0.56);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.66rem;
}

.lifestyle {
  position: relative;
  overflow: hidden;
}
.lifestyle::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(217, 170, 79, 0.08),
    transparent 35%,
    rgba(217, 170, 79, 0.04)
  );
  pointer-events: none;
}
.lifestyle__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 7vw, 8rem);
  align-items: end;
  margin-top: 2rem;
  position: relative;
  align-items: start;
}
.lifestyle__copy p {
  max-width: 540px;
  margin-top: 2rem;
}
.lifestyle__visual {
  height: clamp(310px, 40vw, 560px);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.3);
}
.lifestyle__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image-mask {
  clip-path: inset(0 0 0 0 round 0);
  overflow: hidden;
  position: relative;
}
.image-mask::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.36), transparent);
  transform: translateX(-120%);
  animation: sheen 5.5s infinite;
}
.floating-card {
  position: absolute;
  padding: 0.85rem 1.1rem;
  color: var(--navy);
  background: rgba(244, 240, 233, 0.9);
  border: 1px solid rgba(217, 170, 79, 0.35);
  font-family: var(--serif);
  font-size: 1.4rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  animation: float 5s infinite ease-in-out;
}
.card-one {
  left: 8%;
  top: 10%;
}
.card-two {
  right: 7%;
  bottom: 10%;
  animation-delay: 1.2s;
}

.section-head {
  max-width: 920px;
  margin-bottom: 3rem;
}
.section-head.center {
  text-align: center;
  margin-inline: auto;
}
.section-head p {
  max-width: 660px;
  margin-inline: auto;
}
.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.plan-card {
  min-height: 360px;
  padding: 2rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 20px 70px rgba(7, 16, 31, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease,
    background 0.45s ease;
}
.plan-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 90px rgba(7, 16, 31, 0.16);
  background: var(--white);
}
.plan-card.featured {
  background: var(--navy);
  color: var(--white);
  border-color: rgba(217, 170, 79, 0.35);
}
.plan-card__top span {
  display: block;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 800;
}
.plan-card__top strong {
  font-family: var(--serif);
  font-size: clamp(4rem, 6vw, 5.2rem);
  font-weight: 500;
  line-height: 1;
  color: inherit;
}
.plan-card__top small {
  color: var(--muted);
  font-weight: 700;
  margin-left: 0.4rem;
}
.plan-card.featured p,
.plan-card.featured small {
  color: rgba(255, 255, 255, 0.66);
}
.plan-card button {
  align-self: flex-start;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  cursor: pointer;
}

.amenity-marquee {
  display: flex;
  gap: 2rem;
  overflow: hidden;
  color: rgba(7, 16, 31, 0.12);
  font-family: var(--serif);
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 700;
  white-space: nowrap;
  line-height: 1;
  margin: -1rem 0 3rem;
}
.amenity-marquee div {
  animation: marquee 28s linear infinite;
}
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.amenity {
  min-height: 270px;
  padding: 1.5rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition:
    transform 0.35s ease,
    background 0.35s ease;
}
.amenity:hover {
  transform: translateY(-8px);
  background: var(--white);
}
.amenity span {
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.12em;
}
.amenity h3 {
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 600;
  line-height: 1.05;
}

.location {
  background: var(--cream-2);
}
.location-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.location-card {
  padding: 1.6rem;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 18px 60px rgba(7, 16, 31, 0.06);
}
.location-card h3 {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--gold-dark);
}
.location-card ul {
  list-style: none;
  margin: 1.2rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
  color: rgba(16, 24, 40, 0.68);
}
.location-card li {
  position: relative;
  padding-left: 1.1rem;
  line-height: 1.5;
}
.location-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.contact {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(2rem, 6vw, 7rem);
  align-items: start;
  background: var(--navy);
  color: var(--white);
}
.contact__copy {
  position: sticky;
  top: 110px;
}
.contact__copy p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.66);
}
.enquiry-form,
.brochure-form {
  display: grid;
  gap: 1rem;
}
.enquiry-form {
  padding: clamp(1.2rem, 4vw, 2.2rem);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line-dark);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
label {
  display: grid;
  gap: 0.45rem;
  color: inherit;
}
label span {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.72);
}
input,
select,
textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  padding: 0.9rem 1rem;
  outline: none;
  transition:
    border-color 0.25s ease,
    background 0.25s ease;
}
select option {
  color: var(--text);
}
textarea {
  resize: vertical;
  min-height: 120px;
}
input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.12);
}
.form-note {
  margin: 0;
  font-size: 0.78rem !important;
  line-height: 1.6 !important;
  color: rgba(255, 255, 255, 0.54) !important;
}

.footer {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr 0.8fr;
  gap: 2rem;
  padding: 4rem clamp(1.15rem, 6vw, 9rem) 6.5rem;
  border-top: 1px solid rgba(217, 170, 79, 0.18);
}
.footer p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.6);
}
.footer h4 {
  margin: 0 0 1rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
}
.footer a:not(.brand) {
  display: block;
  margin: 0.7rem 0;
  color: rgba(255, 255, 255, 0.7);
}

.sticky-cta {
  position: fixed;
  z-index: 900;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  display: none;
  overflow: hidden;
  border: 1px solid rgba(217, 170, 79, 0.4);
  border-radius: 999px;
  background: rgba(7, 16, 31, 0.93);
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.34);
}
.sticky-cta a,
.sticky-cta button {
  border: 0;
  background: transparent;
  color: var(--white);
  padding: 0.9rem 1rem;
  font-weight: 800;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
  cursor: pointer;
}
.sticky-cta a:not(:last-child),
.sticky-cta button {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

/* Sticky bottom enquiry form */
.sticky-enquiry-form {
  position: fixed;
  z-index: 940;
  left: clamp(1rem, 4vw, 4.5rem);
  right: clamp(1rem, 4vw, 4.5rem);
  bottom: 1rem;
  display: grid;
  grid-template-columns:
    minmax(190px, 0.9fr) minmax(150px, 1fr) minmax(150px, 1fr) minmax(180px, 1.05fr)
    auto auto;
  align-items: end;
  gap: 0.72rem;
  padding: 0.85rem;
  color: var(--white);
  background: linear-gradient(135deg, rgba(7, 16, 31, 0.96), rgba(12, 23, 40, 0.94));
  border: 1px solid rgba(217, 170, 79, 0.44);
  border-radius: 24px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(16px);
}
.sticky-enquiry-form::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    rgba(217, 170, 79, 0.18),
    transparent 32%,
    rgba(255, 255, 255, 0.06)
  );
}
.sticky-enquiry-form > * {
  position: relative;
  z-index: 1;
}
.sticky-enquiry-form__intro {
  align-self: center;
  min-width: 0;
}
.sticky-enquiry-form__intro span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.28rem;
  color: #fff1c8;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.sticky-enquiry-form__intro span::before {
  content: "";
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: #24c46b;
  box-shadow: 0 0 0 0 rgba(36, 196, 107, 0.55);
  animation: handoverPulse 1.85s ease-out infinite;
}
.sticky-enquiry-form__intro strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.8vw, 1.7rem);
  font-weight: 600;
  line-height: 1;
}
.sticky-enquiry-form label {
  gap: 0.24rem;
}
.sticky-enquiry-form label span {
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.68);
}
.sticky-enquiry-form input {
  min-height: 44px;
  border-radius: 999px;
  padding: 0.65rem 0.9rem;
  background: rgba(255, 255, 255, 0.1);
}
.sticky-enquiry-form .btn {
  min-height: 44px;
  padding-inline: 1rem;
  font-size: 0.65rem;
}
.sticky-enquiry-form__brochure {
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 0 1rem;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}
.sticky-enquiry-form__success {
  position: absolute;
  left: 1rem;
  bottom: calc(100% + 0.38rem);
  margin: 0;
  padding: 0.42rem 0.74rem;
  border-radius: 999px;
  background: rgba(7, 16, 31, 0.94);
  border: 1px solid rgba(125, 223, 153, 0.42);
  color: #7ddf99 !important;
  font-size: 0.74rem !important;
  font-weight: 800 !important;
  line-height: 1.35 !important;
  opacity: 0;
  transform: translateY(8px);
  transition: 0.25s ease;
  pointer-events: none;
}
.sticky-enquiry-form__success:not(:empty) {
  opacity: 1;
  transform: translateY(0);
}
/* @media (min-width: 761px) {
  body {
    padding-bottom: 7.5rem;
  }
  .footer {
    padding-bottom: 10rem;
  }
} */
@media (max-width: 1180px) {
  .sticky-enquiry-form {
    grid-template-columns: 1fr 1fr 1fr auto;
    align-items: end;
  }
  .sticky-enquiry-form__intro {
    grid-column: 1/-1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }
  .sticky-enquiry-form__intro span {
    margin-bottom: 0;
  }
  .sticky-enquiry-form__brochure {
    display: none;
  }
}
@media (max-width: 760px) {
  .sticky-cta {
    display: none;
  }
  .sticky-enquiry-form {
    display: none;
    left: 0.5rem;
    right: 0.5rem;
    bottom: 0.5rem;
    grid-template-columns: 1fr 1fr;
    gap: 0.52rem;
    padding: 0.68rem;
    border-radius: 20px;
  }
  .sticky-enquiry-form__intro {
    grid-column: 1/-1;
    align-items: flex-start;
  }
  .sticky-enquiry-form__intro strong {
    font-size: 1.08rem;
  }
  .sticky-enquiry-form__intro span {
    font-size: 0.52rem;
    letter-spacing: 0.12em;
  }
  .sticky-enquiry-form__email {
    display: none;
  }
  .sticky-enquiry-form label span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }
  .sticky-enquiry-form input {
    min-height: 42px;
    font-size: 0.78rem;
    padding: 0.6rem 0.74rem;
  }
  .sticky-enquiry-form .btn {
    min-height: 42px;
    font-size: 0.58rem;
    padding-inline: 0.65rem;
  }
  .sticky-enquiry-form__brochure {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    font-size: 0.58rem;
    padding-inline: 0.65rem;
  }
  .sticky-enquiry-form__success {
    left: 0.7rem;
    right: 0.7rem;
    text-align: center;
    font-size: 0.68rem !important;
  }
  .footer {
    padding-bottom: 13rem;
  }
}
@media (max-width: 420px) {
  /* body {
    padding-bottom: 12.4rem;
  } */
  .sticky-enquiry-form {
    grid-template-columns: 1fr;
  }
  .sticky-enquiry-form__intro {
    display: block;
  }
  .sticky-enquiry-form__brochure {
    display: none;
  }
  .sticky-enquiry-form .btn {
    width: 100%;
  }
  .footer {
    padding-bottom: 14rem;
  }
}

.brochure-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.32s ease,
    visibility 0.32s ease;
}
.brochure-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.brochure-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 5, 10, 0.74);
  backdrop-filter: blur(10px);
}
.brochure-dialog {
  position: relative;
  z-index: 1;
  width: min(980px, 30%);
  max-height: min(90svh, 800px);
  /* display: grid; */
  grid-template-columns: 0.9fr 1.1fr;
  overflow: auto;
  color: var(--white);
  background: var(--navy);
  border: 1px solid rgba(217, 170, 79, 0.34);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.42);
  transform: translateY(20px) scale(0.98);
  transition: transform 0.35s ease;
  overflow: hidden;
}
.brochure-modal.is-open .brochure-dialog {
  transform: translateY(0) scale(1);
}
.modal-close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  z-index: 3;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}
.brochure-dialog__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 620px;
  padding: 2rem;
  background:
    linear-gradient(180deg, rgba(2, 5, 10, 0.2), rgba(2, 5, 10, 0.82)),
    url("assets/crescent-video-poster.jpg") center/cover no-repeat;
  overflow: hidden;
}
.brochure-dialog__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(217, 170, 79, 0.28), transparent 38%);
}
.brochure-dialog__visual img {
  position: relative;
  z-index: 1;
  width: min(360px, 90%);
  margin-bottom: 1rem;
  filter: drop-shadow(0 18px 38px rgba(0, 0, 0, 0.5));
}
.brochure-dialog__visual p {
  position: relative;
  z-index: 1;
  max-width: 360px;
  color: rgba(255, 255, 255, 0.78);
}
.brochure-form {
  padding: clamp(1.25rem, 4vw, 2.4rem);
  align-content: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
}
.brochure-form h2 {
  font-size: clamp(2.2rem, 4vw, 3.7rem);
  margin-bottom: 0.6rem;
}
.brochure-form .form-note {
  color: rgba(255, 255, 255, 0.58) !important;
}
.modal-success {
  min-height: 1.4rem;
  margin: 0;
  color: #7ddf99 !important;
  font-weight: 700 !important;
  line-height: 1.4 !important;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.stagger-1 {
  transition-delay: 0.12s;
}
.stagger-2 {
  transition-delay: 0.24s;
}
.stagger-3 {
  transition-delay: 0.36s;
}
.stagger-4 {
  transition-delay: 0.48s;
}

@keyframes loaderFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
@keyframes loaderLine {
  0%,
  100% {
    opacity: 0.3;
    transform: scaleX(0.55);
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}
@keyframes sheen {
  0%,
  55% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(120%);
  }
}
@keyframes marquee {
  to {
    transform: translateX(calc(-100% - 2rem));
  }
}
@keyframes scrollDot {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }
  35% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 18px);
  }
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
  }
  .site-header .btn--small {
    justify-self: end;
  }
  .site-nav {
    position: fixed;
    top: var(--header-h);
    left: 1rem;
    right: 1rem;
    display: grid;
    gap: 0;
    padding: 1rem;
    background: rgba(7, 16, 31, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
    transform: translateY(-16px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.25s ease;
    justify-self: stretch;
  }
  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .site-nav a {
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .site-nav a:last-child {
    border-bottom: 0;
  }
  .menu-toggle {
    display: block;
    order: 2;
    justify-self: end;
  }
  .site-header > .btn {
    order: 3;
  }
  .brand {
    order: 1;
    width: 190px;
  }
  .plan-grid,
  .location-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact {
    grid-template-columns: 1fr;
  }
  .contact__copy {
    position: relative;
    top: auto;
  }
  .brochure-dialog {
    grid-template-columns: 1fr;

    max-height: 112svh;
    width: min(980px, 98%);
  }
  .brochure-dialog__visual {
    min-height: 280px;
  }
}

@media (max-width: 760px) {
  :root {
    --header-h: 68px;
  }
  h1 {
    font-size: clamp(2.75rem, 14vw, 4.5rem);
  }
  h2 {
    font-size: clamp(2.25rem, 11vw, 3.5rem);
  }
  .site-header {
    height: 50px;
    grid-template-columns: auto auto;
    gap: 0.5rem;
    padding-inline: 1rem;
  }
  .brand {
    width: 150px;
  }
  .site-header > .btn {
    display: none;
  }
  .menu-toggle {
    order: 2;
  }
  .site-nav {
    top: 68px;
  }
  .video-hero {
    padding-top: 6rem;
    padding-bottom: 10.5rem;
    min-height: 100svh;
  }
  .hero-logo {
    width: min(420px, 94vw);
    margin-left: -0.5rem;
  }
  .eyebrow,
  .section-kicker {
    letter-spacing: 0.22em;
    font-size: 0.68rem;
  }
  .hero__buttons {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }
  .hero__buttons .btn {
    width: 100%;
  }
  .hero__features {
    grid-template-columns: 1fr;
    bottom: 1.1rem;
    gap: 0.5rem;
  }
  .hero__features span {
    padding: 0.72rem 0.8rem;
    font-size: 0.62rem;
  }
  .scroll-cue {
    display: none;
  }
  .stats {
    grid-template-columns: 1fr 1fr;
    padding: 2.4rem 1rem;
  }
  .stat {
    padding: 1.2rem 0.6rem;
  }
  .stat:nth-child(2)::after {
    display: none;
  }
  .stat:not(:last-child)::after {
    height: 60%;
    top: 20%;
  }
  .lifestyle__grid {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .plan-grid,
  .amenities-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer {
    grid-template-columns: 1fr;
    padding-bottom: 7.8rem;
  }
  .sticky-cta {
    display: flex;
    width: calc(100% - 1rem);
    justify-content: center;
  }
  .sticky-cta a,
  .sticky-cta button {
    flex: 1;
    padding: 0.85rem 0.5rem;
    font-size: 0.6rem;
  }
  .brochure-modal {
    padding: 0.65rem;
  }
  .brochure-dialog__visual {
    min-height: 220px;
    padding: 1.2rem;
  }
  .brochure-dialog__visual img {
    width: 260px;
  }
  .modal-close {
    top: 0.55rem;
    right: 0.55rem;
  }
}

@media (max-width: 420px) {
  .brand {
    width: 132px;
  }
  .section {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .video-hero__content {
    align-self: start;
    margin-top: 1.5rem;
  }
  .stats {
    grid-template-columns: 1fr;
  }
  .stat:not(:last-child)::after {
    display: none;
  }
  .plan-card {
    padding: 1.35rem;
    min-height: 310px;
  }
  .amenity {
    min-height: 230px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
  .video-hero__media video {
    transform: none;
  }
}

/* Handover highlight additions */
.handover-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.62rem;
  width: max-content;
  max-width: 100%;
  margin: 0 0 1rem;
  padding: 0.72rem 1.05rem;
  border: 1px solid rgba(217, 170, 79, 0.64);
  border-radius: 999px;
  color: #fff7df;
  background: linear-gradient(135deg, rgba(217, 170, 79, 0.3), rgba(217, 170, 79, 0.08));
  box-shadow:
    0 18px 46px rgba(217, 170, 79, 0.16),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(13px);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}
.handover-badge::before {
  content: "";
  width: 0.58rem;
  height: 0.58rem;
  flex: 0 0 0.58rem;
  border-radius: 50%;
  background: #24c46b;
  box-shadow: 0 0 0 0 rgba(36, 196, 107, 0.55);
  animation: handoverPulse 1.85s ease-out infinite;
}
.handover-badge::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent, rgba(255, 255, 255, 0.26), transparent);
  transform: translateX(-120%);
  animation: sheen 3.8s ease-in-out infinite;
}
.handover-badge--modal {
  z-index: 1;
  margin: 0.35rem 0 1rem;
}
.handover-strip {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.6rem);
  padding: 1.35rem clamp(1.15rem, 6vw, 9rem);
  border-top: 1px solid rgba(217, 170, 79, 0.26);
  border-bottom: 1px solid rgba(217, 170, 79, 0.26);
  background:
    radial-gradient(circle at 12% 0%, rgba(217, 170, 79, 0.22), transparent 34%),
    linear-gradient(90deg, #07101f, #0e1b2e 54%, #07101f);
  color: var(--white);
}
.handover-strip__label {
  padding: 0.72rem 0.95rem;
  border: 1px solid rgba(217, 170, 79, 0.45);
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}
.handover-strip__content h2 {
  margin: 0;
  color: var(--gold);
  font-size: clamp(2.1rem, 4.2vw, 4.7rem);
  line-height: 0.95;
}
.handover-strip__content p {
  max-width: 760px;
  margin: 0.42rem 0 0;
  color: rgba(255, 255, 255, 0.72);
}
.plan-card {
  position: relative;
  overflow: hidden;
}
.plan-card__ribbon {
  position: absolute;
  top: 1rem;
  right: -2.65rem;
  width: 12rem;
  padding: 0.42rem 0.6rem;
  background: var(--gold);
  color: var(--navy);
  transform: rotate(38deg);
  text-align: center;
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
}
.brochure-modal__backdrop {
  border: 0;
  padding: 0;
  cursor: pointer;
}

@keyframes handoverPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(36, 196, 107, 0.55);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(36, 196, 107, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(36, 196, 107, 0);
  }
}

@media (max-width: 1100px) {
  .handover-strip {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .handover-strip .btn {
    justify-self: start;
  }
}

@media (max-width: 760px) {
  .handover-badge {
    font-size: 0.62rem;
    padding: 0.62rem 0.82rem;
    letter-spacing: 0.12em;
  }
  .handover-strip {
    padding: 1.25rem 1rem;
  }
  .handover-strip__label {
    width: max-content;
    font-size: 0.58rem;
  }
  .handover-strip .btn {
    width: 100%;
  }
}
.youtube-section {
  background: linear-gradient(180deg, #f7f0df, #fff);
}
.youtube-card {
  display: grid;
  grid-template-columns: 1.55fr 0.85fr;
  gap: 0;
  max-width: 1180px;
  margin: auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--navy);
  color: #fff;
}
.youtube-frame {
  position: relative;
  aspect-ratio: 16/9;
  background: #000;
}
.youtube-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.youtube-card__copy {
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.youtube-card__copy span {
  color: var(--gold2);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}
.youtube-card__copy h3 {
  font-family: "var(--serif)";
  font-size: 2.4rem;
  margin: 12px 0;
}
.youtube-card__copy p {
  line-height: 1.7;
  color: #cbd7dc;
}
.masterplan {
  /* padding: 120px 0; */
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.masterplan-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  margin-top: 60px;
}

.masterplan-image {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.masterplan-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.masterplan-image:hover img {
  transform: scale(1.05);
}

.masterplan-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.masterplan-gallery .thumb {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.masterplan-gallery img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: 0.5s ease;
}

.masterplan-gallery img:hover {
  transform: scale(1.08);
}

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

.feature-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-card span {
  color: #c9a46b;
  font-size: 40px;
  font-weight: 700;
  display: block;
  margin-bottom: 16px;
}

.feature-card h4 {
  margin-bottom: 10px;
  color: #fff;
}

.feature-card p {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
}

@media (max-width: 992px) {
  .masterplan-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .masterplan-features {
    grid-template-columns: 1fr;
  }
}
.plans-section {
  padding: 120px 0;
  background: var(--navy);
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: auto;
}

.eyebrow {
  color: #c6a76d;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.section-header h2 {
  font-size: 53px;
  margin: 20px 0;
}

.section-header p {
  opacity: 0.7;
}

.plans-switcher {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 60px 0;
}

.plan-tab {
  padding: 15px 35px;
  border: none;
  cursor: pointer;
  background: #1a1d24;
  color: white;
  border-radius: 100px;
}

.plan-tab.active {
  background: #c6a76d;
  color: #000;
}

.plan-content {
  display: none;
}

.plan-content.active {
  display: block;
}

.master-plan-wrapper {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 50px;
  align-items: center;
}

.master-plan-image {
  overflow: hidden;
  border-radius: 30px;
}

.master-plan-image img {
  width: 100%;
  display: block;
}

.master-plan-content h3 {
  font-size: 42px;
  margin: 20px 0;
}

.btn-view {
  margin-top: 25px;
  padding: 15px 35px;
  border: none;
  background: #c6a76d;
  cursor: pointer;
  border-radius: 50px;
}

.tower-selector {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.tower-btn {
  padding: 14px 30px;
  border: none;
  border-radius: 100px;
  background: #1c2028;
  color: white;
  cursor: pointer;
}

.tower-btn.active {
  background: #c6a76d;
  color: #000;
}

.tower-gallery {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.tower-gallery.active {
  display: grid;
}

.floor-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
}

.floor-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
  padding: 20px;
}
.floor-card:hover img {
  transform: scale(1.08);
}

.floor-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 30px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
}

.floor-overlay h4 {
  margin-bottom: 15px;
}

.view-plan {
  width: max-content;
  padding: 12px 25px;
  border: none;
  background: #c6a76d;
  cursor: pointer;
}

.plan-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.plan-lightbox.active {
  display: flex;
}

.plan-lightbox img {
  max-width: 90%;
  max-height: 90vh;
}

.close-lightbox {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border: none;
  cursor: pointer;
}
.tower-gallery {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tower-gallery.active {
  display: grid;
}

.floor-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  aspect-ratio: 4/5;
  cursor: pointer;
  background: #111;
}

.floor-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

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

.floor-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.45) 35%,
    rgba(0, 0, 0, 0) 70%
  );
}

.floor-overlay h4 {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 16px;
}

.view-plan {
  width: max-content;
  border: none;
  background: #c6a76d;
  color: #000;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.view-plan:hover {
  transform: translateY(-3px);
}

@media (max-width: 1200px) {
  .tower-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .tower-gallery {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .floor-card {
    aspect-ratio: 1/1.15;
  }

  .floor-overlay {
    padding: 20px;
  }

  .floor-overlay h4 {
    font-size: 18px;
  }

  .view-plan {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .master-plan-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .master-plan-image {
    order: 1;
  }

  .master-plan-content {
    order: 2;
    max-width: 100%;
    text-align: center;
  }

  .master-plan-content h3 {
    font-size: 42px;
    line-height: 1.15;
    max-width: 100%;
    word-break: normal;
  }

  .master-plan-content p {
    font-size: 16px;
    line-height: 1.7;
  }
  
}
