/* Vidya Rattan B R Gopala Rao & Co: global styles */
:root {
  --navy: #0d1f3c;
  --navy-mid: #152a45;
  --navy-soft: #1e3554;
  --gold: #c5a059;
  --gold-hover: #d4b36e;
  --gold-muted: rgba(197, 160, 89, 0.15);
  --orange-accent: #ff6600;
  --white: #ffffff;
  --cream: #f5f6f8;
  --text: #1a1f2b;
  --text-muted: #5c6478;
  --shadow: 0 12px 40px rgba(13, 31, 60, 0.12);
  --shadow-sm: 0 6px 20px rgba(13, 31, 60, 0.08);
  --radius: 12px;
  --radius-lg: 16px;
  --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-sans: "Source Sans 3", system-ui, -apple-system, Segoe UI, sans-serif;
  --max: 1440px;
  --site-gutter: clamp(0.45rem, 1.4vw, 0.85rem);
}

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

html {
  scroll-behavior: smooth;
}

.scroll-target {
  scroll-margin-top: 6.5rem;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text);
  background-color: var(--cream);
  background-image:
    linear-gradient(rgba(13, 31, 60, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 31, 60, 0.022) 1px, transparent 1px);
  background-size: 40px 40px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--navy-soft);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--gold);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
  margin: 0 0 0.5em;
}

h1 {
  font-size: clamp(2.1rem, 4vw, 3.25rem);
}

h2 {
  font-size: clamp(1.85rem, 3vw, 2.5rem);
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.65rem);
}

p {
  margin: 0 0 1em;
}

p:last-child {
  margin-bottom: 0;
}

ul,
ol {
  margin: 0 0 1em;
  padding-left: 1.25rem;
}

/* Google Material Symbols - https://fonts.google.com/icons */
.material-symbols-outlined {
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

.material-symbols-outlined.icon--topbar {
  font-size: 1.1rem;
  vertical-align: middle;
}

/* Top bar */
.top-bar {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.875rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.45rem var(--site-gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.top-bar a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.top-bar a:hover {
  color: var(--gold);
}

.top-bar__social {
  display: flex;
  gap: 0.85rem;
  align-items: center;
}

.top-bar__social span {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Header */
.site-header {
  background: var(--white);
  color: var(--text);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.header-main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem var(--site-gutter);
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1rem 2rem;
}

@media (min-width: 900px) {
  .header-main {
    grid-template-columns: auto 1fr auto;
  }
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: inherit;
}

.brand:hover {
  color: inherit;
}

.brand__logo {
  height: 52px;
  width: auto;
  max-width: 88px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
  background: var(--white);
  padding: 0.35rem 0.45rem;
  border-radius: 8px;
  box-sizing: border-box;
}

.brand__text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.brand__name {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: var(--navy);
}

.brand__tag {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
}

.header-meta {
  display: none;
  flex-direction: column;
  gap: 0.15rem;
  font-size: 0.9rem;
  text-align: right;
  color: var(--text-muted);
}

@media (min-width: 900px) {
  .header-meta {
    display: flex;
  }
}

.header-meta strong {
  color: var(--navy);
  font-weight: 600;
}

.site-header .header-meta a {
  color: var(--navy-soft);
  font-weight: 600;
}

.site-header .header-meta a:hover {
  color: var(--gold);
}

/* Breadcrumb strip (below header, all pages) */
.breadcrumb-strip {
  background: rgba(13, 31, 60, 0.04);
  border-bottom: 1px solid rgba(13, 31, 60, 0.08);
}

.breadcrumb-strip__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.55rem var(--site-gutter);
}

.site-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.35;
}

.site-breadcrumb a {
  color: var(--navy-soft);
  text-decoration: none;
}

.site-breadcrumb a:hover {
  color: var(--gold);
  text-decoration: underline;
}

.site-breadcrumb__sep {
  color: rgba(13, 31, 60, 0.35);
  font-weight: 400;
  user-select: none;
}

.site-breadcrumb__current {
  color: var(--navy);
  font-weight: 600;
}

.nav-wrap {
  border-top: 1px solid rgba(13, 31, 60, 0.1);
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--site-gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

@media (max-width: 899px) {
  .nav-inner {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
  }

  #nav-toggle {
    margin-left: 0;
    align-self: flex-end;
  }

  .nav-primary.is-open {
    width: 100%;
    margin-top: 0.35rem;
    padding-top: 0.35rem;
    border-top: 1px solid rgba(13, 31, 60, 0.1);
  }
}

#nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 44px;
  height: 44px;
  margin: 0.35rem 0;
  margin-left: auto;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(13, 31, 60, 0.22);
  border-radius: 8px;
  color: var(--navy);
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

#nav-toggle:hover {
  border-color: rgba(197, 160, 89, 0.55);
  background-color: rgba(197, 160, 89, 0.08);
}

#nav-toggle .nav-toggle__icon {
  position: absolute;
  left: 50%;
  top: 50%;
  font-size: 26px;
  line-height: 1;
  transition:
    opacity 0.28s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.38s cubic-bezier(0.34, 1.35, 0.64, 1);
  transform: translate(-50%, -50%) rotate(0deg) scale(1);
}

#nav-toggle .nav-toggle__icon--close {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(100deg) scale(0.35);
  pointer-events: none;
}

#nav-toggle[aria-expanded="true"] {
  border-color: rgba(197, 160, 89, 0.65);
  background-color: rgba(197, 160, 89, 0.1);
}

#nav-toggle[aria-expanded="true"] .nav-toggle__icon--menu {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(-100deg) scale(0.35);
  pointer-events: none;
}

#nav-toggle[aria-expanded="true"] .nav-toggle__icon--close {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(0deg) scale(1);
  pointer-events: auto;
}

@media (prefers-reduced-motion: reduce) {
  #nav-toggle .nav-toggle__icon {
    transition-duration: 0.08s;
  }
}

#nav-toggle:focus-visible {
  outline: 2px solid var(--orange-accent);
  outline-offset: 2px;
}

@media (min-width: 900px) {
  #nav-toggle {
    display: none;
  }
}

.nav-primary {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  flex-direction: column;
  gap: 0;
  width: 100%;
}

.nav-primary.is-open {
  display: flex;
  padding-bottom: 1rem;
}

@media (min-width: 900px) {
  .nav-primary {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.15rem 1.5rem;
    padding: 0.65rem 0;
    width: auto;
  }
}

.nav-primary a {
  display: block;
  padding: 0.65rem 0;
  color: rgba(26, 31, 43, 0.92);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(13, 31, 60, 0.08);
}

