/* Inner page system */

.page-hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #001858;
  color: #fff;
}

.page-hero--compact { min-height: 48vh; }
.page-hero--folio { min-height: 52vh; }

.page-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.06);
  transition: transform 1.8s cubic-bezier(.22,1,.36,1);
}

.page-hero.is-inview .page-hero-media img { transform: scale(1); }

.page-hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(115deg, rgba(0, 8, 28, .88) 0%, rgba(0, 24, 88, .55) 48%, rgba(0, 24, 88, .28) 100%),
    linear-gradient(to top, rgba(0, 8, 28, .82) 0%, transparent 52%);
  pointer-events: none;
}

.page-hero-grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: .06;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.page-hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding-top: 7.5rem;
  padding-bottom: 3.25rem;
}

@media (min-width: 1024px) {
  .page-hero-content {
    padding-top: 8.5rem;
    padding-bottom: 4rem;
  }
}

.page-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  margin: 0 0 1rem;
  color: #E0C9A5;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.page-hero-kicker-line {
  display: inline-block;
  width: 2.25rem;
  height: 1px;
  background: linear-gradient(90deg, #C69D67, transparent);
}

.page-hero-title {
  margin: 0;
  max-width: 16ch;
  font-size: clamp(2.15rem, 5vw, 3.75rem);
  font-weight: 400;
  line-height: 1.05;
  color: #fff;
}

.page-hero-lead {
  margin: 1.15rem 0 0;
  max-width: 34rem;
  color: rgba(255,255,255,.74);
  font-size: clamp(.95rem, 1.4vw, 1.05rem);
  font-weight: 300;
  line-height: 1.7;
}

.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.75rem;
}

/* Visually hidden page title for SEO / a11y when banner has no overlay copy */
.page-hero-sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Image-backed feature cards (match homepage energy) */
.page-feature-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .page-feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1100px) {
  .page-feature-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.page-feature-card {
  position: relative;
  overflow: hidden;
  min-height: 18rem;
  border: 1px solid rgba(198,157,103,.22);
  background: #001858;
  color: #fff;
}
.page-feature-card-media {
  position: absolute;
  inset: 0;
}
.page-feature-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform .9s cubic-bezier(.22,1,.36,1);
}
.page-feature-card:hover .page-feature-card-media img { transform: scale(1.08); }
.page-feature-card-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 24, 88, .2) 0%, rgba(0, 24, 88, .88) 70%, rgba(0, 8, 28, .94) 100%);
}
.page-feature-card-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 18rem;
  padding: 1.35rem 1.25rem 1.4rem;
}
.page-feature-card-num {
  display: block;
  margin-bottom: .55rem;
  color: #C69D67;
  font-size: 1.35rem;
  line-height: 1;
}
.page-feature-card-body h3 {
  margin: 0 0 .4rem;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.2;
}
.page-feature-card-body p {
  margin: 0;
  color: rgba(255,255,255,.7);
  font-size: .86rem;
  font-weight: 300;
  line-height: 1.6;
}

/* Priority cards with short copy */
.page-priority-grid {
  display: grid;
  gap: .85rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .page-priority-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
  .page-priority-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.page-priority {
  padding: 1.35rem 1.25rem;
  border: 1px solid #D8DEE6;
  background: #fff;
  transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease;
}
.page-priority:hover {
  border-color: rgba(198,157,103,.55);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0, 24, 88, .08);
}
.page-band .page-priority {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.12);
  color: #fff;
}
.page-band .page-priority:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(198,157,103,.4);
  box-shadow: none;
}
.page-band .page-priority p { color: rgba(255,255,255,.65); }

