/* =============================================
   FUNDAMENT CAPITAL — MAIN STYLESHEET
   Design: Pixel-faithful to PDF specs
   Colors: #00297c (navy) · #eeebe3 (cream)
   Fonts: Inter · Baskervville
   ============================================= */

/* ─────────────────────────────────────────────
   1. CUSTOM PROPERTIES
───────────────────────────────────────────── */
:root {
  --navy: #00297c;
  --navy-dark: #001a50;
  --navy-deep: #070f22;
  --cream: #eeebe3;
  --cream-dark: #e5e1d6;
  --white: #ffffff;
  --text-dark: #0d1b3e;
  --text-mid: #4a5568;
  --text-light: rgba(255, 255, 255, 0.72);
  --border-light: rgba(255, 255, 255, 0.15);
  --border-navy: rgba(0, 41, 124, 0.2);

  --font-serif: "Baskervville", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1380px;
  --gutter: 60px;
  --section-pad: 100px;

  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-in-out: cubic-bezier(0.645, 0.045, 0.355, 1);
  --dur-fast: 0.25s;
  --dur-mid: 0.45s;
  --dur-slow: 0.75s;
}

/* ─────────────────────────────────────────────
   2. RESET & BASE
───────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--white);
  background-color: var(--navy);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  text-decoration: none;
  color: inherit;
}
ul,
ol {
  list-style: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}
input,
textarea,
select {
  font-family: inherit;
}
strong {
  font-weight: 900 !important;
}
/* ─────────────────────────────────────────────
   3. TYPOGRAPHY
───────────────────────────────────────────── */
.fc-display {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

h1,
.h1 {
  font-family: var(--font-serif);
  font-size: clamp(24px, 6vw, 86px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.02em;
}
h2,
.h2 {
  font-family: var(--font-serif);
  font-size: clamp(24px, 6vw, 86px);
  font-weight: 400;
  line-height: 1.1;
}
h3,
.h3 {
  font-family: var(--font-serif);
  font-size: clamp(16px, 2.5vw, 36px);
  font-weight: 400;
  line-height: 1.2;
}
h4,
.h4 {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
h5,
.h5 {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.fc-eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.65;
}

.fc-body-lg {
  font-size: 18px;
  line-height: 1.7;
}
.fc-body {
  font-size: 15px;
  line-height: 1.7;
}
.fc-body-sm {
  font-size: 13px;
  line-height: 1.6;
}

/* ─────────────────────────────────────────────
   4. LAYOUT UTILITIES
───────────────────────────────────────────── */
.fc-container {
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.fc-section-margin {
  margin: 4rem 0;
}
.fc-section {
  padding: var(--section-pad) 0;
}
.fc-section--sm {
  padding: 60px 0;
}
.fc-section--lg {
  padding: 140px 0;
}

.fc-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.fc-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.fc-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.fc-flex {
  display: flex;
}
.fc-flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.fc-flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ─────────────────────────────────────────────
   5. BUTTONS
───────────────────────────────────────────── */
.fc-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 28px;
  border: 1px solid currentColor;
  transition: all var(--dur-mid) var(--ease-out);
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
}

.fc-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: currentColor;
  transform: translateX(-101%);
  transition: transform var(--dur-mid) var(--ease-out);
  z-index: 0;
}

.fc-btn:hover::before {
  transform: translateX(0);
}

.fc-btn span,
.fc-btn svg {
  position: relative;
  z-index: 1;
}

.fc-btn:hover {
  color: inherit;
}

/* Light button (for dark backgrounds) */
.fc-btn--light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}
.fc-btn--light::before {
  background: var(--white);
}
.fc-btn--light:hover {
  color: var(--navy-dark);
}

/* Navy button (for light backgrounds) */
.fc-btn--navy {
  color: var(--navy);
  border-color: var(--navy);
}
.fc-btn--navy::before {
  background: var(--navy);
}
.fc-btn--navy:hover {
  color: var(--white);
}

/* Solid navy (contact form) */
.fc-btn--solid {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  padding: 16px 40px;
}
.fc-btn--solid::before {
  background: var(--navy-dark);
}
.fc-btn--solid:hover {
  color: var(--white);
}

.fc-btn-arrow {
  display: inline-block;

  height: 1px;
  background: currentColor;
  position: relative;
  transition: width var(--dur-mid) var(--ease-out);
}
.fc-btn-arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: -3px;
  width: 7px;
  height: 7px;
  border-right: 1px solid currentColor;
  border-top: 1px solid currentColor;
  transform: rotate(45deg);
}
.fc-btn:hover .fc-btn-arrow {
  width: 24px;
}

/* Text link with underline sweep */
.fc-link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
}
.fc-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width var(--dur-mid) var(--ease-out);
}
.fc-link:hover::after {
  width: 100%;
}

/* ─────────────────────────────────────────────
   6. NAVIGATION
───────────────────────────────────────────── */
.fc-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 var(--gutter);
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition:
    background var(--dur-mid) var(--ease-out),
    transform 0.35s var(--ease-out);
}

.fc-header--scrolled {
  background: var(--navy);
}
.fc-header--scrolled::before {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(12px);
  z-index: -1;
  pointer-events: none;
}
.fc-header--scrolled .fc-logo img {
  width: 130px;
}
.fc-header--hidden {
  transform: translateY(-100%);
}

.fc-header--light {
  background: transparent;
}

.fc-header--cream {
  background: var(--cream);
}
.fc-header--cream .fc-nav-link,
.fc-header--cream .fc-header-search {
  color: var(--navy-dark) !important;
}

/* Logo */
.fc-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.fc-logo img {
  height: auto;
  width: 150px;
  object-fit: contain;
}
.fc-logo-text {
  display: flex;
  flex-direction: column;
}
.fc-logo-text strong {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1.2;
}
.fc-logo-text span {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

/* Nav */
.fc-nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.fc-nav > ul {
  display: flex;
  align-items: center;
  gap: 4px;
}

.fc-nav > ul > li {
  position: relative;
}

.fc-nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.85);
  padding: 8px 14px;
  transition: color var(--dur-fast) var(--ease-out);
  white-space: nowrap;
}
.fc-nav-link:hover {
  color: var(--white);
}

.fc-nav-arrow {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  margin-left: 2px;
  transition: transform var(--dur-fast) var(--ease-out);
  opacity: 0.6;
}
li:hover .fc-nav-arrow {
  transform: rotate(-135deg) translateY(-2px);
  opacity: 1;
}

/* Dropdown */
.fc-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 200px;
  background: rgba(7, 15, 34, 0.97);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-light);
  padding: 8px 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition:
    opacity var(--dur-fast) var(--ease-out),
    transform var(--dur-fast) var(--ease-out);
}
li:hover > .fc-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.fc-dropdown li a {
  display: block;
  padding: 10px 20px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.04em;
  transition:
    color var(--dur-fast),
    background var(--dur-fast);
}
.fc-dropdown li a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