@media (min-width: 900px) {
  .nav-primary a {
    padding: 0.35rem 0;
    border: none;
  }
}

.nav-primary a:hover,
.nav-primary a.is-active {
  color: var(--gold);
}

.nav-primary a.is-active {
  box-shadow: inset 0 -2px 0 var(--orange-accent);
}

@media (min-width: 900px) {
  .nav-primary a.is-active {
    box-shadow: none;
    border-bottom: 2px solid var(--orange-accent);
  }
}

/* Primary nav - dropdown groups (About / Practice) */
.nav-primary > li.nav-item--dropdown {
  list-style: none;
}

.nav-primary > li {
  list-style: none;
}

.nav-sub {
  list-style: none;
  margin: 0;
  padding: 0.25rem 0 0 0.75rem;
  display: none;
}

@media (max-width: 899px) {
  .nav-primary.is-open .nav-sub {
    display: block;
  }

  .nav-sub a {
    font-size: 0.78rem !important;
    letter-spacing: 0.05em;
    padding: 0.45rem 0 !important;
    border-bottom: 1px solid rgba(13, 31, 60, 0.06) !important;
    text-transform: none;
    font-weight: 500;
  }

  .nav-parent {
    font-weight: 700;
  }
}

@media (min-width: 900px) {
  .nav-item--dropdown {
    position: relative;
  }

  .nav-item--dropdown:hover .nav-sub,
  .nav-item--dropdown:focus-within .nav-sub {
    display: block;
  }

  .nav-sub {
    position: absolute;
    left: 0;
    top: calc(100% + 0.35rem);
    padding: 0.45rem 0;
    min-width: 17.5rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 16px 48px rgba(13, 31, 60, 0.14);
    border: 1px solid rgba(13, 31, 60, 0.08);
    z-index: 120;
  }

  .nav-sub a {
    padding: 0.45rem 1rem !important;
    border-bottom: none !important;
    font-size: 0.8rem !important;
    letter-spacing: 0.04em;
    text-transform: none;
    font-weight: 600;
    color: var(--navy-soft);
  }

  .nav-sub a:hover {
    background: rgba(197, 160, 89, 0.1);
    color: var(--navy);
  }

  .nav-sub a.is-active {
    border-bottom: none !important;
    box-shadow: none;
    color: var(--gold);
  }
}

/* Homepage bands under hero (stats, service strip) */
.home-intro {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 2rem var(--site-gutter) 1.5rem;
}

@media (min-width: 900px) {
  .home-intro {
    padding: 2.25rem var(--site-gutter) 1.75rem;
  }
}

.home-intro__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.65rem;
}

.home-intro__head {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 3.6vw + 0.55rem, 2.65rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.96);
  line-height: 1.18;
  margin: 0 0 1rem;
  max-width: 46rem;
}

.home-intro__lede {
  font-size: clamp(1rem, 1.2vw + 0.55rem, 1.15rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  max-width: 46rem;
  margin-bottom: 1.25rem;
}

.home-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--site-gutter) 2rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 560px) {
  .home-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }
}

.home-stat {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 1.2rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 5.5rem;
}

.home-stat__value {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.home-stat__label {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  margin-top: 0.4rem;
}

.home-pill-strip {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--site-gutter) 2.25rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.home-pill-strip__inner {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem 1.25rem;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
}

.home-pill-strip__dot {
  color: var(--gold);
}

/* Established band: sits below hero on light background */
.section.home-established,
.section.home-established .section__inner {
  text-align: left;
}

.home-established__row {
  display: grid;
  gap: 2rem 2.25rem;
  margin-bottom: 2rem;
  align-items: center;
}

@media (min-width: 880px) {
  .home-established__row {
    grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.95fr);
    gap: 2rem 3rem;
  }
}

.home-established__media {
  min-width: 0;
}

.home-established__visual {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  max-width: 420px;
}

@media (min-width: 880px) {
  .home-established__visual {
    margin-left: 0;
    margin-right: 0;
    max-width: none;
  }
}

.home-established__frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(160deg, #eef1f7 0%, #e2e7f0 55%, #dce3ee 100%);
  border: 1px solid rgba(13, 31, 60, 0.08);
  box-shadow: var(--shadow-sm);
}

.home-established__photo--main {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.home-established__float {
  position: absolute;
  right: -0.35rem;
  bottom: 22%;
  width: min(44%, 168px);
  padding: 0.85rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 4px solid var(--white);
  box-shadow: var(--shadow);
  z-index: 2;
}

.home-established__photo--accent {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
}

.home-established__badge {
  position: absolute;
  left: 0.65rem;
  bottom: 0.65rem;
  z-index: 3;
  min-width: 7.25rem;
  padding: 0.95rem 1.1rem;
  border-radius: 12px;
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 36px rgba(13, 31, 60, 0.28);
  border-left: 4px solid var(--gold);
}

.home-established__badge-num {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.2vw, 2.35rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
}

.home-established__badge-caption {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.home-established .home-intro {
  margin-left: 0;
  margin-right: 0;
  max-width: none;
  padding: 0;
  text-align: left;
}

.home-established .home-intro__head {
  color: var(--navy);
}

.home-established .home-intro__lede {
  color: var(--text);
}

.home-established .home-intro__head,
.home-established .home-intro__lede {
  max-width: none;
}

.home-established .home-stats {
  margin-left: 0;
  margin-right: 0;
  max-width: none;
  width: 100%;
  padding: 0 0 1.75rem;
}

.home-established .home-stat {
  background: rgba(13, 31, 60, 0.04);
  border: 1px solid rgba(13, 31, 60, 0.1);
  text-align: center;
  align-items: center;
  padding: 1.35rem 1.15rem;
  min-height: 6.25rem;
}

.home-established .home-stat__value {
  color: var(--gold);
  font-size: clamp(2rem, 4.2vw, 2.65rem);
}

.home-established .home-stat__label {
  color: var(--text-muted);
  font-size: 0.8rem;
  letter-spacing: 0.11em;
}

.home-established .home-pill-strip {
  margin-left: 0;
  margin-right: 0;
  max-width: none;
  width: 100%;
  padding: 0 0 0.25rem;
  text-align: left;
}

.home-established .home-pill-strip__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.65rem 1.5rem;
  width: 100%;
  color: var(--navy-soft);
  font-size: 0.84rem;
}

@media (min-width: 560px) {
  .home-established .home-pill-strip__inner {
    flex-wrap: nowrap;
  }
}

.home-cta-panel {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.5rem var(--site-gutter) 3rem;
}

.home-cta-panel__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(13, 31, 60, 0.08);
  text-align: center;
}