/* Light sand band ? keep dark readable text */
.page-band-sand .page-priority {
  background: #fff;
  border-color: #D8DEE6;
  color: #001858;
}
.page-band-sand .page-priority:hover {
  background: #fff;
  border-color: rgba(198,157,103,.55);
  box-shadow: 0 14px 36px rgba(0, 24, 88, .08);
}
.page-band-sand .page-priority p { color: #5C6B7A; }
.page-band-sand .page-priority h3 { color: #001858; }

.page-values-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .page-values-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
  .page-values-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.page-value-card {
  padding: 1.5rem 1.35rem;
  background: #fff;
  border: 1px solid #D8DEE6;
  transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease;
}
.page-value-card:hover {
  border-color: rgba(198,157,103,.55);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 24, 88, .08);
}
.page-value-card-num {
  display: block;
  margin-bottom: .75rem;
  color: #C69D67;
  font-size: 1.5rem;
  line-height: 1;
}
.page-value-card h3 {
  margin: 0 0 .55rem;
  color: #001858;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.2;
}
.page-value-card p {
  margin: 0;
  color: #5C6B7A;
  font-size: .88rem;
  font-weight: 300;
  line-height: 1.65;
}

.page-priority-num {
  display: block;
  margin-bottom: .65rem;
  color: #C69D67;
  font-size: 1.25rem;
  line-height: 1;
}
.page-priority h3 {
  margin: 0 0 .4rem;
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.2;
  color: inherit;
}
.page-priority p {
  margin: 0;
  color: #5C6B7A;
  font-size: .88rem;
  font-weight: 300;
  line-height: 1.6;
}
.page-band .page-priority p { color: rgba(255,255,255,.65); }

/* Inner page portfolio / theme cards */
.page-hub-cards {
  display: grid;
  gap: 1rem;
}
@media (min-width: 900px) {
  .page-hub-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.page-hub-card {
  position: relative;
  display: block;
  min-height: 20rem;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  border: 1px solid #D8DEE6;
  transition: transform .35s ease, box-shadow .35s ease;
}
.page-hub-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 24, 88, .14);
}
.page-hub-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .9s cubic-bezier(.22,1,.36,1);
}
.page-hub-card:hover img { transform: scale(1.06); }
.page-hub-card-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(0, 8, 28, .9) 0%, rgba(0, 24, 88, .55) 55%, rgba(0, 24, 88, .3) 100%);
}
.page-hub-card-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 20rem;
  max-width: 28rem;
  padding: 1.65rem 1.5rem;
}
.page-hub-card-meta {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .75rem;
}
.page-hub-card-index {
  color: #C69D67;
  font-size: 1.35rem;
  line-height: 1;
}
.page-hub-card-sector {
  color: rgba(255,255,255,.6);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.page-hub-card-body h3 {
  margin: 0 0 .55rem;
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 400;
  line-height: 1.15;
}
.page-hub-card-body p {
  margin: 0 0 1.15rem;
  color: rgba(255,255,255,.72);
  font-size: .88rem;
  font-weight: 300;
  line-height: 1.65;
}
.page-hub-card-cta {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: #C69D67;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: gap .25s ease, color .25s ease;
}
.page-hub-card:hover .page-hub-card-cta {
  color: #E0C9A5;
  gap: .8rem;
}

/* Contact redesign */
.contact-layout {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 1024px) {
  .contact-layout {
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 3.5rem;
    align-items: start;
  }
}
.contact-media {
  position: relative;
  overflow: hidden;
  min-height: 18rem;
  border: 1px solid #D8DEE6;
}
@media (min-width: 1024px) {
  .contact-media { min-height: 100%; }
}
.contact-media img {
  width: 100%;
  height: 100%;
  min-height: 18rem;
  object-fit: cover;
}
.contact-media-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 24, 88, .55), transparent 50%);
}

.page-split {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .page-split {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 4rem;
  }
  .page-split--flip > :first-child { order: 2; }
  .page-split--flip > :last-child { order: 1; }
}

