/* ============================================================
   Van Dyke Trusts & Estates Law — Marketing site styles
   Loads on top of ../../colors_and_type.css
   ============================================================ */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body { background: var(--vd-cream); color: var(--vd-ink); }
img, svg, object { display: block; max-width: 100%; }

/* Page container */
.ms-page { background: var(--vd-cream); min-height: 100vh; }
.ms-container { max-width: 1280px; margin: 0 auto; padding: 0 48px; }

/* ============================================================
   STAGE — layered top of page: bg image behind utility bar,
   nav, hero, AND stat strip
   ============================================================ */
.ms-stage {
  position: relative; background: var(--vd-navy-900); overflow: hidden;
  min-height: 100vh;
  display: flex; flex-direction: column;
}
.ms-stage > .ms-hero { flex: 1 0 auto; display: flex; align-items: center; }
.ms-stage-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; display: block;
  filter: saturate(0.7) brightness(0.85) contrast(1.05);
  z-index: 0;
}
.ms-stage-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(105deg, rgba(6, 21, 35, 0.92) 0%, rgba(6, 21, 35, 0.7) 38%, rgba(6, 21, 35, 0.25) 65%, rgba(6, 21, 35, 0) 100%),
    linear-gradient(to bottom, rgba(6, 21, 35, 0) 50%, rgba(6, 21, 35, 0.55) 100%);
}
.ms-stage > .ms-utility, .ms-stage > .ms-nav {
  position: relative; z-index: 30;
}
.ms-stage > .ms-hero, .ms-stage > .ms-stats {
  position: relative; z-index: 2;
}
.ms-stage > .ms-section { position: relative; z-index: 2; }

/* Court stage variant — image with practice areas overlaid */
.ms-stage--court { min-height: 100vh; display: flex; flex-direction: column; }
.ms-stage--court > .ms-section { flex: 1 0 auto; display: flex; align-items: center; border-bottom: 0; padding: 96px 0; }
.ms-stage--court .ms-section-eyebrow { color: var(--vd-gold-300); }
.ms-stage--court .ms-section-title { color: var(--vd-cream); }
.ms-stage--court .ms-section-title .italic { color: var(--vd-gold-300); }
.ms-stage--court .ms-section-blurb { color: var(--vd-silver-200); }
.ms-stage--court .ms-practices { border-top-color: rgba(216,220,227,0.18); }
.ms-stage--court .ms-practice { border-right-color: rgba(216,220,227,0.18); }
.ms-stage--court .ms-practice:nth-child(n+4) { border-top-color: rgba(216,220,227,0.18); }
.ms-stage--court .ms-practice:hover { background: rgba(252, 251, 248, 0.04); }
.ms-stage--court .ms-practice-num { color: var(--vd-silver-300); }
.ms-stage--court .ms-practice-title { color: var(--vd-cream); }
.ms-stage--court .ms-practice-desc { color: var(--vd-silver-200); }
.ms-stage--court .ms-practice-cta { color: var(--vd-gold-300); }
.ms-stage--court .ms-practice:hover .ms-practice-cta { color: var(--vd-gold-500); }

.ms-stage--court .ms-stage-bg { filter: saturate(0.85) brightness(1.05) contrast(1.02); }

.ms-stage-overlay--court {
  background:
    linear-gradient(to right, rgba(6, 21, 35, 0.78) 0%, rgba(6, 21, 35, 0.45) 50%, rgba(6, 21, 35, 0.15) 100%),
    linear-gradient(to bottom, rgba(6, 21, 35, 0.1) 0%, rgba(6, 21, 35, 0.25) 100%);
}

/* ============================================================
   UTILITY BAR (above main nav)
   ============================================================ */
.ms-utility { background: rgba(6, 21, 35, 0.85); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); color: var(--vd-silver-200); font-size: 12px; position: relative; z-index: 20; }
.ms-utility-inner { display: flex; justify-content: space-between; align-items: center; padding: 10px 48px 10px; max-width: 1280px; margin: 0 auto; }
.ms-utility-meta { font-family: var(--font-sans); letter-spacing: 0.1em; text-transform: uppercase; color: var(--vd-silver-300); }
.ms-utility-actions { display: flex; gap: 24px; align-items: center; }
.ms-utility-actions a { color: var(--vd-silver-200); text-decoration: none; font-size: 11px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; transition: color 140ms; }
.ms-utility-actions a:hover { color: var(--vd-gold-300); }
.ms-utility-phone { color: var(--vd-gold-300) !important; font-family: var(--font-mono); font-size: 13px !important; letter-spacing: 0.04em !important; text-transform: none !important; }
/* Telephone links render in gold throughout the site */
a[href^="tel:"] { color: var(--vd-gold-700); }
a[href^="tel:"]:hover { color: var(--vd-gold-500); }
.ms-footer a[href^="tel:"], .ms-utility a[href^="tel:"], .ms-hero a[href^="tel:"], .ms-stage a[href^="tel:"] { color: var(--vd-gold-300); }
.ms-footer a[href^="tel:"]:hover, .ms-utility a[href^="tel:"]:hover { color: var(--vd-gold-100); }
.ms-cta a[href^="tel:"] { color: var(--vd-gold-300) !important; }
.bio-side-list a[href^="tel:"] { color: var(--vd-gold-700) !important; }
.bio-side-list a[href^="tel:"]:hover { color: var(--vd-gold-500) !important; }
.ms-utility-portal {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 12px !important; border: 1px solid var(--vd-gold-500);
  color: var(--vd-gold-300) !important;
  border-radius: 2px;
  transition: all 140ms;
}
.ms-utility-portal:hover {
  background: var(--vd-gold-500); color: var(--vd-navy-900) !important;
  border-color: var(--vd-gold-500);
}
.ms-utility-portal-lock { font-size: 14px; letter-spacing: 0; }
.ms-utility-pay {
  background: var(--vd-gold-500); color: var(--vd-navy-900) !important;
  border-color: var(--vd-gold-500) !important; font-weight: 600;
}
.ms-utility-pay:hover { background: var(--vd-gold-300); color: var(--vd-navy-900) !important; border-color: var(--vd-gold-300) !important; }
.ms-utility-pay .ms-utility-portal-lock { font-family: var(--font-mono); font-weight: 700; }
.ms-utility-portal--staff {
  border-color: rgba(216, 220, 227, 0.35);
  color: var(--vd-silver-200) !important;
}
.ms-utility-portal--staff:hover {
  background: transparent; color: var(--vd-gold-300) !important;
  border-color: var(--vd-gold-500);
}
.ms-utility-pay {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 12px !important;
  background: var(--vd-gold-500); color: var(--vd-navy-900) !important;
  border-radius: 2px;
  font-weight: 600 !important;
  transition: all 140ms;
}
.ms-utility-pay:hover { background: var(--vd-gold-300); }
.ms-utility-pay-lock { font-size: 14px; letter-spacing: 0; font-family: var(--font-display); font-style: italic; }