.home-cta-panel__card h2 {
  margin-top: 0;
}

.sector-tiles {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .sector-tiles {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .sector-tiles {
    grid-template-columns: repeat(3, 1fr);
  }
}

.sector-tile {
  display: block;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem var(--site-gutter);
  border: 1px solid rgba(13, 31, 60, 0.08);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
}

.sector-tile:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.sector-tile h3 {
  font-size: 1.1rem;
  margin: 0 0 0.35rem;
  color: var(--navy);
}

.sector-tile p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin: 0;
}

.sector-tile.sector-tile--photo {
  position: relative;
  background-color: var(--navy);
  background-image: var(--sector-photo);
  background-size: cover;
  background-position: center;
  border: none;
  overflow: hidden;
  min-height: 9rem;
}

.sector-tile.sector-tile--photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, rgba(13, 31, 60, 0.88) 0%, rgba(13, 31, 60, 0.42) 100%);
  z-index: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.sector-tile.sector-tile--photo:hover::after {
  opacity: 0.92;
}

.sector-tile.sector-tile--photo h3,
.sector-tile.sector-tile--photo p {
  position: relative;
  z-index: 1;
  color: var(--white);
}

.sector-tile.sector-tile--photo p {
  color: rgba(255, 255, 255, 0.9);
}

.sector-tile.sector-tile--photo:hover {
  box-shadow: 0 18px 44px rgba(13, 31, 60, 0.28);
}

.content-banner {
  margin: 1rem 0 1.35rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(13, 31, 60, 0.08);
}

figure.content-banner {
  margin-left: 0;
  margin-right: 0;
}

.content-banner img {
  width: 100%;
  height: min(44vw, 240px);
  object-fit: cover;
  display: block;
}

/* Sectors page: card deck (image + floating icon + CTA) */
.section--sectors-deck {
  background: linear-gradient(180deg, #eef2f8 0%, #e8ecf3 45%, var(--cream) 100%);
  padding-top: 2.75rem;
  padding-bottom: 3rem;
}

.sectors-deck {
  max-width: var(--max);
  margin: 0 auto;
}

.sectors-deck__grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .sectors-deck__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .sectors-deck__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.65rem;
  }
}

.sector-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(13, 31, 60, 0.07);
  display: flex;
  flex-direction: column;
  overflow: visible;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sector-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

a.sector-card {
  text-decoration: none;
  color: inherit;
}

a.sector-card:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
  border-radius: var(--radius-lg);
}

a.sector-card:hover .sector-card__cta {
  background: var(--gold);
  color: var(--navy);
  border-color: rgba(13, 31, 60, 0.12);
}

.sector-card__media {
  position: relative;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  flex-shrink: 0;
}

.sector-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sector-card__icon {
  position: absolute;
  right: 1rem;
  bottom: -1.4rem;
  width: 3.35rem;
  height: 3.35rem;
  border-radius: 12px;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(13, 31, 60, 0.28);
  z-index: 2;
}

.sector-card__icon .material-symbols-outlined {
  font-size: 1.7rem;
}

.sector-card__body {
  padding: 2.15rem 1.35rem 1.45rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}

.sector-card__name {
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 0.25rem;
  line-height: 1.2;
}

.sector-card__tag {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.65rem;
}

.sector-card__lede {
  font-size: 0.93rem;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0 0 1.25rem;
  flex: 1;
}

.sector-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  align-self: flex-start;
  padding: 0.58rem 1.15rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
  border: 1px solid transparent;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

span.sector-card__cta {
  cursor: default;
}

.sector-card__cta:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: rgba(13, 31, 60, 0.12);
}

.sector-card__cta:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

.sector-detail {
  scroll-margin-top: 6.5rem;
  padding: 2.25rem 0;
  border-top: 1px solid rgba(13, 31, 60, 0.1);
}

.sector-detail:first-of-type {
  border-top: none;
  padding-top: 0.5rem;
}

.sector-detail h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.2vw + 0.5rem, 1.75rem);
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 0.85rem;
  line-height: 1.2;
}

.sector-detail p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--text);
  max-width: 52rem;
}

.sectors-page__actions {
  margin-top: 2.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

/* Sector case study (detail pages) */
.sector-case-nav {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 1rem;
}

.sector-case-nav a {
  color: rgba(255, 255, 255, 0.94);
  text-decoration: none;
  font-weight: 600;
}

.sector-case-nav a:hover {
  color: var(--gold);
}

.sector-case-nav span {
  opacity: 0.65;
  padding: 0 0.25rem;
}

.sector-segments {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.65rem;
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
}

.sector-segments li {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.38rem 0.85rem;
  border-radius: 999px;
  background: var(--gold-muted);
  color: var(--navy-soft);
  border: 1px solid rgba(197, 160, 89, 0.4);
}

.sector-case-prose h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 1.4vw + 0.5rem, 1.45rem);
  font-weight: 600;
  color: var(--navy);
  margin: 2rem 0 0.65rem;
  line-height: 1.25;
}

.sector-case-prose h3:first-child {
  margin-top: 0;
}

.sector-case-prose p {
  margin: 0 0 1rem;
  line-height: 1.65;
  color: var(--text);
  max-width: 52rem;
}

.sector-case-prose p:last-child {
  margin-bottom: 0;
}

.sector-approach {
  margin-top: 2.5rem;
  padding: 1.5rem 1.35rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: rgba(255, 255, 255, 0.92);
}

.sector-approach h3 {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.75rem;
}

.sector-approach p {
  margin: 0;
  max-width: none;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.6;
}

.sector-related {
  margin-top: 2.75rem;
}

.sector-related h2 {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 1rem;
}

.sector-related__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .sector-related__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .sector-related__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.sector-related__link {
  display: block;
  padding: 1rem 1.1rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid rgba(13, 31, 60, 0.1);
  text-decoration: none;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.88rem;
  line-height: 1.35;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.sector-related__link:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}

.sector-related-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(13, 31, 60, 0.1);
  text-decoration: none;
  color: var(--navy);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.sector-related-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.sector-related-card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: rgba(13, 31, 60, 0.06);
}

.sector-related-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sector-related-card__label {
  padding: 0.85rem 1rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.35;
}

