:root {
  --dark:    #0A1A44;
  --light:   #ffffff;
  --muted:   #c1c7d0;
  --accent:  #1f6feb;
  --gold:    #b8860b;
  --text:    #1c2b3a;
  --soft-bg: #f7f8fc;
  --container: 1140px;
  --header-h:  90px;
  --radius:    10px;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Lato', 'Segoe UI', Arial, sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  background: var(--light);
  color: var(--text);
  line-height: 1.7;
  font-size: 15px;
}


h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  color: var(--dark);
  line-height: 1.3;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.col-title {
  color: var(--dark);
  border-bottom: 2px solid var(--gold);
  display: inline-block;
  margin-bottom: 14px;
  padding-bottom: 4px;
}


.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.section {
  padding: 72px 0;
  background: var(--light);
}

.section:nth-of-type(even) {
  background: var(--soft-bg);
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h3 {
  font-size: 32px;
  margin-bottom: 6px;
}

.section-sub {
  color: var(--muted);
  font-size: 15px;
}

.card {
  background: #fff;
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(10, 26, 68, 0.06);
}


.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: var(--light);
  z-index: 60;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  height: var(--header-h);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 28px;
  height: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-img {
  width: 80px;
  height: 64px;
  border-radius: 8px;
  object-fit: contain;
  border: 2px solid rgba(255, 255, 255, 0.08);
}

.brand-text h1 {
  font-size: 20px;
  color: var(--light);
  font-family: var(--font-heading);
  letter-spacing: 0.4px;
}

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

.site-nav {
  display: flex;
  gap: 4px;
  align-items: center;
}

.site-nav .nav-link {
  color: var(--light);
  padding: 8px 14px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  transition: background 0.2s;
}

.site-nav .nav-link:hover {
  background: rgba(255, 255, 255, 0.06);
  text-decoration: none;
}

.site-nav .nav-link.cta {
  background: var(--gold);
  color: #fff;
  padding: 8px 18px;
}

.site-nav .nav-link.cta:hover {
  background: #a0760a;
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--light);
  font-size: 22px;
  cursor: pointer;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: var(--dark);
  min-width: 210px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  z-index: 100;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.dropdown-content a {
  color: var(--light);
  padding: 12px 18px;
  display: block;
  font-size: 14px;
  transition: background 0.15s;
}

.dropdown-content a:hover {
  background: rgba(255, 255, 255, 0.08);
  text-decoration: none;
}

.dropdown:hover .dropdown-content {
  display: block;
}


.hero {
  height: 70vh;
  min-height: 440px;
  background-image: url('skyline.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  position: relative;
  margin-top: var(--header-h);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(10, 26, 68, 0.72), rgba(10, 26, 68, 0.50));
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--light);
  width: 100%;
}

.hero-text {
  max-width: 680px;
  padding: 40px 40px 40px 0;
}

.hero-text h2 {
  font-size: 40px;
  color: var(--light);
  margin-bottom: 14px;
}

.hero-text p {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 24px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 11px 22px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: opacity 0.2s, background 0.2s;
  text-decoration: none;
}

.btn:hover {
  opacity: 0.88;
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border: none;
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--light);
  background: transparent;
}

.btn-ghost {
  border: 1px solid var(--dark);
  color: var(--dark);
  background: transparent;
  margin-top: 14px;
}

.btn-linkedin {
  background: #0a66c2;
  color: #fff;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-linkedin:hover {
  background: #084fa0;
  text-decoration: none;
  color: #fff;
}


.about-block {
  scroll-margin-top: calc(var(--header-h) + 20px);
}

.firm-intro {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 40px;
  font-size: 15px;
  color: #444;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  text-align: left;
}

.about-col p {
  font-size: 14px;
  line-height: 1.85;
  color: #444;
}

.firm-conclusion {
  text-align: center;
  margin-top: 40px;
  font-style: italic;
  color: var(--dark);
  font-size: 15px;
}

.leadership-block {
  margin-top: 80px;
  padding-top: 48px;
  border-top: 1px solid #e8eaf0;
}

