:root {
  --navy: #10243f;
  --navy-2: #183655;
  --ink: #16202b;
  --muted: #66717e;
  --line: #dce3ea;
  --soft: #f4f7f9;
  --white: #ffffff;
  --gold: #b8945a;
  --shadow: 0 22px 60px rgba(16, 36, 63, 0.12);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}
a { color: inherit; }
img, svg { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(220,227,234,.8);
}
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark { width: 42px; height: 42px; color: var(--navy); }
.brand strong { display: block; font-family: Manrope, sans-serif; font-size: 1.02rem; letter-spacing: -.02em; }
.brand small { display: block; color: var(--muted); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; }
.primary-nav { display: flex; align-items: center; gap: 28px; }
.primary-nav a { text-decoration: none; font-size: .94rem; font-weight: 600; color: #344252; }
.primary-nav a:hover { color: var(--navy); }
.menu-toggle { display: none; width: 42px; height: 42px; border: 0; background: transparent; padding: 9px; }
.menu-toggle span { display: block; height: 2px; background: var(--navy); margin: 5px 0; border-radius: 2px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  color: var(--white) !important;
  background: var(--navy);
  box-shadow: 0 10px 28px rgba(16,36,63,.18);
  transition: transform .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); background: var(--navy-2); }
.button-small { min-height: 42px; padding: 0 18px; }
.text-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--navy); text-decoration: none; }
.text-link:hover span { transform: translateX(4px); }
.text-link span { transition: transform .2s ease; }