/* Search */
.fc-header-search {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: rgba(255, 255, 255, 0.8);
  margin-left: 8px;
  transition: color var(--dur-fast);
}
.fc-header-search:hover {
  color: var(--white);
}
.fc-header-search svg {
  width: 16px;
  height: 16px;
}

/* Mobile toggle */
.fc-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
}
.fc-nav-toggle span {
  display: block;
  height: 1px;
  background: var(--white);
  transition: all var(--dur-mid) var(--ease-out);
}
.fc-nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}
.fc-nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.fc-nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

/* ─────────────────────────────────────────────
   7. HERO — SHARED STYLES
───────────────────────────────────────────── */
.fc-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 80px;
  color: var(--white);
  overflow: hidden;
}

.fc-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: top;
  z-index: 0;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}
.fc-hero.loaded .fc-hero__bg {
  transform: scale(1);
}

.fc-hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  width: 100%;
  text-align: center;
}

.fc-hero__eyebrow {
  font-family: var(--font-serif);

  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
  display: block;
}
.firm .fc-hero__title {
  font-size: clamp(24px, 4.5vw, 72px);
}
.fc-hero__title {
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 28px;
}
.fc-hero__title_h2 {
  font-size: clamp(16px, 3.5vw, 50px);
  margin-bottom: 1rem;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .core {
    margin-bottom: 4rem;
  }
}

.core .fc-hero__sub {
  max-width: 920px;
}
.fc-hero__sub {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
  max-width: 730px;
  line-height: 1.75;
  margin-bottom: 44px;
}
.fc-hero__content.firm {
  text-align: left;
}
.fc-hero__content.core {
  text-align: left;
}
.fc-hero__dots {
  display: flex;
  gap: 8px;
  margin-top: 48px;
}
.fc-hero__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all var(--dur-mid) var(--ease-out);
}
.fc-hero__dot.active {
  background: var(--white);
  width: 24px;
  border-radius: 3px;
}
/*reveal text animation*/

.fc-scrub-letter {
  color: rgba(255, 255, 255, 0.18);
  display: inline;
}
/* ─────────────────────────────────────────────
   8. HOMEPAGE — INTRO TEXT
───────────────────────────────────────────── */
.fc-intro {
  background: var(--navy);
  padding: 96px var(--gutter);
  text-align: center;
}
.fc-intro__text {
  font-family: var(--font-serif);
  font-size: clamp(16px, 2.4vw, 35px);
  font-weight: 400;
  line-height: 1.55;
  color: var(--white);
  max-width: 820px;
  margin: 0 auto;
}

/* ─────────────────────────────────────────────
   9. HOMEPAGE — VIDEO / MEDIA PLAYER
───────────────────────────────────────────── */
.fc-media {
  position: relative;
  background: var(--navy);
  
  overflow: hidden;
}
.fc-media__placeholder {
  position: relative;
  
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.fc-media__controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 40px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
  color: var(--white);
}
.fc-media__btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  opacity: 0.8;
  transition: opacity var(--dur-fast);
  cursor: pointer;
}
.fc-media__btn:hover {
  opacity: 1;
}
.fc-media__btn svg {
  width: 20px;
  height: 20px;
}
.fc-media__progress {
  flex: 1;
  height: 2px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 1px;
  cursor: pointer;
}
.fc-media__progress-fill {
  width: 30%;
  height: 100%;
  background: var(--white);
  border-radius: 1px;
}
.fc-media__vol {
  width: 16px;
  height: 16px;
  opacity: 0.7;
}
.fc-media__settings {
  width: 16px;
  height: 16px;
  opacity: 0.7;
}

/* ─────────────────────────────────────────────
   10. HOMEPAGE — WHAT WE DO
───────────────────────────────────────────── */
.fc-what {
  background: var(--navy);
  padding: var(--section-pad) 0;
}

.fc-section-heading {
  text-align: center;
  margin-bottom: 20px;
}
.fc-section-heading h2 {
  display: inline-flex;
  align-items: center;
  gap: 24px;
}
.fc-section-heading h2::before,
.fc-section-heading h2::after {
  content: "";
  display: inline-block;
  width: 60px;
  height: 1px;
  background: var(--cream, #e8e0d0);
  flex-shrink: 0;
}
.fc-section-subtext {
  text-align: center;
  font-size: 13px;
  color: var(--white);
  margin-bottom: 64px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.fc-what__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 48px;
}

.fc-what__card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.fc-what__card-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.1);
  transition:
    height var(--dur-slow) var(--ease-out),
    filter var(--dur-slow) var(--ease-out);
  display: block;
}
.fc-what__card:hover .fc-what__card-img {
  height: 380px;
  filter: grayscale(40%) contrast(1.05);
}

.fc-what__card-body {
  padding: 24px 0 8px;
}
.fc-what__card-title {
  font-size: clamp(16px, 2vw, 29px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.35;
}

/* ─────────────────────────────────────────────
   11. HOMEPAGE — WHO WE WORK WITH
───────────────────────────────────────────── */
.fc-who {
  background: var(--navy);
  padding: var(--section-pad) 0;
}

.fc-who__heading {
  text-align: center;
  color: var(--white);

  font-size: clamp(20px, 5vw, 72px);
  font-weight: 500;

  text-transform: uppercase;
  margin-bottom: 12px;
}
.fc-who__sub {
  text-align: center;
  color: var(--text-light);
  font-size: 15px;
  margin-bottom: 52px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.fc-who__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.fc-who__card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/3;
  cursor: pointer;
}

.fc-who__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(100%);
  transform: scale(1.04);
  transition:
    transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    filter 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: block;
}
.fc-who__card:hover .fc-who__card-img {
  transform: scale(1);
  filter: grayscale(100%) brightness(0.85);
}

/* Hidden — overlay removed on hover */
.fc-who__card-overlay {
  display: none;
}

/* White panel slides up from bottom on hover */
.fc-who__card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 32px 32px;
  z-index: 2;
  background: #fff;
  transform: translateY(100%);
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.fc-who__card:hover .fc-who__card-body {
  transform: translateY(0);
}

.fc-who__card-title {
  font-family: var(--font-serif);
  font-size: clamp(16px, 2vw, 29px);
  font-weight: 700;

  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 10px;
}

.fc-who__card-desc {
  font-size: 12px;
  color: rgba(0, 10, 40, 0.65);
  line-height: 1.7;
  max-width: 300px;
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 0.35s var(--ease-out) 0.15s,
    transform 0.35s var(--ease-out) 0.15s;
}
.fc-who__card:hover .fc-who__card-desc {
  opacity: 1;
  transform: translateY(0);
}

/* ─────────────────────────────────────────────
   12. HOMEPAGE — OUR INSIGHTS
───────────────────────────────────────────── */
.fc-insights {
  background: var(--navy);
  padding: var(--section-pad) 0;
  overflow: hidden;
}