.sector-case-pager {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(13, 31, 60, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem 1.25rem;
  font-size: 0.95rem;
}

.sector-case-pager__side {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  max-width: min(48%, 22rem);
  font-weight: 600;
  color: var(--navy-soft);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.sector-case-pager__side--next {
  justify-content: flex-end;
  text-align: right;
}

.sector-case-pager__arrow {
  text-decoration: none;
  font-weight: 700;
  flex-shrink: 0;
}

.sector-case-pager a:hover {
  color: var(--gold);
}

.sector-page__ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  margin-top: 1.5rem;
}

.sector-page__ctas .btn {
  margin: 0;
}

.header-cta {
  display: none;
}

@media (max-width: 899px) {
  .header-main {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .header-cta {
    display: inline-flex;
    font-size: 0.78rem;
    padding: 0.5rem 0.85rem;
    justify-self: end;
  }
}

@media (min-width: 900px) {
  .header-cta {
    display: inline-flex;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.35rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}

.btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.btn--gold {
  background: var(--gold);
  color: var(--navy);
}

.btn--gold:hover {
  background: var(--gold-hover);
  color: var(--navy);
}

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

.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Outline button for light backgrounds (e.g. white content sections) */
.btn--outline-dark {
  background: var(--white);
  color: var(--navy);
  border: 2px solid rgba(13, 31, 60, 0.35);
}

.btn--outline-dark:hover {
  border-color: var(--gold);
  color: var(--navy);
  background: var(--gold-muted);
}

.btn--ghost {
  background: transparent;
  color: var(--navy);
  border: 1px solid rgba(13, 31, 60, 0.2);
}

.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--navy);
}

/* Hero */
.hero {
  position: relative;
  min-height: min(78vh, 640px);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  overflow-y: visible;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #0d1f3c;
  /* Bright skyline photo under blue + gold overlays (first layer = top) */
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.04) 1px, transparent 0),
    linear-gradient(
      95deg,
      rgba(13, 31, 60, 0.9) 0%,
      rgba(13, 31, 60, 0.42) 42%,
      rgba(13, 31, 60, 0.12) 68%,
      transparent 85%
    ),
    linear-gradient(
      168deg,
      rgba(13, 31, 60, 0.78) 0%,
      rgba(13, 31, 60, 0.5) 40%,
      rgba(18, 35, 56, 0.72) 100%
    ),
    radial-gradient(ellipse 130% 95% at 78% 6%, rgba(197, 160, 89, 0.35) 0%, transparent 58%),
    radial-gradient(ellipse 100% 80% at 8% 92%, rgba(197, 160, 89, 0.22) 0%, transparent 55%),
    linear-gradient(to top, rgba(13, 31, 60, 0.58) 0%, transparent 46%),
    url("../Assets/pexels/hero-cityscape.jpg");
  background-repeat: repeat, no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, no-repeat;
  background-size:
    18px 18px,
    auto,
    auto,
    auto,
    auto,
    auto,
    cover;
  background-position:
    0 0,
    center,
    center,
    center,
    center,
    center,
    center center;
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    transparent 48%,
    rgba(13, 31, 60, 0.25) 100%
  );
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 3rem var(--site-gutter) 5.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1 1 auto;
  min-height: 0;
}

@media (min-width: 900px) {
  .hero__inner {
    padding: 4rem var(--site-gutter) 6rem;
  }
}

.hero__layout {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  min-width: 0;
  width: 100%;
}

@media (min-width: 900px) {
  .hero__layout {
    grid-template-columns: minmax(0, 1.22fr) minmax(260px, min(42vw, 560px));
    gap: 2rem 2.25rem;
    align-items: center;
  }
}

@media (min-width: 1200px) {
  .hero__layout {
    grid-template-columns: minmax(0, 1.28fr) minmax(280px, min(38vw, 620px));
  }
}

.hero__copy {
  max-width: 42rem;
  min-width: 0;
  overflow-wrap: break-word;
}

@media (min-width: 900px) {
  .hero__copy {
    max-width: none;
    grid-column: 1;
    grid-row: 1;
  }
}

.hero__title.hero__title--anniversary {
  margin: 0 0 1rem;
  font-size: unset;
  line-height: 1.2;
  font-weight: unset;
  color: inherit;
  overflow: visible;
  padding-bottom: 0.12em;
}

.hero__anniv-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem 0.6rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(1.55rem, 3.5vw + 0.45rem, 2.65rem);
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.98);
  line-height: 1.28;
}

.hero__anniv-pre {
  text-shadow: 0 2px 18px rgba(13, 31, 60, 0.35);
}

.hero__anniv-num {
  font-family: var(--font-serif);
  font-size: clamp(2.65rem, 8vw + 0.35rem, 4.25rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--gold);
  background: linear-gradient(120deg, #e8c97a 0%, var(--gold) 42%, #a67c32 92%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 14px rgba(197, 160, 89, 0.4));
  display: inline-block;
  padding: 0.06em 0 0.12em;
  overflow: visible;
}

@supports not (background-clip: text) {
  .hero__anniv-num {
    color: var(--gold);
    -webkit-text-fill-color: unset;
    filter: none;
  }
}

.hero__anniv-sub {
  display: block;
  margin-top: 0.35rem;
  font-family: var(--font-sans);
  font-size: clamp(1.2rem, 2.2vw + 0.45rem, 1.75rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  color: rgba(255, 255, 255, 0.94);
  text-shadow: 0 2px 16px rgba(13, 31, 60, 0.35);
}

.hero__divider--wide {
  max-width: min(44rem, 100%);
}

@media (min-width: 900px) {
  .hero__copy .hero__divider--wide {
    max-width: none;
  }
}

.hero__eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
}

.hero__title {
  margin: 0 0 1.1rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.1;
  font-weight: 700;
  color: var(--white);
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.hero__title-line {
  display: block;
  overflow-wrap: break-word;
}

.hero__title-line--muted {
  font-family: var(--font-sans);
  font-size: clamp(1.65rem, 3.2vw + 0.4rem, 2.35rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 2px 20px rgba(13, 31, 60, 0.35);
}

.hero__title-line--gold {
  font-family: var(--font-serif);
  font-size: clamp(2.85rem, 7vw + 0.35rem, 4.35rem);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin: 0.12em 0 0.08em;
  background: linear-gradient(120deg, #e8c97a 0%, var(--gold) 38%, #a67c32 95%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 18px rgba(197, 160, 89, 0.35));
}

@supports not (background-clip: text) {
  .hero__title-line--gold {
    color: var(--gold);
    -webkit-text-fill-color: unset;
    filter: none;
  }
}

.hero__divider {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1rem;
  max-width: 22rem;
}

.hero__divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(197, 160, 89, 0.85), transparent);
  opacity: 0.9;
}

.hero__divider-star {
  font-size: 0.65rem;
  color: var(--gold);
  line-height: 1;
  opacity: 0.95;
}

.hero__tagline,
.hero__lead {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(0.98rem, 1.05vw + 0.52rem, 1.1rem);
  font-weight: 500;
  line-height: 1.58;
  color: rgba(255, 255, 255, 0.84);
  max-width: min(42rem, 100%);
  overflow-wrap: break-word;
}

@media (min-width: 900px) {
  .hero__copy .hero__tagline,
  .hero__copy .hero__lead {
    max-width: none;
  }
}

.hero__tagline {
  margin-bottom: 0.85rem;
}

.hero__lead {
  margin-bottom: 1.35rem;
}

.hero__emblem {
  position: relative;
  justify-self: center;
  width: min(100%, 480px);
  max-width: 500px;
  display: flex;
  justify-content: center;
}

@media (min-width: 900px) {
  .hero__emblem {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    align-self: center;
    width: 100%;
    max-width: min(100%, 560px);
    justify-content: flex-end;
  }
}

.hero__emblem-glow {
  position: absolute;
  left: 50%;
  top: 52%;
  width: 108%;
  height: 92%;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    ellipse at center,
    rgba(197, 160, 89, 0.38) 0%,
    rgba(197, 160, 89, 0.1) 45%,
    transparent 72%
  );
  pointer-events: none;
  z-index: 0;
}

.hero__emblem-img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: min(58vh, 540px);
  display: block;
  object-fit: contain;
  object-position: center center;
  margin-left: auto;
  margin-right: auto;
  filter: drop-shadow(0 12px 36px rgba(0, 0, 0, 0.45));
}