.page-split-eyebrow {
  margin: 0 0 .85rem;
  color: #C69D67;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.page-hero-eyebrow {
  margin: 0 0 .85rem;
  color: #C69D67;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.page-split-title {
  margin: 0 0 1.15rem;
  font-size: clamp(1.85rem, 3.2vw, 2.75rem);
  line-height: 1.1;
  font-weight: 400;
  color: #001858;
}

.page-split-copy {
  color: #5C6B7A;
  font-size: .95rem;
  font-weight: 300;
  line-height: 1.75;
}

.page-split-copy p + p { margin-top: 1rem; }
.page-split-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #D8DEE6;
}

.page-split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s cubic-bezier(.22,1,.36,1);
}

.page-split-media:hover img { transform: scale(1.05); }
.page-split-frame {
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(232,213,184,.45);
  pointer-events: none;
  z-index: 1;
}

.page-callout {
  margin-top: 1.5rem;
  padding: 1.15rem 1.25rem;
  border-left: 2px solid #C69D67;
  background: #EEF1F5;
  color: #5C6B7A;
  font-size: .85rem;
  font-weight: 300;
  line-height: 1.65;
}

.page-band {
  position: relative;
  background: #001858;
  color: #fff;
  overflow: hidden;
}

.page-band-sand {
  background: linear-gradient(180deg, #EEF1F5 0%, #fff 55%, #EEF1F5 100%);
  color: #001858;
}

.page-band-inner {
  position: relative;
  z-index: 1;
  max-width: 80rem;
  margin: 0 auto;
  padding: 5rem 1.25rem;
}

@media (min-width: 1024px) {
  .page-band-inner { padding: 6rem 2rem; }
}

.page-quote {
  margin: 0 auto;
  max-width: 48rem;
  text-align: center;
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  font-style: italic;
  line-height: 1.35;
  color: #001858;
  font-weight: 400;
}

.page-quote::before {
  content: '';
  display: block;
  width: 3rem;
  height: 2px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(90deg, #A87F4A, #C69D67);
}

.page-quote--left {
  margin-left: 0;
  margin-right: 0;
  max-width: none;
  text-align: left;
}
.page-quote--left::before {
  margin-left: 0;
  margin-right: auto;
}

.pf-subnav {
  position: relative;
  z-index: 5;
  background: #001858;
  border-bottom: 1px solid rgba(198,157,103,.22);
}

.pf-subnav-track {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: thin;
}

.pf-subnav-link {
  flex: 0 0 auto;
  padding: .95rem 1.05rem;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255,255,255,.48);
  border-bottom: 2px solid transparent;
  transition: color .25s ease, border-color .25s ease, background .25s ease;
}

.pf-subnav-link:hover {
  color: #fff;
  background: rgba(255,255,255,.04);
}

.pf-subnav-link.is-active {
  color: #C69D67;
  border-bottom-color: #C69D67;
  background: transparent;
}

/* Dense company page layout */

.co-page {
  background: #fff;
}

.co-shell {
  max-width: 80rem;
  margin: 0 auto;
  padding: 2.75rem 1.25rem 3.5rem;
}

@media (min-width: 1024px) {
  .co-shell { padding: 3.25rem 2rem 4rem; }
}

.co-intro {
  display: grid;
  gap: 1.5rem 3rem;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid #D8DEE6;
}

@media (min-width: 900px) {
  .co-intro {
    grid-template-columns: minmax(0, 1.35fr) minmax(0, .85fr);
    align-items: end;
  }
}

.co-eyebrow {
  margin: 0 0 .55rem;
  color: #C69D67;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.co-title {
  margin: 0;
  font-size: clamp(1.85rem, 3.4vw, 2.85rem);
  line-height: 1.08;
  font-weight: 500;
  color: #001858;
  max-width: 18ch;
}

.co-lead {
  margin: 0;
  color: #5C6B7A;
  font-size: .92rem;
  font-weight: 300;
  line-height: 1.7;
}

.co-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border: 1px solid #D8DEE6;
}

