/* RESET */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #001136;
  --ink-soft: #011142;
  --ink-mid: #001544;
  --gold: #4e73b5;
  --gold-light: #7ea7cd;
  --gold-muted: rgba(78, 115, 181, 0.12);
  --cream: #f5f0e8;
  --text-muted: #6b6560;
  --border: rgba(78, 115, 181, 0.22);
  --accent-red: #7c0813;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "DM Sans", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  transition: all 0.25s ease;
}

/* =========================================================
   RESPONSIVE HEADER / NAVIGATION
========================================================= */

.home-nav,
.inner-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;

  z-index: 1000;

  display: flex;
  align-items: center;
  justify-content: space-between;

  background: rgba(0, 17, 54, 0.9);

  backdrop-filter: blur(14px);

  border-bottom: 1px solid var(--border);
}

/* HOME NAV */
.home-nav {
  padding: 18px 56px;
}

/* INNER NAV */
.inner-nav {
  padding: 18px 40px;
}

/* =========================================================
   LOGO
========================================================= */

.nav-logo {
  display: flex;
  align-items: center;
  gap: 5px;

  text-decoration: none;

  background: transparent;

  min-width: 0;
}

.nav-logo-img {
  height: 32px;
  width: auto;

  flex-shrink: 0;

  display: block;

  mix-blend-mode: screen;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  gap: 3px;

  min-width: 0;
}

.nav-logo-main {
  font-family: var(--sans);

  font-size: 12px;
  font-weight: 400;

  letter-spacing: 0.2em;

  color: var(--cream);

  text-transform: uppercase;

  white-space: nowrap;
}

.nav-logo-sub {
  font-size: 9px;

  letter-spacing: 1.5px;

  color: var(--accent-red);

  text-transform: uppercase;

  font-weight: 300;

  white-space: nowrap;
}

/* =========================================================
   NAV LINKS
========================================================= */

.home-nav-links,
.inner-nav-links {
  display: flex;
  gap: 15px;

  list-style: none;

  align-items: center;

  white-space: nowrap;

  margin-left: 48px;
}

.home-nav-links a,
.inner-nav-links a {
  font-size: 10.5px;

  letter-spacing: 0.12em;

  text-transform: uppercase;

  color: rgba(245, 240, 232, 0.6);

  text-decoration: none;

  transition: color 0.2s;

  white-space: nowrap;
}

.home-nav-links a:hover,
.inner-nav-links a:hover,
.home-nav-links a.active,
.inner-nav-links a.active {
  color: var(--gold);
}

.nav-cta {
  color: rgba(245, 240, 232, 0.6) !important;
  padding: 9px 15px;
}

.nav-cta:hover {
  background: var(--gold-muted);
}

/* =========================================================
   HAMBURGER
========================================================= */

.nav-toggle {
  display: none;

  width: 42px;
  height: 42px;

  border: 1px solid var(--border);

  background: transparent;

  cursor: pointer;

  align-items: center;
  justify-content: center;
  flex-direction: column;

  gap: 5px;

  flex-shrink: 0;
}

.nav-toggle span {
  width: 20px;
  height: 1px;

  background: var(--cream);

  display: block;

  transition: all 0.3s ease;
}

/* COMMON PAGE ELEMENTS */
section {
  padding: 88px 56px;
}

.section-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.breadcrumb span {
  color: rgba(245, 240, 232, 0.35);
}

.page-hero h1 em,
.section-title em,
.hero h1 em,
.cta-inner h2 em {
  font-style: italic;
  color: var(--gold-light);
}

.section-label::before {
  content: "";
  display: block;
  width: 26px;
  height: 1px;
  background: var(--accent-red);
}

/* BUTTONS */
.btn-primary {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--gold);
  padding: 15px 30px;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-primary:hover {
  background: var(--gold-light);
}

.btn-ghost:hover {
  background: var(--gold-muted);
}

/* SHARED CARDS / COMPONENT STATES */
.juris-card:hover {
  background: rgba(78, 115, 181, 0.1);
}

.leader-card:hover {
  background: rgba(78, 115, 181, 0.1);
}

.leader-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-card {
  background: rgba(78, 115, 181, 0.07);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.service-card:hover {
  background: rgba(78, 115, 181, 0.11);
  transform: translateY(-3px);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-desc {
  font-size: 13.5px;
  color: rgba(245, 240, 232, 0.52);
  line-height: 1.8;
  font-weight: 300;
}

/* FOOTER */
footer {
  background: #000d28;
  border-top: 1px solid var(--border);
  padding: 64px 56px 40px;
}

.footer-top {
  max-width: 1160px;
  margin: 0 auto 32px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 52px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.footer-brand-name {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 5px;
}

.footer-brand-sub {
  font-size: 9px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-desc {
  font-size: 12.5px;
  color: rgba(245, 240, 232, 0.38);
  line-height: 1.75;
  font-weight: 300;
  max-width: 260px;
}

.footer-col-title {
  font-size: 9.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 12.5px;
  color: rgba(245, 240, 232, 0.42);
  text-decoration: none;
  font-weight: 300;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  max-width: 1160px;
  margin: 0 auto;

  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.footer-disclaimer {
  font-size: 10.5px;
  color: rgba(245, 240, 232, 0.26);
  line-height: 1.7;
  max-width: 660px;
  font-weight: 300;
}

.footer-copy {
  font-size: 10px;
  color: rgba(245, 240, 232, 0.26);
  white-space: nowrap;
}
/* =========================================================
   HOME PAGE CSS
========================================================= */

.home .hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 56px 80px;
  position: relative;
  overflow: hidden;
}

.home .hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("../img/img-hero-pillars-dark.jpg");
  background-size: cover;
  background-position: center;
}

.home .hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 17, 54, 0.82) 0%,
    rgba(0, 17, 54, 0.72) 50%,
    rgba(0, 17, 54, 0.92) 100%
  );
}

.home .hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image:
    linear-gradient(var(--gold) 1px, transparent 1px),
    linear-gradient(90deg, var(--gold) 1px, transparent 1px);
  background-size: 72px 72px;
}

.home .hero-content {
  position: relative;
  z-index: 2;
}

.home .hero-rule {
  width: 1px;
  height: 72px;
  background: linear-gradient(180deg, transparent, #7c0813, transparent);
  margin-bottom: 28px;
  animation: fadeIn 1.2s ease 0.2s both;
}

.home .hero-eyebrow {
  font-size: 9.5px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  animation: slideUp 0.8s ease 0.4s both;
}

.home .hero-headline {
  font-family: var(--serif);
  font-size: clamp(54px, 7vw, 92px);
  font-weight: 300;
  line-height: 1.04;
  color: var(--cream);
  animation: slideUp 0.9s ease 0.5s both;
}

.home .hero-headline em {
  font-style: italic;
  color: var(--gold-light);
}

.home .hero-sub {
  margin-top: 28px;
  font-size: 14px;
  color: rgba(245, 240, 232, 0.48);
  font-weight: 300;
  max-width: 460px;
  line-height: 1.75;
  animation: slideUp 0.9s ease 0.65s both;
}

.home .hero-presence {
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 24px;
  animation: slideUp 0.9s ease 0.8s both;
}

.home .presence-label {
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.home .presence-items {
  display: flex;
}

.home .presence-item {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.55);
  padding: 0 16px;
  border-right: 1px solid var(--border);
  font-weight: 300;
}

.home .presence-item:last-child {
  border-right: none;
}

.home .hero-scroll {
  position: absolute;
  right: 56px;
  bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: fadeIn 1s ease 1.2s both;
}

.home .hero-scroll span {
  font-size: 8px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  writing-mode: vertical-rl;
}

.home .scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(180deg, #7c0813, transparent);
  animation: pulse 2s ease infinite;
}

.home .section-label {
  font-size: 9px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.home .section-title {
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 18px;
}

.home .group-intro {
  background: var(--ink-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.home .group-intro-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.home .group-text p {
  font-size: 14.5px;
  color: rgba(245, 240, 232, 0.55);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 16px;
}

.home .group-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.home .stat-card {
  background: rgba(78, 115, 181, 0.06);
  border: 1px solid var(--border);
  padding: 32px 28px;
  transition: background 0.3s;
}

.home .stat-card:hover {
  background: rgba(78, 115, 181, 0.11);
}

.home .stat-num {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 8px;
}

.home .stat-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.home .pillars {
  background: var(--ink);
}

.home .pillars-header {
  max-width: 1160px;
  margin: 0 auto 60px;
}

.home .pillars-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2px;
}

.home .pillars-grid .pillar-card:nth-child(1) {
  grid-column: span 3;
}

.home .pillars-grid .pillar-card:nth-child(2) {
  grid-column: span 3;
}

.home .pillars-grid .pillar-card:nth-child(3) {
  grid-column: span 2;
}

.home .pillars-grid .pillar-card:nth-child(4) {
  grid-column: span 2;
}

.home .pillars-grid .pillar-card:nth-child(5) {
  grid-column: span 2;
}

.home .stat-num-text {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1.2;
  margin-bottom: 8px;
}

.home .pillar-card {
  position: relative;
  background: rgba(78, 115, 181, 0.06);
  border: 1px solid var(--border);
  padding: 48px 38px 44px;
  transition:
    background 0.4s,
    transform 0.3s;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  display: block;
  color: inherit;
}

.home .pillar-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #7c0813, transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.home .pillar-card:hover::before {
  transform: scaleX(1);
}

.home .pillar-card:hover {
  background: rgba(78, 115, 181, 0.11);
  transform: translateY(-4px);
}

.home .pillar-num {
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--gold);
  margin-bottom: 28px;
  opacity: 0.65;
}

.home .pillar-icon {
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
}

.home .pillar-tagline {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.home .pillar-name {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 16px;
}

.home .pillar-desc {
  font-size: 13px;
  color: rgba(245, 240, 232, 0.48);
  line-height: 1.78;
  font-weight: 300;
  margin-bottom: 36px;
}

.home .pillar-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap 0.2s;
}

.home .pillar-card:hover .pillar-cta {
  gap: 16px;
}

.home .cta-line {
  width: 24px;
  height: 1px;
  background: var(--gold);
  position: relative;
  transition: width 0.2s;
  display: flex;
  align-items: center;
}

.home .pillar-card:hover .cta-line {
  width: 32px;
}

.home .cta-line::after {
  content: "▶";
  font-size: 6px;
  position: absolute;
  right: -6px;
  color: var(--gold);
}

.home .pillar-ext {
  position: absolute;
  top: 22px;
  right: 22px;
  font-size: 8px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border);
  padding: 4px 9px;
  opacity: 0.65;
}

/* =========================================================
   WHY ATOM
========================================================= */

.home .why-atom {
  padding: 100px 56px;

  background: var(--ink-soft);

  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.home .why-atom-inner {
  max-width: 1160px;

  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 88px;

  align-items: center;
}

.home .why-atom-text {
  font-size: 14.5px;

  color: rgba(245, 240, 232, 0.52);

  line-height: 1.85;

  font-weight: 300;

  margin-top: 20px;
}

.home .why-atom-link {
  display: inline-flex;

  align-items: center;

  gap: 12px;

  margin-top: 36px;

  font-size: 10px;

  letter-spacing: 0.24em;

  text-transform: uppercase;

  color: var(--gold);

  text-decoration: none;
}

.home .why-atom-line {
  width: 28px;
  height: 1px;

  background: var(--gold);

  position: relative;

  display: inline-block;
}

.home .why-atom-arrow {
  position: absolute;

  right: -1px;
  top: -3px;

  border: 3px solid transparent;
  border-left: 5px solid var(--gold);
}

.home .why-atom-cards {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.home .why-atom-card {
  background: rgba(78, 115, 181, 0.07);

  border: 1px solid var(--border);

  padding: 32px 36px;

  display: flex;
  gap: 20px;

  align-items: flex-start;
}

.home .why-atom-bar {
  width: 2px;
  height: 40px;

  background: #7c0813;

  flex-shrink: 0;

  opacity: 0.6;

  margin-top: 4px;
}

.home .why-atom-card-title {
  font-family: var(--serif);

  font-size: 18px;

  font-weight: 400;

  color: var(--cream);

  margin-bottom: 8px;
}

.home .why-atom-card-text {
  font-size: 13px;

  color: rgba(245, 240, 232, 0.45);

  line-height: 1.7;

  font-weight: 300;
}

.home .jurisdictions {
  background: #010e2e;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.home .juris-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.home .juris-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 52px;
}

.home .juris-card {
  padding: 38px 30px;
  border: 1px solid var(--border);
  background: rgba(184, 150, 90, 0.03);
  transition: background 0.3s;
}

.home .juris-flag {
  font-size: 26px;
  margin-bottom: 16px;
}

.home .juris-country {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 12px;
}

.home .juris-detail {
  font-size: 12px;
  color: rgba(245, 240, 232, 0.42);
  line-height: 1.72;
  font-weight: 300;
}

.home .contact-cta {
  background: var(--ink-soft);
  border-top: 1px solid var(--border);
  text-align: center;
}

.home .contact-cta-inner {
  max-width: 600px;
  margin: 0 auto;
}

.home .contact-cta h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 20px;
}

.home .contact-cta h2 em {
  font-style: italic;
  color: var(--gold-light);
}

.home .contact-cta p {
  font-size: 14px;
  color: rgba(245, 240, 232, 0.48);
  margin-bottom: 40px;
  line-height: 1.7;
  font-weight: 300;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

.home-popup-overlay {
  position: fixed;

  inset: 0;

  background: rgba(0,0,0,0.72);

  z-index: 99999;

  display: flex;

  align-items: center;
  justify-content: center;

  padding: 24px;

  opacity: 0;
  visibility: hidden;

  transition: all 0.3s ease;
}

.home-popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.home-popup-box {
  position: relative;

  max-width: 760px;

  width: 100%;

  animation: popupFade 0.4s ease;
}

.home-popup-img {
  width: 100%;

  display: block;

  border: 1px solid var(--border);
}

.home-popup-close {
  position: absolute;

  top: -14px;
  right: -14px;

  width: 38px;
  height: 38px;

  border-radius: 50%;

  border: 1px solid var(--border);

  background: #001136;

  color: var(--cream);

  font-size: 22px;

  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: 0.2s;
}

.home-popup-close:hover {
  background: var(--gold);

  color: var(--ink);
}

@keyframes popupFade {

  from {
    opacity: 0;
    transform: scale(0.96);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }

}

/* =========================================================
   ABOUT PAGE CSS
========================================================= */

.about .page-hero {
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 56px 96px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.about .page-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("../img/img-hero-about.jpg");
  background-size: 85%;
  background-position: right center;
}

.about .page-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 17, 54, 0.6) 0%,
    rgba(0, 17, 54, 0.5) 55%,
    rgba(0, 17, 54, 0.75) 100%
  );
}