@media (min-width: 900px) {
  .hero__emblem-img {
    max-height: min(78vh, 680px);
    object-position: right center;
    margin-right: 0;
  }
}

.hero__actions .btn {
  font-size: 0.95rem;
  padding: 0.72rem 1.5rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-top: 0.35rem;
}

/* Overlap cards */
.overlap-cards {
  position: relative;
  margin-top: 0;
  z-index: 2;
  padding: 0.75rem var(--site-gutter) 2rem;
}

.overlap-cards::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -2rem;
  bottom: 0;
  background: url("../Assets/deco/finance-deco.svg") no-repeat 50% 0;
  background-size: min(900px, 160%) auto;
  opacity: 0.04;
  pointer-events: none;
}

.overlap-cards__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 700px) {
  .overlap-cards__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .overlap-cards__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.card-rise {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem var(--site-gutter);
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid rgba(13, 31, 60, 0.06);
}

.card-rise:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(13, 31, 60, 0.16);
}

.card-rise__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--gold-muted);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border-left: 3px solid var(--orange-accent);
}

.card-rise__icon .material-symbols-outlined {
  font-size: 26px;
}

.card-rise h3 {
  font-size: 1.2rem;
  margin-bottom: 0.4em;
}

.card-rise p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
}

/* Sections */
.section {
  padding: 3.5rem var(--site-gutter);
}

.section--white {
  background: var(--white);
}

.section--pattern {
  position: relative;
}

.section--pattern::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(13, 31, 60, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 31, 60, 0.035) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  opacity: 0.85;
}

.section--pattern > .section__inner {
  position: relative;
  z-index: 1;
}

.section--cream-deco {
  position: relative;
}

.section--cream-deco::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../Assets/deco/finance-deco.svg") no-repeat -8% 100%;
  background-size: min(320px, 55vw) auto;
  opacity: 0.055;
  pointer-events: none;
}

.section--cream-deco > .section__inner {
  position: relative;
  z-index: 1;
}

.section__inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section__head {
  max-width: 40rem;
  margin-bottom: 2rem;
}

/* Homepage: leadership band (cream, two columns + photo) */
.section--band-cream {
  background: linear-gradient(180deg, #eef1f6 0%, var(--cream) 42%, #e9edf5 100%);
  border-top: 1px solid rgba(13, 31, 60, 0.07);
  border-bottom: 1px solid rgba(13, 31, 60, 0.06);
}

.section--purpose-home {
  border-top: 3px solid var(--gold);
}

.section--purpose-home .icon-tile {
  background: linear-gradient(180deg, #ffffff 0%, #f7f8fb 100%);
}

.home-leadership-section .section__head {
  margin-bottom: 1.25rem;
}

.home-leadership__row {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 880px) {
  .home-leadership__row {
    grid-template-columns: minmax(0, 1.02fr) minmax(280px, 0.98fr);
    gap: 2.5rem 3rem;
    align-items: stretch;
  }
}

.home-leadership__copy .section__head {
  max-width: 38rem;
  margin-bottom: 1.25rem;
}

.home-leadership__actions {
  margin: 0;
}

.home-leadership__media {
  min-width: 0;
}

.home-leadership__frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(13, 31, 60, 0.1);
  background: var(--white);
}

.home-leadership__img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

/* Split mission */
.split {
  display: grid;
  gap: 0;
}

@media (min-width: 900px) {
  .split {
    grid-template-columns: 1fr 1fr;
    min-height: 420px;
  }
}

.split__media {
  min-height: 280px;
  background-color: #152a45;
  background-image:
    url("../Assets/deco/split-bars.svg"),
    radial-gradient(ellipse 85% 75% at 65% 25%, rgba(197, 160, 89, 0.18) 0%, transparent 55%),
    linear-gradient(145deg, #1e3554 0%, #0d1f3c 55%, #152a45 100%);
  background-size: cover, auto, auto;
  background-position: center, center, center;
  background-repeat: no-repeat, no-repeat, no-repeat;
}

.split__panel {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.92);
  padding: 2.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.split__panel::before {
  content: "";
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  width: min(200px, 55vw);
  height: 140px;
  background: url("../Assets/deco/finance-deco.svg") no-repeat center / contain;
  opacity: 0.08;
  pointer-events: none;
}

.split__panel > * {
  position: relative;
  z-index: 1;
}

@media (min-width: 900px) {
  .split__panel {
    padding: 3rem 3.5rem;
  }
}

.split__panel h2 {
  color: var(--white);
}

.split__panel .eyebrow {
  color: var(--gold);
}

.split__signature {
  margin-top: 1.5rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--gold);
}

.split__role {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Sector pills */
.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.9rem;
  background: var(--white);
  border: 1px solid rgba(13, 31, 60, 0.12);
  border-radius: 999px;
  font-size: 0.88rem;
  color: var(--navy-soft);
}

.pill::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.75;
  flex-shrink: 0;
}

