:root {
  --bg: #f7f5f1;
  --surface: #ffffff;
  --surface-soft: #f9f7f4;
  --text: #10212c;
  --muted: #61717b;
  --line: rgba(16, 33, 44, 0.1);
  --teal: #19b8be;
  --teal-dark: #0e7f86;
  --deep: #0d2a32;
  --deep-soft: #123843;
  --shadow: 0 24px 60px rgba(8, 29, 35, 0.18);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: calc(100vw - 40px);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Manrope", sans-serif;
  letter-spacing: -0.01em;
}

body.is-loaded .hero-copy > * {
  animation-play-state: running;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

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

button,
input,
a {
  font: inherit;
}

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

button {
  cursor: pointer;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 34px 0;
}

.section-heading {
  display: flex;
  justify-content: center;
  margin-bottom: 26px;
}

.section-heading h2,
.highlights-visual__overlay h2,
.cta-banner__content h2,
.location-card h2,
.about-card h2,
.enquiry-card h2 {
  margin: 0;
  font-size: clamp(2rem, 2.2vw, 2.85rem);
  line-height: 0.98;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 700;
}

.section-heading h2::after,
.panel-heading p::after {
  content: "";
  display: block;
  width: 62px;
  height: 3px;
  margin: 14px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), rgba(25, 184, 190, 0.2));
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease,
    color 180ms ease;
}

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

.btn {
  overflow: hidden;
  position: relative;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.18) 45%, transparent 100%);
  transform: translateX(-120%);
  transition: transform 450ms ease;
}

.btn:hover::after,
.btn:focus-visible::after {
  transform: translateX(120%);
}

.btn-solid {
  background: linear-gradient(135deg, #1abdc2, #0d7c83);
  color: #fff;
  box-shadow: 0 16px 30px rgba(13, 124, 131, 0.25);
}

.btn-dark {
  background: var(--deep);
  color: #fff;
}

.btn-light {
  background: #fff;
  color: var(--deep);
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
  background: transparent;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  padding-top: 20px;
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
}

.brand {
  display: inline-grid;
  color: #fff;
  text-transform: uppercase;
  width: fit-content;
}

.brand--dark {
  color: var(--text);
}

.brand-mark {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
}

.brand-name {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.1rem, 2vw, 3rem);
  line-height: 0.84;
  letter-spacing: 0.04em;
}

