/* === Stanley Lee — stanleylee.com === */
/* Professional redesign — 2026-05-11 */

:root {
  --navy: #0a1628;
  --navy-light: #132240;
  --navy-card: #111d35;
  --navy-border: #1e3358;
  --blue: #2563eb;
  --blue-light: #3b82f6;
  --gold: #d4a853;
  --gold-light: #e6c473;
  --white: #f8fafc;
  --gray: #94a3b8;
  --gray-dark: #64748b;
  --text: #e2e8f0;
  --font-serif: 'Playfair Display', 'Georgia', serif;
  --font-sans: 'Inter', -apple-system, 'Segoe UI', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--navy);
  color: var(--text);
  line-height: 1.7;
}

/* ===== HEADER ===== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.header__inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  height: 68px; display: flex; align-items: center; justify-content: space-between;
}
.logo {
  font-family: var(--font-serif); font-size: 22px; font-weight: 700;
  color: var(--white); text-decoration: none;
}
.logo span { color: var(--gold); }
.nav { display: flex; align-items: center; gap: 8px; }
.nav__link {
  color: var(--white); text-decoration: none; font-size: 13px;
  font-weight: 600; transition: all 0.2s;
  padding: 7px 16px; border-radius: 8px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.08);
}
.nav__link:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.15); }
.nav__link--active { background: rgba(255,255,255,0.15); border-color: var(--gold); color: var(--gold-light); }
.nav__cta {
  background: var(--gold); color: var(--navy); padding: 7px 18px;
  border-radius: 8px; text-decoration: none; font-size: 13px; font-weight: 700;
  transition: all 0.2s; border: 1px solid transparent;
}
.nav__cta:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(212,168,83,0.3); }
.nav__toggle {
  display: none; background: none; border: none; cursor: pointer; padding: 8px;
}
.nav__toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--white); margin: 5px 0;
}

/* ===== PAGE HEADER ===== */
.page-header {
  padding: 130px 24px 60px; text-align: center;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 100%);
}
.page-header__breadcrumb { font-size: 13px; color: var(--gray-dark); margin-bottom: 16px; }
.page-header__breadcrumb a { color: var(--gray); text-decoration: none; }
.page-header__breadcrumb a:hover { color: var(--gold); }
.page-header h1 {
  font-family: var(--font-serif); font-size: clamp(30px, 4vw, 46px);
  font-weight: 700; margin-bottom: 14px;
}
.page-header p {
  font-size: 16px; color: var(--gray); max-width: 600px; margin: 0 auto;
}

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section--alt { background: var(--navy-light); }
.section__header { text-align: center; max-width: 700px; margin: 0 auto 48px; }
.section__label {
  display: inline-block; font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--blue-light); margin-bottom: 12px;
}
.section__title {
  font-family: var(--font-serif); font-size: clamp(26px, 4vw, 38px);
  font-weight: 700; margin-bottom: 14px;
}
.section__desc { font-size: 16px; color: var(--gray); line-height: 1.8; }

/* ===== HERO ===== */
.hero {
  position: relative; overflow: hidden; padding-top: 140px; padding-bottom: 80px;
  min-height: 85vh; display: flex; align-items: center;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 40%, rgba(37,99,235,0.12), transparent),
    radial-gradient(ellipse 60% 40% at 80% 70%, rgba(212,168,83,0.06), transparent);
}
.hero__content {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  position: relative; z-index: 1;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(212,168,83,0.1); border: 1px solid rgba(212,168,83,0.25);
  padding: 5px 14px; border-radius: 18px; font-size: 12px;
  color: var(--gold-light); margin-bottom: 24px;
}
.hero__badge::before { content: '🌏'; }
.hero h1 {
  font-family: var(--font-serif); font-size: clamp(32px, 5vw, 58px);
  font-weight: 700; line-height: 1.15; margin-bottom: 20px; max-width: 750px;
}
.hero h1 .highlight {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero__subtitle {
  font-size: clamp(15px, 2vw, 18px); color: var(--gray);
  max-width: 580px; margin-bottom: 32px; line-height: 1.7;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--navy-light);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  padding: 24px 0; text-align: center;
}
.trust-bar__label {
  font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--gray-dark); margin-bottom: 12px; font-weight: 600;
}
.trust-bar__logos {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 12px 24px; align-items: center;
}
.trust-bar__logo {
  font-size: 13px; color: var(--gray); font-weight: 500;
  white-space: nowrap; transition: color 0.2s;
}
.trust-bar__logo:hover { color: var(--white); }