.leaders-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.leader-card {
  background: var(--soft-bg);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid rgba(10, 26, 68, 0.06);
  transition: box-shadow 0.25s, transform 0.25s;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.leader-card:hover {
  box-shadow: 0 12px 32px rgba(10, 26, 68, 0.10);
  transform: translateY(-4px);
}

.leader-photo {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid rgba(10, 26, 68, 0.07);
  box-shadow: 0 8px 24px rgba(10, 26, 68, 0.10);
  margin-bottom: 20px;
  flex-shrink: 0;
}

.leader-name {
  font-size: 18px;
  color: var(--dark);
  margin-bottom: 4px;
}

.leader-role {
  font-size: 13px;
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}

.leader-bio {
  font-size: 14px;
  color: #555;
  line-height: 1.8;
  text-align: left;
  width: 100%;
  flex-grow: 1;
}

.leader-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  flex-grow: 1;
}

.dots {
  display: inline;
}

.more-text {
  display: none;
}

.read-more-btn {
  margin-top: 12px;
  background: none;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background 0.2s, color 0.2s;
  align-self: center;
  flex-shrink: 0;
}

.read-more-btn:hover {
  background: var(--gold);
  color: #fff;
}
.insights-section {
  background: var(--soft-bg);
}
.insights-triple-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 36px;
  align-items: start;
}

.feed-title {
  font-size: 16px;
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: 20px;
  display: inline-block;
  padding-bottom: 6px;
  color: var(--dark);
  border-bottom: 2px solid var(--gold);
}

.feed-title--x {
  border-bottom-color: #1d9bf0;
}

.feed-title--li {
  border-bottom-color: #0a66c2;
}