.brand-subtitle {
  margin-top: 7px;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.header-location {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.78rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.location-pin {
  width: 18px;
  height: 18px;
}

.location-pin svg {
  width: 100%;
  height: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: #fff;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  justify-items: end;
  visibility: hidden;
  pointer-events: none;
}

.mobile-menu::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(9, 23, 30, 0.5);
  opacity: 0;
  transition: opacity 220ms ease;
}

.mobile-menu.is-open {
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu.is-open::before {
  opacity: 1;
}

.mobile-menu__panel {
  position: relative;
  width: min(88vw, 340px);
  height: 100%;
  padding: 24px;
  background: #fff;
  transform: translateX(100%);
  transition: transform 220ms ease;
}

.mobile-menu.is-open .mobile-menu__panel {
  transform: translateX(0);
}

.mobile-menu__top {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 12px;
}

.mobile-menu__close {
  border: 0;
  background: transparent;
  font-size: 2rem;
  line-height: 1;
}

.mobile-nav {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.mobile-nav a {
  padding: 14px 16px;
  border-radius: 14px;
  background: var(--surface-soft);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 126px 0 34px;
  background: #0d2a32 url("../assets/images/hero/desk.png") center/cover no-repeat;
  overflow: hidden;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 30%, rgba(255, 255, 255, 0.16), transparent 32%),
    linear-gradient(90deg, rgba(4, 14, 18, 0.82) 0%, rgba(4, 14, 18, 0.46) 40%, rgba(4, 14, 18, 0.22) 100%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 438px;
  gap: 40px;
  align-items: start;
  padding-inline: 10px;
}

.hero-copy {
  color: #fff;
  max-width: 820px;
}

.hero-copy > * {
  animation-play-state: paused;
}

.eyebrow {
  display: block;
  margin: 0 0 26px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.96);
  animation: heroRise 700ms cubic-bezier(0.2, 0.8, 0.2, 1) 80ms both;
}

.hero-copy h1 {
  margin: 0;
  max-width: 820px;
  font-size: 1rem;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0;
  font-weight: 800;
  animation: heroRise 820ms cubic-bezier(0.2, 0.8, 0.2, 1) 160ms both;
}

.hero-line {
  display: block;
  color: #fff;
}

.hero-line--middle > span {
  color: var(--teal);
}

.hero-line--top {
  font-size: clamp(2.5rem, 3.4vw, 3.75rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
}

.hero-line--middle {
  margin-top: 6px;
  font-size: clamp(4.2rem, 6vw, 6.6rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
  white-space: nowrap;
}

.hero-line--bottom {
  margin-top: 8px;
  font-size: clamp(2.15rem, 3.15vw, 3.7rem);
  line-height: 0.94;
  letter-spacing: -0.045em;
  white-space: nowrap;
}

.hero-description {
  max-width: 610px;
  margin: 18px 0 30px;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
  animation: heroRise 820ms cubic-bezier(0.2, 0.8, 0.2, 1) 260ms both;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 760px;
  margin-top: 26px;
  animation: heroRise 820ms cubic-bezier(0.2, 0.8, 0.2, 1) 340ms both;
}

.hero-feature {
  position: relative;
  padding-right: 12px;
}

.hero-feature:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 8px;
  right: 0;
  width: 1px;
  height: calc(100% - 16px);
  background: rgba(255, 255, 255, 0.24);
}

.hero-feature img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  margin-bottom: 12px;
}

.hero-feature h3,
.hero-feature p {
  margin: 0;
}

.hero-feature h3 {
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero-feature p {
  margin-top: 6px;
  font-size: 0.86rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
}

.price-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 20px;
  margin-top: 28px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 14px;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(6, 20, 24, 0.56);
  backdrop-filter: blur(6px);
  animation: heroRise 820ms cubic-bezier(0.2, 0.8, 0.2, 1) 420ms both;
}

.price-pill strong {
  color: var(--teal);
  font-size: 2rem;
  letter-spacing: 0.01em;
}

.mobile-hero-actions,
.mobile-price {
  display: none;
}

.enquiry-card {
  position: sticky;
  top: 124px;
}

.enquiry-card__content {
  padding: 38px 34px 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  animation: cardFloatIn 900ms cubic-bezier(0.2, 0.8, 0.2, 1) 180ms both paused;
}

body.is-loaded .enquiry-card__content {
  animation-play-state: running;
}

.enquiry-card h2 {
  font-size: 1.82rem;
  line-height: 1.14;
  text-align: center;
}

.enquiry-card p {
  margin: 12px 0 20px;
  color: var(--muted);
  text-align: center;
  line-height: 1.55;
  font-size: 0.9rem;
}

.frmContactus {
  display: grid;
  gap: 14px;
}

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

.form-group label,
.interest-label {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
  width: 100%;
  height: 50px;
  padding: 0 16px;
  border: 1px solid rgba(16, 33, 44, 0.12);
  border-radius: 12px;
  background: #fff;
  color: var(--text);
  font-size: 0.9rem;
}

.form-group input:focus {
  outline: 2px solid rgba(25, 184, 190, 0.2);
  border-color: var(--teal);
}

.phone-row .iti {
  width: 100%;
}

.iti__country-container {
  margin-left: 2px;
}

.interest-grid {
  display: flex;
  gap: 14px;
}

.option-check,
.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.option-check {
  padding: 10px 12px;
  border: 1px solid rgba(16, 33, 44, 0.12);
  border-radius: 12px;
}

.checkbox span,
.option-check span {
  line-height: 1.5;
}

.field-error {
  font-size: 0.82rem;
  color: #c64646;
}

.btn-submit {
  min-height: 52px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, #18b8bf, #0d7b82);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.brochure-link {
  justify-self: center;
  border: 0;
  background: transparent;
  color: var(--teal-dark);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.form-success {
  min-height: 1.5em;
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--teal-dark);
  text-align: center;
}

.discover-grid,
.floor-plan-grid,
.location-about-grid {
  display: grid;
  gap: 18px;
}

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

.media-card,
.floor-card,
.about-card {
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(12, 30, 37, 0.08);
}

.media-card {
  overflow: hidden;
  border: 0;
  padding: 0;
  text-align: left;
  background: #fff;
  cursor: pointer;
  transition: transform 280ms ease, box-shadow 280ms ease;
}

.media-card:focus-visible,
.gallery-item:focus-visible,
.btn:focus-visible,
.btn-submit:focus-visible,
.brochure-link:focus-visible {
  outline: 3px solid rgba(25, 184, 190, 0.34);
  outline-offset: 3px;
}

.media-card:hover,
.media-card:focus-visible,
.floor-card:hover,
.about-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 38px rgba(12, 30, 37, 0.14);
}

.media-card__image {
  position: relative;
  aspect-ratio: 1.4;
}

.media-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-badge {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 72px;
  height: 72px;
  border: 3px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.play-badge::before {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid rgba(255, 255, 255, 0.96);
  transform: translate(-35%, -50%);
}

.media-card:hover .play-badge,
.media-card:focus-visible .play-badge {
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.12);
}

.media-card__body {
  padding: 18px 18px 22px;
  text-align: center;
}

.media-card__body h3,
.media-card__body p {
  margin: 0;
}

.media-card__body h3 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 800;
}