/* ===== STATS ===== */
.stats-bar {
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: var(--navy-light);
}
.stats-row {
  max-width: 1200px; margin: 0 auto; padding: 36px 24px;
  display: flex; justify-content: center; align-items: center; gap: 32px; flex-wrap: wrap;
}
.stat { text-align: center; }
.stat__number { display: block; font-size: 34px; font-weight: 800; }
.stat__number .accent { color: var(--gold); }
.stat__label { font-size: 12px; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; }
.stats-divider {
  width: 1px; height: 50px; background: rgba(255,255,255,0.08);
}

/* ===== CARDS ===== */
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }

.service-card {
  background: var(--navy-card); border: 1px solid var(--navy-border);
  border-radius: 14px; padding: 28px 24px; transition: all 0.3s;
}
.service-card:hover {
  border-color: var(--blue); transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37,99,235,0.15);
}
.service-card__icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(37,99,235,0.15); display: flex;
  align-items: center; justify-content: center; font-size: 20px;
  margin-bottom: 18px;
}
.service-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.service-card p { font-size: 14px; color: var(--gray); line-height: 1.7; }

/* ===== BRIDGE ===== */
.bridge-hero { text-align: center; max-width: 750px; margin: 0 auto 50px; }
.bridge-hero .big-icon { font-size: 56px; margin-bottom: 16px; }
.bridge-feature {
  background: var(--navy-card); border: 1px solid var(--navy-border);
  border-radius: 14px; padding: 30px 26px; transition: all 0.3s;
}
.bridge-feature:hover {
  border-color: var(--gold); box-shadow: 0 6px 24px rgba(212,168,83,0.1);
}
.bridge-feature__icon { font-size: 28px; margin-bottom: 14px; }
.bridge-feature h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.bridge-feature p { font-size: 14px; color: var(--gray); line-height: 1.7; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: 10px; font-size: 14px;
  font-weight: 600; text-decoration: none; transition: all 0.25s;
  cursor: pointer; border: none;
}
.btn--primary {
  background: var(--gold); color: var(--navy);
}
.btn--primary:hover {
  background: var(--gold-light); transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212,168,83,0.3);
}
.btn--outline {
  background: transparent; color: var(--white);
  border: 1px solid var(--navy-border);
}
.btn--outline:hover {
  border-color: var(--gold); color: var(--gold);
}

/* ===== SOLO ACT ===== */
.solo-act { text-align: center; max-width: 680px; margin: 0 auto; }
.solo-act__text { font-size: 15px; color: var(--gray); line-height: 1.8; margin-bottom: 12px; }
.solo-act__text strong { color: var(--white); }

/* ===== RELATIONSHIPS ===== */
.relationships { text-align: center; max-width: 800px; margin: 0 auto; }
.relationships__subtitle { font-size: 14px; color: var(--gray); margin-bottom: 24px; }
.relationships__logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 24px; margin-bottom: 16px; }
.relationships__company { font-size: 13px; color: var(--gray); font-weight: 500; transition: color 0.2s; }
.relationships__company:hover { color: var(--white); }
.relationships__footer { font-size: 14px; color: var(--gray-dark); }

/* ===== CTA ===== */
.cta-section { text-align: center; padding: 70px 24px; }
.cta-section h2 { font-family: var(--font-serif); font-size: clamp(26px, 4vw, 40px); margin-bottom: 14px; }
.cta-section p { font-size: 15px; color: var(--gray); max-width: 550px; margin: 0 auto 28px; }

/* ===== TEAM ===== */
.team-card {
  background: var(--navy-card); border: 1px solid var(--navy-border);
  border-radius: 14px; padding: 28px 24px;
}
.team-card__photo {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 700; color: var(--white); margin-bottom: 16px;
}
.team-card__name { font-family: var(--font-serif); font-size: 18px; font-weight: 700; }
.team-card__role { font-size: 13px; color: var(--gold); margin-bottom: 12px; font-weight: 600; }
.team-card__highlights { list-style: none; padding: 0; }
.team-card__highlights li { font-size: 13px; color: var(--gray); padding: 3px 0 3px 16px; position: relative; }
.team-card__highlights li::before { content: '✦'; position: absolute; left: 0; color: var(--blue-light); font-size: 9px; top: 5px; }
.team-card__highlights li strong { color: var(--white); }

