:root {
  --black: #050609;
  --ink: #0a0d16;
  --navy: #002f6d;
  --blue: #075fb8;
  --deep-blue: #021d49;
  --gold: #b9006c;
  --gold-soft: #e0188d;
  --text: #f4f7fb;
  --muted: #b4bfd1;
  --line: rgba(185, 0, 108, 0.58);
  --panel: rgba(3, 16, 39, 0.76);
  --max: 1160px;
  --font-heading: Calibri, "Segoe UI", Arial, sans-serif;
  --font-heading-ar: "Droid Arabic Kufi", "Droid Kufi", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--text);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.75;
}

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

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

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  min-height: 104px;
  padding: 0 34px;
  background: #030407;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.brand {
  justify-self: center;
}

.brand img {
  width: 86px;
  height: auto;
  margin: 0 auto;
}

.main-nav,
.site-footer nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 28px);
  color: #d9dde5;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.main-nav a,
.site-footer nav a {
  transition: color 180ms ease;
  white-space: nowrap;
}

.main-nav a:hover,
.site-footer nav a:hover {
  color: var(--gold-soft);
}

.language-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.language-dots a {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  transition: filter 180ms ease, transform 180ms ease;
}

.language-dots a:first-child {
  background: #d04d20;
}

.language-dots a:last-child {
  background: #224b92;
}

.language-dots a:not([aria-current="page"]) {
  filter: saturate(0.55) brightness(0.75);
}

.language-dots a:hover,
.language-dots a:focus-visible {
  filter: none;
  transform: translateY(-1px);
}

.language-dots a:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.hero {
  min-height: 670px;
  display: grid;
  place-items: center;
  padding: 110px 20px 185px;
  background:
    linear-gradient(rgba(0, 22, 50, 0.55), rgba(0, 16, 33, 0.72)),
    url("../images/pdf-extracted/hero-clean.jpg") center / cover no-repeat;
  text-align: center;
}

.hero__content {
  max-width: 880px;
}

.eyebrow,
.spaced {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 8px;
  line-height: 1.45;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
}

h1:lang(ar),
h2:lang(ar),
h3:lang(ar),
h4:lang(ar),
h5:lang(ar),
h6:lang(ar) {
  font-family: var(--font-heading-ar);
}

h1,
h2 {
  margin: 0;
  color: var(--text);
  font-weight: 800;
  line-height: 1.08;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(31px, 4.8vw, 58px);
  letter-spacing: 8px;
}

html[lang="es"] .hero h1 {
  font-size: clamp(27px, 3.7vw, 46px);
  letter-spacing: 5px;
}

h2 {
  font-size: clamp(28px, 4vw, 50px);
  letter-spacing: 1px;
}

h2 span {
  display: block;
  color: #d8e0ee;
  font-size: 0.52em;
  font-weight: 400;
  letter-spacing: 9px;
}

h3 {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

p {
  margin: 0 0 22px;
  color: var(--muted);
}

.centered {
  text-align: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 12px 28px;
  border: 0;
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
  transition: transform 180ms ease, filter 180ms ease;
}

.button:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.button-blue {
  background: var(--blue);
}

.button-gold {
  background: var(--gold);
  color: #fff;
}

.center-button {
  display: flex;
  width: max-content;
  max-width: 100%;
  margin: 30px auto 0;
}

.quick-benefits {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(1180px, calc(100% - 48px));
  margin: -72px auto 0;
  background: #fff;
  color: var(--navy);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
}

.quick-benefits article {
  min-height: 128px;
  display: grid;
  place-items: center;
  padding: 24px;
  color: #05427f;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
}

.quick-benefits article + article {
  border-left: 2px solid var(--gold);
}

.section-pattern {
  background:
    radial-gradient(circle at 18% 18%, rgba(5, 72, 134, 0.22), transparent 28%),
    linear-gradient(90deg, rgba(3, 18, 47, 0.98), rgba(3, 5, 13, 0.98)),
    repeating-radial-gradient(ellipse at top, rgba(185, 0, 108, 0.08) 0 1px, transparent 2px 18px);
}

.benefits {
  padding: 150px 0 92px;
}

.benefits__grid,
.consultant-grid,
.process-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: center;
}

