
  :root {
    --blue: #0072CE;
    --blue-deep: #003D7A;
    --red: #C8102E;
    --gold: #F2B705;
    --ink: #1A1A1A;
    --paper: #FAF9F6;
    --slate: #5B6472;
    --line: #E4E0D8;
  }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Public Sans', sans-serif;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
  }
  h1, h2, h3 { font-family: 'Fraunces', serif; font-weight: 600; letter-spacing: -0.01em; }
  a { color: inherit; text-decoration: none; }
  img { max-width: 100%; display: block; }
  .wrap { max-width: 1120px; margin: 0 auto; padding: 0 32px; }

  header {
    background: var(--blue-deep);
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 20;
  }
  .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 32px;
    max-width: 1120px;
    margin: 0 auto;
    gap: 16px;
  }
  .nav-brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
  .nav-brand img { width: 40px; height: 40px; }
  .nav-brand span { font-family: 'Fraunces', serif; font-weight: 600; font-size: 17px; }
  .nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 6px 20px;
    font-size: 13.5px;
    font-weight: 500;
  }
  .nav-links a { opacity: 0.88; transition: opacity 0.15s, color 0.15s; white-space: nowrap; }
  .nav-links a:hover { opacity: 1; color: var(--gold); }

  .hero {
    color: #fff;
    position: relative;
    overflow: hidden;
    min-height: 520px;
  }
  .hero-slideshow { position: absolute; inset: 0; z-index: 0; }
  .hero-slide {
    position: absolute; inset: 0;
    background: center / cover no-repeat var(--bg);
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 1.4s ease, transform 8s ease;
  }
  .hero-slide.is-active { opacity: 1; transform: scale(1); }
  .hero-scrim {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(155deg, rgba(0, 114, 206, 0.88) 0%, rgba(0, 61, 122, 0.92) 78%);
  }
  .hero-inner {
    position: relative; z-index: 2;
    max-width: 1120px;
    margin: 0 auto;
    padding: 72px 32px 88px;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: center;
  }
  .hero-eyebrow { font-size: 14.5px; font-weight: 600; color: var(--gold); margin-bottom: 18px; }
  .hero h1 { font-size: clamp(34px, 5vw, 54px); line-height: 1.05; max-width: 14ch; }
  .hero-lead {
    margin-top: 22px;
    font-size: 17px;
    color: rgba(255,255,255,0.88);
    max-width: 48ch;
  }
  .hero-actions { margin-top: 30px; display: flex; gap: 14px; flex-wrap: wrap; }
  .btn {
    display: inline-block;
    padding: 13px 26px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 3px;
    transition: background 0.15s;
  }
  .btn-primary { background: var(--red); color: #fff; }
  .btn-primary:hover { background: #a80d25; }
  .btn-ghost { border: 1.5px solid rgba(255,255,255,0.5); color: #fff; }
  .btn-ghost:hover { border-color: #fff; }
  .hero-seal { display: flex; justify-content: center; }
  .hero-seal img { width: 240px; filter: drop-shadow(0 20px 40px rgba(0,0,0,0.35)); }
  .hero-dots {
    position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
    z-index: 3; display: flex; gap: 6px;
  }
  .hero-dot {
    width: 7px; height: 7px; border: 0; border-radius: 50%; padding: 0;
    background: rgba(255,255,255,0.35); cursor: pointer;
  }
  .hero-dot.is-active { background: var(--gold); }

  .ribbon { background: var(--red); color: #fff; }
  .ribbon-inner {
    max-width: 1120px; margin: 0 auto; padding: 22px 32px;
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  }
  .ribbon-item { display: flex; align-items: baseline; gap: 10px; font-size: 14px; }
  .ribbon-item strong { font-family: 'Fraunces', serif; font-size: 17px; font-weight: 600; }
  .ribbon-item span { color: rgba(255,255,255,0.78); }

  section { padding: 84px 0; }
  .section-alt { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .section-head { max-width: 640px; margin-bottom: 48px; }
  .section-head .kicker { color: var(--red); font-weight: 600; font-size: 14.5px; margin-bottom: 12px; }
  .section-head h2 { font-size: clamp(28px, 3.2vw, 36px); }
  .section-head p, .section-intro { margin-top: 14px; color: var(--slate); font-size: 16.5px; max-width: 640px; }

  .prose { color: var(--slate); font-size: 16px; }
  .prose.two-col { columns: 2; column-gap: 40px; }
  .prose p { margin-bottom: 1rem; break-inside: avoid; }
  .prose strong { color: var(--ink); font-weight: 600; }

  .card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
  }
  .card {
    background: #fff;
    border: 1px solid var(--line);
    padding: 28px;
    border-radius: 3px;
  }
  .section-alt .card { background: var(--paper); }
  .card h3 { font-size: 18px; color: var(--blue-deep); margin-bottom: 10px; }
  .card p, .card li { font-size: 15px; color: var(--slate); }
  .card ul { margin: 0; padding-left: 1.1rem; }
  .card li + li { margin-top: 0.35rem; }

  .territory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 28px;
  }
  .territory {
    background: #fff;
    border-left: 4px solid var(--red);
    padding: 24px 28px;
    border-radius: 0 3px 3px 0;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  }
  .section-alt .territory { background: var(--paper); }
  .territory h3 { font-size: 19px; color: var(--blue-deep); margin-bottom: 6px; }
  .territory-meta { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gold); margin-bottom: 10px; }
  .territory p { font-size: 15px; color: var(--slate); }

  .note-box {
    padding: 24px 28px;
    border-radius: 3px;
    border: 1px solid rgba(0, 114, 206, 0.2);
    border-left: 4px solid var(--blue);
    background: rgba(0, 114, 206, 0.05);
  }
  .note-box h3 { font-size: 18px; color: var(--blue-deep); margin-bottom: 8px; }
  .note-box p { color: var(--slate); font-size: 15px; margin: 0; }

  .highlight-band {
    margin-top: 32px;
    padding: 28px 32px;
    border-radius: 3px;
    background: var(--blue-deep);
    color: #fff;
  }
  .highlight-band h3 { font-size: 18px; color: var(--gold); margin-bottom: 12px; }
  .highlight-band ul { margin: 0; padding-left: 1.1rem; font-size: 15px; color: rgba(255,255,255,0.9); }
  .highlight-band li + li { margin-top: 0.4rem; }

  .potential-list { display: grid; gap: 0; }
  .potential-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid var(--line);
  }
  .potential-item:last-child { border-bottom: 0; }
  .potential-num {
    font-family: 'Fraunces', serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
  }
  .potential-item h3 { font-size: 19px; color: var(--blue-deep); margin-bottom: 6px; }
  .potential-item p { margin: 0; font-size: 15px; color: var(--slate); }

  .services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
  }
  .service { background: var(--paper); padding: 36px 30px; }
  a.service { color: inherit; text-decoration: none; display: block; }
  a.service:hover { background: #fff; }
  a.service:hover h3 { color: var(--blue); }
  .service .num { font-family: 'Fraunces', serif; font-size: 15px; color: var(--blue); font-weight: 600; margin-bottom: 18px; }
  .service h3 { font-size: 20px; margin-bottom: 10px; }
  .service p { color: var(--slate); font-size: 15px; }

  .stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: left;
  }
  .stat .figure {
    font-family: 'Fraunces', serif;
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 600;
    color: var(--blue-deep);
  }
  .stat .label { color: var(--slate); font-size: 14.5px; margin-top: 6px; }

  footer {
    background: var(--blue-deep);
    color: rgba(255,255,255,0.85);
    padding: 56px 0 32px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
  }
  .footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
  .footer-brand img { width: 34px; height: 34px; }
  .footer-brand span { font-family: 'Fraunces', serif; font-weight: 600; color: #fff; font-size: 15.5px; }
  footer p { font-size: 14px; color: rgba(255,255,255,0.65); max-width: 34ch; }
  footer h4 { font-size: 13.5px; color: #fff; font-weight: 600; margin-bottom: 14px; }
  footer ul { list-style: none; }
  footer li { margin-bottom: 10px; font-size: 14px; }
  footer li a:hover { color: #fff; }
  .footer-bottom {
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    flex-wrap: wrap;
    gap: 10px;
  }

  @media (max-width: 860px) {
    .hero-inner { grid-template-columns: 1fr; padding-top: 48px; padding-bottom: 72px; }
    .hero-seal { order: -1; }
    .hero-seal img { width: 150px; }
    .services { grid-template-columns: 1fr; }
    .stats { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .nav-links { display: none; }
    .prose.two-col { columns: 1; }
  }

  :focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
  @media (prefers-reduced-motion: reduce) {
    * { transition: none !important; }
    .hero-slide { transform: none; }
  }

  /* News covers: complete photograph left of title/summary (never a cropped banner). */
  body .card-grid.news-list,
  .section-alt .card-grid.news-list,
  .collection .card-grid.news-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  body .card-grid.news-list .news-card,
  .section-alt .card-grid.news-list .news-card,
  .collection .card-grid.news-list .news-card {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 24px;
    padding: 24px;
  }
  body .card-grid.news-list .news-cover,
  .section-alt .card-grid.news-list .news-cover,
  .collection .card-grid.news-list .news-cover,
  body .card-grid.news-list a.news-cover {
    display: block;
    flex: 0 0 260px;
    width: 260px;
    max-width: 38%;
    align-self: flex-start;
  }
  body .card-grid.news-list .news-cover .news-image,
  body .card-grid.news-list a.news-cover img.news-image,
  body .card-grid.news-list a.news-cover img,
  .section-alt .card-grid.news-list .news-cover .news-image,
  .collection .card-grid.news-list .news-cover .news-image {
    display: block;
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    object-position: top center;
    margin: 0;
    border-radius: 6px;
  }
  body .card-grid.news-list .news-copy,
  .section-alt .card-grid.news-list .news-copy {
    flex: 1;
    min-width: 0;
    overflow-wrap: anywhere;
  }
  body .card-grid.news-list .news-card h3 {
    font-size: 23px;
    line-height: 1.35;
    margin-bottom: 12px;
  }
  body .card-grid.news-list .news-copy > p:not(.kicker) {
    font-size: 16px;
    line-height: 1.75;
  }
  @media (max-width: 700px) {
    body .card-grid.news-list .news-card,
    .section-alt .card-grid.news-list .news-card,
    .collection .card-grid.news-list .news-card {
      flex-direction: column;
      gap: 16px;
    }
    body .card-grid.news-list .news-cover,
    .section-alt .card-grid.news-list .news-cover,
    .collection .card-grid.news-list .news-cover,
    body .card-grid.news-list a.news-cover {
      flex: none;
      width: 100%;
      max-width: none;
    }
    body .card-grid.news-list .news-cover .news-image,
    body .card-grid.news-list a.news-cover img.news-image,
    body .card-grid.news-list a.news-cover img {
      width: 100%;
      height: auto;
      max-height: none;
      object-fit: contain;
    }
  }
  .article-body {
    max-width: 42rem;
  }
  body .article-body img.article-image,
  article.article-body .article-image,
  .article-body .article-image {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    object-position: top center;
    margin: 28px 0;
    border-radius: 8px;
  }
  .article-content h2,
  .article-content h3 {
    font-family: Fraunces, Georgia, serif;
    font-weight: 600;
    letter-spacing: -0.01em;
  }
  .article-content video {
    border-radius: 8px;
  }
  .visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  .article-content figure:has(.mg-player) {
    margin: 28px 0 36px;
  }
  .article-content figure .mg-player {
    margin: 0;
  }
  .mg-player {
    position: relative;
    min-height: 160px;
    margin: 28px 0 36px;
    background: #041526;
    border-radius: 14px;
    overflow: hidden;
    isolation: isolate;
    box-shadow: 0 18px 40px rgba(0, 61, 122, 0.22), 0 0 0 1px rgba(242, 183, 5, 0.28);
    outline: none;
  }
  .mg-player:focus-visible {
    box-shadow: 0 18px 40px rgba(0, 61, 122, 0.22), 0 0 0 3px #F2B705;
  }
  .mg-player-media {
    display: block;
    width: 100%;
    height: auto;
    max-height: min(70vh, 640px);
    margin: 0;
    background: #000;
    border-radius: 0 !important;
    cursor: pointer;
  }
  .mg-player-scrim {
    pointer-events: none;
    z-index: 1;
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, rgba(0, 61, 122, 0.55) 0%, transparent 28%),
      linear-gradient(0deg, rgba(4, 21, 38, 0.92) 0%, transparent 42%);
    opacity: 1;
    transition: opacity 0.25s ease;
  }
  .mg-player.is-playing:not(.is-active) .mg-player-scrim,
  .mg-player.is-playing:not(.is-active) .mg-player-brand,
  .mg-player.is-playing:not(.is-active) .mg-player-bar,
  .mg-player.is-playing:not(.is-active) .mg-player-bigplay {
    opacity: 0;
  }
  .mg-player-brand {
    pointer-events: none;
    position: absolute;
    top: 14px;
    left: 16px;
    z-index: 2;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #F2B705;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
    transition: opacity 0.25s ease;
  }
  .mg-player-bigplay {
    position: absolute;
    z-index: 3;
    inset: 50% auto auto 50%;
    transform: translate(-50%, -50%);
    width: 76px;
    height: 76px;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    color: #003D7A;
    background: radial-gradient(circle at 30% 25%, #ffe9a3, #F2B705 58%, #d39a04);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35), 0 0 0 8px rgba(242, 183, 5, 0.18);
    display: grid;
    place-items: center;
    transition: transform 0.2s ease, opacity 0.25s ease, box-shadow 0.2s ease;
  }
  .mg-player-bigplay svg { width: 32px; height: 32px; margin-left: 3px; }
  .mg-player-bigplay:hover { transform: translate(-50%, -50%) scale(1.06); }
  .mg-player.is-playing .mg-player-bigplay { opacity: 0; pointer-events: none; }
  .mg-player-bar {
    position: absolute;
    z-index: 3;
    left: 10px;
    right: 10px;
    bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 10px;
    background: rgba(0, 30, 61, 0.78);
    backdrop-filter: blur(10px);
    color: #fff;
    transition: opacity 0.25s ease;
  }
  .mg-player-btn {
    flex: none;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: #fff;
    display: grid;
    place-items: center;
    cursor: pointer;
  }
  .mg-player-btn:hover { background: rgba(255, 255, 255, 0.12); }
  .mg-player-btn svg { width: 20px; height: 20px; }
  .mg-player-time {
    flex: none;
    font-size: 12px;
    font-variant-numeric: tabular-nums;
    color: #e8eef5;
    white-space: nowrap;
  }
  .mg-player-seek { flex: 1; min-width: 48px; margin: 0; }
  .mg-player-vol { width: 72px; margin: 0; display: none; }
  @media (min-width: 720px) {
    .mg-player-vol { display: block; }
  }
  .mg-player-seek input,
  .mg-player-vol input {
    width: 100%;
    height: 18px;
    margin: 0;
    padding: 0;
    accent-color: #F2B705;
    background: transparent;
    cursor: pointer;
  }
  .mg-player-seek input {
    background: linear-gradient(90deg, #F2B705 var(--mg-played, 0%), rgba(255,255,255,0.28) var(--mg-played, 0%));
    border-radius: 99px;
    height: 5px;
    appearance: none;
  }
  .mg-player-seek input::-webkit-slider-thumb {
    appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 0 3px #F2B705;
  }
  .mg-player-rate {
    flex: none;
    width: auto;
    max-width: 72px;
    height: 28px;
    padding: 0 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    background: transparent;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
  }
  .mg-player.is-full {
    border-radius: 0;
    background: #000;
  }
  .mg-player.is-full .mg-player-media {
    max-height: 100vh;
    height: 100%;
    object-fit: contain;
  }
  .mg-player.is-native .mg-player-scrim,
  .mg-player.is-native .mg-player-brand,
  .mg-player.is-native .mg-player-bigplay,
  .mg-player.is-native .mg-player-bar {
    display: none;
  }
  .mg-player.is-native {
    min-height: 0;
  }
  .mg-player.is-native .mg-player-media {
    cursor: default;
    max-height: none;
  }
  @media (prefers-reduced-motion: reduce) {
    .mg-player-scrim, .mg-player-bigplay, .mg-player-bar, .mg-player-brand { transition: none; }
  }
