/* ─── RESET ─────────────────────────────────────── */
*{box-sizing:border-box;margin:0;padding:0}
:root{
  --navy:#0c1e3c;
  --navy2:#152d55;
  --navy3:#1c3d6e;
  --cream:#f5f0e8;
  --cream2:#ede6d8;
  --cream3:#e4ddd0;
  --gold:#b8973a;
  --gold2:#d4b05a;
  --gold3:#e8d08a;
  --white:#ffffff;
  --off:#faf8f4;
  --muted:#7a7468;
  --dark:#1a1410;
  --bdr:rgba(0,0,0,.1);
  --bdr-light:rgba(0,0,0,.06);
}
html{scroll-behavior:smooth;font-size:16px}
body{font-family:'Jost',sans-serif; background:var(--white);overflow-x:hidden;-webkit-font-smoothing:antialiased}
a{text-decoration:none;color:inherit;cursor:pointer}
button{cursor:pointer;font-family:'Jost',sans-serif}
img{max-width:100%;display:block}
.serif{font-family:'Cormorant Garamond',serif}

/* ─── PAGE SYSTEM ───────────────────────────────── */
.page{display:none}
.page.active{display:block}
@keyframes fadeUp{from{opacity:0;transform:translateY(24px)}to{opacity:1;transform:translateY(0)}}
@keyframes fadeIn{from{opacity:0}to{opacity:1}}
.page.active .anim-1{animation:fadeUp .7s ease both}
.page.active .anim-2{animation:fadeUp .7s .1s ease both}
.page.active .anim-3{animation:fadeUp .7s .2s ease both}
.page.active .anim-4{animation:fadeUp .7s .3s ease both}

/* ─── NAVIGATION ────────────────────────────────── */
nav{
  position:fixed;top:0;left:0;right:0;z-index:1000;
  height:70px !important;
  display:flex;align-items:center;
  padding:0 52px;
  background:rgba(12,30,60,.97);
  backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(184,151,58,.15);
}
.nav-logo{
  font-family:'Cormorant Garamond',serif;
  font-size:21px;font-weight:400;letter-spacing:.14em;
  color:var(--white);text-transform:uppercase;
  cursor:pointer;flex-shrink:0;
}
.nav-links{
  display:flex;align-items:center;gap:0;
  margin:0 auto;
}
.nav-links a{
  font-size:15px;font-weight:400;letter-spacing:.1em;
  text-transform:uppercase;color:rgba(255,255,255,.95);
  padding:0 20px;height:64px;line-height:64px;
  transition:color .2s;white-space:nowrap;
  border-right:1px solid rgba(255,255,255,.06);
}
.nav-links a:first-child{border-left:1px solid rgba(255,255,255,.06)}
.nav-links a:hover{color:rgba(255,255,255,.9)}
.nav-links a.active{color:var(--gold2);font-weight:500}
.nav-cta{
  background:var(--gold);color:var(--navy);
  font-size:14.5px;font-weight:500;letter-spacing:.1em;
  text-transform:uppercase;padding:10px 22px;border:none;
  flex-shrink:0;transition:background .2s;
}
.nav-cta:hover{background:var(--gold2)}

/* ─── NAV TOGGLE (MOBILE) ───────────────────────── */
.nav-toggle{
  display:none;flex-direction:column;gap:5px;
  background:transparent;border:none;cursor:pointer;
  flex-shrink:0;padding:8px;margin-left:auto;
}
.nav-toggle span{
  width:24px;height:2px;background:rgba(255,255,255,.9);
  transition:all .3s ease;display:block;
}
.nav-toggle.active span:nth-child(1){transform:rotate(45deg) translate(8px,8px)}
.nav-toggle.active span:nth-child(2){opacity:0}
.nav-toggle.active span:nth-child(3){transform:rotate(-45deg) translate(7px,-7px)}
#navMenu.show{display:flex !important}