/* ============================================================
   MAIN NAVIGATION
   ============================================================ */
.ms-nav { background: transparent; border-bottom: 1px solid rgba(216,220,227,0.18); position: relative; z-index: 20; }
.ms-nav-inner { display: flex; align-items: center; gap: 40px; padding: 16px 0; }
.ms-nav-logo { display: block; margin-right: auto; }
.ms-nav-logo img {
  height: 124px; width: auto; display: block;
  filter: contrast(1.15) drop-shadow(0 2px 4px rgba(6, 21, 35, 0.55));
}
.ms-nav-links { display: flex; gap: 32px; align-items: center; }
.ms-nav-link {
  font-family: var(--font-sans); font-size: 13px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--vd-silver-200); text-decoration: none;
  padding: 6px 0; border-bottom: 1px solid transparent;
  cursor: pointer; transition: all 140ms;
  position: relative;
}
.ms-nav-link:hover, .ms-nav-link.active {
  color: var(--vd-gold-300); border-bottom-color: var(--vd-gold-500);
}
.ms-nav-link .caret { font-size: 10px; opacity: 0.6; margin-left: 4px; }
.ms-nav-cta {
  font-family: var(--font-sans); font-size: 12px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 12px 20px; background: var(--vd-navy-700); color: var(--vd-cream);
  border-radius: 2px; text-decoration: none; border: 0; cursor: pointer;
  transition: background 140ms;
}
.ms-nav-cta:hover { background: var(--vd-navy-800); }
.ms-nav-join {
  font-family: var(--font-sans); font-size: 12px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 11px 18px; background: transparent; color: var(--vd-gold-300);
  border: 1px solid var(--vd-gold-500); border-radius: 2px;
  text-decoration: none; cursor: pointer; transition: all 140ms;
  margin-right: 4px;
}
.ms-nav-join:hover { background: var(--vd-gold-500); color: var(--vd-navy-900); }
.ms-nav-staff {
  font-family: var(--font-sans); font-size: 12px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 11px 14px; background: transparent; color: var(--vd-silver-200);
  border: 0; text-decoration: none; cursor: pointer; transition: color 140ms;
  margin-right: 8px;
}
.ms-nav-staff:hover { color: var(--vd-gold-300); }
.ms-nav-honor {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-sans); font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 10px 14px; background: transparent; color: var(--vd-cream);
  border: 1px solid rgba(216, 220, 227, 0.35); border-radius: 2px;
  text-decoration: none; cursor: pointer; transition: all 140ms;
  margin-right: 4px;
}
.ms-nav-honor .star { color: var(--vd-gold-300); font-size: 13px; line-height: 1; }
.ms-nav-honor:hover { background: var(--vd-cream); color: var(--vd-navy-900); border-color: var(--vd-cream); }
.ms-nav-honor:hover .star { color: var(--vd-gold-500); }

/* Practice dropdown */
.ms-nav-drop { position: static; }
.ms-nav-menu {
  position: absolute; top: 100%; right: 48px; left: auto; z-index: 60;
  background: var(--vd-bone); border: 1px solid var(--vd-silver-200);
  border-radius: 3px; box-shadow: var(--shadow-md);
  min-width: 400px; max-width: 400px; padding: 8px 0; margin-top: 12px;
  max-height: calc(100vh - 150px); overflow-y: auto;
  opacity: 0; pointer-events: none; transform: translateY(-4px);
  transition: opacity 180ms, transform 180ms;
}
.ms-nav-drop.open .ms-nav-menu { opacity: 1; pointer-events: auto; transform: translateY(0); }
.ms-nav-menu a {
  display: block; padding: 11px 20px;
  text-decoration: none; transition: all 140ms;
  border-left: 2px solid transparent;
}
.ms-nav-menu-title {
  display: block; font-family: var(--font-sans); font-size: 13px; font-weight: 600;
  letter-spacing: 0.01em; color: var(--vd-navy-900); margin-bottom: 3px;
}
.ms-nav-menu-desc {
  display: block; font-family: var(--font-sans); font-size: 11.5px; line-height: 1.45;
  color: var(--vd-silver-600);
}
.ms-nav-menu a:hover { background: var(--vd-navy-50); border-left-color: var(--vd-gold-500); }
.ms-nav-menu a:hover .ms-nav-menu-title { color: var(--vd-navy-700); }
.ms-nav-menu a:hover .ms-nav-menu-desc { color: var(--vd-ink-soft); }

/* ============================================================
   HERO
   ============================================================ */