.fc-insights__heading {
  text-align: center;
  font-family: var(--font-serif);
  font-size: clamp(16px, 3.5vw, 50px);
  color: var(--white);
  margin-bottom: 52px;
}

/* Swiper container — bleeds past the grid gutter for the peek effect */
.fc-insights-swiper {
  overflow: visible;
  padding-bottom: 48px;
}

.fc-insights__card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 0;
  transition: opacity var(--dur-mid) var(--ease-out);
}

/* Dim non-active slides */
.fc-insights-swiper .swiper-slide:not(.swiper-slide-active) {
  opacity: 0.45;
}

.fc-insights__card-img-wrap {
  overflow: hidden;
  display: block;
}

.fc-insights__card-img {
  width: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition:
    transform var(--dur-slow) var(--ease-out),
    filter 0.5s var(--ease-out);
  display: block;
}
.fc-insights__card:hover .fc-insights__card-img {
  transform: scale(1.03);
  filter: grayscale(0%);
}

.fc-insights__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 10, 35, 0.88) 0%,
    rgba(0, 10, 35, 0.1) 60%,
    transparent 100%
  );
  pointer-events: none;
}

.fc-insights__card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 48px;
  color: var(--white);
}
.fc-insights__card-tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 10px;
  display: block;
}
.fc-insights__card-title {
  font-family: var(--font-serif);
  font-size: clamp(16px, 2.2vw, 32px);
  font-weight: 400;
  line-height: 1.3;
  max-width: 600px;
  margin-bottom: 16px;
}
.fc-insights__card-link {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}
.fc-insights__card-link:hover {
  color: var(--white);
}

/* Swiper pagination bullets */
.fc-insights-pagination {
  bottom: 0 !important;
}
.fc-insights-pagination .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.3);
  opacity: 1;
  transition: all var(--dur-mid);
  border-radius: 3px;
}
.fc-insights-pagination .swiper-pagination-bullet-active {
  width: 24px;
  background: var(--white);
  border-radius: 3px;
}

/* Swiper prev/next navigation */
.fc-insights-prev,
.fc-insights-next {
  --swiper-navigation-size: 14px; /* override Swiper's 44px default */
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px !important;
  height: 44px !important;
  margin-top: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  display: flex !important;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background 0.3s,
    border-color 0.3s;
}
/* Positions set dynamically by JS based on active slide width */
.fc-insights-prev {
  left: 16px;
}
.fc-insights-next {
  right: 16px;
}
.fc-insights-prev:hover,
.fc-insights-next:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.6);
}
.fc-insights-prev::after,
.fc-insights-next::after {
  font-size: 12px !important;
  color: #fff;
  font-weight: 900;
  line-height: 1;
}
.swiper-button-disabled.fc-insights-prev,
.swiper-button-disabled.fc-insights-next {
  opacity: 0.3;
  pointer-events: none;
}

/* ─────────────────────────────────────────────
   BLOG ARCHIVE
───────────────────────────────────────────── */
.fc-archive-hero {
  background: var(--navy);
  padding: 140px 0 72px;
  position: relative;
  overflow: hidden;
}
.fc-archive-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 41, 124, 0.6) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.fc-archive-hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.fc-archive-hero__eyebrow {
  color: rgba(255, 255, 255, 0.5);
  display: block;
  margin-bottom: 16px;
}
.fc-archive-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(24px, 6vw, 86px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.fc-archive-hero__sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);

  line-height: 1.7;
}

.fc-archive-body {
  background: var(--navy);
  padding: 80px 0 100px;
}

/* Featured post */
.fc-archive-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  margin-bottom: 80px;
  overflow: hidden;
}
.fc-archive-featured__img-wrap {
  position: relative;
  display: block;
  overflow: hidden;
}
.fc-archive-featured__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--dur-slow) var(--ease-out);
}
.fc-archive-featured__img-wrap:hover .fc-archive-featured__img {
  transform: scale(1.04);
}
.fc-archive-featured__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 10, 35, 0.15), transparent);
  pointer-events: none;
}
.fc-archive-featured__body {
  background: var(--navy);
  padding: 56px 56px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
.fc-archive-featured__tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}
.fc-archive-featured__title {
  font-family: var(--font-serif);
  font-size: clamp(16px, 2.8vw, 40px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--white);
}
.fc-archive-featured__title a {
  color: inherit;
  transition: opacity var(--dur-fast);
}
.fc-archive-featured__title a:hover {
  opacity: 0.75;
}
.fc-archive-featured__excerpt {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.6);
  max-width: 400px;
}

/* Post grid */
.fc-post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 36px;
  margin-bottom: 72px;
}
.fc-post-card__img-wrap {
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
}
.fc-post-card__img-wrap a {
  display: block;
}
.fc-post-card__img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  display: block;
  filter: grayscale(100%);
  transition:
    transform var(--dur-slow) var(--ease-out),
    filter var(--dur-slow) var(--ease-out);
}
.fc-post-card:hover .fc-post-card__img {
  transform: scale(1.04);
  filter: grayscale(0%);
}
.fc-post-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(7, 15, 34, 0.82) 0%,
    rgba(7, 15, 34, 0.2) 55%,
    transparent 100%
  );
  pointer-events: none;
}
.fc-post-card__img-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 28px;
  color: var(--white);
}
.fc-post-card p {
  color: rgba(255, 255, 255, 0.7);
}
.fc-post-card__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fc-post-card__tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  display: block;
  margin-bottom: 6px;
}
.fc-post-card__title {
  font-family: var(--font-serif);
  font-size: clamp(15px, 1.4vw, 22px);
  font-weight: 400;
  line-height: 1.3;
  color: var(--white);
}
.fc-post-card__title a {
  color: inherit;
  transition: color var(--dur-fast);
}
.fc-post-card__title a:hover {
  color: var(--white);
}
.fc-post-card p {
  line-clamp: 3;
  -webkit-line-clamp: 3;
}
.fc-post-card__excerpt {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-mid);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-clamp: 3;
  overflow: hidden;
}
.fc-post-card__link {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
}
.fc-post-card__link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--navy);
  transition: width var(--dur-mid) var(--ease-out);
}
.fc-post-card__link:hover::after {
  width: 100%;
}

/* Pagination */
.fc-archive-pagination {
  text-align: center;
  margin-top: 16px;
}
.fc-archive-pagination .nav-links {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.fc-archive-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--navy-dark);
  border: 1px solid transparent;
  transition: all var(--dur-fast);
}
.fc-archive-pagination .page-numbers:hover,
.fc-archive-pagination .page-numbers.current {
  border-color: var(--navy);
  color: var(--navy);
}
.fc-archive-pagination .prev,
.fc-archive-pagination .next {
  width: auto;
  padding: 0 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 11px;
}
.fc-archive-empty {
  text-align: center;
  padding: 60px 0;
  font-size: 14px;
  color: var(--text-mid);
}