.article-card {
  padding: 16px;
  background: #fff;
  border-radius: 8px;
  border-left: 4px solid var(--gold);
  margin-bottom: 16px;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.article-card:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.article-tag {
  font-size: 11px;
  font-weight: 700;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.article-card h5 {
  font-size: 14px;
  margin: 6px 0 8px;
  color: var(--dark);
  font-family: var(--font-heading);
}

.article-card p {
  font-size: 13px;
  color: #666;
  margin-bottom: 10px;
}

.article-link {
  font-size: 12px;
  color: var(--accent);
  font-weight: 700;
}

.twitter-embed-container {
  min-height: 520px;
  border: 1px solid #e6ecf0;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}

.twitter-embed-container::-webkit-scrollbar {
  width: 6px;
}

.twitter-embed-container::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

.linkedin-widget-wrapper {
  background: #fff;
  border: 1px solid #e0e7f0;
  border-radius: 12px;
  padding: 24px;
  min-height: 300px;
  text-align: center;
}

.linkedin-note {
  font-size: 12px;
  color: #999;
  margin-top: 16px;
  line-height: 1.6;
  font-style: italic;
}


.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service {
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(10, 26, 68, 0.07);
  background: #fff;
  transition: box-shadow 0.2s, transform 0.2s;
}

.service:hover {
  box-shadow: 0 10px 28px rgba(10, 26, 68, 0.09);
  transform: translateY(-3px);
}

.service-icon {
  width: 48px;
  height: 48px;
  background: rgba(184, 134, 11, 0.10);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 18px;
  color: var(--gold);
}

.service h4 {
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--dark);
}

.service p {
  font-size: 13px;
  color: #555;
  line-height: 1.75;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 24px;
}

.contact-info h4 {
  margin-bottom: 14px;
  color: var(--dark);
}

.contact-info p {
  margin-bottom: 8px;
  font-size: 14px;
}

.contact-info a {
  color: var(--accent);
}

.contact-form label {
  display: block;
  margin-bottom: 14px;
}

.contact-form span {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 11px 14px;
  border-radius: 8px;
  border: 1px solid #d8e2f0;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
}

.form-actions {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.form-note {
  font-size: 12px;
  color: #aaa;
  margin-top: 12px;
}

.site-footer {
  background: var(--dark);
  color: #ccc;
  padding: 60px 0 30px;
  border-top: 4px solid var(--gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-heading {
  color: var(--gold);
  margin-bottom: 18px;
  font-size: 16px;
  font-family: var(--font-body);
  font-weight: 700;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.9;
  color: #bbb;
}
.footer-links {
  list-style: none;
  font-size: 14px;
  line-height: 2.2;
}

.footer-links a {
  color: #ccc;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--gold);
  text-decoration: none;
}

.social-icons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.social-icons a {
  color: #ccc;
  font-size: 22px;
  transition: color 0.25s, transform 0.25s;
  display: inline-block;
}

.social-icons a:hover {
  color: var(--gold);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 28px;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.4px;
}

@media (max-width: 1024px) {
  .insights-triple-layout {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .mv-mission-grid {
    grid-template-columns: 1fr;
  }
  .mv-mission-icon-col {
    position: static;
    padding: 32px;
  }

  .mv-vision-card {
    padding: 40px 36px;
  }
}
@media (max-width: 820px) {

  .site-nav {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--dark);
    padding: 16px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    gap: 4px;
    z-index: 59;
  }

  .site-nav.open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .dropdown-content {
    position: static;
    box-shadow: none;
    border: none;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 6px;
    margin-top: 4px;
  }

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

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

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

  .insights-triple-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {

  .hero-text h2 {
    font-size: 26px;
  }

  .hero-text {
    padding: 24px 0;
  }

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

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

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

  .section-header h3 {
    font-size: 26px;
  }

  .mv-vision-card {
    padding: 32px 24px 28px;
  }

  .mv-quote-mark {
    font-size: 120px;
    top: -4px;
    left: 12px;
  }

  .mv-vision-text p {
    font-size: 14px;
  }

  .mv-feature-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .mv-anchor-quote {
    font-size: 14px;
  }
}
.mv-section {
  scroll-margin-top: calc(var(--header-h) + 20px);
}
.mv-vision-card {
  position: relative;
  background: var(--dark);
  border-radius: var(--radius);
  border-top: 4px solid var(--gold);
  padding: 56px 64px 48px;
  margin-bottom: 56px;
  text-align: center;
  overflow: hidden;
}
.mv-quote-mark {
  position: absolute;
  top: -10px;
  left: 28px;
  font-size: 180px;
  color: rgba(184, 134, 11, 0.12);
  font-family: var(--font-heading);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.mv-vision-text {
  max-width: 820px;
  margin: 0 auto;
}

.mv-vision-text p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 15.5px;
  line-height: 1.9;
  margin-bottom: 18px;
}

.mv-vision-text p:last-child {
  margin-bottom: 0;
}


.mv-vision-text em {
  color: var(--gold);
  font-style: italic;
}

.mv-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(184, 134, 11, 0.18);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid rgba(184, 134, 11, 0.35);
  margin-bottom: 28px;
  font-family: var(--font-body);
}
.mv-label--mission {
  margin-bottom: 24px;
}
.mv-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: start;
}
.mv-mission-icon-col {
  text-align: center;
  padding: 40px 24px;
  background: var(--soft-bg);
  border-radius: var(--radius);
  border: 1px solid rgba(10, 26, 68, 0.07);
  position: sticky;
  top: calc(var(--header-h) + 24px);
}
.mv-icon-circle {
  width: 88px;
  height: 88px;
  background: linear-gradient(
    135deg,
    rgba(184, 134, 11, 0.15),
    rgba(184, 134, 11, 0.05)
  );
  border: 2px solid rgba(184, 134, 11, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-size: 32px;
  color: var(--gold);
  animation: mv-pulse 3.5s ease-in-out infinite;
}


.mv-anchor-quote {
  font-size: 15px;
  font-style: italic;
  color: var(--dark);
  font-family: var(--font-heading);
  line-height: 1.6;
  opacity: 0.75;
}


.mv-mission-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mv-feature-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid rgba(10, 26, 68, 0.07);
  border-left: 4px solid var(--gold);
  box-shadow: 0 4px 16px rgba(10, 26, 68, 0.05);
  transition: transform 0.25s, box-shadow 0.25s;
}

.mv-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(10, 26, 68, 0.10);
}


.mv-feature-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(184, 134, 11, 0.10);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--gold);
}

.mv-feature-content {
  flex: 1;
}

.mv-feature-content h5 {
  font-size: 16px;
  color: var(--dark);
  font-family: var(--font-heading);
  margin-bottom: 10px;
}

.mv-feature-content p {
  font-size: 14px;
  color: #555;
  line-height: 1.85;
  margin: 0;
}



.mv-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.mv-reveal.mv-visible {
  opacity: 1;
  transform: translateY(0);
}

.mv-reveal--delay-1 { transition-delay: 0.10s; }
.mv-reveal--delay-2 { transition-delay: 0.25s; }
.mv-reveal--delay-3 { transition-delay: 0.45s; }


@keyframes mv-pulse {
  0%,  100% { box-shadow: 0 0 0   0   rgba(184, 134, 11, 0.20); }
  50%        { box-shadow: 0 0 20px 6px rgba(184, 134, 11, 0.28); }
}
.hero {
  background-image: url("skyline.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 90vh;
  position: relative;
}