    :root {
      --navy-950: #030918;
      --navy-900: #061735;
      --navy-800: #0a2147;
      --ink: #eaf0ff;
      --orange: #f47a20;
      --orange-soft: #f8a25f;
      --white: #ffffff;
      --panel: rgba(10, 33, 71, 0.78);
      --line: rgba(255, 255, 255, 0.16);
      --shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
      --radius: 18px;
      --max: 1120px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      color: var(--ink);
      font-family: "Barlow", "Segoe UI", sans-serif;
      background:
        radial-gradient(circle at 20% -10%, rgba(244, 122, 32, 0.2), transparent 30%),
        radial-gradient(circle at 80% -20%, rgba(58, 95, 170, 0.24), transparent 32%),
        repeating-linear-gradient(
          90deg,
          #02050d 0,
          #02050d 28px,
          #02070f 28px,
          #02070f 56px
        );
      min-height: 100vh;
    }

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

    .container {
      width: min(var(--max), calc(100% - 2rem));
      margin-inline: auto;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 30;
      backdrop-filter: blur(10px);
      background: rgba(2, 9, 24, 0.8);
      border-bottom: 1px solid var(--line);
    }

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

    .brand {
      display: flex;
      align-items: center;
      gap: 0.85rem;
      min-width: 0;
    }

    .brand img {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      border: 2px solid var(--orange);
      box-shadow: 0 0 0 4px rgba(244, 122, 32, 0.2);
      object-fit: cover;
    }

    .brand h1 {
      margin: 0;
      letter-spacing: 0.02em;
      font-family: "Bebas Neue", sans-serif;
      font-size: clamp(1.2rem, 2.6vw, 1.8rem);
      font-weight: 400;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .brand p {
      margin: 0;
      font-size: 0.8rem;
      letter-spacing: 0.09em;
      color: rgba(234, 240, 255, 0.72);
      text-transform: uppercase;
    }

    .nav-links {
      display: flex;
      gap: 1rem;
      align-items: center;
      font-weight: 600;
      font-size: 0.95rem;
    }

    .nav-links a {
      padding: 0.4rem 0.55rem;
      border-radius: 10px;
      transition: background-color 180ms ease;
    }

    .nav-links a:hover {
      background: rgba(255, 255, 255, 0.12);
    }

    .lang-switch {
      display: inline-flex;
      gap: 0.35rem;
      padding: 0.2rem;
      border-radius: 999px;
      border: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.05);
    }

    .lang-btn {
      border: 0;
      border-radius: 999px;
      background: transparent;
      color: rgba(234, 240, 255, 0.82);
      font: inherit;
      font-size: 0.8rem;
      font-weight: 800;
      letter-spacing: 0.08em;
      padding: 0.4rem 0.65rem;
      cursor: pointer;
    }

    .lang-btn.active {
      background: var(--orange);
      color: #1a1207;
    }

    .menu-btn {
      display: none;
      border: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.06);
      color: var(--white);
      border-radius: 10px;
      padding: 0.45rem 0.7rem;
      font-size: 0.85rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      cursor: pointer;
    }

    .hero {
        padding: clamp(3rem, 8vw, 6rem) 0 1.6rem;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 2rem;
      align-items: center;
    }

    .eyebrow {
      display: inline-block;
      background: rgba(244, 122, 32, 0.14);
      color: var(--orange-soft);
      border: 1px solid rgba(244, 122, 32, 0.3);
      border-radius: 999px;
      padding: 0.3rem 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      font-size: 0.76rem;
      font-weight: 800;
    }

    .hero h2 {
      margin: 0.8rem 0 0;
      font-family: "Bebas Neue", sans-serif;
      line-height: 0.95;
      letter-spacing: 0.02em;
      font-size: clamp(2.5rem, 7vw, 5.5rem);
      font-weight: 400;
      color: var(--white);
    }

    .hero h2 span {
      color: var(--orange);
      text-shadow: 0 0 24px rgba(244, 122, 32, 0.35);
    }

    .hero-copy {
      margin-top: 1.05rem;
      font-size: clamp(1rem, 1.8vw, 1.2rem);
      color: rgba(234, 240, 255, 0.88);
      max-width: 62ch;
    }

    .hero-actions {
      margin-top: 1.5rem;
      display: flex;
      flex-wrap: wrap;
      gap: 0.85rem;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 999px;
      padding: 0.8rem 1.15rem;
      font-weight: 700;
      font-size: 0.95rem;
      border: 1px solid transparent;
      transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
    }

    .btn-primary {
      background: var(--orange);
      color: #1a1207;
      box-shadow: 0 12px 28px rgba(244, 122, 32, 0.32);
    }

    .btn-primary:hover {
      transform: translateY(-1px);
      box-shadow: 0 16px 34px rgba(244, 122, 32, 0.42);
    }

    .btn-ghost {
      border-color: rgba(255, 255, 255, 0.24);
      background: rgba(255, 255, 255, 0.02);
      color: var(--white);
    }

    .btn-ghost:hover {
      background: rgba(255, 255, 255, 0.08);
      transform: translateY(-1px);
    }

    .crest-card {
      position: relative;
      border: 1px solid rgba(244, 122, 32, 0.32);
      background: linear-gradient(160deg, rgba(9, 27, 59, 0.95), rgba(4, 12, 28, 0.95));
      border-radius: 28px;
      padding: 1.3rem;
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .crest-card::after {
      content: "";
      position: absolute;
      inset: auto -10% -28% auto;
      width: 220px;
      aspect-ratio: 1;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(244, 122, 32, 0.3), transparent 70%);
      pointer-events: none;
    }

    .crest-card img {
      width: 100%;
      border-radius: 18px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      display: block;
    }

    .crest-caption {
      margin-top: 0.85rem;
      color: rgba(234, 240, 255, 0.88);
      font-size: 0.9rem;
      text-align: center;
    }

    .panel {
      margin-top: 2.2rem;
      background: var(--panel);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 1.1rem;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem;
    }

    .stat {
      text-align: center;
      padding: 0.6rem 0.35rem;
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.03);
    }

    .stat strong {
      display: block;
      font-size: 1.55rem;
      line-height: 1;
      font-family: "Bebas Neue", sans-serif;
      letter-spacing: 0.03em;
      color: var(--orange-soft);
      font-weight: 400;
    }

    .stat span {
      font-size: 0.86rem;
      color: rgba(234, 240, 255, 0.8);
    }

    section.content {
          padding: clamp(1rem, 2.2vw, 1.8rem) 0;
    }

    .section-title {
      margin: 0;
      font-family: "Bebas Neue", sans-serif;
      font-size: clamp(2rem, 5vw, 3.3rem);
      letter-spacing: 0.03em;
      font-weight: 400;
      color: var(--white);
    }

    .section-sub {
      margin: 0.45rem 0 0;
      color: rgba(234, 240, 255, 0.84);
      max-width: 70ch;
      font-size: 1.02rem;
    }

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

    .card {
      border: 1px solid var(--line);
      background: linear-gradient(160deg, rgba(8, 24, 52, 0.94), rgba(5, 13, 29, 0.94));
      border-radius: 16px;
      padding: 1.1rem;
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
    }

    .card h4 {
      margin: 0;
      font-size: 1.1rem;
      color: var(--orange-soft);
      letter-spacing: 0.01em;
    }

    .card p {
      margin: 0.6rem 0 0;
      color: rgba(234, 240, 255, 0.84);
      line-height: 1.5;
    }

    .split {
      margin-top: 1.6rem;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.2rem;
    }

    .feature {
      border-radius: 16px;
      border: 1px solid var(--line);
      background: rgba(2, 9, 24, 0.55);
      padding: 1rem;
      display: grid;
      gap: 0.85rem;
    }

    .feature h4 {
      margin: 0;
      color: var(--white);
      font-size: 1.15rem;
    }

    .feature ul {
      margin: 0;
      padding-left: 1rem;
      display: grid;
      gap: 0.45rem;
      color: rgba(234, 240, 255, 0.86);
    }

    .feature li::marker {
      color: var(--orange);
    }

    .story-grid {
      margin-top: 1.35rem;
      display: grid;
      grid-template-columns: 1fr;
      gap: 1rem;
    }

    .story-body {
      border: 1px solid var(--line);
      border-radius: 16px;
      background: rgba(3, 14, 33, 0.65);
      padding: 1.1rem;
    }

    .story-body p {
      margin: 0;
      color: rgba(234, 240, 255, 0.9);
      line-height: 1.65;
    }

    .story-body p + p {
      margin-top: 0.8rem;
    }

    .story-quote {
      margin-top: 1rem;
      border-left: 3px solid var(--orange);
      padding: 0.65rem 0 0.65rem 0.85rem;
      color: #ffe0c2;
      font-weight: 600;
      letter-spacing: 0.01em;
    }

    .emblem-story {
      margin-top: 1rem;
      border: 1px solid var(--line);
      border-radius: 16px;
      background: linear-gradient(160deg, rgba(9, 25, 54, 0.9), rgba(3, 11, 23, 0.9));
      padding: 1.1rem;
    }

    .emblem-story h4 {
      margin: 0;
      color: var(--orange-soft);
      font-size: 1.25rem;
      letter-spacing: 0.01em;
    }

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

    .emblem-item {
      border-radius: 12px;
      border: 1px solid rgba(255, 255, 255, 0.15);
      background: rgba(255, 255, 255, 0.05);
      padding: 0.8rem;
    }

    .emblem-item h5 {
      margin: 0;
      color: var(--white);
      font-size: 1rem;
      letter-spacing: 0.01em;
    }

    .emblem-item p {
      margin: 0.45rem 0 0;
      color: rgba(234, 240, 255, 0.88);
      line-height: 1.55;
      font-size: 0.95rem;
    }

    .gallery {
      margin-top: 1.35rem;
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 0.65rem;
    }

    .gallery img {
      width: 100%;
      height: 175px;
      object-fit: cover;
      border-radius: 12px;
      border: 1px solid rgba(255, 255, 255, 0.18);
      transition: transform 200ms ease, box-shadow 200ms ease;
    }

    .gallery img:hover {
      transform: translateY(-3px);
      box-shadow: 0 14px 24px rgba(0, 0, 0, 0.34);
    }

    .contact-wrap {
      margin-top: 1.4rem;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }

    .contact-panel {
      border: 1px solid var(--line);
      background: rgba(4, 14, 31, 0.78);
      border-radius: 16px;
      padding: 1rem;
    }

    .contact-panel h4 {
      margin-top: 0;
      margin-bottom: 0.6rem;
      color: var(--orange-soft);
      font-size: 1.1rem;
    }

    .contact-panel p {
      margin: 0.35rem 0;
      color: rgba(234, 240, 255, 0.9);
    }

    .contact-panel a {
      color: #ffc590;
      text-decoration: underline;
      text-underline-offset: 2px;
    }

    form {
      display: grid;
      gap: 0.6rem;
      margin-top: 0.8rem;
    }

    input,
    textarea {
      width: 100%;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.16);
      border-radius: 11px;
      padding: 0.72rem 0.8rem;
      font: inherit;
      color: var(--white);
    }

    textarea {
      min-height: 115px;
      resize: vertical;
    }

    input::placeholder,
    textarea::placeholder {
      color: rgba(234, 240, 255, 0.58);
    }

    .small {
      font-size: 0.8rem;
      color: rgba(234, 240, 255, 0.72);
    }

    .footer {
      border-top: 1px solid var(--line);
      margin-top: 2rem;
      padding: 1.2rem 0 1.8rem;
      color: rgba(234, 240, 255, 0.75);
      font-size: 0.9rem;
    }

    .reveal {
      opacity: 0;
      transform: translateY(18px);
      transition: opacity 500ms ease, transform 500ms ease;
      transition-delay: calc(var(--d, 0) * 80ms);
    }

    .d0 { --d: 0; }
    .d1 { --d: 1; }
    .d2 { --d: 2; }
    .d3 { --d: 3; }
    .d4 { --d: 4; }
    .d5 { --d: 5; }
    .d6 { --d: 6; }
    .d7 { --d: 7; }
    .d8 { --d: 8; }
    .d9 { --d: 9; }

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

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

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

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

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

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

    @media (max-width: 760px) {
      .nav-wrap {
        flex-wrap: wrap;
      }

      .menu-btn {
        display: inline-flex;
      }

      .lang-switch {
        order: 3;
        margin-left: auto;
      }

      .nav-links {
        position: absolute;
        left: 1rem;
        right: 1rem;
        top: 72px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        background: rgba(2, 9, 24, 0.96);
        border: 1px solid var(--line);
        border-radius: 12px;
        padding: 0.6rem;
        box-shadow: var(--shadow);
      }

      .nav-links.is-open {
        display: flex;
      }

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

      .gallery img {
        height: 150px;
      }

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

    @media (prefers-reduced-motion: reduce) {
      * {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
      }
    }
  