.co-meta-item {
  padding: 1rem 1.05rem;
  border-right: 1px solid #D8DEE6;
  border-bottom: 1px solid #D8DEE6;
}

.co-meta-item:nth-child(2n) { border-right: none; }
.co-meta-item:nth-child(n+3) { border-bottom: none; }
.co-meta-label {
  display: block;
  margin-bottom: .3rem;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #C69D67;
}

.co-meta-value {
  margin: 0;
  font-size: .82rem;
  font-weight: 400;
  color: #001858;
  line-height: 1.4;
}

.co-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .co-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    gap: 2.75rem;
    align-items: start;
  }
}

.co-copy p {
  margin: 0 0 1rem;
  color: #5C6B7A;
  font-size: .92rem;
  font-weight: 300;
  line-height: 1.7;
}

.co-copy p:last-child { margin-bottom: 0; }
.co-callout {
  margin-top: 1.25rem;
  padding: 1rem 1.1rem;
  border-left: 2px solid #C69D67;
  background: #EEF1F5;
  color: #5C6B7A;
  font-size: .82rem;
  font-weight: 300;
  line-height: 1.6;
}

.co-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 5 / 4;
  background: #D8DEE6;
}

.co-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(.22,1,.36,1);
}

.co-media:hover img { transform: scale(1.05); }
.co-media-frame {
  position: absolute;
  inset: .75rem;
  border: 1px solid rgba(232,213,184,.4);
  pointer-events: none;
}

.co-section {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid #D8DEE6;
}

.co-section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: .75rem 1.5rem;
  margin-bottom: 1.25rem;
}

.co-section-title {
  margin: 0;
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 500;
  color: #001858;
}

.co-features {
  display: grid;
  gap: 0;
  border-top: 1px solid #D8DEE6;
}

@media (min-width: 768px) {
  .co-features { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.co-feature {
  padding: 1.35rem 1.15rem 1.4rem;
  border-bottom: 1px solid #D8DEE6;
  border-right: 1px solid #D8DEE6;
  text-decoration: none;
  color: inherit;
  transition: background .3s ease;
}

@media (min-width: 768px) {
  .co-feature:nth-child(3n) { border-right: none; }
  .co-feature { border-bottom: none; }
}
a.co-feature:hover { background: #EEF1F5; }
.co-feature-num {
  display: block;
  margin-bottom: .65rem;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  color: #C69D67;
}

.co-feature-title {
  margin: 0 0 .45rem;
  font-size: 1.15rem;
  font-weight: 500;
  color: #001858;
}

.co-feature-copy {
  margin: 0;
  color: #5C6B7A;
  font-size: .82rem;
  font-weight: 300;
  line-height: 1.6;
}

.svc-list { display: grid; gap: .45rem; }
.svc-item {
  border: 1px solid #D8DEE6;
  background: #fff;
  transition: border-color .3s ease, background .3s ease;
}

.svc-item[open] {
  border-color: rgba(198,157,103,.55);
  background: #F7F8FA;
}

.svc-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .95rem 1.1rem;
  font-size: .88rem;
  font-weight: 500;
  color: #001858;
}

.svc-item summary::-webkit-details-marker { display: none; }
.svc-item summary i {
  color: #C69D67;
  font-size: .65rem;
  transition: transform .3s ease;
}

.svc-item[open] summary i { transform: rotate(45deg); }
.svc-item p {
  margin: 0;
  padding: 0 1.1rem 1rem;
  color: #5C6B7A;
  font-size: .82rem;
  font-weight: 300;
  line-height: 1.65;
}

.co-next {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.5rem;
  padding: 1.25rem 0 0;
  border-top: 1px solid #D8DEE6;
}

.co-next-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #5C6B7A;
}

.co-next a {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: #A87F4A;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color .3s ease, gap .3s ease;
}

.co-next a:hover {
  color: #001858;
  gap: .8rem;
}

.contact-panel {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .contact-panel {
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 3.5rem;
    align-items: start;
  }
}

.contact-form {
  background: #fff;
  border: 1px solid #D8DEE6;
  padding: 1.75rem 1.5rem;
  box-shadow: none;
}

@media (min-width: 640px) {
  .contact-form { padding: 2rem; }
}

.contact-form label {
  display: block;
  margin-bottom: .45rem;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #5C6B7A;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #D8DEE6;
  background: #fff;
  padding: .85rem 1rem;
  font-size: .9rem;
  font-family: inherit;
  color: #001858;
  transition: border-color .25s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #C69D67;
}

.contact-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.35rem;
}