/* ─────────────────────────────────────────────
   SINGLE POST
───────────────────────────────────────────── */
.fc-single-hero {
  position: relative;
  min-height: 58vh;
  display: flex;
  align-items: flex-end;
  background: var(--navy-deep);
  overflow: hidden;
}
.fc-single-hero__bg {
  position: absolute;
  inset: 0;
}
.fc-single-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.32) contrast(1.1);
}
.fc-single-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 10, 35, 0.85) 0%,
    rgba(0, 10, 35, 0.2) 60%,
    transparent 100%
  );
  pointer-events: none;
}
.fc-single-hero__content {
  position: relative;
  z-index: 1;
  padding-top: 120px;
  padding-bottom: 64px;
  width: 100%;
}
.fc-single-hero__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.5);
}
.fc-single-hero__sep {
  opacity: 0.4;
}
.fc-single-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(16px, 4vw, 58px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
  max-width: 820px;
  letter-spacing: -0.01em;
}

.fc-single-body {
  background: var(--navy);
}
.fc-single-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.fc-single-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 52px;
  position: relative;
}
.fc-single-back::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--navy);
  transition: width var(--dur-mid) var(--ease-out);
}
.fc-single-back:hover::after {
  width: 100%;
}

/* Prose typography */
.fc-single-prose {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-light);
}
.fc-single-prose h2,
.fc-single-prose h3,
.fc-single-prose h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--navy-dark);
  margin: 48px 0 16px;
  line-height: 1.25;
}
.fc-single-prose h2 {
  font-size: clamp(16px, 2.5vw, 36px);
}
.fc-single-prose h3 {
  font-size: clamp(16px, 2vw, 29px);
}
.fc-single-prose p {
  margin-bottom: 24px;
}
.fc-single-prose a {
  color: var(--navy);
  border-bottom: 1px solid rgba(0, 41, 124, 0.3);
  transition: border-color var(--dur-fast);
}
.fc-single-prose a:hover {
  border-color: var(--navy);
}
.fc-single-prose ul,
.fc-single-prose ol {
  margin: 0 0 24px 24px;
}
.fc-single-prose li {
  margin-bottom: 8px;
}
.fc-single-prose ul {
  list-style: disc;
}
.fc-single-prose ol {
  list-style: decimal;
}
.fc-single-prose blockquote {
  border-left: 2px solid var(--navy);
  margin: 36px 0;
  padding: 8px 0 8px 28px;
  font-family: var(--font-serif);
  font-size: clamp(16px, 2vw, 29px);
  color: var(--navy-dark);
  line-height: 1.5;
}
.fc-single-prose img {
  width: 100%;
  height: auto;
  margin: 36px 0;
}
.fc-single-prose figure {
  margin: 36px 0;
}
.fc-single-prose figcaption {
  font-size: 12px;
  color: var(--text-mid);
  text-align: center;
  margin-top: 10px;
  letter-spacing: 0.04em;
}

/* Tags */
.fc-single-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 52px;
  padding-top: 32px;
  border-top: 1px solid var(--border-navy);
}
.fc-single-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  border: 1px solid rgba(0, 41, 124, 0.25);
  padding: 6px 14px;
  transition: all var(--dur-fast);
}
.fc-single-tag:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* Related posts */
.fc-single-related {
  background: var(--navy);
  padding: 80px 0 100px;
}
.fc-single-related .fc-section-heading {
  margin-bottom: 48px;
}
.fc-single-related .fc-section-heading h2 {
  font-size: clamp(12px, 2.5vw, 36px);
  color: var(--white);
}
.fc-single-related .fc-section-heading h2::before,
.fc-single-related .fc-section-heading h2::after {
  background: var(--white);
}

/* ── Archive & single responsive ── */
@media (max-width: 1024px) {
  .fc-post-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .fc-archive-featured {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .fc-archive-featured__img-wrap {
    aspect-ratio: 16/7;
  }
  .fc-archive-featured__body {
    padding: 40px 36px;
  }
}
@media (max-width: 640px) {
  .fc-archive-hero {
    padding: 120px 0 52px;
  }
  .fc-post-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .fc-archive-featured__body {
    padding: 32px 24px;
  }
  .fc-single-content {
    padding: 0 24px;
  }
}

/* ─────────────────────────────────────────────
   13. FIRM OVERVIEW — INTRODUCTION SPLIT
───────────────────────────────────────────── */
.fc-intro-split {
  position: relative;

  overflow: hidden;
}

.fc-intro-split__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.8) contrast(1.1);
  transition: transform var(--dur-slow) var(--ease-out);
  border-radius: 5px;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
}
.fc-intro-split:hover .fc-intro-split__bg {
  transform: scale(1.03);
}

.fc-intro-split__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;

  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding: 42px 60px;
  gap: 80px;
  align-items: center;
}