.ms-hero { padding: 80px 0 96px; border-bottom: 1px solid var(--vd-silver-200); position: relative; background: var(--vd-cream); }
.ms-hero--image {
  background: transparent; overflow: visible;
  padding: 60px 0 96px;
  border-bottom: 0;
  margin-top: 0;
}
.ms-hero--image > .ms-container { padding-top: 0; }
.ms-hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; display: block;
  filter: saturate(0.7) brightness(0.85) contrast(1.05);
  z-index: 0;
}
.ms-hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(105deg, rgba(6, 21, 35, 0.92) 0%, rgba(6, 21, 35, 0.7) 38%, rgba(6, 21, 35, 0.25) 65%, rgba(6, 21, 35, 0) 100%),
    linear-gradient(to bottom, rgba(6, 21, 35, 0) 50%, rgba(6, 21, 35, 0.45) 100%);
}
.ms-hero--image .ms-container { position: relative; z-index: 2; }
.ms-hero-grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: 72px; align-items: center; }
.ms-hero-grid--single { grid-template-columns: 1fr; max-width: 880px; }
.ms-hero-copy--inv .ms-hero-eyebrow { color: var(--vd-gold-300); }
.ms-hero-copy--inv .ms-hero-eyebrow::before { background: var(--vd-gold-500); }
.ms-hero-copy--inv .ms-hero-title { color: var(--vd-cream); text-shadow: 0 2px 28px rgba(6, 21, 35, 0.6); }
.ms-hero-copy--inv .ms-hero-title .italic { color: var(--vd-gold-300); }
.ms-hero-copy--inv .ms-hero-lead { color: var(--vd-silver-200); }
.ms-hero-copy--inv .ms-hero-trust { border-top-color: rgba(216,220,227,0.2); }
.ms-hero-copy--inv .ms-hero-trust-i { color: var(--vd-silver-300); }

.ms-hero-eyebrow {
  font-family: var(--font-sans); font-size: 11px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--vd-navy-700);
  display: flex; align-items: center; gap: 14px; margin-bottom: 32px;
}
.ms-hero-eyebrow::before { content: ''; display: block; width: 36px; height: 1px; background: var(--vd-gold-500); }

.ms-hero-title {
  font-family: var(--font-display); font-weight: 400; font-size: 84px;
  line-height: 1.02; letter-spacing: -0.022em; color: var(--vd-navy-900);
  margin: 0 0 28px;
}
.ms-hero-title .italic { font-style: italic; color: var(--vd-navy-700); }

.ms-hero-lead {
  font-family: var(--font-sans); font-size: 17px; line-height: 1.6;
  color: var(--vd-ink-soft); max-width: 44ch; margin: 0 0 36px;
}

.ms-hero-actions { display: flex; gap: 20px; align-items: center; margin-bottom: 40px; }

.ms-hero-trust {
  display: flex; gap: 32px; padding-top: 24px; border-top: 1px solid var(--vd-silver-200);
}
.ms-hero-trust-i {
  font-family: var(--font-sans); font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--vd-silver-600);
}
.ms-hero-trust-i b { color: var(--vd-gold-500); font-weight: 700; letter-spacing: 0.04em; margin-right: 4px; }
.ms-hero-trust-seal { display: inline-flex; align-items: center; gap: 8px; }
.ms-hero-trust-seal img { width: 128px; height: auto; flex: none; }
.ms-hero-trust-seal--bar img {
  width: 150px; background: #fff; border-radius: 6px;
  padding: 5px 9px; box-shadow: 0 4px 16px -4px rgba(6,21,35,0.55);
}

.ms-hero-portrait {
  position: relative; padding: 0;
}
.ms-hero-portrait-img {
  aspect-ratio: 3 / 4; background: var(--vd-navy-800); overflow: hidden;
  position: relative; border: 1px solid var(--vd-silver-300);
}
.ms-hero-portrait-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ms-hero-portrait-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14,43,69,0.32) 0%, transparent 32%);
  pointer-events: none;
}
.ms-hero-portrait-meta {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 22px 24px; color: var(--vd-cream);
}
.ms-hero-portrait-eyebrow {
  font-size: 10px; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--vd-gold-300); margin-top: 6px;
}
.ms-hero-portrait-name {
  font-family: var(--font-display); font-size: 26px; font-weight: 500;
  color: var(--vd-cream); letter-spacing: -0.005em; line-height: 1.1;
}
.ms-hero-portrait-bar {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--vd-silver-300); margin-top: 4px;
}

/* ============================================================
   STAT STRIP
   ============================================================ */
.ms-stats { background: transparent; color: var(--vd-cream); padding: 48px 0 64px; border-top: 1px solid rgba(216,220,227,0.18); }
.ms-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.ms-stat { padding: 0 36px; border-left: 1px solid rgba(216,220,227,0.18); }
.ms-stat:first-child { border-left: 0; padding-left: 0; }
.ms-stat-v {
  font-family: var(--font-display); font-weight: 400; font-size: 60px;
  line-height: 1; color: var(--vd-cream); letter-spacing: -0.02em;
}
.ms-stat-v .ital { font-style: italic; color: var(--vd-gold-500); font-size: 0.6em; vertical-align: 0.3em; }
.ms-stat-k {
  font-family: var(--font-sans); font-size: 12px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--vd-silver-300); margin-top: 12px; line-height: 1.4; max-width: 22ch;
}

/* ============================================================
   SECTION HEADERS (shared)
   ============================================================ */
.ms-section { padding: 112px 0; border-bottom: 1px solid var(--vd-silver-200); }
.ms-section-header {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px;
  margin-bottom: 72px; align-items: end;
}
.ms-section-eyebrow {
  font-family: var(--font-sans); font-size: 11px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--vd-navy-700);
  margin: 0 0 20px;
}
.ms-section-title {
  font-family: var(--font-display); font-weight: 400; font-size: 56px;
  line-height: 1.04; letter-spacing: -0.018em; color: var(--vd-navy-900); margin: 0;
}
.ms-section-title .italic { font-style: italic; color: var(--vd-navy-600); }
.ms-section-title--inv { color: var(--vd-navy-900); }
.ms-section-title--inv .italic { color: var(--vd-gold-700); }
.ms-section-blurb {
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: 22px; line-height: 1.45; color: var(--vd-ink); margin: 0; max-width: 48ch;
}
.ms-section-link {
  display: inline-block; margin-top: 16px;
  font-family: var(--font-sans); font-style: normal; font-size: 12px;
  font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--vd-navy-700); text-decoration: none;
  border-bottom: 1px solid var(--vd-gold-500); padding-bottom: 2px;
  transition: color 140ms;
}
.ms-section-link:hover { color: var(--vd-gold-700); }

