:root {
  --bg: #080d1d;
  --bg-soft: #0d1326;
  --card: #11182d;
  --line: rgba(222, 195, 132, 0.18);
  --line-cool: rgba(226, 232, 240, 0.1);
  --text: #f8f5ee;
  --muted: #b7b3a8;
  --gold: #d9b56d;
  --gold-soft: #f0d697;
  --ink: #12100a;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: "Outfit", "Inter Tight", Arial, sans-serif;
  letter-spacing: 0;
}

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

img,
svg {
  display: block;
}

button,
input,
textarea,
select {
  font: inherit;
}

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 20% 0%, rgba(217, 181, 109, 0.08), transparent 28rem),
    linear-gradient(180deg, #080d1d 0%, #0b1021 50%, #070b18 100%);
}

.site-bg span {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 80px 80px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 64px);
  transition: background .25s ease, border-color .25s ease, padding .25s ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  padding-top: 12px;
  padding-bottom: 12px;
  background: rgba(8, 13, 29, 0.84);
  border-color: var(--line-cool);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  min-width: 220px;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(217, 181, 109, .45);
}

.brand strong {
  display: block;
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: .42em;
  color: var(--gold);
}

.brand small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .28em;
}

.desktop-nav,
.header-actions {
  display: flex;
  align-items: center;
}

.desktop-nav {
  gap: 28px;
}

.desktop-nav a,
.mobile-nav a {
  color: rgba(248, 245, 238, .72);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  transition: color .2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active,
.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--gold);
}

.header-actions {
  gap: 14px;
}

.lang-button,
.menu-button {
  border: 1px solid var(--line-cool);
  background: transparent;
  color: rgba(248, 245, 238, .72);
  cursor: pointer;
}

.lang-button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .22em;
}

.globe {
  width: 13px;
  height: 13px;
  border: 1px solid currentColor;
  border-radius: 50%;
  box-shadow: inset 4px 0 0 transparent;
}

.touch-link {
  border-bottom: 1px solid var(--gold);
  color: var(--gold);
  padding-bottom: 3px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 3px auto;
  background: currentColor;
}

.mobile-panel {
  position: fixed;
  inset: 74px 16px auto;
  z-index: 45;
  padding: 20px;
  background: rgba(13, 19, 38, .96);
  border: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.mobile-nav {
  display: grid;
  gap: 18px;
}

main {
  min-height: 72vh;
}

.hero {
  position: relative;
  display: grid;
  min-height: 88vh;
  place-items: center;
  overflow: hidden;
  padding: 150px 24px 72px;
  text-align: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,13,29,.64), rgba(8,13,29,.58) 45%, rgba(8,13,29,.98)), var(--hero-image);
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.hero-inner,
.section-inner {
  width: min(100%, 1180px);
  margin: 0 auto;
}

.hero-inner {
  max-width: 880px;
}

.eyebrow {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: .35em;
  text-transform: uppercase;
}

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

h1,
h2 {
  text-wrap: balance;
}

.hero h1,
.page-hero h1 {
  margin-top: 28px;
  font-family: "Fraunces", serif;
  font-weight: 300;
  line-height: 1.12;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 4.8rem);
}

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

.hero p,
.page-hero p,
.lead {
  color: rgba(248, 245, 238, .74);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.75;
}

.hero p {
  max-width: 720px;
  margin: 30px auto 0;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 44px;
}

.button,
.button-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 26px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  transition: transform .2s ease, border-color .2s ease, color .2s ease, opacity .2s ease;
}

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

.button-outline {
  border: 1px solid var(--line);
  color: rgba(248, 245, 238, .84);
}

.button:hover,
.button-outline:hover {
  transform: translateY(-1px);
}

.cred-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 920px;
  margin: 56px auto 0;
  border: 1px solid var(--line);
  background: var(--line);
  gap: 1px;
  text-align: left;
}

.cred-grid div,
.tile,
.service-card,
.value-card,
.process-card {
  background: rgba(8, 13, 29, .88);
}