.about .page-hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.028;
  background-image:
    linear-gradient(var(--gold) 1px, transparent 1px),
    linear-gradient(90deg, var(--gold) 1px, transparent 1px);
  background-size: 72px 72px;
}

.about .hero-content {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
}

.about .breadcrumb {
  font-size: 9px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.about .hero-rule {
  width: 1px;
  height: 64px;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
  margin-bottom: 28px;
}

.about .page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(52px, 6.5vw, 96px);
  font-weight: 300;
  line-height: 1.04;
  color: var(--cream);
  max-width: 820px;
}

.about .hero-desc-row {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  max-width: 860px;
}

.about .hero-desc {
  font-size: 15px;
  color: rgba(245, 240, 232, 0.52);
  line-height: 1.82;
  font-weight: 300;
}

.about .section-label {
  font-size: 9px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.about .section-title {
  font-family: var(--serif);
  font-size: clamp(32px, 3.8vw, 52px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 16px;
}

.about .section-sub {
  font-size: 14px;
  color: rgba(245, 240, 232, 0.48);
  line-height: 1.75;
  font-weight: 300;
  max-width: 580px;
}

.about .story-section {
  padding: 100px 56px;
  background: var(--ink-soft);
  border-bottom: 1px solid var(--border);
}

.about .story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: start;
}

.about .story-left {
  position: sticky;
  top: 120px;
}

.about .story-right p {
  font-size: 15px;
  color: rgba(245, 240, 232, 0.54);
  line-height: 1.88;
  font-weight: 300;
  margin-bottom: 24px;
}

.about .story-right p:last-child {
  margin-bottom: 0;
}

.about .pull-quote {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.35;
  font-style: italic;
  border-left: 2px solid #7c0813;
  padding-left: 28px;
  margin-top: 40px;
}

.about .philosophy-section {
  padding: 100px 56px;
  background: var(--ink);
  border-bottom: 1px solid var(--border);
}

.about .philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 56px;
}

.about .phi-card {
  background: rgba(78, 115, 181, 0.06);
  border: 1px solid var(--border);
  padding: 48px 38px;
  position: relative;
  overflow: hidden;
  transition:
    background 0.3s,
    transform 0.3s;
}

.about .phi-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #7c0813, transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.about .phi-card:hover::before {
  transform: scaleX(1);
}

.about .phi-card:hover {
  background: rgba(78, 115, 181, 0.1);
  transform: translateY(-3px);
}

.about .phi-num {
  font-family: var(--serif);
  font-size: 64px;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.1;
  position: absolute;
  top: 20px;
  right: 24px;
  line-height: 1;
}

.about .phi-icon {
  margin-bottom: 24px;
}

.about .phi-title {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 16px;
  line-height: 1.2;
}

.about .phi-desc {
  font-size: 13.5px;
  color: rgba(245, 240, 232, 0.5);
  line-height: 1.8;
  font-weight: 300;
}

.about .values-section {
  padding: 100px 56px;
  background: var(--ink-soft);
  border-bottom: 1px solid var(--border);
}

.about .values-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: start;
}

.about .values-list {
  list-style: none;
  margin-top: 0;
}

.about .value-item {
  padding: 28px 0;
  border-bottom: 1px solid rgba(184, 150, 90, 0.12);
  display: flex;
  gap: 28px;
  align-items: flex-start;
  transition: padding-left 0.2s;
}

.about .value-item:first-child {
  padding-top: 0;
}

.about .value-item:last-child {
  border-bottom: none;
}

.about .value-item:hover {
  padding-left: 8px;
}

.about .value-num {
  font-family: var(--serif);
  font-size: 13px;
  color: var(--gold);
  opacity: 0.55;
  flex-shrink: 0;
  margin-top: 3px;
  letter-spacing: 0.1em;
}

.about .value-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 8px;
}

.about .value-desc {
  font-size: 13px;
  color: rgba(245, 240, 232, 0.46);
  line-height: 1.75;
  font-weight: 300;
}

.about .values-right p {
  font-size: 15px;
  color: rgba(245, 240, 232, 0.52);
  line-height: 1.88;
  font-weight: 300;
  margin-bottom: 22px;
}

.about .practices-section {
  padding: 100px 56px;
  background: var(--ink);
  border-bottom: 1px solid var(--border);
}

.about .practices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 56px;
}

.about .practice-card {
  background: rgba(78, 115, 181, 0.06);
  border: 1px solid var(--border);
  padding: 44px 36px;
  transition:
    background 0.3s,
    transform 0.3s;
  text-decoration: none;
  color: inherit;
  display: block;
  position: relative;
  overflow: hidden;
}

.about .practice-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #7c0813, transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.about .practice-card:hover::before {
  transform: scaleX(1);
}

.about .practice-card:hover {
  background: rgba(78, 115, 181, 0.11);
  transform: translateY(-4px);
}

.about .practice-num {
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--gold);
  margin-bottom: 24px;
  opacity: 0.6;
}

.about .practice-name {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 10px;
  line-height: 1.2;
}

.about .practice-tagline {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  opacity: 0.85;
}

.about .practice-desc {
  font-size: 13px;
  color: rgba(245, 240, 232, 0.47);
  line-height: 1.78;
  font-weight: 300;
  margin-bottom: 30px;
}

.about .practice-link {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: gap 0.2s;
}

.about .practice-card:hover .practice-link {
  gap: 16px;
}

.about .link-line {
  width: 22px;
  height: 1px;
  background: var(--gold);
  position: relative;
  transition: width 0.2s;
}

.about .practice-card:hover .link-line {
  width: 30px;
}

.about .link-line::after {
  content: "▶";
  font-size: 6px;
  position: absolute;
  right: -7px;
  top: -4px;
  color: var(--gold);
}

.about .practice-ext {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border);
  padding: 3px 8px;
  opacity: 0.6;
}

.about .jurisdictions-section {
  padding: 100px 56px;
  background: #010e2e;
  border-bottom: 1px solid var(--border);
}

.about .juris-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 56px;
}

.about .juris-card {
  padding: 44px 32px;
  border: 1px solid var(--border);
  background: rgba(184, 150, 90, 0.03);
  transition: background 0.3s;
}

.about .juris-flag {
  font-size: 28px;
  margin-bottom: 18px;
}

.about .juris-name {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 8px;
}

.about .juris-role {
  font-size: 9.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  opacity: 0.8;
}

.about .juris-detail {
  font-size: 12.5px;
  color: rgba(245, 240, 232, 0.42);
  line-height: 1.75;
  font-weight: 300;
}

.about .independence-section {
  padding: 100px 56px;
  background: var(--ink-soft);
  border-bottom: 1px solid var(--border);
}

.about .independence-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}

.about .independence-text p {
  font-size: 15px;
  color: rgba(245, 240, 232, 0.52);
  line-height: 1.88;
  font-weight: 300;
  margin-bottom: 22px;
}

.about .independence-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.about .ind-stat {
  background: rgba(78, 115, 181, 0.07);
  border: 1px solid var(--border);
  padding: 36px 30px;
  transition: background 0.3s;
}

.about .ind-stat:hover {
  background: rgba(78, 115, 181, 0.12);
}

.about .ind-stat-num {
  font-family: var(--serif);
  font-size: 46px;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 10px;
}

.about .ind-stat-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.55;
}

.about .cta-section {
  padding: 100px 56px;
  background: var(--ink);
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.about .cta-inner {
  max-width: 580px;
  margin: 0 auto;
}

.about .cta-inner h2 {
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 20px;
  line-height: 1.1;
}

.about .cta-inner p {
  font-size: 14px;
  color: rgba(245, 240, 232, 0.45);
  margin-bottom: 44px;
  line-height: 1.78;
  font-weight: 300;
}

.about .cta-btns {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.about .btn-ghost {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border);
  padding: 15px 36px;
  text-decoration: none;
  transition: background 0.2s;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* =========================================================
   AIB PAGE CSS
========================================================= */

.aib .page-hero {
  padding: 160px 56px 100px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.aib .page-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("../img/img-hero-bank.jpg");
  background-size: cover;
  background-position: center;
}

.aib .page-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 17, 54, 0.85) 0%,
    rgba(0, 17, 54, 0.8) 40%,
    rgba(0, 17, 54, 0.95) 100%
  );
}

.aib .page-hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image:
    linear-gradient(var(--gold) 1px, transparent 1px),
    linear-gradient(90deg, var(--gold) 1px, transparent 1px);
  background-size: 72px 72px;
}

.aib .page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.aib .breadcrumb {
  font-size: 9px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.aib .page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(44px, 5.5vw, 76px);
  font-weight: 300;
  line-height: 1.06;
  color: var(--cream);
}

.aib .page-hero-tagline {
  margin-top: 20px;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
}

.aib .page-hero-desc {
  font-size: 15px;
  color: rgba(245, 240, 232, 0.55);
  line-height: 1.8;
  font-weight: 300;
}

.aib .page-hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 32px;
}

.aib .hero-stat {
  background: rgba(78, 115, 181, 0.07);
  border: 1px solid var(--border);
  padding: 28px 24px;
}

.aib .hero-stat-num {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 6px;
}

.aib .hero-stat-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.5;
}