/* ============================================================
   PRACTICE AREAS
   ============================================================ */
.ms-practices {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border-top: 1px solid var(--vd-silver-200);
}
.ms-practice {
  padding: 36px 40px 36px 0;
  border-right: 1px solid var(--vd-silver-200);
  position: relative; cursor: pointer; transition: all 220ms;
  text-decoration: none; color: inherit; display: block;
}
.ms-practice:nth-child(3n) { border-right: 0; padding-right: 0; }
.ms-practice:nth-child(3n+1) { padding-left: 0; }
.ms-practice:nth-child(3n+1):not(:first-child) { padding-left: 0; }
.ms-practice:not(:nth-child(3n)):not(:nth-child(3n+1)) { padding-left: 40px; }
.ms-practice:nth-child(3n) { padding-left: 40px; }
.ms-practice:nth-child(n+4) { border-top: 1px solid var(--vd-silver-200); padding-top: 36px; }

.ms-practice:hover { background: rgba(14, 43, 69, 0.03); }
.ms-practice-num {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--vd-silver-500); margin-bottom: 16px;
  letter-spacing: 0.04em;
}
.ms-practice-title {
  font-family: var(--font-display); font-weight: 500; font-size: 26px;
  line-height: 1.15; color: var(--vd-navy-900); margin: 0 0 12px;
  letter-spacing: -0.005em;
}
.ms-practice-desc {
  font-family: var(--font-sans); font-size: 14px; line-height: 1.6;
  color: var(--vd-ink-soft); margin: 0 0 20px; max-width: 36ch;
}
.ms-practice-cta {
  font-family: var(--font-sans); font-size: 11px; font-weight: 600;
  letter-spacing: 0.16em; color: var(--vd-navy-700); text-transform: uppercase;
}
.ms-practice:hover .ms-practice-cta { color: var(--vd-gold-500); }

/* ============================================================
   SIGNATURE IMAGE MOMENT
   ============================================================ */
.ms-signature {
  position: relative; width: 100%; height: 56vh; min-height: 480px; max-height: 720px;
  overflow: hidden; background: var(--vd-navy-900);
  border-top: 1px solid var(--vd-silver-200);
  border-bottom: 1px solid var(--vd-silver-200);
}
.ms-signature-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; display: block;
  filter: saturate(0.7) brightness(0.92);
}
.ms-signature-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(6, 21, 35, 0.55) 0%, rgba(6, 21, 35, 0.05) 30%, rgba(6, 21, 35, 0.05) 65%, rgba(6, 21, 35, 0.85) 100%),
    linear-gradient(to right, rgba(6, 21, 35, 0.35) 0%, rgba(6, 21, 35, 0) 50%);
  display: flex; align-items: flex-end;
}
.ms-signature-inner { padding: 0 48px 56px; max-width: 1280px; margin: 0 auto; width: 100%; }
.ms-signature-eyebrow {
  font-family: var(--font-sans); font-size: 11px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--vd-gold-300);
  margin: 0 0 16px;
  display: flex; align-items: center; gap: 14px;
}
.ms-signature-eyebrow::before {
  content: ''; width: 36px; height: 1px; background: var(--vd-gold-500);
}
.ms-signature-quote {
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: 44px; line-height: 1.15; letter-spacing: -0.015em;
  color: var(--vd-cream); margin: 0; max-width: 24ch;
  text-shadow: 0 2px 32px rgba(6, 21, 35, 0.6);
}
.ms-signature-quote .italic { color: var(--vd-gold-300); }

/* ============================================================
   COURT STRIP
   ============================================================ */
