:root {
      --gold:       #E8A820;
      --gold-2:     #D4960E;
      --gold-dim:   rgba(232,168,32,0.10);
      --gold-glow:  rgba(232,168,32,0.22);
      --brown:      #7C4212;
      --brown-2:    #5A2D08;
      --bg-0:       #FFFFFF;
      --bg-1:       #FAFAF8;
      --bg-2:       #F5EFE4;
      --bg-card:    #FFFFFF;
      --border:     #E8DDD0;
      --border-h:   #D4A020;
      --text:       #1C1008;
      --text-muted: #6B5540;
      --text-dim:   #9C8870;
      --white:      #FFFFFF;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', sans-serif;
      background: var(--bg-0);
      color: var(--text);
      line-height: 1.65;
      overflow-x: hidden;
    }

    /* ─────────── SCROLLBAR ─────────── */
    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: var(--bg-1); }
    ::-webkit-scrollbar-thumb { background: var(--brown); border-radius: 3px; }

    /* ─────────── NAV ─────────── */
    header {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 200;
      padding: 0 32px;
      background: rgba(255,255,255,0.92);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
    }

    .nav-inner {
      max-width: 1240px;
      margin: 0 auto;
      height: 64px;
      display: flex;
      align-items: center;
      gap: 40px;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 11px;
      text-decoration: none;
      flex-shrink: 0;
    }

    .nav-logo-badge {
      width: 36px; height: 36px;
      border-radius: 50%;
      overflow: hidden;
      border: 1.5px solid var(--gold-2);
      flex-shrink: 0;
    }

    .nav-logo-badge img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
    }

    .nav-logo-text {
      font-size: 13px;
      font-weight: 700;
      color: var(--text);
      line-height: 1.2;
      letter-spacing: -0.2px;
    }

    .nav-logo-text span {
      display: block;
      font-size: 11px;
      font-weight: 400;
      color: var(--text-muted);
    }

    nav {
      display: flex;
      gap: 2px;
      margin-left: auto;
    }

    nav a {
      color: var(--text-muted);
      text-decoration: none;
      font-size: 13px;
      font-weight: 500;
      padding: 8px 14px;
      border-radius: 8px;
      transition: color 0.2s, background 0.2s;
      white-space: nowrap;
    }

    nav a:hover {
      color: var(--gold);
      background: var(--gold-dim);
    }

    .nav-cta {
      margin-left: 8px;
      background: var(--gold-dim) !important;
      border: 1px solid var(--border-h);
      color: var(--gold) !important;
      font-weight: 600 !important;
    }

    /* ─────────── HERO ─────────── */
    #home {
      min-height: 100vh;
      display: flex;
      align-items: center;
      position: relative;
      padding: 100px 32px 80px;
      overflow: hidden;
    }

    /* Radial glow backgrounds */
    #home::before {
      content: '';
      position: absolute;
      top: -10%; right: -5%;
      width: 700px; height: 700px;
      background: radial-gradient(circle, rgba(240,183,52,0.18) 0%, transparent 70%);
      pointer-events: none;
    }

    #home::after {
      content: '';
      position: absolute;
      bottom: 0; left: -10%;
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(124,66,18,0.10) 0%, transparent 70%);
      pointer-events: none;
    }

    /* Grid lines decoration */
    .hero-grid-bg {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(124,66,18,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(124,66,18,0.05) 1px, transparent 1px);
      background-size: 60px 60px;
      pointer-events: none;
    }

    .hero-inner {
      max-width: 1240px;
      margin: 0 auto;
      width: 100%;
      display: grid;
      grid-template-columns: 1fr 400px;
      gap: 64px;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 24px;
    }

    .hero-eyebrow::before {
      content: '';
      width: 24px; height: 1px;
      background: var(--gold);
    }

    h1 {
      font-size: clamp(32px, 4.5vw, 62px);
      font-weight: 900;
      line-height: 1.1;
      letter-spacing: -1.5px;
      color: var(--brown-2);
      margin-bottom: 12px;
    }

    h1 .accent {
      background: linear-gradient(90deg, var(--brown) 0%, var(--gold-2) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero-subtitle-line {
      display: block;
      font-size: clamp(16px, 2vw, 22px);
      font-weight: 400;
      color: var(--text-muted);
      letter-spacing: -0.3px;
      margin-bottom: 32px;
      line-height: 1.5;
      max-width: 580px;
    }

    .hero-tags {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      margin-bottom: 40px;
    }

    .tag {
      font-size: 12px;
      font-weight: 600;
      padding: 5px 12px;
      border-radius: 20px;
      border: 1px solid var(--border);
      color: var(--text-muted);
      background: var(--bg-card);
      backdrop-filter: blur(8px);
    }

    .tag.active {
      border-color: var(--gold-2);
      color: var(--gold);
      background: var(--gold-dim);
    }

    .hero-stats {
      display: flex;
      gap: 40px;
      flex-wrap: wrap;
    }

    .hero-stat {
      display: flex;
      flex-direction: column;
      gap: 3px;
    }

    .hero-stat .num {
      font-size: 28px;
      font-weight: 800;
      color: var(--gold);
      letter-spacing: -1px;
      line-height: 1;
    }

    .hero-stat .lbl {
      font-size: 12px;
      color: var(--text-dim);
      font-weight: 500;
    }

    /* Hero right panel */
    .hero-panel {
      position: relative;
    }

    .hero-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 32px;
      position: relative;
      overflow: hidden;
      box-shadow: 0 4px 24px rgba(124,66,18,0.08);
    }

    .hero-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--brown), var(--gold), var(--brown));
      border-radius: 20px 20px 0 0;
    }

    .hero-card-logo {
      width: 80px; height: 80px;
      border-radius: 50%;
      overflow: hidden;
      border: 2px solid var(--gold-2);
      margin-bottom: 20px;
    }

    .hero-card-logo img {
      width: 100%; height: 100%;
      object-fit: cover;
    }

    .hero-card h3 {
      font-size: 13px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      color: var(--brown);
      margin-bottom: 8px;
    }

    .hero-card p {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 24px;
    }

    .hero-card-row {
      display: flex;
      gap: 16px;
      margin-bottom: 12px;
    }

    .hero-card-item {
      flex: 1;
      background: #FEF8EC;
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 14px;
    }

    .hero-card-item .k {
      font-size: 11px;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 4px;
    }

    .hero-card-item .v {
      font-size: 14px;
      font-weight: 700;
      color: var(--text);
    }

    .status-dot {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 12px;
      font-weight: 600;
      color: #4ADE80;
    }

    .status-dot::before {
      content: '';
      width: 7px; height: 7px;
      border-radius: 50%;
      background: #4ADE80;
      box-shadow: 0 0 8px #4ADE80;
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.4; }
    }

    /* ─────────── SECTION BASE ─────────── */
    section { padding: 96px 32px; position: relative; }

    .s-inner {
      max-width: 1240px;
      margin: 0 auto;
    }

    .s-label {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .s-label::after {
      content: '';
      flex: 1;
      max-width: 40px;
      height: 1px;
      background: var(--gold-2);
    }

    .s-title {
      font-size: clamp(24px, 3vw, 40px);
      font-weight: 800;
      color: var(--brown-2);
      letter-spacing: -0.8px;
      line-height: 1.2;
      margin-bottom: 16px;
    }

    .s-desc {
      font-size: 16px;
      color: var(--text-muted);
      max-width: 600px;
      margin-bottom: 56px;
    }

    /* ─────────── ABOUT ─────────── */
    #about {
      background: var(--bg-1);
    }

    .about-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }

    .a-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 28px;
      transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
      position: relative;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(124,66,18,0.04);
    }

    .a-card:hover {
      border-color: var(--border-h);
      transform: translateY(-3px);
      box-shadow: 0 8px 24px rgba(124,66,18,0.08);
    }

    .a-card-num {
      font-size: 48px;
      font-weight: 900;
      color: rgba(124,66,18,0.07);
      letter-spacing: -2px;
      line-height: 1;
      position: absolute;
      top: 16px; right: 20px;
    }

    .a-card-icon {
      width: 44px; height: 44px;
      background: var(--gold-dim);
      border: 1px solid var(--border);
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      font-size: 20px;
      margin-bottom: 16px;
    }

    .a-card h3 {
      font-size: 15px;
      font-weight: 700;
      color: var(--brown-2);
      margin-bottom: 8px;
    }

    .a-card p {
      font-size: 13.5px;
      color: var(--text-muted);
      line-height: 1.65;
    }


    /* ─────────── TEAM ─────────── */
    #team { background: var(--bg-1); }

    .team-grid {
      display: grid;
      grid-template-columns: 360px 1fr;
      gap: 24px;
    }

    .team-leader {
      background: var(--bg-card);
      border: 1px solid var(--border-h);
      border-radius: 20px;
      padding: 36px;
      position: relative;
      overflow: hidden;
    }

    .team-leader::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--brown), var(--gold), var(--brown));
      border-radius: 20px 20px 0 0;
    }

    .team-avatar-lg {
      width: 96px; height: 96px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--gold) 0%, var(--brown) 100%);
      display: flex; align-items: center; justify-content: center;
      font-size: 36px;
      margin-bottom: 20px;
      border: 2px solid var(--border-h);
    }

    .team-leader-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--gold);
      background: var(--gold-dim);
      border: 1px solid var(--border-h);
      padding: 4px 12px;
      border-radius: 20px;
      margin-bottom: 16px;
    }

    .team-leader h3 {
      font-size: 20px;
      font-weight: 800;
      color: var(--brown-2);
      margin-bottom: 4px;
    }

    .team-leader .pos {
      font-size: 13px;
      color: var(--text-muted);
      margin-bottom: 4px;
    }

    .team-leader .deg {
      font-size: 12px;
      color: var(--gold-2);
      font-weight: 600;
      margin-bottom: 20px;
    }

    .team-leader p {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.65;
    }

    .team-members {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .tm-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 24px;
      transition: border-color 0.25s;
    }

    .tm-card:hover { border-color: var(--border-h); }

    .tm-avatar {
      width: 52px; height: 52px;
      border-radius: 50%;
      background: linear-gradient(135deg, rgba(240,183,52,0.2) 0%, rgba(124,66,18,0.3) 100%);
      display: flex; align-items: center; justify-content: center;
      font-size: 20px;
      border: 1px solid var(--border);
      margin-bottom: 14px;
    }

    .tm-card h4 {
      font-size: 14px;
      font-weight: 700;
      color: var(--brown-2);
      margin-bottom: 3px;
    }

    .tm-card .tm-role {
      font-size: 12px;
      color: var(--text-muted);
      margin-bottom: 3px;
    }

    .tm-card .tm-deg {
      font-size: 11px;
      color: var(--gold-2);
      font-weight: 600;
      margin-bottom: 10px;
    }

    .tm-card p {
      font-size: 12.5px;
      color: var(--text-dim);
      line-height: 1.6;
    }

    /* ─────────── RESULTS ─────────── */
    #results { background: var(--bg-2); }

    .results-top {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      margin-bottom: 32px;
    }

    .res-stat {
      background: linear-gradient(135deg, var(--brown-2) 0%, var(--brown) 100%);
      border-radius: 16px;
      padding: 24px;
      text-align: center;
    }

    .res-stat .big {
      font-size: 42px;
      font-weight: 900;
      color: var(--gold);
      letter-spacing: -2px;
      line-height: 1;
      margin-bottom: 6px;
    }

    .res-stat .small {
      font-size: 12px;
      color: rgba(255,255,255,0.7);
      line-height: 1.4;
    }

    .pub-list { display: flex; flex-direction: column; gap: 12px; }

    .pub-row {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 18px 22px;
      display: grid;
      grid-template-columns: 36px 1fr auto;
      gap: 16px;
      align-items: center;
      transition: border-color 0.2s, box-shadow 0.2s;
    }

    .pub-row:hover {
      border-color: var(--border-h);
      box-shadow: 0 4px 16px rgba(124,66,18,0.07);
    }

    .pub-row .pub-ico {
      width: 36px; height: 36px;
      background: var(--gold-dim);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      font-size: 16px;
    }

    .pub-row h4 {
      font-size: 14px;
      font-weight: 600;
      color: var(--text);
      margin-bottom: 3px;
    }

    .pub-row p {
      font-size: 12px;
      color: var(--text-muted);
    }

    .pub-link {
      font-size: 12px;
      font-weight: 600;
      color: var(--gold);
      text-decoration: none;
      white-space: nowrap;
      padding: 6px 14px;
      border: 1px solid var(--border);
      border-radius: 8px;
      transition: border-color 0.2s, background 0.2s;
    }

    .pub-link:hover {
      border-color: var(--gold-2);
      background: var(--gold-dim);
    }

    /* ─────────── NEWS ─────────── */
    #news { background: var(--bg-1); }

    .news-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .news-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 16px;
      overflow: hidden;
      transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
      cursor: pointer;
      box-shadow: 0 2px 8px rgba(124,66,18,0.04);
    }

    .news-card:hover {
      border-color: var(--border-h);
      transform: translateY(-4px);
      box-shadow: 0 12px 28px rgba(124,66,18,0.10);
    }

    .news-thumb {
      height: 148px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 48px;
      position: relative;
      overflow: hidden;
    }

    .news-thumb.t1 { background: linear-gradient(135deg, rgba(240,183,52,0.15), rgba(124,66,18,0.2)); }
    .news-thumb.t2 { background: linear-gradient(135deg, rgba(124,66,18,0.2), rgba(240,183,52,0.1)); }
    .news-thumb.t3 { background: linear-gradient(135deg, rgba(90,45,8,0.3), rgba(240,183,52,0.12)); }

    .news-body { padding: 20px; }

    .news-cat {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 8px;
    }

    .news-body h3 {
      font-size: 15px;
      font-weight: 700;
      color: var(--brown-2);
      line-height: 1.4;
      margin-bottom: 8px;
    }

    .news-body p {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.55;
      margin-bottom: 14px;
    }

    .news-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .news-date { font-size: 12px; color: var(--text-dim); }

    .news-read {
      font-size: 12px;
      font-weight: 600;
      color: var(--gold);
      text-decoration: none;
    }

    /* ─────────── CONTACTS ─────────── */
    #contacts { background: var(--bg-2); }

    .contacts-wrap {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 40px;
      align-items: start;
    }

    .c-info { display: flex; flex-direction: column; gap: 12px; }

    .c-item {
      display: flex;
      gap: 14px;
      align-items: flex-start;
      padding: 18px;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 14px;
      transition: border-color 0.2s;
    }

    .c-item:hover { border-color: var(--border-h); }

    .c-icon {
      width: 40px; height: 40px;
      background: var(--gold-dim);
      border: 1px solid var(--border);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-size: 18px;
      flex-shrink: 0;
    }

    .c-item .k {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--text-dim);
      margin-bottom: 2px;
    }

    .c-item .v {
      font-size: 14px;
      color: var(--text);
      font-weight: 500;
      line-height: 1.4;
    }

    /* Form */
    .c-form {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 36px;
      position: relative;
      overflow: hidden;
    }

    .c-form::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--brown), var(--gold), var(--brown));
      border-radius: 20px 20px 0 0;
    }

    .c-form h3 {
      font-size: 20px;
      font-weight: 800;
      color: var(--brown-2);
      margin-bottom: 24px;
      letter-spacing: -0.3px;
    }

    .f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

    .f-group { margin-bottom: 14px; }

    .f-group label {
      display: block;
      font-size: 12px;
      font-weight: 600;
      color: var(--text-dim);
      text-transform: uppercase;
      letter-spacing: 0.8px;
      margin-bottom: 7px;
    }

    .f-group input,
    .f-group textarea {
      width: 100%;
      background: #FAFAF8;
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 12px 14px;
      font-size: 14px;
      color: var(--text);
      font-family: inherit;
      transition: border-color 0.2s, background 0.2s;
      outline: none;
    }

    .f-group input::placeholder,
    .f-group textarea::placeholder { color: var(--text-dim); }

    .f-group input:focus,
    .f-group textarea:focus {
      border-color: var(--gold-2);
      background: #FFF8E8;
    }

    .f-group textarea { height: 110px; resize: vertical; }

    .btn-send {
      width: 100%;
      padding: 14px;
      background: linear-gradient(90deg, var(--gold) 0%, var(--gold-2) 100%);
      border: none;
      border-radius: 10px;
      font-size: 15px;
      font-weight: 700;
      color: var(--bg-0);
      cursor: pointer;
      font-family: inherit;
      transition: opacity 0.2s, transform 0.2s;
      margin-top: 4px;
    }

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

    /* ─────────── FOOTER ─────────── */
    footer {
      background: var(--brown-2);
      border-top: 3px solid var(--gold);
      padding: 28px 32px;
    }

    .f-logo-text { color: rgba(255,255,255,0.6); }
    .f-copy { color: rgba(255,255,255,0.4); }
    .f-links a { color: rgba(255,255,255,0.5); }

    .f-inner {
      max-width: 1240px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
    }

    .f-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }

    .f-logo-badge {
      width: 32px; height: 32px;
      border-radius: 50%;
      overflow: hidden;
      border: 1.5px solid var(--border);
    }

    .f-logo-badge img { width: 100%; height: 100%; object-fit: cover; }

    .f-logo-text {
      font-size: 12px;
      color: var(--text-dim);
      line-height: 1.4;
    }

    .f-copy {
      font-size: 12px;
      color: var(--text-dim);
    }

    .f-links {
      display: flex;
      gap: 20px;
    }

    .f-links a {
      font-size: 12px;
      color: var(--text-dim);
      text-decoration: none;
      transition: color 0.2s;
    }

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

    /* ─────────── RESPONSIVE ─────────── */
    /* ─────────── ACCORDION ─────────── */
    .acc-list { display: flex; flex-direction: column; gap: 10px; }

    .acc-item {
      border: 1px solid var(--border);
      border-radius: 14px;
      overflow: hidden;
      background: var(--bg-card);
      box-shadow: 0 2px 8px rgba(124,66,18,0.04);
      transition: border-color 0.25s;
    }

    .acc-item.open { border-color: var(--border-h); }

    .acc-head {
      width: 100%;
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 20px 24px;
      background: none;
      border: none;
      cursor: pointer;
      font-family: inherit;
      text-align: left;
      transition: background 0.2s;
    }

    .acc-head:hover { background: rgba(232,168,32,0.04); }

    .acc-item.open .acc-head { background: rgba(232,168,32,0.05); }

    .acc-icon {
      font-size: 22px;
      width: 42px; height: 42px;
      background: var(--gold-dim);
      border: 1px solid var(--border);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }

    .acc-title {
      font-size: 16px;
      font-weight: 700;
      color: var(--brown-2);
      flex: 1;
    }

    .acc-arrow {
      font-size: 20px;
      color: var(--text-muted);
      transition: transform 0.3s;
      flex-shrink: 0;
    }

    .acc-item.open .acc-arrow { transform: rotate(180deg); }

    .acc-body {
      display: none;
      padding: 0 24px 24px 80px;
    }

    .acc-item.open .acc-body { display: block; }

    .acc-body p {
      font-size: 15px;
      color: var(--text-muted);
      line-height: 1.75;
      margin-bottom: 12px;
    }

    .acc-body p:last-child { margin-bottom: 0; }

    .acc-ol {
      padding-left: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .acc-ol li {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.7;
      padding-left: 4px;
    }

    .acc-ol li::marker {
      color: var(--gold-2);
      font-weight: 700;
    }

    @media (max-width: 1024px) {
      .hero-inner { grid-template-columns: 1fr; }
      .hero-panel { display: none; }
      .team-grid { grid-template-columns: 1fr; }
      .results-top { grid-template-columns: repeat(2, 1fr); }
      .news-grid { grid-template-columns: repeat(2, 1fr); }
      .contacts-wrap { grid-template-columns: 1fr; }
    }

    @media (max-width: 640px) {
      header { padding: 0 16px; }
      section { padding: 64px 16px; }
      nav { display: none; }
      .acc-body { padding: 0 16px 20px 16px; }
      .team-members { grid-template-columns: 1fr; }
      .results-top { grid-template-columns: 1fr 1fr; }
      .news-grid { grid-template-columns: 1fr; }
      .f-row { grid-template-columns: 1fr; }
    }

    /* ── Leader Card ─────────────────────────────── */
    .leader-card {
      display: grid;
      grid-template-columns: 260px 1fr;
      gap: 48px;
      background: var(--bg-1);
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 40px;
      margin-top: 40px;
    }

    .leader-photo-col {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
    }

    .leader-photo-wrap {
      width: 200px;
      height: 200px;
      border-radius: 50%;
      overflow: hidden;
      border: 4px solid var(--gold);
      background: var(--bg-2);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .leader-photo-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .leader-photo-fallback {
      display: none;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, var(--gold), var(--gold-2));
      color: #fff;
      font-size: 2.4rem;
      font-weight: 700;
      align-items: center;
      justify-content: center;
    }

    .leader-badge {
      background: linear-gradient(135deg, var(--gold), var(--gold-2));
      color: #fff;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.03em;
      padding: 6px 16px;
      border-radius: 20px;
      text-align: center;
    }

    .leader-info-col {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .leader-name {
      font-size: 1.6rem;
      font-weight: 700;
      color: var(--text);
      margin: 0;
      line-height: 1.2;
    }

    .leader-degree {
      font-size: 1rem;
      color: var(--gold-2);
      font-weight: 600;
    }

    .leader-bio {
      font-size: 0.95rem;
      color: var(--text-muted);
      line-height: 1.7;
      margin: 0;
    }

    .leader-pubs-title {
      font-size: 0.9rem;
      font-weight: 700;
      color: var(--text);
      margin-top: 8px;
      padding-top: 16px;
      border-top: 1px solid var(--border);
    }

    .leader-pubs {
      margin: 0;
      padding-left: 20px;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .leader-pubs li {
      font-size: 0.85rem;
      color: var(--text-muted);
      line-height: 1.5;
    }

    .leader-pubs li a {
      color: var(--gold-2);
      text-decoration: none;
    }

    .leader-pubs li a:hover {
      text-decoration: underline;
    }

    @media (max-width: 900px) {
      .leader-card {
        grid-template-columns: 1fr;
      }
      .leader-photo-col {
        flex-direction: row;
        align-items: center;
        gap: 24px;
      }
      .leader-photo-wrap {
        width: 140px;
        height: 140px;
      }
    }

    @media (max-width: 560px) {
      .leader-card {
        padding: 24px;
        gap: 24px;
      }
      .leader-photo-col {
        flex-direction: column;
      }
      .leader-name {
        font-size: 1.3rem;
      }
    }