  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  html, body { background: #0a0a0a; }

  .site {
    font-family: 'Georgia', serif;
    color: var(--color-text-primary);
    background: #0a0a0a;
    min-height: 100vh;
  }

  .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 28px;
    background: #000;
    border-bottom: 1px solid #f2cf1d;
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
  }

  .nav-brand-main {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.03em;
  }

  .nav-brand-sub {
    font-size: 9px;
    color: #f2cf1d;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-top: 1px;
    font-family: Arial, sans-serif;
  }

  .nav-links {
    display: flex;
    gap: 20px;
    align-items: center;
  }

  .nav-links a {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    cursor: pointer;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-family: Arial, sans-serif;
  }

  .nav-links a:hover,
  .nav-links a.cur {
    color: #f2cf1d;
  }

  .nav-donate {
    background: #f2cf1d !important;
    color: #000 !important;
    padding: 7px 16px;
    border-radius: 2px;
    font-weight: 700 !important;
  }

  .hero {
    position: relative;
    min-height: 500px;
    background: #000;
    display: flex;
    align-items: center;
    overflow: hidden;
  }

  .hero-pat {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    padding: 0 48px;
    max-width: 520px;
  }

  .eyebrow {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #f2cf1d;
    font-family: Arial, sans-serif;
    margin-bottom: 14px;
  }

  .hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    line-height: 1.05;
    margin-bottom: 16px;
  }

  .hero-title .gold {
    color: #f2cf1d;
  }

  .hero-body {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.8;
    margin-bottom: 28px;
    font-family: Arial, sans-serif;
  }

  .hero-right {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    opacity: 0.9;
  }

  .btn-gold {
    display: inline-block;
    text-decoration: none;
    background: #f2cf1d;
    color: #000;
    padding: 12px 26px;
    border: none;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    font-family: Arial, sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 2px;
    margin-right: 10px;
  }

  .btn-out {
    display: inline-block;
    text-decoration: none;
    background: transparent;
    color: #fff;
    padding: 12px 26px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    font-size: 12px;
    cursor: pointer;
    font-family: Arial, sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 2px;
  }

  .stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #f2cf1d;
  }

  .stat {
    padding: 16px 20px;
    text-align: center;
    border-right: 1px solid rgba(0, 0, 0, 0.15);
  }

  .stat:last-child {
    border-right: none;
  }

  .stat-n {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    font-family: Georgia, serif;
  }

  .stat-l {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(0, 0, 0, 0.6);
    margin-top: 2px;
    font-family: Arial, sans-serif;
  }

  .sec {
    padding: 48px 40px;
    background: #0a0a0a;
  }

  .sec-mid {
    background: #060606;
  }

  .sec-title {
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
  }

  .sec-sub {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.75;
    max-width: 540px;
    font-family: Arial, sans-serif;
  }

  .tiles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: #1a1a1a;
    margin-top: 28px;
  }

  .tile {
    background: #0a0a0a;
    padding: 26px 22px;
    border-top: 2px solid #f2cf1d;
  }

  .tile-icon {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .tile-t {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
  }

  .tile-b {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    font-family: Arial, sans-serif;
  }

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

  .about-grid .gold-card {
    grid-column: 1 / -1;
  }

  .gold-card {
    background: #f2cf1d;
    padding: 28px;
    border-radius: 2px;
  }

  .gold-card .eyebrow {
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 8px;
  }

  .gold-card h3 {
    font-size: 20px;
    color: #000;
    margin-bottom: 10px;
  }

  .gold-card p {
    font-size: 13px;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.75;
    font-family: Arial, sans-serif;
  }

  .dark-card {
    background: #111;
    border: 1px solid #222;
    padding: 28px;
    border-radius: 2px;
  }

  .dark-card h3 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 18px;
  }

  .founder {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid #1e1e1e;
  }

  .founder:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }

  .f-av {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: #f2cf1d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: 700;
    color: #000;
    flex-shrink: 0;
    font-family: Arial, sans-serif;
  }

  .f-name {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
  }

  .f-role {
    font-size: 11px;
    color: #f2cf1d;
    margin-top: 1px;
    font-family: Arial, sans-serif;
  }

  .f-bio {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 4px;
    line-height: 1.5;
    font-family: Arial, sans-serif;
  }

  .founder-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .founder-card .f-av {
    width: 200px;
    height: 200px;
    font-size: 52px;
    margin-bottom: 14px;
  }

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

  .tc {
    background: #111;
    border: 1px solid #1e1e1e;
    padding: 22px;
    text-align: center;
    border-radius: 2px;
  }

  .t-av {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: #0a0a0a;
    border: 2px solid #f2cf1d;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 52px;
    font-weight: 700;
    color: #f2cf1d;
    font-family: Arial, sans-serif;
  }

  .t-name {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
  }

  .t-role {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    font-family: Arial, sans-serif;
  }

  .t-badge {
    display: inline-block;
    margin-top: 9px;
    font-size: 9px;
    padding: 3px 9px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-family: Arial, sans-serif;
    font-weight: 700;
    border-radius: 2px;
  }

  .bi {
    background: #f2cf1d;
    color: #000;
  }

  .t-social {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
  }

  .t-social a {
    color: #f2cf1d;
    opacity: 0.7;
    transition: opacity 0.15s;
    display: flex;
    align-items: center;
  }

  .t-social a:hover {
    opacity: 1;
  }

  .bb {
    background: transparent;
    color: #f2cf1d;
    border: 1px solid #f2cf1d;
  }

  .ev-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-top: 24px;
  }

  .ev {
    display: flex;
    align-items: center;
    gap: 18px;
    background: #111;
    padding: 18px 22px;
    border-left: 3px solid #f2cf1d;
  }

  .ev-date {
    min-width: 48px;
    text-align: center;
  }

  .ev-mo {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #f2cf1d;
    font-family: Arial, sans-serif;
  }

  .ev-day {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
  }

  .ev-div {
    width: 1px;
    height: 40px;
    background: #222;
  }

  .ev-info {
    flex: 1;
  }

  .ev-name {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
  }

  .ev-meta {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    font-family: Arial, sans-serif;
  }

  .ev-btn {
    background: transparent;
    color: #f2cf1d;
    border: 1px solid #f2cf1d;
    padding: 7px 14px;
    font-size: 10px;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-family: Arial, sans-serif;
    border-radius: 2px;
    white-space: nowrap;
  }

  .gal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 150px;
    gap: 3px;
    margin-top: 24px;
    align-content: start;
  }

  .gc {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: #111;
  }

  .gc.tall {
    grid-row: span 2;
  }

  .gc svg {
    width: 100%;
    height: 100%;
    display: block;
  }

  .gh {
    position: absolute;
    inset: 0;
    background: rgba(201, 168, 76, 0.12);
    border: 2px solid #f2cf1d;
    display: flex;
    align-items: flex-end;
    padding: 9px;
    opacity: 0;
    transition: opacity 0.2s;
  }

  .gc:hover .gh {
    opacity: 1;
  }

  .gl {
    font-size: 10px;
    color: #f2cf1d;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-family: Arial, sans-serif;
  }

  .gc-ray {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    opacity: 0.15;
  }
  .gc-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .gc-iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
  }

  .gc.video .gc-iframe {
    top: -70px;
    height: calc(100% + 70px);
  }


  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 24px;
  }

  .cform {
    background: #111;
    border: 1px solid #1e1e1e;
    padding: 26px;
    border-radius: 2px;
  }

  .cform h3 {
    font-size: 17px;
    color: #fff;
    margin-bottom: 18px;
  }

  .fg {
    margin-bottom: 13px;
  }

  .fg label {
    display: block;
    font-size: 9px;
    font-weight: 700;
    color: #f2cf1d;
    margin-bottom: 5px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-family: Arial, sans-serif;
  }

  .fg input,
  .fg select,
  .fg textarea {
    width: 100%;
    background: #0a0a0a;
    border: 1px solid #222;
    padding: 9px 11px;
    font-size: 12px;
    font-family: Arial, sans-serif;
    color: #fff;
    border-radius: 2px;
  }

  .fg textarea {
    height: 75px;
    resize: none;
  }

  .sub-btn {
    width: 100%;
    background: #f2cf1d;
    color: #000;
    border: none;
    padding: 12px;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: Arial, sans-serif;
    margin-top: 4px;
    border-radius: 2px;
  }

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

  .ci {
    background: #111;
    border: 1px solid #1e1e1e;
    padding: 16px 18px;
    border-radius: 2px;
    text-align: center;
  }

  .ci h4 {
    font-size: 9px;
    font-weight: 700;
    color: #f2cf1d;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-family: Arial, sans-serif;
    margin-bottom: 6px;
  }

  .ci p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    font-family: Arial, sans-serif;
  }

  .soc-row {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
    margin-top: 4px;
    justify-content: center;
  }

  .soc {
    background: #0a0a0a;
    border: 1px solid #222;
    padding: 6px 11px;
    font-size: 10px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    font-family: Arial, sans-serif;
    border-radius: 2px;
  }

  .donate-box {
    background: #f2cf1d;
    padding: 18px;
    border-radius: 2px;
  }

  .donate-box h4 {
    color: #000;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 5px;
  }

  .donate-box p {
    color: rgba(0, 0, 0, 0.6);
    font-size: 12px;
    font-family: Arial, sans-serif;
    margin-bottom: 10px;
    line-height: 1.5;
  }

  .donate-btn {
    width: 100%;
    background: #000;
    color: #f2cf1d;
    border: none;
    padding: 10px;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-family: Arial, sans-serif;
    border-radius: 2px;
  }

  .footer {
    background: #000;
    border-top: 1px solid #f2cf1d;
    padding: 24px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .footer-bn {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
  }

  .footer-bs {
    font-size: 9px;
    color: #f2cf1d;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: Arial, sans-serif;
    margin-top: 2px;
  }

  .footer-links {
    display: flex;
    gap: 18px;
  }

  .footer-links a {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    font-family: Arial, sans-serif;
    cursor: pointer;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .footer-copy {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.2);
    font-family: Arial, sans-serif;
  }

  .footer-social {
    display: flex;
    gap: 14px;
    justify-content: flex-end;
    margin-bottom: 6px;
  }

  .footer-social a {
    color: #f2cf1d;
    text-decoration: none;
    display: flex;
    align-items: center;
    opacity: 0.85;
    transition: opacity 0.15s;
  }

  .footer-social a:hover {
    opacity: 1;
  }

  a.soc {
    text-decoration: none;
    color: #f2cf1d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  a.soc:hover {
    border-color: #f2cf1d;
  }

  .page {
    display: none;
  }

  .page.active {
    display: block;
  }

  .ray-watermark {
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 320px;
    opacity: 0.18;
    pointer-events: none;
  }

  .page-header {
    background: #000;
    border-bottom: 1px solid #f2cf1d;
    padding: 40px 40px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .ph-text .eyebrow {
    margin-bottom: 8px;
  }

  .ph-text h2 {
    font-size: 34px;
    font-weight: 700;
    color: #fff;
  }

  .ph-logo {
    width: 90px;
    opacity: 0.7;
  }

  @keyframes manta-float {

    0%,
    100% {
      transform: translateY(0px) rotate(0deg);
    }

    35% {
      transform: translateY(-18px) rotate(1.1deg);
    }

    70% {
      transform: translateY(11px) rotate(-0.7deg);
    }
  }

  @keyframes manta-pulse {

    0%,
    100% {
      opacity: 1;
    }

    50% {
      opacity: 0.65;
    }
  }

  @keyframes manta-tail {

    0%,
    100% {
      transform: rotate(0deg);
    }

    50% {
      transform: rotate(8deg);
    }
  }

  /* Hamburger button */
  .nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px 4px;
    z-index: 10;
  }

  .nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 1px;
    transition: transform 0.25s, opacity 0.25s;
  }

  .nav-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* ---- Tablet (≤768px) ---- */
  @media (max-width: 768px) {
    .nav {
      padding: 12px 20px;
      flex-wrap: wrap;
    }

    .nav-toggle {
      display: flex;
    }

    .nav-links {
      display: none;
      flex-direction: column;
      align-items: flex-start;
      width: 100%;
      background: #000;
      border-top: 1px solid #222;
      padding: 8px 0 12px;
      gap: 0;
      order: 3;
    }

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

    .nav-links a {
      font-size: 13px;
      padding: 12px 20px;
      width: 100%;
      border-bottom: 1px solid #111;
    }

    .nav-donate {
      margin: 8px 20px 0 !important;
      width: calc(100% - 40px) !important;
      text-align: center;
      padding: 12px 16px !important;
      border-bottom: none !important;
    }

    .hero {
      min-height: 320px;
    }

    .hero-content {
      padding: 0 24px;
      max-width: 100%;
    }

    .hero-title {
      font-size: 28px;
    }

    .hero-right {
      display: none;
    }

    .sec {
      padding: 32px 20px;
    }

    .sec-title {
      font-size: 24px;
    }

    .page-header {
      padding: 28px 20px;
      flex-wrap: wrap;
      gap: 12px;
    }

    .ph-text h2 {
      font-size: 26px;
    }

    .ph-logo {
      display: none;
    }

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

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

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

    .f-av {
      width: 120px;
      height: 120px;
      font-size: 32px;
    }

    .t-av {
      width: 120px;
      height: 120px;
      font-size: 32px;
    }

    .gal-grid {
      grid-template-columns: repeat(2, 1fr);
      grid-auto-rows: 150px;
    }

    .gc.tall {
      grid-row: span 1;
    }

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

    .ev {
      flex-wrap: wrap;
      gap: 10px;
    }

    .ev-btn {
      padding: 10px 16px;
    }

    .stats-bar {
      grid-template-columns: repeat(2, 1fr);
    }

    .btn-gold,
    .btn-out {
      padding: 14px 24px;
    }

    .sub-btn {
      padding: 14px;
    }

    .fg input,
    .fg select,
    .fg textarea {
      padding: 12px 13px;
      font-size: 13px;
    }

    .fg label {
      font-size: 11px;
    }

    .footer {
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 20px;
      padding: 28px 20px;
    }

    .footer-links {
      flex-wrap: wrap;
      justify-content: center;
    }
  }

  /* ---- Phone (≤480px) ---- */
  @media (max-width: 480px) {
    .hero {
      min-height: 260px;
    }

    .hero-content {
      padding: 0 16px;
    }

    .hero-title {
      font-size: 24px;
    }

    .hero-body {
      font-size: 13px;
      margin-bottom: 20px;
    }

    .sec {
      padding: 24px 16px;
    }

    .page-header {
      padding: 22px 16px;
    }

    .ph-text h2 {
      font-size: 22px;
    }

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

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

    .f-av {
      width: 90px;
      height: 90px;
      font-size: 24px;
    }

    .t-av {
      width: 90px;
      height: 90px;
      font-size: 24px;
    }

    .gal-grid {
      grid-template-columns: 1fr;
      grid-auto-rows: 200px;
    }

    .gc.video {
      height: 225px;
    }
  }

  /* Touch devices: labels always visible, video cells taller */
  @media (hover: none) {
    .gc { cursor: default; }
    .gc .gh { opacity: 1; }
  }

  @media (hover: none) and (min-width: 481px) {
    .gc.video { grid-row: span 2; }