.ms-court {
  position: relative; width: 100%; height: 44vh; min-height: 360px; max-height: 520px;
  overflow: hidden; background: var(--vd-navy-900);
}
.ms-court-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; display: block;
  filter: saturate(0.55) brightness(0.92) contrast(1.05);
}
.ms-court-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(6, 21, 35, 0.85) 0%, rgba(6, 21, 35, 0.4) 45%, rgba(6, 21, 35, 0.05) 100%);
  display: flex; align-items: center;
}
.ms-court-inner { padding: 0 48px; max-width: 1280px; margin: 0 auto; width: 100%; }
.ms-court-eyebrow {
  font-family: var(--font-sans); font-size: 11px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--vd-gold-300);
  margin: 0 0 18px;
  display: flex; align-items: center; gap: 14px;
}
.ms-court-eyebrow::before {
  content: ''; width: 36px; height: 1px; background: var(--vd-gold-500);
}
.ms-court-quote {
  font-family: var(--font-display); font-weight: 400;
  font-size: 48px; line-height: 1.12; letter-spacing: -0.018em;
  color: var(--vd-cream); margin: 0; max-width: 16ch;
  text-shadow: 0 2px 24px rgba(6, 21, 35, 0.5);
}
.ms-court-quote .italic { font-style: italic; color: var(--vd-gold-300); }
.ms-about {
  background: var(--vd-cream); color: var(--vd-ink);
  padding: 120px 0; position: relative; overflow: hidden;
  border-bottom: 1px solid var(--vd-silver-200);
}
.ms-about::before {
  content: ''; position: absolute; top: 0; bottom: 0; right: 0;
  width: 40%; opacity: 0.05;
  background-image: url('../../assets/logo-silver.png');
  background-repeat: no-repeat; background-position: right center;
  background-size: contain; filter: brightness(0);
  pointer-events: none;
}
.ms-about-grid {
  position: relative; display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 72px; align-items: center;
}
.ms-about-photo {
  aspect-ratio: 4 / 5; border: 1px solid rgba(189,195,204,0.2); overflow: hidden;
  position: relative;
}
.ms-about-photo-link {
  display: block; width: 100%; height: 100%;
  text-decoration: none; color: var(--vd-cream);
  position: relative; cursor: pointer;
}
.ms-about-photo-link img { transition: transform 360ms cubic-bezier(.4,0,.2,1), filter 220ms; }
.ms-about-photo-link:hover img { transform: scale(1.03); filter: grayscale(1) contrast(1.1) brightness(0.9); }
.ms-about-photo-cap {
  position: absolute; left: 18px; right: 18px; bottom: 16px; z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-sans); font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--vd-gold-300);
  opacity: 0; transform: translateY(6px);
  transition: all 280ms cubic-bezier(.4,0,.2,1);
}
.ms-about-photo-link:hover .ms-about-photo-cap { opacity: 1; transform: translateY(0); }
.ms-about-photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.05); }
.ms-about-photo::after {
  content: ''; position: absolute; inset: auto 0 0 0; height: 40%;
  background: linear-gradient(to top, rgba(6,21,35,0.6) 0%, transparent 100%);
}
.ms-about-copy .ms-section-eyebrow { color: var(--vd-navy-700); }
.ms-about-blurb {
  font-family: var(--font-sans); font-size: 17px; line-height: 1.65;
  color: var(--vd-ink-soft); margin: 28px 0 36px; max-width: 56ch;
}
.ms-about-quote {
  font-family: var(--font-display); font-style: italic; font-size: 24px;
  line-height: 1.4; color: var(--vd-navy-900); margin: 0 0 36px;
  padding: 24px 0 24px 28px; border-left: 2px solid var(--vd-gold-500);
  max-width: 52ch;
}
.ms-about-quote cite {
  display: block; font-style: normal; font-family: var(--font-sans);
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--vd-gold-700); margin-top: 16px;
}
.ms-about-cases {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  margin: 40px 0; padding: 32px 0 0;
  border-top: 1px solid var(--vd-silver-200);
}
.ms-about-cases-col { display: flex; flex-direction: column; gap: 14px; }
.ms-about-cases-h {
  font-family: var(--font-sans); font-size: 11px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  margin: 0; padding-bottom: 10px;
  border-bottom: 1px solid var(--vd-silver-200);
}
.ms-about-cases-h--take { color: var(--vd-navy-700); border-bottom-color: var(--vd-gold-500); }
.ms-about-cases-h--decline { color: var(--vd-oxblood-500); border-bottom-color: var(--vd-oxblood-300); }
.ms-about-cases-col ul {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 10px;
}
.ms-about-cases-col li {
  font-family: var(--font-sans); font-size: 14px; line-height: 1.55;
  color: var(--vd-ink); padding-left: 18px; position: relative;
}
.ms-about-cases-col li::before {
  position: absolute; left: 0; top: 0;
  font-family: var(--font-display); font-style: italic; font-size: 16px;
  line-height: 1.4;
}
.ms-about-cases-h--take ~ ul li::before { content: '✓'; color: var(--vd-sage-700); font-style: normal; font-size: 14px; font-weight: 600; }
.ms-about-cases-h--decline ~ ul li::before { content: '×'; color: var(--vd-oxblood-500); font-style: normal; font-size: 16px; font-weight: 600; }
.ms-about-cases-note {
  font-family: var(--font-display); font-style: italic; font-size: 14px;
  line-height: 1.55; color: var(--vd-silver-700);
  margin: 8px 0 0; padding-top: 14px; border-top: 1px solid var(--vd-silver-200);
}
.ms-about-actions { display: flex; gap: 20px; align-items: center; }

/* ============================================================
   WHY THE JET (aviator metaphor)
   ============================================================ */
.ms-jet { background: var(--vd-cream); padding: 112px 0; border-bottom: 1px solid var(--vd-silver-200); }
.ms-jet-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 72px; align-items: start; }
.ms-jet-img { margin: 0 auto; position: sticky; top: 32px; max-width: 420px; text-align: center; }
.ms-jet-img img {
  width: 100%; height: auto; aspect-ratio: auto; object-fit: contain; display: block;
  border: 1px solid var(--vd-silver-300);
  filter: saturate(0.9) contrast(1.02);
  background: var(--vd-navy-900);
}
.ms-jet-img figcaption {
  margin-top: 14px;
  font-family: var(--font-sans); font-size: 12px; line-height: 1.5;
  letter-spacing: 0.02em; color: var(--vd-silver-600);
  max-width: 100%;
}
.ms-jet-copy .ms-section-title { margin: 0 0 24px; }
.ms-jet-lead {
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: 22px; line-height: 1.5; color: var(--vd-navy-900);
  margin: 0 0 40px; max-width: 56ch;
  padding-bottom: 32px; border-bottom: 1px solid var(--vd-silver-200);
}
.ms-jet-parallels {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px 40px;
  margin-bottom: 40px;
}
.ms-jet-parallels h4 {
  font-family: var(--font-display); font-weight: 500; font-size: 22px;
  color: var(--vd-navy-900); margin: 0 0 12px; letter-spacing: -0.005em;
}
.ms-jet-parallels p {
  font-family: var(--font-sans); font-size: 14px; line-height: 1.6;
  color: var(--vd-ink-soft); margin: 0 0 10px; max-width: 36ch;
}
.ms-jet-mirror {
  padding-top: 10px; border-top: 1px solid var(--vd-silver-200);
  font-size: 13px !important;
}
.ms-jet-mirror b {
  color: var(--vd-gold-700); font-weight: 600;
  font-family: var(--font-sans); font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; display: inline-block; margin-right: 4px;
}
.ms-jet-quote {
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: 22px; line-height: 1.4; color: var(--vd-navy-900);
  margin: 0; padding: 8px 0 8px 28px;
  border-left: 2px solid var(--vd-gold-500); max-width: 56ch;
}
.ms-jet-quote cite {
  display: block; font-style: normal; font-family: var(--font-sans);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--vd-navy-700); margin-top: 16px;
}

/* ============================================================
   TEAM
   ============================================================ */