.aib .section-label {
  font-size: 9px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.aib .section-title {
  font-family: var(--serif);
  font-size: clamp(32px, 3.8vw, 50px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 16px;
}

.aib .section-sub {
  font-size: 14px;
  color: rgba(245, 240, 232, 0.5);
  line-height: 1.75;
  font-weight: 300;
  max-width: 600px;
}

.aib .edge-section {
  background: var(--ink-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.aib .edge-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 52px;
}

.aib .edge-col {
  padding: 48px 44px;
}

.aib .edge-col-conventional {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.aib .edge-col-atom {
  background: rgba(78, 115, 181, 0.08);
  border: 1px solid var(--border);
}

.aib .edge-col-title {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 36px;
  font-weight: 400;
}

.aib .edge-col-conventional .edge-col-title {
  color: rgba(245, 240, 232, 0.35);
}

.aib .edge-col-atom .edge-col-title {
  color: var(--gold);
}

.aib .edge-item {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(245, 240, 232, 0.06);
}

.aib .edge-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.aib .edge-item-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

.aib .edge-col-conventional .edge-item-title {
  color: rgba(245, 240, 232, 0.5);
}

.aib .edge-item-desc {
  font-size: 13px;
  color: rgba(245, 240, 232, 0.42);
  line-height: 1.7;
  font-weight: 300;
}

.aib .edge-col-atom .edge-item-desc {
  color: rgba(245, 240, 232, 0.58);
}

.aib .capabilities-section {
  background: var(--ink);
}

.aib .capabilities-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 52px;
}

.aib .cap-tab {
  background: rgba(78, 115, 181, 0.06);
  border: 1px solid var(--border);
  padding: 40px 36px;
  transition: background 0.3s;
  cursor: default;
}

.aib .cap-tab:hover {
  background: rgba(78, 115, 181, 0.1);
}

.aib .cap-tab-num {
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0.6;
}

.aib .cap-tab-stage {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  opacity: 0.8;
}

.aib .cap-tab-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 14px;
  line-height: 1.25;
}

.aib .cap-tab-desc {
  font-size: 12.5px;
  color: rgba(245, 240, 232, 0.45);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 28px;
}

.aib .cap-services {
  list-style: none;
}

.aib .cap-services li {
  font-size: 12.5px;
  color: rgba(245, 240, 232, 0.55);
  padding: 9px 0;
  border-bottom: 1px solid rgba(78, 115, 181, 0.12);
  font-weight: 300;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.aib .cap-services li:last-child {
  border-bottom: none;
}

.aib .cap-services li::before {
  content: "—";
  color: var(--gold);
  opacity: 0.6;
  flex-shrink: 0;
  font-size: 11px;
  margin-top: 2px;
}

.aib .corridors-section {
  background: #010e2e;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.aib .corridors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 52px;
}

.aib .corridor-card {
  padding: 40px 30px;
  border: 1px solid var(--border);
  background: rgba(184, 150, 90, 0.03);
  transition: background 0.3s;
}

.aib .corridor-card:hover {
  background: rgba(78, 115, 181, 0.1);
}

.aib .corridor-flag {
  font-size: 26px;
  margin-bottom: 14px;
}

.aib .corridor-label {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  opacity: 0.8;
}

.aib .corridor-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 14px;
}

.aib .corridor-role {
  font-size: 12px;
  font-weight: 500;
  color: rgba(245, 240, 232, 0.7);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}

.aib .corridor-detail {
  font-size: 12px;
  color: rgba(245, 240, 232, 0.4);
  line-height: 1.7;
  font-weight: 300;
}

.aib .experience-section {
  background: var(--ink-soft);
  border-bottom: 1px solid var(--border);
}

.aib .exp-tabs {
  display: flex;
  gap: 2px;
  margin-bottom: 32px;
}

.aib .exp-tab-btn {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 12px 24px;
  border: 1px solid var(--border);
  background: transparent;
  color: rgba(245, 240, 232, 0.45);
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--sans);
}

.aib .exp-tab-btn.active,
.aib .exp-tab-btn:hover {
  background: rgba(78, 115, 181, 0.12);
  color: var(--gold);
  border-color: var(--gold);
}

.aib .exp-table {
  width: 100%;
  border-collapse: collapse;
}

.aib .exp-table thead tr {
  background: rgba(78, 115, 181, 0.1);
  border-bottom: 1px solid var(--border);
}

.aib .exp-table th {
  font-size: 9.5px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 14px 20px;
  text-align: left;
  font-weight: 400;
}

.aib .exp-table tbody tr {
  border-bottom: 1px solid rgba(78, 115, 181, 0.1);
  transition: background 0.2s;
}

.aib .exp-table tbody tr:hover {
  background: rgba(78, 115, 181, 0.06);
}

.aib .exp-table td {
  font-size: 13px;
  color: rgba(245, 240, 232, 0.6);
  padding: 14px 20px;
  font-weight: 300;
  line-height: 1.5;
}

.aib .exp-table td:first-child {
  color: rgba(245, 240, 232, 0.8);
  font-weight: 400;
}

.aib .exp-table td:last-child {
  color: var(--gold-light);
  font-weight: 400;
}

.aib .exp-disclaimer {
  margin-top: 20px;
  font-size: 11px;
  color: rgba(245, 240, 232, 0.28);
  font-style: italic;
  line-height: 1.6;
}

.aib .exp-panel {
  display: none;
}

.aib .exp-panel.active {
  display: block;
}

.aib .leadership-section {
  background: var(--ink);
}

.aib .leadership-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 52px;
}

.aib .leader-card {
  background: rgba(78, 115, 181, 0.06);
  border: 1px solid var(--border);
  padding: 48px 40px;
  transition: background 0.3s;
}

.aib .leader-photo-placeholder {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(78, 115, 181, 0.12);
  border: 1px solid var(--border);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.aib .leader-photo-placeholder span {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--gold);
  opacity: 0.6;
}

.aib .leader-name {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 6px;
}

.aib .leader-title {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.aib .leader-bio {
  font-size: 13px;
  color: rgba(245, 240, 232, 0.5);
  line-height: 1.78;
  font-weight: 300;
  margin-bottom: 24px;
}

.aib .credential-tag {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(245, 240, 232, 0.4);
  border: 1px solid rgba(78, 115, 181, 0.22);
  padding: 4px 12px;
}

.aib .senior-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 2px;
}

.aib .senior-card {
  background: rgba(184, 150, 90, 0.03);
  border: 1px solid var(--border);
  padding: 36px 36px;
  transition: background 0.3s;
  display: flex;
  gap: 28px;
}

.aib .senior-card:hover {
  background: rgba(78, 115, 181, 0.09);
}

.aib .senior-photo-placeholder {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(78, 115, 181, 0.1);
  border: 1px solid var(--border);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.aib .senior-photo-placeholder span {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--gold);
  opacity: 0.5;
}

.aib .senior-name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 4px;
}

.aib .senior-title {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  opacity: 0.8;
}

.aib .senior-bio {
  font-size: 12.5px;
  color: rgba(245, 240, 232, 0.45);
  line-height: 1.75;
  font-weight: 300;
}

.aib .engagement-section {
  background: #010e2e;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.aib .engagement-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 52px;
}

.aib .eng-step {
  background: rgba(78, 115, 181, 0.06);
  border: 1px solid var(--border);
  padding: 44px 36px;
  position: relative;
  transition: background 0.3s;
}

.aib .eng-step:hover {
  background: rgba(78, 115, 181, 0.1);
}

.aib .eng-step-num {
  font-family: var(--serif);
  font-size: 64px;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.12;
  position: absolute;
  top: 24px;
  right: 28px;
  line-height: 1;
}

.aib .eng-step-title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 14px;
}

.aib .eng-step-desc {
  font-size: 13px;
  color: rgba(245, 240, 232, 0.48);
  line-height: 1.75;
  font-weight: 300;
}

.aib .cta-section {
  background: var(--ink-soft);
  text-align: center;
  padding: 100px 56px;
}

.aib .cta-inner {
  max-width: 560px;
  margin: 0 auto;
}

.aib .cta-inner h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 18px;
}

.aib .cta-inner p {
  font-size: 14px;
  color: rgba(245, 240, 232, 0.45);
  margin-bottom: 40px;
  line-height: 1.75;
  font-weight: 300;
}

.aib .btn-ghost {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border);
  padding: 15px 36px;
  text-decoration: none;
  margin-left: 16px;
  transition: background 0.2s;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* =========================================================
   AMC PAGE CSS
========================================================= */

.amc .hero {
  min-height: 90vh;
  display: flex;
  align-items: flex-end;
  padding: 0 56px 80px;
  position: relative;
  overflow: hidden;
}

.amc .hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("../img/img-hero-amc.jpg");
  background-size: cover;
  background-position: center;
}

.amc .hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(0, 17, 54, 0.85) 40%,
    rgba(0, 17, 54, 0.55) 100%
  );
}

.amc .hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image:
    linear-gradient(var(--gold) 1px, transparent 1px),
    linear-gradient(90deg, var(--gold) 1px, transparent 1px);
  background-size: 72px 72px;
}

.amc .hero-content {
  position: relative;
  z-index: 2;
  max-width: 660px;
}

.amc .breadcrumb {
  font-size: 9px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.amc .hero-tagline {
  font-size: 10px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.amc .hero h1 {
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 84px);
  font-weight: 300;
  line-height: 1.04;
  color: var(--cream);
  margin-bottom: 28px;
}

.amc .hero-desc {
  font-size: 15px;
  color: rgba(245, 240, 232, 0.55);
  line-height: 1.82;
  font-weight: 300;
  max-width: 540px;
}

.amc .hero-right {
  position: absolute;
  right: 56px;
  bottom: 80px;
  z-index: 2;
  max-width: 400px;
}

.amc .hero-right p {
  font-size: 14px;
  color: rgba(245, 240, 232, 0.52);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 16px;
}

.amc .section-label {
  font-size: 9px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.amc .section-title {
  font-family: var(--serif);
  font-size: clamp(32px, 3.8vw, 52px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 18px;
}

.amc .section-sub {
  font-size: 14px;
  color: rgba(245, 240, 232, 0.48);
  line-height: 1.75;
  font-weight: 300;
  max-width: 600px;
  margin-bottom: 52px;
}

.amc .intro-section {
  background: var(--ink-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.amc .intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.amc .intro-text p {
  font-size: 14.5px;
  color: rgba(245, 240, 232, 0.55);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 18px;
}

.amc .strategies-section {
  background: var(--ink);
}

.amc .strategies-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2px;
}

.amc .strategies-grid .strategy-card:nth-child(1) {
  grid-column: span 3;
}

.amc .strategies-grid .strategy-card:nth-child(2) {
  grid-column: span 3;
}

.amc .strategies-grid .strategy-card:nth-child(3) {
  grid-column: span 2;
}

.amc .strategies-grid .strategy-card:nth-child(4) {
  grid-column: span 2;
}

.amc .strategies-grid .strategy-card:nth-child(5) {
  grid-column: span 2;
}

.amc .strategy-card {
  background: rgba(78, 115, 181, 0.06);
  border: 1px solid var(--border);
  padding: 44px 36px;
  transition:
    background 0.3s,
    transform 0.3s;
  position: relative;
  overflow: hidden;
}

.amc .strategy-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #7c0813, transparent);
  transform: scaleX(0);
  transition: transform 0.4s;
}

.amc .strategy-card:hover::before {
  transform: scaleX(1);
}

.amc .strategy-card:hover {
  background: rgba(78, 115, 181, 0.11);
  transform: translateY(-3px);
}

.amc .strategy-num {
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0.6;
}

.amc .strategy-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 14px;
}

.amc .strategy-desc {
  font-size: 13px;
  color: rgba(245, 240, 232, 0.48);
  line-height: 1.78;
  font-weight: 300;
}

.amc .approach-section {
  background: var(--ink-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.amc .amc-capability-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.amc .amc-capability-card {
  background: rgba(78, 115, 181, 0.07);
  border: 1px solid var(--border);
  padding: 32px 28px;
}
.amc .amc-capability-title {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 8px;
}
.amc .amc-capability-text {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.7;
}

.amc .approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.amc .approach-points {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.amc .approach-point {
  background: rgba(78, 115, 181, 0.06);
  border: 1px solid var(--border);
  padding: 28px 32px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.amc .approach-bar {
  width: 2px;
  height: 38px;
  background: #7c0813;
  flex-shrink: 0;
  opacity: 0.65;
  margin-top: 3px;
}

.amc .approach-name {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 6px;
}

.amc .approach-desc {
  font-size: 13px;
  color: rgba(245, 240, 232, 0.48);
  line-height: 1.7;
  font-weight: 300;
}

.amc .asset-section {
  background: #010e2e;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.amc .asset-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 48px;
}

.amc .asset-card {
  padding: 32px 28px;
  border: 1px solid var(--border);
  background: rgba(78, 115, 181, 0.04);
  transition: background 0.3s;
}

.amc .asset-card:hover {
  background: rgba(78, 115, 181, 0.1);
}

.amc .asset-name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 10px;
}

.amc .asset-desc {
  font-size: 12px;
  color: rgba(245, 240, 232, 0.4);
  line-height: 1.7;
  font-weight: 300;
}

.amc .serve-section {
  background: var(--ink-soft);
  border-bottom: 1px solid var(--border);
}

.amc .serve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 48px;
}

.amc .serve-card {
  padding: 36px 30px;
  border: 1px solid var(--border);
  background: rgba(78, 115, 181, 0.06);
  transition: background 0.3s;
}

.amc .serve-card:hover {
  background: rgba(78, 115, 181, 0.11);
}

.amc .serve-name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 10px;
}

.amc .serve-desc {
  font-size: 13px;
  color: rgba(245, 240, 232, 0.44);
  line-height: 1.72;
  font-weight: 300;
}

.amc .cta-section {
  background: var(--ink-soft);
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 100px 56px;
}

.amc .cta-inner {
  max-width: 560px;
  margin: 0 auto;
}

.amc .cta-inner h2 {
  font-family: var(--serif);
  font-size: clamp(30px, 3.8vw, 50px);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 18px;
}

.amc .cta-inner p {
  font-size: 14px;
  color: rgba(245, 240, 232, 0.45);
  margin-bottom: 40px;
  line-height: 1.75;
  font-weight: 300;
}

.amc .btn-ghost {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border);
  padding: 15px 36px;
  text-decoration: none;
  margin-left: 16px;
  transition: background 0.2s;
}

/* =========================================================
   CONTACT PAGE CSS
========================================================= */

.contact .page-hero {
  padding: 160px 56px 96px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.contact .page-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("../img/img-hero-pillars.jpg");
  background-size: cover;
  background-position: center;
}

.contact .page-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 17, 54, 0.8) 0%,
    rgba(0, 17, 54, 0.7) 55%,
    rgba(0, 17, 54, 0.92) 100%
  );
}