/* Practice areas split (services page) - vertical tabs + detail pane */
.practice-split {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

@media (min-width: 960px) {
  .practice-split {
    grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
    gap: 0;
    align-items: stretch;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(13, 31, 60, 0.08);
    border: 1px solid rgba(13, 31, 60, 0.1);
  }
}

.practice-split__nav {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  position: sticky;
  top: 6.5rem;
  align-self: start;
  background: #e4e8ef;
  padding: 0.5rem;
  border-radius: 12px;
  border: 1px solid rgba(13, 31, 60, 0.08);
}

@media (min-width: 960px) {
  .practice-split__nav {
    position: relative;
    top: auto;
    align-self: stretch;
    border-radius: 0;
    border: none;
    padding: 0.65rem 0.5rem 0.65rem 0.65rem;
    box-shadow: none;
  }
}

@media (max-width: 959px) {
  .practice-split__nav {
    position: static;
  }
}

.practice-split__panels {
  min-width: 0;
  background: var(--white);
  border-radius: 12px;
  padding: 1.75rem 1.35rem 2.25rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(13, 31, 60, 0.08);
}

@media (min-width: 960px) {
  .practice-split__panels {
    border-radius: 0;
    border: none;
    box-shadow: none;
    padding: 2rem 2.25rem 2.5rem 2rem;
  }
}

.practice-split__panels .article-block {
  border-top: none;
  padding: 0;
  scroll-margin-top: 7rem;
}

.practice-split__panels .article-block:first-of-type {
  padding-top: 0;
}

.practice-split__panels .article-block__icon {
  display: none;
}

.practice-split__panels .article-block__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.practice-split__panels .article-block__figure {
  width: 100%;
  max-height: none;
  margin: 0;
}

.practice-split__panels .article-block__img {
  width: 100%;
  aspect-ratio: 16 / 7;
  max-height: min(20rem, 42vw);
  object-fit: cover;
  object-position: center;
}

.practice-split__panels .article-block__body > h2 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(1.45rem, 2.2vw, 1.85rem);
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 0.85rem;
}

.practice-panel[hidden] {
  display: none !important;
}

.practice-split__nav .practice-card--nav {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0.65rem 1.75rem 0.65rem 0.85rem;
  font: inherit;
  text-align: left;
  cursor: pointer;
  color: var(--navy);
  background: #d6dce8;
  border: 1px solid rgba(13, 31, 60, 0.06);
  border-radius: 6px;
  box-shadow: none;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.practice-split__nav .practice-card--nav:hover {
  background: #cdd4e3;
  border-color: rgba(13, 31, 60, 0.1);
}

.practice-split__nav .practice-card--nav:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  z-index: 2;
}

.practice-split__nav .practice-card--nav.is-active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  z-index: 2;
}

@media (min-width: 960px) {
  .practice-split__nav .practice-card--nav.is-active::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(100%, -50%);
    width: 0;
    height: 0;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
    border-left: 11px solid var(--navy);
    pointer-events: none;
  }
}

.practice-split__nav .practice-card__title {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.35;
  margin: 0;
  color: inherit;
}

.practice-card__lede {
  display: block;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text-muted);
}

/* Practice cards (services hub) */
.practice-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 720px) {
  .practice-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.practice-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(13, 31, 60, 0.06);
}

.practice-card__thumb {
  margin: -1.75rem -1.75rem 1.1rem -1.75rem;
  aspect-ratio: 16 / 9;
  max-height: 11.5rem;
  background: var(--navy-mid);
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.practice-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.practice-card__icon {
  width: 52px;
  height: 52px;
  margin: 0 0 1rem;
  border-radius: 12px;
  background: linear-gradient(150deg, rgba(197, 160, 89, 0.28), rgba(13, 31, 60, 0.06));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(13, 31, 60, 0.06);
}

.practice-card__icon .material-symbols-outlined {
  font-size: 30px;
}

.practice-card__link {
  display: inline-flex;
  margin-top: 1rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 2px solid var(--gold);
}

.practice-card__link + .practice-card__link {
  margin-left: 0.75rem;
}

@media (max-width: 500px) {
  .practice-card__link + .practice-card__link {
    margin-left: 0;
    margin-top: 0.5rem;
    display: inline-flex;
  }
}

.practice-card__link:hover {
  color: var(--gold);
}

/* Anchored article blocks */
.article-block {
  position: relative;
  padding: 3rem 0;
  border-top: 1px solid rgba(13, 31, 60, 0.08);
  scroll-margin-top: 100px;
}

.article-block__icon {
  width: 46px;
  height: 46px;
  margin: 0 0 0.85rem;
  border-radius: 10px;
  background: linear-gradient(150deg, rgba(197, 160, 89, 0.26), rgba(13, 31, 60, 0.06));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  box-shadow: 0 2px 10px rgba(13, 31, 60, 0.06);
}

.article-block__icon .material-symbols-outlined {
  font-size: 28px;
}

.article-block:first-of-type {
  border-top: none;
  padding-top: 2.75rem;
}

.article-block__grid {
  display: grid;
  gap: 1.75rem;
  align-items: start;
}

.article-block__figure {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: linear-gradient(145deg, var(--navy-mid), var(--navy));
}

.article-block__img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.article-block__body > h2 {
  margin-top: 0.2rem;
}

@media (min-width: 880px) {
  .article-block__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr);
    gap: 2.25rem 2.75rem;
    align-items: center;
  }

  .article-block--media-end .article-block__figure {
    order: 2;
  }

  .article-block--media-end .article-block__body {
    order: 1;
  }
}

.practice-photo-note {
  margin: 2.5rem 0 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(13, 31, 60, 0.08);
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Why us grid */
.icon-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 700px) {
  .icon-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.icon-tile {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(13, 31, 60, 0.08);
}

.icon-tile__art {
  margin-bottom: 0.5rem;
}

.icon-tile__art .material-symbols-outlined {
  font-size: 42px;
  color: var(--navy);
}

.icon-tile__num {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.35rem;
}

/* Leadership grid */
.team-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.team-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid rgba(13, 31, 60, 0.08);
  text-align: center;
}

.team-card__avatar {
  width: 88px;
  height: 88px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--gold-muted), rgba(13, 31, 60, 0.08));
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--navy);
  overflow: hidden;
}

.team-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-card h3 {
  font-size: 1.15rem;
}

.team-card__title {
  font-size: 0.85rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}

.team-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* Contact */
.contact-layout {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  align-items: start;
}

@media (min-width: 900px) {
  .contact-layout {
    grid-template-columns: minmax(280px, 22rem) 1fr;
    gap: 2.5rem;
    align-items: stretch;
  }
}

.contact-branches-col {
  text-align: left;
}