/* ===== TIMELINE ===== */
.timeline { position: relative; max-width: 750px; margin: 0 auto; }
.timeline::before {
  content: ''; position: absolute; left: 18px; top: 0; bottom: 0;
  width: 2px; background: linear-gradient(to bottom, var(--blue), var(--gold));
}
.timeline-item { position: relative; padding-left: 54px; margin-bottom: 36px; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline__dot {
  position: absolute; left: 10px; top: 3px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--blue); border: 3px solid var(--navy);
  box-shadow: 0 0 0 3px var(--blue);
}
.timeline-item:nth-child(even) .timeline__dot {
  background: var(--gold); box-shadow: 0 0 0 3px var(--gold);
}
.timeline__year { font-size: 12px; font-weight: 700; color: var(--blue-light); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 1px; }
.timeline-item:nth-child(even) .timeline__year { color: var(--gold); }
.timeline__title { font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.timeline__desc { font-size: 13px; color: var(--gray); line-height: 1.7; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.contact-card {
  background: var(--navy-card); border: 1px solid var(--navy-border);
  border-radius: 14px; padding: 28px 24px; text-align: center;
}
.contact-card__icon { font-size: 32px; margin-bottom: 12px; }
.contact-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.contact-card p { font-size: 13px; color: var(--gray); }
.contact-card a { color: var(--blue-light); text-decoration: none; }
.contact-card a:hover { color: var(--gold); }
.contact-form { max-width: 600px; margin: 0 auto; }
.contact-form__group { margin-bottom: 18px; }
.contact-form label { display: block; font-size: 13px; color: var(--gray); margin-bottom: 6px; font-weight: 600; }
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%; padding: 10px 14px; background: var(--navy-card);
  border: 1px solid var(--navy-border); border-radius: 8px;
  color: var(--text); font-size: 14px; font-family: var(--font-sans);
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none; border-color: var(--blue);
}
.contact-form textarea { min-height: 120px; resize: vertical; }

/* ===== RESEARCH ===== */
.research-intro { text-align: center; max-width: 700px; margin: 0 auto 48px; }
.research-intro p { font-size: 16px; color: var(--gray); line-height: 1.8; }

/* ===== FOOTER ===== */
.footer { border-top: 1px solid rgba(255,255,255,0.06); padding: 36px 24px; }
.footer__inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px;
}
.footer__brand p { font-size: 12px; color: var(--gray-dark); margin-top: 6px; }
.footer__heading { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--white); margin-bottom: 10px; }
.footer__links { list-style: none; }
.footer__links li { margin-bottom: 6px; }
.footer__links a { color: var(--gray-dark); text-decoration: none; font-size: 12px; transition: color 0.2s; }
.footer__links a:hover { color: var(--gold); }
.footer__bottom {
  max-width: 1200px; margin: 20px auto 0; padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; justify-content: space-between; font-size: 11px; color: var(--gray-dark);
}

/* ===== LANG ===== */
.lang-selector { position: relative; margin-left: 4px; }
.lang-btn {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  color: var(--white); padding: 7px 14px; border-radius: 8px;
  font-size: 13px; cursor: pointer; transition: all 0.2s; font-weight: 600;
}
.lang-btn:hover { background: rgba(255,255,255,0.15); border-color: var(--gold); }
.lang-menu {
  display: none; position: absolute; top: calc(100% + 6px); right: 0;
  background: var(--navy-card); border: 1px solid var(--navy-border);
  border-radius: 10px; padding: 6px 0; min-width: 150px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.5); z-index: 9999;
}
.lang-menu.open { display: block; }
.lang-menu a {
  display: flex; align-items: center; gap: 8px; padding: 8px 16px;
  color: var(--white); text-decoration: none; font-size: 13px; font-weight: 500;
  transition: background 0.15s;
}
.lang-menu a:hover { background: rgba(255,255,255,0.08); }

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .nav__toggle { display: block; }
  .nav {
    display: none; position: absolute; top: 68px; left: 0; right: 0;
    background: var(--navy-light); flex-direction: column;
    padding: 20px; gap: 14px; border-bottom: 1px solid var(--navy-border);
  }
  .nav.nav--open { display: flex; }
  .footer__inner { grid-template-columns: 1fr; gap: 20px; }
  .footer__bottom { flex-direction: column; gap: 4px; text-align: center; }
  .stats-row { flex-direction: column; gap: 20px; }
  .stats-divider { width: 60px; height: 1px; }
  .hero { min-height: auto; padding-top: 120px; padding-bottom: 60px; }
}


.icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  vertical-align: middle;
  color: currentColor;
}
/* Hero big icon */
.hero__icon .icon,
.big-icon .icon {
  width: 56px;
  height: 56px;
}
/* Service card & bridge feature icons */
.service-card__icon .icon,
.bridge-feature__icon .icon {
  width: 44px;
  height: 44px;
}
/* Contact card icons */
.contact-card__icon .icon {
  width: 32px;
  height: 32px;
}
/* Hover color transitions */
.bridge-feature:hover .icon { color: var(--gold); }
.service-card:hover .icon { color: var(--blue-light); }
.contact-card:hover .icon { color: var(--gold); }