.contact .page-hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.028;
  background-image:
    linear-gradient(var(--gold) 1px, transparent 1px),
    linear-gradient(90deg, var(--gold) 1px, transparent 1px);
  background-size: 72px 72px;
}

.contact .hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: end;
}

.contact .breadcrumb {
  font-size: 9px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.contact .page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(44px, 5.5vw, 78px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--cream);
}

.contact .hero-right p {
  font-size: 15px;
  color: rgba(245, 240, 232, 0.5);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 20px;
}

.contact .hero-email {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  text-decoration: none;
  border-bottom: 1px solid rgba(78, 115, 181, 0.35);
  padding-bottom: 4px;
  transition: border-color 0.2s;
}

.contact .hero-email:hover {
  border-color: var(--gold);
}

.contact .contact-section {
  padding: 96px 56px;
  background: var(--ink-soft);
  border-bottom: 1px solid var(--border);
}

.contact .contact-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact .form-label-section {
  font-size: 9px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact .form-label-section::before {
  content: "";
  display: block;
  width: 26px;
  height: 1px;
  background: #7c0813;
}

.contact .form-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 10px;
  line-height: 1.15;
}

.contact .form-title em {
  font-style: italic;
  color: var(--gold-light);
}

.contact .form-desc {
  font-size: 13.5px;
  color: rgba(245, 240, 232, 0.46);
  line-height: 1.78;
  font-weight: 300;
  margin-bottom: 40px;
}

.contact .contact-form {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.contact .form-group {
  display: flex;
  flex-direction: column;
}

.contact .form-group label {
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 14px 18px 6px;
  background: rgba(78, 115, 181, 0.06);
  border: 1px solid var(--border);
  border-bottom: none;
}

.contact .form-group input,
.contact .form-group select,
.contact .form-group textarea {
  font-family: var(--sans);
  font-size: 13.5px;
  color: var(--cream);
  font-weight: 300;
  background: rgba(78, 115, 181, 0.06);
  border: 1px solid var(--border);
  border-top: none;
  padding: 10px 18px 16px;
  outline: none;
  transition:
    background 0.2s,
    border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.contact .form-group input::placeholder,
.contact .form-group textarea::placeholder {
  color: rgba(245, 240, 232, 0.22);
}

.contact .form-group input:focus,
.contact .form-group select:focus,
.contact .form-group textarea:focus {
  background: rgba(78, 115, 181, 0.1);
  border-color: rgba(78, 115, 181, 0.5);
}

.contact .form-group select {
  cursor: pointer;
}

.contact .form-group select option {
  background: #1a1a18;
  color: var(--cream);
}

.contact .form-group textarea {
  resize: none;
  min-height: 120px;
  line-height: 1.7;
}

.contact .form-consent {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 0 4px;
}

.contact .form-consent input[type="checkbox"] {
  width: 14px;
  height: 14px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--gold);
  cursor: pointer;
}

.contact .form-consent label {
  font-size: 11.5px;
  color: rgba(245, 240, 232, 0.38);
  line-height: 1.65;
  cursor: pointer;
}

.contact .form-consent a {
  color: var(--gold);
  text-decoration: none;
}

.contact .btn-submit {
  margin-top: 2px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #f5f0e8;
  background: var(--gold);
  border: none;
  padding: 18px 44px;
  cursor: pointer;
  transition: background 0.2s;
  width: 100%;
}

.contact .btn-submit:hover {
  background: var(--gold-light);
}

.contact .map-side {
  position: sticky;
  top: 120px;
}

.contact .map-label {
  font-size: 9px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact .map-label::before {
  content: "";
  display: block;
  width: 26px;
  height: 1px;
  background: #7c0813;
}

.contact .map-title {
  font-family: var(--serif);
  font-size: clamp(24px, 2.8vw, 38px);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 32px;
  line-height: 1.15;
}

.contact .map-title em {
  font-style: italic;
  color: var(--gold-light);
}

.contact .map-container {
  background: rgba(184, 150, 90, 0.03);
  border: 1px solid var(--border);
  padding: 32px;
  margin-bottom: 24px;
  position: relative;
}

.contact .map-svg {
  width: 100%;
  height: auto;
  display: block;
}

.contact .pin-tooltip {
  position: absolute;
  background: rgba(13, 13, 13, 0.95);
  border: 1px solid var(--border);
  padding: 10px 16px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
  white-space: nowrap;
  z-index: 10;
}

.contact .pin-tooltip.visible {
  opacity: 1;
}

.contact .pin-tooltip-name {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--cream);
  margin-bottom: 2px;
}

.contact .pin-tooltip-label {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact .location-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.contact .location-item {
  background: rgba(78, 115, 181, 0.06);
  border: 1px solid var(--border);
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: background 0.2s;
  cursor: default;
}

.contact .location-item:hover {
  background: rgba(78, 115, 181, 0.11);
}

.contact .location-flag {
  font-size: 22px;
  flex-shrink: 0;
}

.contact .location-name {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
  color: var(--cream);
}

.contact .location-region {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 2px;
}

.contact .email-section {
  padding: 72px 56px;
  background: var(--ink);
  border-bottom: 1px solid var(--border);
}

.contact .email-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.contact .email-text h3 {
  font-family: var(--serif);
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 8px;
}

.contact .email-text h3 em {
  font-style: italic;
  color: var(--gold-light);
}

.contact .email-text p {
  font-size: 13.5px;
  color: rgba(245, 240, 232, 0.45);
  font-weight: 300;
}

.contact .email-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 18px;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  text-decoration: none;
  border: 1px solid var(--border);
  padding: 18px 36px;
  transition: all 0.2s;
  white-space: nowrap;
}

.contact .email-link:hover {
  background: var(--gold-muted);
  border-color: var(--gold);
}

.contact .email-link svg {
  flex-shrink: 0;
}

.contact .form-success {
  display: none;
  text-align: center;
  padding: 60px 40px;
  border: 1px solid var(--border);
  background: rgba(78, 115, 181, 0.07);
}

.contact .form-success.visible {
  display: block;
}

.contact .form-success-icon {
  font-size: 32px;
  margin-bottom: 20px;
}

.contact .form-success h3 {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 12px;
}

.contact .form-success p {
  font-size: 13.5px;
  color: rgba(245, 240, 232, 0.5);
  line-height: 1.75;
  font-weight: 300;
}

/* =========================================================
   ESTATE PAGE CSS
========================================================= */

.estate .section-label {
  font-size: 9px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.estate .section-title {
  font-family: var(--serif);
  font-size: clamp(32px, 3.8vw, 50px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 16px;
}

.estate .section-sub {
  font-size: 14px;
  color: rgba(245, 240, 232, 0.5);
  line-height: 1.75;
  font-weight: 300;
  max-width: 600px;
}

.estate .page-hero {
  padding: 160px 56px 100px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.estate .page-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("../img/img-hero-family.jpg");
  background-size: cover;
  background-position: center;
}

.estate .page-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 17, 54, 0.8) 0%,
    rgba(0, 17, 54, 0.7) 55%,
    rgba(0, 17, 54, 0.92) 100%
  );
}

.estate .page-hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image:
    linear-gradient(var(--gold) 1px, transparent 1px),
    linear-gradient(90deg, var(--gold) 1px, transparent 1px);
  background-size: 72px 72px;
}

.estate .page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.estate .breadcrumb {
  font-size: 9px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.estate .page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(44px, 5.5vw, 76px);
  font-weight: 300;
  line-height: 1.06;
  color: var(--cream);
}

.estate .page-hero-tagline {
  margin-top: 20px;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
}

.estate .page-hero-desc {
  font-size: 15px;
  color: rgba(245, 240, 232, 0.55);
  line-height: 1.85;
  font-weight: 300;
}

.estate .hero-divider {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 28px 0;
}

.estate .philosophy-section {
  background: var(--ink-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.estate .philosophy-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.estate .philosophy-text p {
  font-size: 15px;
  color: rgba(245, 240, 232, 0.55);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 20px;
}

.estate .philosophy-pull {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.3;
  font-style: italic;
  border-left: 2px solid #7c0813;
  padding-left: 28px;
}

.estate .services-section {
  background: var(--ink);
}

.estate .services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 52px;
}

.estate .service-card::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #7c0813, transparent);
  transform: scaleX(0);
  transition: transform 0.4s;
  margin-bottom: 0;
  position: relative;
  top: -44px;
  margin-bottom: -2px;
}

.estate .service-num {
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--gold);
  margin-bottom: 22px;
  opacity: 0.6;
}

.estate .service-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 20px;
}

.estate .service-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 14px;
  line-height: 1.2;
}

.estate .crossborder-section {
  background: var(--ink-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.estate .crossborder-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.estate .crossborder-text p {
  font-size: 14.5px;
  color: rgba(245, 240, 232, 0.52);
  line-height: 1.82;
  font-weight: 300;
  margin-bottom: 18px;
}

.estate .challenge-list {
  list-style: none;
  margin-top: 32px;
}

.estate .challenge-item {
  display: flex;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(78, 115, 181, 0.12);
  align-items: flex-start;
}

.estate .challenge-item:last-child {
  border-bottom: none;
}

.estate .challenge-icon {
  width: 32px;
  height: 32px;
  background: rgba(78, 115, 181, 0.1);
  border: 1px solid var(--border);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.estate .challenge-icon span {
  font-size: 14px;
}

.estate .challenge-title {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 4px;
}

.estate .challenge-desc {
  font-size: 12.5px;
  color: rgba(245, 240, 232, 0.42);
  line-height: 1.65;
  font-weight: 300;
}

.estate .serve-section {
  background: var(--ink);
}

.estate .serve-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 52px;
}

.estate .serve-card {
  background: rgba(78, 115, 181, 0.06);
  border: 1px solid var(--border);
  padding: 40px 36px;
  transition: background 0.3s;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: start;
}

.estate .serve-card:hover {
  background: rgba(78, 115, 181, 0.1);
}

.estate .serve-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(78, 115, 181, 0.1);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.estate .serve-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 10px;
}

.estate .serve-desc {
  font-size: 13px;
  color: rgba(245, 240, 232, 0.44);
  line-height: 1.72;
  font-weight: 300;
}

.estate .jurisdictions-section {
  background: #010e2e;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.estate .jurisdictions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 52px;
}

.estate .juris-card {
  padding: 40px 30px;
  border: 1px solid var(--border);
  background: rgba(184, 150, 90, 0.03);
  transition: background 0.3s;
}

.estate .juris-flag {
  font-size: 26px;
  margin-bottom: 14px;
}

.estate .juris-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 10px;
}

.estate .juris-role {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  opacity: 0.8;
}

.estate .juris-detail {
  font-size: 12px;
  color: rgba(245, 240, 232, 0.4);
  line-height: 1.72;
  font-weight: 300;
}

.estate .cta-section {
  background: var(--ink-soft);
  text-align: center;
}

.estate .cta-inner {
  max-width: 560px;
  margin: 0 auto;
}

.estate .cta-inner h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 18px;
}

.estate .cta-inner p {
  font-size: 14px;
  color: rgba(245, 240, 232, 0.45);
  margin-bottom: 40px;
  line-height: 1.75;
  font-weight: 300;
}

.estate .btn-ghost {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border);
  padding: 15px 36px;
  text-decoration: none;
  margin-left: 16px;
  transition: background 0.2s;
}

/* =========================================================
   MFO PAGE CSS
========================================================= */

.mfo .hero {
  min-height: 90vh;
  display: flex;
  align-items: flex-end;
  padding: 0 56px 80px;
  position: relative;
  overflow: hidden;
}

.mfo .hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("../img/img-hero-mfo.jpg");
  background-size: 55% 80%;
  background-position: left 30%;
  background-repeat: no-repeat;
}

.mfo .hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(0, 17, 54, 0.55) 30%,
    rgba(0, 17, 54, 0.82) 70%,
    rgba(0, 17, 54, 0.95) 100%
  );
}

.mfo .hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image:
    linear-gradient(var(--gold) 1px, transparent 1px),
    linear-gradient(90deg, var(--gold) 1px, transparent 1px);
  background-size: 72px 72px;
}