.contact-branches-col__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.contact-branches-col__lead {
  margin: 0 0 1.1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-branch-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.contact-branch-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3rem;
  width: 100%;
  margin: 0;
  padding: 0.85rem 1rem;
  text-align: left;
  font-family: inherit;
  font-size: inherit;
  line-height: 1.5;
  color: var(--text);
  background: var(--white);
  border: 1px solid rgba(13, 31, 60, 0.12);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.contact-branch-item:hover {
  border-color: rgba(197, 160, 89, 0.45);
  box-shadow: var(--shadow-sm);
}

.contact-branch-item.is-active {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold);
  background: linear-gradient(135deg, rgba(197, 160, 89, 0.12) 0%, var(--white) 55%);
}

.contact-branch-item__name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
}

.contact-branch-item.is-active .contact-branch-item__name {
  color: var(--navy);
}

.contact-branch-item__role {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy-soft);
}

.contact-branch-item__address {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.contact-branch-item__reach {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  margin-top: 0.15rem;
  font-size: 0.88rem;
  font-weight: 600;
}

.contact-branch-item__reach a {
  color: var(--navy-soft);
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.contact-branch-item__reach a:hover {
  color: var(--gold);
}

.contact-general {
  margin: 1.15rem 0 0;
  padding: 0.85rem 0 0;
  border-top: 1px solid rgba(13, 31, 60, 0.12);
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: left;
}

.contact-general a {
  color: var(--navy-soft);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.contact-map-col {
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.contact-subheading {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 1.75rem 0 0.65rem;
}

.contact-subheading--map {
  margin-top: 0;
  margin-bottom: 0.65rem;
}

.contact-map-wrap {
  border: 1px solid rgba(13, 31, 60, 0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--cream);
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 320px;
}

.contact-map {
  display: block;
  width: 100%;
  height: min(380px, 52vh);
  min-height: 280px;
  border: 0;
  flex: 0 0 auto;
}

.contact-map-note {
  margin: 0;
  padding: 0.65rem 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.7);
  border-top: 1px solid rgba(13, 31, 60, 0.08);
  flex-shrink: 0;
}

@media (min-width: 900px) {
  .contact-map-col {
    min-height: 100%;
  }

  .contact-map-wrap {
    flex: 1;
    min-height: 480px;
  }

  .contact-map {
    flex: 1 1 auto;
    height: auto;
    min-height: 400px;
    max-height: none;
  }
}

.form-grid {
  display: grid;
  gap: 1rem;
  flex: 1;
}

.form-grid label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.form-grid input,
.form-grid textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border-radius: 8px;
  border: 1px solid rgba(13, 31, 60, 0.22);
  background: var(--white);
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
}

.form-grid input:focus-visible,
.form-grid textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-color: rgba(197, 160, 89, 0.65);
}

.form-grid input::placeholder,
.form-grid textarea::placeholder {
  color: rgba(26, 31, 43, 0.45);
}

.form-grid textarea {
  min-height: 120px;
  resize: vertical;
}

.notice {
  background: rgba(255, 102, 0, 0.12);
  border-left: 3px solid var(--orange-accent);
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  border-radius: 0 8px 8px 0;
}

.notice--dark {
  background: rgba(197, 160, 89, 0.12);
  border-left-color: var(--gold);
  color: var(--navy);
}

/* Legal prose */
.legal {
  max-width: 720px;
}

.legal h2 {
  margin-top: 2rem;
}

.legal h2:first-child {
  margin-top: 0;
}

/* Footer */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.85);
  padding: 0;
  font-size: 0.92rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.9);
}