/* ─── SHARED ─────────────────────────────────────── */
.lbl{
  font-size:13px;font-weight:500;letter-spacing:.18em;
  text-transform:uppercase;color:var(--gold);
  display:block;margin-bottom:14px;
}
.lbl-light{color:rgba(184,151,58,.8)}
.h1{font-family:'Cormorant Garamond',serif;font-size:62px;font-weight:300;line-height:1.08;color:var(--navy)}
.h1-light{color:var(--white)}
.h2{font-family:'Cormorant Garamond',serif;font-size:44px;font-weight:300;line-height:1.1;color:var(--navy)}
.h2-light{color:var(--white)}
.h3{font-family:'Cormorant Garamond',serif;font-size:28px;font-weight:400;line-height:1.2;color:var(--navy)}
.h3-light{color:var(--white)}
.body{font-size:17px;font-weight:300;color:#333333;line-height:1.9}
.body-dark{color:rgba(255,255,255,.95)}
.gold-rule{width:40px;height:1px;background:var(--gold);margin:20px 0}
.gold-rule-c{margin:20px auto}

.btn-navy{display:inline-block;background:var(--navy);color:#fff;font-size:14.5px;font-weight:500;letter-spacing:.1em;text-transform:uppercase;padding:13px 30px;border:none;transition:background .2s}
.btn-navy:hover{background:var(--navy2)}
.btn-gold{display:inline-block;background:var(--gold);color:var(--navy);font-size:14.5px;font-weight:500;letter-spacing:.1em;text-transform:uppercase;padding:13px 30px;border:none;transition:background .2s}
.btn-gold:hover{background:var(--gold2)}
.btn-outline-gold{display:inline-block;background:transparent;color:var(--gold2);font-size:14.5px;font-weight:500;letter-spacing:.1em;text-transform:uppercase;padding:12px 30px;border:1px solid rgba(184,151,58,.4);transition:all .2s}
.btn-outline-gold:hover{background:rgba(184,151,58,.08);border-color:var(--gold2)}
.btn-outline-light{display:inline-block;background:transparent;color:rgba(255,255,255,.7);font-size:14.5px;font-weight:500;letter-spacing:.1em;text-transform:uppercase;padding:12px 30px;border:1px solid rgba(255,255,255,.2);transition:all .2s}
.btn-outline-light:hover{background:rgba(255,255,255,.06);color:#fff}

/* ─── SECTION WRAPPERS ──────────────────────────── */
.sec{padding:72px 52px}
.sec-sm{padding:52px 52px}
.sec-navy{background:var(--navy)}
.sec-cream{background:var(--cream)}
.sec-off{background:var(--off)}
.sec-white{background:var(--white)}
.sec-dark{background:#080f1d}

.max{max-width:1160px;margin:0 auto}
.max-sm{max-width:800px;margin:0 auto}
.max-xs{max-width:600px;margin:0 auto;text-align:center}

/* ─── HOME ──────────────────────────────────────── */

/* hero */
.home-hero{
  padding-top:64px;min-height:75vh;
  background:var(--navy);
  position:relative;overflow:hidden;
  display:flex;align-items:center;
}
.hero-video{
  position:absolute;inset:0;
  width:100%;height:100%;
  object-fit:cover;
  z-index:0;
}
/* FADED SKYLINE — layered above video, fades into navy at bottom */
.hero-skyline{
  position:absolute;inset:0;
  z-index:1;
  background-image:url('https://images.unsplash.com/photo-1512453979798-5ea266f8880c?w=1800&q=60&fit=crop');
  background-size:cover;
  background-position:center 40%;
  opacity:0.38;
  mask-image:linear-gradient(to bottom, black 40%, transparent 100%);
  -webkit-mask-image:linear-gradient(to bottom, black 40%, transparent 100%);
}
.hero-video-overlay{
  position:absolute;inset:0;
  background:linear-gradient(to bottom, rgba(8,18,36,.55) 0%, rgba(8,18,36,.82) 100%);
  z-index:2;
}
.home-hero-lines{position:absolute;inset:0;overflow:hidden;z-index:3}
.home-hero-lines::before{
  content:'';position:absolute;
  top:0;bottom:0;left:50%;width:1px;
  background:rgba(255,255,255,.04);
}
.home-hero-lines::after{
  content:'';position:absolute;
  top:0;bottom:0;right:25%;width:1px;
  background:rgba(255,255,255,.04);
}
.home-hero-inner{
  position:relative;z-index:4;
  padding:60px 52px;
  display:grid;grid-template-columns:1fr 420px;
  gap:80px;align-items:center;width:100%;max-width:1280px;margin:0 auto;
}
.home-hero-tag{
  display:inline-flex;align-items:center;gap:12px;
  font-size:13px;font-weight:500;letter-spacing:.2em;text-transform:uppercase;
  color:var(--gold); margin-bottom:28px;
}
.home-hero-tag::before{content:'';width:28px;height:1px;background:var(--gold)}
.home-hero h1{
  font-family:'Cormorant Garamond',serif;
  font-size:66px;font-weight:300;line-height:1.06;
  color:#fff;margin-bottom:24px;
}
.home-hero h1 em{color:var(--gold3);font-style:italic;font-weight:300}
.home-hero-body{
  font-size:16px;font-weight:300;color:rgba(255,255,255,.95);
  line-height:1.9;max-width:500px;margin-bottom:40px;
}
.home-hero-btns{display:flex;gap:12px}
.home-hero-card{
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.08);
  padding:40px 36px;
}
.home-hero-card-title{
  font-size:13px;font-weight:500;letter-spacing:.18em;text-transform:uppercase;
  color:rgba(184,151,58,.7);margin-bottom:32px;padding-bottom:20px;
  border-bottom:1px solid rgba(255,255,255,.06);
}
.hstat-list{display:flex;flex-direction:column;gap:0}
.hstat{padding:20px 0;border-bottom:1px solid rgba(255,255,255,.06)}
.hstat:last-child{border-bottom:none;padding-bottom:0}
.hstat-num{
  font-family:'Cormorant Garamond',serif;
  font-size:36px;font-weight:300;color:#fff;
  line-height:1;margin-bottom:5px;
}
.hstat-lbl{font-size:14.5px;font-weight:300;color:rgba(255,255,255,.88);letter-spacing:.04em}

/* group intro */
.group-intro{
  background:var(--off);
  padding:56px 52px;
  text-align:center;
}
.group-intro h2{
  font-family:'Cormorant Garamond',serif;
  font-size:32px;font-weight:400;color:var(--navy);
  margin-bottom:20px;
}
.group-intro p{
  font-size:14.5px;font-weight:300;color:#333333;
  line-height:1.9;max-width:620px;margin:0 auto 28px;
}

/* divisions */
.divisions{
  display:grid;grid-template-columns:1fr 1fr;
  background:var(--white);
}
.division{
  padding:0;cursor:pointer;
  position:relative;overflow:hidden;
}
.division-img{
  height:300px;overflow:hidden;position:relative;
}
.division-img img{
  width:100% !important;height:100% !important;
  object-fit:cover !important;object-position:center center !important;
  display:block !important;transform:none !important;
}
.division-img-inner{
  position:absolute;inset:0;
  display:flex;align-items:center;justify-content:center;
  font-family:'Cormorant Garamond',serif;
  font-size:100px;font-weight:300;
  color:rgba(255,255,255,.07);
  letter-spacing:.1em;
}
.div-uk .division-img{background:linear-gradient(160deg,#1a2f52 0%,#0c1e3c 100%)}
.div-dubai .division-img{background:linear-gradient(160deg,#1a3040 0%,#0f1f2e 100%)}
.division-body{padding:36px 40px 44px}
.div-tag{font-size:13px;font-weight:500;letter-spacing:.16em;text-transform:uppercase;color:var(--gold);margin-bottom:10px}
.division-body h3{font-family:'Cormorant Garamond',serif;font-size:34px;font-weight:300;color:var(--navy);margin-bottom:14px}
.division-body p{font-size:17px;font-weight:300;color:#333333;line-height:1.9;margin-bottom:24px}
.div-link{
  display:inline-flex;align-items:center;gap:8px;
  font-size:14.5px;font-weight:500;letter-spacing:.1em;text-transform:uppercase;
  color:var(--navy);border-bottom:1px solid rgba(12,30,60,.2);padding-bottom:3px;
  transition:color .2s,border-color .2s;
}
.div-link:hover{color:var(--gold);border-color:var(--gold)}

/* why choose */
.why{background:var(--navy);padding:64px 52px}
.why-grid{display:grid;grid-template-columns:1fr 1fr;gap:2px;background:rgba(255,255,255,.05);margin-top:52px}
.why-card{
  background:var(--navy);padding:44px 40px;
  border:1px solid rgba(255,255,255,.05);
  position:relative;overflow:hidden;
}
.why-card::before{
  content:'';position:absolute;top:0;left:0;right:0;
  height:2px;background:transparent;transition:background .3s;
}
.why-card:hover::before{background:var(--gold)}
.why-icon{
  width:40px;height:40px;margin-bottom:22px;
  display:flex;align-items:center;justify-content:center;
}
.why-icon svg{width:24px;height:24px;fill:none;stroke:var(--gold);stroke-width:1.5}
.why-card h4{font-family:'Cormorant Garamond',serif;font-size:22px;font-weight:400;color:#fff;margin-bottom:12px}
.why-card p{font-size:16px;font-weight:300;color:rgba(255,255,255,.92);line-height:1.9}

/* ─── UK PAGE ───────────────────────────────────── */
/* =============================================
   EDEMORA — UK PAGE UPDATED CSS
   Matches design mockup exactly
   ============================================= */

/* ── Hero pills & scroll hint ── */
.uk-hero{
  padding-top:64px;
  background:var(--navy);
  position:relative;overflow:hidden;
  min-height:72vh;display:flex;align-items:flex-end;
}
.uk-hero-bg{
  position:absolute;inset:0;
  background:radial-gradient(ellipse 80% 60% at 30% 60%, rgba(28,61,110,.5) 0%, transparent 70%);
}
.uk-hero-watermark{
  position:absolute;right:-30px;bottom:-40px;
  font-family:'Cormorant Garamond',serif;
  font-size:260px;font-weight:300;letter-spacing:-.02em;
  color:rgba(255,255,255,.025);line-height:1;
  user-select:none;pointer-events:none;
}
.uk-hero-inner{
  position:relative;z-index:2;
  padding:60px 52px 90px;max-width:900px;
}
.uk-hero-inner .lbl{margin-bottom:16px}
.uk-hero-inner h1{font-family:'Cormorant Garamond',serif;font-size:58px;font-weight:300;color:#fff;line-height:1.08;margin-bottom:22px}
.uk-hero-inner p{font-size:16px;font-weight:300;color:rgba(255,255,255,.95);line-height:1.9;max-width:640px;margin-bottom:36px}
.hero-pills{display:flex;gap:8px;flex-wrap:wrap;margin-bottom:36px}
.pill{font-size:14px;font-weight:400;color:rgba(255,255,255,.92);border:1px solid rgba(255,255,255,.1);padding:5px 14px;letter-spacing:.04em}


/* ── Tab nav (sticky below nav) ── */
.uk-tabs-section { background: var(--white); }

.uk-tab-nav {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  background: #111;
  border-bottom: 1px solid rgba(201,168,76,.15);
  position: sticky;
  top: 70px;
  z-index: 50;
}
.uk-tab-nav::-webkit-scrollbar { display: none; }

.uk-tab-btn {
  flex: 1;              /* replaces flex: 0 0 auto */
  /* remove: width: 160px; */
  padding: 16px 10px 14px;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  color: #7a7468;
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transition: color .2s, border-color .2s, background .2s;
}
.uk-tab-btn:hover { color: #b8b2a8; background: rgba(201,168,76,.04); }
.uk-tab-btn.active { color: #c9a84c; border-bottom: 2px solid #c9a84c; background: rgba(201,168,76,.07); }
.uk-tab-icon { width: 20px; height: 20px; stroke: currentColor; flex-shrink: 0; }
.uk-tab-btn:hover { color: #b8b2a8; background: rgba(201,168,76,.04); }
.uk-tab-btn.active { color: #c9a84c; border-bottom: 2px solid #c9a84c; background: rgba(201,168,76,.07); }
.uk-tab-icon { width: 20px; height: 20px; stroke: currentColor; flex-shrink: 0; }

.uk-tab-panel { display: none; }
.uk-tab-panel.active { display: block; animation: ukFadeUp .3s ease both; }
@keyframes ukFadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─────────────────────────────────────────────
   TAB 1 — ABOUT (two-column: video | text)
   ───────────────────────────────────────────── */
.ukt-about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  background: #111;
  min-height: 420px;
}
.ukt-about-left {
  padding: 52px;
  background: #111;
  display: flex;
  align-items: stretch;
}
.ukt-about-left .vsl-player {
  position: relative;
  width: 100%;
  background: #000;
  border: 1px solid rgba(184,151,58,.2);
  overflow: hidden;
}
.ukt-about-left .vsl-player video {
  width: 100%;
  display: block;
  max-height: 360px;
  object-fit: contain;
  background: #000;
}
.vsl-overlay-label {
  position: absolute;
  top: 20px;
  left: 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 300;
  color: #fff;
  pointer-events: none;
  text-shadow: 0 2px 8px rgba(0,0,0,.5);
}
.ukt-about-right {
  padding: 52px 48px;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ukt-about-intro {
  font-size: 17px;
  font-weight: 300;
  color: #333;
  line-height: 1.9;
  margin-bottom: 28px;
}
.ukt-about-list { display: flex; flex-direction: column; gap: 0; margin-bottom: 28px; }
.ukt-li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--bdr-light);
}
.ukt-li:last-child { border-bottom: none; }
.ukt-dot {
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 8px;
}
.ukt-li p { font-size: 16px; font-weight: 300; color: #333; line-height: 1.75; margin: 0; }
.ukt-disclaimer {
  font-size: 12px;
  font-style: italic;
  color: var(--muted);
  line-height: 1.6;
}

/* ─────────────────────────────────────────────
   TAB 2 — WHO WE WORK WITH
   ───────────────────────────────────────────── */
.ukt-who-wrap {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 0;
  padding: 64px 52px;
  background: var(--white);
  align-items: start;
}
.ukt-who-left { padding-right: 48px; }
.ukt-who-sub {
  font-size: 17px; font-weight: 300; color: #555; line-height: 1.85; margin-top: 12px;
}
.ukt-who-cards { display: flex; flex-direction: column; gap: 24px; }
.ukt-who-card {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: var(--off);
  padding: 32px 28px;
  border-top: 2px solid transparent;
  transition: border-color .25s, transform .25s;
}
.ukt-who-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.ukt-who-icon {
  width: 52px; height: 52px;
  background: var(--navy);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.ukt-who-icon svg { width: 22px; height: 22px; stroke: var(--gold); }
.ukt-who-badge {
  font-size: 11px; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 8px; display: block;
}
.ukt-who-card p { font-size: 15.5px; font-weight: 300; color: #333; line-height: 1.85; margin: 0; }

/* ─────────────────────────────────────────────
   TAB 3 — OPPORTUNITY TYPES
   ───────────────────────────────────────────── */
.ukt-opp-wrap {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 0;
  background: var(--navy);
  padding: 64px 52px;
  align-items: start;
}
.ukt-opp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,.05);
}
.ukt-opp-item {
  background: var(--navy);
  padding: 32px 24px;
  border: 1px solid rgba(255,255,255,.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  transition: background .2s;
}
.ukt-opp-item:hover { background: rgba(255,255,255,.04); }
.ukt-opp-icon {
  width: 48px; height: 48px;
  background: rgba(184,151,58,.1);
  border: 1px solid rgba(184,151,58,.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ukt-opp-icon svg { width: 20px; height: 20px; stroke: var(--gold2); }
.ukt-opp-item p { font-size: 14px; font-weight: 300; color: rgba(255,255,255,.85); line-height: 1.55; margin: 0; }

/* ─────────────────────────────────────────────
   TAB 4 — INVESTMENT APPROACH
   ───────────────────────────────────────────── */
.ukt-invest-wrap {
  padding: 64px 52px;
  background: var(--off);
}
.ukt-invest-top { margin-bottom: 48px; }
.ukt-invest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ukt-invest-card {
  background: var(--white);
  padding: 40px 32px;
  border-top: 2px solid transparent;
  transition: border-color .25s, transform .25s;
}
.ukt-invest-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.ukt-invest-icon {
  width: 44px; height: 44px;
  background: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.ukt-invest-icon svg { width: 20px; height: 20px; stroke: var(--gold); }
.ukt-invest-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 400; color: var(--navy);
  margin-bottom: 12px; line-height: 1.2;
}
.ukt-invest-card p { font-size: 15.5px; font-weight: 300; color: #333; line-height: 1.9; margin: 0; }

/* ─────────────────────────────────────────────
   TAB 5 — DIRECT ENGAGEMENT
   ───────────────────────────────────────────── */
.ukt-direct-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--navy);
  min-height: 400px;
}
.ukt-direct-left {
  padding: 64px 52px;
  border-right: 1px solid rgba(255,255,255,.06);
}
.ukt-direct-left h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px; font-weight: 300; color: #fff;
  margin-bottom: 14px; line-height: 1.15;
}
.ukt-direct-left > p {
  font-size: 16px; font-weight: 300; color: rgba(255,255,255,.75);
  line-height: 1.9; margin-bottom: 32px;
}
.ukt-direct-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ukt-direct-feat {
  display: flex; align-items: flex-start; gap: 12px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  padding: 18px 16px;
}
.ukt-direct-feat-icon {
  width: 32px; height: 32px;
  background: rgba(184,151,58,.12);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.ukt-direct-feat-icon svg { width: 14px; height: 14px; stroke: var(--gold2); }
.ukt-direct-feat p { font-size: 13.5px; font-weight: 300; color: rgba(255,255,255,.75); line-height: 1.6; margin: 0; }

.ukt-direct-right { padding: 64px 52px; }
.ukt-direct-right p {
  font-size: 16px; font-weight: 300; color: rgba(255,255,255,.75);
  line-height: 1.9; margin-bottom: 16px;
}
.ukt-direct-email { margin-top: 32px; }
.ukt-direct-email a {
  font-size: 17px; font-weight: 400; color: var(--gold2);
  border-bottom: 1px solid rgba(184,151,58,.3); padding-bottom: 3px;
  transition: color .2s, border-color .2s;
}
.ukt-direct-email a:hover { color: var(--gold3); border-color: var(--gold3); }

/* ─────────────────────────────────────────────
   MANDATE FORM SECTION
   ───────────────────────────────────────────── */
/* mandate form section */
.mandate-sec{
  background:var(--cream);padding:60px 52px;
  display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:center;
}
.mandate-left h2{font-family:'Cormorant Garamond',serif;font-size:40px;font-weight:300;color:var(--navy);margin-bottom:14px;line-height:1.15}
.mandate-left p{font-size:17px;font-weight:300;color:#333333;line-height:1.9;margin-bottom:10px}

.mandate-right h3{font-family:'Cormorant Garamond',serif;font-size:26px;font-weight:400;color:var(--navy);margin-bottom:8px}
.mandate-right .sub{font-size:16px;font-weight:300;color:#333333;margin-bottom:28px;line-height:1.95}
.f-field{display:flex;flex-direction:column;gap:5px;margin-bottom:14px}
.f-field label{font-size:13px;font-weight:500;letter-spacing:.1em;text-transform:uppercase;color:var(--navy);opacity:.5}
.f-field input,.f-field select,.f-field textarea{
  border:1px solid var(--cream3);padding:10px 14px;
  font-size:16px;font-weight:300;font-family:'Jost',sans-serif;
  color:var(--dark);background:var(--cream);outline:none;
  border-radius:0;-webkit-appearance:none;
  transition:border-color .2s;
}
.mandate-sec {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  grid-template-rows: auto 1fr;
  align-items: start;
  background: var(--cream);
}
.uk-mandate-top {
  grid-column: 1 / -1;
  text-align: center;
  padding: 64px 52px 48px;
  border-bottom: 1px solid rgba(0,0,0,.07);
  background: var(--cream2);
}
.uk-mandate-sub {
  font-size: 17px;
  font-weight: 300;
  color: #555;
  line-height: 1.85;
  max-width: 520px;
  margin: 0 auto 24px;
}
.uk-mandate-scroll-btn {
  margin-bottom: 14px;
}
.uk-mandate-or {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  margin-top: 5px;
}
/* ─── DUBAI PAGE ─────────────────────────────────── */
.dubai-hero{
  padding-top:64px;
  background:linear-gradient(160deg,#0c1e3c 0%,#0f2235 50%,#0c1e3c 100%);
  position:relative;overflow:hidden;
  min-height:72vh;display:flex;align-items:flex-end;
}
.dubai-hero-bg{
  position:absolute;inset:0;
  background:radial-gradient(ellipse 70% 80% at 60% 40%, rgba(15,45,55,.7) 0%, transparent 70%);
}
.dubai-hero-watermark{
  position:absolute;right:-20px;bottom:-60px;
  font-family:'Cormorant Garamond',serif;
  font-size:200px;font-weight:300;letter-spacing:.02em;
  color:rgba(255,255,255,.02);line-height:1;
  user-select:none;pointer-events:none;
}
.dubai-hero-inner{position:relative;z-index:2;padding:60px 52px 90px;max-width:900px}

/* investor form */
.inv-form-sec{
  background:var(--cream);padding:60px 52px;
  display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:start;
}
.inv-form-left h2{font-family:'Cormorant Garamond',serif;font-size:40px;font-weight:300;color:var(--navy);margin-bottom:14px;line-height:1.15}
.inv-form-left .lbl{margin-bottom:12px}
.inv-form-left p{font-size:17px;font-weight:300;color:#333333;line-height:1.9}

/* what dubai does */
.dubai-what{padding:64px 52px;background:var(--white)}
.dubai-what-grid{display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:start;margin-top:48px}
.dubai-bullets{display:flex;flex-direction:column;gap:0;margin-top:4px}
.dubai-bullet{padding:18px 0;border-bottom:1px solid var(--bdr-light);display:flex;align-items:flex-start;gap:14px}
.dubai-bullet:last-child{border-bottom:none}
.db-dot{width:5px;height:5px;background:var(--gold);border-radius:50%;flex-shrink:0;margin-top:7px}
.dubai-bullet p{font-size:17px;font-weight:300;color:#333333;line-height:1.95}
.dubai-note{font-size:15.5px;font-weight:300;color:#333333;font-style:italic;margin-top:20px;padding-top:20px;border-top:1px solid var(--bdr-light)}
/* ── Dubai image break ── */
.dubai-img-break {
  position: relative;
  height: 430px;
  overflow: hidden;
}

.dubai-img-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}


.dubai-img-break-text {
  position: absolute;
  bottom: 52px;
  left: 52px;
  z-index: 2;
}

.dubai-img-break-text p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 300;
  color: #fff;
  max-width: 480px;
  line-height: 1.4;
  margin-top: 10px;
}

/* how decisions */
.decisions-sec{padding:64px 52px;background:var(--navy)}
.decisions-grid{display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:start;margin-top:48px}
.dec-card{padding:36px 32px;background:rgba(255,255,255,.03);border:1px solid rgba(255,255,255,.06)}
.dec-card h4{font-family:'Cormorant Garamond',serif;font-size:22px;font-weight:400;color:#fff;margin-bottom:12px}
.dec-card p{font-size:16px;font-weight:300;color:rgba(255,255,255,.92);line-height:1.9}

/* property types */
.prop-types-sec{padding:64px 52px;background:var(--cream)}
.pt-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2px;background:var(--cream3);margin-top:48px}
.pt-card{background:var(--white);padding:36px 28px}
.pt-card h4{font-family:'Cormorant Garamond',serif;font-size:19px;font-weight:400;color:var(--navy);margin-bottom:10px}
.pt-card p{font-size:16px;font-weight:300;color:#333333;line-height:1.955}

/* financial governance */
.gov-sec{padding:60px 52px;background:var(--off)}
.gov-grid{display:grid;grid-template-columns:1fr 1fr 1fr 1fr;gap:24px;margin-top:48px}
.gov-card{background:var(--white);padding:32px 24px;border-top:2px solid var(--gold)}
.gov-card h4{font-size:17px;font-weight:400;color:var(--navy);margin-bottom:8px}
.gov-card p{font-size:16px;font-weight:300;color:#333333;line-height:1.95}

/* ongoing */
.ongoing-sec{padding:60px 52px;background:var(--navy)}
.ongoing-grid{display:grid;grid-template-columns:1fr 1fr;gap:2px;background:rgba(255,255,255,.04);margin-top:48px}
.ong-card{background:var(--navy);padding:40px 34px;border:1px solid rgba(255,255,255,.05)}
.ong-card h4{font-family:'Cormorant Garamond',serif;font-size:21px;font-weight:400;color:#fff;margin-bottom:12px}
.ong-card p{font-size:16px;font-weight:300;color:rgba(255,255,255,.92);line-height:1.9}
.ong-card .ong-note{font-size:15px;color:rgba(255,255,255,.25);font-style:italic;margin-top:14px}

/* ─── ABOUT PAGE ─────────────────────────────────── */
.about-hero{
  padding-top:64px;
  background:var(--cream);
  padding-bottom:0;
  display:grid;grid-template-columns:1fr 1fr;
  min-height:80vh;
}
.ah-left{
  padding:100px 52px 80px;
  display:flex;flex-direction:column;justify-content:center;
}
.ah-left h1{font-family:'Cormorant Garamond',serif;font-size:58px;font-weight:300;color:var(--navy);line-height:1.08;margin-bottom:20px}
.ah-left p{font-size:16px;font-weight:300;color:#333333;line-height:1.9;max-width:480px;margin-bottom:28px}
.ah-right{
  background:var(--navy);
  display:flex;align-items:center;justify-content:center;
  position:relative;overflow:hidden;padding:60px;
}
.ah-right::before{content:'';position:absolute;width:350px;height:350px;border-radius:50%;border:1px solid rgba(184,151,58,.08);top:50%;left:50%;transform:translate(-50%,-50%)}
.ah-right::after{content:'';position:absolute;width:220px;height:220px;border-radius:50%;border:1px solid rgba(184,151,58,.05);top:50%;left:50%;transform:translate(-50%,-50%)}
.ah-center{position:relative;z-index:2;text-align:center}
.ah-center-name{font-family:'Cormorant Garamond',serif;font-size:28px;font-weight:300;color:#fff;margin-bottom:6px}
.ah-center-role{font-size:13px;font-weight:500;letter-spacing:.14em;text-transform:uppercase;color:var(--gold);margin-bottom:24px}
.ah-center-logo{font-family:'Cormorant Garamond',serif;font-size:80px;font-weight:300;color:rgba(255,255,255,.06);letter-spacing:.14em;text-transform:uppercase;line-height:1;margin-top:20px}

/* purpose */
.purpose-sec{padding:64px 52px;background:var(--white)}
.purpose-grid{display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:start;margin-top:48px}
.purpose-text p{font-size:16px;font-weight:300;color:#333333;line-height:1.9;margin-bottom:14px}
.purpose-text p em{color:var(--navy);font-style:italic}
.purpose-approach{display:flex;flex-direction:column;gap:0}
.approach-item{padding:20px 0;border-bottom:1px solid var(--bdr-light)}
.approach-item:last-child{border-bottom:none}
.approach-item h4{font-family:'Cormorant Garamond',serif;font-size:18px;font-weight:400;color:var(--navy);margin-bottom:7px}
.approach-item p{font-size:16px;font-weight:300;color:#333333;line-height:1.95}

/* founder */
.founder-sec{padding:64px 52px;background:var(--cream)}
.founder-grid{display:grid;grid-template-columns:380px 1fr;gap:72px;align-items:start;margin-top:52px}
.founder-img{background:var(--navy);aspect-ratio:3/4;overflow:hidden;position:relative}
.founder-img img{width:100%;height:100%;object-fit:cover;object-position:center top;display:block}
.founder-img-caption{
  position:absolute;bottom:0;left:0;right:0;
  background:linear-gradient(transparent,rgba(8,18,36,.88));
  padding:40px 24px 24px;
}
.founder-img-caption h3{font-family:'Cormorant Garamond',serif;font-size:20px;font-weight:300;color:#fff;margin-bottom:4px}
.founder-img-caption p{font-size:13px;font-weight:400;letter-spacing:.12em;text-transform:uppercase;color:var(--gold)}

/* page hero images */
.page-hero-img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;z-index:0}
.page-hero-img-overlay{position:absolute;inset:0;background:rgba(8,18,36,.75);z-index:1}
.uk-hero,.dubai-hero,.sell-hero{position:relative}
.uk-hero-bg{position:absolute;inset:0;z-index:2;background:radial-gradient(ellipse 80% 60% at 30% 60%,rgba(28,61,110,.4) 0%,transparent 70%)}
.dubai-hero-bg{position:absolute;inset:0;z-index:2;background:radial-gradient(ellipse 70% 80% at 60% 40%,rgba(15,45,55,.4) 0%,transparent 70%)}
.sell-hero-bg{position:absolute;inset:0;z-index:2;background:rgba(8,18,36,.2)}
.uk-hero-watermark,.dubai-hero-watermark{z-index:3}
.uk-hero-inner,.dubai-hero-inner,.sell-hero-inner{z-index:4;position:relative}

/* division card image */
.division-img{position:relative;height:260px;overflow:hidden}
.division-img-overlay{position:absolute;inset:0;background:rgba(8,18,36,.28);transition:background .35s}
.division:hover .division-img-overlay{background:rgba(8,18,36,.1)}

/* why-uk image */
.why-img{min-height:420px;position:relative;overflow:hidden;display:flex;align-items:center;justify-content:center}
.why-img img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;opacity:.35}
.why-img-inner{position:relative;z-index:2;text-align:center}

/* image strip */
.img-strip{display:grid;grid-template-columns:1fr 1fr 1fr;gap:2px;margin-top:0}
.img-strip-item{height:220px;overflow:hidden;position:relative}
.img-strip-item img{width:100%;height:100%;object-fit:cover;transition:transform .5s ease}
.img-strip-item:hover img{transform:scale(1.05)}
.img-strip-label{position:absolute;bottom:0;left:0;right:0;background:linear-gradient(transparent,rgba(8,18,36,.75));padding:28px 16px 14px;font-size:13px;font-weight:500;letter-spacing:.1em;text-transform:uppercase;color:rgba(255,255,255,.88)}
.founder-text p{font-size:16px;font-weight:300;color:#333333;line-height:1.9;margin-bottom:14px}
.founder-text p em{color:var(--navy);font-style:italic}
.founder-note{
  margin-top:24px;padding:20px 24px;
  background:var(--white);border-left:2px solid var(--gold);
  font-size:16px;font-weight:300;color:#333333;font-style:italic;line-height:1.95;
}

/* working structure + markets */
.struct-sec{padding:60px 52px;background:var(--navy)}
.struct-grid{display:grid;grid-template-columns:1fr 1fr;gap:2px;background:rgba(255,255,255,.05);margin-top:48px}
.struct-card{background:var(--navy);padding:44px 36px;border:1px solid rgba(255,255,255,.05)}
.struct-card h3{font-family:'Cormorant Garamond',serif;font-size:28px;font-weight:300;color:#fff;margin-bottom:16px}
.struct-card p{font-size:16px;font-weight:300;color:rgba(255,255,255,.92);line-height:1.95;margin-bottom:12px}
.struct-note{font-size:15px;color:rgba(255,255,255,.25);font-style:italic;margin-top:12px;line-height:1.6}

/* approach cards */
.appr-sec{padding:64px 52px;background:var(--off)}
.appr-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:24px;margin-top:48px}
.appr-card{background:var(--white);padding:40px 32px;border-top:2px solid transparent;transition:border-color .25s}
.appr-card:hover{border-color:var(--gold)}
.appr-num{font-family:'Cormorant Garamond',serif;font-size:48px;font-weight:300;color:var(--cream3);line-height:1;margin-bottom:14px}
.appr-card h4{font-family:'Cormorant Garamond',serif;font-size:20px;font-weight:400;color:var(--navy);margin-bottom:10px}
.appr-card p{font-size:16px;font-weight:300;color:#333333;line-height:1.955}

/* ─── SELL YOUR PROPERTY PAGE ───────────────────── */
.sell-hero{
  padding-top:64px;
  background:var(--navy);
  position:relative;overflow:hidden;
  min-height:72vh;display:flex;align-items:flex-end;
}
.sell-hero-bg{
  position:absolute;inset:0;
  background:radial-gradient(ellipse 70% 60% at 30% 50%, rgba(28,61,110,.5) 0%, transparent 70%);
}
.sell-hero::before{content:'';position:absolute;top:-100px;right:-80px;width:500px;height:500px;border-radius:50%;border:1px solid rgba(184,151,58,.07)}
.sell-hero::after{content:'';position:absolute;bottom:-120px;right:100px;width:320px;height:320px;border-radius:50%;border:1px solid rgba(184,151,58,.05)}
.sell-hero-inner{position:relative;z-index:2;padding:60px 52px 90px;max-width:960px}
.sell-hero-inner h1{font-family:'Cormorant Garamond',serif;font-size:60px;font-weight:300;color:#fff;line-height:1.08;margin-bottom:22px}
.sell-hero-inner h1 em{color:var(--gold3);font-style:italic}
.sell-hero-inner p{font-size:16px;font-weight:300;color:rgba(255,255,255,.95);max-width:620px;line-height:1.9;margin-bottom:44px}
.sell-stats{display:flex;gap:48px}
.ss{border-left:1px solid rgba(184,151,58,.4);padding-left:20px}
.ss-num{font-family:'Cormorant Garamond',serif;font-size:32px;font-weight:300;color:#fff;line-height:1;margin-bottom:5px}
.ss-lbl{font-size:14px;font-weight:300;color:rgba(255,255,255,.88);letter-spacing:.04em}

/* initial criteria */
.criteria-sec{padding:64px 52px;background:var(--off)}
.criteria-intro{max-width:680px;margin-bottom:56px}
.criteria-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:2px;background:var(--bdr-light)}
.crit-card{background:var(--white);padding:36px 28px}
.crit-num{font-family:'Cormorant Garamond',serif;font-size:44px;font-weight:300;color:var(--cream3);line-height:1;margin-bottom:14px}
.crit-card h4{font-family:'Cormorant Garamond',serif;font-size:18px;font-weight:400;color:var(--navy);margin-bottom:10px}
.crit-card p{font-size:16px;font-weight:300;color:#333333;line-height:1.955}

/* what we look for */
.look-sec{
  padding:64px 52px;background:var(--navy);
}
.look-grid{display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:start;margin-top:52px}
.look-left p{font-size:16px;font-weight:300;color:rgba(255,255,255,.95);line-height:1.9;margin-bottom:14px}
.look-left p strong{color:rgba(255,255,255,.95);font-weight:400}
.prop-types-grid{display:flex;flex-direction:column;gap:2px;margin-top:0}
.pt-item{
  background:rgba(255,255,255,.03);border:1px solid rgba(255,255,255,.05);
  padding:22px 24px;display:flex;align-items:flex-start;gap:16px;
  transition:background .2s; 
}
.pt-item:hover{background:rgba(255,255,255,.05)}
.pt-item-icon{font-size:20px;flex-shrink:0;margin-top:1px; opacity:0.7;  color:var(--gold) 
  !important; /* GOLD */}
.pt-item-text h5{font-family:'Cormorant Garamond',serif;font-size:16px;font-weight:400;color:#fff;margin-bottom:4px}
.pt-item-text p{font-size:15.5px;font-weight:300;color:rgba(255,255,255,.38);line-height:1.65}



/* due diligence */
.dd-sec{padding:64px 52px;background:var(--cream)}
.dd-intro{max-width:680px;margin-bottom:56px}
.dd-intro p{font-size:17px;font-weight:300;color:#333333;line-height:1.9;margin-top:12px}
.dd-stages{display:grid;grid-template-columns:repeat(3,1fr);gap:2px;background:var(--cream3)}
.dd-stage{background:var(--white);padding:40px 32px;position:relative}
.dd-stage-num{font-family:'Cormorant Garamond',serif;font-size:52px;font-weight:300;color:var(--cream3);line-height:1;margin-bottom:16px}
.dd-stage h4{font-family:'Cormorant Garamond',serif;font-size:21px;font-weight:400;color:var(--navy);margin-bottom:12px}
.dd-stage p{font-size:16px;font-weight:300;color:#333333;line-height:1.955}
.dd-stage ul{list-style:none;margin-top:14px;display:flex;flex-direction:column;gap:7px}
.dd-stage ul li{font-size:16px;font-weight:300;color:#333333;padding-left:14px;position:relative;line-height:1.6}
.dd-stage ul li::before{content:'';position:absolute;left:0;top:8px;width:5px;height:1px;background:var(--gold)}

/* margin principles (sell page) */
.margin-sec{padding:64px 52px;background:var(--white)}
.margin-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2px;background:var(--bdr-light);margin-top:48px}
.margin-card{background:var(--white);padding:40px 32px}
.margin-num{font-family:'Cormorant Garamond',serif;font-size:52px;font-weight:300;color:var(--cream3);line-height:1;margin-bottom:14px}
.margin-card h4{font-family:'Cormorant Garamond',serif;font-size:21px;font-weight:400;color:var(--navy);margin-bottom:12px}
.margin-card p{font-size:16px;font-weight:300;color:#333333;line-height:1.955;margin-bottom:10px}

/* submit CTA */
.submit-sec{
  padding:64px 52px;background:var(--cream);
  display:grid;grid-template-columns:1fr 1.2fr;gap:72px;align-items:start;
}
.submit-left .lbl{margin-bottom:12px}
.submit-left h2{font-family:'Cormorant Garamond',serif;font-size:42px;font-weight:300;color:var(--navy);margin-bottom:16px;line-height:1.15}
.submit-left p{font-size:17px;font-weight:300;color:#333333;line-height:1.9;margin-bottom:32px}
.trust-list{display:flex;flex-direction:column;gap:18px}
.trust-it{display:flex;align-items:flex-start;gap:14px}
.trust-icon{width:32px;height:32px;background:var(--navy);border-radius:50%;flex-shrink:0;display:flex;align-items:center;justify-content:center}
.trust-icon svg{width:13px;height:13px;stroke:#fff;fill:none;stroke-width:1.8}
.trust-it-text h5{font-size:16px;font-weight:500;color:var(--navy);margin-bottom:2px}
.trust-it-text p{font-size:15.5px;font-weight:300;color:#333333}

.submit-form{background:var(--white);padding:44px;border-top:2px solid var(--gold)}
.submit-form h3{font-family:'Cormorant Garamond',serif;font-size:26px;font-weight:400;color:var(--navy);margin-bottom:6px}
.submit-form .sub{font-size:16px;font-weight:300;color:#333333;margin-bottom:28px}

/* ─── FOOTER ─────────────────────────────────────── */
footer{
  background:#060e1c;
  padding:52px 52px 28px;
}
.footer-top{
  display:grid;grid-template-columns:1.6fr 1fr 1fr 1.4fr;
  gap:40px;margin-bottom:44px;
}
.footer-brand .logo{
  font-family:'Cormorant Garamond',serif;
  font-size:20px;font-weight:400;letter-spacing:.14em;
  text-transform:uppercase;color:rgba(255,255,255,.7);
  display:block;margin-bottom:16px;
}
.footer-brand p{font-size:16px;font-weight:300;color:rgba(255,255,255,.92);line-height:1.9;max-width:260px}
.footer-brand .addr{margin-top:20px;font-size:15.5px;font-weight:300;color:rgba(255,255,255,.88);line-height:1.9}
.footer-col h5{font-size:13px;font-weight:500;letter-spacing:.14em;text-transform:uppercase;color:rgba(255,255,255,.7);margin-bottom:18px}
.footer-col ul{list-style:none;display:flex;flex-direction:column;gap:10px}
.footer-col ul li{font-size:14.5px;font-weight:300;color:rgba(255,255,255,.92);cursor:pointer;transition:color .2s;letter-spacing:.02em}
.footer-col ul li:hover{color:rgba(255,255,255,.95)}
.footer-divider{height:1px;background:rgba(255,255,255,.05);margin-bottom:24px}
.footer-bottom{display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:12px}
.footer-bottom p{font-size:15px;font-weight:400;color:rgba(255,255,255,.88)}
.footer-legal{display:flex;gap:20px}
.footer-legal a{font-size:15px;font-weight:400;color:rgba(255,255,255,.88);cursor:pointer;transition:color .2s}
.footer-legal a:hover{color:rgba(255,255,255,.95)}
/* ─── ACCREDITATION BADGES ───────────────────────── */
.accred-strip{
  display:flex;align-items:center;gap:16px;
  margin-top:24px;padding-top:20px;
  border-top:1px solid rgba(255,255,255,.08);
  flex-wrap:wrap;
}
.accred-badge{
  display:flex;align-items:center;gap:10px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  padding:10px 14px;
  transition:border-color .2s;
}
.accred-badge img{
  height:32px;width:auto;object-fit:contain;display:block;
  border-radius:2px;padding:2px;background:#fff;
  flex-shrink:0;
}
.accred-badge:hover{border-color:rgba(184,151,58,.35)}
.accred-icon{
  width:36px;height:36px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;font-weight:700;font-size:11px;letter-spacing:.02em;
}
.accred-badge img{border-radius:2px;background:#fff}
.accred-ico .accred-icon{background:#1d70b8;color:#fff}
.accred-prs .accred-icon{background:#00408a;color:#fff}
.accred-text-wrap{display:flex;flex-direction:column}
.accred-name{font-size:12px;font-weight:500;color:rgba(255,255,255,.9);letter-spacing:.02em;line-height:1.2}
.accred-sub{font-size:10px;font-weight:300;color:rgba(255,255,255,.5);letter-spacing:.04em;margin-top:2px}

/* ─── SOCIAL ICONS ───────────────────────────────── */
.footer-socials{display:flex;gap:10px;margin-top:20px}
.social-icon{
  width:36px;height:36px;border-radius:50%;
  border:1px solid rgba(255,255,255,.12);
  display:flex;align-items:center;justify-content:center;
  transition:border-color .2s,background .2s;
  cursor:pointer;text-decoration:none;
}
.social-icon:hover{border-color:var(--gold);background:rgba(184,151,58,.1)}
.social-icon svg{width:15px;height:15px;fill:rgba(255,255,255,.4);transition:fill .2s}
.social-icon:hover svg{fill:var(--gold2)}

/* ─── LEGAL MODAL ────────────────────────────────── */
.modal-backdrop{
  display:none;position:fixed;inset:0;z-index:999;
  background:rgba(4,10,22,.85);
  backdrop-filter:blur(8px);
  align-items:center;justify-content:center;padding:32px;
}
.modal-backdrop.open{display:flex}
.modal-box{
  background:var(--white);max-width:760px;width:100%;
  max-height:88vh;display:flex;flex-direction:column;
  border-top:3px solid var(--gold);
  animation:fadeUp .35s ease both;
}
.modal-header{
  display:flex;align-items:center;justify-content:space-between;
  padding:24px 36px;border-bottom:1px solid var(--bdr-light);
  flex-shrink:0;
}
.modal-header h3{font-family:'Cormorant Garamond',serif;font-size:24px;font-weight:400;color:var(--navy)}
.modal-close{
  width:36px;height:36px;border:1px solid var(--bdr);
  background:transparent;display:flex;align-items:center;justify-content:center;
  cursor:pointer;font-size:18px;color:#333333;transition:all .2s;
}
.modal-close:hover{background:var(--navy);color:#fff;border-color:var(--navy)}
.modal-body{
  padding:32px 36px;overflow-y:auto;flex:1;
  font-size:17px;font-weight:300;color:#333333;line-height:1.95;
}
.modal-body h4{font-family:'Cormorant Garamond',serif;font-size:18px;font-weight:400;color:var(--navy);margin:24px 0 8px}
.modal-body h4:first-child{margin-top:0}
.modal-body p{margin-bottom:12px}
.modal-body ul{margin:8px 0 14px 18px;display:flex;flex-direction:column;gap:5px}
.modal-body ul li{font-size:16px}
.modal-footer-bar{
  padding:16px 36px;border-top:1px solid var(--bdr-light);
  font-size:14.5px;font-weight:300;color:#333333;
  flex-shrink:0;display:flex;justify-content:space-between;align-items:center;
}

/* ─── VSL VIDEO SECTION ──────────────────────────── */
.vsl-section{
  background:#000;
  padding:0;
  position:relative;
}
.vsl-inner{
  max-width:1100px;
  margin:0 auto;
  padding:72px 52px;
}
.vsl-label{
  font-size:13px;font-weight:500;letter-spacing:.18em;
  text-transform:uppercase;color:var(--gold);
  display:block;margin-bottom:16px;text-align:center;
}
.vsl-title{
  font-family:'Cormorant Garamond',serif;
  font-size:32px;font-weight:300;color:#fff;
  text-align:center;margin-bottom:40px;line-height:1.2;
}
.vsl-player{
  position:relative;
  width:100%;
  background:#0a0a0a;
  border:1px solid rgba(184,151,58,.2);
  overflow:hidden;
}
.vsl-player video{
  width:100%;
  display:block;
  max-height:510px;
  object-fit:contain;
  background:#000;
}
.vsl-player-controls{
  display:flex;align-items:center;
  gap:16px;padding:16px 20px;
  background:rgba(0,0,0,.9);
  border-top:1px solid rgba(184,151,58,.15);
}
.vsl-play-btn{
  width:40px;height:40px;border-radius:50%;
  background:var(--gold);border:none;
  display:flex;align-items:center;justify-content:center;
  cursor:pointer;flex-shrink:0;transition:background .2s;
}
.vsl-play-btn:hover{background:var(--gold2)}
.vsl-play-btn svg{width:14px;height:14px;fill:var(--navy);margin-left:2px}
.vsl-progress-wrap{
  flex:1;height:3px;background:rgba(255,255,255,.1);
  border-radius:2px;cursor:pointer;position:relative;
}
.vsl-progress-bar{
  height:100%;background:var(--gold);
  border-radius:2px;width:0%;
  transition:width .1s linear;
  pointer-events:none;
}
.vsl-time{
  font-size:14.5px;font-weight:300;color:rgba(255,255,255,.92);
  white-space:nowrap;letter-spacing:.04em;
}
.vsl-mute-btn{
  width:32px;height:32px;background:transparent;border:none;
  cursor:pointer;display:flex;align-items:center;justify-content:center;
  opacity:.5;transition:opacity .2s;
}
.vsl-mute-btn:hover{opacity:1}
.vsl-mute-btn svg{width:16px;height:16px;fill:rgba(255,255,255,.8)}
.vsl-fullscreen-btn{
  width:32px;height:32px;background:transparent;border:none;
  cursor:pointer;display:flex;align-items:center;justify-content:center;
  opacity:.5;transition:opacity .2s;
}
.vsl-fullscreen-btn:hover{opacity:1}
.vsl-fullscreen-btn svg{width:15px;height:15px;fill:rgba(255,255,255,.8)}
.vsl-disclaimer{
  font-size:14.5px;font-weight:300;color:rgba(255,255,255,.25);
  text-align:center;margin-top:20px;font-style:italic;line-height:1.6;
}
/* Smooth reveal on scroll */
.reveal{opacity:0;transform:translateY(28px);transition:opacity .7s ease,transform .7s ease}
.reveal.visible{opacity:1;transform:translateY(0)}
.reveal-delay-1{transition-delay:.1s}
.reveal-delay-2{transition-delay:.2s}
.reveal-delay-3{transition-delay:.3s}

/* Nav scroll behaviour */
nav.scrolled{background:rgba(6,14,28,.99);border-bottom-color:rgba(184,151,58,.25)}

/* Gold underline hover on nav */
.nav-links a::after{
  content:'';display:block;height:1px;background:var(--gold);
  width:0;transition:width .25s ease;margin-top:2px;
}
.nav-links a:hover::after,.nav-links a.active::after{width:100%}

/* Card hover lift */
.why-card,.opp-card,.dt-card,.value-card,.team-card,.who-card{
  transition:transform .25s ease,box-shadow .25s ease;
}
.why-card:hover,.opp-card:hover,.value-card:hover,.who-card:hover{
  transform:translateY(-4px);
  box-shadow:0 12px 36px rgba(0,0,0,.18);
}

/* Button ripple */
.btn-gold,.btn-navy,.btn-outline-gold,.btn-outline-light,.f-submit,.nav-cta{
  position:relative;overflow:hidden;
}
.btn-gold::after,.btn-navy::after,.f-submit::after,.nav-cta::after{
  content:'';position:absolute;inset:0;
  background:rgba(255,255,255,.12);
  opacity:0;transition:opacity .2s;
}
.btn-gold:hover::after,.btn-navy:hover::after,.f-submit:hover::after,.nav-cta:hover::after{
  opacity:1;
}

/* Cursor removed */

/* Gold rule animate */
.gold-rule{
  width:0;height:1px;background:var(--gold);
  margin:20px 0;transition:width .8s ease;
}
.gold-rule.visible{width:40px}

/* Section label slide in */
.lbl{
  opacity:0;transform:translateX(-12px);
  transition:opacity .5s ease,transform .5s ease;
}
.lbl.visible{opacity:1;transform:translateX(0)}

/* ─── FOOTER EMAIL LABELS ────────────────────────── */
.footer-email-item{display:flex;flex-direction:column;gap:1px}
.footer-email-label{font-size:11px;font-weight:500;letter-spacing:.12em;text-transform:uppercase;color:rgba(255,255,255,.35)}
.footer-email-item a{font-size:15px;font-weight:300;color:rgba(255,255,255,.85);transition:color .2s}
.footer-email-item a:hover{color:var(--gold2)}

/* ─── COOKIE CONSENT BANNER ─────────────────────── */
.cookie-consent{
  position:fixed;bottom:0;left:0;right:0;z-index:1000;
  background:var(--navy);border-top:2px solid var(--gold);
  padding:20px 32px;display:flex;align-items:center;justify-content:space-between;
  box-shadow:0 -4px 20px rgba(0,0,0,.3);
  transform:translateY(100%);transition:transform .3s ease;
}
.cookie-consent.show{transform:translateY(0)}
.cookie-consent-text{
  flex:1;font-size:15px;font-weight:300;color:rgba(255,255,255,.9);
  line-height:1.6;max-width:800px;
}
.cookie-consent-text a{color:var(--gold2);text-decoration:underline}
.cookie-consent-btns{display:flex;gap:12px;flex-shrink:0}
.cookie-consent .btn-consent{
  font-size:14px;font-weight:500;letter-spacing:.05em;text-transform:uppercase;
  padding:10px 20px;border:none;border-radius:2px;cursor:pointer;
  transition:all .2s;
}
.btn-accept{background:var(--gold);color:var(--navy)}
.btn-accept:hover{background:var(--gold2)}
.btn-decline{background:transparent;color:rgba(255,255,255,.7);border:1px solid rgba(255,255,255,.3)}
.btn-decline:hover{background:rgba(255,255,255,.05);color:#fff;border-color:rgba(255,255,255,.5)}

/* ─── RESPONSIVE MEDIA QUERIES ──────────────────── */
/* Tablet & Large Mobile - 992px and below */
@media (max-width:992px){
  nav{padding:0 32px}
  .nav-logo{font-size:18px}
  .nav-links a{padding:0 14px;font-size:13px;border-right:none}
  .nav-links a:first-child{border-left:none}
  .nav-cta{padding:8px 16px;font-size:12px}
}

/* Small Tablet & Mobile - 768px and below */
@media (max-width:768px){
  nav{padding:0 20px;display:flex;align-items:center;justify-content:space-between}
  .nav-logo{font-size:16px;flex-shrink:0}
  .nav-links{display:none;position:absolute;top:70px;left:0;right:0;flex-direction:column;background:rgba(6,14,28,.98);backdrop-filter:blur(16px);border-bottom:1px solid rgba(184,151,58,.15);padding:0;margin:0;z-index:199}
  .nav-links a{padding:16px 20px;font-size:13px;height:auto;line-height:1.4;border:none;border-bottom:1px solid rgba(255,255,255,.06)}
  .nav-links a:first-child{border-bottom:1px solid rgba(255,255,255,.06)}
  .nav-links a:last-child{border-bottom:none}
  nav > a{display:none}
  .nav-toggle{display:flex;flex-shrink:0;margin-left:auto}
  .nav-cta{display:none}
  
  .sec{padding:52px 20px}
  .sec-sm{padding:40px 20px}
  .home-hero-inner{grid-template-columns:1fr;gap:40px;padding:40px 20px}
  .home-hero h1{font-size:48px}
  .home-hero-card{display:none}
  
  .mandate-sec{grid-template-columns:1fr;gap:40px;padding:40px 20px}
  .mandate-left h2{font-size:32px;margin-bottom:12px}
  .mandate-right{padding:32px 20px}
  
  .invest-form-sec{grid-template-columns:1fr;gap:40px;padding:40px 20px}
  .inv-form-left h2{font-size:32px;margin-bottom:12px}
  
  .uk-hero-inner{padding:40px 20px 60px}
  .uk-hero-inner h1{font-size:42px}
  .uk-img-break { height: 220px; margin-bottom:30px;}
     .ukt-about-grid { grid-template-columns: 1fr; }
  .ukt-about-left { padding: 32px 20px; }
  .ukt-about-right { padding: 36px 20px; }

  .ukt-who-wrap { grid-template-columns: 1fr; gap: 32px; padding: 40px 20px; }
  .ukt-who-left { padding-right: 0; }

  .ukt-opp-wrap { padding: 40px 20px; }
  .ukt-opp-grid { grid-template-columns: repeat(2, 1fr); }

  .ukt-invest-wrap { padding: 40px 20px; }
  .ukt-invest-grid { grid-template-columns: 1fr; }

  .ukt-direct-wrap { grid-template-columns: 1fr; }
  .ukt-direct-left { padding: 40px 20px; border-right: none; border-bottom: 1px solid rgba(255,255,255,.06); }
  .ukt-direct-right { padding: 40px 20px; }
  .ukt-direct-features { grid-template-columns: 1fr; }

  .uk-mandate-top { padding: 40px 20px 32px; }

  .uk-tab-nav { top: 70px; }
  .uk-tab-btn { min-width: 110px; font-size: 9px; padding: 14px 8px 12px; gap: 5px; }
  .uk-tab-icon { width: 18px; height: 18px; }
  
  .invest-form-sec{grid-template-columns:1fr;gap:40px;padding:40px 20px}
  .dubai-hero-inner{padding:40px 20px 60px}
  .dubai-hero-inner h1{font-size:42px}
  .dubai-what-grid{grid-template-columns:1fr;gap:40px}
  .decisions-grid{grid-template-columns:1fr;gap:40px}
  .dubai-img-break { height: 280px; }
  .dubai-img-break-text { left: 20px; bottom: 32px; }
  .dubai-img-break-text p { font-size: 22px; }


  
  .prop-types-grid{grid-template-columns:1fr}
  .pt-grid{grid-template-columns:1fr}
  .gov-grid{grid-template-columns:1fr 1fr}
  .ongoing-grid{grid-template-columns:1fr}
  
  .who-grid{grid-template-columns:1fr;gap:16px}
  .who-card{padding:32px 24px;background:var(--off)}
  
  .about-hero{grid-template-columns:1fr;min-height:auto}
  .ah-left{padding:60px 20px}
  .ah-left h1{font-size:42px}
  .ah-right{min-height:300px;padding:40px 20px}
  
  .purpose-grid{grid-template-columns:1fr;gap:40px}
  .founder-grid{grid-template-columns:1fr;gap:40px}
  .founder-img{max-width:100%}
  
  .struct-grid{grid-template-columns:1fr}
  .appr-grid{grid-template-columns:1fr}
  
  .sell-hero-inner{padding:40px 20px 60px}
  .sell-hero-inner h1{font-size:42px}
  .sell-stats{flex-direction:column;gap:24px}
  
  .criteria-grid{grid-template-columns:1fr 1fr}
  .dd-stages{grid-template-columns:1fr}
  .margin-grid{grid-template-columns:1fr}
  .submit-sec{grid-template-columns:1fr;gap:40px;padding:40px 20px}
  
  .footer-top{grid-template-columns:1fr 1fr;gap:24px}
  .img-strip{grid-template-columns:1fr 1fr}
}

/* Mobile - 640px and below */
@media (max-width:640px){
  html{font-size:14px}
  nav{height:56px;padding:0 16px;display:flex;align-items:center;justify-content:space-between;backdrop-filter:blur(8px)}
  .nav-logo{font-size:14px;flex-shrink:0}
  .nav-links{display:none;position:absolute;top:70px;left:0;right:0;flex-direction:column;background:rgba(6,14,28,.98);backdrop-filter:blur(16px);border-bottom:1px solid rgba(184,151,58,.15);padding:0;margin:0;z-index:199}
  .nav-links a{padding:12px 16px;font-size:13px;height:auto;line-height:1.4;border:none;border-bottom:1px solid rgba(255,255,255,.06)}
  nav > a{display:none}
  .nav-toggle{display:flex;flex-shrink:0;margin-left:auto}
  .nav-cta{display:none}
  
  .h1{font-size:48px}
  .h2{font-size:32px}
  .h3{font-size:22px}
  .body{font-size:15px}
  
  .sec{padding:40px 16px}
  .sec-sm{padding:32px 16px}
  
  .home-hero{padding-top:56px}
  .home-hero-inner{padding:32px 16px;grid-template-columns:1fr}
  .home-hero h1{font-size:38px;margin-bottom:16px}
  .home-hero-body{font-size:14px;margin-bottom:28px}
  .home-hero-btns{flex-wrap:wrap}
  
  .group-intro{padding:40px 16px}
  .group-intro h2{font-size:26px}
  
  .mandate-right{padding:32px 20px}
  .mandate-right h3{font-size:22px}
  
  .invest-form-sec{grid-template-columns:1fr;gap:32px;padding:40px 16px}
  .inv-form-left h2{font-size:32px;margin-bottom:10px}
  
  .what-grid{grid-template-columns:1fr;gap:32px}
  .why-grid{grid-template-columns:1fr}
  
  .uk-hero-inner{padding:32px 16px 40px}
  .uk-hero-inner h1{font-size:36px}
  .uk-hero-inner p{font-size:14px}
  
  .uk-img-break { height: 220px; margin-bottom:30px;}
  .uk-img-break-text p { font-size: 18px; }
  .hero-pills{gap:6px}
  .pill{padding:4px 10px;font-size:12px}
 .ukt-about-left { padding: 24px 16px; }
  .ukt-about-right { padding: 28px 16px; }
  .ukt-about-intro { font-size: 15px; }

  .ukt-who-wrap { padding: 32px 16px; }
  .ukt-who-card { flex-direction: column; gap: 16px; padding: 24px 20px; }

  .ukt-opp-wrap { padding: 32px 16px; }
  .ukt-opp-grid { grid-template-columns: 1fr; }

  .ukt-invest-wrap { padding: 32px 16px; }

  .ukt-direct-left, .ukt-direct-right { padding: 32px 16px; }
  .ukt-direct-left h2 { font-size: 28px; }

  .uk-mandate-top { padding: 32px 16px 24px; }
  .uk-mandate-sub { font-size: 16px; }

  .uk-tab-nav { top: 56px; }
  .uk-tab-btn {  flex: 0 0 auto;
    min-width: 80px;
    font-size: 8px;
    padding: 10px 5px 9px; }
  .uk-tab-icon { width: 18px; height: 18px; }

  .vsl-overlay-label { font-size: 16px; top: 12px; left: 12px; }

  
  .direct-sec{grid-template-columns:1fr;gap:32px;padding:32px 16px}
  .direct-left h2{font-size:32px}
  .direct-left p{font-size:14px;margin-bottom:8px}
  .direct-right h3{font-size:20px;margin-bottom:8px}
  .direct-right p{font-size:14px;margin-bottom:16px}
  
  .who-grid{grid-template-columns:1fr;gap:16px;background:var(--bdr-light)}
  .who-card{padding:32px 24px;background:var(--off)}
  .who-badge{font-size:12px;margin-bottom:16px}
  .who-card h3{font-size:22px;margin-bottom:10px}
  .who-card p{font-size:14px}
  
  .dubai-hero-inner{padding:32px 16px 40px}
  .dubai-hero-inner h1{font-size:36px}
  .dubai-what-grid{gap:32px}
  .decisions-grid{gap:32px}
  .dubai-img-break { height: 220px; }
  .dubai-img-break-text p { font-size: 18px; }
  
  .gov-grid{grid-template-columns:1fr}
  
  .about-hero{min-height:auto}
  .ah-left{padding:40px 16px}
  .ah-left h1{font-size:36px}
  .ah-right{min-height:250px;padding:40px 16px}
  
  .founder-img-caption{padding:32px 20px 16px}
  .founder-img-caption h3{font-size:18px}
  
  .sell-hero-inner{padding:32px 16px 40px}
  .sell-hero-inner h1{font-size:36px}
  .sell-hero-inner p{font-size:14px}
  .ss{border-left:none;padding-left:0;margin-left:0}
  .ss-num{font-size:28px}
  
  .criteria-grid{grid-template-columns:1fr;gap:16px}
  .crit-card{padding:28px 20px}
  
  .look-grid{gap:32px}
  .pt-item{padding:16px 20px}
  
  .dd-intro{margin-bottom:32px}
  .dd-stage{padding:32px 20px}
  
  .margin-grid{gap:16px}
  
  .submit-sec{padding:32px 16px;gap:32px}
  .submit-left h2{font-size:32px}
  .trust-list{gap:12px}
  
  .footer-top{grid-template-columns:1fr}
  .footer-col{display:none}
  .footer-bottom{flex-direction:column;align-items:flex-start;gap:8px}
  .footer-legal{flex-wrap:wrap;gap:12px}
  
  .img-strip{grid-template-columns:1fr}
  .img-strip-item{height:160px}
  
  .modal-backdrop{padding:16px}
  .modal-box{max-height:90vh}
  .modal-header{padding:16px 20px}
  .modal-header h3{font-size:20px}
  .modal-body{padding:20px 24px;font-size:15px}
  .modal-footer-bar{padding:12px 20px;font-size:13px;flex-direction:column;align-items:flex-start;gap:8px}
  
  .vsl-inner{padding:40px 16px}
  .vsl-title{font-size:22px;margin-bottom:24px}
  .vsl-player-controls{gap:8px;padding:12px 12px}
  .vsl-play-btn{width:36px;height:36px}
}

@media (max-width: 480px) {
  .dubai-img-break { height: 220px; margin-bottom:30px;}
  .uk-tab-btn { min-width: 72px; font-size: 8px; padding: 10px 5px 9px; }
}

/* Extra Small Mobile - 360px and below */
@media (max-width:360px){
  html{font-size:13px}
  nav{height:52px;padding:0 12px;backdrop-filter:blur(6px)}
  .nav-logo{font-size:12px;flex-shrink:0}
  .nav-links{top:70px}
  
  .h1{font-size:32px}
  .h2{font-size:26px}
  .h3{font-size:18px}
  .body{font-size:14px}
  
  .sec{padding:28px 12px}
  .lbl{font-size:11px}
  
  .home-hero-inner{padding:20px 12px;gap:24px}
  .home-hero h1{font-size:28px;margin-bottom:12px}
  .home-hero-body{font-size:13px;margin-bottom:16px}
  
  .group-intro{padding:28px 12px}
  .group-intro h2{font-size:22px}
  
  .uk-hero-inner{padding:20px 12px 40px}
  .uk-hero-inner h1{font-size:28px}
  .uk-hero-inner p{font-size:13px}
   .ukt-opp-grid { grid-template-columns: 1fr; }
  .ukt-invest-grid { grid-template-columns: 1fr; }
  .ukt-direct-features { grid-template-columns: 1fr; }
.uk-tab-nav { top: 52px; }
   .uk-tab-btn {
    flex: 0 0 auto;
    min-width: 72px;
    font-size: 8px;
    padding: 10px 4px 9px;
  }
  .uk-tab-icon { width: 16px; height: 16px; }
  
  
  .who-grid{grid-template-columns:1fr;gap:12px;background:transparent}
  .who-card{padding:20px 16px;background:var(--cream);border:1px solid var(--cream3)}
  .who-badge{font-size:12px}
  .who-card h3{font-size:16px}
  
  .opp-grid{grid-template-columns:1fr}
  .opp-card{padding:20px 16px}
  .opp-card h4{font-size:16px}
  
  .pricing-grid{grid-template-columns:1fr}
  .pricing-card{padding:20px 16px}
  .pricing-num{font-size:36px}
  
  .direct-sec{gap:20px;padding:20px 12px}
  .direct-left h2{font-size:28px;margin-bottom:10px}
  
  .dubai-hero-inner{padding:20px 12px 40px}
  .dubai-hero-inner h1{font-size:28px}
  
  .invest-form-sec{padding:20px 12px;gap:20px}
  .inv-form-left h2{font-size:24px;margin-bottom:8px}
  
  .dec-card{padding:20px 16px}
  .dec-card h4{font-size:16px}
  
  .pt-grid{grid-template-columns:1fr}
  .pt-card{padding:16px 12px}
  
  .gov-grid{grid-template-columns:1fr}
  .gov-card{padding:16px 12px}
  
  .direct-sec{grid-template-columns:1fr;gap:16px;padding:16px 12px}
  .direct-left h2{font-size:24px;margin-bottom:12px}
  .direct-left p{font-size:15px;margin-bottom:8px}
  .direct-list{margin:12px 0 16px}
  .direct-right h3{font-size:18px;margin-bottom:6px}
  .direct-right p{font-size:13px;margin-bottom:12px}
  .dubai-img-break { height: 220px; margin-bottom:30px;}
  .who-grid{grid-template-columns:1fr;gap:12px;background:transparent}
  .who-card{padding:20px 16px;background:var(--off);border:1px solid var(--cream3)}
  .who-badge{font-size:11px;padding:4px 10px;margin-bottom:12px}
  .who-card h3{font-size:18px;margin-bottom:8px}
  .who-card p{font-size:13px;line-height:1.6}
  
  .about-hero{min-height:auto}
  .ah-left{padding:24px 12px}
  .ah-left h1{font-size:28px}
  .ah-right{min-height:180px;padding:20px 12px}
  
  .sell-hero-inner{padding:20px 12px 40px}
  .sell-hero-inner h1{font-size:28px}
  
  .criteria-grid{grid-template-columns:1fr}
  .crit-card{padding:16px 12px}
  
  .dd-stages{grid-template-columns:1fr}
  .dd-stage{padding:20px 16px}
  
  .margin-grid{grid-template-columns:1fr}
  
  .submit-sec{padding:20px 12px;gap:20px}
  .submit-left h2{font-size:28px}
  
  .footer-top{grid-template-columns:1fr}
  .img-strip{grid-template-columns:1fr;height:120px}
  
  .modal-backdrop{padding:8px}
  .modal-header{padding:12px 16px}
  .modal-header h3{font-size:18px}
  .modal-body{padding:16px 12px;font-size:13px}
  .modal-footer-bar{padding:8px 12px;font-size:11px}
  
  .vsl-inner{padding:20px 12px}
  .vsl-title{font-size:18px;margin-bottom:16px}
  .vsl-play-btn{width:32px;height:32px}
}