.mfo .hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.mfo .breadcrumb {
  font-size: 9px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.mfo .hero-tagline {
  font-size: 10px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.mfo .hero h1 {
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 84px);
  font-weight: 300;
  line-height: 1.04;
  color: var(--cream);
  margin-bottom: 28px;
}

.mfo .hero-desc {
  font-size: 15px;
  color: rgba(245, 240, 232, 0.55);
  line-height: 1.82;
  font-weight: 300;
  max-width: 560px;
  margin-bottom: 40px;
}

.mfo .hero-right {
  position: absolute;
  right: 56px;
  top: 160px;
  z-index: 2;
  max-width: 420px;
}

.mfo .hero-right p {
  font-size: 14px;
  color: rgba(245, 240, 232, 0.52);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 18px;
}

.mfo .section-label {
  font-size: 9px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.mfo .section-title {
  font-family: var(--serif);
  font-size: clamp(32px, 3.8vw, 52px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 18px;
}

.mfo .section-sub {
  font-size: 14px;
  color: rgba(245, 240, 232, 0.48);
  line-height: 1.75;
  font-weight: 300;
  max-width: 600px;
  margin-bottom: 52px;
}

.mfo .intro-section {
  background: var(--ink-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.mfo .intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.mfo .intro-text p {
  font-size: 14.5px;
  color: rgba(245, 240, 232, 0.55);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 18px;
}

.mfo .services-section {
  background: var(--ink);
}

.mfo .services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.mfo .service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #7c0813, transparent);
  transform: scaleX(0);
  transition: transform 0.4s;
}

.mfo .service-num {
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0.6;
}

.mfo .service-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 14px;
}

.mfo .cio-section {
  background: var(--ink-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.mfo .cio-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 72px;
  align-items: start;
}

.mfo .cio-card {
  background: rgba(78, 115, 181, 0.07);
  border: 1px solid var(--border);
  padding: 44px 40px;
}

.mfo .cio-photo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 1px solid var(--border);
  margin-bottom: 24px;
  display: block;
}

.mfo .cio-initials {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: rgba(78, 115, 181, 0.12);
  border: 1px solid var(--border);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mfo .cio-initials span {
  font-family: var(--serif);
  font-size: 32px;
  color: var(--gold);
  opacity: 0.7;
}

.mfo .cio-name {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 6px;
}

.mfo .cio-title {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.mfo .cio-divider {
  width: 32px;
  height: 1px;
  background: var(--border);
  margin-bottom: 20px;
}

.mfo .cio-bio {
  font-size: 13.5px;
  color: rgba(245, 240, 232, 0.52);
  line-height: 1.82;
  font-weight: 300;
}

.mfo .cio-detail h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--cream);
  margin: 0 0 14px;
}

.mfo .cio-detail p {
  font-size: 14px;
  color: rgba(245, 240, 232, 0.52);
  line-height: 1.82;
  font-weight: 300;
  margin-bottom: 20px;
}

.mfo .expertise-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.mfo .expertise-item {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(245, 240, 232, 0.5);
  background: rgba(78, 115, 181, 0.08);
  border: 1px solid rgba(184, 150, 90, 0.14);
  padding: 5px 14px;
}

.mfo .serve-section {
  background: #010e2e;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.mfo .serve-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 48px;
}

.mfo .serve-card {
  padding: 36px 28px;
  border: 1px solid var(--border);
  background: rgba(78, 115, 181, 0.04);
  transition: background 0.3s;
}

.mfo .serve-card:hover {
  background: rgba(78, 115, 181, 0.1);
}

.mfo .serve-icon {
  font-size: 26px;
  margin-bottom: 16px;
}

.mfo .serve-name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 12px;
}

.mfo .serve-desc {
  font-size: 12.5px;
  color: rgba(245, 240, 232, 0.42);
  line-height: 1.72;
  font-weight: 300;
}

.mfo .diff-section {
  background: var(--ink-soft);
  border-bottom: 1px solid var(--border);
}

.mfo .diff-grid {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mfo .diff-row {
  background: rgba(78, 115, 181, 0.06);
  border: 1px solid var(--border);
  padding: 32px 36px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: background 0.3s;
}

.mfo .diff-row:hover {
  background: rgba(78, 115, 181, 0.11);
}

.mfo .diff-bar {
  width: 2px;
  height: 44px;
  background: #7c0813;
  flex-shrink: 0;
  opacity: 0.65;
  margin-top: 4px;
}

.mfo .diff-name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 8px;
}

.mfo .diff-desc {
  font-size: 13.5px;
  color: rgba(245, 240, 232, 0.48);
  line-height: 1.75;
  font-weight: 300;
}

.mfo .cta-section {
  background: var(--ink-soft);
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 100px 56px;
}

.mfo .cta-inner {
  max-width: 560px;
  margin: 0 auto;
}

.mfo .cta-inner h2 {
  font-family: var(--serif);
  font-size: clamp(30px, 3.8vw, 50px);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 18px;
}

.mfo .cta-inner p {
  font-size: 14px;
  color: rgba(245, 240, 232, 0.45);
  margin-bottom: 40px;
  line-height: 1.75;
  font-weight: 300;
}

.mfo .btn-ghost {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border);
  padding: 15px 36px;
  text-decoration: none;
  margin-left: 16px;
  transition: background 0.2s;
}

/* =========================================================
   NEWS PAGE CSS
========================================================= */

.news .page-hero {
  padding: 160px 56px 88px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.news .page-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #001136 0%, #011142 100%);
}

.news .page-hero-bg::after {
  display: none;
}

.news .page-hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.028;
  background-image:
    linear-gradient(var(--gold) 1px, transparent 1px),
    linear-gradient(90deg, var(--gold) 1px, transparent 1px);
  background-size: 72px 72px;
}

.news .hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1160px;
  margin: 0 auto;
}

.news .breadcrumb {
  font-size: 9px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.news .page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(44px, 5.5vw, 78px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--cream);
  max-width: 700px;
}

.news .page-hero-desc {
  margin-top: 22px;
  font-size: 15px;
  color: rgba(245, 240, 232, 0.48);
  line-height: 1.8;
  font-weight: 300;
  max-width: 520px;
}

.news .news-section {
  padding: 88px 56px;
  background: var(--ink-soft);
  border-bottom: 1px solid var(--border);
}

.news .news-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.news .section-label {
  font-size: 9px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.news .featured-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-bottom: 2px;
}

.news .featured-story-content {
  background: rgba(78, 115, 181, 0.08);
  border: 1px solid var(--border);
  padding: 52px 48px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}

.news .featured-story-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #7c0813, transparent);
  transform: scaleX(0);
  transition: transform 0.5s;
}

.news .featured-story-content:hover::before {
  transform: scaleX(1);
}

.news .featured-story-content:hover {
  background: rgba(78, 115, 181, 0.12);
}

.news .featured-story-aside {
  background: rgba(184, 150, 90, 0.03);
  border: 1px solid var(--border);
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.news .story-category {
  font-size: 9px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  opacity: 0.9;
}

.news .story-date {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.news .story-headline {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.18;
  margin-bottom: 20px;
}

.news .story-headline em {
  font-style: italic;
  color: var(--gold-light);
}

.news .story-body {
  font-size: 13.5px;
  color: rgba(245, 240, 232, 0.52);
  line-height: 1.82;
  font-weight: 300;
  margin-bottom: 28px;
}

.news .story-body p {
  margin-bottom: 14px;
}

.news .story-body p:last-child {
  margin-bottom: 0;
}

.news .read-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: gap 0.2s;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--sans);
}

.news .read-more:hover {
  gap: 16px;
}

.news .read-more-line {
  width: 22px;
  height: 1px;
  background: var(--gold);
  position: relative;
}

.news .read-more-line::after {
  content: "▶";
  font-size: 6px;
  position: absolute;
  right: -7px;
  top: -4px;
  color: var(--gold);
}

.news .aside-label {
  font-size: 9px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.news .aside-quote {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.4;
  font-style: italic;
  border-left: 2px solid #7c0813;
  padding-left: 24px;
  margin-bottom: 28px;
}

.news .aside-attribution {
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.news .aside-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.15em;
  color: rgba(245, 240, 232, 0.4);
  border: 1px solid var(--border);
  padding: 5px 14px;
  margin-top: 28px;
}

.news .modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 17, 54, 0.92);
  z-index: 200;
  overflow-y: auto;
  backdrop-filter: blur(8px);
}

.news .modal-overlay.open {
  display: block;
}

.news .modal-inner {
  max-width: 800px;
  margin: 80px auto;
  padding: 0 40px 80px;
}

.news .modal-close {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: none;
  border: none;
  font-family: var(--sans);
  cursor: pointer;
  padding: 0;
  margin-bottom: 48px;
  transition: color 0.2s;
}

.news .modal-close:hover {
  color: var(--gold);
}

.news .modal-category {
  font-size: 9px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.news .modal-date {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin-bottom: 24px;
  text-transform: uppercase;
}

.news .modal-headline {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 14px;
}

.news .modal-headline em {
  font-style: italic;
  color: var(--gold-light);
}

.news .modal-subhead {
  font-size: 14px;
  color: rgba(245, 240, 232, 0.55);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 36px;
  font-style: italic;
  border-bottom: 1px solid var(--border);
  padding-bottom: 32px;
}

.news .modal-body {
  font-size: 14.5px;
  color: rgba(245, 240, 232, 0.58);
  line-height: 1.9;
  font-weight: 300;
}

.news .modal-body p {
  margin-bottom: 20px;
}

.news .modal-body blockquote {
  border-left: 2px solid #7c0813;
  padding-left: 24px;
  margin: 32px 0;
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  color: var(--cream);
  line-height: 1.45;
}

.news .modal-body .attribution {
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 10px;
  font-style: normal;
  font-family: var(--sans);
}

.news .modal-body .disclaimer {
  font-size: 11px;
  color: rgba(245, 240, 232, 0.28);
  line-height: 1.7;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.news .modal-body h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--cream);
  margin: 32px 0 12px;
}

.news .stories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 2px;
}

.news .story-card {
  background: rgba(78, 115, 181, 0.06);
  border: 1px solid var(--border);
  padding: 44px 38px;
  transition:
    background 0.3s,
    transform 0.3s;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.news .story-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #7c0813, transparent);
  transform: scaleX(0);
  transition: transform 0.4s;
}

.news .story-card:hover::before {
  transform: scaleX(1);
}

.news .story-card:hover {
  background: rgba(78, 115, 181, 0.1);
  transform: translateY(-3px);
}

.news .card-category {
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  opacity: 0.85;
}

.news .card-date {
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.news .card-headline {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.22;
  margin-bottom: 14px;
}

.news .card-excerpt {
  font-size: 13px;
  color: rgba(245, 240, 232, 0.46);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 24px;
}

.news .card-read {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 8px;
}

.news .card-headshot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 2px solid var(--border);
  margin-bottom: 18px;
  display: block;
}

.news .modal-headshot-wrap {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.news .modal-headshot {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 2px solid var(--border);
  flex-shrink: 0;
}

.news .modal-headshot-info {
  flex: 1;
}

.news .modal-headshot-name {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 6px;
}

.news .modal-headshot-title {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

/* =========================================================
   RISK PAGE CSS
========================================================= */

.risk .section-label {
  font-size: 9px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.risk .section-title {
  font-family: var(--serif);
  font-size: clamp(32px, 3.8vw, 50px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 16px;
}

.risk .section-sub {
  font-size: 14px;
  color: rgba(245, 240, 232, 0.5);
  line-height: 1.75;
  font-weight: 300;
  max-width: 600px;
}

.risk .page-hero {
  padding: 160px 56px 100px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.risk .page-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("../img/img-hero-family-risk.jpg");
  background-size: cover;
  background-position: center 20%;
}

.risk .page-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 17, 54, 0.8) 0%,
    rgba(0, 17, 54, 0.7) 55%,
    rgba(0, 17, 54, 0.92) 100%
  );
}

.risk .page-hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image:
    linear-gradient(var(--gold) 1px, transparent 1px),
    linear-gradient(90deg, var(--gold) 1px, transparent 1px);
  background-size: 72px 72px;
}

.risk .page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.risk .breadcrumb {
  font-size: 9px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.risk .page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(44px, 5.5vw, 76px);
  font-weight: 300;
  line-height: 1.06;
  color: var(--cream);
}

.risk .page-hero-tagline {
  margin-top: 20px;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
}

.risk .page-hero-desc {
  font-size: 15px;
  color: rgba(245, 240, 232, 0.55);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 36px;
}

.risk .hero-ext-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border);
  padding: 16px 28px;
  text-decoration: none;
  transition: background 0.2s;
}

.risk .hero-ext-cta:hover {
  background: var(--gold-muted);
}

.risk .hero-ext-cta-arrow {
  width: 20px;
  height: 1px;
  background: var(--gold);
  position: relative;
}

.risk .hero-ext-cta-arrow::after {
  content: "↗";
  font-size: 12px;
  position: absolute;
  right: -12px;
  top: -8px;
}