.fc-intro-split__left {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.fc-intro-split__label {
  font-size: clamp(16px, 4vw, 50px);
  font-weight: 500;

  text-transform: uppercase;

  display: block;
  font-family: var(--font-serif);
}
.fc-intro-split__title {
  font-family: var(--font-serif);
  font-size: clamp(16px, 2.5vw, 36px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.fc-intro-split__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.fc-intro-split__text {
  font-size: 12px;

  font-weight: 600;
}

/* Introduction — hover reveal (mirrors Core Principles) */
.fc-intro-reveal::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(7, 15, 34, 0);
  transition: background 0.5s var(--ease-out);
  z-index: 0;
  pointer-events: none;
}
.fc-intro-reveal:hover::after {
  background: rgba(7, 15, 34, 0.55);
}
.fc-intro-reveal__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 450px;
  padding: 80px var(--gutter);
}
.fc-intro-reveal__heading {
  transition: transform 0.5s var(--ease-out);
}
.fc-intro-reveal:hover .fc-intro-reveal__heading {
  transform: translateX(-200px);
}
.fc-intro-reveal__title {
  font-family: var(--font-serif);
  font-size: clamp(24px, 6vw, 86px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  text-transform: uppercase;
  text-align: center;
  transition: color 0.45s var(--ease-out);
}
.fc-intro-reveal:hover .fc-intro-reveal__title {
  color: var(--white);
  font-size: 3vw;
}
.fc-intro-reveal__panel {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) translateX(60px);
  width: 500px;
  padding: 2rem;
  opacity: 0;
  transition:
    opacity 0.5s var(--ease-out) 0.1s,
    transform 0.5s var(--ease-out) 0.1s;
  pointer-events: none;
}
.fc-intro-reveal:hover .fc-intro-reveal__panel {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
  pointer-events: auto;
}
.fc-intro-reveal__text {
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 12px;
}
.fc-intro-reveal__text:last-child {
  margin-bottom: 0;
}

/* ─────────────────────────────────────────────
   14. FIRM OVERVIEW — FULL-BLEED IMAGE SECTIONS
───────────────────────────────────────────── */
.fc-fullbleed {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.fc-fullbleed__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;

  transition: transform 6s ease-out;
  z-index: 0;
}
.fc-fullbleed.fc-parallax .fc-fullbleed__bg {
  will-change: transform;
}

.fc-fullbleed__content {
  position: relative;
  z-index: 1;
  padding: 80px var(--gutter);
}
.fc-fullbleed__label {
  font-size: clamp(12px, 2.5vw, 36px);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: var(--font-serif);
  margin-bottom: 16px;
  display: block;
}
.fc-fullbleed__title {
  font-family: var(--font-serif);
  font-size: clamp(24px, 6vw, 86px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  text-transform: uppercase;
  text-align: center;
}
.fc-fullbleed__title.principles {
  color: var(--navy);
}

/* Core Principles — hover reveal */
.fc-principles-block::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(7, 15, 34, 0);
  transition: background 0.5s var(--ease-out);
  z-index: 0;
  pointer-events: none;
}
.fc-principles-block:hover::after {
  background: rgba(7, 15, 34, 0.55);
}
.fc-principles-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
}
.fc-principles-heading {
  transition: transform 0.5s var(--ease-out);
}
.fc-principles-block:hover .fc-principles-heading {
  transform: translateX(-200px);
}
.fc-principles-block .fc-fullbleed__title.principles {
  transition: color 0.45s var(--ease-out);
}
.fc-principles-block:hover .fc-fullbleed__title.principles {
  color: var(--white);
  font-size: 3vw;
}
.fc-principles__panel {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) translateX(60px);
  width: 500px;
  padding: 2rem;
  opacity: 0;
  transition:
    opacity 0.5s var(--ease-out) 0.1s,
    transform 0.5s var(--ease-out) 0.1s;
  pointer-events: none;
}
.fc-principles-block:hover .fc-principles__panel {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
  pointer-events: auto;
  text-align: left;
}
.fc-principles__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fc-principles__list li {
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-sans);
  font-size: 12.5px;
  line-height: 1.65;
  padding-left: 0;
  border-left: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.fc-principles__list strong {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(12px, 1.5vw, 22px);
  font-weight: 400;
  font-style: normal;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.fc-fullbleed__link {
  margin-top: 32px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;

  transition: color var(--dur-fast);
}
.fc-fullbleed__link:hover {
  color: var(--white);
}

/* ─────────────────────────────────────────────
   15. FIRM OVERVIEW — CORE PRINCIPLES (centered)
───────────────────────────────────────────── */
.fc-principles {
  background: var(--navy-deep);
  padding: 0;
}
.fc-principles .fc-fullbleed__title {
  color: var(--navy);
  font-size: clamp(22px, 5.5vw, 79px);
}

/* ─────────────────────────────────────────────
   16. FIRM OVERVIEW — INVESTMENT PHILOSOPHY
───────────────────────────────────────────── */
.fc-philosophy {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.fc-philosophy__left {
  position: relative;
  overflow: hidden;
}
.fc-philosophy__left-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.3) saturate(1.4) hue-rotate(200deg);
  display: block;
}
.fc-philosophy__left-title {
  position: absolute;
  bottom: 52px;
  left: 52px;
  font-family: var(--font-serif);
  font-size: clamp(12px, 2.5vw, 36px);
  color: var(--white);
  font-weight: 400;
  line-height: 1.15;
}

.fc-philosophy__right {
  background: var(--navy);
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

.fc-philosophy__item {
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: border-color var(--dur-mid);
}
.fc-philosophy__item:first-child {
  padding-top: 0;
}
.fc-philosophy__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.fc-philosophy__item:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.fc-philosophy__item-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
  display: block;
  transition: color var(--dur-mid);
}
.fc-philosophy__item:hover .fc-philosophy__item-label {
  color: rgba(100, 150, 255, 0.9);
}

.fc-philosophy__item-title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}
.fc-philosophy__item-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
}

/* ─────────────────────────────────────────────
   17. CORE SPECIALTIES — SPECIALTY CARDS
───────────────────────────────────────────── */
.fc-specialty {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
}

.fc-specialty__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;

  transition: transform var(--dur-slow) var(--ease-out);
}
.fc-specialty:hover .fc-specialty__bg {
  transform: scale(1.04);
}

.fc-specialty__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding: 72px 80px;
  gap: 80px;
  align-items: center;
}

.fc-specialty__left {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
}

.fc-specialty__title {
  font-size: clamp(16px, 2vw, 29px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  text-transform: uppercase;
}

.fc-specialty__details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.fc-specialty__detail-label {
  font-size: clamp(12px, 1.5vw, 22px);
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
  display: block;
  font-family: var(--font-serif);
  font-weight: 900;
}
.fc-specialty__detail-text {
  font-size: 12.5px;

  line-height: 1.65;
}

/* Investment Philosophy — hover reveal (mirrors Core Principles) */
.fc-philosophy-reveal::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(7, 15, 34, 0);
  transition: background 0.5s var(--ease-out);
  z-index: 0;
  pointer-events: none;
}
.fc-philosophy-reveal:hover::after {
  background: rgba(7, 15, 34, 0.55);
}
.fc-philosophy-reveal .fc-specialty__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.fc-philosophy-reveal .fc-specialty__left {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.5s var(--ease-out);
}
.fc-philosophy-reveal:hover .fc-specialty__left {
  transform: translateX(-200px);
}
.fc-philosophy-reveal .fc-specialty__title {
  font-size: clamp(22px, 3.5vw, 56px);
  transition: font-size 0.45s var(--ease-out);
  font-weight: 900;
}
.fc-philosophy-reveal:hover .fc-specialty__title {
  font-size: 2.5vw;
}
.fc-philosophy-reveal .fc-specialty__details {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) translateX(60px);
  width: 500px;
  padding: 2rem;
  opacity: 0;
  transition:
    opacity 0.5s var(--ease-out) 0.1s,
    transform 0.5s var(--ease-out) 0.1s;
  pointer-events: none;
}
.fc-philosophy-reveal:hover .fc-specialty__details {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
  pointer-events: auto;
}