.media-card__body p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.4;
}

.highlights-grid {
  display: grid;
  grid-template-columns: 1.02fr 1.08fr;
  gap: 0;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(8, 29, 35, 0.16);
  margin-inline: 10px;
}

.highlights-panel {
  padding: 28px 30px 30px;
  background: linear-gradient(180deg, #0d2b34, #0b2229);
  color: #fff;
}

.panel-heading p,
.panel-label {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.panel-heading p::after {
  margin-left: 0;
}

.highlights-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 22px;
}

.highlights-stats article {
  padding: 22px 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.highlights-stats article:nth-child(4n) {
  border-right: 0;
}

.highlights-stats article:nth-last-child(-n + 4) {
  border-bottom: 0;
}

.highlights-stats img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  margin-bottom: 12px;
}

.highlights-stats h3,
.highlights-stats p {
  margin: 0;
  text-transform: uppercase;
}

.highlights-stats h3 {
  font-size: 16px;
  font-weight: 500;
}

.highlights-stats p {
  margin-top: 6px;
  font-size: 0.74rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.86);
}

.highlights-visual {
  position: relative;
  min-height: 100%;
}

.highlights-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.highlights-visual__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
  padding: 34px;
  color: #fff;
  background: linear-gradient(90deg, rgba(11, 27, 31, 0.48), rgba(11, 27, 31, 0.08));
}

.highlights-visual:hover img {
  transform: scale(1.04);
}

.highlights-visual__overlay h2 {
  max-width: 320px;
  font-size: clamp(2rem, 2.55vw, 3rem);
  line-height: 1.02;
}

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

.floor-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
  padding: 26px;
  transition: transform 280ms ease, box-shadow 280ms ease;
}

.floor-card__copy h3,
.floor-card__copy p,
.floor-card__copy ul {
  margin: 0;
}

.floor-card__copy h3 {
  font-size: 2rem;
  text-transform: uppercase;
  line-height: 0.96;
}

