    /* ─── TOKENS ─────────────────────────────────────────────── */
    :root {
      --obsidian:    #060608;
      --obsidian-2:  #0e0e12;
      --obsidian-3:  #16161c;
      --gold-dim:    #8a6a1f;
      --gold:        #c9a84c;
      --gold-bright: #f0c84a;
      --gold-shine:  #ffe577;
      --crimson:     #a01828;
      --crimson-2:   #c41e32;
      --cream:       #f4eed8;
      --cream-dim:   #b8ac8a;
      --white:       #ffffff;

      --ff-display: 'Cinzel Decorative', serif;
      --ff-heading: 'Cinzel', serif;
      --ff-body:    'Cormorant Garamond', serif;
      --ff-italic:  'IM Fell English', serif;

      --ease-gold: cubic-bezier(0.22, 0.61, 0.36, 1);
    }

    /* ─── RESET ──────────────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      background: var(--obsidian);
      color: var(--cream);
      font-family: var(--ff-body);
      font-size: 18px;
      line-height: 1.7;
      overflow-x: hidden;
    }
    a { color: inherit; text-decoration: none; }
    img { display: block; max-width: 100%; }

    /* ─── SCROLLBAR ──────────────────────────────────────────── */
    ::-webkit-scrollbar { width: 4px; }
    ::-webkit-scrollbar-track { background: var(--obsidian); }
    ::-webkit-scrollbar-thumb { background: var(--gold); }

    /* ─── TEXTURE LAYER ──────────────────────────────────────── */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 0;
      background-image:
        repeating-linear-gradient(
          0deg,
          transparent,
          transparent 2px,
          rgba(201,168,76,0.015) 2px,
          rgba(201,168,76,0.015) 4px
        );
    }

    /* ─── NOISE OVERLAY ──────────────────────────────────────── */
    body::after {
      content: '';
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 999;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
      background-repeat: repeat;
      background-size: 180px;
      opacity: 0.35;
      mix-blend-mode: overlay;
    }

    /* ─── NAV ────────────────────────────────────────────────── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.2rem 4rem;
      background: linear-gradient(to bottom, rgba(6,6,8,0.95) 0%, transparent 100%);
      backdrop-filter: blur(4px);
      animation: navSlide 1s var(--ease-gold) both;
    }
    @keyframes navSlide {
      from { transform: translateY(-100%); opacity: 0; }
      to   { transform: translateY(0);     opacity: 1; }
    }
    .nav-brand {
      font-family: var(--ff-display);
      font-size: 1.1rem;
      letter-spacing: 0.2em;
      color: var(--gold-bright);
      text-shadow: 0 0 20px rgba(240,200,74,0.4);
    }
    .nav-links {
      display: flex;
      gap: 2.5rem;
      list-style: none;
    }
    .nav-links a {
      font-family: var(--ff-heading);
      font-size: 0.72rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--cream-dim);
      position: relative;
      transition: color 0.3s;
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px; left: 0; right: 100%;
      height: 1px;
      background: var(--gold-bright);
      transition: right 0.3s var(--ease-gold);
    }
    .nav-links a:hover { color: var(--gold-bright); }
    .nav-links a:hover::after { right: 0; }

    /* ─── HERO ───────────────────────────────────────────────── */
    .hero {
      position: relative;
      min-height: 100vh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      overflow: hidden;
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 70% 60% at 65% 50%, rgba(201,168,76,0.07) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 30% 80%, rgba(160,24,40,0.08) 0%, transparent 60%),
        linear-gradient(135deg, #060608 0%, #0e0e12 50%, #12100e 100%);
    }
    /* Geometric gold lines */
    .hero-bg::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(60deg, transparent 48%, rgba(201,168,76,0.06) 49%, rgba(201,168,76,0.06) 51%, transparent 52%),
        linear-gradient(120deg, transparent 35%, rgba(201,168,76,0.04) 36%, rgba(201,168,76,0.04) 37%, transparent 38%),
        linear-gradient(30deg, transparent 60%, rgba(160,24,40,0.04) 61%, rgba(160,24,40,0.04) 62%, transparent 63%);
    }
    /* Animated shimmer rays */
    .hero-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: conic-gradient(
        from 240deg at 65% 50%,
        transparent 0deg,
        rgba(201,168,76,0.04) 10deg,
        transparent 20deg,
        transparent 40deg,
        rgba(201,168,76,0.03) 50deg,
        transparent 60deg
      );
      animation: rayRotate 20s linear infinite;
    }
    @keyframes rayRotate {
      from { transform: rotate(0deg); }
      to   { transform: rotate(360deg); }
    }

    .hero-text {
      position: relative;
      z-index: 2;
      padding: 8rem 3rem 8rem 6rem;
    }
    .hero-eyebrow {
      font-family: var(--ff-heading);
      font-size: 0.7rem;
      letter-spacing: 0.4em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1.5rem;
      animation: fadeUp 1s 0.4s var(--ease-gold) both;
    }
    .hero-title {
      font-family: var(--ff-display);
      font-size: clamp(2.6rem, 5vw, 4.5rem);
      line-height: 1.1;
      color: var(--cream);
      margin-bottom: 1rem;
      animation: fadeUp 1s 0.6s var(--ease-gold) both;
    }
    .hero-title .gold-word {
      color: var(--gold-bright);
      display: block;
      text-shadow: 0 0 40px rgba(240,200,74,0.25);
      animation: goldShimmer 4s 2s ease-in-out infinite;
    }
    @keyframes goldShimmer {
      0%, 100% { text-shadow: 0 0 30px rgba(240,200,74,0.2); }
      50%       { text-shadow: 0 0 60px rgba(240,200,74,0.5), 0 0 100px rgba(240,200,74,0.2); }
    }
    .hero-tagline {
      font-family: var(--ff-italic);
      font-style: italic;
      font-size: 1.3rem;
      color: var(--cream-dim);
      margin-bottom: 2.5rem;
      animation: fadeUp 1s 0.8s var(--ease-gold) both;
    }
    .hero-desc {
      font-size: 1.05rem;
      color: var(--cream-dim);
      max-width: 460px;
      margin-bottom: 3rem;
      font-weight: 300;
      animation: fadeUp 1s 1s var(--ease-gold) both;
    }
    .hero-ctas {
      display: flex;
      gap: 1.2rem;
      animation: fadeUp 1s 1.2s var(--ease-gold) both;
    }
    .btn-primary {
      font-family: var(--ff-heading);
      font-size: 0.72rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      padding: 1rem 2.5rem;
      background: linear-gradient(135deg, var(--gold-dim), var(--gold), var(--gold-bright));
      color: var(--obsidian);
      border: none;
      cursor: pointer;
      position: relative;
      overflow: hidden;
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .btn-primary::before {
      content: '';
      position: absolute;
      top: 0; left: -100%; width: 100%; height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
      transition: left 0.5s;
    }
    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,168,76,0.35); }
    .btn-primary:hover::before { left: 100%; }
    .btn-secondary {
      font-family: var(--ff-heading);
      font-size: 0.72rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      padding: 1rem 2.5rem;
      background: transparent;
      color: var(--gold);
      border: 1px solid rgba(201,168,76,0.5);
      cursor: pointer;
      transition: all 0.3s;
    }
    .btn-secondary:hover {
      background: rgba(201,168,76,0.08);
      border-color: var(--gold-bright);
      color: var(--gold-bright);
    }

    .hero-logo {
      position: relative;
      z-index: 2;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 8rem 6rem 8rem 3rem;
      animation: fadeIn 1.4s 0.3s var(--ease-gold) both;
    }
    .hero-logo-wrap {
      position: relative;
      width: min(320px, 80%);
    }
    .hero-logo-wrap::before {
      content: '';
      position: absolute;
      inset: -30%;
      background: radial-gradient(ellipse, rgba(201,168,76,0.12) 0%, transparent 70%);
      animation: logoPulse 3s ease-in-out infinite;
    }
    @keyframes logoPulse {
      0%, 100% { opacity: 0.6; transform: scale(1); }
      50%       { opacity: 1; transform: scale(1.05); }
    }
    .hero-logo-wrap::after {
      content: '';
      position: absolute;
      inset: -20%;
      border: 1px solid rgba(201,168,76,0.1);
      border-radius: 50%;
      animation: ringRotate 30s linear infinite;
    }
    @keyframes ringRotate {
      from { transform: rotate(0deg); }
      to   { transform: rotate(360deg); }
    }
    .hero-logo-wrap img {
      width: 100%;
      filter: drop-shadow(0 0 40px rgba(201,168,76,0.3)) drop-shadow(0 0 80px rgba(160,24,40,0.15));
      animation: logoFloat 6s ease-in-out infinite;
    }
    @keyframes logoFloat {
      0%, 100% { transform: translateY(0); }
      50%       { transform: translateY(-12px); }
    }

    /* Gold divider line */
    .gold-divider {
      width: 100%;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold-dim), var(--gold), var(--gold-dim), transparent);
      position: relative;
    }
    .gold-divider::after {
      content: '◆';
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      color: var(--gold);
      font-size: 0.8rem;
      background: var(--obsidian);
      padding: 0 1rem;
    }

    /* ─── SECTION SHARED ─────────────────────────────────────── */
    section {
      position: relative;
      z-index: 1;
    }
    .section-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 5rem 3rem;
    }
    .section-label {
      font-family: var(--ff-heading);
      font-size: 0.65rem;
      letter-spacing: 0.5em;
      text-transform: uppercase;
      color: var(--crimson-2);
      margin-bottom: 0.8rem;
    }
    .section-title {
      font-family: var(--ff-display);
      font-size: clamp(1.8rem, 3.5vw, 2.8rem);
      color: var(--cream);
      line-height: 1.2;
      margin-bottom: 1.5rem;
    }
    .section-title span { color: var(--gold-bright); }

    /* ─── STATS BAR ──────────────────────────────────────────── */
    .stats-bar {
      background: var(--obsidian-2);
      border-top: 1px solid rgba(201,168,76,0.15);
      border-bottom: 1px solid rgba(201,168,76,0.15);
    }
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      max-width: 1200px;
      margin: 0 auto;
    }
    .stat-item {
      padding: 2.5rem 2rem;
      text-align: center;
      border-right: 1px solid rgba(201,168,76,0.12);
      position: relative;
      overflow: hidden;
    }
    .stat-item:last-child { border-right: none; }
    .stat-item::before {
      content: '';
      position: absolute;
      bottom: 0; left: 50%; right: 50%;
      height: 2px;
      background: var(--gold);
      transition: left 0.4s var(--ease-gold), right 0.4s var(--ease-gold);
    }
    .stat-item:hover::before { left: 0; right: 0; }
    .stat-num {
      font-family: var(--ff-display);
      font-size: 2.6rem;
      color: var(--gold-bright);
      display: block;
      line-height: 1;
      text-shadow: 0 0 30px rgba(240,200,74,0.2);
    }
    .stat-label {
      font-family: var(--ff-heading);
      font-size: 0.65rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--cream-dim);
      margin-top: 0.5rem;
    }

    /* ─── VISION / MISSION ───────────────────────────────────── */
    .vm-section {
      background: linear-gradient(180deg, var(--obsidian) 0%, var(--obsidian-2) 100%);
      padding: 4rem 0;
    }
    .vm-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
    }
    .vm-card {
      background: var(--obsidian-3);
      padding: 3rem 2.5rem;
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(201,168,76,0.08);
      transition: border-color 0.4s;
    }
    .vm-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 4px; height: 0;
      background: linear-gradient(to bottom, var(--gold-bright), var(--crimson));
      transition: height 0.5s var(--ease-gold);
    }
    .vm-card:hover::before { height: 100%; }
    .vm-card:hover { border-color: rgba(201,168,76,0.25); }
    .vm-icon {
      font-size: 2rem;
      margin-bottom: 1rem;
      display: block;
    }
    .vm-card-title {
      font-family: var(--ff-display);
      font-size: 1.4rem;
      color: var(--gold-bright);
      margin-bottom: 0.8rem;
      letter-spacing: 0.05em;
    }
    .vm-card p {
      font-size: 1rem;
      color: var(--cream-dim);
      font-weight: 300;
      line-height: 1.8;
    }

    /* ─── CHAIRMAN ───────────────────────────────────────────── */
    .chairman-section {
      background:
        radial-gradient(ellipse 60% 60% at 80% 50%, rgba(201,168,76,0.05) 0%, transparent 70%),
        var(--obsidian);
      padding: 6rem 0;
    }
    .chairman-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 3rem;
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 5rem;
      align-items: center;
    }
    .chairman-quote-wrap {
      position: relative;
    }
    .chairman-ornament {
      font-family: var(--ff-display);
      font-size: 14rem;
      line-height: 0.7;
      color: rgba(201,168,76,0.06);
      position: absolute;
      top: -2rem;
      left: -2rem;
      pointer-events: none;
      user-select: none;
    }
    .chairman-text {
      position: relative;
      z-index: 1;
    }
    .chairman-text blockquote {
      font-family: var(--ff-italic);
      font-style: italic;
      font-size: 1.35rem;
      line-height: 1.8;
      color: var(--cream);
      font-weight: 300;
      border-left: 2px solid var(--gold);
      padding-left: 2rem;
      margin-bottom: 2rem;
    }
    .chairman-sig {
      display: flex;
      flex-direction: column;
      gap: 0.25rem;
      padding-left: 2rem;
    }
    .chairman-name {
      font-family: var(--ff-heading);
      font-size: 1rem;
      letter-spacing: 0.15em;
      color: var(--gold-bright);
    }
    .chairman-role {
      font-family: var(--ff-heading);
      font-size: 0.68rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--cream-dim);
    }
    .chairman-portrait {
      position: relative;
    }
    .chairman-portrait-box {
      background: linear-gradient(135deg, var(--obsidian-3), var(--obsidian-2));
      border: 1px solid rgba(201,168,76,0.2);
      padding: 3.5rem 3rem;
      position: relative;
    }
    .chairman-portrait-box::before {
      content: '';
      position: absolute;
      top: -1px; right: -1px;
      width: 60px; height: 60px;
      border-top: 2px solid var(--gold);
      border-right: 2px solid var(--gold);
    }
    .chairman-portrait-box::after {
      content: '';
      position: absolute;
      bottom: -1px; left: -1px;
      width: 60px; height: 60px;
      border-bottom: 2px solid var(--gold);
      border-left: 2px solid var(--gold);
    }
    .chairman-portrait-content p {
      font-size: 1rem;
      color: var(--cream-dim);
      line-height: 1.9;
      font-weight: 300;
    }

    /* ─── DIVISIONS ──────────────────────────────────────────── */
    .divisions-section {
      background: var(--obsidian-2);
      padding: 6rem 0;
    }
    .divisions-header {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 3rem 3.5rem;
      text-align: center;
    }
    .divisions-grid {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 3rem;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5px;
    }
    .division-card {
      background: var(--obsidian);
      padding: 2.5rem 2rem;
      border: 1px solid rgba(201,168,76,0.07);
      position: relative;
      overflow: hidden;
      cursor: pointer;
      transition: background 0.4s, border-color 0.4s, transform 0.3s;
    }
    .division-card::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(201,168,76,0.03) 0%, transparent 60%);
      opacity: 0;
      transition: opacity 0.4s;
    }
    .division-card:hover {
      background: var(--obsidian-3);
      border-color: rgba(201,168,76,0.25);
      transform: translateY(-3px);
    }
    .division-card:hover::after { opacity: 1; }
    .division-num {
      font-family: var(--ff-display);
      font-size: 3rem;
      color: rgba(201,168,76,0.08);
      line-height: 1;
      margin-bottom: 0.5rem;
      transition: color 0.3s;
    }
    .division-card:hover .division-num { color: rgba(201,168,76,0.2); }
    .division-icon {
      font-size: 1.6rem;
      margin-bottom: 1rem;
      display: block;
    }
    .division-name {
      font-family: var(--ff-heading);
      font-size: 0.9rem;
      letter-spacing: 0.08em;
      color: var(--gold-bright);
      margin-bottom: 0.5rem;
    }
    .division-desc {
      font-size: 0.9rem;
      color: var(--cream-dim);
      font-weight: 300;
    }
    .division-arrow {
      position: absolute;
      bottom: 1.5rem;
      right: 1.5rem;
      width: 32px; height: 32px;
      border: 1px solid rgba(201,168,76,0.25);
      display: flex; align-items: center; justify-content: center;
      color: var(--gold);
      font-size: 0.8rem;
      opacity: 0;
      transform: translate(4px, 4px);
      transition: opacity 0.3s, transform 0.3s;
    }
    .division-card:hover .division-arrow { opacity: 1; transform: translate(0,0); }

    /* ─── DIVISION MODAL ─────────────────────────────────────── */
    .division-modal {
      position: fixed;
      inset: 0;
      background: rgba(6,6,8,0.95);
      backdrop-filter: blur(10px);
      z-index: 200;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 2rem;
      animation: modalFadeIn 0.3s var(--ease-gold);
    }
    .division-modal.active { display: flex; }
    @keyframes modalFadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }
    .modal-content {
      background: linear-gradient(135deg, var(--obsidian-2), var(--obsidian-3));
      border: 1px solid rgba(201,168,76,0.3);
      max-width: 900px;
      max-height: 90vh;
      overflow-y: auto;
      position: relative;
      animation: modalSlideUp 0.4s var(--ease-gold);
    }
    @keyframes modalSlideUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .modal-close {
      position: absolute;
      top: 2rem;
      right: 2rem;
      width: 40px;
      height: 40px;
      border: 1px solid rgba(201,168,76,0.3);
      background: var(--obsidian);
      color: var(--gold);
      font-size: 1.5rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s;
      z-index: 10;
    }
    .modal-close:hover {
      background: var(--gold);
      color: var(--obsidian);
      transform: rotate(90deg);
    }
    .modal-header {
      padding: 3rem 3rem 2rem;
      border-bottom: 1px solid rgba(201,168,76,0.15);
    }
    .modal-num {
      font-family: var(--ff-display);
      font-size: 4rem;
      color: rgba(201,168,76,0.15);
      line-height: 1;
      margin-bottom: 1rem;
    }
    .modal-title {
      font-family: var(--ff-display);
      font-size: 2rem;
      color: var(--gold-bright);
      margin-bottom: 1rem;
    }
    .modal-body {
      padding: 3rem;
    }
    .modal-section {
      margin-bottom: 2.5rem;
    }
    .modal-section h3 {
      font-family: var(--ff-heading);
      font-size: 1rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1rem;
    }
    .modal-section p, .modal-section ul {
      color: var(--cream-dim);
      line-height: 1.8;
      font-weight: 300;
    }
    .modal-section ul {
      list-style: none;
      padding-left: 0;
    }
    .modal-section li {
      padding-left: 1.5rem;
      position: relative;
      margin-bottom: 0.5rem;
    }
    .modal-section li::before {
      content: '◆';
      position: absolute;
      left: 0;
      color: var(--gold-dim);
      font-size: 0.6rem;
    }
    .modal-image-placeholder {
      width: 100%;
      height: 250px;
      background: linear-gradient(135deg, rgba(201,168,76,0.05), rgba(160,24,40,0.05));
      border: 1px solid rgba(201,168,76,0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 2rem 0;
      color: var(--cream-dim);
      font-style: italic;
    }

    /* ─── TIMELINE ───────────────────────────────────────────── */
    .timeline-section {
      background: linear-gradient(180deg, var(--obsidian-2) 0%, var(--obsidian) 100%);
      padding: 6rem 0;
    }
    .timeline-inner {
      max-width: 1000px;
      margin: 0 auto;
      padding: 0 3rem;
    }
    .timeline {
      position: relative;
      padding: 3rem 0;
    }
    .timeline::before {
      content: '';
      position: absolute;
      left: 50%;
      top: 0;
      bottom: 0;
      width: 2px;
      background: linear-gradient(180deg, transparent, var(--gold-dim), var(--gold-dim), transparent);
      transform: translateX(-50%);
    }
    .timeline-item {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      margin-bottom: 4rem;
      position: relative;
    }
    .timeline-item:nth-child(even) .timeline-content {
      grid-column: 1;
      grid-row: 1;
      text-align: right;
    }
    .timeline-item:nth-child(even) .timeline-year {
      grid-column: 2;
      grid-row: 1;
    }
    .timeline-dot {
      position: absolute;
      left: 50%;
      top: 1rem;
      width: 16px;
      height: 16px;
      background: var(--gold);
      border: 3px solid var(--obsidian);
      border-radius: 50%;
      transform: translateX(-50%);
      box-shadow: 0 0 20px rgba(201,168,76,0.5);
      animation: dotPulse 2s ease-in-out infinite;
    }
    @keyframes dotPulse {
      0%, 100% { box-shadow: 0 0 20px rgba(201,168,76,0.5); }
      50% { box-shadow: 0 0 40px rgba(201,168,76,0.8), 0 0 60px rgba(201,168,76,0.4); }
    }
    .timeline-year {
      font-family: var(--ff-display);
      font-size: 3rem;
      color: var(--gold-bright);
      line-height: 1;
    }
    .timeline-content {
      padding: 1.5rem 2rem;
      background: rgba(255,255,255,0.02);
      border: 1px solid rgba(201,168,76,0.1);
      position: relative;
      transition: all 0.3s;
    }
    .timeline-content:hover {
      background: rgba(255,255,255,0.04);
      border-color: rgba(201,168,76,0.3);
      transform: translateY(-2px);
    }
    .timeline-content h3 {
      font-family: var(--ff-heading);
      font-size: 1.1rem;
      color: var(--gold);
      margin-bottom: 0.5rem;
      letter-spacing: 0.05em;
    }
    .timeline-content p {
      color: var(--cream-dim);
      font-size: 0.95rem;
      font-weight: 300;
      line-height: 1.7;
    }

    /* ─── TEAM ────────────────────────────────────────────────── */
    .team-section {
      background: var(--obsidian);
      padding: 6rem 0;
    }
    .team-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 3rem;
    }
    .team-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
    }
    .team-card {
      background: var(--obsidian-2);
      border: 1px solid rgba(201,168,76,0.1);
      overflow: hidden;
      transition: all 0.4s;
      position: relative;
    }
    .team-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--gold), var(--crimson));
      transform: scaleX(0);
      transition: transform 0.4s var(--ease-gold);
    }
    .team-card:hover::before { transform: scaleX(1); }
    .team-card:hover {
      border-color: rgba(201,168,76,0.3);
      transform: translateY(-5px);
    }
    .team-photo {
      width: 100%;
      height: 320px;
      background: linear-gradient(135deg, rgba(201,168,76,0.08), rgba(160,24,40,0.08));
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 4rem;
      color: rgba(201,168,76,0.2);
      position: relative;
      overflow: hidden;
    }
    .team-photo::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 60%, var(--obsidian-2));
    }
    .team-info {
      padding: 2rem;
    }
    .team-name {
      font-family: var(--ff-heading);
      font-size: 1.2rem;
      color: var(--gold-bright);
      margin-bottom: 0.5rem;
      letter-spacing: 0.05em;
    }
    .team-role {
      font-family: var(--ff-heading);
      font-size: 0.7rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--cream-dim);
      margin-bottom: 1rem;
    }
    .team-bio {
      font-size: 0.9rem;
      color: var(--cream-dim);
      line-height: 1.7;
      font-weight: 300;
    }

    /* ─── CONTACT FORM ───────────────────────────────────────── */
    .contact-section {
      background: linear-gradient(180deg, var(--obsidian) 0%, var(--obsidian-2) 100%);
      padding: 6rem 0;
    }
    .contact-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 3rem;
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 5rem;
    }
    .contact-info h3 {
      font-family: var(--ff-heading);
      font-size: 1rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1rem;
      margin-top: 2rem;
    }
    .contact-info h3:first-of-type { margin-top: 0; }
    .contact-info p {
      color: var(--cream-dim);
      line-height: 1.8;
      font-weight: 300;
      margin-bottom: 0.5rem;
    }
    .contact-form {
      background: var(--obsidian-3);
      padding: 3rem;
      border: 1px solid rgba(201,168,76,0.15);
      position: relative;
    }
    .contact-form::before {
      content: '';
      position: absolute;
      top: -1px;
      left: -1px;
      width: 80px;
      height: 80px;
      border-top: 2px solid var(--gold);
      border-left: 2px solid var(--gold);
    }
    .contact-form::after {
      content: '';
      position: absolute;
      bottom: -1px;
      right: -1px;
      width: 80px;
      height: 80px;
      border-bottom: 2px solid var(--gold);
      border-right: 2px solid var(--gold);
    }
    .form-group {
      margin-bottom: 1.5rem;
    }
    .form-group label {
      display: block;
      font-family: var(--ff-heading);
      font-size: 0.7rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 0.5rem;
    }
    .form-group input,
    .form-group textarea,
    .form-group select {
      width: 100%;
      background: var(--obsidian);
      border: 1px solid rgba(201,168,76,0.2);
      color: var(--cream);
      padding: 0.9rem 1.2rem;
      font-family: var(--ff-body);
      font-size: 0.95rem;
      transition: all 0.3s;
    }
    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
      outline: none;
      border-color: var(--gold);
      box-shadow: 0 0 20px rgba(201,168,76,0.1);
    }
    .form-group textarea {
      resize: vertical;
      min-height: 120px;
    }
    .form-submit {
      width: 100%;
      font-family: var(--ff-heading);
      font-size: 0.75rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      padding: 1.2rem;
      background: linear-gradient(135deg, var(--gold-dim), var(--gold), var(--gold-bright));
      color: var(--obsidian);
      border: none;
      cursor: pointer;
      transition: all 0.3s;
      position: relative;
      overflow: hidden;
    }
    .form-submit::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
      transition: left 0.5s;
    }
    .form-submit:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(201,168,76,0.4);
    }
    .form-submit:hover::before { left: 100%; }

    /* ─── GEOGRAPHY ──────────────────────────────────────────── */
    .geo-section {
      background:
        radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201,168,76,0.04) 0%, transparent 70%),
        var(--obsidian);
      padding: 6rem 0;
    }
    .geo-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 3rem;
      text-align: center;
    }
    .geo-flags {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1.5rem;
      margin-top: 3rem;
    }
    .geo-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      padding: 1.5rem 2rem;
      border: 1px solid rgba(201,168,76,0.1);
      background: var(--obsidian-2);
      min-width: 120px;
      transition: all 0.3s;
      position: relative;
      overflow: hidden;
    }
    .geo-item::before {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--gold), var(--crimson));
      transform: scaleX(0);
      transition: transform 0.3s;
    }
    .geo-item:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-4px); }
    .geo-item:hover::before { transform: scaleX(1); }
    .geo-flag { font-size: 2.5rem; }
    .geo-name {
      font-family: var(--ff-heading);
      font-size: 0.65rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--cream-dim);
    }

    /* ─── FOOTER ─────────────────────────────────────────────── */
    footer {
      background: #040406;
      border-top: 1px solid rgba(201,168,76,0.12);
      padding: 4rem 0 2rem;
    }
    .footer-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 3rem;
    }
    .footer-top {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr;
      gap: 4rem;
      padding-bottom: 3rem;
      border-bottom: 1px solid rgba(201,168,76,0.08);
    }
    .footer-brand-name {
      font-family: var(--ff-display);
      font-size: 1.4rem;
      color: var(--gold-bright);
      margin-bottom: 1rem;
    }
    .footer-tagline {
      font-family: var(--ff-italic);
      font-style: italic;
      color: var(--cream-dim);
      font-size: 0.9rem;
      margin-bottom: 1.5rem;
    }
    .footer-about {
      font-size: 0.9rem;
      color: rgba(184,172,138,0.6);
      line-height: 1.8;
      font-weight: 300;
    }
    .footer-col-title {
      font-family: var(--ff-heading);
      font-size: 0.65rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1.5rem;
    }
    .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.8rem;
    }
    .footer-links li {
      font-size: 0.9rem;
      color: rgba(184,172,138,0.6);
      cursor: pointer;
      transition: color 0.2s;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    .footer-links li::before {
      content: '›';
      color: var(--gold-dim);
    }
    .footer-links li:hover { color: var(--cream); }
    .footer-bottom {
      padding-top: 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .footer-copy {
      font-size: 0.78rem;
      color: rgba(184,172,138,0.35);
      font-family: var(--ff-heading);
      letter-spacing: 0.1em;
    }
    .footer-est {
      font-family: var(--ff-heading);
      font-size: 0.65rem;
      letter-spacing: 0.3em;
      color: var(--gold-dim);
    }

    /* ─── SCROLL REVEAL ──────────────────────────────────────── */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.8s var(--ease-gold), transform 0.8s var(--ease-gold);
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }

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

    /* ─── MOBILE ─────────────────────────────────────────────── */
    @media (max-width: 900px) {
      nav { padding: 1.2rem 2rem; }
      .nav-links { display: none; }
      .hero { grid-template-columns: 1fr; }
      .hero-text { padding: 9rem 2rem 3rem; }
      .hero-logo { padding: 2rem; }
      .hero-logo-wrap { width: min(250px, 70%); }
      .stats-grid { grid-template-columns: repeat(2, 1fr); }
      .vm-grid { grid-template-columns: 1fr; }
      .chairman-inner { grid-template-columns: 1fr; gap: 3rem; }
      .divisions-grid { grid-template-columns: repeat(2, 1fr); }
      .timeline::before { left: 2rem; }
      .timeline-item { grid-template-columns: 1fr; gap: 2rem; padding-left: 4rem; }
      .timeline-item:nth-child(even) .timeline-content { text-align: left; grid-column: 1; }
      .timeline-dot { left: 2rem; }
      .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
      .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
    }
    @media (max-width: 600px) {
      .hero-title { font-size: 2.2rem; }
      .divisions-grid { grid-template-columns: 1fr; }
      .stats-grid { grid-template-columns: 1fr 1fr; }
      .modal-content { padding: 1rem; }
      .modal-header, .modal-body { padding: 2rem 1.5rem; }
    }
