:root {
  --bg: #f6f1e8;
  --surface: #fffdf8;
  --surface-dark: #112235;
  --text: #1e2430;
  --muted: #6a7280;
  --line: rgba(18, 34, 53, 0.12);
  --gold: #c79a5c;
  --gold-dark: #9d7238;
  --shadow: 0 24px 60px rgba(10, 22, 36, 0.12);
  --radius: 24px;
  --container: min(1180px, calc(100% - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: var(--surface);
  line-height: 1.6;
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

.footer__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 18px 0 12px;
  background: linear-gradient(180deg, rgba(5, 10, 18, 0.84) 0%, rgba(5, 10, 18, 0.28) 100%);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.header__wrap {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr) auto;
  align-items: center;
  min-height: 84px;
  padding: 12px 24px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(14, 25, 38, 0.92) 0%, rgba(18, 32, 49, 0.88) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.22);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 180px;
  min-width: 180px;
  height: 58px;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-width: 0;
}

.nav a {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.96rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 0;
  color: rgba(255, 248, 236, 0.88);
  transition: color 0.2s ease, transform 0.2s ease;
  position: relative;
  white-space: nowrap;
}

.nav a:hover,
.nav a:focus-visible {
  color: #fff;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(199, 154, 92, 0.95) 50%, transparent 100%);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-self: end;
}

.nav__cta {
  padding: 12px 22px !important;
  border-radius: 999px;
  background: linear-gradient(180deg, #d9b06e 0%, #b98949 100%);
  color: #fff !important;
  font-weight: 700 !important;
  box-shadow: 0 12px 28px rgba(185, 137, 73, 0.28);
  font-family: "Manrope", sans-serif !important;
  font-size: 0.9rem !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav__phone {
  font-family: "Manrope", sans-serif !important;
  font-size: 0.88rem !important;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: none;
  color: #f7ead5 !important;
  padding: 12px 18px !important;
  border: 1px solid rgba(245, 233, 215, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0;
  width: 42px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 7px 0;
  background: #fff;
}

.hero {
  position: relative;
  min-height: calc(100vh - 122px);
  display: flex;
  align-items: center;
  isolation: isolate;
}

.hero__media,
.hero__overlay {
  position: absolute;
  inset: 0;
}

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

.hero__overlay {
  background:
    linear-gradient(90deg, rgba(8, 18, 30, 0.82) 0%, rgba(8, 18, 30, 0.55) 38%, rgba(8, 18, 30, 0.35) 100%),
    linear-gradient(180deg, rgba(8, 18, 30, 0.15) 0%, rgba(8, 18, 30, 0.55) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 400px);
  gap: 40px;
  align-items: center;
  padding: 72px 0;
}

.hero__copy {
  color: #fff;
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
  font-weight: 700;
}

.hero__location {
  margin: 0 0 10px;
  font-family: "Manrope", sans-serif;
  font-size: 1.05rem;
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 248, 236, 0.92);
}

.hero h1 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(3rem, 4.8vw, 5rem);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.section-heading h2,
.split-copy h2,
.floor-copy h2,
.location-copy h2,
.register-grid h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  line-height: 1.08;
  font-weight: 300;
  letter-spacing: -0.03em;
}

.hero__text,
.section-heading p,
.split-copy p,
.floor-copy p,
.location-copy p,
.register-grid p {
  color: rgba(255, 255, 255, 0.92);
  max-width: 640px;
  margin-top: 20px;
  font-size: 1.08rem;
  letter-spacing: 0.01em;
  line-height: 1.8;
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}

.hero__chips span {
  padding: 13px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  color: rgba(255, 248, 236, 0.94);
  font-weight: 500;
}

.hero__actions,
.lead-card__contact,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero__actions {
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  border: 0;
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn--primary {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 14px 30px rgba(199, 154, 92, 0.28);
}

.btn--secondary {
  background: #112235;
  color: #fff;
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

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

.lead-card {
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.98) 0%, rgba(248, 241, 231, 0.98) 100%);
  color: var(--text);
  border-radius: 32px;
  padding: 34px;
  border: 1px solid rgba(182, 144, 92, 0.18);
  box-shadow: 0 30px 70px rgba(10, 22, 36, 0.16);
}

.lead-card__eyebrow {
  margin: 0 0 8px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.lead-card h2 {
  margin: 0 0 18px;
  font-family: "Manrope", sans-serif;
  font-size: 2.15rem;
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.lead-form,
.register-form {
  display: grid;
  gap: 14px;
}

.lead-form label span {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--muted);
}

.lead-form input,
.lead-form textarea,
.register-form input,
.register-form textarea {
  width: 100%;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(17, 34, 53, 0.1);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--muted);
}

.checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.form-alert {
  margin-bottom: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 0.95rem;
}

.form-alert--success {
  background: rgba(32, 131, 89, 0.12);
  color: #166746;
}

.form-alert--error,
.form-alert--invalid {
  background: rgba(181, 53, 53, 0.1);
  color: #9f2222;
}

.section {
  padding: 88px 0;
}

.section--dark {
  background: linear-gradient(180deg, #0f1d2d 0%, #16293d 100%);
}

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

.section-heading h2,
.split-copy h2,
.floor-copy h2,
.location-copy h2,
.register-grid h2 {
  color: var(--text);
}

.section-heading p,
.split-copy p,
.floor-copy p,
.location-copy p,
.register-grid p {
  color: var(--muted);
}

.section-heading--light h2,
.section-heading--light p {
  color: #fff;
}

.overview-grid,
.amenities-grid,
.gallery-grid,
.price-grid {
  display: grid;
  gap: 22px;
}

.overview-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 28px;
}

.overview-card,
.price-card,
.location-panel {
  background: linear-gradient(180deg, #fffdf9 0%, #f6efe5 100%);
  border: 1px solid rgba(17, 34, 53, 0.06);
  border-radius: 28px;
  padding: 28px;
}

.overview-card h3,
.feature-panel__content h3,
.amenity-card h3,
.price-card h3,
.location-panel h3 {
  margin: 0 0 10px;
  font-family: "Manrope", sans-serif;
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.overview-card p,
.feature-panel__content p,
.amenity-card p,
.price-card p,
.location-panel p {
  margin: 0;
  color: var(--muted);
}

.specs-grid,
.split-grid,
.location-grid,
.floor-grid,
.register-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: center;
}

.specs-panel {
  display: grid;
  gap: 14px;
}

.spec-item {
  padding: 18px 20px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(17, 34, 53, 0.08);
  box-shadow: 0 12px 30px rgba(16, 24, 40, 0.06);
}

.spec-item__label {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.88rem;
}

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

.feature-panel {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border-radius: 30px;
}

.feature-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-panel__content {
  position: absolute;
  inset: auto 0 0;
  padding: 22px;
  background: linear-gradient(180deg, rgba(9, 17, 25, 0) 0%, rgba(9, 17, 25, 0.82) 100%);
  color: #fff;
}

.feature-panel__content p {
  color: rgba(255, 255, 255, 0.86);
}

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

.amenity-card {
  background: #fff;
  border: 1px solid rgba(17, 34, 53, 0.08);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 12px 30px rgba(16, 24, 40, 0.05);
}

.amenity-card img {
  width: 62px;
  height: 62px;
  margin-bottom: 18px;
}

.price-section {
  background: linear-gradient(180deg, #fbf7f0 0%, #f3eadc 100%);
}

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

.price-card {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(8px);
}

.price-card__tag {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 9px 14px;
  border-radius: 999px;
  background: #112235;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 600;
}

.split-media img,
.floor-media img {
  width: 100%;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.section--image-split {
  background: #fffaf2;
}

.section--reverse .split-grid > :first-child {
  order: 2;
}

.section--reverse .split-grid > :last-child {
  order: 1;
}

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

.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 16px 36px rgba(10, 22, 36, 0.08);
}

.location-section {
  background: linear-gradient(180deg, #fff 0%, #faf5ec 100%);
}

.location-list {
  padding-left: 18px;
  color: var(--muted);
}

.location-list li + li {
  margin-top: 10px;
}

.location-panel {
  text-align: center;
}

.location-panel img {
  width: 74px;
  margin: 0 auto 18px;
}

.register-section {
  background: #0f1d2d;
  color: #fff;
}

.register-grid h2,
.register-grid p,
.checkbox--light {
  color: #fff;
}

.checkbox--light span {
  color: rgba(255, 255, 255, 0.82);
}

.footer {
  padding: 34px 0 110px;
  background: #09131d;
  color: rgba(255, 255, 255, 0.84);
}

.footer h3 {
  margin: 0 0 8px;
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.footer p,
.footer a {
  margin: 0 0 8px;
  display: block;
}

.disclaimer {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 90px;
  width: 62px;
  height: 62px;
  z-index: 45;
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
}

.side-enquire {
  position: fixed;
  right: 18px;
  bottom: 166px;
  z-index: 44;
  padding: 13px 22px;
  border-radius: 999px;
  background: linear-gradient(180deg, #d9b06e 0%, #b98949 100%);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
}

.side-enquire:hover,
.side-enquire:focus-visible {
  background: var(--gold-dark);
}

.mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  background: #0f1d2d;
}

.mobile-cta a {
  padding: 14px 10px;
  text-align: center;
  color: #fff;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.mobile-cta a:last-child {
  border-right: 0;
  background: var(--gold);
}

@media (max-width: 1080px) {
  .hero__content,
  .overview-grid,
  .feature-strip,
  .amenities-grid,
  .gallery-grid,
  .price-grid,
  .specs-grid,
  .split-grid,
  .location-grid,
  .floor-grid,
  .register-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border-radius: 20px;
    background: rgba(15, 29, 45, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
  }

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

  .nav a {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 10px 0;
    white-space: normal;
  }

  .header__actions {
    display: none;
  }

  .header__wrap {
    grid-template-columns: 180px auto;
    min-height: 74px;
  }

  .hero {
    min-height: auto;
  }

  .hero__content {
    padding: 48px 0 32px;
  }

  .hero h1,
  .section-heading h2,
  .split-copy h2,
  .floor-copy h2,
  .location-copy h2,
  .register-grid h2 {
    font-size: 2.5rem;
  }
}

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

  .header__wrap {
    min-height: 70px;
    padding: 10px 14px;
  }

  .brand img {
    width: 100%;
  }

  .brand {
    width: 160px;
    min-width: 160px;
    height: 46px;
  }

  .lead-card,
  .overview-card,
  .price-card,
  .amenity-card,
  .location-panel {
    padding: 20px;
  }

  .feature-panel {
    min-height: 320px;
  }

  .mobile-cta {
    display: grid;
  }

  .side-enquire {
    display: none;
  }

  .whatsapp-float {
    bottom: 78px;
  }

  .footer {
    padding-bottom: 130px;
  }
}