.floor-card__subtitle {
  margin-top: 4px;
  color: var(--teal-dark);
  font-size: 0.96rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.floor-card__copy ul {
  display: grid;
  gap: 10px;
  padding-left: 18px;
  margin: 18px 0 22px;
}

.floor-card__visual {
  display: grid;
  place-items: center;
}

.floor-card__visual img {
  max-height: 280px;
  object-fit: contain;
}

.gallery-slider {
  padding: 0 8px;
}

.gallery-track {
  visibility: hidden;
}

.gallery-track.slick-initialized {
  visibility: visible;
}

.gallery-track .slick-list {
  margin: 0 -6px;
}

.gallery-track .slick-slide {
  margin: 0 6px;
}

.gallery-item {
  overflow: hidden;
  min-height: 124px;
  padding: 0;
  border: 0;
  border-radius: 16px;
  background: #dbe6ea;
}

.gallery-item img {
  width: 100%;
  height: 124px;
  object-fit: cover;
  transition: transform 220ms ease;
}

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

.gallery-action {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.gallery-track .slick-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(16, 33, 44, 0.12);
  border-radius: 50%;
  background: #fff;
  color: var(--deep);
  font-size: 0;
  transform: translateY(-50%);
  box-shadow: 0 8px 18px rgba(8, 29, 35, 0.08);
}

.gallery-track .slick-prev {
  left: -10px;
}

.gallery-track .slick-next {
  right: -10px;
}

.gallery-track .slick-prev::before,
.gallery-track .slick-next::before {
  display: block;
  font-size: 28px;
  line-height: 1;
  color: var(--deep);
}

.gallery-track .slick-prev::before {
  content: "‹";
}

.gallery-track .slick-next::before {
  content: "›";
}

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

.location-card {
  padding: 28px 28px 30px;
  border-radius: 24px;
  background: linear-gradient(180deg, #0d2b34, #0a2027);
  color: #fff;
  transition: transform 280ms ease, box-shadow 280ms ease;
}

.panel-label {
  color: rgba(255, 255, 255, 0.8);
}

.panel-label--dark {
  color: var(--teal-dark);
}

.location-card h2,
.about-card h2 {
  margin-top: 14px;
  font-size: clamp(1.9rem, 2.4vw, 2.85rem);
}

.location-card__copy,
.about-card p {
  line-height: 1.7;
}

.location-card__copy {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.82);
}

.location-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 22px;
  margin: 26px 0 28px;
}

.location-points article {
  display: flex;
  align-items: center;
  gap: 12px;
}

.location-points img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  flex: 0 0 30px;
}

.location-points h3,
.location-points p,
.about-stats h3,
.about-stats p {
  margin: 0;
}

.location-points h3 {
  font-size: 0.98rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.location-points p {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8rem;
  line-height: 1.35;
}

.about-card {
  padding: 28px;
  margin-top: 18px;
  transition: transform 280ms ease, box-shadow 280ms ease;
}

.about-card p {
  color: var(--muted);
  font-size: 0.92rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 28px 0;
}

.about-stats article {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.about-stats img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  margin-bottom: 12px;
}

.about-stats h3 {
  font-size: 1.7rem;
  color: var(--teal-dark);
}

.cta-banner {
  position: relative;
  background: #112a31 url("../assets/images/footer/footer.png") center/cover no-repeat;
  color: #fff;
}

.cta-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 28, 34, 0.54), rgba(10, 28, 34, 0.5));
}

.cta-banner__content {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  padding: 62px 0;
  text-align: center;
}

.animate-in {
  opacity: 0;
  transform: translateY(34px) scale(0.985);
  transition: opacity 700ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform, opacity;
}