.ms-team { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px 32px; }
.ms-member { display: flex; flex-direction: column; }
.ms-member-portrait {
  aspect-ratio: 4 / 5; background: var(--vd-navy-800); margin-bottom: 18px;
  overflow: hidden; position: relative; border: 1px solid var(--vd-silver-200);
}
.ms-member-portrait img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.05); display: block; }
.ms-member-portrait-placeholder {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background-image: linear-gradient(160deg, var(--vd-navy-700) 0%, var(--vd-navy-900) 100%);
  color: rgba(216,220,227,0.5);
}
.ms-member-portrait-placeholder span {
  font-family: var(--font-display); font-size: 88px; font-weight: 500;
  letter-spacing: -3px; line-height: 1;
}
.ms-member-name {
  font-family: var(--font-display); font-weight: 500; font-size: 22px;
  color: var(--vd-navy-900); margin: 0; line-height: 1.2;
}
.ms-member { text-decoration: none; color: inherit; cursor: pointer; transition: transform 220ms cubic-bezier(.4,0,.2,1); }
.ms-member:hover { transform: translateY(-2px); }
.ms-member:hover .ms-member-portrait { border-color: var(--vd-silver-300); }
.ms-member-cta {
  margin-top: 8px;
  font-family: var(--font-sans); font-size: 11px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--vd-navy-700);
  opacity: 0; transform: translateY(4px);
  transition: all 220ms cubic-bezier(.4,0,.2,1);
}
.ms-member:hover .ms-member-cta { opacity: 1; transform: translateY(0); color: var(--vd-gold-700); }
.ms-member-role {
  font-family: var(--font-sans); font-size: 11px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--vd-silver-600); margin: 6px 0 4px;
}
.ms-member-bar { font-family: var(--font-mono); font-size: 11px; color: var(--vd-navy-700); }

/* ============================================================
   HONORS
   ============================================================ */
.ms-honors { background: var(--vd-bone); border-top: 1px solid var(--vd-silver-200); border-bottom: 1px solid var(--vd-silver-200); padding: 56px 0; }
.ms-honors-inner { display: flex; flex-direction: column; gap: 32px; align-items: center; }
.ms-honors-label {
  font-family: var(--font-sans); font-size: 11px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--vd-silver-600);
}
.ms-honors-marks { display: flex; gap: 56px; align-items: center; flex-wrap: wrap; justify-content: center; }
.ms-honor {
  display: flex; align-items: center; justify-content: center;
  height: 64px; max-width: 240px; padding: 4px;
  transition: opacity 180ms; opacity: 0.85;
}
.ms-honor:hover { opacity: 1; }
.ms-honor img { max-height: 100%; width: auto; object-fit: contain; display: block; }
.ms-honor--seal { height: 56px; }
.ms-honor--seal img { filter: none; }
.ms-honor--avvo { height: 48px; }
.ms-honor--avvo img { filter: none; }

/* ============================================================
   CONTACT CTA
   ============================================================ */
.ms-cta { background: var(--vd-navy-900); color: var(--vd-cream); padding: 112px 0; position: relative; border-top: 4px solid var(--vd-gold-500); }
.ms-cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.ms-cta-eyebrow {
  font-family: var(--font-sans); font-size: 11px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--vd-navy-700);
  margin: 0 0 20px;
}
.ms-cta-title {
  font-family: var(--font-display); font-weight: 400; font-size: 60px;
  line-height: 1.05; letter-spacing: -0.02em; color: var(--vd-cream); margin: 0 0 28px;
}
.ms-cta-title .italic { font-style: italic; color: var(--vd-gold-700); }
.ms-cta-blurb {
  font-family: var(--font-sans); font-size: 16px; line-height: 1.65;
  color: var(--vd-navy-900); margin: 0 0 36px; max-width: 44ch;
}
.ms-cta-contact { display: grid; gap: 16px; }
.ms-cta-building {
  display: grid; grid-template-columns: 1fr; gap: 0;
  margin-bottom: 20px;
  padding-bottom: 24px; border-bottom: 1px solid var(--vd-silver-200);
}
.ms-cta-building img {
  width: 100%; height: 360px; object-fit: cover; display: block;
  border: 1px solid var(--vd-silver-300);
  filter: brightness(0.98) saturate(0.95) contrast(1.02);
  box-shadow: 0 8px 24px rgba(14, 43, 69, 0.12);
}
.ms-cta-building-cap { display: flex; flex-direction: column; gap: 6px; margin-top: 18px; }
.ms-cta-building-cap .k {
  font-family: var(--font-sans); font-size: 11px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--vd-navy-700);
}
.ms-cta-building-cap .v {
  font-family: var(--font-display); font-weight: 500; font-size: 22px;
  line-height: 1.4; color: var(--vd-navy-900); letter-spacing: -0.005em;
}
.ms-cta-building-cap .addr {
  font-family: var(--font-sans); font-size: 14px; font-weight: 500;
  line-height: 1.5; color: var(--vd-ink-soft); letter-spacing: 0.01em;
  margin-top: 2px;
}
.ms-cta-contact-row {
  display: grid; grid-template-columns: 90px 1fr; gap: 24px; align-items: baseline;
  padding-bottom: 14px; border-bottom: 1px solid rgba(216,220,227,0.12);
}
.ms-cta-contact-row .k {
  font-family: var(--font-sans); font-size: 11px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--vd-navy-700);
}
.ms-cta-contact-row .v { font-family: var(--font-sans); font-size: 15px; font-weight: 500; color: var(--vd-navy-900); text-decoration: none; }
.ms-cta-contact-row a.v:hover { color: var(--vd-pacific-700); }

