/* GO Executive Advisory — shared stylesheet */
/* Extracted verbatim from index_4June2026.html (the live site) so all pages share one source of styling. */

    :root {
      --navy:       #013d75;
      --azure:      #02729f;
      --teal:       #018db3;
      --mid-teal:   #006097;
      --cyan:       #35c9d9;
      --dark:       #373643;
      --white:      #ffffff;
      --off-white:  #f4f7fa;
      --light-grey: #e8eef4;
    }

    /* ── SKIP LINK ── */
    .skip-link {
      position: absolute;
      top: -100%;
      left: 1rem;
      background: var(--cyan);
      color: var(--navy);
      padding: 0.6rem 1.2rem;
      font-size: 0.85rem;
      font-weight: 600;
      text-decoration: none;
      border-radius: 2px;
      z-index: 9999;
      transition: top 0.2s;
    }
    .skip-link:focus { top: 1rem; }

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

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Barlow', sans-serif;
      color: var(--dark);
      background: var(--white);
      overflow-x: hidden;
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.2rem 4rem;
      background: rgba(1, 61, 117, 0.96);
      backdrop-filter: blur(8px);
    }

    .nav-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.15rem;
      font-weight: 600;
      color: var(--white);
      letter-spacing: 0.08em;
      text-transform: uppercase;
      text-decoration: none;
    }
    .nav-logo:focus { outline: 2px solid var(--cyan); outline-offset: 4px; }

    .nav-logo span { color: var(--cyan); }

    .nav-links {
      display: flex;
      gap: 2.5rem;
      list-style: none;
    }

    .nav-links a {
      color: rgba(255,255,255,0.8);
      text-decoration: none;
      font-size: 0.8rem;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      transition: color 0.2s;
    }
    .nav-links a:hover,
    .nav-links a:focus { color: var(--cyan); outline: 2px solid var(--cyan); outline-offset: 4px; }

    /* ── HERO ── */
    #home {
      min-height: 100vh;
      background: var(--navy);
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      padding: 8rem 4rem 4rem;
    }

    .hero-geo {
      position: absolute;
      top: 0; left: 0;
      width: 45%;
      height: 100%;
      pointer-events: none;
    }

    .hero-geo::before {
      content: '';
      position: absolute;
      top: -10%; left: -8%;
      width: 80%; height: 70%;
      background: var(--azure);
      transform: rotate(-18deg) skewY(-6deg);
      opacity: 0.35;
    }

    .hero-geo::after {
      content: '';
      position: absolute;
      top: 25%; left: 5%;
      width: 60%; height: 55%;
      background: var(--cyan);
      transform: rotate(-18deg) skewY(-6deg);
      opacity: 0.18;
    }

    .hero-geo-accent {
      position: absolute;
      bottom: 10%; left: 3%;
      width: 40%; height: 35%;
      background: var(--teal);
      transform: rotate(-18deg) skewY(-6deg);
      opacity: 0.25;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 680px;
      margin-left: auto;
      animation: fadeUp 0.9s ease both;
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(30px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
      }
    }

    .hero-eyebrow {
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--cyan);
      margin-bottom: 1.2rem;
    }

    .hero-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.8rem, 5vw, 4.4rem);
      font-weight: 300;
      line-height: 1.1;
      color: var(--white);
      margin-bottom: 1.5rem;
    }

    .hero-title strong {
      font-weight: 600;
      color: var(--cyan);
    }

    .hero-sub {
      font-size: 1.05rem;
      font-weight: 300;
      line-height: 1.7;
      color: rgba(255,255,255,0.75);
      margin-bottom: 2.5rem;
      max-width: 520px;
    }

    .hero-tagline {
      display: flex;
      gap: 1.5rem;
      margin-bottom: 2.5rem;
    }

    .hero-tagline span {
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--cyan);
      opacity: 0.8;
    }

    .hero-tagline span::before {
      content: '— ';
      opacity: 0.5;
    }

    .btn {
      display: inline-block;
      padding: 0.85rem 2.2rem;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      text-decoration: none;
      border-radius: 2px;
      transition: all 0.25s;
    }
    .btn:focus { outline: 2px solid var(--cyan); outline-offset: 4px; }

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

    .btn-primary:hover {
      background: var(--white);
      color: var(--navy);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(53,201,217,0.3);
    }

    .btn-outline {
      border: 1.5px solid rgba(255,255,255,0.4);
      color: var(--white);
      margin-left: 1rem;
    }

    .btn-outline:hover {
      border-color: var(--cyan);
      color: var(--cyan);
      transform: translateY(-2px);
    }

    /* ── STATS BAND ── */
    .stats-band {
      background: var(--azure);
      padding: 2rem 4rem;
    }

    .stats-band-inner {
      max-width: 1100px;
      margin: 0 auto;
    }

    .stats-eyebrow {
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.55);
      margin-bottom: 1.2rem;
      text-align: center;
    }

    .stats-items {
      display: flex;
      justify-content: center;
      gap: 0;
    }

    .stat-item {
      text-align: center;
      padding: 0 3.5rem;
      border-right: 1px solid rgba(255,255,255,0.2);
    }

    .stat-item:last-child { border-right: none; }

    .stat-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.4rem;
      font-weight: 600;
      color: var(--white);
      line-height: 1;
    }

    .stat-label {
      font-size: 0.72rem;
      font-weight: 400;
      letter-spacing: 0.08em;
      color: rgba(255,255,255,0.75);
      margin-top: 0.4rem;
      text-transform: uppercase;
    }

    /* ── SECTIONS ── */
    section { padding: 6rem 4rem; }

    .section-inner {
      max-width: 1100px;
      margin: 0 auto;
    }

    .section-label {
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--teal);
      margin-bottom: 0.8rem;
    }

    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2rem, 3.5vw, 3rem);
      font-weight: 400;
      color: var(--navy);
      line-height: 1.2;
      margin-bottom: 1.5rem;
    }

    .section-title strong { font-weight: 600; }

    .divider {
      width: 48px;
      height: 3px;
      background: var(--cyan);
      margin-bottom: 2rem;
    }

    /* ── ABOUT ── */
    #about { background: var(--off-white); }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: start;
    }

    .about-text p {
      font-size: 1rem;
      line-height: 1.8;
      color: var(--dark);
      margin-bottom: 1.2rem;
      font-weight: 300;
    }

    .about-text p strong {
      color: var(--navy);
      font-weight: 500;
    }

    .credentials {
      margin-top: 2rem;
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
    }

    .credential {
      font-size: 0.82rem;
      color: var(--azure);
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }

    .credential::before {
      content: '';
      width: 20px;
      height: 2px;
      background: var(--cyan);
      flex-shrink: 0;
    }

    /* Right column pushed down to align with cyan divider bar on left column */
    .about-experience {
      display: flex;
      flex-direction: column;
      gap: 0;
      align-self: start;
      padding-top: 19.5rem;
    }

    .exp-item {
      padding: 1.2rem 0;
      border-bottom: 1px solid var(--light-grey);
    }

    .exp-org {
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--navy);
      margin-bottom: 0.25rem;
    }

    .exp-role {
      font-size: 0.92rem;
      font-weight: 300;
      color: var(--dark);
    }

    /* ── SERVICES ── */
    #services { background: var(--white); }

    .services-intro {
      margin-bottom: 3.5rem;
    }

    .services-intro p {
      font-size: 1rem;
      line-height: 1.8;
      color: var(--dark);
      font-weight: 300;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5px;
      background: var(--light-grey);
    }

    .service-card {
      background: var(--white);
      padding: 2.2rem;
      transition: all 0.3s;
      position: relative;
      overflow: hidden;
    }

    .service-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 3px; height: 0;
      background: var(--cyan);
      transition: height 0.3s;
    }

    .service-card:hover { background: var(--navy); }
    .service-card:hover::before { height: 100%; }

    .service-card:hover .service-title,
    .service-card:hover .service-desc { color: var(--white); }

    .service-card:hover .service-num { color: var(--cyan); }

    .service-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.5rem;
      font-weight: 300;
      color: var(--light-grey);
      line-height: 1;
      margin-bottom: 1rem;
      transition: color 0.3s;
    }

    .service-title {
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--navy);
      margin-bottom: 0.8rem;
      transition: color 0.3s;
    }

    .service-desc {
      font-size: 0.88rem;
      line-height: 1.7;
      color: #555;
      font-weight: 300;
      transition: color 0.3s;
    }

    /* ── FIND SERVICES engage sub-section ── */
    .fs-engage {
      margin-top: 2.5rem;
      padding-top: 2rem;
      border-top: 1px solid var(--light-grey);
    }

    .fs-engage-label {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--navy);
      margin-bottom: 1rem;
    }

    .fs-engage-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 0.6rem 2.5rem;
    }

    .fs-engage-list li {
      font-size: 0.88rem;
      font-weight: 300;
      color: #444;
      line-height: 1.6;
      padding-left: 1rem;
      position: relative;
    }

    .fs-engage-list li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0.55em;
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--cyan);
    }

    @media (max-width: 700px) {
      .fs-engage-list { grid-template-columns: 1fr; }
    }

    /* ── ENGAGE OPTIONS ── */
    .engage-options {
      margin-top: 3rem;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
    }

    .engage-option {
      padding: 1.5rem;
      border: 1.5px solid var(--light-grey);
      border-radius: 2px;
      background: var(--white);
    }

    .engage-option h3 {
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--azure);
      margin-bottom: 0.6rem;
    }

    .engage-option p {
      font-size: 0.85rem;
      color: #555;
      font-weight: 300;
      line-height: 1.6;
    }

    /* ── ENGAGE CREDENTIALS ── */
    .engage-credentials {
      margin-top: 2rem;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .engage-credential-item {
      display: flex;
      align-items: baseline;
      gap: 1rem;
      font-size: 0.82rem;
      font-weight: 300;
      line-height: 1.6;
    }

    .engage-credential-label {
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--azure);
      white-space: nowrap;
      flex-shrink: 0;
      min-width: 130px;
    }

    .engage-credential-text {
      color: #555;
    }

    /* ── CONTACT ── */
    #contact { background: var(--off-white); }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: start;
    }

    .contact-left p {
      font-size: 1rem;
      line-height: 1.8;
      color: var(--dark);
      font-weight: 300;
      margin-bottom: 2rem;
    }

    .contact-details {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .contact-item {
      display: flex;
      align-items: center;
      gap: 1rem;
      font-size: 0.92rem;
      color: var(--dark);
    }

    .contact-icon {
      width: 36px; height: 36px;
      background: var(--navy);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .contact-icon svg {
      width: 16px; height: 16px;
      fill: var(--cyan);
    }

    .contact-item a {
      color: var(--azure);
      text-decoration: none;
      font-weight: 500;
    }

    .contact-item a:hover,
    .contact-item a:focus { color: var(--navy); }

    .contact-right {
      background: var(--white);
      padding: 2.5rem;
      border-top: 3px solid var(--cyan);
    }

    .contact-right h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem;
      font-weight: 400;
      color: var(--navy);
      margin-bottom: 0.5rem;
    }

    .contact-right > p {
      font-size: 0.88rem;
      color: #666;
      margin-bottom: 1.8rem;
      font-weight: 300;
    }

    .form-group { margin-bottom: 1.2rem; }

    .form-group label {
      display: block;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--navy);
      margin-bottom: 0.4rem;
    }

    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 0.75rem 1rem;
      border: 1.5px solid var(--light-grey);
      background: var(--off-white);
      font-family: 'Barlow', sans-serif;
      outline: none;
      transition: border-color 0.2s;
      border-radius: 2px;
    }

    .form-group input:focus,
    .form-group textarea:focus {
      border-color: var(--teal);
      box-shadow: 0 0 0 3px rgba(1,141,179,0.15);
    }

    .form-group textarea { resize: vertical; min-height: 100px; }

    .form-submit {
      width: 100%;
      padding: 0.9rem;
      background: var(--navy);
      color: var(--white);
      border: none;
      font-family: 'Barlow', sans-serif;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      cursor: pointer;
      transition: all 0.25s;
      border-radius: 2px;
    }

    .form-submit:hover { background: var(--teal); transform: translateY(-1px); }
    .form-submit:focus { outline: 2px solid var(--cyan); outline-offset: 3px; }

    .form-success {
      display: none;
      background: #e6f7f9;
      border-left: 3px solid var(--cyan);
      padding: 1rem 1.2rem;
      margin-bottom: 1.5rem;
      font-size: 0.9rem;
      color: var(--navy);
      border-radius: 2px;
    }

    .services-note {
      margin-top: 2rem;
      font-size: 0.88rem;
      font-weight: 300;
      color: #555;
      line-height: 1.7;
    }

    /* ── FIND SERVICES ── */
    #find-services { background: var(--off-white); }

    .find-services-intro {
      margin-bottom: 2.8rem;
    }

    .find-services-intro p {
      font-size: 1rem;
      line-height: 1.8;
      color: var(--dark);
      font-weight: 300;
    }

    .fs-tabs {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      border-bottom: none;
      margin-bottom: 2.5rem;
      row-gap: 0;
    }

    .fs-tab {
      padding: 0.75rem 0.8rem;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #666;
      background: none;
      border: none;
      border-bottom: 2px solid var(--light-grey);
      cursor: pointer;
      transition: all 0.2s;
      text-align: center;
    }

    .fs-tab:hover { color: var(--azure); }

    .fs-tab.active {
      color: var(--navy);
      border-bottom-color: var(--cyan);
    }

    .fs-tab:focus {
      outline: 2px solid var(--cyan);
      outline-offset: 2px;
    }
    .fs-panel { display: none; }
    .fs-panel.active { display: block; }

    .fs-context {
      margin-bottom: 2rem;
    }

    .fs-context p {
      font-size: 0.95rem;
      line-height: 1.8;
      color: var(--dark);
      font-weight: 300;
    }

    .fs-panel-inner {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5px;
      background: var(--light-grey);
    }

    .fs-service {
      background: var(--white);
      padding: 1.8rem 2rem;
    }

    .fs-service-title {
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--navy);
      margin-bottom: 0.6rem;
    }

    .fs-service-desc {
      font-size: 0.88rem;
      line-height: 1.7;
      color: #555;
      font-weight: 300;
    }

    @media (max-width: 900px) {
      .fs-panel-inner { grid-template-columns: 1fr; }
      .fs-tab { padding: 0.65rem 1rem; font-size: 0.7rem; }
    }

    /* ── CLIENTS GRID ── */
    .clients-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      margin-top: 1rem;
    }

    .client-card {
      background: var(--white);
      padding: 2rem 1.5rem;
      text-align: center;
    }

    .client-card-icon {
      font-size: 2rem;
      margin-bottom: 0.8rem;
    }

    .client-card-title {
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--navy);
      margin-bottom: 0.5rem;
    }

    .client-card-desc {
      font-size: 0.82rem;
      color: #555;
      font-weight: 300;
      line-height: 1.6;
    }

    /* ── FOOTER ── */
    footer {
      background: var(--dark);
      padding: 2rem 4rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .footer-brand {
      font-family: 'Cormorant Garamond', serif;
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--white);
      letter-spacing: 0.06em;
    }

    .footer-brand span { color: var(--cyan); }

    .footer-copy {
      font-size: 0.75rem;
      color: rgba(255,255,255,0.75);
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      nav { padding: 1rem 2rem; }
      .nav-links { gap: 1.5rem; }
      section { padding: 4rem 2rem; }
      #home { padding: 7rem 2rem 4rem; }
      .about-grid,
      .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
      .about-experience { padding-top: 0; }
      .services-grid { grid-template-columns: 1fr 1fr; }
      .clients-grid { grid-template-columns: repeat(2, 1fr); }
      .stats-band { padding: 1.5rem 2rem; }
      .stats-items { flex-wrap: wrap; gap: 1.5rem; }
      .stat-item { border-right: none; }
      footer { flex-direction: column; gap: 1rem; text-align: center; }
      .fs-tabs { grid-template-columns: repeat(3, 1fr); }
      .fs-tab { font-size: 0.68rem; padding: 0.65rem 0.5rem; }
    }

    /* Touch devices — make service cards always show navy style since hover doesn't work */
    @media (hover: none) {
      .service-card {
        background: var(--navy);
      }
      .service-card::before {
        height: 100%;
      }
      .service-card .service-title,
      .service-card .service-desc {
        color: var(--white);
      }
      .service-card .service-num {
        color: var(--cyan);
      }
    }

    @media (max-width: 600px) {
      .nav-links { display: none; }
      .services-grid { grid-template-columns: 1fr; }
      .clients-grid { grid-template-columns: 1fr; }
      .engage-options { grid-template-columns: 1fr; }
      .hero-tagline { flex-wrap: wrap; gap: 0.8rem; }
      .fs-tabs { grid-template-columns: repeat(2, 1fr); }
      .fs-tab { font-size: 0.65rem; padding: 0.6rem 0.4rem; }
    }


    /* ── INSIGHTS LANDING PAGE ── */
    .insights-hero {
      background: var(--navy);
      padding: 9rem 4rem 4rem;
      position: relative;
      overflow: hidden;
    }

    .insights-hero .hero-geo { width: 40%; }

    .insights-hero-content {
      position: relative;
      z-index: 2;
      max-width: 700px;
    }

    .insights-hero .hero-eyebrow { color: var(--cyan); }

    .insights-hero .hero-title {
      font-size: clamp(2.2rem, 4vw, 3.2rem);
    }

    .insights-hero .hero-sub {
      max-width: 600px;
      margin-bottom: 0;
    }

    .insights-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
      margin-top: 1rem;
    }

    .insight-card {
      background: var(--white);
      border: 1px solid var(--light-grey);
      border-top: 3px solid var(--cyan);
      padding: 2.2rem;
      display: flex;
      flex-direction: column;
      transition: all 0.25s;
      text-decoration: none;
    }

    .insight-card:hover {
      box-shadow: 0 12px 32px rgba(1,61,117,0.12);
      transform: translateY(-3px);
    }

    .insight-card:focus-visible {
      outline: 2px solid var(--cyan);
      outline-offset: 3px;
    }

    .insight-card-meta {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--teal);
      margin-bottom: 0.9rem;
    }

    .insight-card-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem;
      font-weight: 600;
      color: var(--navy);
      line-height: 1.25;
      margin-bottom: 0.9rem;
    }

    .insight-card-excerpt {
      font-size: 0.9rem;
      line-height: 1.7;
      color: var(--dark);
      font-weight: 300;
      margin-bottom: 1.4rem;
      flex-grow: 1;
    }

    .insight-card-link {
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--azure);
    }

    .insight-card:hover .insight-card-link { color: var(--teal); }

    .insights-note {
      margin-top: 3rem;
      font-size: 0.88rem;
      color: #666;
      font-weight: 300;
      max-width: 700px;
    }

    /* ── ARTICLE PAGE ── */
    .article-header {
      background: var(--navy);
      padding: 9rem 4rem 4rem;
      position: relative;
      overflow: hidden;
    }

    .article-header .hero-geo { width: 40%; }

    .article-header-inner {
      position: relative;
      z-index: 2;
      max-width: 780px;
      margin: 0 auto;
    }

    .article-eyebrow {
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--cyan);
      margin-bottom: 1.2rem;
    }

    .article-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2rem, 4vw, 2.9rem);
      font-weight: 400;
      line-height: 1.2;
      color: var(--white);
      margin-bottom: 1.4rem;
    }

    .article-meta {
      font-size: 0.85rem;
      color: rgba(255,255,255,0.7);
      font-weight: 300;
    }

    .article-meta span + span::before {
      content: '—';
      margin: 0 0.6rem;
      opacity: 0.5;
    }

    .article-body {
      max-width: 720px;
      margin: 0 auto;
      padding: 5rem 4rem;
    }

    .article-lede {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.35rem;
      font-weight: 600;
      color: var(--navy);
      line-height: 1.5;
      margin-bottom: 2.2rem;
    }

    .article-body h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem;
      font-weight: 600;
      color: var(--navy);
      margin: 2.6rem 0 1.1rem;
      line-height: 1.3;
    }

    .article-body p {
      font-size: 1rem;
      line-height: 1.85;
      color: var(--dark);
      font-weight: 300;
      margin-bottom: 1.3rem;
    }

    .article-body a {
      color: var(--azure);
      text-decoration: underline;
    }

    .article-body a:hover { color: var(--teal); }

    .article-footer {
      border-top: 1px solid var(--light-grey);
      margin-top: 3rem;
      padding-top: 2.2rem;
    }

    .article-cta {
      background: var(--off-white);
      border-left: 3px solid var(--cyan);
      padding: 1.6rem 2rem;
      margin-top: 2.5rem;
    }

    .article-cta p {
      font-size: 0.92rem;
      color: var(--dark);
      font-weight: 300;
      margin-bottom: 1rem;
    }

    .article-back {
      display: inline-block;
      margin-bottom: 2rem;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--azure);
      text-decoration: none;
    }

    .article-back:hover { color: var(--teal); }

    @media (max-width: 900px) {
      .insights-grid { grid-template-columns: 1fr; }
      .insights-hero, .article-header { padding: 7rem 2rem 3rem; }
      .article-body { padding: 3.5rem 2rem; }
    }