.animate-in.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.stagger-children > * {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 560ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 560ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.stagger-children.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

.stagger-children.is-visible > *:nth-child(1) { transition-delay: 60ms; }
.stagger-children.is-visible > *:nth-child(2) { transition-delay: 120ms; }
.stagger-children.is-visible > *:nth-child(3) { transition-delay: 180ms; }
.stagger-children.is-visible > *:nth-child(4) { transition-delay: 240ms; }
.stagger-children.is-visible > *:nth-child(5) { transition-delay: 300ms; }
.stagger-children.is-visible > *:nth-child(6) { transition-delay: 360ms; }
.stagger-children.is-visible > *:nth-child(7) { transition-delay: 420ms; }
.stagger-children.is-visible > *:nth-child(8) { transition-delay: 480ms; }
.stagger-children.is-visible > *:nth-child(9) { transition-delay: 540ms; }
.stagger-children.is-visible > *:nth-child(10) { transition-delay: 600ms; }

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cardFloatIn {
  from {
    opacity: 0;
    transform: translateY(38px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .animate-in,
  .stagger-children > * {
    opacity: 1 !important;
    transform: none !important;
  }
}

.cta-banner__content p {
  margin: 12px 0 24px;
  font-size: 0.96rem;
  color: rgba(255, 255, 255, 0.88);
}

.cta-banner__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.site-footer {
  background: #fff;
  padding: 28px 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr) 260px;
  gap: 28px;
  align-items: center;
}

.footer-brand {
  justify-self: start;
}

.footer-note {
  grid-column: auto;
  margin: 0;
  width: 100%;
  max-width: 640px;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.65;
  text-align: center;
  justify-self: center;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  justify-items: end;
  justify-self: end;
}

.footer-links h3 {
  margin: 0 0 12px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-links a {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.82rem;
}

.footer-brochure {
  display: grid;
  gap: 12px;
  justify-items: center;
  text-align: center;
}

.footer-brochure__box {
  display: grid;
  place-items: center;
  width: 132px;
  aspect-ratio: 1;
  padding: 14px;
  border: 1px dashed rgba(16, 33, 44, 0.28);
  border-radius: 12px;
  background: linear-gradient(180deg, #fff, #f5f7f8);
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.modal,
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 24px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.modal.is-open,
.lightbox.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 20, 24, 0.74);
}

.modal__dialog,
.lightbox__dialog {
  position: relative;
  z-index: 1;
  width: min(960px, calc(100vw - 40px));
  max-height: calc(100vh - 40px);
  padding: 54px 24px 24px;
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow);
}

.modal__dialog--form {
  width: min(560px, calc(100vw - 32px));
  padding: 24px;
}

.enquiry-card__content--modal {
  padding: 18px 8px 4px;
  box-shadow: none;
  background: transparent;
}

.modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #eff4f5;
  font-size: 1.8rem;
  line-height: 1;
}

.modal__title {
  margin: 0 0 18px;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.modal__content {
  max-height: calc(100vh - 150px);
  overflow: auto;
}

.modal__content img,
.modal__content video {
  width: 100%;
  border-radius: 16px;
}

.lightbox__dialog {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 54px;
  gap: 12px;
  align-items: center;
  background: rgba(12, 24, 30, 0.96);
  color: #fff;
}

.lightbox__content {
  display: grid;
  justify-items: center;
}

.lightbox__image {
  width: auto;
  max-width: 100%;
  max-height: calc(100vh - 170px);
  border-radius: 16px;
}

.lightbox__nav {
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 2.2rem;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 20px;
  z-index: 50;
  padding: 14px 18px;
  border-radius: 12px;
  background: rgba(11, 27, 31, 0.94);
  color: #fff;
  transform: translate(-50%, 18px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.thankyou-page {
  min-height: 100vh;
  background: #0f2730;
}

.thankyou-hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
  background: #0f2730 url("../assets/images/hero/desk.png") center/cover no-repeat;
}

.thankyou-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 24, 30, 0.55), rgba(9, 24, 30, 0.72));
}

.thankyou-card {
  position: relative;
  z-index: 1;
  width: min(560px, calc(100vw - 32px));
  padding: 40px 30px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 60px rgba(8, 29, 35, 0.22);
  text-align: center;
}

.thankyou-card .brand {
  margin: 0 auto 24px;
  color: var(--text);
  justify-items: center;
}