.ms-cta-form {
  display: grid; gap: 18px; padding: 40px;
  background: var(--vd-navy-900); border: 1px solid var(--vd-navy-700);
  border-radius: 3px;
}
.ms-cta-form-title {
  font-family: var(--font-display); font-weight: 500; font-size: 24px;
  color: var(--vd-cream); margin: 0 0 4px;
}
.ms-cta-field { display: grid; gap: 6px; }
.ms-cta-field label {
  font-family: var(--font-sans); font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--vd-silver-300);
}
.ms-cta-field input, .ms-cta-field select, .ms-cta-field textarea {
  font-family: var(--font-sans); font-size: 14px;
  background: transparent; color: var(--vd-cream);
  border: 0; border-bottom: 1px solid rgba(216,220,227,0.3);
  padding: 10px 0; outline: none; border-radius: 0;
  transition: border-color 140ms;
  resize: vertical;
}
.ms-cta-field input:focus, .ms-cta-field select:focus, .ms-cta-field textarea:focus {
  border-bottom-color: var(--vd-gold-500);
}
.ms-cta-field select { color: var(--vd-cream); background: transparent; }
.ms-cta-field select option { background: var(--vd-navy-900); color: var(--vd-cream); }
.ms-cta-field input::placeholder, .ms-cta-field textarea::placeholder { color: rgba(216,220,227,0.4); }

.ms-cta-submit {
  margin-top: 8px; padding: 14px 22px;
  background: var(--vd-gold-500); color: var(--vd-navy-900);
  font-family: var(--font-sans); font-size: 12px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  border: 0; border-radius: 2px; cursor: pointer; transition: background 140ms;
}
.ms-cta-submit:hover { background: var(--vd-gold-300); }
.ms-cta-fine {
  font-family: var(--font-sans); font-size: 11px; line-height: 1.5;
  color: var(--vd-silver-400); margin: 6px 0 0;
}

.ms-cta-form--done {
  display: grid; place-items: center; text-align: center; min-height: 360px;
  padding: 60px 40px;
}
.ms-cta-done-mark {
  width: 56px; height: 56px; border: 1.5px solid var(--vd-gold-500); color: var(--vd-gold-500);
  border-radius: 50%; display: grid; place-items: center; font-size: 28px;
  margin: 0 auto 24px;
}
.ms-cta-done-title { font-family: var(--font-display); font-style: italic; font-weight: 500; font-size: 36px; color: var(--vd-gold-300); margin: 0 0 12px; }
.ms-cta-done-blurb { font-family: var(--font-sans); font-size: 14px; line-height: 1.6; color: var(--vd-silver-200); margin: 0 auto; max-width: 36ch; }

/* Contact CTA — navy header treatment to match interior-page CTAs */
.ms-cta-eyebrow { color: var(--vd-gold-300); }
.ms-cta-title .italic { color: var(--vd-gold-300); }
.ms-cta-blurb { color: var(--vd-silver-200); }
.ms-cta-building { border-bottom-color: rgba(216,220,227,0.14); }
.ms-cta-building-cap .k { color: var(--vd-gold-300); }
.ms-cta-building-cap .v { color: var(--vd-cream); }
.ms-cta-building-cap .addr { color: var(--vd-silver-300); }
.ms-cta-contact-row { border-bottom-color: rgba(216,220,227,0.14); }
.ms-cta-contact-row .k { color: var(--vd-gold-300); }
.ms-cta-contact-row .v { color: var(--vd-cream); }
.ms-cta-callnote {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--font-sans); font-size: 13px; font-weight: 500; line-height: 1.5; letter-spacing: 0.02em;
  color: var(--vd-gold-300); margin: 18px 0 0; max-width: 46ch;
  padding: 11px 16px; border: 1px solid rgba(168,132,47,0.45); border-radius: 4px;
  background: rgba(168,132,47,0.08);
}
.ms-cta-contact-row a.v:hover { color: var(--vd-gold-300); }
.ms-cta-form { background: var(--vd-navy-800); border-color: var(--vd-navy-600); box-shadow: 0 18px 50px rgba(0,0,0,0.35); }

/* ============================================================
   FOOTER
   ============================================================ */
.ms-footer { background: var(--vd-navy-900); color: var(--vd-silver-200); padding: 72px 0 32px; border-top: 4px solid var(--vd-gold-500); }
.ms-footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 56px; border-bottom: 1px solid rgba(216,220,227,0.12); }
.ms-footer-caption { font-family: var(--font-sans); font-size: 11px; color: var(--vd-silver-500); letter-spacing: 0.04em; line-height: 1.5; }
.ms-footer-logo {
  height: 124px; width: auto; margin-bottom: 20px;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.4));
}
.ms-footer-wordmark { display: flex; flex-direction: column; gap: 8px; margin-bottom: 22px; }
.ms-footer-wordmark-name {
  font-family: var(--font-display); font-weight: 500; font-size: 34px;
  line-height: 1; letter-spacing: 0.01em; color: var(--vd-cream);
}
.ms-footer-wordmark-sub {
  font-family: var(--font-sans); font-size: 10px; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--vd-gold-300);
}
.ms-footer-desc { font-family: var(--font-sans); font-size: 13px; line-height: 1.6; color: var(--vd-silver-300); max-width: 36ch; margin: 0; }
.ms-footer-a250 { display: inline-flex; align-items: center; gap: 11px; margin-top: 22px; text-decoration: none; }
.ms-footer-a250-star { width: 32px; height: 32px; flex: none; border: 1px solid var(--vd-gold-500); border-radius: 50%; display: grid; place-items: center; color: var(--vd-gold-300); font-size: 13px; transition: all 160ms; }
.ms-footer-a250-logo { width: 46px; height: 46px; flex: none; border-radius: 6px; display: block; background: #fff; }
.ms-footer-a250-text { font-family: var(--font-sans); font-size: 10.5px; line-height: 1.45; letter-spacing: 0.1em; text-transform: uppercase; color: var(--vd-silver-400); }
.ms-footer-a250-text strong { color: var(--vd-gold-300); font-weight: 600; letter-spacing: 0.08em; }
.ms-footer-a250:hover .ms-footer-a250-star { background: var(--vd-gold-500); color: var(--vd-navy-900); }
.ms-footer-a250:hover .ms-footer-a250-text { color: var(--vd-silver-200); }
.ms-footer-col h4 { font-family: var(--font-sans); font-size: 11px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--vd-gold-300); margin: 0 0 18px; }
.ms-footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.ms-footer-col ul li { font-family: var(--font-sans); font-size: 13px; color: var(--vd-silver-200); }
.ms-footer-col a { color: var(--vd-silver-200); text-decoration: none; transition: color 140ms; }
.ms-footer-col a:hover { color: var(--vd-cream); }