.feature-list {
  display: grid;
  gap: 22px;
  margin: 34px 0;
}

.feature-list article {
  position: relative;
  padding-left: 58px;
}

.line-icon {
  position: absolute;
  left: 0;
  top: 1px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
}

.framed-image {
  margin: 0;
  padding: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.framed-image img {
  width: 100%;
  max-height: 700px;
  object-fit: cover;
}

.gold-band {
  padding: 52px 0;
  background:
    linear-gradient(90deg, rgba(4, 18, 47, 0.98), rgba(3, 8, 20, 0.98));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--text);
}

.gold-band p {
  margin: 0;
  color: var(--text);
  font-weight: 600;
}

.split-two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 52px;
}

.split-two > * + * {
  padding-left: 52px;
  border-left: 2px solid var(--line);
}

.section-dark {
  background-color: var(--black);
}

.why-dubai {
  padding: 100px 0 108px;
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 44px 42px;
  margin-top: 58px;
}

.reason-grid article {
  min-width: 0;
}

.check {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 20px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-size: 17px;
  font-weight: 800;
}

.image-panel {
  padding: 96px 0 92px;
  background:
    linear-gradient(rgba(4, 34, 80, 0.78), rgba(4, 28, 67, 0.82)),
    url("../images/pdf-extracted/offer-skyline-clean.jpg") center / cover no-repeat;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: 44px;
  border: 1px solid var(--line);
}

.offer-grid article {
  min-height: 190px;
  padding: 34px;
  background: rgba(1, 18, 49, 0.57);
  border: 1px solid var(--line);
}

.buyer {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  background: #03050c;
}

.buyer__image {
  min-height: 560px;
  background: url("../images/pdf-extracted/buyer-persona-clean.jpg") left center / cover no-repeat;
}

.buyer__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 8vw, 108px);
}

.buyer ul {
  padding: 0;
  margin: 26px 0 34px;
  color: var(--muted);
  list-style: none;
}

.buyer li {
  margin: 10px 0;
}

.buyer li::before {
  content: "+ ";
  color: var(--gold);
  font-weight: 800;
}

.investment-process {
  padding: 112px 0;
  background:
    linear-gradient(90deg, rgba(0, 18, 50, 0.95), rgba(0, 18, 50, 0.78), rgba(0, 0, 0, 0.15)),
    url("../images/pdf-extracted/investment-waterfront-clean.jpg") center / cover no-repeat;
}

.compact article {
  padding-left: 64px;
}

.consultant {
  padding: 110px 0;
}

.consultant-grid {
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1fr);
}

.consultant figure {
  margin: 0;
  border: 1px solid var(--line);
}

.consultant img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  object-position: center;
  filter: grayscale(100%);
}

blockquote {
  margin: 34px 0 0;
  padding: 24px 28px;
  border: 1px solid var(--line);
  color: var(--gold);
  font-style: italic;
}

.projects {
  padding: 108px 0 98px;
}

.project-intro {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 70px;
  margin: 60px 0 58px;
}

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

.project-cards article {
  min-width: 0;
  border: 1px solid var(--line);
  background: #07080b;
}

.project-cards img {
  width: 100%;
  aspect-ratio: 1 / 1.15;
  object-fit: cover;
}

.project-cards h3,
.project-cards p {
  padding-inline: 24px;
}

.project-cards h3 {
  margin-top: 24px;
}

.project-cards p {
  padding-bottom: 28px;
}

.experience-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 28px;
  margin-top: 66px;
}

.faq {
  padding: 92px 0 104px;
  background:
    linear-gradient(rgba(8, 64, 133, 0.76), rgba(6, 31, 80, 0.88)),
    url("../images/pdf-extracted/faq-clean.jpg") center / cover no-repeat;
}

.faq-list {
  margin-top: 46px;
  border: 1px solid var(--line);
  background: rgba(0, 22, 64, 0.44);
}

details {
  border-bottom: 1px solid var(--line);
}

details:last-child {
  border-bottom: 0;
}

summary {
  position: relative;
  padding: 20px 54px 20px 24px;
  color: var(--gold-soft);
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  color: var(--gold-soft);
  font-size: 22px;
  line-height: 1;
}

