    :root {
      --green: #7A9476;
      --navy: #1F3A5F;
      --gold: #C8A24A;
      --white: #FFFFFF;
      --ink: #182433;
      --muted: #5E6A75;
      --panel: rgba(255, 255, 255, 0.88);
      --border: rgba(31, 58, 95, 0.14);
      --shadow: 0 22px 65px rgba(24, 36, 51, 0.12);
      --radius-xl: 36px;
      --radius-lg: 26px;
      --radius-md: 20px;
      --max: 1180px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--ink);
      background:
        radial-gradient(circle at top left, rgba(122, 148, 118, 0.14), transparent 24%),
        radial-gradient(circle at top right, rgba(200, 162, 74, 0.12), transparent 28%),
        linear-gradient(180deg, #f7f8f3 0%, #ffffff 40%, #f4f6f3 100%);
      min-height: 100vh;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      background-image:
        linear-gradient(rgba(31, 58, 95, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(31, 58, 95, 0.02) 1px, transparent 1px);
      background-size: 42px 42px;
      mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.32), transparent 88%);
      z-index: -1;
    }

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

    a {
      color: inherit;
      text-decoration: none;
    }

    .skip-link {
      position: absolute;
      top: -48px;
      left: 16px;
      background: var(--navy);
      color: var(--white);
      padding: 12px 16px;
      border-radius: 12px;
      z-index: 1000;
      transition: top 0.2s ease;
    }

    .skip-link:focus {
      top: 16px;
    }

    .shell {
      width: min(calc(100% - 32px), var(--max));
      margin: 0 auto;
    }

    .topbar {
      position: sticky;
      top: 0;
      z-index: 200;
      backdrop-filter: blur(18px);
      background: rgba(255, 255, 255, 0.8);
      border-bottom: 1px solid rgba(31, 58, 95, 0.08);
    }

    .nav-shell {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      padding: 14px 0;
      position: relative;
    }

    .nav-toggle {
      display: none;
      align-items: center;
      gap: 10px;
      border: 0;
      background: transparent;
      color: var(--navy);
      padding: 8px 2px;
      border-radius: 12px;
      font: inherit;
      font-size: 0.82rem;
      font-weight: 800;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      box-shadow: none;
    }

    .nav-toggle__icon {
      position: relative;
      width: 18px;
      height: 12px;
      display: inline-block;
    }

    .nav-toggle__icon {
      background-image:
        linear-gradient(currentColor, currentColor),
        linear-gradient(currentColor, currentColor),
        linear-gradient(currentColor, currentColor);
      background-repeat: no-repeat;
      background-size: 18px 2px, 18px 2px, 18px 2px;
      background-position: 0 0, 0 5px, 0 10px;
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      padding: 18px 0;
      flex-wrap: wrap;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      font-size: 0.8rem;
      font-weight: 700;
    }

    .nav a {
      padding: 10px 12px;
      border-radius: 999px;
      color: var(--navy);
      transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
    }

    .nav a:hover,
    .nav a:focus-visible {
      background: rgba(122, 148, 118, 0.14);
      color: var(--green);
      transform: translateY(-1px);
      outline: none;
    }

    .nav-overlay {
      display: none;
    }

    .nav-close {
      display: none;
    }

    .hero {
      padding: 28px 0 18px;
    }

    .hero-banner {
      position: relative;
      border-radius: 42px;
      overflow: hidden;
      box-shadow: var(--shadow);
      border: 1px solid var(--border);
      background: transparent;
      padding: 0;
    }

    .hero-banner--stacked {
      display: grid;
      gap: 0;
    }

    .hero-sign {
      display: block;
      width: 100%;
      border-radius: 52px;
      overflow: hidden;
      background: linear-gradient(180deg, rgba(31, 58, 95, 0.05), rgba(122, 148, 118, 0.08));
      box-shadow: 0 18px 42px rgba(31, 58, 95, 0.12);
    }

    .hero-sign img {
      display: block;
      width: 100%;
      height: auto;
      border-radius: inherit;
      object-fit: contain;
    }

    .intro {
      padding: 22px 0 34px;
    }

    .intro-grid {
      display: grid;
      grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
      gap: 28px;
      align-items: center;
    }

    .portrait-card {
      background: rgba(255, 255, 255, 0.9);
      border: 1px solid var(--border);
      border-radius: var(--radius-xl);
      padding: 18px;
      box-shadow: var(--shadow);
    }

    .portrait-card img {
      width: 100%;
      aspect-ratio: 1122 / 1402;
      object-fit: cover;
      border-radius: calc(var(--radius-xl) - 10px);
    }

    .copy-card {
      background: var(--panel);
      border: 1px solid var(--border);
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow);
      padding: clamp(24px, 4vw, 42px);
    }

    h1, h2, h3, p {
      margin-top: 0;
    }

    .headline {
      margin: 0 0 18px;
      font-size: clamp(1.9rem, 4vw, 3.15rem);
      line-height: 1.05;
      color: var(--navy);
      letter-spacing: -0.05em;
      font-weight: 800;
    }

    .lede {
      margin: 0;
      font-size: clamp(1rem, 1.7vw, 1.15rem);
      line-height: 1.9;
      color: #30414f;
      white-space: pre-wrap;
    }

    .copy-stack {
      display: grid;
      gap: 14px;
    }

    .statement-meta {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
      margin: 24px 0 0;
      padding-top: 22px;
      border-top: 1px solid rgba(31, 58, 95, 0.1);
    }

    .meta-item {
      padding: 16px 18px;
      border-radius: 18px;
      background: rgba(122, 148, 118, 0.08);
      border: 1px solid rgba(122, 148, 118, 0.16);
    }

    .meta-label {
      display: block;
      color: var(--green);
      text-transform: uppercase;
      letter-spacing: 0.14em;
      font-size: 0.72rem;
      font-weight: 800;
      margin-bottom: 6px;
    }

    .meta-value {
      color: var(--navy);
      font-weight: 700;
      line-height: 1.5;
    }

    .section {
      padding: 22px 0 6px;
      scroll-margin-top: 100px;
    }

    .section-card {
      background: var(--panel);
      border: 1px solid var(--border);
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow);
      padding: clamp(24px, 4vw, 38px);
    }

    .section-header {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 18px;
      margin-bottom: 18px;
    }

    .section-title {
      margin: 0;
      font-size: clamp(1.5rem, 2.6vw, 2.3rem);
      line-height: 1.1;
      color: var(--navy);
      letter-spacing: -0.04em;
      font-weight: 800;
    }

    .priority-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
      margin-top: 10px;
    }

    .priority-link {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 22px;
      border-radius: 24px;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 250, 246, 0.92));
      border: 1px solid rgba(31, 58, 95, 0.12);
      box-shadow: 0 12px 34px rgba(31, 58, 95, 0.08);
      min-height: 100%;
      transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    }

    .priority-link:hover,
    .priority-link:focus-visible {
      transform: translateY(-3px);
      border-color: rgba(122, 148, 118, 0.45);
      box-shadow: 0 18px 42px rgba(31, 58, 95, 0.12);
      outline: none;
    }

    .priority-link h3 {
      margin: 0;
      color: var(--navy);
      font-size: 1.08rem;
      line-height: 1.25;
      letter-spacing: -0.03em;
    }

    .mini-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
      margin-top: 8px;
    }

    .mini-card {
      min-height: 170px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      border-radius: 24px;
      padding: 24px;
      background:
        linear-gradient(160deg, rgba(31, 58, 95, 0.98), rgba(31, 58, 95, 0.86));
      color: var(--white);
      box-shadow: 0 18px 44px rgba(31, 58, 95, 0.16);
      position: relative;
      overflow: hidden;
    }

    .mini-card::after {
      content: "";
      position: absolute;
      inset: auto -36px -36px auto;
      width: 140px;
      height: 140px;
      border-radius: 50%;
      background: rgba(200, 162, 74, 0.18);
      filter: blur(4px);
    }

    .mini-card h3 {
      position: relative;
      z-index: 1;
      margin: 0;
      font-size: 1.15rem;
      line-height: 1.2;
      letter-spacing: -0.03em;
    }

    .mini-card .mini-rule {
      position: relative;
      z-index: 1;
      width: 58px;
      height: 3px;
      border-radius: 999px;
      background: var(--gold);
    }

    .placeholder-card {
      display: grid;
      place-items: center;
      min-height: 160px;
      margin-top: 8px;
      border-radius: 24px;
      background: linear-gradient(160deg, rgba(31, 58, 95, 0.98), rgba(31, 58, 95, 0.86));
      color: var(--white);
      font-size: clamp(1.2rem, 2vw, 1.55rem);
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      box-shadow: 0 18px 44px rgba(31, 58, 95, 0.16);
    }

    .connect-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 18px;
      align-items: start;
    }

    .contact-list {
      display: grid;
      gap: 14px;
      margin-top: 10px;
    }

    .contact-item {
      display: grid;
      grid-template-columns: 132px minmax(0, 1fr);
      gap: 14px;
      align-items: center;
      padding: 18px 20px;
      border-radius: 18px;
      background: rgba(122, 148, 118, 0.07);
      border: 1px solid rgba(122, 148, 118, 0.14);
    }

    .contact-item strong {
      color: var(--green);
      text-transform: uppercase;
      letter-spacing: 0.14em;
      font-size: 0.72rem;
    }

    .contact-item a,
    .contact-item span {
      color: var(--navy);
      font-weight: 700;
      line-height: 1.6;
      overflow-wrap: anywhere;
    }

    .social-row {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      justify-content: flex-start;
      margin-top: 20px;
    }

    .social-link {
      width: 52px;
      height: 52px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: linear-gradient(180deg, rgba(122, 148, 118, 0.12), rgba(200, 162, 74, 0.12));
      border: 1px solid rgba(31, 58, 95, 0.14);
      color: var(--navy);
      transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    }

    .social-link:hover,
    .social-link:focus-visible {
      transform: translateY(-2px);
      box-shadow: 0 12px 26px rgba(31, 58, 95, 0.12);
      outline: none;
    }

    .social-link svg {
      width: 22px;
      height: 22px;
      fill: currentColor;
    }

    .footer-space {
      height: 44px;
    }

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

    .section-anchor {
      scroll-margin-top: 110px;
    }

    @media (max-width: 960px) {
      .intro-grid,
      .connect-grid {
        grid-template-columns: 1fr;
      }

      .priority-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .mini-grid {
        grid-template-columns: 1fr;
      }

      .statement-meta {
        grid-template-columns: 1fr;
      }

    }

    @media (max-width: 640px) {
      .shell {
        width: min(calc(100% - 20px), var(--max));
      }

      .hero {
        padding-top: 14px;
      }

      .hero-banner {
        border-radius: 28px;
      }

      .hero-sign {
        border-radius: 28px;
      }

      .priority-grid {
        grid-template-columns: 1fr;
      }

      .contact-item {
        grid-template-columns: 1fr;
      }

      .nav-toggle {
        display: inline-flex;
      }

      .nav-desktop {
        display: none;
      }

      .nav-overlay {
        position: fixed;
        inset: 0;
        z-index: 300;
        display: grid;
        grid-template-columns: 1fr;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.2s ease;
      }

      .nav-overlay--open {
        opacity: 1;
        pointer-events: auto;
      }

      .nav-overlay__backdrop {
        position: absolute;
        inset: 0;
        background: rgba(12, 20, 31, 0.45);
        backdrop-filter: blur(6px);
      }

    .nav-overlay__panel {
      position: relative;
        margin: 0;
        border-radius: 0;
        background: linear-gradient(180deg, rgba(247, 248, 243, 0.98), rgba(255, 255, 255, 0.98));
        border: 1px solid rgba(31, 58, 95, 0.12);
        box-shadow: 0 24px 60px rgba(12, 20, 31, 0.2);
      padding: 22px;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
      width: 100%;
      height: 100%;
      min-height: 100dvh;
      align-self: stretch;
      z-index: 1;
      }

      .nav-close {
        display: inline-flex;
        align-items: center;
        align-self: flex-end;
        border: 0;
        background: transparent;
        color: var(--navy);
        padding: 4px 6px;
        border-radius: 0;
        font: inherit;
        box-shadow: none;
      }

      .nav-close__icon {
        font-size: 2rem;
        line-height: 1;
      }

      .nav-mobile {
        display: grid;
        gap: 10px;
        margin-top: 18px;
        justify-content: stretch;
        align-items: stretch;
      }

      .nav-mobile a {
        width: 100%;
        padding: 16px 18px;
        border-radius: 18px;
        background: rgba(122, 148, 118, 0.08);
        border: 1px solid rgba(31, 58, 95, 0.08);
        font-size: 0.9rem;
        letter-spacing: 0.18em;
      }

      body.menu-open {
        overflow: hidden;
      }
    }
