:root {
  --ink: #0c1117;
  --navy: #101c2e;
  --blue: #174a9c;
  --blue-2: #0e3472;
  --cream: #f5f1e8;
  --paper: #fbfaf6;
  --line: rgba(255, 255, 255, 0.18);
  --muted: #69717c;
  --gold: #c9a35b;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(6, 12, 22, 0.26);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 16px;
  z-index: 20;
  background: var(--white);
  padding: 10px 14px;
  border-radius: 6px;
}

.skip-link:focus {
  left: 16px;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(5, 10, 18, 0.82), rgba(5, 10, 18, 0));
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-lockup i {
  display: block;
  width: 1px;
  height: 22px;
  background: rgba(255, 255, 255, 0.42);
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}

.top-actions a {
  padding: 10px 12px;
  border-radius: 6px;
}

.nav-button {
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.1);
}

.hero {
  position: relative;
  min-height: 92vh;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  padding: 110px clamp(18px, 5vw, 72px) clamp(34px, 6vw, 72px);
  overflow: hidden;
  background: var(--navy);
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 43%;
  opacity: 0.5;
  filter: blur(1px) saturate(0.86) contrast(1.02);
  transform: scale(1.015);
}

.hero-overlay {
  z-index: -1;
  background:
    radial-gradient(circle at 72% 20%, rgba(23, 74, 156, 0.36), transparent 34%),
    linear-gradient(90deg, rgba(5, 10, 18, 0.92), rgba(5, 10, 18, 0.66) 46%, rgba(5, 10, 18, 0.18)),
    linear-gradient(0deg, rgba(5, 10, 18, 0.88), rgba(5, 10, 18, 0.06) 48%);
}