details[open] summary::after {
  content: "×";
}

details p {
  max-width: 980px;
  padding: 0 24px 24px;
}

.associates {
  padding: 66px 0 58px;
  background: #fff;
  color: var(--navy);
}

.associates h2 {
  color: var(--navy);
}

.associates .spaced {
  color: var(--gold);
}

.associates p {
  color: #39475d;
}

.associate-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(34px, 8vw, 118px);
  margin-top: 38px;
}

.associate-logos img {
  width: auto;
  max-width: 28%;
  max-height: 92px;
  object-fit: contain;
}

.contact {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  background: #070708;
}

.contact__info,
.contact__form {
  padding: clamp(50px, 8vw, 108px);
}

.contact__form {
  background: linear-gradient(120deg, #061846, #003879);
}

address {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-style: normal;
}

address strong {
  margin-top: 22px;
  color: var(--gold);
}

form {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--gold);
  border-radius: 0;
  background: transparent;
  color: #fff;
  font: inherit;
  font-size: 14px;
  outline: 0;
  padding: 17px 18px;
}

select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #fff 50%),
    linear-gradient(135deg, #fff 50%, transparent 50%);
  background-position:
    calc(100% - 22px) 50%,
    calc(100% - 15px) 50%;
  background-size: 7px 7px, 7px 7px;
  background-repeat: no-repeat;
  padding-right: 46px;
}

select option {
  background: #151515;
  color: #fff;
}

textarea {
  resize: vertical;
}

input::placeholder,
select:invalid,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.76);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

form .button {
  width: 100%;
  margin-top: 4px;
}

.site-footer {
  display: grid;
  grid-template-columns: 0.8fr 1fr 0.8fr;
  gap: 48px;
  align-items: center;
  padding: 70px max(38px, calc((100vw - var(--max)) / 2));
  background: #030303;
}

.site-footer img {
  width: 185px;
}

.site-footer nav {
  align-items: flex-start;
  flex-direction: column;
  gap: 8px;
}

.site-footer address {
  font-size: 13px;
}

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px 20px 18px;
  }

  .main-nav {
    flex-wrap: wrap;
    font-size: 10px;
  }

  .language-dots {
    justify-content: center;
  }

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

  .benefits__grid,
  .consultant-grid,
  .process-grid,
  .project-intro,
  .contact,
  .site-footer {
    grid-template-columns: 1fr;
  }

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

  .buyer__image {
    min-height: 400px;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 14px;
  }

  .container {
    width: min(100% - 28px, var(--max));
  }

  .site-header {
    position: relative;
  }

  .main-nav {
    gap: 10px 14px;
  }

  .hero {
    min-height: 590px;
    padding: 86px 18px 142px;
  }

  h1 {
    font-size: clamp(27px, 9vw, 42px);
    letter-spacing: 3px;
  }

  html[lang="es"] .hero h1 {
    font-size: clamp(25px, 7.4vw, 34px);
    letter-spacing: 2px;
  }

  h2 {
    font-size: clamp(25px, 8vw, 38px);
  }

  h2 span,
  .eyebrow,
  .spaced {
    letter-spacing: 4px;
  }

  .quick-benefits,
  .split-two,
  .offer-grid,
  .project-cards,
  .experience-row,
  .form-row {
    grid-template-columns: 1fr;
  }

  .quick-benefits {
    width: min(100% - 28px, 520px);
  }

  .quick-benefits article + article {
    border-left: 0;
    border-top: 2px solid var(--gold);
  }

  .split-two > * + * {
    padding-left: 0;
    padding-top: 28px;
    border-left: 0;
    border-top: 2px solid var(--line);
  }

  .benefits,
  .why-dubai,
  .image-panel,
  .investment-process,
  .consultant,
  .projects,
  .faq {
    padding-block: 72px;
  }

  .reason-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .offer-grid article {
    min-height: unset;
    padding: 26px;
  }

  .consultant img {
    height: auto;
  }

  .contact__info,
  .contact__form {
    padding: 44px 24px;
  }

  .associate-logos {
    flex-direction: column;
    gap: 34px;
  }

  .associate-logos img {
    max-width: 72%;
  }

  .site-footer {
    padding: 48px 28px;
  }
}
