:root {
      --bg: #f7fbf4;
      --bg-elevated: rgba(255, 255, 255, 0.74);
      --panel: rgba(255, 255, 255, 0.9);
      --panel-strong: #ffffff;
      --text: #123326;
      --muted: #5f7467;
      --line: rgba(18, 51, 38, 0.12);
      --primary: #064f2f;
      --primary-2: #187a3d;
      --accent: #5aa832;
      --accent-2: #8bc34a;
      --shadow-lg: 0 24px 60px rgba(6, 79, 47, 0.16);
      --shadow-md: 0 16px 40px rgba(6, 79, 47, 0.12);
      --shadow-sm: 0 10px 24px rgba(6, 79, 47, 0.08);
      --radius-xl: 28px;
      --radius-lg: 22px;
      --radius-md: 16px;
      --container: min(1180px, calc(100vw - 2rem));
      --header-height: 6.8rem;
    }

    *, *::before, *::after { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      color: var(--text);
      background:
        radial-gradient(circle at top left, rgba(90, 168, 50, 0.14), transparent 26%),
        radial-gradient(circle at top right, rgba(24, 122, 61, 0.12), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f7fbf4 38%, #eef7ea 100%);
      font-family: "Avenir Next", "Segoe UI", "Trebuchet MS", sans-serif;
      line-height: 1.6;
      overflow-x: hidden;
    }

    body::before,
    body::after {
      content: "";
      position: fixed;
      inset: auto;
      z-index: -1;
      pointer-events: none;
      filter: blur(40px);
      opacity: 0.55;
    }

    body::before {
      width: 22rem;
      height: 22rem;
      top: -5rem;
      right: -6rem;
      border-radius: 50%;
      background: rgba(24, 122, 61, 0.16);
    }

    body::after {
      width: 26rem;
      height: 26rem;
      bottom: -9rem;
      left: -8rem;
      border-radius: 50%;
      background: rgba(90, 168, 50, 0.14);
    }

    img { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }
    button, input, textarea { font: inherit; }
    ::selection { background: rgba(24, 122, 61, 0.2); }

    .skip-link {
      position: absolute;
      left: 1rem;
      top: -4rem;
      padding: 0.8rem 1rem;
      border-radius: 999px;
      background: #fff;
      border: 1px solid var(--line);
      box-shadow: var(--shadow-sm);
      transition: top 0.2s ease;
      z-index: 1000;
    }
    .skip-link:focus { top: 1rem; }

    .container { width: var(--container); margin: 0 auto; }
    .section {
      position: relative;
      padding: clamp(4rem, 8vw, 6.5rem) 0;
      scroll-margin-top: 6.5rem;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.55rem;
      padding: 0.45rem 0.9rem;
      border-radius: 999px;
      border: 1px solid rgba(24, 122, 61, 0.18);
      background: rgba(255, 255, 255, 0.78);
      color: var(--primary);
      letter-spacing: 0.08em;
      text-transform: uppercase;
      font-size: 0.73rem;
      font-weight: 700;
    }

    .eyebrow::before {
      content: "";
      width: 0.55rem;
      height: 0.55rem;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--accent), var(--primary-2));
      box-shadow: 0 0 0 5px rgba(24, 122, 61, 0.08);
    }

    .section-heading {
      max-width: 760px;
      margin-bottom: 1.8rem;
    }

    .section-heading h2,
    .hero h1,
    .footer-title {
      font-family: "Iowan Old Style", "Baskerville", "Georgia", serif;
      line-height: 1.05;
      letter-spacing: -0.03em;
      margin: 0.55rem 0 0;
    }

    .section-heading h2 {
      font-size: clamp(2rem, 4vw, 3.2rem);
      color: var(--primary);
    }

    .section-heading p,
    .hero-copy p,
    .card-copy,
    .muted {
      color: var(--muted);
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 60;
      backdrop-filter: blur(18px);
      background: rgba(255, 255, 255, 0.74);
      border-bottom: 1px solid rgba(18, 51, 38, 0.08);
    }

    .header-inner {
      width: var(--container);
      margin: 0 auto;
      min-height: var(--header-height);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      min-width: 0;
    }

    .brand img {
      width: 5.9rem;
      height: 5.9rem;
      object-fit: contain;
      border-radius: 1.4rem;
      border: 1px solid rgba(6, 79, 47, 0.12);
      box-shadow: 0 16px 34px rgba(6, 79, 47, 0.16), 0 0 0 8px rgba(139, 195, 74, 0.08);
      background: rgba(255, 255, 255, 0.94);
      padding: 0.32rem;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .brand:hover img {
      transform: translateY(-2px) scale(1.03);
      box-shadow: 0 20px 42px rgba(6, 79, 47, 0.2), 0 0 0 10px rgba(139, 195, 74, 0.12);
    }

    .site-nav {
      display: flex;
      align-items: center;
      gap: 0.25rem;
      flex-wrap: wrap;
    }

    .site-nav a {
      padding: 0.7rem 0.9rem;
      border-radius: 999px;
      color: var(--primary);
      font-size: 0.95rem;
      transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
    }

    .site-nav a:hover,
    .site-nav a:focus-visible {
      background: rgba(24, 122, 61, 0.08);
      color: var(--primary-2);
      transform: translateY(-1px);
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.55rem;
      border: 0;
      padding: 0.92rem 1.2rem;
      border-radius: 999px;
      font-weight: 700;
      letter-spacing: 0.01em;
      cursor: pointer;
      transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
      box-shadow: var(--shadow-sm);
    }

    .btn:hover,
    .btn:focus-visible { transform: translateY(-2px); }

    .btn-primary {
      color: #fff;
      background: linear-gradient(135deg, var(--primary), var(--primary-2));
    }

    .btn-secondary {
      color: var(--primary);
      background: rgba(255, 255, 255, 0.86);
      border: 1px solid rgba(18, 51, 38, 0.12);
    }

    .nav-toggle {
      display: none;
      width: 3rem;
      height: 3rem;
      border-radius: 999px;
      border: 1px solid rgba(18, 51, 38, 0.12);
      background: rgba(255, 255, 255, 0.88);
      box-shadow: var(--shadow-sm);
      cursor: pointer;
    }

    .nav-toggle span {
      display: block;
      width: 1.1rem;
      height: 2px;
      margin: 0.18rem auto;
      border-radius: 999px;
      background: var(--primary);
      transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .hero {
      padding-top: 0;
      overflow: hidden;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
      gap: clamp(1rem, 2.4vw, 1.6rem);
      align-items: stretch;
    }

    .hero-copy {
      grid-column: 1;
      padding: clamp(0.5rem, 1vw, 1rem) 0;
    }

    .hero-publication-visual {
      grid-column: 2;
      position: relative;
      align-self: stretch;
      min-height: 100%;
      margin: 0;
      padding: 0.75rem;
      border-radius: 32px;
      background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(231, 247, 244, 0.72)),
        radial-gradient(circle at 15% 18%, rgba(90, 168, 50, 0.16), transparent 34%);
      border: 1px solid rgba(18, 51, 38, 0.08);
      box-shadow: var(--shadow-lg);
      overflow: hidden;
    }

    .hero-publication-visual::before {
      content: "";
      position: absolute;
      inset: auto -3rem -4rem auto;
      width: 13rem;
      height: 13rem;
      border-radius: 999px;
      background: rgba(24, 122, 61, 0.16);
      filter: blur(18px);
      pointer-events: none;
    }

    .hero-publication-visual img {
      position: relative;
      z-index: 1;
      width: 100%;
      height: min(32vw, 420px);
      min-height: 340px;
      object-fit: cover;
      object-position: center;
      border-radius: 24px;
      box-shadow: 0 22px 46px rgba(18, 51, 38, 0.18);
      transition: transform 0.55s ease, filter 0.55s ease;
    }

    .hero-publication-visual:hover img {
      transform: scale(1.025);
      filter: saturate(1.06);
    }

    .hero-publication-visual figcaption {
      position: relative;
      z-index: 2;
      margin: -3.6rem 1rem 0;
      padding: 1rem 1.05rem;
      border-radius: 22px;
      background: rgba(255, 255, 255, 0.9);
      border: 1px solid rgba(18, 51, 38, 0.08);
      box-shadow: var(--shadow-sm);
      backdrop-filter: blur(16px);
    }

    .hero-publication-visual figcaption span {
      display: inline-flex;
      margin-bottom: 0.35rem;
      color: var(--primary-2);
      font-size: 0.76rem;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .hero-publication-visual figcaption strong {
      display: block;
      color: var(--primary);
      font-size: 1rem;
      line-height: 1.35;
    }

    .hero h1 {
      font-size: clamp(2.6rem, 6vw, 5.1rem);
      color: var(--primary);
      max-width: 12ch;
    }

    .hero-copy p {
      max-width: 62ch;
      font-size: 1.04rem;
      margin: 1rem 0 0;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.8rem;
      margin: 1.6rem 0 1.3rem;
    }

    .hero-points {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.85rem;
      margin-top: 1.6rem;
    }

    .point-card,
    .glass-card,
    .info-card,
    .scope-card,
    .policy-card,
    .team-card,
    .guideline-card,
    .contact-card,
    .form-card,
    .timeline-item {
      background: var(--panel);
      border: 1px solid rgba(18, 51, 38, 0.08);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-sm);
      backdrop-filter: blur(14px);
    }

    .point-card {
      padding: 1rem;
      min-height: 100%;
    }

    .point-card strong {
      display: block;
      color: var(--primary);
      font-size: 0.94rem;
      margin-bottom: 0.2rem;
    }

    .point-card span { color: var(--muted); font-size: 0.89rem; }

    .hero-slider {
      grid-column: 1 / -1;
      position: relative;
      width: 100vw;
      margin-left: calc(50% - 50vw);
    }

    .slider-shell {
      position: relative;
      min-height: calc(100svh - var(--header-height));
      padding: 0;
      border-radius: 0;
      background: #123326;
      border: 0;
      box-shadow: var(--shadow-lg);
      overflow: hidden;
    }

    .slider-shell::before,
    .slider-shell::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      filter: blur(12px);
      pointer-events: none;
    }

    .slider-shell::before {
      width: 12rem;
      height: 12rem;
      right: -3rem;
      top: -4rem;
      background: rgba(24, 122, 61, 0.14);
    }

    .slider-shell::after {
      width: 14rem;
      height: 14rem;
      left: -4rem;
      bottom: -5rem;
      background: rgba(90, 168, 50, 0.12);
    }

    .slide {
      display: grid;
      min-height: calc(100svh - var(--header-height));
      position: relative;
      isolation: isolate;
    }

    .slide-media {
      position: absolute;
      inset: 0;
      border-radius: 0;
      overflow: hidden;
      aspect-ratio: auto;
      background: linear-gradient(145deg, rgba(6, 79, 47, 0.07), rgba(24, 122, 61, 0.1));
      isolation: isolate;
    }

    .slide::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      pointer-events: none;
      background:
        linear-gradient(90deg, rgba(6, 26, 39, 0.82), rgba(6, 26, 39, 0.42) 48%, rgba(6, 26, 39, 0.08)),
        linear-gradient(0deg, rgba(6, 26, 39, 0.5), transparent 45%);
    }

    .slide-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.8s ease, opacity 0.4s ease;
    }

    .slide-media:hover img { transform: scale(1.03); }

    .slide-chip {
      position: absolute;
      left: max(1rem, calc((100vw - 1180px) / 2));
      top: 2rem;
      z-index: 2;
      padding: 0.45rem 0.8rem;
      border-radius: 999px;
      background: rgba(255,255,255,0.88);
      color: var(--primary);
      border: 1px solid rgba(18, 51, 38, 0.08);
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      backdrop-filter: blur(10px);
    }

    .slide-copy {
      position: relative;
      z-index: 2;
      width: var(--container);
      max-width: 1180px;
      margin: 0 auto;
      padding: clamp(5rem, 12vh, 8rem) 1rem 6rem;
      border-radius: 0;
      background: transparent;
      border: 0;
      display: flex;
      flex-direction: column;
      justify-content: center;
      min-height: calc(100svh - var(--header-height));
    }

    .slide-copy h2 {
      font-family: "Iowan Old Style", "Baskerville", "Georgia", serif;
      font-size: clamp(2.35rem, 5.4vw, 5.4rem);
      line-height: 0.98;
      margin: 0;
      color: #ffffff;
      max-width: 13ch;
    }

    .slide-copy p {
      margin: 1.1rem 0 1.1rem;
      color: rgba(255, 255, 255, 0.86);
      font-size: clamp(1.05rem, 1.45vw, 1.32rem);
      line-height: 1.62;
      max-width: 48rem;
    }

    .slide-copy ul {
      margin: 0;
      padding-left: 1.1rem;
      color: rgba(255, 255, 255, 0.9);
    }

    .slider-controls {
      position: absolute;
      left: max(1rem, calc((100vw - 1180px) / 2 + 1rem));
      right: max(1rem, calc((100vw - 1180px) / 2 + 1rem));
      bottom: 1.4rem;
      z-index: 3;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.75rem;
      margin-top: 0;
    }

    .slider-buttons {
      display: inline-flex;
      gap: 0.55rem;
    }

    .icon-btn {
      width: 2.7rem;
      height: 2.7rem;
      border-radius: 999px;
      border: 1px solid rgba(18, 51, 38, 0.1);
      background: rgba(255,255,255,0.92);
      color: var(--primary);
      cursor: pointer;
      box-shadow: var(--shadow-sm);
    }

    .dots {
      display: flex;
      gap: 0.45rem;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .dot {
      width: 0.76rem;
      height: 0.76rem;
      padding: 0;
      border-radius: 999px;
      border: 0;
      background: rgba(18, 51, 38, 0.16);
      cursor: pointer;
      transition: transform 0.2s ease, width 0.2s ease, background 0.2s ease;
    }

    .dot[aria-current="true"] {
      width: 1.8rem;
      background: linear-gradient(135deg, var(--primary), var(--primary-2));
    }

    .hero-aside {
      grid-column: 2;
      display: grid;
      gap: 1rem;
    }

    .info-card {
      padding: 1.1rem 1.15rem;
    }

    .info-card h3 {
      margin: 0 0 0.45rem;
      color: var(--primary);
      font-size: 1.05rem;
    }

    .info-card p {
      margin: 0;
      color: var(--muted);
      font-size: 0.95rem;
    }

    .pill-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-top: 0.9rem;
    }

    .pill {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0.5rem 0.75rem;
      border-radius: 999px;
      background: rgba(24, 122, 61, 0.08);
      color: var(--primary);
      font-size: 0.82rem;
      font-weight: 700;
    }

    .layout-grid {
      display: grid;
      gap: 0.8rem;
      grid-template-columns: repeat(12, minmax(0, 1fr));
    }

    .scope-summary {
      grid-column: 1 / -1;
      padding: 1rem 1.1rem;
    }

    .scope-summary .pill-row {
      margin-top: 0.65rem;
    }

    .summary-title {
      margin: 0.55rem 0 0;
      color: var(--primary);
      font-size: 1.22rem;
    }

    .scope-summary .card-copy {
      margin: 0.45rem 0 0;
      font-size: 0.96rem;
    }

    .scope-grid {
      grid-column: 1 / -1;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 0.8rem;
    }

    .scope-card {
      padding: 1.15rem;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .scope-card:hover,
    .policy-card:hover,
    .team-card:hover,
    .guideline-card:hover,
    .contact-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
    }

    .scope-card h3,
    .policy-card h3,
    .guideline-card h3,
    .contact-card h3 {
      margin: 0;
      color: var(--primary);
      font-size: 1.04rem;
    }

    .scope-card ul,
    .guideline-card ul,
    .check-list,
    .contact-list,
    .team-details {
      margin: 0.8rem 0 0;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 0.5rem;
      min-height: 0;
    }

    .scope-card li,
    .guideline-card li,
    .check-list li,
    .contact-list li,
    .team-details li {
      position: relative;
      padding-left: 1.1rem;
      color: var(--muted);
      font-size: 0.95rem;
    }

    .scope-card li::before,
    .guideline-card li::before,
    .check-list li::before,
    .contact-list li::before,
    .team-details li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0.7em;
      width: 0.45rem;
      height: 0.45rem;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--accent), var(--primary-2));
    }

    .scope-number {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 2rem;
      height: 2rem;
      border-radius: 0.8rem;
      background: linear-gradient(135deg, rgba(14,116,144,0.12), rgba(79,141,56,0.12));
      color: var(--primary);
      font-weight: 800;
      margin-bottom: 0.75rem;
    }

    .principal-section {
      padding-top: clamp(3rem, 6vw, 4.5rem);
    }

    .principal-card {
      display: grid;
      grid-template-columns: minmax(240px, 340px) minmax(0, 1fr);
      gap: clamp(1.2rem, 3vw, 2rem);
      align-items: center;
      padding: clamp(1rem, 3vw, 1.5rem);
      border-radius: var(--radius-lg);
      background:
        linear-gradient(180deg, rgba(255,255,255,0.94), rgba(247,250,252,0.9)),
        linear-gradient(135deg, rgba(14,116,144,0.06), rgba(79,141,56,0.06));
      border: 1px solid rgba(18, 51, 38, 0.08);
      box-shadow: var(--shadow-sm);
    }

    .principal-photo {
      margin: 0;
      overflow: hidden;
      border-radius: 22px;
      background: linear-gradient(180deg, #f8fbfd, #eef5f7);
      border: 1px solid rgba(18, 51, 38, 0.08);
      aspect-ratio: 4 / 4.2;
      display: grid;
      place-items: center;
      padding: 0.75rem;
    }

    .principal-photo img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      border-radius: 16px;
    }

    .principal-body h3 {
      margin: 0.45rem 0 0;
      color: var(--primary);
      font-size: clamp(1.7rem, 3vw, 2.4rem);
      line-height: 1.1;
    }

    .principal-body p {
      margin: 0.55rem 0 0;
      color: var(--muted);
      font-weight: 700;
      letter-spacing: 0.04em;
    }

    .timeline {
      display: grid;
      gap: 1rem;
      margin-top: 1.1rem;
    }

    .timeline-item {
      position: relative;
      padding: 1.2rem 1.2rem 1.2rem 4.2rem;
      overflow: hidden;
    }

    .timeline-item::before {
      content: attr(data-step);
      position: absolute;
      left: 1.15rem;
      top: 1.15rem;
      width: 2.2rem;
      height: 2.2rem;
      display: grid;
      place-items: center;
      border-radius: 0.85rem;
      background: linear-gradient(135deg, var(--primary), var(--primary-2));
      color: #fff;
      font-weight: 800;
      box-shadow: var(--shadow-sm);
    }

    .timeline-item h3 {
      margin: 0 0 0.45rem;
      color: var(--primary);
      font-size: 1.04rem;
    }

    .timeline-item p {
      margin: 0;
      color: var(--muted);
    }

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

    .policy-card {
      padding: 1.15rem;
    }

    .policy-card .label {
      display: inline-flex;
      margin-bottom: 0.7rem;
      color: var(--primary-2);
      font-size: 0.8rem;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .team-intro {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1rem;
      margin-bottom: 1rem;
    }

    .team-intro .info-card { height: 100%; }

    .team-directory {
      display: grid;
      gap: 1.25rem;
      margin: 1.2rem 0 1.3rem;
    }

    .chief-card {
      width: min(100%, 420px);
      padding: 1rem;
      overflow: hidden;
      min-height: 480px;
      background:
        linear-gradient(180deg, rgba(255,255,255,0.94), rgba(245,250,252,0.94)),
        linear-gradient(135deg, rgba(14,116,144,0.08), rgba(79,141,56,0.08));
    }

    .chief-card figure,
    .team-portrait {
      margin: 0;
      overflow: hidden;
      border-radius: 18px;
      background: linear-gradient(145deg, rgba(24, 122, 61, 0.08), rgba(90, 168, 50, 0.08));
    }

    .chief-card figure { aspect-ratio: 4 / 3.2; }
    .chief-card img,
    .team-portrait img,
    .contact-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.45s ease;
    }

    .chief-card:hover img,
    .team-card:hover img,
    .contact-card:hover img {
      transform: scale(1.03);
    }

    .chief-card h3,
    .team-card h3,
    .contact-card h3 {
      margin: 0.9rem 0 0.2rem;
      color: var(--primary);
      font-size: 1.2rem;
    }

    .chief-card .role,
    .team-card .role,
    .contact-role {
      color: var(--primary-2);
      font-size: 0.92rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    .chief-card .meta,
    .team-card .meta {
      margin: 0.55rem 0 0;
      color: var(--muted);
      font-size: 0.93rem;
      display: grid;
      gap: 0.35rem;
    }

    .chip-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.45rem;
      margin-top: 0.85rem;
    }

    .chip {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0.44rem 0.7rem;
      border-radius: 999px;
      font-size: 0.78rem;
      font-weight: 700;
      color: var(--primary);
      background: rgba(24, 122, 61, 0.08);
    }

    .team-groups {
      display: grid;
      gap: 1.25rem;
    }

    .team-group {
      border: 1px solid rgba(18, 51, 38, 0.08);
      border-radius: var(--radius-lg);
      background:
        linear-gradient(180deg, rgba(255,255,255,0.92), rgba(247,250,252,0.86)),
        linear-gradient(135deg, rgba(24, 122, 61, 0.06), rgba(90, 168, 50, 0.06));
      box-shadow: var(--shadow-sm);
      overflow: hidden;
    }

    .team-group-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding: 1rem 1.1rem;
      border-bottom: 1px solid rgba(18, 51, 38, 0.08);
    }

    .team-group-header h3 {
      margin: 0;
      color: var(--primary);
      font-size: 1.15rem;
    }

    .team-group-header p {
      margin: 0.2rem 0 0;
      color: var(--muted);
      font-size: 0.92rem;
    }

    .team-count {
      flex: 0 0 auto;
      padding: 0.48rem 0.75rem;
      border-radius: 999px;
      background: rgba(24, 122, 61, 0.08);
      color: var(--primary);
      font-size: 0.8rem;
      font-weight: 800;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    .team-group-body {
      padding: 1.1rem;
    }

    .team-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 0.9rem;
      align-items: stretch;
    }

    .team-card {
      padding: 0.85rem;
      height: 100%;
      min-height: 540px;
      max-height: 540px;
      display: grid;
      grid-template-rows: 245px auto auto minmax(0, 1fr) auto;
      overflow: hidden;
    }

    .policy-copy {
      margin: 0.7rem 0 0;
    }

    .team-portrait {
      height: 245px;
      display: grid;
      place-items: center;
      padding: 0.45rem;
      background: linear-gradient(180deg, #f8fbfd, #eef5f7);
      border: 1px solid rgba(18, 51, 38, 0.08);
    }

    .team-portrait img {
      object-fit: contain;
      object-position: center;
      border-radius: 12px;
    }

    .team-card:hover img {
      transform: none;
    }

    .team-card h3 {
      margin-top: 0.75rem;
      font-size: 1.02rem;
      line-height: 1.2;
      overflow-wrap: anywhere;
    }

    .team-card .role {
      font-size: 0.74rem;
      line-height: 1.25;
    }

    .team-card .team-details {
      overflow: auto;
      align-content: start;
      padding-right: 0.25rem;
      scrollbar-width: thin;
    }

    .team-card .meta {
      margin: 0.7rem 0 0;
      display: grid;
      gap: 0.4rem;
      color: var(--muted);
      font-size: 0.92rem;
    }

    .team-card .team-details li {
      font-size: 0.78rem;
      line-height: 1.45;
      overflow-wrap: anywhere;
    }

    .mini-links {
      display: flex;
      flex-wrap: wrap;
      gap: 0.45rem;
      margin-top: 0.85rem;
      align-self: end;
    }

    .mini-links a,
    .mini-links span {
      display: inline-flex;
      align-items: center;
      gap: 0.3rem;
      padding: 0.44rem 0.66rem;
      border-radius: 999px;
      border: 1px solid rgba(18, 51, 38, 0.08);
      background: rgba(255,255,255,0.82);
      color: var(--primary);
      font-size: 0.75rem;
      font-weight: 700;
      word-break: break-word;
    }

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

    .guideline-card {
      padding: 1.15rem;
    }

    .guideline-card .subhead {
      margin: 0.65rem 0 0;
      color: var(--primary-2);
      font-size: 0.9rem;
      font-weight: 800;
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }

    .stacked-title {
      margin-top: 1.2rem;
    }

    .guideline-single {
      margin-top: 1rem;
    }

    .check-list li strong {
      color: var(--primary);
    }

    .contact-grid {
      display: grid;
      grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
      gap: 1rem;
      align-items: start;
    }

    .contact-list-stack {
      display: grid;
      gap: 1rem;
    }

    .contact-card {
      overflow: hidden;
    }

    .contact-photo {
      aspect-ratio: 4 / 3.8;
      background: linear-gradient(145deg, rgba(24, 122, 61, 0.08), rgba(90, 168, 50, 0.08));
      display: grid;
      place-items: center;
      padding: 0.75rem;
    }

    .contact-photo img {
      object-fit: contain;
      object-position: center;
      border-radius: 16px;
    }

    .contact-body {
      padding: 1rem;
    }

    .contact-body p {
      margin: 0.45rem 0 0;
      color: var(--muted);
    }

    .contact-list li { padding-left: 1.05rem; }

    .contact-form {
      padding: 1.2rem;
      display: grid;
      gap: 1rem;
    }

    .form-title {
      margin: 0.75rem 0 0;
      color: var(--primary);
      font-size: 1.5rem;
    }

    .form-intro {
      margin: 0.6rem 0 0;
    }

    .form-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1rem;
    }

    .field {
      display: grid;
      gap: 0.45rem;
    }

    .field label {
      color: var(--primary);
      font-weight: 700;
      font-size: 0.94rem;
    }

    .field input,
    .field textarea {
      width: 100%;
      border: 1px solid rgba(18, 51, 38, 0.12);
      border-radius: 18px;
      background: rgba(255,255,255,0.9);
      color: var(--text);
      padding: 0.95rem 1rem;
      outline: none;
      transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    }

    .field textarea {
      min-height: 11rem;
      resize: vertical;
    }

    .field-full {
      grid-column: 1 / -1;
    }

    .field input:focus,
    .field textarea:focus {
      border-color: rgba(24, 122, 61, 0.4);
      box-shadow: 0 0 0 4px rgba(24, 122, 61, 0.11);
    }

    .form-footer {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 0.75rem;
      margin-top: 0.2rem;
    }

    .form-note {
      color: var(--muted);
      font-size: 0.92rem;
    }

    .status {
      min-height: 1.4rem;
      color: var(--primary-2);
      font-weight: 700;
      font-size: 0.92rem;
    }

    .footer {
      position: relative;
      padding: 4rem 0 1.4rem;
      border-top: 1px solid rgba(18, 51, 38, 0.08);
      background:
        radial-gradient(circle at 12% 20%, rgba(139, 195, 74, 0.18), transparent 28%),
        radial-gradient(circle at 88% 0%, rgba(24, 122, 61, 0.16), transparent 30%),
        linear-gradient(135deg, #f7fbf4 0%, #eef7ea 46%, #ffffff 100%);
      overflow: hidden;
    }

    .footer::before {
      content: "";
      position: absolute;
      inset: 1rem 1rem auto auto;
      width: 14rem;
      height: 14rem;
      border-radius: 999px;
      background: rgba(6, 79, 47, 0.08);
      filter: blur(18px);
      pointer-events: none;
    }

    .footer-inner {
      position: relative;
      z-index: 1;
      width: var(--container);
      margin: 0 auto;
      display: grid;
      gap: 1.4rem;
    }

    .footer-main {
      display: grid;
      grid-template-columns: minmax(280px, 1.35fr) repeat(3, minmax(160px, 0.75fr));
      gap: clamp(1rem, 3vw, 2rem);
      padding: clamp(1.1rem, 2.4vw, 1.8rem);
      border: 1px solid rgba(18, 51, 38, 0.08);
      border-radius: 34px;
      background: rgba(255, 255, 255, 0.72);
      box-shadow: var(--shadow-md);
      backdrop-filter: blur(18px);
    }

    .footer-brand {
      display: grid;
      gap: 1rem;
      align-content: start;
    }

    .footer-logo {
      width: 6.8rem;
      height: 6.8rem;
      display: grid;
      place-items: center;
      border-radius: 28px;
      background: #ffffff;
      border: 1px solid rgba(18, 51, 38, 0.08);
      box-shadow: var(--shadow-sm);
      padding: 0.4rem;
    }

    .footer-logo img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    .footer-brand p {
      max-width: 35rem;
      margin: 0;
      color: var(--muted);
    }

    .footer-social {
      display: flex;
      flex-wrap: wrap;
      gap: 0.55rem;
    }

    .footer-social a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 3.15rem;
      min-height: 3.15rem;
      padding: 0.72rem 0.9rem;
      border-radius: 999px;
      color: #ffffff;
      background: linear-gradient(135deg, var(--primary), var(--primary-2));
      box-shadow: 0 12px 28px rgba(6, 79, 47, 0.16);
      font-size: 0.78rem;
      font-weight: 900;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .footer-social a:hover {
      transform: translateY(-3px);
      box-shadow: 0 16px 34px rgba(6, 79, 47, 0.22);
    }

    .footer-column {
      display: grid;
      gap: 0.5rem;
      align-content: start;
      font-style: normal;
    }

    .footer-column h3 {
      margin: 0 0 0.25rem;
      color: var(--primary);
      font-size: 1rem;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    .footer-column a,
    .footer-column p {
      margin: 0;
      color: var(--muted);
      font-size: 0.95rem;
    }

    .footer-column a {
      width: fit-content;
      color: var(--primary);
      font-weight: 700;
      transition: color 0.2s ease, transform 0.2s ease;
    }

    .footer-column a:hover {
      color: var(--primary-2);
      transform: translateX(3px);
    }

    .footer-address p {
      max-width: 19rem;
    }

    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding: 0 0.35rem;
      flex-wrap: wrap;
    }

    .footer-bottom p,
    .footer-bottom-links a {
      margin: 0;
      color: var(--muted);
      font-size: 0.94rem;
    }

    .footer-bottom-links {
      display: flex;
      gap: 0.8rem;
      flex-wrap: wrap;
    }

    .footer-bottom-links a {
      color: var(--primary);
      font-weight: 800;
    }

    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .reveal.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    .stagger {
      transition-delay: var(--delay, 0s);
    }

    .hero-slider .reveal,
    .reveal[data-animate="slide"] {
      transition-duration: 0.9s;
    }

    .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;
    }

    .active-slide {
      animation: fadeUp 0.6s ease both;
    }

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

    @media (max-width: 1080px) {
      .hero-grid,
      .contact-grid {
        grid-template-columns: 1fr;
      }

      .hero-copy,
      .hero-publication-visual,
      .hero-aside {
        grid-column: 1;
      }

      .hero-publication-visual img {
        height: clamp(320px, 48vw, 460px);
      }

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

      .slide-media {
        aspect-ratio: auto;
      }

      .scope-summary,
      .scope-grid {
        grid-column: auto;
      }

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

      .team-intro,
      .policy-grid,
      .guideline-grid,
      .form-grid {
        grid-template-columns: 1fr;
      }

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

      .team-card {
        min-height: 520px;
        grid-template-rows: 190px auto auto 1fr auto;
      }

      .chief-card {
        min-height: 430px;
      }

      .team-portrait {
        height: 190px;
      }
    }

    @media (max-width: 920px) {
      .footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .footer-brand {
        grid-column: 1 / -1;
      }

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

      .nav-toggle { display: inline-grid; place-items: center; }
      .site-nav {
        position: absolute;
        left: 1rem;
        right: 1rem;
        top: calc(100% + 0.6rem);
        display: grid;
        gap: 0.25rem;
        padding: 0.8rem;
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.96);
        border: 1px solid rgba(18, 51, 38, 0.08);
        box-shadow: var(--shadow-lg);
        opacity: 0;
        transform: translateY(-8px);
        pointer-events: none;
        transition: opacity 0.2s ease, transform 0.2s ease;
      }

      .site-header.nav-open .site-nav {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
      }

      .site-nav a { padding: 0.85rem 1rem; background: rgba(24, 122, 61, 0.04); }

      .header-actions .btn { display: none; }
      .header-inner { position: relative; }
      .hero h1 { max-width: 14ch; }
    }

    @media (max-width: 720px) {
      :root {
        --container: min(1180px, calc(100vw - 1rem));
        --header-height: 5.8rem;
      }
      .section { padding: 3.6rem 0; }
      .hero-points,
      .scope-grid,
      .team-grid {
        grid-template-columns: 1fr;
      }

      .team-card {
        min-height: auto;
        max-height: none;
        grid-template-rows: auto;
      }

      .team-portrait {
        height: auto;
        aspect-ratio: 4 / 3.2;
      }

      .brand img {
        width: 4.8rem;
        height: 4.8rem;
        border-radius: 1.2rem;
      }

      .slider-shell {
        min-height: calc(100svh - var(--header-height));
        padding: 0;
        border-radius: 0;
      }

      .slide-media {
        aspect-ratio: auto;
      }

      .slide-copy {
        padding: 5rem 1rem 6rem;
      }

      .slide-copy h2 {
        max-width: 12ch;
      }

      .hero-publication-visual {
        padding: 0.55rem;
        border-radius: 26px;
      }

      .hero-publication-visual img {
        min-height: 260px;
        height: auto;
        aspect-ratio: 16 / 10;
        border-radius: 20px;
      }

      .hero-publication-visual figcaption {
        margin: 0.65rem 0 0;
      }

      .principal-card {
        grid-template-columns: 1fr;
      }

      .principal-photo {
        max-width: 320px;
      }

      .slider-controls {
        align-items: flex-start;
        flex-direction: column;
      }
      .footer-main {
        grid-template-columns: 1fr;
        border-radius: 26px;
      }
      .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
      }
      .dots { justify-content: flex-start; }
      .timeline-item { padding-left: 1.15rem; padding-top: 3.8rem; }
      .timeline-item::before { top: 1.05rem; }
      .team-group-header {
        align-items: flex-start;
        flex-direction: column;
      }
    }

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