:root {
      --black: #070707;
      --coal: #111;
      --panel: #171514;
      --paper: #fffaf1;
      --muted: #c8beb0;
      --dark-muted: #6f685f;
      --gold: #c99a38;
      --gold-light: #f3c964;
      --red: #b91c1c;
      --red-dark: #711414;
      --line: rgba(255, 250, 241, .14);
      --dark-line: rgba(7, 7, 7, .1);
      --radius: 8px;
      --shadow: 0 24px 70px rgba(0, 0, 0, .24);
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: Inter, Arial, sans-serif;
      color: var(--paper);
      background: var(--black);
      line-height: 1.6;
    }

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

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

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

    .topbar {
      position: fixed;
      inset: 0 0 auto;
      z-index: 30;
      border-bottom: 1px solid rgba(7, 7, 7, .08);
      background: #f4f1e9;
    }

    .nav {
      position: relative;
      min-height: 72px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 18px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      color: var(--coal);
      font-weight: 900;
      text-transform: uppercase;
      line-height: 1.05;
    }

    .brand-mark {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      border-radius: var(--radius);
      color: var(--gold-light);
      background: linear-gradient(135deg, var(--red), var(--black) 58%, var(--gold));
      border: 1px solid rgba(243, 201, 100, .5);
      font-size: 14px;
    }

    .brand small {
      display: block;
      margin-top: 4px;
      color: rgba(17, 17, 17, .58);
      font-size: 11px;
      font-weight: 700;
      text-transform: none;
    }

    .nav-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: clamp(14px, 4vw, 42px);
      color: rgba(17, 17, 17, .72);
      font-size: clamp(13px, 1.8vw, 16px);
      font-weight: 850;
    }

    .nav-links a:hover {
      color: var(--gold-light);
    }

    .nav-toggle {
      display: none;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 5px;
      width: 44px;
      height: 44px;
      border: 2px solid rgba(7, 7, 7, .78);
      border-radius: 14px;
      color: var(--coal);
      background: rgba(255, 255, 255, .38);
      cursor: pointer;
      transition: border-color .2s ease, background .2s ease;
    }

    .nav-toggle:hover {
      border-color: rgba(7, 7, 7, .9);
      background: rgba(255, 255, 255, .58);
    }

    .nav-toggle::before,
    .nav-toggle span,
    .nav-toggle::after {
      content: "";
      width: 20px;
      height: 2px;
      display: block;
      border-radius: 999px;
      background: currentColor;
      transition: transform .28s cubic-bezier(.22, 1, .36, 1), opacity .2s ease, width .2s ease;
    }

    .nav-toggle:hover::before,
    .nav-toggle:hover::after {
      width: 14px;
    }

    .nav.is-open .nav-toggle::before,
    .nav.is-open .nav-toggle::after,
    .nav.is-open .nav-toggle:hover::before,
    .nav.is-open .nav-toggle:hover::after {
      width: 20px;
    }

    .nav.is-open .nav-toggle span {
      opacity: 0;
      transform: scaleX(0);
    }

    .nav.is-open .nav-toggle::before {
      transform: translateY(7px) rotate(45deg);
    }

    .nav.is-open .nav-toggle::after {
      transform: translateY(-7px) rotate(-45deg);
    }

    .nav-overlay {
      position: fixed;
      inset: 64px 0 0;
      z-index: 29;
      opacity: 0;
      pointer-events: none;
      background: rgba(7, 7, 7, .28);
      backdrop-filter: blur(2px);
      transition: opacity .25s ease;
    }

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

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 46px;
      padding: 0 18px;
      border: 1px solid transparent;
      border-radius: var(--radius);
      font-weight: 850;
      cursor: pointer;
      transition: transform .2s ease, border-color .2s ease, background .2s ease;
      white-space: nowrap;
    }

    .btn:hover {
      transform: translateY(-1px);
    }

    .btn-primary {
      color: #140d05;
      background: linear-gradient(135deg, var(--gold-light), var(--gold));
      box-shadow: 0 18px 40px rgba(201, 154, 56, .24);
    }

    .btn-outline {
      color: var(--coal);
      border-color: rgba(7, 7, 7, .18);
      background: rgba(255, 255, 255, .5);
    }

    .btn-red {
      color: white;
      background: var(--red);
      border-color: rgba(255, 255, 255, .08);
    }

    .wall-hero {
      padding: 72px 0 0;
      background: #f4f1e9;
      overflow: hidden;
    }

    .wall-hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 55%) minmax(360px, 45%);
      align-items: stretch;
      min-height: calc(100svh - 72px);
    }

    .wall-hero-crop {
      position: relative;
      overflow: hidden;
      background: #f4f1e9;
    }

    .wall-hero img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      object-position: center;
    }

    .hero-overlay {
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: clamp(28px, 4.5vw, 64px);
      overflow: hidden;
      background:
        linear-gradient(145deg, rgba(4, 3, 1, .99) 0%, rgba(10, 7, 2, .98) 50%, rgba(52, 10, 8, .97) 100%),
        radial-gradient(circle at 14% 10%, rgba(201, 154, 56, .14), transparent 36%),
        radial-gradient(circle at 88% 82%, rgba(185, 28, 28, .22), transparent 38%),
        #050301;
      border-left: 1px solid rgba(201, 154, 56, .2);
    }

    .hero-overlay::before {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background: linear-gradient(90deg, rgba(244, 241, 233, .06), transparent 28%);
      opacity: .42;
    }

    .hero-overlay > * {
      position: relative;
      z-index: 1;
    }

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

    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin: 0 0 12px;
      color: var(--gold-light);
      font-size: 12px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: .1em;
      opacity: 0;
      animation: heroFadeUp .7s cubic-bezier(.22, 1, .36, 1) .15s forwards;
    }

    .hero-tag::before {
      content: "";
      flex-shrink: 0;
      width: 26px;
      height: 2px;
      background: var(--gold-light);
    }

    .hero-headline {
      max-width: 680px;
      margin: 0 0 12px;
      color: white;
      font-size: clamp(26px, 4.6vw, 54px);
      line-height: 1.06;
      font-weight: 900;
      text-transform: uppercase;
      text-shadow: 0 2px 28px rgba(0, 0, 0, .46);
      opacity: 0;
      animation: heroFadeUp .75s cubic-bezier(.22, 1, .36, 1) .38s forwards;
    }

    .hero-sub {
      max-width: 540px;
      margin: 0 0 22px;
      color: rgba(255, 250, 241, .78);
      font-size: clamp(13px, 1.6vw, 16px);
      font-weight: 500;
      line-height: 1.65;
      opacity: 0;
      animation: heroFadeUp .7s cubic-bezier(.22, 1, .36, 1) .6s forwards;
    }

    .hero-btns {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      opacity: 0;
      animation: heroFadeUp .7s cubic-bezier(.22, 1, .36, 1) .82s forwards;
    }

    .btn-with-icon {
      gap: 9px;
    }

    .btn-with-icon svg {
      width: 18px;
      height: 18px;
      flex-shrink: 0;
      fill: none;
      stroke: currentColor;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .arts-list {
      position: relative;
      overflow: hidden;
      color: white;
      background:
        radial-gradient(circle at 8% 26%, rgba(185, 28, 28, .36), transparent 24%),
        radial-gradient(circle at 28% 82%, rgba(243, 201, 100, .26), transparent 26%),
        radial-gradient(circle at 76% 20%, rgba(37, 99, 235, .34), transparent 25%),
        radial-gradient(circle at 92% 72%, rgba(31, 175, 98, .24), transparent 24%),
        #17130f;
      padding: 54px 0;
    }

    .arts-list::before {
      content: "";
      position: absolute;
      inset: -68% -22%;
      background:
        repeating-conic-gradient(from 18deg at 50% 50%,
          rgba(185, 28, 28, .58) 0deg 18deg,
          transparent 18deg 36deg,
          rgba(243, 201, 100, .42) 36deg 54deg,
          transparent 54deg 76deg,
          rgba(37, 99, 235, .48) 76deg 94deg,
          transparent 94deg 116deg,
          rgba(31, 175, 98, .34) 116deg 132deg,
          transparent 132deg 156deg);
      opacity: .82;
      filter: blur(18px);
      transform: rotate(-11deg) scale(1.08);
      pointer-events: none;
    }

    .arts-list::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse at center, rgba(7, 7, 7, .08), rgba(7, 7, 7, .52) 72%),
        linear-gradient(180deg, rgba(7, 7, 7, .36), rgba(7, 7, 7, .08) 48%, rgba(7, 7, 7, .42));
      pointer-events: none;
    }

    .arts-list > .shell {
      position: relative;
      z-index: 1;
    }

    .arts-carousel {
      position: relative;
      border-radius: var(--radius);
      box-shadow: 0 0 90px rgba(37, 99, 235, .12), 0 0 120px rgba(185, 28, 28, .1);
    }

    .arts-carousel-window {
      overflow: hidden;
    }

    .arts-track {
      display: flex;
      gap: 14px;
      margin: 0;
      padding: 0;
      list-style: none;
      transition: transform .65s cubic-bezier(.22, 1, .36, 1);
      will-change: transform;
    }

    .arts-slide {
      flex: 0 0 100%;
      min-width: 0;
    }

    .arts-card {
      position: relative;
      min-height: 360px;
      overflow: hidden;
      border-radius: var(--radius);
      background: var(--coal);
      box-shadow: 0 16px 40px rgba(7, 7, 7, .12);
    }

    .arts-card img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .arts-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(7, 7, 7, .06), rgba(7, 7, 7, .78));
    }

    .arts-card h2 {
      position: absolute;
      inset: auto 16px 18px;
      z-index: 1;
      color: white;
      font-size: clamp(25px, 5vw, 40px);
      line-height: 1;
      text-align: center;
      text-transform: uppercase;
      text-shadow: 0 2px 18px rgba(0, 0, 0, .32);
    }

    .arts-controls {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 18px;
    }

    .arts-list .carousel-btn {
      border-color: rgba(255, 255, 255, .18);
      color: white;
      background: rgba(255, 255, 255, .08);
    }

    .arts-list .carousel-dot {
      background: rgba(255, 255, 255, .24);
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 18px;
      color: var(--red);
      font-size: 12px;
      font-weight: 900;
      text-transform: uppercase;
    }

    .eyebrow::before {
      content: "";
      width: 34px;
      height: 2px;
      background: var(--red);
    }

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

    h1 {
      max-width: 780px;
      margin-bottom: 16px;
      font-size: clamp(46px, 9vw, 92px);
      line-height: .92;
      letter-spacing: 0;
      text-transform: uppercase;
    }

    .tagline {
      max-width: 760px;
      margin-bottom: 18px;
      color: var(--red-dark);
      font-size: clamp(22px, 4vw, 42px);
      line-height: 1.08;
      font-weight: 900;
      text-transform: uppercase;
    }

    .showcase {
      color: var(--coal);
      background: var(--paper);
    }

    .showcase-top {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      align-items: end;
      justify-content: space-between;
      margin-bottom: 24px;
    }

    .showcase-top .section-head {
      flex: 1 1 680px;
      margin-bottom: 0;
    }

    .carousel-controls {
      display: flex;
      gap: 8px;
    }

    .carousel-btn {
      width: 46px;
      height: 46px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(7, 7, 7, .12);
      border-radius: var(--radius);
      color: var(--coal);
      background: white;
      font-size: 26px;
      font-weight: 900;
      cursor: pointer;
      transition: transform .2s ease, background .2s ease, color .2s ease;
    }

    .carousel-btn:hover {
      color: white;
      background: var(--red);
      transform: translateY(-1px);
    }

    .showcase-carousel {
      overflow: hidden;
    }

    .showcase-track {
      display: flex;
      gap: 14px;
      transition: transform .65s cubic-bezier(.22, 1, .36, 1);
      will-change: transform;
    }

    .showcase-slide {
      flex: 0 0 100%;
      min-width: 0;
    }

    .showcase-card {
      position: relative;
      min-height: 430px;
      overflow: hidden;
      border-radius: var(--radius);
      background: var(--coal);
      box-shadow: 0 18px 44px rgba(7, 7, 7, .14);
    }

    .showcase-card img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .showcase-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(7, 7, 7, .04), rgba(7, 7, 7, .82));
    }

    .showcase-content {
      position: absolute;
      inset: auto 0 0;
      z-index: 1;
      padding: 22px;
      color: white;
    }

    .showcase-content span {
      display: inline-flex;
      margin-bottom: 9px;
      color: var(--gold-light);
      font-size: 12px;
      font-weight: 900;
      text-transform: uppercase;
    }

    .showcase-content h3 {
      margin-bottom: 8px;
      font-size: clamp(22px, 3vw, 34px);
      line-height: 1.12;
    }

    .showcase-content p {
      margin-bottom: 0;
      color: rgba(255, 250, 241, .78);
    }

    .carousel-dots {
      display: flex;
      gap: 8px;
      justify-content: center;
      margin-top: 18px;
    }

    .carousel-dot {
      width: 28px;
      height: 4px;
      border: 0;
      border-radius: 999px;
      background: rgba(7, 7, 7, .18);
      cursor: pointer;
      transition: width .2s ease, background .2s ease;
    }

    .carousel-dot.is-active {
      width: 44px;
      background: var(--red);
    }

    section {
      padding: 76px 0;
      scroll-margin-top: 84px;
    }

    .light {
      color: var(--coal);
      background: var(--paper);
    }

    .white {
      color: var(--coal);
      background: white;
    }

    .band {
      color: white;
      background:
        linear-gradient(135deg, rgba(185, 28, 28, .32), transparent 34%),
        var(--coal);
    }

    .dark {
      position: relative;
      overflow: hidden;
      background:
        radial-gradient(circle at 12% 18%, rgba(243, 201, 100, .16), transparent 30%),
        radial-gradient(circle at 88% 12%, rgba(185, 28, 28, .2), transparent 28%),
        linear-gradient(135deg, #070707, #15110e 52%, #090909);
    }

    .dark::before {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background:
        linear-gradient(90deg, rgba(255, 250, 241, .05) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 250, 241, .04) 1px, transparent 1px);
      background-size: 72px 72px;
      mask-image: linear-gradient(180deg, transparent, #000 18%, #000 72%, transparent);
      opacity: .34;
    }

    .dark > .shell {
      position: relative;
      z-index: 1;
    }

    .spkm-card {
      display: grid;
      gap: 24px;
      align-items: start;
      border: 1px solid rgba(243, 201, 100, .22);
      border-radius: var(--radius);
      padding: clamp(24px, 5vw, 42px);
      background:
        linear-gradient(135deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .035)),
        rgba(7, 7, 7, .58);
      box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
      backdrop-filter: blur(14px);
    }

    .spkm-card .text-block {
      max-width: none;
    }

    .spkm-card p {
      color: rgba(255, 250, 241, .9);
    }

    .section-head {
      display: grid;
      gap: 14px;
      margin-bottom: 32px;
    }

    .section-head-stack {
      grid-template-columns: 1fr;
      align-items: start;
    }

    .section-head-center {
      justify-items: center;
      text-align: center;
    }

    .section-head-center p {
      max-width: 780px;
    }

    .kicker {
      color: var(--red);
      font-size: 12px;
      font-weight: 900;
      text-transform: uppercase;
    }

    .band .kicker,
    .dark .kicker {
      color: var(--gold-light);
    }

    h2 {
      margin-bottom: 0;
      font-size: clamp(30px, 5vw, 54px);
      line-height: 1.05;
      letter-spacing: 0;
    }

    .section-head p,
    .text-block p {
      color: var(--dark-muted);
      margin-bottom: 0;
      font-size: 17px;
    }

    .band .section-head p,
    .band .text-block p,
    .dark .section-head p {
      color: rgba(255, 250, 241, .72);
    }

    .text-block {
      max-width: 900px;
    }

    .split {
      display: grid;
      gap: 24px;
      align-items: start;
    }

    .panel {
      border: 1px solid var(--dark-line);
      border-radius: var(--radius);
      padding: 24px;
      background: white;
      box-shadow: 0 14px 34px rgba(7, 7, 7, .06);
    }

    .dark-panel {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 24px;
      background: rgba(255, 255, 255, .07);
      box-shadow: var(--shadow);
    }

    .panel h3,
    .dark-panel h3 {
      margin-bottom: 10px;
      font-size: 22px;
      line-height: 1.2;
    }

    .panel p,
    .dark-panel p {
      margin-bottom: 0;
      color: var(--dark-muted);
    }

    .dark-panel p {
      color: rgba(255, 250, 241, .72);
    }

    .quiz-wrap {
      display: grid;
      gap: 22px;
      max-width: 860px;
      margin: 0 auto;
    }

    .quiz-intro {
      color: rgba(255, 250, 241, .78);
      text-align: center;
    }

    .quiz-card {
      padding: 28px;
      border: 1px solid rgba(255, 250, 241, .12);
      border-radius: 18px;
      background: rgba(255, 250, 241, .04);
      box-shadow: 0 18px 50px rgba(0, 0, 0, .2);
      backdrop-filter: blur(10px);
    }

    .quiz-top {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 14px;
      margin-bottom: 18px;
      font-weight: 800;
    }

    .quiz-progress {
      color: var(--gold-light);
    }

    .quiz-score {
      color: rgba(255, 250, 241, .72);
    }

    .quiz-question {
      margin-bottom: 18px;
      font-size: clamp(24px, 4vw, 34px);
      line-height: 1.2;
    }

    .quiz-options {
      display: grid;
      gap: 12px;
    }

    .quiz-option {
      width: 100%;
      padding: 16px 18px;
      border: 1px solid rgba(255, 250, 241, .12);
      border-radius: 14px;
      color: white;
      background: rgba(255, 255, 255, .05);
      text-align: left;
      font: inherit;
      font-weight: 700;
      cursor: pointer;
      transition: transform .2s ease, border-color .2s ease, background .2s ease;
    }

    .quiz-option:hover {
      transform: translateY(-1px);
      border-color: rgba(243, 201, 100, .38);
      background: rgba(255, 255, 255, .08);
    }

    .quiz-option.is-correct {
      border-color: rgba(31, 175, 98, .74);
      background: rgba(31, 175, 98, .2);
    }

    .quiz-option.is-wrong {
      border-color: rgba(185, 28, 28, .82);
      background: rgba(185, 28, 28, .22);
    }

    .quiz-option:disabled {
      cursor: default;
      opacity: 1;
    }

    .quiz-feedback {
      min-height: 62px;
      margin-top: 18px;
      padding: 16px 18px;
      border-radius: 14px;
      font-weight: 700;
      background: rgba(255, 255, 255, .05);
    }

    .quiz-feedback.is-correct {
      color: #dff9ea;
      background: rgba(31, 175, 98, .18);
      border: 1px solid rgba(31, 175, 98, .44);
    }

    .quiz-feedback.is-wrong {
      color: #ffe2e2;
      background: rgba(185, 28, 28, .2);
      border: 1px solid rgba(185, 28, 28, .46);
    }

    .quiz-actions {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      gap: 14px;
      margin-top: 18px;
    }

    .quiz-hint {
      color: rgba(255, 250, 241, .66);
      font-size: 14px;
    }

    .quiz-result {
      display: none;
      text-align: center;
    }

    .quiz-result.is-visible {
      display: block;
    }

    .quiz-result h3 {
      margin-bottom: 12px;
      font-size: clamp(28px, 4.5vw, 42px);
    }

    .quiz-result p {
      color: rgba(255, 250, 241, .78);
    }

    .quiz-result strong {
      color: var(--gold-light);
    }

    .quiz-restart {
      margin-top: 18px;
    }

    .quiz-hidden {
      display: none;
    }

    .grid-2,
    .grid-3,
    .grid-5 {
      display: grid;
      gap: 14px;
    }

    .cards .panel {
      min-height: 174px;
    }

    .level-timeline {
      position: relative;
      display: grid;
      gap: 18px;
    }

    .level-timeline::before {
      content: "";
      position: absolute;
      left: 23px;
      top: 10px;
      bottom: 10px;
      width: 2px;
      background: linear-gradient(180deg, var(--gold-light), var(--red));
    }

    .level-item {
      position: relative;
      display: grid;
      gap: 16px;
      padding-left: 56px;
    }

    .level-dot {
      position: absolute;
      left: 0;
      top: 22px;
      width: 48px;
      height: 48px;
      display: grid;
      place-items: center;
      border: 2px solid var(--gold-light);
      border-radius: 50%;
      color: var(--gold-light);
      background: var(--black);
      font-weight: 900;
      box-shadow: 0 0 0 8px var(--paper);
    }

    .level-card {
      display: grid;
      overflow: hidden;
      border: 1px solid var(--dark-line);
      border-radius: var(--radius);
      background: white;
      box-shadow: 0 16px 42px rgba(7, 7, 7, .08);
    }

    .level-card img {
      width: 100%;
      height: 290px;
      object-fit: cover;
      object-position: top center;
      background: var(--black);
      cursor: zoom-in;
    }

    .image-modal {
      position: fixed;
      inset: 0;
      z-index: 80;
      display: none;
      place-items: center;
      padding: 22px;
      background: rgba(0, 0, 0, .86);
    }

    .image-modal.is-open {
      display: grid;
    }

    .image-modal img {
      max-width: min(100%, 1100px);
      max-height: 88svh;
      object-fit: contain;
      border-radius: var(--radius);
      box-shadow: 0 24px 70px rgba(0, 0, 0, .42);
      background: var(--black);
    }

    .image-modal button {
      position: absolute;
      top: 18px;
      right: 18px;
      width: 46px;
      height: 46px;
      border: 1px solid rgba(255, 255, 255, .24);
      border-radius: var(--radius);
      color: white;
      background: rgba(255, 255, 255, .1);
      font-size: 28px;
      line-height: 1;
      cursor: pointer;
    }

    .level-content {
      padding: 22px;
    }

    .level-content h3 {
      margin-bottom: 10px;
      font-size: clamp(22px, 3vw, 34px);
      line-height: 1.1;
    }

    .level-content p {
      margin-bottom: 0;
      color: var(--dark-muted);
    }

    .level-career {
      margin-top: 16px;
    }

    .level-career span {
      display: block;
      margin-bottom: 9px;
      color: var(--red);
      font-size: 11px;
      font-weight: 900;
      letter-spacing: .06em;
      text-transform: uppercase;
    }

    .level-career ul {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .level-career li {
      display: inline-flex;
      align-items: center;
      min-height: 32px;
      padding: 0 12px;
      border: 1px solid rgba(185, 28, 28, .16);
      border-radius: 999px;
      color: var(--coal);
      background: rgba(255, 255, 255, .72);
      font-size: 13px;
      font-weight: 800;
      line-height: 1.25;
    }

    .level-career li::marker {
      content: "";
    }

    .register-benefits {
      position: relative;
      overflow: hidden;
      color: white;
      background:
        linear-gradient(135deg, rgba(185, 28, 28, .18), transparent 34%),
        radial-gradient(circle at 12% 18%, rgba(243, 201, 100, .2), transparent 28%),
        radial-gradient(circle at 90% 12%, rgba(255, 250, 241, .08), transparent 30%),
        radial-gradient(circle at 80% 90%, rgba(185, 28, 28, .22), transparent 34%),
        #070605;
    }

    .register-benefits::before {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background:
        linear-gradient(90deg, rgba(255, 250, 241, .035) 1px, transparent 1px),
        linear-gradient(rgba(255, 250, 241, .025) 1px, transparent 1px);
      background-size: 42px 42px;
      mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .75), transparent 82%);
      opacity: .58;
    }

    .register-benefits::after {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background:
        repeating-linear-gradient(115deg,
          transparent 0 22px,
          rgba(255, 250, 241, .035) 22px 23px,
          transparent 23px 62px);
      opacity: .22;
    }

    .register-benefits .shell {
      position: relative;
      z-index: 1;
    }

    .register-benefits-head {
      max-width: 760px;
      margin: 0 auto 32px;
      text-align: center;
    }

    .register-benefits-head .kicker {
      color: var(--gold-light);
    }

    .register-benefits-head h2 {
      max-width: 720px;
      margin: 0 auto 12px;
      color: white;
      font-size: clamp(30px, 5vw, 54px);
      line-height: 1.02;
    }

    .register-benefits-head p {
      margin: 0;
      color: rgba(255, 250, 241, .74);
      font-size: clamp(15px, 2vw, 18px);
      font-weight: 800;
    }

    /* ── Benefit carousel ───────────────────────── */

    .benefit-carousel {
      position: relative;
    }

    .benefit-carousel-window {
      overflow: hidden;
    }

    .register-benefits-grid {
      display: flex;
      gap: 16px;
      margin: 0;
      padding: 0;
      list-style: none;
      transition: transform .65s cubic-bezier(.22, 1, .36, 1);
      will-change: transform;
    }

    .benefit-slide {
      flex: 0 0 100%;
      min-width: 0;
      display: flex;
      flex-direction: column;
    }

    .benefit-controls {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 18px;
    }

    /* ── Benefit card ───────────────────────────── */

    .register-benefit-card {
      display: flex;
      flex-direction: column;
      height: 100%;
      border: 1px solid rgba(243, 201, 100, .18);
      border-radius: var(--radius);
      background: var(--panel);
      box-shadow: 0 22px 54px rgba(0, 0, 0, .28);
      overflow: hidden;
      transition: transform .28s cubic-bezier(.22, 1, .36, 1), border-color .28s ease, box-shadow .28s ease;
    }

    .register-benefit-card:hover {
      transform: translateY(-4px);
      border-color: rgba(243, 201, 100, .42);
      box-shadow: 0 28px 70px rgba(0, 0, 0, .32), 0 0 30px rgba(201, 154, 56, .14);
    }

    .register-benefit-img-wrap {
      position: relative;
      flex-shrink: 0;
      height: clamp(190px, 22vw, 270px);
      overflow: hidden;
      background: var(--coal);
    }

    .register-benefit-img-wrap::after {
      content: "";
      position: absolute;
      inset: auto 0 0;
      height: 55%;
      pointer-events: none;
      z-index: 1;
      background: linear-gradient(to top,
        rgba(0, 0, 0, .90) 0%,
        rgba(0, 0, 0, .62) 44%,
        rgba(0, 0, 0, .06) 80%,
        transparent 100%);
    }

    .register-benefit-image {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      object-position: center;
      transform: scale(1.01);
      transition: transform .55s cubic-bezier(.22, 1, .36, 1), filter .28s ease;
    }

    .register-benefit-card:hover .register-benefit-image {
      transform: scale(1.055);
      filter: saturate(1.06) contrast(1.04);
    }

    .register-benefit-title {
      position: absolute;
      inset: auto 0 0;
      z-index: 2;
      margin: 0;
      padding: clamp(14px, 2vw, 20px);
      color: white;
      font-size: clamp(18px, 2.2vw, 23px);
      line-height: 1.18;
      text-shadow: 0 2px 14px rgba(0, 0, 0, .5);
    }

    .register-benefit-body {
      flex: 1;
      padding: clamp(16px, 2.5vw, 22px);
    }

    .register-benefit-body p {
      color: rgba(255, 250, 241, .72);
      font-size: 14px;
      line-height: 1.65;
      margin-bottom: 14px;
    }

    .register-benefit-body ul {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .register-benefit-body li {
      display: inline-flex;
      align-items: center;
      min-height: 28px;
      padding: 0 11px;
      border: 1px solid rgba(255, 250, 241, .12);
      border-radius: 999px;
      color: rgba(255, 250, 241, .84);
      background: rgba(255, 255, 255, .06);
      font-size: 12px;
      font-weight: 800;
      line-height: 1.25;
    }

    .benefit-stat-strip {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
      margin-top: 22px;
      padding: 14px;
      border: 1px solid rgba(243, 201, 100, .22);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, .06);
      box-shadow: 0 18px 44px rgba(0, 0, 0, .18);
      backdrop-filter: blur(12px);
    }

    .benefit-stat-strip span {
      display: inline-flex;
      align-items: center;
      min-height: 34px;
      padding: 0 14px;
      border-radius: 999px;
      color: #150f07;
      background: linear-gradient(135deg, var(--gold-light), var(--gold));
      font-size: 12px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: .04em;
      box-shadow: 0 10px 24px rgba(201, 154, 56, .16);
    }

    .career-section {
      color: var(--coal);
      background: #fffaf1;
    }

    .career-carousel {
      position: relative;
    }

    .career-carousel-window {
      overflow: hidden;
    }

    .career-grid {
      display: flex;
      gap: 18px;
      margin: 0;
      padding: 0;
      list-style: none;
      transition: transform .65s cubic-bezier(.22, 1, .36, 1);
      will-change: transform;
    }

    .career-slide {
      flex: 0 0 100%;
      min-width: 0;
    }

    .career-card {
      position: relative;
      overflow: hidden;
      border-radius: var(--radius);
      background: var(--coal);
      box-shadow: 0 18px 44px rgba(7, 7, 7, .14);
      min-height: 420px;
    }

    .career-card img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top center;
      background: var(--black);
    }

    .career-content {
      position: absolute;
      inset: auto 0 0;
      display: flex;
      flex-direction: column;
      padding: 28px 22px 22px;
      background: linear-gradient(to top,
        rgba(0, 0, 0, .92) 0%,
        rgba(0, 0, 0, .78) 45%,
        rgba(0, 0, 0, .2) 78%,
        transparent 100%);
      z-index: 1;
    }

    .career-content h3 {
      margin-bottom: 8px;
      font-size: clamp(20px, 2.6vw, 26px);
      line-height: 1.12;
      color: white;
    }

    .career-content p {
      margin-bottom: 0;
      color: rgba(255, 250, 241, .78);
      font-size: 14px;
    }

    .career-controls {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 18px;
    }

    .number {
      width: 38px;
      height: 38px;
      display: grid;
      place-items: center;
      margin-bottom: 18px;
      border-radius: var(--radius);
      color: white;
      background: var(--red);
      font-weight: 900;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      min-height: 30px;
      padding: 0 10px;
      margin-bottom: 14px;
      border-radius: 999px;
      color: #150f07;
      background: var(--gold-light);
      font-size: 12px;
      font-weight: 900;
      text-transform: uppercase;
    }

    .college-media {
      overflow: hidden;
      border-radius: var(--radius);
      min-height: 360px;
      background: var(--coal);
    }

    .college-media img {
      width: 100%;
      height: 100%;
      min-height: 360px;
      object-fit: cover;
    }

    .career-list,
    .community-list {
      margin: 0;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 12px;
    }

    .career-list li,
    .community-list li {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      padding: 16px;
      border: 1px solid rgba(255, 255, 255, .12);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, .06);
      color: rgba(255, 250, 241, .84);
      font-weight: 750;
    }

    .career-list li::before,
    .community-list li::before {
      content: "";
      flex: 0 0 10px;
      width: 10px;
      height: 10px;
      margin-top: 8px;
      border-radius: 50%;
      background: var(--gold-light);
    }

    .steps {
      counter-reset: step;
    }

    .step {
      position: relative;
      padding-left: 72px;
    }

    .step::before {
      counter-increment: step;
      content: "0" counter(step);
      position: absolute;
      left: 24px;
      top: 24px;
      color: var(--gold-light);
      font-weight: 900;
    }

    .registration {
      background:
        linear-gradient(135deg, rgba(185, 28, 28, .88), rgba(7, 7, 7, .98) 42%, var(--coal)),
        var(--coal);
    }

    form {
      display: grid;
      gap: 14px;
      padding: 22px;
      border: 1px solid rgba(255, 255, 255, .16);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, .08);
      box-shadow: var(--shadow);
      backdrop-filter: blur(12px);
    }

    label {
      display: grid;
      gap: 7px;
      color: rgba(255, 250, 241, .82);
      font-size: 13px;
      font-weight: 850;
    }

    input,
    select,
    textarea {
      width: 100%;
      min-height: 48px;
      border: 1px solid rgba(255, 255, 255, .18);
      border-radius: var(--radius);
      padding: 12px 13px;
      color: white;
      background: rgba(0, 0, 0, .26);
      font: inherit;
    }

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

    input::placeholder,
    textarea::placeholder {
      color: rgba(255, 250, 241, .44);
    }

    select option {
      color: var(--coal);
    }

    .form-grid {
      display: grid;
      gap: 14px;
    }

    .form-message {
      display: none;
      margin: 0;
      padding: 13px;
      border-radius: var(--radius);
      color: #12200c;
      background: #d9f7cb;
      font-weight: 800;
    }

    .form-message.is-visible {
      display: block;
    }

    .whatsapp-float {
      position: fixed;
      right: 18px;
      bottom: 18px;
      z-index: 40;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 58px;
      height: 58px;
      border-radius: 50%;
      color: white;
      background: #1faf62;
      box-shadow: 0 18px 40px rgba(0, 0, 0, .28);
      font-weight: 900;
      font-size: 15px;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    }

    .whatsapp-float:hover {
      transform: translateY(-2px);
      background: #20bd69;
      box-shadow: 0 22px 46px rgba(0, 0, 0, .34);
    }

    .whatsapp-icon {
      display: block;
      width: 33px;
      height: 33px;
      fill: currentColor;
    }

    footer {
      padding: 34px 0;
      color: rgba(255, 250, 241, .68);
      background: #050505;
      font-size: 14px;
    }

    .footer-inner {
      display: grid;
      gap: 8px;
    }

    .footer-inner strong {
      color: white;
      font-size: 18px;
    }

    /* ── Inline link ────────────────────────────── */

    .inline-link {
      color: var(--red);
      font-weight: 800;
      text-decoration: underline;
      text-decoration-color: rgba(185, 28, 28, .38);
      text-underline-offset: 3px;
      transition: color .2s ease, text-decoration-color .2s ease;
    }

    .inline-link:hover {
      color: var(--red-dark);
      text-decoration-color: var(--red-dark);
    }

    /* ── Level cards ────────────────────────────── */

    .level-list {
      display: grid;
      gap: 16px;
    }

    .level-card {
      border: 1px solid var(--dark-line);
      border-radius: var(--radius);
      background: white;
      overflow: hidden;
      box-shadow: 0 4px 18px rgba(7, 7, 7, .05);
      transition: box-shadow .2s ease, transform .2s ease;
    }

    .level-card:hover {
      box-shadow: 0 12px 40px rgba(7, 7, 7, .1);
      transform: translateY(-2px);
    }

    .level-card-head {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px 20px;
      padding: 14px 22px;
      background: #faf8f4;
      border-bottom: 1px solid var(--dark-line);
    }

    .level-badge {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      min-height: 32px;
      padding: 0 14px;
      border-radius: 999px;
      color: white;
      background: linear-gradient(135deg, var(--red), var(--red-dark));
      font-size: 11px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: .06em;
      flex-shrink: 0;
    }

    .level-badge-num {
      font-size: 17px;
      font-weight: 900;
    }

    .level-head-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 4px 22px;
      flex: 1;
    }

    .level-head-item {
      font-size: 13px;
      color: var(--dark-muted);
      font-weight: 700;
    }

    .level-head-item strong {
      color: var(--coal);
    }

    .level-card-body {
      padding: 20px 22px 14px;
    }

    .level-card-body h3 {
      margin: 0 0 10px;
      font-size: clamp(17px, 2.2vw, 21px);
      line-height: 1.15;
      color: var(--coal);
    }

    .level-focus-pill {
      display: inline-flex;
      align-items: center;
      min-height: 26px;
      padding: 0 12px;
      margin-bottom: 12px;
      border-radius: 999px;
      background: rgba(185, 28, 28, .08);
      color: var(--red);
      font-size: 12px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: .04em;
    }

    .level-desc {
      margin: 0;
      color: var(--dark-muted);
      font-size: 15px;
      line-height: 1.65;
    }

    .level-card-foot {
      display: grid;
      gap: 10px;
      padding: 14px 22px 18px;
      border-top: 1px solid var(--dark-line);
      background: #faf8f4;
    }

    .level-foot-row {
      display: flex;
      gap: 10px;
      font-size: 14px;
      line-height: 1.45;
    }

    .level-foot-label {
      flex-shrink: 0;
      width: 92px;
      color: var(--coal);
      font-size: 11px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: .04em;
      padding-top: 2px;
    }

    .level-foot-val {
      color: var(--dark-muted);
      font-weight: 600;
    }

    @media (min-width: 720px) {
      .level-card-foot {
        grid-template-columns: 1fr 1fr;
      }
    }

    /* ── Tahap page ─────────────────────────────── */

    .page-hero {
      padding: 108px 0 56px;
      color: white;
      background:
        linear-gradient(135deg, rgba(185, 28, 28, .28), transparent 36%),
        var(--coal);
    }

    .page-back {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 28px;
      color: rgba(255, 250, 241, .62);
      font-size: 14px;
      font-weight: 700;
      transition: color .2s ease;
    }

    .page-back:hover {
      color: var(--gold-light);
    }

    .tahap-jumps {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 28px;
    }

    .tahap-jump {
      display: inline-flex;
      align-items: center;
      min-height: 36px;
      padding: 0 16px;
      border: 1px solid rgba(255, 250, 241, .22);
      border-radius: 999px;
      color: rgba(255, 250, 241, .78);
      font-size: 13px;
      font-weight: 800;
      transition: border-color .2s ease, color .2s ease, background .2s ease;
    }

    .tahap-jump:hover {
      border-color: rgba(243, 201, 100, .56);
      color: var(--gold-light);
      background: rgba(243, 201, 100, .08);
    }

    .overview-cards {
      display: grid;
      gap: 14px;
    }

    .overview-card {
      display: flex;
      flex-direction: column;
      gap: 0;
      padding: clamp(20px, 3vw, 28px);
      border: 1px solid var(--dark-line);
      border-radius: var(--radius);
      background: white;
      box-shadow: 0 14px 34px rgba(7, 7, 7, .06);
    }

    .overview-card .badge {
      margin-bottom: 12px;
    }

    .overview-card h3 {
      margin-bottom: 8px;
      font-size: 20px;
      line-height: 1.15;
    }

    .overview-card p {
      color: var(--dark-muted);
      font-size: 14px;
      margin-bottom: 0;
      flex: 1;
    }

    .overview-card-foot {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      padding-top: 16px;
      margin-top: 16px;
      border-top: 1px solid var(--dark-line);
    }

    .overview-stat {
      font-size: 12px;
      font-weight: 700;
      color: var(--dark-muted);
    }

    .overview-stat strong {
      display: block;
      color: var(--coal);
      font-size: 14px;
    }

    .detail-split {
      display: grid;
      gap: 20px;
      align-items: start;
    }

    .stat-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
    }

    .stat-cell {
      padding: 14px 16px;
      border: 1px solid var(--dark-line);
      border-radius: var(--radius);
      background: white;
    }

    .stat-cell dt {
      margin-bottom: 4px;
      color: var(--dark-muted);
      font-size: 11px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: .04em;
    }

    .stat-cell dd {
      margin: 0;
      color: var(--coal);
      font-weight: 800;
      font-size: 15px;
      line-height: 1.3;
    }

    .dark .stat-cell {
      border-color: rgba(255, 250, 241, .12);
      background: rgba(255, 255, 255, .06);
    }

    .dark .stat-cell dt {
      color: rgba(255, 250, 241, .5);
    }

    .dark .stat-cell dd {
      color: white;
    }

    .module-list {
      margin: 0;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 8px;
    }

    .module-list li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 13px 16px;
      border: 1px solid var(--dark-line);
      border-radius: var(--radius);
      background: white;
      color: var(--coal);
      font-weight: 700;
      font-size: 15px;
    }

    .module-list li::before {
      content: "";
      flex: 0 0 8px;
      width: 8px;
      height: 8px;
      margin-top: 6px;
      border-radius: 50%;
      background: var(--red);
    }

    .dark .module-list li {
      border-color: rgba(255, 250, 241, .12);
      background: rgba(255, 255, 255, .06);
      color: rgba(255, 250, 241, .9);
    }

    .dark .module-list li::before {
      background: var(--gold-light);
    }

    .career-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .career-tag {
      display: inline-flex;
      align-items: center;
      min-height: 34px;
      padding: 0 14px;
      border: 1px solid rgba(7, 7, 7, .14);
      border-radius: 999px;
      background: rgba(7, 7, 7, .04);
      color: var(--coal);
      font-size: 13px;
      font-weight: 800;
    }

    .dark .career-tag {
      border-color: rgba(255, 250, 241, .18);
      background: rgba(255, 255, 255, .08);
      color: rgba(255, 250, 241, .88);
    }

    .tahap-anchor {
      scroll-margin-top: 88px;
    }

    @media (min-width: 720px) {
      .overview-cards {
        grid-template-columns: repeat(3, 1fr);
      }

      .detail-split {
        grid-template-columns: 1fr 1.5fr;
      }
    }

    @media (min-width: 720px) {
      .shell {
        width: min(1120px, calc(100% - 56px));
      }

      .section-head {
        grid-template-columns: .9fr 1fr;
        align-items: end;
      }

      .section-head-stack {
        grid-template-columns: 1fr;
        align-items: start;
      }

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

      .register-benefits-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        transform: none !important;
      }

      .benefit-slide {
        flex-basis: auto;
        height: 100%;
      }

      .benefit-controls,
      .benefit-carousel .carousel-dots {
        display: none;
      }

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

      .career-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        transform: none !important;
        align-items: stretch;
      }

      .career-slide {
        flex-basis: auto;
        height: 100%;
        display: flex;
        flex-direction: column;
      }

      .career-slide .career-card {
        flex: 1;
        min-height: 460px;
      }

      .career-controls,
      .career-carousel .carousel-dots {
        display: none;
      }

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

      .showcase-slide {
        flex-basis: calc((100% - 14px) / 2);
      }

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

      .level-timeline::before {
        left: 50%;
        transform: translateX(-50%);
      }

      .level-item {
        grid-template-columns: 1fr 1fr;
        align-items: center;
        padding-left: 0;
      }

      .level-item:nth-child(even) .level-card {
        grid-column: 2;
      }

      .level-item:nth-child(even) .level-note {
        grid-column: 1;
        grid-row: 1;
        text-align: right;
      }

      .level-dot {
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
      }

      .level-card {
        margin-right: 42px;
      }

      .level-item:nth-child(even) .level-card {
        margin-right: 0;
        margin-left: 42px;
      }

      .level-note {
        padding: 0 42px;
      }

      .level-item:nth-child(even) .level-career ul {
        justify-content: flex-end;
      }

      .footer-inner {
        grid-template-columns: 1fr auto;
        align-items: center;
      }
    }

    @media (min-width: 980px) {
      section {
        padding: 96px 0;
      }
    }

    @media (min-width: 1100px) {
      .arts-list .shell {
        width: min(1760px, calc(100% - 72px));
      }

      .arts-carousel-window {
        overflow: visible;
      }

      .arts-track {
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        transform: none !important;
      }

      .arts-slide {
        flex-basis: auto;
      }

      .arts-card {
        min-height: 330px;
      }

      .arts-controls,
      .arts-carousel .carousel-dots {
        display: none;
      }
    }

    @media (max-width: 900px) {
      .wall-hero-grid {
        grid-template-columns: 1fr;
        min-height: 0;
      }

      .wall-hero-crop {
        min-height: 320px;
      }

      .hero-overlay {
        padding: clamp(28px, 7vw, 56px) clamp(20px, 6vw, 48px);
        border-left: 0;
        border-top: 1px solid rgba(201, 154, 56, .3);
      }
    }

    @media (max-width: 540px) {
      .nav {
        min-height: 64px;
        justify-content: flex-end;
      }

      .nav-links {
        position: absolute;
        top: calc(100% + 10px);
        right: 0;
        width: min(290px, calc(100vw - 32px));
        max-height: 0;
        overflow: hidden;
        overflow-y: auto;
        display: grid;
        gap: 0;
        border: 1px solid rgba(7, 7, 7, .1);
        border-radius: var(--radius);
        background: #f4f1e9;
        box-shadow: 0 22px 50px rgba(7, 7, 7, .16);
        font-size: 14px;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-6px);
        transition: max-height .3s cubic-bezier(.22, 1, .36, 1), opacity .22s ease, transform .28s cubic-bezier(.22, 1, .36, 1);
      }

      .nav.is-open .nav-links {
        max-height: calc(100svh - 92px);
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
      }

      .nav-links a {
        padding: 15px 16px;
        border-bottom: 1px solid rgba(7, 7, 7, .08);
      }

      .nav-links a:last-child {
        border-bottom: 0;
      }

      .nav-toggle {
        display: flex;
      }

      .wall-hero {
        padding-top: 64px;
      }

      .wall-hero-crop {
        min-height: 260px;
      }

      .hero-headline {
        font-size: clamp(30px, 12vw, 44px);
      }

      .hero-btns .btn {
        width: 100%;
        justify-content: center;
      }

      .arts-list {
        padding: 40px 0;
      }

      .arts-card {
        min-height: 390px;
      }
    }

    /* ── Gallery section ────────────────────────── */

    .gallery-section {
      position: relative;
      overflow: hidden;
      color: var(--coal);
      background:
        linear-gradient(135deg, rgba(185, 28, 28, .06), transparent 34%),
        linear-gradient(315deg, rgba(243, 201, 100, .16), transparent 38%),
        var(--paper);
    }

    .gallery-section .section-head {
      color: var(--coal);
    }

    .gallery-section .section-head p {
      color: var(--dark-muted);
    }

    .gallery-section .kicker {
      color: var(--red);
    }

    /* Bento grid — 4 cols, fixed row height */
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-auto-rows: clamp(150px, 18vw, 250px);
      gap: 8px;
      padding: 8px;
      border: 1px solid rgba(7, 7, 7, .08);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, .62);
      box-shadow: 0 22px 54px rgba(7, 7, 7, .08);
    }

    /* Feature: first image is 2×2 */
    .gallery-thumb:nth-child(1) {
      grid-column: span 2;
      grid-row: span 2;
    }

    /* Wide: image 8 spans 2 cols */
    .gallery-thumb:nth-child(8) {
      grid-column: span 2;
    }

    /* Wide: image 9 spans 2 cols */
    .gallery-thumb:nth-child(9) {
      grid-column: span 2;
    }

    /* Mobile: simple 2-col equal grid */
    @media (max-width: 719px) {
      .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: clamp(120px, 38vw, 200px);
      }

      .gallery-thumb:nth-child(1),
      .gallery-thumb:nth-child(8),
      .gallery-thumb:nth-child(9) {
        grid-column: span 1;
        grid-row: span 1;
      }
    }

    /* Tablet: 3-col layout */
    @media (min-width: 720px) and (max-width: 899px) {
      .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    .gallery-thumb {
      position: relative;
      display: block;
      overflow: hidden;
      border: 0;
      border-radius: var(--radius);
      padding: 0;
      background: white;
      box-shadow: 0 10px 24px rgba(7, 7, 7, .08);
      cursor: zoom-in;
    }

    .gallery-thumb img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
      transition: transform .5s cubic-bezier(.22, 1, .36, 1), filter .3s ease;
    }

    .gallery-thumb:hover img {
      transform: scale(1.06);
      filter: brightness(1.05);
    }

    .gallery-thumb-zoom {
      position: absolute;
      inset: 0;
      display: grid;
      place-items: center;
      opacity: 0;
      background: rgba(7, 7, 7, .34);
      transition: opacity .25s ease;
    }

    .gallery-thumb-zoom svg {
      width: 36px;
      height: 36px;
      stroke: white;
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      filter: drop-shadow(0 2px 8px rgba(0,0,0,.5));
    }

    .gallery-thumb:hover .gallery-thumb-zoom {
      opacity: 1;
    }

    /* ── Gallery lightbox ───────────────────────── */

    .gallery-lightbox {
      position: fixed;
      inset: 0;
      z-index: 90;
      display: none;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      background: rgba(0, 0, 0, .94);
      backdrop-filter: blur(6px);
    }

    .gallery-lightbox.is-open {
      display: flex;
    }

    .gallery-lb-stage {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      padding: 60px 72px;
      min-height: 0;
    }

    .gallery-lb-stage img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      border-radius: var(--radius);
      box-shadow: 0 32px 80px rgba(0, 0, 0, .6);
      transition: opacity .22s ease;
    }

    .gallery-lb-stage img.is-loading {
      opacity: 0;
    }

    .gallery-lb-close {
      position: absolute;
      top: 16px;
      right: 16px;
      width: 46px;
      height: 46px;
      border: 1px solid rgba(255, 255, 255, .22);
      border-radius: var(--radius);
      color: white;
      background: rgba(255, 255, 255, .1);
      font-size: 28px;
      line-height: 1;
      cursor: pointer;
      transition: background .2s ease, border-color .2s ease;
      z-index: 1;
    }

    .gallery-lb-close:hover {
      background: rgba(255, 255, 255, .2);
      border-color: rgba(255, 255, 255, .4);
    }

    /* Ecosystem / Portal TVET EDU section */

    .ecosystem-section {
      padding: clamp(72px, 9vw, 118px) 0;
      position: relative;
      overflow: hidden;
      color: var(--coal);
      background:
        linear-gradient(135deg, rgba(185, 28, 28, .08), transparent 34%),
        linear-gradient(315deg, rgba(243, 201, 100, .18), transparent 36%),
        #fffaf1;
      isolation: isolate;
    }

    .ecosystem-section::before {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background:
        linear-gradient(90deg, rgba(7, 7, 7, .045) 1px, transparent 1px),
        linear-gradient(180deg, rgba(7, 7, 7, .035) 1px, transparent 1px);
      background-size: 72px 72px;
      mask-image: linear-gradient(180deg, transparent, #000 18%, #000 72%, transparent);
      opacity: .58;
    }

    .ecosystem-section::after {
      content: "";
      position: absolute;
      inset: auto 0 0;
      height: 42%;
      pointer-events: none;
      background: linear-gradient(180deg, transparent, rgba(201, 154, 56, .16));
      opacity: .72;
    }

    .ecosystem-section > .shell {
      position: relative;
      z-index: 1;
      width: min(1180px, calc(100% - 32px));
    }

    .eco-badge-wrap {
      display: flex;
      justify-content: center;
      margin-bottom: 26px;
    }

    .eco-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      max-width: min(100%, 680px);
      min-height: 34px;
      padding: 8px 20px;
      border: 1px solid rgba(243, 201, 100, .42);
      border-radius: 999px;
      color: var(--red-dark);
      font-size: 12px;
      font-weight: 900;
      line-height: 1.35;
      text-align: center;
      text-transform: uppercase;
      background:
        linear-gradient(135deg, rgba(243, 201, 100, .22), rgba(255, 255, 255, .72)),
        rgba(255, 255, 255, .84);
      box-shadow: 0 14px 34px rgba(7, 7, 7, .08);
    }

    .ecosystem-section .section-head {
      margin-bottom: 0;
    }

    .ecosystem-section h2 {
      max-width: 880px;
      color: var(--coal);
      font-size: clamp(34px, 5.2vw, 62px);
      text-wrap: balance;
    }

    .ecosystem-section .section-head p {
      max-width: 860px;
      color: var(--dark-muted);
      font-size: clamp(16px, 1.7vw, 19px);
      line-height: 1.75;
    }

    .eco-features-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 12px;
      margin: clamp(34px, 5vw, 54px) 0 0;
    }

    .eco-feature-item {
      display: flex;
      align-items: center;
      gap: 15px;
      min-height: 88px;
      padding: 18px 20px;
      border: 1px solid rgba(7, 7, 7, .1);
      border-radius: var(--radius);
      background:
        linear-gradient(145deg, rgba(255, 255, 255, .9), rgba(255, 250, 241, .68)),
        rgba(255, 255, 255, .84);
      color: var(--coal);
      font-size: 14px;
      font-weight: 800;
      line-height: 1.35;
      box-shadow: 0 18px 38px rgba(7, 7, 7, .07);
      transition: transform .2s ease, border-color .2s ease, background .2s ease;
    }

    .eco-feature-item:hover {
      transform: translateY(-2px);
      border-color: rgba(243, 201, 100, .38);
      background:
        linear-gradient(145deg, rgba(255, 255, 255, .96), rgba(243, 201, 100, .14)),
        rgba(255, 255, 255, .9);
    }

    .eco-feature-item span {
      min-width: 0;
    }

    .eco-feature-icon {
      flex-shrink: 0;
      position: relative;
      width: 52px;
      height: 52px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(185, 28, 28, .18);
      border-radius: 50%;
      background:
        radial-gradient(circle at 35% 30%, rgba(255, 255, 255, .88), transparent 34%),
        linear-gradient(145deg, rgba(243, 201, 100, .26), rgba(185, 28, 28, .1)),
        rgba(255, 255, 255, .9);
      box-shadow:
        inset 0 0 0 5px rgba(255, 255, 255, .46),
        0 12px 24px rgba(7, 7, 7, .1);
    }

    .eco-feature-icon::after {
      content: "";
      position: absolute;
      inset: -5px;
      border: 1px solid rgba(185, 28, 28, .1);
      border-radius: inherit;
    }

    .eco-feature-icon svg {
      position: relative;
      z-index: 1;
      width: 23px;
      height: 23px;
      stroke: var(--red);
      fill: none;
      stroke-width: 1.9;
      stroke-linecap: round;
      stroke-linejoin: round;
      filter: drop-shadow(0 2px 4px rgba(185, 28, 28, .12));
    }

    .eco-vm-grid {
      display: grid;
      grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
      gap: 18px;
      align-items: stretch;
      margin-top: 28px;
    }

    .eco-vm-card {
      position: relative;
      overflow: hidden;
      padding: clamp(24px, 4vw, 38px);
      border: 1px solid rgba(7, 7, 7, .1);
      border-radius: var(--radius);
      background:
        linear-gradient(145deg, rgba(255, 255, 255, .92), rgba(255, 250, 241, .72)),
        rgba(255, 255, 255, .86);
      box-shadow: 0 22px 52px rgba(7, 7, 7, .08);
      backdrop-filter: blur(10px);
      text-align: center;
    }

    .eco-vm-label {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 88px;
      min-height: 34px;
      margin: 0 auto 18px;
      padding: 7px 18px;
      border: 1px solid rgba(243, 201, 100, .24);
      border-radius: 999px;
      color: var(--red-dark);
      background: rgba(243, 201, 100, .14);
      font-size: 14px;
      font-weight: 900;
      text-transform: uppercase;
    }

    .eco-vm-card p {
      color: var(--coal);
      font-size: clamp(18px, 2vw, 21px);
      line-height: 1.65;
      margin: 0;
    }

    .eco-vm-list {
      padding: 0;
      list-style: none;
      display: grid;
      gap: 13px;
      max-width: 620px;
      margin: 0 auto;
    }

    .eco-vm-list li {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      justify-content: center;
      color: var(--coal);
      font-size: clamp(15px, 1.55vw, 17px);
      line-height: 1.6;
      text-align: left;
    }

    .eco-vm-list li::before {
      content: "";
      flex-shrink: 0;
      width: 7px;
      height: 7px;
      margin-top: 8px;
      border-radius: 50%;
      background: var(--red);
      box-shadow: 0 0 0 4px rgba(243, 201, 100, .09);
    }

    @media (max-width: 1080px) {
      .eco-features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 899px) {
      .eco-vm-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 479px) {
      .ecosystem-section > .shell {
        width: min(1180px, calc(100% - 24px));
      }

      .eco-badge {
        border-radius: var(--radius);
        font-size: 10px;
      }

      .eco-features-grid {
        grid-template-columns: 1fr;
        gap: 10px;
      }

      .eco-feature-item {
        min-height: 74px;
        padding: 14px;
      }

      .eco-feature-icon {
        width: 44px;
        height: 44px;
      }

      .eco-feature-icon svg {
        width: 20px;
        height: 20px;
      }

      .eco-vm-card {
        padding: 24px 18px;
      }
    }

    .graduate-data-section {
      position: relative;
      overflow: hidden;
      padding: clamp(56px, 8vw, 88px) 0;
      color: white;
      background:
        radial-gradient(circle at 12% 22%, rgba(243, 201, 100, .2), transparent 30%),
        linear-gradient(135deg, rgba(185, 28, 28, .28), transparent 38%),
        #090706;
    }

    .graduate-data-section::before {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background:
        linear-gradient(90deg, rgba(255, 250, 241, .05) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 250, 241, .04) 1px, transparent 1px);
      background-size: 56px 56px;
      opacity: .34;
    }

    .graduate-data-section .shell {
      position: relative;
      z-index: 1;
    }

    .graduate-data-callout {
      width: min(70vw, 1040px);
      margin: 0 auto;
      padding: 0;
      text-align: center;
    }

    .graduate-data-callout p {
      max-width: none;
      margin: 0 auto 24px;
      color: white;
      font-size: clamp(24px, 3.1vw, 42px);
      font-weight: 900;
      line-height: 1.24;
      text-transform: uppercase;
      text-wrap: balance;
    }

    .graduate-data-actions {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 12px;
    }

    @media (max-width: 900px) {
      .graduate-data-callout {
        width: min(100%, 720px);
      }
    }

    .gallery-lb-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 52px;
      height: 52px;
      border: 1px solid rgba(255, 255, 255, .22);
      border-radius: var(--radius);
      color: white;
      background: rgba(255, 255, 255, .1);
      font-size: 32px;
      font-weight: 300;
      line-height: 1;
      cursor: pointer;
      transition: background .2s ease, transform .2s ease;
      display: grid;
      place-items: center;
    }

    .gallery-lb-nav:hover {
      background: rgba(255, 255, 255, .2);
      transform: translateY(-50%) scale(1.06);
    }

    .gallery-lb-prev {
      left: 14px;
    }

    .gallery-lb-next {
      right: 14px;
    }

    .gallery-lb-counter {
      position: absolute;
      bottom: 18px;
      left: 50%;
      transform: translateX(-50%);
      color: rgba(255, 255, 255, .62);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: .06em;
      white-space: nowrap;
    }