.ms-footer-bottom { display: flex; gap: 32px; justify-content: space-between; align-items: flex-end; padding-top: 28px; }
.ms-footer-callnote {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-sans); font-size: 12px; font-weight: 500; line-height: 1.5; letter-spacing: 0.02em;
  color: var(--vd-gold-300); margin: 16px 0 0; max-width: 34ch;
  padding: 9px 14px; border: 1px solid rgba(168,132,47,0.4); border-radius: 4px;
  background: rgba(168,132,47,0.08);
}
.rec-dot {
  flex: none; width: 9px; height: 9px; border-radius: 50%; background: #C0392B;
  box-shadow: 0 0 0 3px rgba(192,57,43,0.25); animation: recpulse 2s ease-in-out infinite;
}
@keyframes recpulse { 0%,100% { box-shadow: 0 0 0 3px rgba(192,57,43,0.25); } 50% { box-shadow: 0 0 0 5px rgba(192,57,43,0.08); } }
@media (prefers-reduced-motion: reduce) { .rec-dot { animation: none; } }
.ms-footer-disclaimer-block {
  padding: 40px 48px; margin: 32px -48px -32px;
  background: var(--vd-cream); color: var(--vd-ink);
}
.ms-footer-adv-header {
  display: flex; align-items: center; gap: 18px; margin-bottom: 28px;
}
.ms-footer-adv-seal {
  width: 160px; height: auto; flex: none; display: block;
}
.ms-footer-adv-cap {
  font-family: var(--font-sans); font-size: 11px;
  letter-spacing: 0.02em; color: var(--vd-silver-700);
  margin-top: 6px; line-height: 1.5; max-width: 70ch;
}
.ms-footer-adv-cap b { color: var(--vd-navy-900); font-weight: 600; }
.ms-footer-adv-label {
  display: inline-block;
  font-family: var(--font-sans); font-size: 10px; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--vd-gold-700);
  padding: 6px 12px; border: 1px solid var(--vd-gold-500);
  border-radius: 2px;
}
.ms-footer-disclaimer-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px 56px;
  padding-bottom: 32px; border-bottom: 1px solid var(--vd-silver-200);
  margin-bottom: 24px;
}
.ms-footer-disclaimer-grid h5 {
  font-family: var(--font-sans); font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--vd-navy-700); margin: 0 0 10px;
}
.ms-footer-disclaimer-grid p {
  font-family: var(--font-sans); font-size: 12px; line-height: 1.65;
  color: var(--vd-ink-soft); margin: 0; max-width: 60ch;
}
.ms-footer-disclaimer-grid a { color: var(--vd-navy-700); text-decoration: underline; text-decoration-color: var(--vd-silver-300); text-underline-offset: 2px; }
.ms-footer-disclaimer-grid a:hover { color: var(--vd-pacific-500); }
.ms-footer-copyright {
  font-family: var(--font-sans); font-size: 11px; line-height: 1.65;
  color: var(--vd-silver-700); margin: 0; max-width: none;
  padding-top: 20px; border-top: 1px solid var(--vd-silver-200);
  text-align: justify;
}
.ms-footer-copyright strong { color: var(--vd-navy-900); font-weight: 600; }
.ms-footer-disclaimer {
  font-family: var(--font-sans); font-size: 11px; line-height: 1.65;
  color: var(--vd-silver-400); margin: 0; max-width: 78ch;
}
.ms-footer-disclaimer strong { color: var(--vd-silver-200); font-weight: 600; }
.ms-footer-social { display: flex; gap: 10px; align-items: center; flex: none; }
.ms-footer-social a {
  width: 36px; height: 36px; border: 1px solid rgba(216,220,227,0.3);
  border-radius: 50%; display: grid; place-items: center;
  color: var(--vd-silver-300); text-decoration: none;
  font-family: var(--font-display); font-style: italic; font-size: 14px;
  transition: all 140ms;
}
.ms-footer-social a:hover { border-color: var(--vd-gold-500); color: var(--vd-gold-300); }
.ms-footer-flags { display: flex; gap: 12px; align-items: center; flex: none; margin-left: 18px; }
.ms-footer-flags img {
  height: 26px; width: auto; display: block; border-radius: 2px;
  border: 1px solid rgba(216,220,227,0.25); box-shadow: 0 2px 8px -3px rgba(0,0,0,0.5);
}

/* ============================================================
   SHARED BUTTONS
   ============================================================ */
.ms-btn {
  font-family: var(--font-sans); font-size: 12px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 14px 22px; border-radius: 2px; border: 1px solid transparent;
  cursor: pointer; transition: all 140ms; text-decoration: none;
  display: inline-flex; align-items: center; gap: 10px;
}
.ms-btn--primary { background: var(--vd-navy-700); color: var(--vd-cream); }
.ms-btn--primary:hover { background: var(--vd-navy-800); }
.ms-btn--gold { background: var(--vd-gold-500); color: var(--vd-navy-900); }
.ms-btn--gold:hover { background: var(--vd-gold-300); }
.ms-btn--ghost {
  background: transparent; color: var(--vd-navy-700);
  padding-left: 0; padding-right: 0; letter-spacing: 0.06em;
  text-transform: none; font-family: var(--font-mono); font-size: 14px;
}
.ms-btn--ghost-inv {
  background: transparent; color: var(--vd-navy-900);
  border-color: var(--vd-silver-400);
}
.ms-btn--ghost-inv:hover { border-color: var(--vd-gold-500); color: var(--vd-gold-700); }
