html{scroll-padding-top:80px;}
  :root {
    --teal:#234645;
    --teal-mid: #2d5755;
    --slate: #4A5859;
    --fieldstone: #8A8578;
    --gravel: #B8B2A6;
    --sandstone: #E8E4DB;
    --white: #FAF9F6;
    --charcoal: #373A36;
    --border-light: rgba(35, 70, 69, 0.08);
    --border-med: rgba(138, 133, 120, 0.2);
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; font-size: 16px; }
  body {
    font-family: 'Open Sans', sans-serif;
    color: var(--charcoal);
    background: var(--white);
    overflow-x: hidden;
  }
  .contour-bg {
    position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0;
  }
  .contour-bg img { width: 100%; height: 100%; object-fit: cover; display: block; opacity: 0.5; }

  /* ── HEADER ── */
  header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: var(--teal);
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .header-inner {
    max-width: 1320px; margin: 0 auto; padding: 0 48px; height: 80px;
    display: flex; align-items: center; justify-content: space-between;
  }
  .logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
  .logo-icon { width: 40px; height: 40px; }
  .logo-icon rect { fill: rgba(255,255,255,0.15) !important; }
  .logo-text {
    font-size: 0.82rem; font-weight: 700; letter-spacing: 0.15em;
    text-transform: uppercase; color: var(--white); line-height: 1.2;
  }
  .logo-text span { display: block; font-weight: 400; letter-spacing: 0.2em; font-size: 0.7rem; color: rgba(250,249,246,0.7); }
  nav { display: flex; align-items: center; gap: 40px; }
  nav a {
    text-decoration: none; color: rgba(250,249,246,0.85); font-size: 0.9rem;
    font-weight: 500; letter-spacing: 0.04em; position: relative; padding: 4px 0;
  }
  nav a::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 0; height: 2px; background: var(--white); transition: width 0.3s ease;
  }
  nav a:hover::after { width: 100%; }
  nav a:hover { color: var(--white); }
  nav a.cta-link {
    background: rgba(255,255,255,0.15); color: var(--white); padding: 10px 24px;
    border-radius: 6px; border: 1px solid rgba(255,255,255,0.25);
    transition: background 0.2s, transform 0.2s;
  }
  nav a.cta-link::after { display: none; }
  nav a.cta-link:hover { background: rgba(255,255,255,0.25); transform: translateY(-1px); }

  /* ── BUTTONS ── */
  .btn {
    display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px;
    border-radius: 6px; font-size: 0.95rem; font-weight: 500; text-decoration: none;
    transition: all 0.25s ease; cursor: pointer; border: none;
  }
  .btn-primary { background: var(--teal); color: var(--white); }
  .btn-primary:hover { background: var(--teal-mid); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(35,70,69,0.2); }
  .btn-outline { background: transparent; color: var(--teal); border: 1.5px solid var(--teal); }
  .btn-outline:hover { background: var(--teal); color: var(--white); transform: translateY(-1px); }

  /* ── PAGE HERO ── */
  .page-hero {
    position: relative;
    padding: 160px 48px 72px;
    background: var(--teal);
    overflow: hidden;
    min-height: 460px;
  }
  .page-hero .contour-bg svg path { stroke: rgba(250, 249, 246, 0.06) !important; }
  .page-hero-inner {
    position: relative; z-index: 2;
    max-width: 1320px; margin: 0 auto;
  }
  .breadcrumb {
    display: flex; align-items: center; gap: 8px;
    margin-bottom: 28px;
  }
  .breadcrumb a {
    font-size: 0.78rem; font-weight: 400; color: rgba(250,249,246,0.5);
    text-decoration: none; letter-spacing: 0.04em; transition: color 0.2s;
  }
  .breadcrumb a:hover { color: rgba(250,249,246,0.8); }
  .breadcrumb .sep { color: rgba(250,249,246,0.25); font-size: 0.72rem; }
  .breadcrumb .current {
    font-size: 0.78rem; font-weight: 500; color: rgba(250,249,246,0.7); letter-spacing: 0.04em;
  }
  .page-hero h1 {
    font-family: 'Oswald', sans-serif; text-transform: uppercase; font-size: 3.4rem; font-weight: 600;
    line-height: 1.12; color: var(--white); margin-bottom: 24px; letter-spacing: -0.02em;
    max-width: 700px;
  }
  .page-hero .subtitle {
    font-size: 1.15rem; line-height: 1.7; color: rgba(250,249,246,0.75);
    max-width: 620px; font-weight: 300;
  }

  /* ── OVERVIEW ── */
  .overview-section {
    position: relative; padding: 40px 48px; background: var(--white); overflow: hidden;
  }
  .overview-layout {
    position: relative; z-index: 2;
    max-width: 1320px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start;
  }
  .overview-label {
    font-size: 0.72rem; font-weight: 600; letter-spacing: 0.3em;
    text-transform: uppercase; color: var(--fieldstone); margin-bottom: 16px;
  }
  .overview-title {
    font-family: 'Oswald', sans-serif; text-transform: uppercase; font-size: 2.2rem; font-weight: 600;
    color: var(--teal); margin-bottom: 20px; line-height: 1.2;
  }
  .overview-text p {
    font-size: 1rem; line-height: 1.8; color: var(--slate); font-weight: 300; margin-bottom: 20px;
  }
  .overview-text p:last-child { margin-bottom: 0; }

  /* ── SUB-SERVICES ── */
  .subservices-section {
    position: relative; padding: 40px 48px; background: var(--sandstone); overflow: hidden;
  }
  .subservices-inner {
    position: relative; z-index: 2; max-width: 1320px; margin: 0 auto;
  }
  .subservices-header {
    text-align: center; margin-bottom: 64px;
  }
  .subservices-header .section-label {
    font-size: 0.72rem; font-weight: 600; letter-spacing: 0.3em;
    text-transform: uppercase; color: var(--fieldstone); margin-bottom: 16px;
  }
  .subservices-header h2 {
    font-family: 'Oswald', sans-serif; text-transform: uppercase; font-size: 2.4rem; font-weight: 600;
    color: var(--teal); margin-bottom: 16px;
  }
  .subservices-header p {
    font-size: 1rem; line-height: 1.7; color: var(--slate); font-weight: 300;
    max-width: 640px; margin: 0 auto;
  }
  .subservices-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px;
  }
  .sub-card {
    background: var(--white); border-radius: 12px; padding: 36px 32px;
    border: 1px solid rgba(138, 133, 120, 0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }
  .sub-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(35, 70, 69, 0.08);
  }
  .sub-card .card-number {
    font-family: 'Oswald', sans-serif; text-transform: uppercase; font-size: 1rem; font-weight: 600;
    color: var(--teal); opacity: 0.5; display: inline; margin-right: 10px;
  }
  .sub-card h3 {
    font-size: 1rem; font-weight: 600; color: var(--teal); margin-bottom: 12px;
    letter-spacing: 0.02em; display: inline;
  }
  .sub-card p { margin-top: 10px; }
  .sub-card p {
    font-size: 0.88rem; line-height: 1.7; color: var(--slate); font-weight: 300;
  }

  /* ── REGULATORY CONTEXT ── */
  .context-section {
    position: relative; padding: 40px 48px; background: var(--white); overflow: hidden;
  }
  .context-layout {
    position: relative; z-index: 2;
    max-width: 1320px; margin: 0 auto;
    display: grid; grid-template-columns: 1.4fr 1fr; gap: 80px; align-items: start;
  }
  .context-text h2 {
    font-family: 'Oswald', sans-serif; text-transform: uppercase; font-size: 2.2rem; font-weight: 600;
    color: var(--teal); margin-bottom: 20px; line-height: 1.2;
  }
  .context-text p {
    font-size: 1rem; line-height: 1.8; color: var(--slate); font-weight: 300; margin-bottom: 20px;
  }
  .context-sidebar {
    background: var(--sandstone); border-radius: 12px; padding: 36px 32px;
    border: 1px solid rgba(138, 133, 120, 0.12);
  }
  .context-sidebar h4 {
    font-size: 0.72rem; font-weight: 600; letter-spacing: 0.25em;
    text-transform: uppercase; color: var(--teal); margin-bottom: 20px;
  }
  .context-sidebar li {
    font-size: 0.9rem; line-height: 1.7; color: var(--slate); font-weight: 300;
    margin-bottom: 12px; padding-left: 16px; position: relative; list-style: none;
  }
  .context-sidebar li::before {
    content: ''; position: absolute; left: 0; top: 10px;
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--teal); opacity: 0.3;
  }

  /* ── WHO IT'S FOR ── */
  .audience-section {
    position: relative; padding: 40px 48px; background: var(--sandstone); overflow: hidden;
  }
  .audience-inner {
    position: relative; z-index: 2; max-width: 900px; margin: 0 auto; text-align: center;
  }
  .audience-inner .section-label {
    font-size: 0.72rem; font-weight: 600; letter-spacing: 0.3em;
    text-transform: uppercase; color: var(--fieldstone); margin-bottom: 16px;
  }
  .audience-inner h2 {
    font-family: 'Oswald', sans-serif; text-transform: uppercase; font-size: 2.2rem; font-weight: 600;
    color: var(--teal); margin-bottom: 32px;
  }
  .audience-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; text-align: left;
  }
  .audience-item {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 20px 24px; background: rgba(250, 249, 246, 0.5);
    border-radius: 10px; border: 1px solid rgba(138, 133, 120, 0.12);
  }
  .audience-icon {
    width: 36px; height: 36px; flex-shrink: 0;
    background: var(--teal); border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
  }
  .audience-icon svg { width: 18px; height: 18px; color: var(--white); }
  .audience-item p {
    font-size: 0.88rem; line-height: 1.6; color: var(--slate); font-weight: 300;
  }

  /* ── CTA BAND ── */
  .cta-band {
    position: relative; padding: 40px 48px;
    background: var(--teal); text-align: center; overflow: hidden;
  }
  .cta-band .section-content { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
  .cta-band .section-label {
    font-size: 0.72rem; font-weight: 600; letter-spacing: 0.3em;
    text-transform: uppercase; color: rgba(250,249,246,0.45); margin-bottom: 16px;
  }
  .cta-band h2 {
    font-family: 'Oswald', sans-serif; text-transform: uppercase; font-size: 2.4rem; font-weight: 600;
    color: var(--white); margin-bottom: 20px;
  }
  .cta-band p {
    font-size: 1.05rem; line-height: 1.75; color: rgba(250,249,246,0.75);
    font-weight: 300; margin-bottom: 36px;
  }
  .cta-band .btn-primary { background: var(--white); color: var(--teal); }
  .cta-band .btn-primary:hover { background: white; box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
  .cta-band .btn-outline { border-color: rgba(250,249,246,0.35); color: var(--white); }
  .cta-band .btn-outline:hover { background: var(--white); color: var(--teal); border-color: var(--white); }

  /* ── FOOTER ── */
  .footer {
    position: relative; padding: 80px 48px 40px; background: var(--charcoal); overflow: hidden;
  }
  .footer-inner { position: relative; z-index: 2; max-width: 1320px; margin: 0 auto; }
  .footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 60px;
  }
  .footer-brand .logo-text { font-size: 0.9rem; margin-bottom: 16px; color: var(--gravel); }
  .footer-brand .logo-text span { color: var(--gravel); }
  .footer-brand p { font-size: 0.88rem; line-height: 1.7; color: var(--fieldstone); font-weight: 300; max-width: 300px; }
  .footer-col h4 {
    font-size: 0.7rem; font-weight: 600; letter-spacing: 0.25em;
    text-transform: uppercase; color: var(--gravel); margin-bottom: 20px;
  }
  .footer-col p, .footer-col a {
    font-size: 0.88rem; line-height: 2; color: var(--fieldstone);
    text-decoration: none; display: block; font-weight: 300;
  }
  .footer-col a:hover { color: var(--white); }
  .footer-bottom {
    border-top: 1px solid rgba(138,133,120,0.2); padding-top: 24px;
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
  }
  .footer-bottom p { font-size: 0.75rem; color: var(--fieldstone); font-weight: 300; }
  .footer-bottom a { color: var(--fieldstone); text-decoration: none; font-size: 0.75rem; }
  .footer-bottom a:hover { color: var(--gravel); }

  /* ── RESPONSIVE ── */
  @media (max-width: 1024px) {
    .overview-layout, .context-layout { grid-template-columns: 1fr; gap: 48px; }
    .subservices-grid { grid-template-columns: 1fr; }
    .audience-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
  }
  @media (max-width: 768px) {
    .page-hero h1 { font-size: 2.4rem; }
    .page-hero { padding: 140px 24px 72px; }
    .overview-section, .subservices-section, .context-section, .audience-section, .cta-band, .footer {
      padding-left: 24px; padding-right: 24px;
    }
    .header-inner { padding: 0 20px; }
    nav { gap: 20px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  }

  /* ── FOOTER COLOR: Option B Deep Teal ── */
  .footer{background:#1a2f2e !important;}
  .footer-brand .logo-text,.footer-brand .logo-text span{color:#aecdcb !important;}
  .footer-brand p{color:#cbdddb !important;}
  .footer-col h4{color:#aecdcb !important;}
  .footer-col p,.footer-col a{color:#cbdddb !important;}
  .footer-col a:hover{color:#ffffff !important;}
  .footer-bottom p,.footer-bottom a{color:#95b2b0 !important;}
  .footer-bottom a:hover{color:#aecdcb !important;}
  .footer-bottom{border-top-color:rgba(122,158,156,0.15) !important;}

  /* ── OSWALD TYPOGRAPHY REFINEMENTS ── */
  .page-hero h1,.hero h1{font-weight:500 !important;letter-spacing:0.04em !important;}
  .section-title,.overview-title,.story-title,
  .subservices-header h2,.values-header h2,.team-header h2,
  .audience-inner h2,.context-text h2,.cta-band h2,
  .next-inner h2,.form-card h3{font-weight:500 !important;letter-spacing:0.04em !important;}
  .card-number,.stat-num{font-weight:500 !important;letter-spacing:0.02em !important;}
  .sub-card h3{text-transform:none !important;}
  .modal-name{font-weight:500 !important;letter-spacing:0.04em !important;}
  .card-body h3{font-weight:500 !important;letter-spacing:0.03em !important;}

  /* Photo hero - override solid teal */
  .page-hero { background: #1a2e2d !important; }
  /* Photo hero additions */
  .hero-photo {
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  .hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
  }
  .hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to bottom,
      rgba(26, 46, 45, 0.7) 0%,
      rgba(26, 46, 45, 0.5) 40%,
      rgba(26, 46, 45, 0.75) 100%);
  }
  .page-hero .contour-bg { z-index: 2 !important; }
  .page-hero-inner { position: relative; z-index: 3; }


  /* ── MOSAIC ── */
  .mosaic { display: grid; grid-template-columns: 7fr 5fr; }
  .mosaic-main {
    background: var(--teal); padding: 56px 64px;
    display: flex; flex-direction: column; justify-content: center;
    min-height: 520px;
  }
  .mosaic-eyebrow {
    font-size: 0.62rem; font-weight: 700; letter-spacing: 0.3em;
    text-transform: uppercase; color: rgba(250,249,246,0.35); margin-bottom: 20px;
  }
  .mosaic-main h2 {
    font-family: 'Oswald', sans-serif; font-size: 2rem; font-weight: 500;
    color: var(--white); text-transform: uppercase; letter-spacing: 0.04em;
    line-height: 1.15; margin-bottom: 28px;
  }
  .mosaic-main p {
    font-size: 0.97rem; line-height: 1.8; color: rgba(250,249,246,0.82);
    font-weight: 400; margin-bottom: 12px;
  }
  .mosaic-main p:last-child { margin-bottom: 0; }
  .mosaic-bottom {
    background: var(--teal-mid); padding: 52px 48px;
    display: flex; flex-direction: column; justify-content: center;
  }
  .mosaic-bottom-label {
    font-size: 0.62rem; font-weight: 700; letter-spacing: 0.25em;
    text-transform: uppercase; color: rgba(250,249,246,0.35); margin-bottom: 20px;
  }
  .mosaic-insights { display: flex; flex-direction: column; gap: 14px; }
  .mosaic-insight {
    border-left: 2px solid rgba(250,249,246,0.15); padding-left: 16px;
  }
  .mosaic-insight strong {
    display: block; font-size: 0.82rem; font-weight: 700;
    color: rgba(250,249,246,0.95); margin-bottom: 5px; letter-spacing: 0.02em;
  }
  .mosaic-insight p {
    font-size: 0.82rem; line-height: 1.7;
    color: rgba(250,249,246,0.72); font-weight: 400;
    margin-bottom: 0;
  }

  .footer-social { display: flex; gap: 12px; margin-top: 20px; }
  .footer-social a { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 8px; background: rgba(138,133,120,0.15); color: var(--fieldstone); transition: background 0.2s, color 0.2s; }
  .footer-social a:hover { background: rgba(138,133,120,0.3); color: var(--white); }
  .footer-social svg { width: 16px; height: 16px; }

  /* ── MOBILE NAV ── */
  .nav-toggle{display:none;background:none;border:none;cursor:pointer;padding:8px;color:var(--white);}
  .nav-toggle svg{display:block;width:24px;height:24px;stroke:var(--white);stroke-width:2;stroke-linecap:round;}
  .nav-toggle .icon-close{display:none;}
  .nav-toggle.open .icon-open{display:none;}
  .nav-toggle.open .icon-close{display:block;}
  @media(max-width:768px){
    .nav-toggle{display:flex;align-items:center;justify-content:center;z-index:110;}
    nav{
      display:none;position:fixed;top:80px;left:0;right:0;
      background:var(--teal);flex-direction:column;
      padding:16px 0 24px;gap:0;z-index:100;
      border-top:1px solid rgba(255,255,255,0.1);
      box-shadow:0 8px 24px rgba(0,0,0,0.2);
    }
    nav.open{display:flex;}
    nav a{
      padding:14px 24px;font-size:0.95rem;width:100%;
      border-bottom:1px solid rgba(255,255,255,0.07);
    }
    nav a::after{display:none;}
    nav a.cta-link{
      margin:16px 24px 0;width:auto;
      background:var(--white);
      color:var(--teal) !important;
      border:1px solid var(--white);
      text-align:center;border-radius:6px;
    }
  }

/* FOOTER_480_INJECTED */
  @media(max-width:480px){
    .footer-grid{grid-template-columns:1fr;gap:32px;}
    .footer-brand{max-width:100%;}
  }

/* PAGE_MOBILE_INJECTED */
  @media(max-width:768px){
    .mosaic{grid-template-columns:1fr!important;}
    .mosaic-main{padding:40px 24px;min-height:auto;}
    .mosaic-bottom{padding:36px 24px;}
    .contact-layout{grid-template-columns:1fr;gap:40px;}
  }
  @media(max-width:480px){
    .page-hero h1{font-size:2rem;}
    .mosaic-main h2{font-size:1.6rem;}
    .sub-card{padding:20px 16px;}
    .overview-layout,.context-layout{grid-template-columns:1fr;gap:32px;}
  }

  .logo-img{height:36px;width:auto;display:block;}

  @media(max-width:480px){.logo-img{height:28px;max-width:120px;}}

  .nav-overlay{display:none;position:fixed;inset:0;background:rgba(0,0,0,0.5);z-index:99;}
  .nav-overlay.open{display:block;}

  @media(max-width:768px){
    .contour-bg img{opacity:0.5;}
  }


  @media(max-width:768px){
    .why-section,.services-section,.credentials-section,
    .overview-section,.subservices-section,.context-section,
    .audience-section,.story-section,.values-section,
    .team-section,.contact-section,
    .next-section{padding-top:40px !important;padding-bottom:40px !important;}
    .cta-band{padding-top:48px !important;padding-bottom:48px !important;}
  }
  @media(max-width:480px){
    .why-section,.services-section,.credentials-section,
    .overview-section,.subservices-section,.context-section,
    .audience-section,.story-section,.values-section,
    .team-section,.contact-section,
    .next-section{padding-top:32px !important;padding-bottom:32px !important;}
    .cta-band{padding-top:40px !important;padding-bottom:40px !important;}
  }


  /* ── SUBSERVICES ACCORDION ── */
  .subservices-layout{display:grid;grid-template-columns:1fr 1.5fr;gap:80px;align-items:center;}
  .subservices-left .section-label{font-size:0.72rem;font-weight:600;letter-spacing:0.3em;text-transform:uppercase;color:var(--fieldstone);margin-bottom:16px;}
  .subservices-left h2{font-family:'Oswald',sans-serif;text-transform:uppercase;font-size:2rem;font-weight:500;color:var(--teal);letter-spacing:0.04em;line-height:1.2;margin-bottom:20px;}
  .subservices-left p{font-size:0.95rem;line-height:1.8;color:var(--slate);font-weight:300;}
  .sub-accordion{display:flex;flex-direction:column;gap:0;}
  .sub-acc-item{border-bottom:1px solid rgba(138,133,120,0.18);}
  .sub-acc-item:first-child{border-top:1px solid rgba(138,133,120,0.18);}
  .sub-acc-header{width:100%;display:flex;align-items:center;gap:16px;background:none;border:none;cursor:pointer;padding:16px 0;text-align:left;}
  .sub-acc-num{font-family:'Oswald',sans-serif;font-size:0.72rem;font-weight:600;color:var(--teal);opacity:0.4;flex-shrink:0;min-width:20px;letter-spacing:0.04em;}
  .sub-acc-header > span:not(.sub-acc-num){flex:1;font-size:0.9rem;font-weight:600;color:var(--teal);letter-spacing:0.01em;line-height:1.35;}
  .sub-acc-chevron{width:16px;height:16px;flex-shrink:0;stroke:var(--gravel);transition:transform 0.25s ease;}
  .sub-acc-item.sub-open .sub-acc-chevron{transform:rotate(180deg);}
  .sub-acc-item.sub-open .sub-acc-num{opacity:1;}
  .sub-acc-body{overflow:hidden;max-height:0;transition:max-height 0.3s ease,padding 0.3s ease;padding:0 0 0 38px;}
  .sub-acc-item.sub-open .sub-acc-body{max-height:300px;padding:0 0 16px 38px;}
  .sub-acc-body p{font-size:0.85rem;line-height:1.75;color:var(--slate);font-weight:300;margin:0;}
  @media(max-width:1024px){.subservices-layout{grid-template-columns:1fr;gap:40px;}}
  @media(max-width:768px){.subservices-layout{grid-template-columns:1fr;gap:32px;}}

/* In-text reference links (regulations and external sources) */
.overview-text a, .mosaic-main a, .mosaic-insight a, .sub-acc-body a {
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
  transition: color 0.15s ease;
}
/* Links on light backgrounds */
.overview-text a, .sub-acc-body a { color: var(--teal); }
.overview-text a:hover, .sub-acc-body a:hover { color: var(--teal-mid); }
/* Links on the dark teal mosaic panels */
.mosaic-main a, .mosaic-insight a { color: var(--white); }
.mosaic-main a:hover, .mosaic-insight a:hover { color: rgba(250,249,246,0.75); }

/* Related services cross-links */
.related-services { position: relative; overflow: hidden; background: var(--white); padding: 64px 48px; }
.related-services .contour-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.related-services .contour-bg img { width: 100%; height: 100%; object-fit: cover; display: block; opacity: 0.5; }
.related-inner { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; }
.related-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--teal); margin-bottom: 28px; text-align: center; }
.related-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.related-links .svc-tile { position: relative; overflow: hidden; aspect-ratio: 3/2; text-decoration: none; display: block; border-radius: 12px; }
.related-links .svc-tile-bg { position: absolute; inset: 0; transition: transform 0.5s ease; overflow: hidden; }
.related-links .svc-tile-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; transition: transform 0.5s ease; }
.related-links .svc-tile:hover .svc-tile-bg img { transform: scale(1.06); }
.related-links .svc-tile-bg::after { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.08); }
.related-links .svc-tile-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(17,40,39,0.82) 0%, rgba(17,40,39,0.18) 55%, rgba(17,40,39,0.05) 100%); transition: background 0.35s ease; }
.related-links .svc-tile:hover .svc-tile-overlay { background: linear-gradient(to top, rgba(17,40,39,0.92) 0%, rgba(17,40,39,0.38) 55%, rgba(17,40,39,0.12) 100%); }
.related-links .svc-tile-icon { position: absolute; top: 22px; left: 22px; width: 36px; height: 36px; opacity: 0.55; transition: opacity 0.3s; }
.related-links .svc-tile:hover .svc-tile-icon { opacity: 0.9; }
.related-links .svc-tile-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px 22px 22px; }
.related-links .svc-tile h3 { font-family: 'Oswald', sans-serif; text-transform: uppercase; font-size: 0.95rem; font-weight: 500; letter-spacing: 0.1em; color: #fff; line-height: 1.25; margin-bottom: 0; transition: margin-bottom 0.3s ease; }
.related-links .svc-tile:hover h3 { margin-bottom: 10px; }
.related-links .svc-tile-arrow { display: flex; align-items: center; gap: 6px; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.8); max-height: 0; overflow: hidden; opacity: 0; transition: max-height 0.35s ease, opacity 0.3s ease 0.05s; }
.related-links .svc-tile:hover .svc-tile-arrow { max-height: 30px; opacity: 1; }
.related-links .svc-tile-arrow svg { width: 12px; height: 12px; transition: transform 0.25s; }
.related-links .svc-tile:hover .svc-tile-arrow svg { transform: translateX(3px); }
@media(max-width:900px){ .related-links{ grid-template-columns: 1fr; } }
@media(max-width:768px){
  .related-services{ padding: 48px 24px; }
  .related-links .svc-tile-arrow{ max-height: 30px; opacity: 1; }
  .related-links .svc-tile h3{ margin-bottom: 8px; }
}



/* Keyboard focus visibility (accessibility) */
a:focus-visible, button:focus-visible, .btn:focus-visible,
input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}
header nav a:focus-visible, .cta-link:focus-visible, .nav-toggle:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 4px;
}