.hero-content {
  width: min(100%, 1100px);
  color: var(--white);
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

h1 {
  width: min(760px, 100%);
  margin-bottom: 18px;
  font-size: clamp(44px, 8vw, 94px);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-copy {
  width: min(680px, 100%);
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 2.2vw, 25px);
  line-height: 1.35;
}

.hero-copy span,
.hero-copy strong {
  display: block;
}

.hero-copy strong {
  width: fit-content;
  margin-top: 9px;
  color: var(--white);
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.2;
}

.hero-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 14px 22px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.button::after {
  content: "->";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  color: inherit;
  background: rgba(255, 255, 255, 0.18);
  font-size: 13px;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.button-primary {
  color: var(--white);
  background: linear-gradient(180deg, #2675ef, #0f4eb0);
  border-color: rgba(255, 255, 255, 0.34);
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.46);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

.button-light {
  color: var(--blue-2);
  background: var(--white);
  border-color: rgba(14, 52, 114, 0.16);
}

.button-light::after {
  background: rgba(23, 74, 156, 0.12);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  width: min(100%, 1040px);
  margin-top: 34px;
}

.proof-grid div,
.offer-cards article,
.cred-grid article,
.cred-copy article,
.pillar-grid article,
.handover-card,
.advisor-note {
  border: 1px solid rgba(12, 17, 23, 0.1);
  border-radius: 8px;
}

.proof-grid div {
  min-height: 78px;
  padding: 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.09);
  border-color: var(--line);
  backdrop-filter: blur(14px);
}

.proof-grid strong,
.proof-grid span {
  display: block;
}

.proof-grid strong {
  margin-bottom: 6px;
  font-size: 18px;
}

.proof-grid span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  line-height: 1.25;
}

.mobile-sticky {
  display: none;
}

.section {
  padding: clamp(58px, 8vw, 96px) clamp(18px, 5vw, 72px);
}

.section-heading {
  width: min(760px, 100%);
  margin-bottom: 28px;
}

.section-heading.compact {
  width: min(680px, 100%);
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(31px, 4.6vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  font-size: 21px;
  line-height: 1.1;
}

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

.launch-strip {
  background: var(--cream);
}

.offer-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.offer-cards article {
  min-height: 190px;
  padding: 22px;
  background: var(--white);
  box-shadow: 0 14px 35px rgba(11, 27, 48, 0.06);
}

.offer-cards span,
.handover-card span,
.advisor-note span {
  color: var(--blue-2);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.offer-cards strong {
  display: block;
  margin: 18px 0 10px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
}

.damac-cred {
  background: var(--white);
}

.damac-cred .section-heading p {
  max-width: 760px;
}

.cred-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.cred-grid article {
  min-height: 118px;
  padding: 20px;
  background: linear-gradient(180deg, #f8fafc, #eef3fa);
  border-color: rgba(23, 74, 156, 0.13);
}

.cred-grid strong,
.cred-grid span {
  display: block;
}

.cred-grid strong {
  color: var(--blue-2);
  margin-bottom: 10px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 0.95;
}

.cred-grid span {
  color: #3d4856;
  font-size: 13px;
  font-weight: 800;
}

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

.cred-copy article {
  min-height: 210px;
  padding: 24px;
  background: #0b1422;
}

.cred-copy h3 {
  color: var(--white);
}

.cred-copy p {
  color: rgba(255, 255, 255, 0.68);
}

.cred-summary {
  margin: 20px 0 0;
  padding-left: 16px;
  color: var(--ink);
  border-left: 3px solid var(--gold);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.4;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
}

.intro-cta {
  background: var(--paper);
}

.advisor-note,
.handover-card {
  padding: 26px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.why {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(135deg, #08111e, #12294c 62%, #0e3472);
}

.why.water-backed::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.24;
  background:
    repeating-linear-gradient(
      172deg,
      rgba(255, 255, 255, 0.11) 0,
      rgba(255, 255, 255, 0.11) 1px,
      transparent 1px,
      transparent 18px
    ),
    linear-gradient(90deg, rgba(23, 74, 156, 0.18), rgba(201, 163, 91, 0.08));
}

.why.water-backed::after {
  content: "";
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: -1px;
  z-index: -1;
  height: 42%;
  background:
    linear-gradient(180deg, rgba(8, 17, 30, 0), rgba(8, 17, 30, 0.68)),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.08) 0,
      rgba(255, 255, 255, 0.08) 1px,
      transparent 1px,
      transparent 12px
    );
}

.why p {
  color: rgba(255, 255, 255, 0.72);
}

.waterfront-render {
  position: relative;
  margin: 0 0 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: #08111e;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.waterfront-render img {
  width: 100%;
  height: clamp(260px, 38vw, 480px);
  object-fit: cover;
  object-position: center;
}

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

.pillar-grid article {
  min-height: 150px;
  padding: 24px;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
}

.pillar-grid span {
  display: inline-flex;
  margin-bottom: 42px;
  color: var(--gold);
  font-weight: 900;
}

.location {
  background: var(--white);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 22px 0;
}

.stat-row div {
  padding: 16px;
  border-left: 3px solid var(--blue);
  background: #f2f5f9;
}

.stat-row strong,
.stat-row span {
  display: block;
}

.stat-row strong {
  font-size: 28px;
}

.stat-row span {
  color: var(--muted);
  font-size: 12px;
}

.source-note {
  font-size: 13px;
}

.image-frame {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #eef1f6;
  box-shadow: var(--shadow);
}

.image-frame img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.lifestyle {
  background: var(--cream);
}

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

.amenity-grid div {
  min-height: 92px;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  color: var(--white);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(14, 52, 114, 0.82), rgba(12, 17, 23, 0.94)),
    var(--blue-2);
  font-weight: 750;
}

.guide-section {
  background: #f7f8fa;
}

.chat-shell {
  width: min(880px, 100%);
  overflow: hidden;
  border: 1px solid rgba(12, 17, 23, 0.1);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.chat-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  color: var(--white);
  background: linear-gradient(135deg, #10213a, #174a9c);
}

.chat-header strong,
.chat-header span {
  display: block;
}

.chat-header span,
.chat-header small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.chat-messages {
  min-height: 260px;
  padding: 18px;
  background: #f3f5f8;
}

.message {
  width: fit-content;
  max-width: 82%;
  margin-bottom: 12px;
  padding: 14px 16px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.55;
}

.message.assistant {
  color: #253143;
  background: var(--white);
  border: 1px solid rgba(12, 17, 23, 0.08);
}

.message.user {
  margin-left: auto;
  color: var(--white);
  background: var(--blue);
}

.quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 14px;
  border-top: 1px solid rgba(12, 17, 23, 0.1);
}

.quick-replies button {
  min-height: 38px;
  padding: 10px 12px;
  color: var(--blue-2);
  border: 1px solid rgba(23, 74, 156, 0.22);
  border-radius: 6px;
  background: #eef4ff;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.handover {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  color: var(--white);
  background: #09111f;
}

.handover p {
  color: rgba(255, 255, 255, 0.72);
}

.handover-card {
  color: var(--ink);
}

.handover-card p {
  color: #334155;
}

footer {
  padding: 24px clamp(18px, 5vw, 72px);
  background: #050a12;
}

footer p {
  max-width: 1080px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

@media (max-width: 940px) {
  .topbar {
    position: absolute;
  }

  .top-actions {
    display: none;
  }

  body {
    padding-bottom: 86px;
  }

  .hero {
    min-height: 88vh;
    padding-top: 92px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(5, 10, 18, 0.95), rgba(5, 10, 18, 0.64)),
      linear-gradient(0deg, rgba(5, 10, 18, 0.94), rgba(5, 10, 18, 0.34));
  }

  .proof-grid,
  .offer-cards,
  .cred-grid,
  .cred-copy,
  .pillar-grid,
  .amenity-grid,
  .split,
  .handover {
    grid-template-columns: 1fr;
  }

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

  .mobile-sticky {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    color: var(--white);
    background: rgba(5, 10, 18, 0.94);
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 -18px 42px rgba(0, 0, 0, 0.26);
    backdrop-filter: blur(14px);
  }

  .mobile-sticky div {
    min-width: 0;
  }

  .mobile-sticky strong,
  .mobile-sticky span {
    display: block;
  }

  .mobile-sticky strong {
    font-size: 13px;
    line-height: 1.1;
  }

  .mobile-sticky span {
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 11px;
    line-height: 1.2;
  }

  .mobile-sticky .button {
    width: auto;
    min-height: 44px;
    flex: 0 0 auto;
    padding: 12px 14px;
    font-size: 13px;
    box-shadow: none;
  }

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

@media (max-width: 560px) {
  .brand-lockup {
    gap: 9px;
    font-size: 11px;
  }

  .hero-actions,
  .inline-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .mobile-sticky .button {
    width: auto;
  }

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

  .section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .message {
    max-width: 94%;
  }
}