.cred-grid div {
  min-height: 86px;
  padding: 20px;
  color: rgba(248,245,238,.86);
  font-size: 11px;
  line-height: 1.45;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.section,
.page-hero,
.legal-page {
  border-top: 1px solid var(--line-cool);
}

.section {
  padding: clamp(76px, 10vw, 128px) 24px;
}

.section h2,
.page-hero h1 {
  max-width: 780px;
  margin-top: 24px;
  font-size: clamp(2rem, 4vw, 3.7rem);
  font-weight: 500;
  line-height: 1.16;
}

.section .lead {
  max-width: 760px;
  margin-top: 24px;
}

.grid {
  display: grid;
  gap: 1px;
  margin-top: 56px;
  border: 1px solid var(--line);
  background: var(--line);
}

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

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

.tile,
.service-card,
.value-card,
.process-card {
  padding: 32px;
}

.tile h3,
.service-card h3,
.value-card h3,
.process-card h3 {
  color: var(--text);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
}

.tile p,
.service-card p,
.value-card p,
.process-card p,
.legal-page p,
.legal-page li {
  margin-top: 14px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

.tile .number,
.service-card .number,
.process-card .number {
  display: block;
  margin-bottom: 24px;
  color: rgba(217,181,109,.72);
  font-size: 11px;
  letter-spacing: .32em;
}

.market-list,
.corridors {
  display: grid;
  gap: 12px 42px;
  margin-top: 46px;
  padding: 0;
  list-style: none;
}

.market-list {
  grid-template-columns: repeat(3, 1fr);
}

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

.market-list li,
.corridors li {
  border-bottom: 1px solid var(--line-cool);
  padding-bottom: 12px;
  color: rgba(248,245,238,.85);
}

.quote-band {
  text-align: center;
}

.quote-band p {
  max-width: 780px;
  margin: 28px auto 0;
  font-family: "Fraunces", serif;
  color: rgba(248,245,238,.9);
  font-size: clamp(1.7rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.32;
}

.faq {
  margin-top: 54px;
  border-block: 1px solid var(--line-cool);
}

.faq details {
  border-bottom: 1px solid var(--line-cool);
  padding: 24px 0;
}

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

.faq summary {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  list-style: none;
}

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

.faq strong {
  font-size: 18px;
  font-weight: 500;
}

.faq span {
  color: var(--gold);
}

.page-hero {
  padding: 160px 24px 84px;
}

.page-hero .section-inner {
  max-width: 980px;
}

.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.contact-card {
  border: 1px solid var(--line);
  padding: 32px;
  background: rgba(13,19,38,.7);
}

.contact-card div + div {
  margin-top: 24px;
}

.contact-card small,
.info-grid small,
.footer-links h4 {
  display: block;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.contact-card a,
.contact-card p {
  display: block;
  margin-top: 8px;
  color: var(--text);
  line-height: 1.6;
}

form {
  display: grid;
  gap: 18px;
}

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

label {
  display: grid;
  gap: 9px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line-cool);
  border-radius: 3px;
  background: rgba(255,255,255,.035);
  color: var(--text);
  padding: 14px;
  outline: none;
}

textarea {
  min-height: 160px;
  resize: vertical;
}

select option {
  color: #121212;
}

.check {
  grid-template-columns: 18px 1fr;
  align-items: start;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0;
  text-transform: none;
}

.check input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

.form-note {
  min-height: 20px;
  color: var(--gold-soft);
  font-size: 13px;
}

.legal-page {
  padding: 160px 24px 90px;
}

.legal-page article {
  max-width: 880px;
  margin: 0 auto;
}

.legal-page h1 {
  margin-top: 20px;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1.08;
}

.legal-page h2 {
  margin-top: 42px;
  color: var(--text);
  font-size: 21px;
}

.legal-page p:first-of-type {
  margin-top: 28px;
}

.site-footer {
  margin-top: 72px;
  border-top: 1px solid var(--line-cool);
}

.footer-brand,
.footer-info,
.footer-links,
.footer-disclaimer,
.footer-bottom {
  width: min(100% - 48px, 1180px);
  margin: 0 auto;
}

.footer-brand {
  display: grid;
  place-items: center;
  padding: 76px 0 58px;
  text-align: center;
}

.uae {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(217,181,109,.72);
  font-size: 10px;
  letter-spacing: .35em;
  text-transform: uppercase;
}

.uae svg {
  width: 21px;
  border-radius: 2px;
}

.footer-brand img {
  width: min(280px, 70vw);
  margin-top: 42px;
}

.footer-brand span {
  width: 64px;
  height: 1px;
  margin-top: 32px;
  background: rgba(217,181,109,.42);
}

.footer-brand p {
  margin-top: 24px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .32em;
  text-transform: uppercase;
}

.footer-info,
.footer-links,
.footer-disclaimer,
.footer-bottom {
  border-top: 1px solid var(--line-cool);
}

.footer-info {
  padding: 56px 0;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  margin-top: 34px;
}

.info-grid strong {
  display: block;
  margin-top: 8px;
  color: rgba(248,245,238,.86);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

.footer-links {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 54px;
  padding: 56px 0;
}

.footer-links p,
.footer-disclaimer p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.footer-links a {
  display: block;
  margin-top: 13px;
  color: var(--muted);
  font-size: 14px;
}

.footer-disclaimer {
  padding: 36px 0;
}

.footer-disclaimer p + p {
  margin-top: 14px;
}

.footer-disclaimer strong,
.footer-disclaimer small {
  color: var(--gold);
}

.footer-disclaimer small {
  display: block;
  margin-top: 20px;
  font-size: 10px;
  letter-spacing: .26em;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  color: var(--muted);
  font-size: 12px;
}

.footer-bottom span:last-child {
  display: flex;
  gap: 16px;
  color: rgba(183,179,168,.75);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.whatsapp {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 60;
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 14px 34px rgba(37,211,102,.35);
  transition: transform .2s ease;
}

.whatsapp:hover {
  transform: scale(1.04);
}

.whatsapp svg {
  width: 34px;
  height: 34px;
  fill: white;
}

@media (max-width: 1020px) {
  .desktop-nav,
  .touch-link {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .grid.three,
  .cred-grid,
  .info-grid,
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 680px) {
  .site-header {
    padding-inline: 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand small,
  .lang-button {
    display: none;
  }

  .hero,
  .page-hero,
  .legal-page {
    padding-inline: 18px;
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .button-outline {
    width: 100%;
  }

  .grid.three,
  .grid.two,
  .cred-grid,
  .market-list,
  .corridors,
  .form-grid,
  .info-grid,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .tile,
  .service-card,
  .value-card,
  .process-card,
  .contact-card {
    padding: 24px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-bottom span:last-child {
    flex-wrap: wrap;
  }

  .whatsapp {
    right: 18px;
    bottom: 18px;
    width: 58px;
    height: 58px;
  }
}