.contact-detail i {
  color: #C69D67;
  margin-top: .2rem;
}

.contact-detail strong {
  display: block;
  margin-bottom: .35rem;
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.contact-detail p,
.contact-detail a {
  margin: 0;
  color: #5C6B7A;
  font-size: .9rem;
  font-weight: 300;
  line-height: 1.65;
  text-decoration: none;
}

.contact-detail a:hover { color: #A87F4A; }
.news-mosaic--triple {
  grid-template-columns: 1fr;
  min-height: auto !important;
}

@media (min-width: 900px) {
  .news-mosaic--triple {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: auto;
  }
  .news-mosaic--triple .news-tile { grid-column: auto; grid-row: auto; }
}

.folio--light .folio-title,
.folio--light .folio-name { color: #fff; }

/* ?? Newsroom article list ?? */
.news-articles {
  display: grid;
  gap: 0;
  border-top: 1px solid #D8DEE6;
}
.news-article {
  padding: 2rem 0;
  border-bottom: 1px solid #D8DEE6;
}
.news-article-grid {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}
@media (min-width: 768px) {
  .news-article-grid {
    grid-template-columns: minmax(0, .42fr) minmax(0, 1fr);
    gap: 2.5rem;
  }
}
.news-article-media {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #EEF1F5;
}
.news-article-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(.22,1,.36,1);
}
.news-article:hover .news-article-media img { transform: scale(1.04); }
.news-article-title {
  margin: .5rem 0 .75rem;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  line-height: 1.15;
  font-weight: 400;
  color: #001858;
}
.news-article-excerpt {
  margin: 0;
  color: #5C6B7A;
  font-size: .92rem;
  font-weight: 300;
  line-height: 1.7;
  max-width: 40rem;
}

/* ?? Contact page ?? */
.contact-page {
  background: linear-gradient(180deg, #F7F8FA 0%, #fff 55%);
}
.contact-shell {
  display: grid;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .contact-shell {
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.15fr);
    gap: 2.5rem;
    align-items: stretch;
  }
}
.contact-aside {
  padding: 2rem 1.75rem;
  background: #001858;
  color: #fff;
  border: 1px solid rgba(198,157,103,.25);
}
@media (min-width: 768px) {
  .contact-aside { padding: 2.5rem 2.25rem; }
}
.contact-aside .page-split-eyebrow { color: #C69D67; }
.contact-aside-title {
  margin: 0 0 .85rem;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 400;
  line-height: 1.15;
  color: #fff;
}
.contact-aside-lead {
  margin: 0 0 2rem;
  color: rgba(255,255,255,.68);
  font-size: .92rem;
  font-weight: 300;
  line-height: 1.7;
  max-width: 28rem;
}
.contact-aside-list { display: grid; gap: 1.25rem; }
.contact-aside-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-aside-icon {
  width: 2.25rem;
  height: 2.25rem;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(198,157,103,.4);
  color: #C69D67;
  font-size: .85rem;
}
.contact-aside-item strong {
  display: block;
  margin-bottom: .3rem;
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #E0C9A5;
}
.contact-aside-item p,
.contact-aside-item a {
  margin: 0;
  color: rgba(255,255,255,.75);
  font-size: .9rem;
  font-weight: 300;
  line-height: 1.65;
  text-decoration: none;
}
.contact-aside-item a:hover { color: #C69D67; }
.contact-aside-social {
  display: flex;
  gap: .65rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.12);
}
.contact-aside-social a {
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(198,157,103,.35);
  color: #C69D67;
  transition: color .3s ease, border-color .3s ease, transform .3s ease, box-shadow .3s ease;
}
.contact-aside-social a::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #E0C9A5, #C69D67, #A87F4A);
  opacity: 0;
  transition: opacity .3s ease;
}
.contact-aside-social a i { position: relative; z-index: 1; }
.contact-aside-social a:hover {
  color: #001858;
  border-color: #C69D67;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, .2);
}
.contact-aside-social a:hover::before { opacity: 1; }
.contact-form-panel {
  background: #fff;
  border: 1px solid #D8DEE6;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 18px 50px rgba(0, 24, 88, .06);
}
@media (min-width: 640px) {
  .contact-form-panel { padding: 2.25rem 2rem; }
}
.contact-form-title {
  margin: 0 0 1.5rem;
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
  font-weight: 400;
  color: #001858;
  line-height: 1.15;
}
.contact-form--panel {
  background: transparent;
  border: 0;
  padding: 0;
  box-shadow: none;
}

/* ?? Newsroom page ?? */
.newsroom-page {
  background: linear-gradient(180deg, #fff 0%, #F7F8FA 100%);
}
.newsroom-featured {
  display: grid;
  gap: 1rem;
}
@media (min-width: 900px) {
  .newsroom-featured {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.newsroom-feature-card {
  position: relative;
  display: block;
  min-height: 22rem;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  border: 1px solid #D8DEE6;
  transition: transform .35s ease, box-shadow .35s ease;
}
.newsroom-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 24, 88, .12);
}
.newsroom-feature-media {
  position: absolute;
  inset: 0;
}
.newsroom-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .9s cubic-bezier(.22,1,.36,1);
}
.newsroom-feature-card:hover .newsroom-feature-media img { transform: scale(1.06); }
.newsroom-feature-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 24, 88, .15) 0%, rgba(0, 24, 88, .82) 68%, rgba(0, 8, 28, .94) 100%);
}
.newsroom-feature-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 22rem;
  padding: 1.5rem 1.35rem;
}
.newsroom-feature-tag {
  display: inline-block;
  margin-bottom: .65rem;
  color: #C69D67;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.newsroom-feature-body h3 {
  margin: 0 0 .55rem;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 400;
  line-height: 1.15;
}
.newsroom-feature-body p {
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: .88rem;
  font-weight: 300;
  line-height: 1.65;
}
.newsroom-list {
  display: grid;
  gap: 1rem;
}
.newsroom-list-item {
  display: grid;
  gap: 0;
  background: #fff;
  border: 1px solid #D8DEE6;
  overflow: hidden;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.newsroom-list-item:hover {
  border-color: rgba(198,157,103,.45);
  box-shadow: 0 14px 36px rgba(0, 24, 88, .08);
}
@media (min-width: 768px) {
  .newsroom-list-item {
    grid-template-columns: 14rem minmax(0, 1fr);
    align-items: stretch;
  }
}
.newsroom-list-media {
  position: relative;
  min-height: 10rem;
  overflow: hidden;
  background: #D8DEE6;
}
.newsroom-list-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.22,1,.36,1);
}
.newsroom-list-item:hover .newsroom-list-media img { transform: scale(1.05); }
.newsroom-list-body {
  padding: 1.35rem 1.35rem 1.5rem;
}
.newsroom-list-body h3 {
  margin: .45rem 0 .55rem;
  color: #001858;
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  font-weight: 400;
  line-height: 1.2;
}
.newsroom-list-body p {
  margin: 0;
  color: #5C6B7A;
  font-size: .9rem;
  font-weight: 300;
  line-height: 1.65;
  max-width: 40rem;
}