.risk .what-section {
  background: var(--ink-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.risk .services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 52px;
}

.risk .service-block {
  background: rgba(78, 115, 181, 0.06);
  border: 1px solid var(--border);
  padding: 44px 38px;
  transition: background 0.3s;
}

.risk .service-block:hover {
  background: rgba(78, 115, 181, 0.1);
}

.risk .service-block-icon {
  margin-bottom: 22px;
}

.risk .service-block-title {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 14px;
}

.risk .service-block-desc {
  font-size: 13.5px;
  color: rgba(245, 240, 232, 0.5);
  line-height: 1.78;
  font-weight: 300;
  margin-bottom: 24px;
}

.risk .service-list {
  list-style: none;
}

.risk .service-list li {
  font-size: 12.5px;
  color: rgba(245, 240, 232, 0.5);
  padding: 8px 0;
  border-bottom: 1px solid rgba(78, 115, 181, 0.1);
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.5;
  font-weight: 300;
}

.risk .service-list li:last-child {
  border-bottom: none;
}

.risk .service-list li::before {
  content: "—";
  color: var(--gold);
  opacity: 0.6;
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 2px;
}

.risk .serve-section {
  background: var(--ink);
}

.risk .serve-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 52px;
}

.risk .serve-card {
  background: rgba(78, 115, 181, 0.06);
  border: 1px solid var(--border);
  padding: 36px 28px;
  transition: background 0.3s;
}

.risk .serve-card:hover {
  background: rgba(78, 115, 181, 0.11);
}

.risk .serve-icon {
  font-size: 28px;
  margin-bottom: 18px;
}

.risk .serve-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 12px;
}

.risk .serve-desc {
  font-size: 12.5px;
  color: rgba(245, 240, 232, 0.42);
  line-height: 1.72;
  font-weight: 300;
}

.risk .leadership-section {
  background: var(--ink-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.risk .leadership-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 52px;
}

.risk .leader-card {
  background: rgba(78, 115, 181, 0.06);
  border: 1px solid var(--border);
  padding: 44px 38px;
  transition: background 0.3s;
}

.risk .leader-photo-placeholder {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(78, 115, 181, 0.12);
  border: 1px solid var(--border);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.risk .leader-photo-placeholder span {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--gold);
  opacity: 0.6;
}

.risk .leader-name {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 6px;
}

.risk .leader-title {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.risk .leader-bio {
  font-size: 13px;
  color: rgba(245, 240, 232, 0.5);
  line-height: 1.78;
  font-weight: 300;
  margin-bottom: 22px;
}

.risk .credential-tag {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(245, 240, 232, 0.38);
  border: 1px solid rgba(78, 115, 181, 0.22);
  padding: 4px 12px;
}

.risk .presence-section {
  background: #010e2e;
  border-bottom: 1px solid var(--border);
}

.risk .presence-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 52px;
}

.risk .presence-card {
  padding: 36px 28px;
  border: 1px solid var(--border);
  background: rgba(184, 150, 90, 0.03);
  transition: background 0.3s;
}

.risk .presence-card:hover {
  background: rgba(78, 115, 181, 0.09);
}

.risk .presence-flag {
  font-size: 24px;
  margin-bottom: 14px;
}

.risk .presence-city {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 6px;
}

.risk .presence-country {
  font-size: 9.5px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  opacity: 0.8;
}

.risk .presence-address {
  font-size: 12px;
  color: rgba(245, 240, 232, 0.38);
  line-height: 1.7;
  font-weight: 300;
}

.risk .handoff-section {
  background: var(--ink-soft);
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.risk .handoff-inner {
  max-width: 680px;
  margin: 0 auto;
}

.risk .handoff-inner h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 18px;
  line-height: 1.1;
}

.risk .handoff-inner h2 em {
  font-style: italic;
  color: var(--gold-light);
}

.risk .handoff-inner p {
  font-size: 14px;
  color: rgba(245, 240, 232, 0.45);
  margin-bottom: 44px;
  line-height: 1.78;
  font-weight: 300;
}

.risk .handoff-btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.risk .btn-ghost {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border);
  padding: 15px 36px;
  text-decoration: none;
  transition: background 0.2s;
}

/* =========================================================
   TEAM PAGE CSS
========================================================= */

.team .page-hero {
  padding: 160px 56px 96px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.team .page-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("../img/img-hero-mixed.png");
  background-size: cover;
  background-position: center 60%;
}

.team .page-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 17, 54, 0.55) 0%,
    rgba(0, 17, 54, 0.4) 50%,
    rgba(0, 17, 54, 0.7) 100%
  );
}

.team .page-hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image:
    linear-gradient(var(--gold) 1px, transparent 1px),
    linear-gradient(90deg, var(--gold) 1px, transparent 1px);
  background-size: 72px 72px;
}

.team .page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
}

.team .breadcrumb {
  font-size: 9px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.team .page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(44px, 5.5vw, 80px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--cream);
  max-width: 720px;
}

.team .page-hero-desc {
  margin-top: 24px;
  font-size: 15px;
  color: rgba(245, 240, 232, 0.5);
  line-height: 1.82;
  font-weight: 300;
  max-width: 580px;
}

.team .section-label {
  font-size: 9px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.team .section-title {
  font-family: var(--serif);
  font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 300;
  line-height: 1.12;
  color: var(--cream);
  margin-bottom: 14px;
}

.team .section-sub {
  font-size: 14px;
  color: rgba(245, 240, 232, 0.48);
  line-height: 1.75;
  font-weight: 300;
  max-width: 560px;
  margin-bottom: 52px;
}

.team .group-leadership {
  background: var(--ink-soft);
  border-bottom: 1px solid var(--border);
}

.team .featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.team .featured-card {
  background: rgba(78, 115, 181, 0.07);
  border: 1px solid var(--border);
  padding: 52px 48px;
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
}

.team .featured-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #7c0813, transparent);
  transform: scaleX(0);
  transition: transform 0.5s ease;
}

.team .featured-card:hover::after {
  transform: scaleX(1);
}

.team .featured-card:hover {
  background: rgba(78, 115, 181, 0.11);
}

.team .leader-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 28px;
  border: 1px solid var(--border);
}

.team .leader-initials {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(78, 115, 181, 0.11);
  border: 1px solid var(--border);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team .leader-initials span {
  font-family: var(--serif);
  font-size: 32px;
  color: var(--gold);
  opacity: 0.7;
  font-weight: 300;
}

.team .leader-name {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}

.team .leader-title {
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.team .leader-divider {
  width: 36px;
  height: 1px;
  background: var(--border);
  margin-bottom: 24px;
}

.team .leader-bio {
  font-size: 13.5px;
  color: rgba(245, 240, 232, 0.52);
  line-height: 1.82;
  font-weight: 300;
  margin-bottom: 28px;
}

.team .credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.team .credential-tag {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(245, 240, 232, 0.38);
  border: 1px solid rgba(78, 115, 181, 0.22);
  padding: 5px 13px;
  transition: border-color 0.2s;
}

.team .featured-card:hover .credential-tag {
  border-color: rgba(184, 150, 90, 0.32);
}

.team .practice-section {
  padding: 88px 56px;
}

.team .practice-section.alt {
  background: var(--ink-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.team .practice-section.dark {
  background: #010e2e;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.team .team-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.team .team-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.team .team-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.team .team-card {
  background: rgba(78, 115, 181, 0.06);
  border: 1px solid var(--border);
  padding: 44px 36px;
  transition:
    background 0.3s,
    transform 0.3s;
  position: relative;
  overflow: hidden;
}

.team .team-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #7c0813, transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.team .team-card:hover::after {
  transform: scaleX(1);
}

.team .team-card:hover {
  background: rgba(78, 115, 181, 0.1);
  transform: translateY(-3px);
}

.team .team-name {
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 5px;
}

.team .team-title {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  opacity: 0.85;
  line-height: 1.5;
}

.team .team-bio {
  font-size: 13px;
  color: rgba(245, 240, 232, 0.48);
  line-height: 1.78;
  font-weight: 300;
  margin-bottom: 20px;
}

.team .team-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.team .team-tag {
  font-size: 9.5px;
  letter-spacing: 0.1em;
  color: rgba(245, 240, 232, 0.35);
  border: 1px solid rgba(78, 115, 181, 0.18);
  padding: 4px 11px;
}

.team .linkedin-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.5);
  border: 1px solid rgba(78, 115, 181, 0.25);
  padding: 9px 18px;
  text-decoration: none;
  transition: all 0.2s;
  margin-bottom: 20px;
}

.team .linkedin-btn:hover {
  background: rgba(78, 115, 181, 0.1);
  color: var(--gold);
  border-color: var(--gold);
}

.team .linkedin-btn svg {
  flex-shrink: 0;
}

.team .expertise-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.team .expertise-item {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(245, 240, 232, 0.5);
  background: rgba(78, 115, 181, 0.08);
  border: 1px solid rgba(184, 150, 90, 0.14);
  padding: 5px 14px;
}

.team .exp-banner {
  background: rgba(78, 115, 181, 0.07);
  border: 1px solid var(--border);
  padding: 44px 56px;
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.team .exp-banner-stat {
  text-align: center;
}

.team .exp-banner-num {
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 8px;
}

.team .exp-banner-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 160px;
}

.team .exp-banner-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
}

.team .institutions-section {
  background: var(--ink);
  border-bottom: 1px solid var(--border);
  padding: 56px 56px;
}

.team .inst-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.team .inst-label {
  font-size: 9px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.team .inst-label::before {
  content: "";
  display: block;
  width: 26px;
  height: 1px;
  background: #7c0813;
}

.team .inst-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.team .inst-tag {
  font-size: 11.5px;
  letter-spacing: 0.12em;
  color: rgba(245, 240, 232, 0.45);
  border: 1px solid var(--border);
  padding: 9px 20px;
  transition: all 0.2s;
}

.team .inst-tag:hover {
  background: rgba(78, 115, 181, 0.09);
  color: rgba(245, 240, 232, 0.7);
  border-color: rgba(78, 115, 181, 0.4);
}

.team .cta-section {
  background: var(--ink-soft);
  text-align: center;
  padding: 100px 56px;
  border-top: 1px solid var(--border);
}

.team .cta-inner {
  max-width: 540px;
  margin: 0 auto;
}

.team .cta-inner h2 {
  font-family: var(--serif);
  font-size: clamp(30px, 3.8vw, 50px);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 18px;
}

.team .cta-inner p {
  font-size: 14px;
  color: rgba(245, 240, 232, 0.45);
  margin-bottom: 40px;
  line-height: 1.75;
  font-weight: 300;
}

.team .btn-ghost {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border);
  padding: 15px 36px;
  text-decoration: none;
  margin-left: 16px;
  transition: background 0.2s;
}

.team .team-exp-wrap {
  padding: 0 56px;

  background: var(--ink-soft);

  border-bottom: 1px solid var(--border);
}

.team .team-exp-inner {
  max-width: 1160px;

  margin: 0 auto;
}

.team .team-section {
  padding: 88px 56px;

  background: var(--ink-soft);
}

.team .team-row-gap {
  margin-top: 2px;
}

.team .inst-subtitle {
  font-size: 13px;

  color: rgba(245,240,232,0.42);

  margin-bottom: 24px;

  font-weight: 300;
}

.team .cta-label {
  justify-content: center;
}

.contact .contact-hero-locations {
  margin-top: 32px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.35);
}

/* =========================================================
   INNER PAGE FOOTER
========================================================= */

.about footer,
.aib footer,
.amc footer,
.contact footer,
.estate footer,
.mfo footer,
.news footer,
.risk footer,
.team footer {
  background: #000d28;
  border-top: 1px solid var(--border);
  padding: 56px 56px 36px;
}

.about .footer-inner,
.aib .footer-inner,
.amc .footer-inner,
.contact .footer-inner,
.estate .footer-inner,
.mfo .footer-inner,
.news .footer-inner,
.risk .footer-inner,
.team .footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
}

.about .footer-brand-name,
.aib .footer-brand-name,
.amc .footer-brand-name,
.contact .footer-brand-name,
.estate .footer-brand-name,
.mfo .footer-brand-name,
.news .footer-brand-name,
.risk .footer-brand-name,
.team .footer-brand-name {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 4px;
}

.about .footer-brand-sub,
.aib .footer-brand-sub,
.amc .footer-brand-sub,
.contact .footer-brand-sub,
.estate .footer-brand-sub,
.mfo .footer-brand-sub,
.news .footer-brand-sub,
.risk .footer-brand-sub,
.team .footer-brand-sub {
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}

.about .footer-links,
.aib .footer-links,
.amc .footer-links,
.contact .footer-links,
.estate .footer-links,
.mfo .footer-links,
.news .footer-links,
.risk .footer-links,
.team .footer-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}