/* ─────────────────────────────────────────────
   18. CORE SPECIALTIES — SUPPORTING CAPABILITIES
───────────────────────────────────────────── */
.fc-support {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}
.fc-support::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(7, 15, 34, 0);
  transition: background 0.5s var(--ease-out);
  z-index: 0;
  pointer-events: none;
}
.fc-support:hover::after {
  background: rgba(7, 15, 34, 0.55);
}
.fc-support__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.fc-support__content {
  position: relative;
  z-index: 1;
  padding: 80px var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.fc-support__title {
  font-family: var(--font-serif);
  font-size: clamp(24px, 6vw, 86px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 0;
  transform: translateY(50px);
  transition: transform 0.5s var(--ease-out);
}
.fc-support:hover .fc-support__title {
  transform: translateY(-32px);
}
@media (max-width: 768px) {
  .fc-support__title {
    transform: translateY(150px);
  }
}
.fc-support__sub {
  font-size: 13px;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.5s var(--ease-out) 0.08s,
    transform 0.5s var(--ease-out) 0.08s;
  pointer-events: none;
}
.fc-support:hover .fc-support__sub {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* ─────────────────────────────────────────────
   19. CORE SPECIALTIES — SUB SERVICES
   (Wealth Mgmt / Investment Banking)
───────────────────────────────────────────── */
.fc-subservice {
  background: var(--navy);
  padding: 80px 0;
}
.fc-subservice:last-of-type {
  border-bottom: none;
}

.fc-subservice__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);

  gap: 80px;
  align-items: center;
}
.fc-subservice__inner .sec {
  max-width: 1000px;
}
.fc-subservice__title {
  font-size: clamp(16px, 4vw, 58px);

  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.fc-subservice__text {
  font-size: 14px;
  color: var(--white);
  line-height: 1.8;
  margin-bottom: 32px;
}
.fc-subservice__img {
  width: 100%;

  object-fit: cover;
  filter: contrast(1.05);
  transition: transform var(--dur-slow) var(--ease-out);
  display: block;
}
.fc-subservice:hover .fc-subservice__img {
  transform: scale(1.02);
}

/* ─────────────────────────────────────────────
   20. CONTACT PAGE
───────────────────────────────────────────── */
.fc-contact-page {
  background: var(--cream);
  min-height: 100vh;
}

.fc-contact-hero {
  position: relative;
  height: 120px;
  background: var(--navy-deep);
  overflow: hidden;
}
.fc-contact-hero__bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  filter: brightness(0.5) contrast(1.1);
}
.fc-contact-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 41, 124, 0.55);
  pointer-events: none;
}

.fc-contact-body {
  padding: 80px var(--gutter) 100px;
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
  align-items: start;
}

.fc-contact-body__title {
  font-family: var(--font-serif);
  font-size: clamp(12px, 3vw, 43px);
  font-weight: 400;
  color: var(--navy-dark);
  line-height: 1.15;
  margin-bottom: 40px;
}

.fc-contact-map {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  margin-bottom: 40px;
  border: none;
  background: #c5d8f6;
}

.fc-contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fc-contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 13px;
  color: var(--navy-dark);
  line-height: 1.6;
}
.fc-contact-info__icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--navy);
}
.fc-contact-info__icon svg {
  width: 100%;
  height: 100%;
}

/* Right — form */
.fc-contact-right__intro {
  font-size: 13px;
  color: var(--navy-dark);
  line-height: 1.85;
  margin-bottom: 40px;
  max-width: 100%;
}

.fc-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.fc-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.fc-form__field {
  position: relative;
  border: 1px solid rgba(0, 41, 124, 0.18);
  margin: 0.5rem 0;
}

.fc-form__row .fc-form__field:first-child {
  border: 1px solid rgba(0, 41, 124, 0.18);
}

.fc-form__input,
.fc-form__select,
.fc-form__textarea {
  width: 100%;
  padding: 18px 20px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  color: var(--navy-dark);
  background: transparent;
  border: none;
  border-radius: 0;
  outline: none;
  transition: background var(--dur-fast);
  -webkit-appearance: none;
  appearance: none;
  display: block;
}
.fc-form__input::placeholder,
.fc-form__textarea::placeholder,
.fc-form__select {
  color: rgba(0, 41, 124, 0.4);
  font-size: 13px;
}
.fc-form__input:focus,
.fc-form__select:focus,
.fc-form__textarea:focus {
  background: rgba(0, 41, 124, 0.03);
}

.fc-form__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7' viewBox='0 0 11 7'%3E%3Cpath d='M1 1l4.5 4.5L10 1' stroke='%2300297c' stroke-width='1.2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  padding-right: 44px;
  cursor: pointer;
}
.fc-form__select.has-value {
  color: var(--navy-dark);
}

.fc-form__textarea {
  resize: none;
  min-height: 148px;
  border-bottom: none;
}

.fc-form__submit {
  display: block;
  margin-top: 28px;
}

.fc-form__submit .fc-btn--solid {
  width: 100%;
  justify-content: center;
  padding: 18px 40px;
  font-size: 11px;
  letter-spacing: 0.18em;
}

.fc-field--error .fc-form__input,
.fc-field--error .fc-form__select,
.fc-field--error .fc-form__textarea {
  background: rgba(180, 30, 30, 0.04);
}

.fc-field--error {
  border-bottom-color: rgba(180, 30, 30, 0.45) !important;
  border-right-color: rgba(180, 30, 30, 0.45) !important;
}

.fc-field__error {
  display: block;
  font-size: 11px;
  color: #a12020;
  letter-spacing: 0.03em;
  padding: 0 20px 10px;
}

/* ── intl-tel-input overrides ── */
.iti {
  width: 100%;
  display: block;
}
.iti__flag-container {
  border-right: 1px solid rgba(0, 41, 124, 0.18);
}
.iti--separate-dial-code .iti__selected-flag {
  background: transparent;
  padding: 0 12px 0 20px;
}
.iti--separate-dial-code .iti__selected-flag:hover,
.iti--separate-dial-code .iti__selected-flag:focus {
  background: rgba(0, 41, 124, 0.04);
}
.iti__selected-dial-code {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--navy-dark);
}
.iti__country-list {
  font-family: var(--font-sans);
  font-size: 13px;
  border: 1px solid rgba(0, 41, 124, 0.18);
  border-radius: 0;
  box-shadow: 0 8px 24px rgba(0, 41, 124, 0.1);
  background: var(--cream);
  color: var(--navy-dark);
}
.iti__country.iti__highlight,
.iti__country:hover {
  background: rgba(0, 41, 124, 0.06);
}
.iti__divider {
  border-color: rgba(0, 41, 124, 0.12);
}

.fc-recaptcha {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--border-navy);
  font-size: 12px;
  color: var(--text-mid);
}
.fc-recaptcha input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--navy);
}

/* ─────────────────────────────────────────────
   21. TEAMS ARCHIVE (LEADERSHIP)
───────────────────────────────────────────── */
.fc-leadership-hero {
  background: var(--navy-deep);
  min-height: 56vh;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  padding-bottom: 72px;
}
.fc-leadership-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  filter: brightness(0.5) contrast(1.1);
  z-index: 0;
}
.fc-leadership-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 41, 124, 0.55);
}
.fc-leadership-hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  width: 100%;
}
.fc-leadership-hero__eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 12px;
  display: block;
}
.fc-leadership-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(20px, 5vw, 72px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 20px;
}
.fc-leadership-hero__sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  max-width: 500px;
  line-height: 1.75;
}

.fc-leadership-grid {
  background: var(--white);
  padding: 80px 0 100px;
}
.fc-leadership-grid__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.fc-team-card {
  cursor: pointer;
  position: relative;
}
.fc-team-card__img-wrap {
  position: relative;
  overflow: hidden;

  background: var(--navy-deep);
  margin-bottom: 20px;
}
.fc-team-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(25%);
  transition:
    transform var(--dur-slow) var(--ease-out),
    filter var(--dur-slow) var(--ease-out);
  display: block;
}
.fc-team-card:hover .fc-team-card__img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