.thankyou-eyebrow {
  margin: 0 0 10px;
  color: var(--teal-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.thankyou-card h1 {
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.03em;
}

.thankyou-card p {
  margin: 16px auto 0;
  max-width: 420px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.thankyou-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
}

@media (max-width: 1180px) {
  :root {
    --container: calc(100vw - 32px);
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 28px;
  }

  .hero-copy {
    padding-top: 54px;
  }

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

  .floor-plan-grid,
  .location-about-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 767px) {
  :root {
    --container: calc(100vw - 24px);
  }
  
  .site-header {
    padding-top: 12px;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .header-location,
  .header-enquire {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .brand-name {
    font-size: 2.3rem;
  }

  .hero {
    min-height: auto;
    padding: 18px 0 20px;
    background-image: url("../assets/images/hero/mobile.png");
    background-position: center top;
  }

  .hero-backdrop {
    background: linear-gradient(180deg, rgba(7, 17, 21, 0.18) 0%, rgba(7, 17, 21, 0.62) 100%);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-inline: 0;
  }

  .hero-copy {
    padding-top: 82px;
    max-width: 100%;
    text-align: left;
    display: grid;
    justify-items: start;
  }

  .eyebrow {
    display: none;
  }

  .hero-copy h1 {
    max-width: 300px;
    font-size: 1rem;
    line-height: 1;
  }

  .hero-line--top {
    font-size: clamp(2rem, 9.6vw, 2.9rem);
  }

  .hero-line--middle {
    margin-top: 2px;
    font-size: clamp(3.2rem, 13.5vw, 4.4rem);
    white-space: nowrap;
  }

  .hero-line--bottom {
    margin-top: 6px;
    font-size: clamp(1.15rem, 5.6vw, 1.85rem);
    white-space: normal;
    max-width: 260px;
  }

  .hero-description {
    max-width: 288px;
    margin: 14px 0 18px;
    font-size: 0.76rem;
    line-height: 1.55;
    text-align: left;
  }

  .mobile-hero-actions {
    display: grid;
    gap: 10px;
    width: 100%;
    justify-items: start;
  }

  .hero-badge {
    width: fit-content;
    padding: 8px 12px;
    border-radius: 10px;
    background: rgba(13, 42, 50, 0.72);
    border: 1px solid rgba(88, 214, 219, 0.24);
    font-size: 0.66rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: left;
  }

  .desktop-price {
    display: none;
  }

  .mobile-price {
    display: inline-flex;
    margin-top: 0;
    width: fit-content;
    justify-content: flex-start;
  }

  .mobile-cta-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    width: 100%;
  }

  .mobile-cta-row .btn {
    min-height: 42px;
    padding: 0 10px;
    border-radius: 10px;
    font-size: 0.58rem;
    letter-spacing: 0.04em;
  }

  .hero-features {
    display: none;
  }

  .hero-feature {
    padding-right: 0;
    text-align: center;
    min-height: 132px;
    display: grid;
    align-content: center;
    padding-block: 10px;
  }

  .hero-feature:nth-child(4) {
    grid-column: auto;
    max-width: none;
    margin: 0;
  }

  .hero-feature::after {
    display: none;
  }

  .hero-feature img {
    width: 34px;
    height: 34px;
    margin: 0 auto 8px;
  }

  .hero-feature h3 {
    font-size: 0.76rem;
  }

  .hero-feature p {
    font-size: 0.7rem;
    line-height: 1.35;
  }

  .enquiry-card {
    position: static;
  }

  .enquiry-card__content {
    max-width: 100%;
    margin: 0 auto;
    padding: 24px 14px 18px;
  }

  .frmContactus {
    gap: 12px;
  }

  .interest-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .option-check {
    justify-content: center;
    min-height: 64px;
    align-items: center;
  }

  .discover-grid,
  .floor-plan-grid,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .highlights-stats {
    grid-template-columns: 1fr 1fr;
  }

  .media-card__body {
    padding: 16px 14px 18px;
  }

  .media-card__body h3 {
    font-size: 0.88rem;
  }

  .media-card__body p {
    font-size: 0.8rem;
  }

  .highlights-panel,
  .location-card,
  .about-card,
  .floor-card {
    padding: 22px 20px;
  }

  .highlights-panel {
    padding: 24px 22px 26px;
  }

  .highlights-stats {
    margin-top: 18px;
  }

  .section-heading,
  .panel-heading {
    justify-content: center;
    text-align: center;
  }

  .panel-heading p::after {
    margin-left: auto;
    margin-right: auto;
  }

  .location-card h2,
  .about-card h2,
  .location-card__copy,
  .about-card p {
    text-align: center;
  }
  .panel-heading p{
    font-size: 30px;
  }
  .panel-label{
    text-align: center;
  }

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

  .highlights-stats article {
    border-right: 1px solid rgba(255, 255, 255, 0.14);
    text-align: left;
    padding: 22px 16px 20px;
  }

  .highlights-stats article:nth-child(2n) {
    border-right: 0;
  }

  .highlights-stats article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

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

  .gallery-slider {
    padding: 0;
  }

  .gallery-track .slick-arrow {
    display: none !important;
  }

  .location-about.section {
    padding-top: 24px;
  }

  .location-card__copy {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.88rem;
    line-height: 1.65;
  }

  .location-points {
    grid-template-columns: 1fr 1fr;
    gap: 20px 18px;
  }

  .location-points article {
    align-items: flex-start;
    gap: 14px;
    padding-inline: 8px;
  }

  .location-points img {
    width: 28px;
    height: 28px;
    margin-top: 2px;
  }

  .location-points h3 {
    font-size: 1.05rem;
  }

  .location-points p {
    font-size: 0.84rem;
  }

  .about-stats {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .about-stats article {
    padding-top: 16px;
    padding-inline: 8px;
  }

  .floor-card .btn,
  .location-card .btn,
  .about-card .btn,
  .gallery-action .btn,
  .cta-banner__actions .btn,
  .highlights-visual__overlay .btn {
    display: inline-flex;
    justify-self: center;
    align-self: center;
    margin-left: auto;
    margin-right: auto;
  }

  .location-card .btn,
  .about-card .btn {
    width: 100%;
  }

  .gallery-action,
  .cta-banner__actions {
    justify-content: center;
  }

  .highlights-visual__overlay {
    align-items: center;
    text-align: center;
  }

  .cta-banner__content {
    padding: 48px 0;
  }

  .lightbox__dialog {
    grid-template-columns: 1fr;
    padding: 56px 14px 16px;
  }

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

  .lightbox__nav--prev {
    left: 10px;
  }

  .lightbox__nav--next {
    right: 10px;
  }
}

@media (max-width: 560px) {
  .section {
    padding: 22px 0;
  }

  .section-heading {
    margin-bottom: 18px;
  }

  .section-heading h2,
  .highlights-visual__overlay h2,
  .cta-banner__content h2,
  .location-card h2,
  .about-card h2,
  .enquiry-card h2 {
    font-size: 1.7rem;
    line-height: 1.08;
  }

  .hero-copy {
    padding-top: 7em;
  }

  .hero-copy h1 {
    max-width: 250px;
    font-size: 1rem;
  }

  .hero-description {
    max-width: 248px;
    font-size: 0.72rem;
  }

  .mobile-cta-row {
    grid-template-columns: 1fr 1fr;
  }

  .price-pill {
    padding: 14px 16px;
    font-size: 0.74rem;
  }

  .price-pill strong {
    font-size: 1.55rem;
  }

  .highlights-stats,
  .location-points,
  .about-stats {
    grid-template-columns: 1fr 1fr;
  }

  .highlights-panel,
  .location-card,
  .about-card,
  .floor-card,
  .media-card__body,
  .enquiry-card__content {
    padding-left: 18px;
    padding-right: 18px;
  }

  .highlights-stats article,
  .location-points article,
  .about-stats article {
    padding-inline: 8px;
  }

  .cta-banner__actions,
  .footer-links {
    grid-template-columns: 1fr;
    display: grid;
  }

  .option-check {
    justify-content: center;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 14px;
    text-align: center;
    justify-items: center;
  }

  .footer-brand {
    justify-self: center;
    text-align: center;
  }

  .footer-brand .brand {
    margin: 0 auto;
    justify-items: center;
  }

  .footer-brand .brand-name {
    font-size: 2.9rem;
  }

  .footer-brand .brand-subtitle {
    font-size: 0.54rem;
    letter-spacing: 0.12em;
  }

  .footer-links {
    justify-items: center;
    justify-self: center;
    gap: 6px;
  }

  .footer-note {
    max-width: 280px;
    font-size: 0.68rem;
    line-height: 1.5;
    margin-top: 0;
  }

  .footer-links h3 {
    margin-bottom: 4px;
    font-size: 0.8rem;
  }

  .footer-links a {
    margin-bottom: 4px;
    font-size: 0.78rem;
  }
}
