:root {
  --ink: #07111c;
  --ink-soft: #0c1b2b;
  --gold: #d3a44b;
  --gold-light: #f1d58e;
  --paper: #f7f5ef;
  --muted: #656b73;
  --line: rgba(7, 17, 28, .14);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--paper); color: var(--ink); line-height: 1.65; overflow-x: hidden; }
a { color: inherit; }
img { display: block; width: 100%; }
button, input, textarea { font: inherit; }
.shell { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.section { padding: 112px 0; }

.hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  flex-direction: column;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(4, 13, 23, .95) 0%, rgba(4, 13, 23, .84) 26%, rgba(4, 13, 23, .30) 54%, rgba(4, 13, 23, .04) 100%),
    linear-gradient(0deg, rgba(4, 13, 23, .28) 0%, transparent 44%),
    url('assets/images/hero-dubai.jpg') 74% center/cover no-repeat;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 59% 44%, rgba(255, 214, 140, .16), transparent 18%),
    radial-gradient(circle at 78% 28%, rgba(224, 164, 70, .10), transparent 26%);
}

.nav {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1240px, calc(100% - 44px));
  min-height: 76px;
  padding: 12px 16px 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  z-index: 1000;
  background: rgba(7,12,20,.76);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgba(0,0,0,.25);
}
.trust-row span {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-mark {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(219,181,92,.78);
  border-radius: 50%;
  color: #e6c477;
  font-family: var(--serif);
  font-size: 18px;
}
.brand-copy strong {
  color: #fff;
  font-family: var(--serif);
  font-size: 20px;
  letter-spacing: 2px;
}
.brand-copy small {
  margin-top: 6px;
  color: #d8b866;
  font-size: 8px;
  letter-spacing: 1.5px;
}
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: rgba(255,255,255,.82); text-decoration: none; font-size: 13px; white-space: nowrap; }
.nav-links a:hover { color: #e6c477; }
.nav-cta { padding: 13px 19px; border-radius: 999px; background: linear-gradient(135deg,#f0d37d,#bd8d2d); color: #111; text-decoration: none; font-size: 12px; font-weight: 700; white-space: nowrap; }
.nav-toggle { display: none; width: 42px; height: 42px; border: 0; background: transparent; cursor: pointer; }
.nav-toggle span { display: block; width: 22px; height: 1px; margin: 7px auto; background: #fff; }

.hero-content { position: relative; z-index: 2; flex: 1; display: flex; align-items: center; padding: 140px 0 110px; }
.hero-copy { width: min(500px, 46%); max-width: 500px; }
.eyebrow { color: var(--gold-light); text-transform: uppercase; letter-spacing: .22em; font-weight: 600; font-size: .72rem; margin-bottom: 22px; }
.eyebrow.dark { color: #9e6d1a; }
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(3.2rem, 5.4vw, 5.4rem);
  line-height: .92;
  letter-spacing: -.04em;
  font-weight: 600;
  max-width: 460px;
  text-wrap: balance;
}
.hero-lead {
  margin-top: 22px;
  max-width: 430px;
  color: rgba(255,255,255,.84);
  font-size: .96rem;
  line-height: 1.7;
  font-weight: 300;
}
.hero-actions { display: flex; align-items: center; gap: 18px; margin-top: 28px; flex-wrap: wrap; }
.button { border: 0; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; gap: 20px; padding: 17px 25px; text-decoration: none; text-transform: uppercase; letter-spacing: .13em; font-size: .72rem; font-weight: 700; transition: transform .25s ease, box-shadow .25s ease; }
.button-gold { color: var(--ink); background: linear-gradient(135deg,var(--gold-light),var(--gold)); box-shadow: 0 16px 35px rgba(0,0,0,.24); }
.button:hover { transform: translateY(-3px); box-shadow: 0 22px 48px rgba(0,0,0,.3); }
.text-link { color: #fff; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.55); padding-bottom: 5px; font-size: .8rem; letter-spacing: .08em; }
.dark-link { color: var(--ink); border-color: rgba(7,17,28,.4); }
.trust-row {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 22px;
  width: max-content;
  max-width: 760px;
  margin-top: 32px;
  color: rgba(255,255,255,.82);
  text-transform: uppercase;
  letter-spacing: .11em;
  font-size: .56rem;
  line-height: 1;
  white-space: nowrap;
}
.trust-row span {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.trust-row span:not(:last-child)::after {
  content: '';
  width: 1px;
  height: 18px;
  margin-left: 22px;
  background: rgba(255,255,255,.30);
}
.trust-row span { padding: 0 18px; border-right: 1px solid rgba(255,255,255,.24); }
.trust-row span:first-child { padding-left: 0; }
.trust-row span:last-child { border: 0; }
.scroll-cue { position: absolute; z-index: 3; bottom: 26px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.62); text-decoration: none; text-transform: uppercase; letter-spacing: .2em; font-size: .58rem; display: grid; justify-items: center; gap: 8px; }
.scroll-cue span { height: 34px; width: 1px; background: linear-gradient(var(--gold), transparent); }

.intro-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 100px; align-items: end; }
.section-heading h2, .program-copy h2, .contact-copy h2, .founder-content h2 { font-family: var(--serif); font-weight: 600; font-size: clamp(2.8rem,5vw,4.5rem); line-height: .98; letter-spacing: -.035em; }
.intro-copy { display: grid; gap: 18px; color: #424852; font-size: 1rem; }
.centered { text-align: center; max-width: 980px; margin: 0 auto; }
.centered > p:last-child { margin-top: 24px; color: rgba(255,255,255,.68); }

.dark-section { background: var(--ink); color: #fff; }
.pillar-grid { display: grid; grid-template-columns: repeat(4,1fr); margin-top: 64px; border-top: 1px solid rgba(255,255,255,.14); border-left: 1px solid rgba(255,255,255,.14); }
.pillar-card { min-height: 330px; padding: 34px 30px; border-right: 1px solid rgba(255,255,255,.14); border-bottom: 1px solid rgba(255,255,255,.14); transition: background .25s ease; }
.pillar-card:hover { background: rgba(255,255,255,.035); }
.number { color: var(--gold); font-family: var(--serif); font-size: 1.1rem; }
.pillar-card h3 { margin-top: 76px; font-family: var(--serif); font-size: 2rem; font-weight: 600; }
.pillar-card p { margin-top: 18px; color: rgba(255,255,255,.62); font-size: .88rem; }

.program-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 110px; }
.program-copy { position: sticky; top: 120px; align-self: start; }
.program-copy > p:not(.eyebrow) { margin: 28px 0 34px; color: #555c64; max-width: 500px; }
.timeline { border-top: 1px solid var(--line); }
.timeline-item { display: grid; grid-template-columns: 110px 1fr; gap: 34px; padding: 30px 0; border-bottom: 1px solid var(--line); }
.timeline-item > span { color: #9e6d1a; text-transform: uppercase; letter-spacing: .13em; font-size: .7rem; font-weight: 700; }
.timeline-item h3 { font-family: var(--serif); font-size: 1.8rem; font-weight: 600; }
.timeline-item p { color: var(--muted); margin-top: 4px; }

.founder-section { background: #0b1118; color: #fff; }
.founder-grid {
  display: grid;
  grid-template-columns: minmax(300px, 420px) 1fr;
  gap: 88px;
  align-items: center;
}

.founder-photo {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4 / 4.7;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 40px 80px rgba(0,0,0,.35);
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}
.founder-content h2 { margin: 18px 0 28px; }
.founder-content h3 { margin-bottom: 8px; color: var(--gold-light); font-family: var(--serif); font-size: 2rem; }
.founder-role { margin-bottom: 28px; text-transform: uppercase; letter-spacing: 2px; opacity: .8; }
.founder-content > p:not(.eyebrow):not(.founder-role) { max-width: 650px; line-height: 1.9; color: rgba(255,255,255,.76); }
.founder-content .button { margin-top: 34px; }

.gallery-section { background: #faf8f3; }
.gallery-section .section-heading { max-width: 760px; margin-bottom: 64px; }
.editorial-gallery { display: grid; grid-template-columns: 1.9fr 1fr; gap: 24px; }
.editorial-main { min-height: 720px; overflow: hidden; border-radius: 22px; box-shadow: 0 18px 45px rgba(0,0,0,.08); }
.editorial-main img { height: 100%; object-fit: cover; }
.editorial-side { display: grid; grid-template-rows: repeat(4,1fr); gap: 24px; }
.editorial-side img { height: 162px; object-fit: cover; border-radius: 22px; box-shadow: 0 18px 45px rgba(0,0,0,.08); transition: transform .35s ease; }
.editorial-main img, .editorial-side img { transition: transform .35s ease; }
.editorial-main:hover img, .editorial-side img:hover { transform: scale(1.025); }

.statement { background: linear-gradient(120deg,rgba(7,17,28,.96),rgba(7,17,28,.76)), url('images/gallery/hero-dubai.jpg.png') center / cover; color: #fff; padding: 130px 0; }
.statement-inner { text-align: center; }
blockquote { font-family: var(--serif); font-size: clamp(3rem,5vw,5.4rem); line-height: 1.02; font-weight: 500; }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; }
.contact-copy > p:not(.eyebrow) { margin-top: 26px; color: #555c64; max-width: 430px; }
.contact-note { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--line); text-transform: uppercase; letter-spacing: .12em; font-size: .65rem; color: #8f6b2e; }
.application-form { padding: 42px; background: #fff; border: 1px solid var(--line); display: grid; gap: 20px; }
.application-form label { display: grid; gap: 8px; color: #5d6269; font-size: .72rem; text-transform: uppercase; letter-spacing: .09em; }
.application-form input, .application-form textarea { width: 100%; border: 0; border-bottom: 1px solid #cfd1d2; background: transparent; padding: 10px 0; color: var(--ink); outline: 0; resize: vertical; }
.application-form input:focus, .application-form textarea:focus { border-color: var(--gold); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.submit-button { justify-self: start; margin-top: 8px; }

.cta-final { background: #0d1018; color: #fff; text-align: center; padding: 140px 20px; }
.cta-final .shell { max-width: 900px; }
.cta-final h2 { font-family: var(--serif); font-size: clamp(42px,5vw,74px); line-height: 1.05; margin: 25px 0; }
.cta-final p { max-width: 760px; margin: 0 auto 45px; color: #c8c8c8; font-size: 1.1rem; line-height: 1.8; }

.footer { background: var(--ink); color: #fff; padding: 64px 0 24px; }
.footer-inner { display: grid; grid-template-columns: 1.4fr .8fr .5fr; align-items: start; gap: 64px; }
.footer h3 { font-family: var(--serif); font-size: 2rem; margin-bottom: 14px; }
.footer h4 { color: var(--gold-light); text-transform: uppercase; letter-spacing: .12em; font-size: .72rem; margin-bottom: 14px; }
.footer p, .footer a { color: rgba(255,255,255,.62); text-decoration: none; font-size: .85rem; }
.footer a:hover { color: var(--gold-light); }
.copyright { width: min(1180px,calc(100% - 48px)); margin: 46px auto 0; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.42); font-size: .72rem; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .nav.is-open { flex-wrap: wrap; }
  .nav.is-open .nav-links { display: flex; width: 100%; order: 5; flex-direction: column; align-items: flex-start; padding: 18px 4px 8px; border-top: 1px solid rgba(255,255,255,.12); }
  .hero-copy { width: min(700px,82%); }
  .intro-grid, .program-grid, .contact-grid, .founder-grid { grid-template-columns: 1fr; gap: 54px; }
  .program-copy { position: static; }
  .pillar-grid { grid-template-columns: 1fr 1fr; }
  .founder-photo { max-width: 520px; }
  .editorial-gallery { grid-template-columns: 1fr; }
  .editorial-main { min-height: 520px; }
  .editorial-side { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .editorial-side img { height: 260px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .shell { width: min(100% - 30px,1180px); }
  .section { padding: 84px 0; }
  .hero { background-position: 68% center; }
  .nav { top: 12px; width: calc(100% - 24px); min-height: 66px; padding: 10px 13px; }
  .brand-mark { width: 40px; height: 40px; }
  .brand-copy strong { font-size: .95rem; }
  .brand-copy small { display: none; }
  .hero-content { align-items: flex-end; padding: 112px 0 86px; }
  .hero-copy { width: 100%; max-width: 100%; padding-top: 70px; }
  .hero h1 { font-size: clamp(3rem, 12vw, 4.6rem); line-height: .94; }
  .hero-lead { font-size: .95rem; max-width: 100%; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .trust-row { row-gap: 12px; margin-top: 36px; }
  .trust-row span { padding: 0 10px; }
  .pillar-grid { grid-template-columns: 1fr; }
  .pillar-card { min-height: auto; }
  .pillar-card h3 { margin-top: 42px; }
  .timeline-item { grid-template-columns: 1fr; gap: 8px; }
  .founder-photo { aspect-ratio: 4 / 4.8; }
  .editorial-main { min-height: 390px; }
  .editorial-side { grid-template-columns: 1fr; }
  .editorial-side img { height: 260px; }
  .form-row { grid-template-columns: 1fr; }
  .application-form { padding: 28px 22px; }
  .footer-inner { grid-template-columns: 1fr; }
  .scroll-cue { display: none; }
  .no-break {
  white-space: nowrap;
}
.hero {
  min-height: auto;
  background-position: 64% center;
}

.solutions-intro-text {
  max-width: 390px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.55;
  text-wrap: pretty;
}

.hero-content {
  padding: 135px 0 48px;
  align-items: flex-start;
}

.hero-copy {
  width: 100%;
  max-width: 100%;
  padding-top: 0;
}

.hero h1 {
  max-width: 360px;
  font-size: clamp(3rem, 11vw, 4.2rem);
  line-height: .94;
}

.hero-lead {
  max-width: 100%;
  font-size: .94rem;
  line-height: 1.65;
}

.hero-actions {
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.trust-row {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  max-width: 100%;
  gap: 10px;
  margin-top: 28px;
  white-space: normal;
}

.trust-row span {
  display: block;
  white-space: normal;
  font-size: .58rem;
  line-height: 1.4;
}

.trust-row span:not(:last-child)::after {
  display: none;
}
}