.fc-team-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 26, 80, 0.93);
  opacity: 0;
  transition: opacity var(--dur-mid) var(--ease-out);
  display: flex;
  align-items: flex-end;
  padding: 36px 28px;
}
.fc-team-card:hover .fc-team-card__overlay {
  opacity: 1;
}

.fc-team-card__overlay-body {
  transform: translateY(12px);
  transition: transform var(--dur-mid) var(--ease-out);
  width: 100%;
}
.fc-team-card:hover .fc-team-card__overlay-body {
  transform: translateY(0);
}

.fc-team-card__overlay-name {
  font-family: var(--font-serif);
  font-size: clamp(12px, 1.6vw, 23px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 8px;
}
.fc-team-card__overlay-role {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.7;
  margin-bottom: 16px;
}
.fc-team-card__overlay-desc {
  font-size: 12px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.fc-team-card__overlay-cta {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  display: flex;
  align-items: center;
  gap: 8px;
}
.fc-team-card__view-line {
  width: 20px;
  height: 1px;
  background: currentColor;
  flex-shrink: 0;
}

.fc-team-card__name {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--navy-dark);
  margin-bottom: 4px;
  transition: color var(--dur-fast);
}
.fc-team-card:hover .fc-team-card__name {
  color: var(--navy);
}
.fc-team-card__role {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
}

/* ─────────────────────────────────────────────
   22. SINGLE TEAM MEMBER
───────────────────────────────────────────── */
.fc-member-hero {
  background: var(--navy);
  padding: 140px var(--gutter) 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: var(--container);
  margin: 0 auto;
  gap: 80px;
  align-items: end;
}
.fc-member-hero__photo {
  width: 100%;

  object-fit: cover;
  filter: grayscale(15%);
  display: block;
}
.fc-member-hero__info {
  padding-bottom: 72px;
  color: var(--white);
}
.fc-member-hero__eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 16px;
  display: block;
}
.fc-member-hero__name {
  font-family: var(--font-serif);
  font-size: clamp(16px, 4vw, 58px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 12px;
}
.fc-member-hero__role {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 40px;
  display: block;
}
.fc-member-hero__excerpt {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  max-width: 420px;
}

.fc-member-body {
  background: var(--cream);
  padding: 80px var(--gutter) 100px;
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
}

.fc-member-sidebar {
}
.fc-member-sidebar__section {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-navy);
}
.fc-member-sidebar__section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.fc-member-sidebar__label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 12px;
  display: block;
}
.fc-member-sidebar__text {
  font-size: 13.5px;
  color: var(--text-dark);
  line-height: 1.8;
  white-space: pre-line;
}

.fc-member-content {
  padding-top: 4px;
}
.fc-member-content__title {
  font-family: var(--font-serif);
  font-size: clamp(12px, 2vw, 29px);
  color: var(--navy-dark);
  margin-bottom: 24px;
}
.fc-member-content p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 20px;
}
.fc-member-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 48px;
  transition: gap var(--dur-fast);
}
.fc-member-back:hover {
  gap: 14px;
}
.fc-member-back-arrow {
  width: 16px;
  height: 1px;
  background: currentColor;
  position: relative;
}
.fc-member-back-arrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: -3px;
  width: 7px;
  height: 7px;
  border-left: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg);
}

/* ─────────────────────────────────────────────
   23. FOOTER
───────────────────────────────────────────── */
.fc-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.65);
  padding: 72px 0 32px;
  position: relative;
  overflow: hidden;
}

.fc-footer__watermark {
  position: absolute;
  right: -45%;
  top: -10%;
  width: 90%;
  opacity: 0.04;
  pointer-events: none;
}

.fc-footer__top {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);

  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.fc-footer__logo {
  margin-bottom: 16px;
}
.fc-footer__logo img {
  height: auto;
  width: 200px;
}
.fc-footer__brand {
  display: grid;
  grid-template-columns: 400px 1fr;
  align-items: center;
}
@media (max-width: 768px) {
  .fc-footer__brand {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .fc-footer__nav-row {
    flex-direction: column;
    margin-bottom: 2rem;
  }
  .fc-footer__address {
    text-align: center;
  }
}
.fc-footer__logo-name {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-top: 12px;
  display: block;
}
.fc-footer__logo-tag {
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  display: block;
  margin-top: 4px;
}

.fc-footer__nav {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.fc-footer__nav-row {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}
.capital.fc-footer__nav-link {
  color: white;
}
.capital.fc-footer__nav-link::after {
  opacity: 1;
}
.fc-footer__nav-link {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.04em;
  transition: color var(--dur-fast);
  display: flex;
  align-items: center;
  gap: 6px;
}
.fc-footer__nav-link::after {
  content: "↓";
  font-size: 10px;
  opacity: 0.4;
}
.fc-footer__nav-link:hover {
  color: var(--white);
}

.fc-footer__address {
  font-size: 12px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.8);
}

.fc-footer__bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding: 24px var(--gutter) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.fc-footer__copy {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.04em;
}
.fc-footer__copy a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--dur-fast);
}
.fc-footer__copy a:hover {
  color: rgba(255, 255, 255, 1);
}
.fc-footer__regulated {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
}

/* ─────────────────────────────────────────────
   24. SCROLL REVEAL ANIMATIONS
───────────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transition:
    opacity var(--dur-slow) var(--ease-out),
    transform var(--dur-slow) var(--ease-out);
}
[data-reveal="up"] {
  transform: translateY(48px);
}
[data-reveal="left"] {
  transform: translateX(-48px);
}
[data-reveal="right"] {
  transform: translateX(48px);
}
[data-reveal="fade"] {
  transform: none;
}
[data-reveal="scale"] {
  transform: scale(0.94);
}

[data-reveal].revealed {
  opacity: 1;
  transform: none;
}

/* Stagger children */
[data-stagger] > * {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity var(--dur-slow) var(--ease-out),
    transform var(--dur-slow) var(--ease-out);
}
[data-stagger].revealed > *:nth-child(1) {
  transition-delay: 0ms;
}
[data-stagger].revealed > *:nth-child(2) {
  transition-delay: 90ms;
}
[data-stagger].revealed > *:nth-child(3) {
  transition-delay: 180ms;
}
[data-stagger].revealed > *:nth-child(4) {
  transition-delay: 270ms;
}
[data-stagger].revealed > * {
  opacity: 1;
  transform: none;
}

/* Clip-path text reveal */
.fc-text-reveal {
  overflow: hidden;
  display: inline-block;
}
.fc-text-reveal__inner {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 0.8s var(--ease-out);
}
.fc-text-reveal.revealed .fc-text-reveal__inner {
  transform: translateY(0);
}

/* Line grow animation */
.fc-line-grow {
  display: block;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.8s var(--ease-out);
}
.fc-line-grow.revealed {
  width: 100%;
}