.hero {
  padding: 92px 0 86px;
  background:
    radial-gradient(circle at 85% 15%, rgba(184,148,90,.18), transparent 28%),
    linear-gradient(180deg, #fbfcfd 0%, #f3f6f8 100%);
  overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 70px; }
.eyebrow { margin: 0 0 14px; color: var(--gold); font-size: .78rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
h1, h2, h3 { font-family: Manrope, sans-serif; margin-top: 0; color: var(--navy); }
h1 { font-size: clamp(3rem, 7vw, 5.6rem); line-height: .98; letter-spacing: -.06em; margin-bottom: 26px; }
h2 { font-size: clamp(2rem, 4vw, 3.35rem); line-height: 1.08; letter-spacing: -.045em; margin-bottom: 22px; }
h3 { font-size: 1.16rem; letter-spacing: -.02em; }
.hero-text { max-width: 650px; color: #53606e; font-size: 1.12rem; margin: 0 0 32px; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 22px; }

.hero-card {
  background: var(--white);
  border: 1px solid rgba(220,227,234,.95);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 24px;
}
.hero-card-top { display: flex; align-items: center; justify-content: space-between; font-weight: 700; color: var(--navy); font-size: .9rem; }
.status-dot { color: #477a5b; font-size: .78rem; }
.status-dot::before { content: ""; display: inline-block; width: 8px; height: 8px; margin-right: 7px; background: #65a979; border-radius: 50%; }
.property-visual {
  height: 300px;
  margin: 24px 0;
  padding: 36px 28px 0;
  border-radius: 20px;
  background: linear-gradient(180deg, #dfe9f0 0%, #f5f8fa 72%, #d9dfd8 72%, #d9dfd8 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 14px;
}
.building { background: var(--navy); border-radius: 8px 8px 0 0; padding: 14px; display: grid; grid-template-columns: repeat(2, 22px); gap: 12px; box-shadow: 0 15px 30px rgba(16,36,63,.18); }
.building span { width: 22px; height: 24px; background: #f2d8a6; border-radius: 3px; opacity: .92; }
.building-one { height: 185px; }
.building-two { height: 145px; background: #31506d; }
.building-three { height: 205px; background: #1d3a57; }
.hero-card-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.hero-card-stats div { padding: 14px 12px; border-radius: 14px; background: var(--soft); }
.hero-card-stats strong { display: block; color: var(--navy); font-size: .92rem; }
.hero-card-stats span { display: block; color: var(--muted); font-size: .72rem; margin-top: 3px; }

.section { padding: 108px 0; }
.section-tinted { background: var(--soft); }
.split-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; align-items: start; }
.section-heading p:last-child { color: var(--muted); max-width: 620px; margin: 0 auto; }
.section-copy > p { color: #52606e; font-size: 1.04rem; margin-top: 0; }
.centered { text-align: center; max-width: 780px; margin: 0 auto 52px; }
.principles { display: grid; gap: 18px; margin-top: 34px; }
.principles article { display: grid; grid-template-columns: 50px 1fr; column-gap: 18px; padding: 22px 0; border-top: 1px solid var(--line); }
.principles article span { grid-row: 1 / 3; color: var(--gold); font-weight: 800; }
.principles h3 { margin-bottom: 5px; }
.principles p { margin: 0; color: var(--muted); }

.criteria-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.criteria-card { padding: 32px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 12px 35px rgba(16,36,63,.06); }
.criteria-card.featured { transform: translateY(-10px); border-color: rgba(184,148,90,.55); }
.icon-box { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: var(--soft); color: var(--gold); font-weight: 800; margin-bottom: 22px; }
.criteria-card ul { padding-left: 19px; margin: 0; color: #586675; }
.criteria-card li + li { margin-top: 10px; }

.approach-section { background: var(--navy); color: var(--white); }
.approach-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 90px; align-items: start; }
.approach-panel h2, .process-list h3 { color: var(--white); }
.approach-panel p:not(.eyebrow) { color: #c9d4df; font-size: 1.05rem; }
.light-link { color: var(--white); margin-top: 22px; }
.process-list article { display: grid; grid-template-columns: 54px 1fr; gap: 20px; padding: 26px 0; border-top: 1px solid rgba(255,255,255,.15); }
.process-list article > span { width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; display: grid; place-items: center; color: #f0d3a2; font-weight: 800; }
.process-list h3 { margin-bottom: 6px; }
.process-list p { margin: 0; color: #bdc9d4; }

.contact-section { background: #eef3f6; }
.contact-card { display: flex; justify-content: space-between; align-items: center; gap: 50px; padding: 58px; background: var(--white); border-radius: 28px; box-shadow: var(--shadow); }
.contact-card h2 { max-width: 650px; margin-bottom: 12px; }
.contact-card p:last-child { color: var(--muted); margin-bottom: 0; }
.contact-actions { min-width: 250px; text-align: center; }
.email-display { display: block; margin-top: 14px; color: var(--navy); font-weight: 700; text-decoration: none; font-size: .9rem; }

.site-footer { padding: 34px 0; border-top: 1px solid var(--line); }
.footer-wrap { display: flex; justify-content: space-between; align-items: center; gap: 30px; }
.footer-wrap p { color: var(--muted); font-size: .84rem; }
.footer-brand .brand-mark { width: 36px; height: 36px; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .primary-nav { position: absolute; top: 78px; left: 20px; right: 20px; display: none; flex-direction: column; align-items: stretch; gap: 10px; padding: 18px; background: var(--white); border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow); }
  .primary-nav.open { display: flex; }
  .primary-nav a { padding: 10px 8px; }
  .hero-grid, .split-layout, .approach-grid { grid-template-columns: 1fr; gap: 54px; }
  .criteria-grid { grid-template-columns: 1fr; }
  .criteria-card.featured { transform: none; }
  .contact-card { align-items: flex-start; flex-direction: column; padding: 42px; }
  .contact-actions { text-align: left; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, 1120px); }
  .hero { padding: 64px 0 58px; }
  .section { padding: 78px 0; }
  h1 { font-size: 3.3rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .property-visual { height: 235px; padding: 28px 18px 0; gap: 8px; }
  .building { padding: 10px; grid-template-columns: repeat(2, 16px); gap: 8px; }
  .building span { width: 16px; height: 18px; }
  .building-one { height: 145px; }
  .building-two { height: 112px; }
  .building-three { height: 160px; }
  .hero-card-stats { grid-template-columns: 1fr; }
  .contact-card { padding: 32px 24px; }
  .footer-wrap { align-items: flex-start; flex-direction: column; }
}

/* Official SOK Capital logo integration */
.brand-logo-mark {
  width: 46px;
  height: 46px;
  object-fit: contain;
  flex: 0 0 auto;
}
.logo-showcase {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(184,148,90,.12), transparent 30%),
    #fff;
}
.logo-showcase::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -100px;
  bottom: -120px;
  border: 1px solid rgba(184,148,90,.2);
  border-radius: 50%;
  pointer-events: none;
}
.hero-logo-wrap {
  min-height: 360px;
  margin: 8px 0 18px;
  display: grid;
  place-items: center;
  padding: 10px 24px;
}
.hero-logo-wrap img {
  display: block;
  width: min(100%, 470px);
  max-height: 360px;
  object-fit: contain;
  filter: drop-shadow(0 18px 32px rgba(16,36,63,.09));
}
.footer-brand .brand-logo-mark { width: 40px; height: 40px; }

@media (max-width: 620px) {
  .brand-logo-mark { width: 40px; height: 40px; }
  .brand small { letter-spacing: .08em; }
  .hero-logo-wrap { min-height: 265px; padding: 4px; }
  .hero-logo-wrap img { max-height: 270px; }
}