.about .footer-links a,
.aib .footer-links a,
.amc .footer-links a,
.contact .footer-links a,
.estate .footer-links a,
.mfo .footer-links a,
.news .footer-links a,
.risk .footer-links a,
.team .footer-links a {
  font-size: 11.5px;
  color: rgba(245, 240, 232, 0.38);
  text-decoration: none;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.about .footer-links a:hover,
.aib .footer-links a:hover,
.amc .footer-links a:hover,
.contact .footer-links a:hover,
.estate .footer-links a:hover,
.mfo .footer-links a:hover,
.news .footer-links a:hover,
.risk .footer-links a:hover,
.team .footer-links a:hover {
  color: var(--gold-light);
}

.about .footer-bottom,
.aib .footer-bottom,
.amc .footer-bottom,
.contact .footer-bottom,
.estate .footer-bottom,
.mfo .footer-bottom,
.news .footer-bottom,
.risk .footer-bottom,
.team .footer-bottom {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
}

.about .footer-disclaimer,
.aib .footer-disclaimer,
.amc .footer-disclaimer,
.contact .footer-disclaimer,
.estate .footer-disclaimer,
.mfo .footer-disclaimer,
.news .footer-disclaimer,
.risk .footer-disclaimer,
.team .footer-disclaimer {
  font-size: 10.5px;
  color: rgba(245, 240, 232, 0.24);
  line-height: 1.7;
  max-width: 680px;
  font-weight: 300;
}

.about .footer-copy,
.aib .footer-copy,
.amc .footer-copy,
.contact .footer-copy,
.estate .footer-copy,
.mfo .footer-copy,
.news .footer-copy,
.risk .footer-copy,
.team .footer-copy {
  font-size: 10px;
  color: rgba(245, 240, 232, 0.24);
  white-space: nowrap;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {
  .home-nav,
  .inner-nav {
    padding: 16px 24px;
  }

  .nav-toggle {
    display: flex;
  }

  .home-nav-links,
  .inner-nav-links {
    position: fixed;

    top: 72px;
    left: 0;
    right: 0;

    margin-left: 0;

    background: #000d28;

    border-bottom: 1px solid var(--border);

    padding: 28px 24px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: 20px;

    opacity: 0;
    visibility: hidden;

    transform: translateY(-12px);

    pointer-events: none;

    transition: all 0.3s ease;
  }

  body.home-menu-open .home-nav-links,
  body.inner-menu-open .inner-nav-links {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  body.home-menu-open .home-nav-toggle span:nth-child(1),
  body.inner-menu-open .inner-nav-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  body.home-menu-open .home-nav-toggle span:nth-child(2),
  body.inner-menu-open .inner-nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  body.home-menu-open .home-nav-toggle span:nth-child(3),
  body.inner-menu-open .inner-nav-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .home .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .home .pillars-grid .pillar-card:nth-child(1),
  .home .pillars-grid .pillar-card:nth-child(2),
  .home .pillars-grid .pillar-card:nth-child(3),
  .home .pillars-grid .pillar-card:nth-child(4),
  .home .pillars-grid .pillar-card:nth-child(5) {
    grid-column: span 1;
  }

  .home .juris-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .home .hero {
    padding: 120px 24px 64px;
    min-height: auto;
  }

  .home .hero-headline {
    font-size: clamp(42px, 9vw, 64px);
  }

  .home .hero-scroll {
    display: none;
  }

  .home .group-intro-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .home .hero-presence {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .home .presence-items {
    flex-wrap: wrap;
    gap: 12px;
  }

  .home .presence-item {
    border-right: none;
    padding: 0;
  }
  .home .why-atom {
    padding: 80px 24px;
  }

  .home .why-atom-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about .page-hero {
    min-height: auto;
    padding: 140px 24px 72px;
  }

  .about .page-hero-bg {
    background-size: cover;
    background-position: center;
  }

  .about .hero-content {
    max-width: 100%;
  }

  .about .page-hero h1 {
    font-size: clamp(42px, 8vw, 64px);
  }

  .about .hero-desc-row,
  .about .story-inner,
  .about .values-inner,
  .about .independence-inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .about .story-section,
  .about .philosophy-section,
  .about .values-section,
  .about .practices-section,
  .about .jurisdictions-section,
  .about .independence-section,
  .about .cta-section {
    padding: 80px 24px;
  }

  .about .story-left {
    position: static;
  }

  .about .philosophy-grid,
  .about .practices-grid,
  .about .juris-grid,
  .about .independence-stats {
    grid-template-columns: 1fr 1fr !important;
  }

  section {
    padding: 72px 24px;
  }

  /* HERO */
  .aib .page-hero {
    padding: 140px 24px 72px;
    min-height: auto;
  }

  .aib .page-hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .aib .page-hero h1 {
    font-size: clamp(42px, 8vw, 64px);
  }

  .aib .page-hero-stats {
    grid-template-columns: 1fr 1fr;
  }

  /* SECTION */
  .aib .edge-section,
  .aib .capabilities-section,
  .aib .corridors-section,
  .aib .experience-section,
  .aib .leadership-section,
  .aib .engagement-section,
  .aib .cta-section {
    padding: 80px 24px;
  }

  /* EDGE */
  .aib .edge-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  /* CORRIDORS */
  .aib .corridors-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* LEADERSHIP */
  .aib .leadership-grid,
  .aib .senior-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* ENGAGEMENT */
  .aib .engagement-steps {
    grid-template-columns: 1fr;
  }

  /* TABLE */
  .aib .exp-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  /* HERO */
  .mfo .hero {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 130px 24px 72px;
    min-height: auto;
  }
  .mfo .hero-content {
    max-width: 100%;
  }
  .mfo .hero-right {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    max-width: 100%;
    margin-top: 36px;
  }
  .mfo .breadcrumb {
    margin-bottom: 18px;
  }

  .mfo .hero-tagline {
    margin-bottom: 16px;
  }
  .mfo .hero h1 {
    font-size: clamp(42px, 8vw, 64px);
  }

  /* SECTION */
  .mfo .intro-section,
  .mfo .services-section,
  .mfo .cio-section,
  .mfo .serve-section,
  .mfo .diff-section,
  .mfo .cta-section {
    padding: 80px 24px;
  }

  /* INTRO */
  .mfo .intro-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  /* SERVICES */
  .mfo .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* CIO */
  .mfo .cio-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  /* SERVE */
  .mfo .serve-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* DIFFERENTIATORS */
  .mfo .diff-grid {
    gap: 24px;
  }

  .risk .page-hero {
    padding: 140px 24px 72px;
    min-height: auto;
  }

  .risk .page-hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .risk .page-hero h1 {
    font-size: clamp(42px, 8vw, 64px);
  }

  .risk .what-section,
  .risk .serve-section,
  .risk .leadership-section,
  .risk .handoff-section {
    padding: 80px 24px;
  }

  .risk .services-grid,
  .risk .serve-grid,
  .risk .leadership-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .risk .hero-ext-cta {
    margin-top: 28px;
  }

  .estate .page-hero {
    padding: 140px 24px 72px;
    min-height: auto;
  }

  .estate .page-hero-inner,
  .estate .philosophy-inner,
  .estate .crossborder-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .estate .page-hero h1 {
    font-size: clamp(42px, 8vw, 64px);
  }

  .estate .philosophy-section,
  .estate .services-section,
  .estate .crossborder-section,
  .estate .serve-section,
  .estate .jurisdictions-section,
  .estate .cta-section {
    padding: 80px 24px;
  }

  .estate .services-grid,
  .estate .serve-grid,
  .estate .jurisdictions-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .estate .challenge-list {
    margin-top: 0;
  }

  .amc .hero {
    padding: 140px 24px 72px;
    min-height: auto;
    align-items: flex-start;
    flex-direction: column;
  }

  .amc .hero h1 {
    font-size: clamp(42px, 8vw, 64px);
  }

  .amc .hero-right {
    position: relative;
    right: auto;
    bottom: auto;
    max-width: 100%;
    margin-top: 36px;
  }

  .amc .intro-section,
  .amc .strategies-section,
  .amc .approach-section,
  .amc .asset-section,
  .amc .serve-section,
  .amc .cta-section {
    padding: 80px 24px;
  }

  .amc .intro-grid,
  .amc .approach-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .amc .strategies-grid {
    grid-template-columns: 1fr 1fr;
  }

  .amc .strategies-grid .strategy-card {
    grid-column: span 1 !important;
  }

  .amc .asset-grid,
  .amc .serve-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

   /* HERO */
  .news .page-hero {
    padding: 140px 24px 72px;

    min-height: auto;
  }

  .news .page-hero h1 {
    font-size: clamp(42px, 8vw, 64px);
  }

  /* SECTION */
  .news .news-section {
    padding: 80px 24px;
  }

  /* FEATURED */
  .news .featured-story {
    grid-template-columns: 1fr;

    gap: 40px;
  }

  .news .featured-story-aside {
    position: relative;

    top: auto;
  }

  /* STORIES */
  .news .stories-grid {
    grid-template-columns: 1fr 1fr;

    gap: 28px;
  }

  /* MODAL */
  .news .modal-inner {
    width: calc(100% - 48px);

    padding: 48px 36px;
  }

  .team .page-hero {
    padding: 140px 24px 72px;

    min-height: auto;
  }

  .team .page-hero-inner {
    grid-template-columns: 1fr;

    gap: 44px;
  }

  .team .page-hero h1 {
    font-size: clamp(42px, 8vw, 64px);
  }

  .team .team-exp-wrap,
  .team .team-section {
    padding-left: 24px;
    padding-right: 24px;
  }

  .team .team-grid-2 {
    grid-template-columns: 1fr;

    gap: 28px;
  }

  .team .exp-banner {
    grid-template-columns: 1fr 1px 1fr;
  }

  .team .exp-banner-divider:nth-child(6),
  .team .exp-banner-divider:nth-child(4) {
    display: none;
  }

  .contact .page-hero {
    padding: 140px 24px 72px;
    min-height: auto;
  }

  .contact .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact .page-hero h1 {
    font-size: clamp(42px, 8vw, 64px);
  }

  .contact .hero-right {
    max-width: 100%;
  }

  footer {
    padding: 56px 24px 32px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
  }

  .footer-copy {
    white-space: normal;
  }

  .footer-inner {
    flex-direction: column;
    gap: 28px;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 18px;
  }
}

@media (max-width: 768px) {
  .home .pillars-grid,
  .home .juris-grid,
  .home .group-stats {
    grid-template-columns: 1fr;
  }

  .home .pillar-card {
    padding: 36px 28px;
  }

  .home .hero-rule {
    height: 52px;
  }

  .home .section-title {
    font-size: 36px;
  }

  .about .philosophy-grid,
  .about .practices-grid,
  .about .juris-grid,
  .about .independence-stats {
    grid-template-columns: 1fr !important;
  }

  .about .phi-card,
  .about .practice-card,
  .about .juris-card,
  .about .ind-stat {
    padding: 34px 26px;
  }

  .about .value-item {
    gap: 18px;
  }

  .about .cta-btns {
    flex-direction: column;
    align-items: stretch;
  }

  .about .btn-primary,
  .about .btn-ghost {
    width: 100%;
    text-align: center;
  }

  .aib .capabilities-tabs {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .aib .cap-tab {
    width: 100%;
    padding: 32px 26px;
  }

  .aib .cap-tab-title {
    font-size: 20px;
  }

  .aib .cap-services li {
    font-size: 12px;
    line-height: 1.6;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 576px) {
  .home-nav,
  .inner-nav {
    padding: 14px 18px;
  }

  .nav-logo-img {
    height: 28px;
  }

  .nav-logo-main {
    font-size: 10px;

    letter-spacing: 0.12em;

    max-width: 210px;

    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav-logo-sub {
    font-size: 7px;

    letter-spacing: 0.16em;

    max-width: 210px;

    overflow: hidden;
    text-overflow: ellipsis;
  }

  .home-nav-links,
  .inner-nav-links {
    top: 66px;

    padding: 24px 18px;
  }

  .home .hero {
    padding: 110px 18px 56px;
  }

  .home .hero-headline {
    font-size: 40px;
  }

  .home .hero-sub {
    font-size: 13px;
  }

  .home .stat-card {
    padding: 28px 22px;
  }

  .home .pillar-name {
    font-size: 22px;
  }

  .home .contact-cta h2 {
    font-size: 32px;
  }

  .home .why-atom {
    padding: 64px 18px;
  }

  .home .why-atom-card {
    padding: 28px 24px;
  }

  .home .why-atom-card-title {
    font-size: 16px;
  }

  .home-popup-overlay {
    padding: 18px;
  }

  .home-popup-close {
    width: 34px;
    height: 34px;

    font-size: 20px;

    top: -10px;
    right: -10px;
  }

  section {
    padding: 56px 18px;
  }

  .about .page-hero {
    padding: 120px 18px 56px;
  }

  .about .page-hero h1 {
    font-size: 38px;
    line-height: 1.08;
  }

  .about .hero-desc,
  .about .section-sub,
  .about .story-right p,
  .about .values-right p,
  .about .independence-text p {
    font-size: 13px;
  }

  .about .story-section,
  .about .philosophy-section,
  .about .values-section,
  .about .practices-section,
  .about .jurisdictions-section,
  .about .independence-section,
  .about .cta-section {
    padding: 64px 18px;
  }

  .about .section-title {
    font-size: 32px;
  }

  .about .pull-quote {
    font-size: 22px;
    padding-left: 20px;
  }

  .about .phi-title,
  .about .practice-name,
  .about .juris-name {
    font-size: 22px;
  }

  .about .ind-stat-num {
    font-size: 36px;
  }
  /* HERO */
  .aib .page-hero {
    padding: 120px 18px 56px;
  }

  .aib .page-hero h1 {
    font-size: 38px;
    line-height: 1.08;
  }

  .aib .page-hero-desc,
  .aib .section-sub {
    font-size: 13px;
  }

  .aib .page-hero-stats {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  /* SECTION */
  .aib .edge-section,
  .aib .capabilities-section,
  .aib .corridors-section,
  .aib .experience-section,
  .aib .leadership-section,
  .aib .engagement-section,
  .aib .cta-section {
    padding: 64px 18px;
  }

  .aib .section-title {
    font-size: 32px;
  }

  .aib .edge-col {
    padding: 48px 14px;
  }

  /* EDGE */
  .aib .edge-item,
  .aib .cap-tab,
  .aib .corridor-card,
  .aib .leader-card,
  .aib .senior-card,
  .aib .eng-step {
    padding: 28px 14px;
  }

  /* CORRIDORS */
  .aib .corridors-grid {
    grid-template-columns: 1fr;
  }

  /* TABS */
  .aib .exp-tabs {
    flex-wrap: wrap;
    gap: 10px;
  }

  .aib .exp-tab-btn {
    width: 100%;
    text-align: center;
  }

  /* CTA */
  .aib .cta-inner h2 {
    font-size: 34px;
  }

  .aib .btn-primary,
  .aib .btn-ghost {
    width: 100%;
    text-align: center;
  }

  .aib .cap-tab {
    padding: 28px 22px;
  }

  .aib .cap-tab-stage {
    letter-spacing: 0.18em;
  }

  .aib .cap-tab-title {
    font-size: 19px;
  }

  /* HERO */
  .mfo .hero {
    padding: 115px 18px 56px;
  }
  .mfo .hero-bg {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    opacity: 0.28;
  }

  .mfo .breadcrumb {
    font-size: 8px;
    letter-spacing: 0.22em;
    line-height: 1.6;
  }

  .mfo .hero-tagline {
    font-size: 9px;
    letter-spacing: 0.22em;
    line-height: 1.5;
  }

  .mfo .hero h1 {
    font-size: 38px;
    line-height: 1.08;
  }

  .mfo .hero-desc,
  .mfo .section-sub,
  .mfo .intro-text p,
  .mfo .cio-detail p {
    font-size: 13px;
  }

  /* SECTION */
  .mfo .intro-section,
  .mfo .services-section,
  .mfo .cio-section,
  .mfo .serve-section,
  .mfo .diff-section,
  .mfo .cta-section {
    padding: 64px 18px;
  }

  .mfo .section-title {
    font-size: 32px;
  }
  .mfo .hero-right {
    margin-top: 28px;
  }

  /* SERVICES */
  .mfo .services-grid {
    grid-template-columns: 1fr;
  }

  .mfo .service-card {
    padding: 28px 24px;
  }

  /* SERVE */
  .mfo .serve-grid {
    grid-template-columns: 1fr;
  }

  .mfo .serve-card {
    padding: 28px 24px;
  }

  /* DIFFERENTIATORS */
  .mfo .diff-row {
    gap: 16px;
  }

  .mfo .diff-name {
    font-size: 18px;
  }

  /* CIO */
  .mfo .cio-card,
  .mfo .cio-detail {
    padding: 28px 24px;
  }

  /* CTA */
  .mfo .cta-inner h2 {
    font-size: 34px;
  }

  .mfo .btn-primary,
  .mfo .btn-ghost {
    width: 100%;
    text-align: center;
  }

  .risk .page-hero {
    padding: 120px 18px 56px;
  }

  .risk .page-hero h1 {
    font-size: 38px;
    line-height: 1.08;
  }

  .risk .page-hero-desc,
  .risk .section-sub,
  .risk .service-block-desc,
  .risk .serve-desc,
  .risk .leader-bio,
  .risk .handoff-inner p {
    font-size: 13px;
  }

  .risk .what-section,
  .risk .serve-section,
  .risk .leadership-section,
  .risk .handoff-section {
    padding: 64px 18px;
  }

  .risk .section-title {
    font-size: 32px;
  }

  .risk .service-block,
  .risk .serve-card,
  .risk .leader-card {
    padding: 28px 24px;
  }

  .risk .service-list li {
    font-size: 12px;
    line-height: 1.6;
  }

  .risk .hero-ext-cta,
  .risk .btn-primary,
  .risk .btn-ghost {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .risk .handoff-btns {
    flex-direction: column;
    align-items: stretch;
  }

  .estate .page-hero {
    padding: 120px 18px 56px;
  }

  .estate .page-hero h1 {
    font-size: 36px;
    line-height: 1.08;
  }

  .estate .page-hero-desc,
  .estate .section-sub,
  .estate .philosophy-text p,
  .estate .crossborder-text p,
  .estate .service-desc,
  .estate .serve-desc,
  .estate .juris-detail,
  .estate .challenge-desc,
  .estate .cta-inner p {
    font-size: 13px;
  }

  .estate .philosophy-section,
  .estate .services-section,
  .estate .crossborder-section,
  .estate .serve-section,
  .estate .jurisdictions-section,
  .estate .cta-section {
    padding: 64px 18px;
  }

  .estate .section-title {
    font-size: 32px;
  }

  .estate .services-grid,
  .estate .serve-grid,
  .estate .jurisdictions-grid {
    grid-template-columns: 1fr;
  }

  .estate .service-card,
  .estate .serve-card,
  .estate .juris-card,
  .estate .challenge-item {
    padding: 28px 24px;
  }

  .estate .philosophy-pull {
    font-size: 24px;
  }

  .estate .challenge-item {
    gap: 16px;
  }

  .estate .btn-primary,
  .estate .btn-ghost {
    width: 100%;
    text-align: center;
  }

  .amc .hero {
    padding: 120px 18px 56px;
  }

  .amc .hero h1 {
    font-size: 38px;
    line-height: 1.08;
  }

  .amc .hero-desc,
  .amc .section-sub,
  .amc .intro-text p,
  .amc .approach-desc,
  .amc .asset-desc,
  .amc .serve-desc,
  .amc .cta-inner p {
    font-size: 13px;
  }

  .amc .intro-section,
  .amc .strategies-section,
  .amc .approach-section,
  .amc .asset-section,
  .amc .serve-section,
  .amc .cta-section {
    padding: 64px 18px;
  }

  .amc .section-title {
    font-size: 32px;
  }

  .amc .strategies-grid,
  .amc .asset-grid,
  .amc .serve-grid {
    grid-template-columns: 1fr;
  }

  .amc .strategy-card,
  .amc .approach-point,
  .amc .asset-card,
  .amc .serve-card {
    padding: 28px 24px;
  }

  .amc .approach-point {
    gap: 16px;
  }

  .amc .btn-primary,
  .amc .btn-ghost {
    width: 100%;
    text-align: center;
  }
  .amc .amc-capability-grid {
    grid-template-columns: 1fr;
  }
  .amc .amc-capability-card {
    padding: 28px 24px;
  }
  .amc .amc-capability-title {
    font-size: 28px;
  }

   /* HERO */
  .news .page-hero {
    padding: 120px 18px 56px;
  }

  .news .page-hero h1 {
    font-size: 38px;

    line-height: 1.08;
  }

  .news .page-hero-desc,
  .news .story-body p,
  .news .card-excerpt,
  .news .modal-body p,
  .news .modal-subhead,
  .news .aside-quote {
    font-size: 13px;
  }

  /* SECTION */
  .news .news-section {
    padding: 64px 18px;
  }

  .news .section-title,
  .news .story-headline,
  .news .modal-headline {
    font-size: 32px;

    line-height: 1.12;
  }

  /* STORIES */
  .news .stories-grid {
    grid-template-columns: 1fr;
  }

  .news .story-card {
    padding: 24px;
  }

  .news .card-headshot {
    height: 240px;
    width: 240px;
    object-fit: cover;
  }

  /* FEATURED */
  .news .featured-story-content,
  .news .featured-story-aside {
    padding: 28px 24px;
  }

  .news .aside-quote {
    font-size: 18px;

    line-height: 1.5;
  }

  /* MODAL */
  .news .modal-overlay {
    padding: 18px;
  }

  .news .modal-inner {
    width: 100%;

    max-height: calc(100vh - 36px);

    padding: 32px 22px;
  }

  .news .modal-headline {
    font-size: 30px;
  }

  .news .modal-headshot-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .news .modal-headshot {
    width: 100%;
    height: 100%;
    max-width: 220px;
  }

  .news blockquote {
    padding: 24px 20px;

    font-size: 15px;
  }

  .news .modal-close {
    width: 100%;

    justify-content: center;

    text-align: center;
  }

  .team .page-hero {
    padding: 120px 18px 56px;
  }

  .team .page-hero h1 {
    font-size: 38px;

    line-height: 1.08;
  }

  .team .page-hero-desc,
  .team .team-bio,
  .team .inst-subtitle {
    font-size: 13px;
  }

  .team .team-exp-wrap,
  .team .team-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .team .exp-banner {
    grid-template-columns: 1fr;

    gap: 22px;
  }

  .team .exp-banner-divider {
    display: none;
  }

  .team .exp-banner-stat {
    padding: 22px 0;
  }

  .team .team-card {
    padding: 28px 24px;
  }

  .team .team-name {
    font-size: 28px;
  }

  .team .expertise-strip {
    gap: 10px;
  }

  .team .expertise-item {
    font-size: 10px;
  }

  .team .inst-grid {
    gap: 10px;
  }

  .team .inst-tag {
    width: 100%;

    text-align: center;
  }

  .team .cta-inner h2 {
    font-size: 34px;
  }

  .team .btn-primary,
  .team .btn-ghost {
    width: 100%;

    text-align: center;
  }

  .contact .page-hero {
    padding: 120px 18px 56px;
  }

  .contact .page-hero h1 {
    font-size: 38px;
    line-height: 1.08;
  }

  .contact .contact-hero-locations {
    font-size: 9px;

    letter-spacing: 0.12em;

    line-height: 1.8;
  }

  .contact .hero-right p {
    font-size: 13px;
  }

  .contact .hero-email {
    font-size: 12px;
    word-break: break-all;
  }

  footer {
    padding: 48px 18px 28px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-brand-name {
    font-size: 18px;
    line-height: 1.35;
  }

  .footer-desc {
    max-width: 100%;
  }

  .footer-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .footer-links li {
    margin-bottom: 0;
  }

  .footer-bottom {
    align-items: flex-start;
  }

  .footer-disclaimer {
    max-width: 100%;
  }
  .about footer,
  .aib footer,
  .amc footer,
  .contact footer,
  .estate footer,
  .mfo footer,
  .news footer,
  .risk footer,
  .team footer {
    background: #000d28;
    border-top: 1px solid var(--border);
    padding: 56px 25px 36px;
  }
  .about .footer-inner,
  .aib .footer-inner,
  .amc .footer-inner,
  .contact .footer-inner,
  .estate .footer-inner,
  .mfo .footer-inner,
  .news .footer-inner,
  .risk .footer-inner,
  .team .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    padding-bottom: 24px;
  }
  .about .footer-links,
  .aib .footer-links,
  .amc .footer-links,
  .contact .footer-links,
  .estate .footer-links,
  .mfo .footer-links,
  .news .footer-links,
  .risk .footer-links,
  .team .footer-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .about .footer-bottom,
  .aib .footer-bottom,
  .amc .footer-bottom,
  .contact .footer-bottom,
  .estate .footer-bottom,
  .mfo .footer-bottom,
  .news .footer-bottom,
  .risk .footer-bottom,
  .team .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .about .footer-copy,
  .aib .footer-copy,
  .amc .footer-copy,
  .contact .footer-copy,
  .estate .footer-copy,
  .mfo .footer-copy,
  .news .footer-copy,
  .risk .footer-copy,
  .team .footer-copy {
    white-space: normal;
  }
}