/* ─────────────────────────────────────────────
   25. PAGE TRANSITIONS
───────────────────────────────────────────── */
.fc-page-transition {
  position: fixed;
  inset: 0;
  background: var(--navy-dark);
  z-index: 9999;
  transform: translateY(100%);
  pointer-events: none;
}
.fc-page-transition.entering {
  transform: translateY(0);
  transition: transform 0.5s var(--ease-in-out);
}
.fc-page-transition.leaving {
  transform: translateY(-100%);
  transition: transform 0.5s var(--ease-in-out);
}

/* ─────────────────────────────────────────────
   26. GENERIC PAGE & ARCHIVE
───────────────────────────────────────────── */
.fc-page-hero {
  background: var(--navy-deep);
  min-height: 44vh;
  display: flex;
  align-items: flex-end;
  padding: 0 var(--gutter) 64px;
  position: relative;
  overflow: hidden;
}
.fc-page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.25);
  z-index: 0;
}
.fc-page-hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}
.fc-page-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(20px, 5vw, 72px);
  color: var(--white);
  font-weight: 400;
  line-height: 1.05;
}

.fc-page-content {
  max-width: var(--container);
  margin: 0 auto;
  padding: 72px var(--gutter) 100px;
}

/* ─────────────────────────────────────────────
   27. RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 1024px) {
  :root {
    --gutter: 40px;
    --section-pad: 72px;
  }
  .fc-hero {
    min-height: 75vh;
  }
  .fc-what__grid {
    gap: 2px;
  }
  .fc-who__grid {
    gap: 2px;
  }
  .fc-intro-split {
    min-height: auto;
  }
  .fc-intro-split__inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 56px 24px;
    gap: 40px;
  }
  .fc-intro-split__bg {
    position: absolute;
    inset: 0;
    height: 100%;
  }
  .fc-philosophy {
    grid-template-columns: 1fr;
  }
  .fc-specialty {
    min-height: auto;
  }
  .fc-specialty__inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 56px 24px;
    gap: 40px;
  }
  .fc-philosophy-reveal .fc-specialty__inner {
    flex-direction: column;
    gap: 32px;
  }
  .fc-philosophy-reveal .fc-specialty__details {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    width: 100%;
    padding: 0;
  }
  .fc-philosophy-reveal:hover .fc-specialty__details {
    transform: none;
  }
  .fc-philosophy-reveal:hover .fc-specialty__left {
    transform: none;
  }
  .fc-specialty__bg {
    position: absolute;
    inset: 0;
    height: 100%;
  }
  .fc-subservice__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .fc-contact-body {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .fc-member-hero {
    grid-template-columns: 1fr;
  }
  .fc-member-body {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .fc-leadership-grid__inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .fc-footer__top {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .fc-footer {
    padding-top: 32px;
  }
}

@media (max-width: 768px) {
  :root {
    --gutter: 24px;
    --section-pad: 56px;
  }

  .fc-header {
    padding: 0 24px;
  }

  .fc-nav > ul {
    display: none;
  }
  .fc-nav-toggle {
    display: flex;
  }

  .fc-nav.open > ul {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    top: 72px;
    background: rgba(7, 15, 34, 0.98);
    padding: 40px 24px;
    gap: 0;
    overflow-y: auto;
  }

  .fc-nav.open .fc-nav-link {
    font-size: 18px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .fc-who__grid {
    grid-template-columns: 1fr;
  }
  .fc-what__grid {
    grid-template-columns: 1fr;
    gap: 2px;
  }
  .fc-leadership-grid__inner {
    grid-template-columns: 1fr;
  }
  .fc-form__row {
    grid-template-columns: 1fr;
  }
  .fc-footer__nav-row {
    gap: 12px;
  }
  .fc-footer__nav {
    margin: 2rem 0 1rem;
  }
  .fc-footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .fc-hero__sub {
    font-size: 13px;
  }
  .fc-intro__text {
    font-size: 18px;
  }

  .fc-insights-prev {
    left: 12px;
  }
  .fc-insights-next {
    right: 12px;
  }
}

/* ─────────────────────────────────────────────
   28. 404 PAGE
───────────────────────────────────────────── */
.fc-404 {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}

.fc-404__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  transform: scale(1.04);
  transition: transform 8s ease-out;
  filter: brightness(0.5);
}

.fc-404__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(0, 41, 124, 0.82) 0%,
    rgba(0, 20, 64, 0.72) 55%,
    rgba(0, 41, 124, 0.88) 100%
  );
  z-index: 1;
}

.fc-404__content {
  position: relative;
  z-index: 2;
  padding: 0 var(--gutter);
  max-width: 680px;
  width: 100%;
}

.fc-404__code {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(72px, 18vw, 259px);
  font-weight: 400;
  line-height: 1;
  color: rgba(255, 255, 255, 0.08);
  letter-spacing: -0.04em;
  margin-bottom: -20px;
  user-select: none;
}

.fc-404__divider {
  width: 48px;
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
  margin: 28px auto;
}

.fc-404__title {
  font-family: var(--font-serif);
  font-size: clamp(20px, 5vw, 72px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.fc-404__sub {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  max-width: 480px;
  margin: 0 auto 44px;
}

.fc-404__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Ghost button variant (white outline, no fill) */
.fc-btn--ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.fc-btn--ghost::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.08);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-mid) var(--ease-out);
}
.fc-btn--ghost:hover::before {
  transform: scaleX(1);
}
.fc-btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--white);
}

/* ─────────────────────────────────────────────
   29. THANK YOU PAGE
───────────────────────────────────────────── */
.fc-thankyou {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}

.fc-thankyou__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  transform: scale(1.04);
  transition: transform 8s ease-out;
  filter: brightness(0.45);
}

.fc-thankyou__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(0, 41, 124, 0.85) 0%,
    rgba(0, 20, 64, 0.78) 55%,
    rgba(0, 41, 124, 0.9) 100%
  );
  z-index: 1;
}

.fc-thankyou__content {
  position: relative;
  z-index: 2;
  padding: 0 var(--gutter);
  max-width: 660px;
  width: 100%;
}

.fc-thankyou__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 28px;
  opacity: 0.85;
}
.fc-thankyou__icon svg {
  width: 100%;
  height: 100%;
}

.fc-thankyou__title {
  font-family: var(--font-serif);
  font-size: clamp(22px, 5.5vw, 79px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.fc-thankyou__sub {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.85;
  max-width: 500px;
  margin: 0 auto;
}

.fc-thankyou__divider {
  width: 48px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 36px auto;
}

.fc-thankyou__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─────────────────────────────────────────────
   30. UTILITY
───────────────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
.text-center {
  text-align: center;
}
.text-white {
  color: var(--white);
}
.text-navy {
  color: var(--navy);
}
.text-cream {
  color: var(--cream);
}
.bg-navy {
  background: var(--navy-deep);
}
.bg-cream {
  background: var(--cream);
}
.w-full {
  width: 100%;
}
.relative {
  position: relative;
}
.overflow-hidden {
  overflow: hidden;
}