.site-footer a:hover {
  color: var(--gold);
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.footer-main {
  padding: 0 0 2.5rem;
}

.footer-newsletter-strip {
  background: linear-gradient(135deg, rgba(197, 160, 89, 0.22) 0%, rgba(197, 160, 89, 0.08) 55%, rgba(13, 31, 60, 0) 100%);
  border-bottom: 1px solid rgba(197, 160, 89, 0.35);
  padding: 2rem var(--site-gutter) 2.15rem;
  margin-bottom: 2.5rem;
}

.footer-newsletter-strip__inner {
  display: grid;
  gap: 1.25rem 2rem;
  align-items: end;
}

@media (min-width: 768px) {
  .footer-newsletter-strip__inner {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

@media (min-width: 1024px) {
  .footer-newsletter-strip__inner {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

.footer-newsletter-strip__title {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 600;
  color: var(--white);
  margin: 0 0 0.4rem;
  letter-spacing: 0.02em;
}

.footer-newsletter-strip__lead {
  margin: 0;
  max-width: 36rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
}

.footer-newsletter-strip__legal {
  margin: 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.45;
  grid-column: 1 / -1;
}

@media (min-width: 1024px) {
  .footer-newsletter-strip__legal {
    grid-column: 2;
    justify-self: end;
    max-width: 42rem;
    text-align: right;
  }
}

.footer-newsletter-strip__legal a {
  color: var(--gold);
}

.footer-inner.footer-grid {
  display: grid;
  gap: 2.5rem 2rem;
  grid-template-columns: 1fr;
  padding: 0 var(--site-gutter);
}

@media (min-width: 700px) {
  .footer-inner.footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .footer-inner.footer-grid {
    grid-template-columns: 1.05fr 1.35fr 0.95fr;
    gap: 2.5rem 2rem;
  }
}

.footer-col--branches {
  max-width: none;
}

.footer-branch-picker {
  margin: 0;
}

.footer-branch-tabs {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.15rem;
  margin: 0 0 0.85rem;
  line-height: 1.65;
}

.footer-branch-tab {
  font-family: inherit;
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0;
  padding: 0;
  margin: 0;
  border: none;
  border-radius: 0;
  background: none;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: underline;
  text-underline-offset: 0.18em;
  text-decoration-color: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: color 0.15s, text-decoration-color 0.15s;
}

.footer-branch-tab:hover {
  color: var(--gold);
  text-decoration-color: rgba(197, 160, 89, 0.65);
}

.footer-branch-tab.is-active {
  color: var(--gold);
  font-weight: 700;
  text-decoration-color: var(--gold);
}

.footer-branch-tab:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.footer-branch-tab + .footer-branch-tab::before {
  content: "·";
  margin-right: 0.35rem;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 400;
  text-decoration: none;
  pointer-events: none;
}

.footer-branch-panels {
  min-height: 5.5rem;
  padding: 0.85rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-branch-panel[hidden] {
  display: none !important;
}

.footer-branch-panel {
  animation: footer-branch-fade 0.2s ease;
}

@keyframes footer-branch-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.footer-branch__person {
  margin: 0 0 0.25rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
}

.footer-branch__addr {
  margin: 0 0 0.35rem;
  font-size: 0.82rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.78);
}

.footer-branch__contact {
  margin: 0;
  font-size: 0.82rem;
}

.footer-branch__contact a {
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.footer-col--brand {
  max-width: 26rem;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  text-decoration: none;
  color: inherit;
  margin-bottom: 1rem;
}

.footer-brand:hover {
  color: inherit;
}

.footer-brand__logo {
  flex-shrink: 0;
  width: 56px;
  height: auto;
}

.footer-brand__name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  display: block;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.footer-brand__tag {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.footer-about {
  margin: 0 0 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  font-size: 0.88rem;
}

.footer-social:hover {
  color: var(--gold);
}

.footer-social__icon {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-social__icon .material-symbols-outlined {
  font-size: 18px;
}

.footer-heading {
  font-family: var(--font-sans);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 0.7rem;
}

.footer-heading--spaced {
  margin-top: 1.5rem;
}

.footer-text {
  margin: 0 0 0.45rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}

.footer-text-muted {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.86rem;
}

.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-list li {
  margin-bottom: 0.42rem;
}

.footer-list a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}

.footer-list a:hover {
  color: var(--gold);
  border-bottom-color: rgba(197, 160, 89, 0.45);
}

.footer-lead {
  margin: 0 0 0.85rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.55;
}

.footer-newsletter {
  display: flex;
  gap: 0.6rem;
  margin: 0;
  width: 100%;
  min-width: min(22rem, 100%);
  max-width: min(42rem, 100%);
}

.footer-newsletter--prominent {
  align-self: center;
  width: min(42rem, 100%);
}

@media (min-width: 768px) {
  .footer-newsletter--prominent {
    justify-self: end;
    width: min(42rem, 100%);
  }
}

@media (min-width: 768px) {
  .footer-newsletter--prominent {
    grid-column: 2;
    grid-row: 1;
  }
}

@media (min-width: 1024px) {
  .footer-newsletter--prominent {
    grid-column: 2;
  }

  .footer-newsletter-strip__copy {
    grid-column: 1;
    grid-row: 1;
  }
}

.footer-newsletter input {
  flex: 1 1 22rem;
  min-width: 18rem;
  width: 100%;
  padding: 0.72rem 1.05rem;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  background: var(--white);
  color: var(--navy);
  font-family: inherit;
  font-size: 1rem;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
}

.footer-newsletter input::placeholder {
  color: rgba(13, 31, 60, 0.45);
}

.footer-newsletter input:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-color: rgba(197, 160, 89, 0.55);
}

.footer-newsletter__btn {
  flex-shrink: 0;
  min-height: 46px;
  padding: 0 1.1rem;
  border: none;
  border-radius: 8px;
  background: var(--gold);
  color: var(--navy);
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

.footer-newsletter__btn .material-symbols-outlined {
  font-size: 20px;
}

.footer-newsletter__btn--label {
  padding: 0 1.1rem;
  font-size: 0.85rem;
}

.footer-newsletter__btn:hover {
  background: var(--gold-hover);
}

.footer-privacy-note {
  margin: 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.45;
}

.footer-privacy-note a {
  color: var(--gold);
}

.footer-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.1rem var(--site-gutter) 1.4rem;
}

.footer-bar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
}

.footer-signature {
  flex: 1 1 100%;
  order: 4;
  margin: 0.35rem 0 0;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.4rem 0.55rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.2;
  text-align: center;
}

.footer-signature__prefix {
  display: inline-flex;
  align-items: center;
  line-height: 1.2;
}

.footer-signature__link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.96);
  text-decoration: none;
  font-weight: 700;
  line-height: 1;
}

.footer-signature__link:hover {
  color: #ffffff;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 0.18em;
}

.footer-signature__link:hover .footer-signature__logo {
  opacity: 0.95;
}

.footer-signature__logo {
  height: 28px;
  width: auto;
  max-height: 32px;
  display: block;
  flex-shrink: 0;
  object-fit: contain;
}

.footer-signature__brand {
  white-space: nowrap;
  line-height: 1.2;
}

.footer-copyright {
  margin: 0;
  flex: 1 1 14rem;
  order: 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
}

.footer-copyright a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.15rem;
  align-items: center;
  order: 1;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 600;
}

.footer-nav a:hover {
  color: var(--gold);
}

.footer-back-top {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: var(--gold);
  color: var(--navy);
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
  order: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.15s;
}

.footer-back-top .material-symbols-outlined {
  font-size: 22px;
}

.footer-back-top:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  white-space: nowrap;
}

/* Page hero (inner pages) */
.page-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: var(--white);
  padding: 2.75rem var(--site-gutter);
}

.page-hero.page-hero--photo {
  background-image:
    linear-gradient(135deg, rgba(13, 31, 60, 0.92) 0%, rgba(21, 42, 69, 0.86) 45%, rgba(13, 31, 60, 0.9) 100%),
    var(--page-hero-image, none);
  background-size: auto, cover;
  background-position: center, center center;
  background-repeat: no-repeat, no-repeat;
}

.page-hero.page-hero--photo::before {
  opacity: 0.05;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../Assets/deco/finance-deco.svg") no-repeat 100% 45%;
  background-size: min(420px, 70vw) auto;
  opacity: 0.11;
  pointer-events: none;
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
}

.page-hero h1 {
  color: var(--white);
}

.page-hero p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 40rem;
}

/* Floating WhatsApp (dummy number: replace 918888888888 in each page href) */
.whatsapp-float {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right, 0px));
  bottom: max(1rem, env(safe-area-inset-bottom, 0px));
  z-index: 400;
  width: 56px;
  height: 56px;
  padding: 0;
  border-radius: 50%;
  background: #25d366;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.45), 0 2px 8px rgba(13, 31, 60, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.06);
  background: #20bd5a;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.55), 0 3px 10px rgba(13, 31, 60, 0.22);
}

.whatsapp-float:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.whatsapp-float__logo {
  width: 30px;
  height: 30px;
  display: block;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.whatsapp-float:hover .whatsapp-float__logo {
  transform: scale(1.05);
}

@media (prefers-reduced-motion: reduce) {
  .whatsapp-float {
    transition: none;
  }

  .whatsapp-float:hover {
    transform: none;
  }

  .whatsapp-float__logo {
    transition: none;
  }

  .whatsapp-float:hover .whatsapp-float__logo {
    transform: none;
  }
}

/* Utilities */
.mt-0 {
  margin-top: 0;
}

.stack-sm > * + * {
  margin-top: 0.75rem;
}
