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

    :root {
      --navy: #080b1a;
      --deep: #0d1230;
      --gold: #c9a84c;
      --gold-light: #e8c97a;
      --cream: #f0ead8;
      --muted: rgba(240,234,216,0.55);
      --glow: rgba(201,168,76,0.18);
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--navy);
      color: var(--cream);
      font-family: 'DM Sans', sans-serif;
      min-height: 100vh;
      overflow-x: hidden;
    }

    /* ── STARS ── */
    #stars-canvas {
      position: fixed;
      inset: 0;
      z-index: 0;
      pointer-events: none;
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.2rem 3rem;
      background: linear-gradient(to bottom, rgba(8,11,26,0.95), transparent);
    }

    .nav-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem;
      font-weight: 600;
      color: var(--gold);
      letter-spacing: 0.04em;
      text-decoration: none;
    }

    .nav-links {
      display: flex;
      gap: 2.5rem;
      list-style: none;
    }

    .nav-links a {
      color: var(--muted);
      text-decoration: none;
      font-size: 0.85rem;
      font-weight: 400;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      transition: color 0.2s;
    }

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

    /* ── HERO ── */
    .hero {
      position: relative;
      z-index: 1;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-end;
      padding-bottom: 5rem;
      text-align: center;
    }

    /* Museum SVG silhouette */
    .museum-wrap {
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: min(900px, 95vw);
      z-index: 2;
      pointer-events: none;
    }

    .museum-wrap svg {
      width: 100%;
      height: auto;
      display: block;
    }

    /* Ground glow */
    .ground-glow {
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 700px;
      height: 120px;
      background: radial-gradient(ellipse at center bottom, rgba(201,168,76,0.22) 0%, transparent 70%);
      z-index: 1;
      pointer-events: none;
    }

    /* Hero text */
    .hero-text {
      position: relative;
      z-index: 10;
      margin-bottom: 2rem;
    }

    .hero-eyebrow {
      font-size: 0.75rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1rem;
      opacity: 0;
      animation: fadeUp 0.8s ease forwards 0.3s;
    }

    .hero-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(3rem, 7vw, 5.5rem);
      font-weight: 600;
      line-height: 1.05;
      color: var(--cream);
      opacity: 0;
      animation: fadeUp 0.9s ease forwards 0.5s;
    }

    .hero-title em {
      font-style: italic;
      color: var(--gold-light);
    }

    .hero-sub {
      margin-top: 1.2rem;
      font-size: 1rem;
      font-weight: 300;
      color: var(--muted);
      max-width: 480px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.7;
      opacity: 0;
      animation: fadeUp 1s ease forwards 0.7s;
    }

    .hero-cta {
      margin-top: 2rem;
      display: inline-flex;
      gap: 1rem;
      opacity: 0;
      animation: fadeUp 1s ease forwards 0.9s;
    }

    .btn-primary {
      background: var(--gold);
      color: var(--navy);
      padding: 0.8rem 2rem;
      border-radius: 2px;
      text-decoration: none;
      font-size: 0.85rem;
      font-weight: 500;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      transition: background 0.2s, transform 0.2s;
    }

    .btn-primary:hover {
      background: var(--gold-light);
      transform: translateY(-2px);
    }

    .btn-ghost {
      border: 1px solid rgba(201,168,76,0.4);
      color: var(--gold-light);
      padding: 0.8rem 2rem;
      border-radius: 2px;
      text-decoration: none;
      font-size: 0.85rem;
      font-weight: 400;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      transition: border-color 0.2s, transform 0.2s;
    }

    .btn-ghost:hover {
      border-color: var(--gold);
      transform: translateY(-2px);
    }

    /* ── RESOURCES SECTION ── */
    .resources {
      position: relative;
      z-index: 10;
      padding: 6rem 3rem;
      max-width: 1100px;
      margin: 0 auto;
    }

    .section-label {
      font-size: 0.72rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 0.6rem;
    }

    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 600;
      color: var(--cream);
      margin-bottom: 3rem;
    }

    .cards-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
    }

    .card {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(201,168,76,0.15);
      border-radius: 4px;
      padding: 2rem;
      text-decoration: none;
      color: inherit;
      transition: background 0.25s, border-color 0.25s, transform 0.25s;
      display: block;
    }

    .card:hover {
      background: rgba(201,168,76,0.08);
      border-color: rgba(201,168,76,0.4);
      transform: translateY(-4px);
    }

    .card-icon {
      font-size: 1.8rem;
      margin-bottom: 1rem;
      display: block;
    }

    .card-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem;
      font-weight: 600;
      color: var(--cream);
      margin-bottom: 0.5rem;
    }

    .card-desc {
      font-size: 0.875rem;
      color: var(--muted);
      line-height: 1.65;
    }

    .card-tag {
      display: inline-block;
      margin-top: 1rem;
      font-size: 0.7rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--gold);
      border: 1px solid rgba(201,168,76,0.3);
      padding: 0.25rem 0.6rem;
      border-radius: 2px;
    }

    /* ── DIVIDER ── */
    .gold-divider {
      width: 60px;
      height: 1px;
      background: var(--gold);
      margin: 0 auto 4rem;
      opacity: 0.5;
    }

    /* ── FOOTER ── */
    footer {
      position: relative;
      z-index: 10;
      text-align: center;
      padding: 2.5rem;
      border-top: 1px solid rgba(201,168,76,0.1);
      font-size: 0.8rem;
      color: rgba(240,234,216,0.3);
      letter-spacing: 0.05em;
    }

    footer span { color: var(--gold); }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .reveal {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: none;
    }

    /* moon */
    .moon {
      position: absolute;
      top: 10%;
      right: 12%;
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background: radial-gradient(circle at 35% 35%, #f5eec8, #c8b87a);
      box-shadow: 0 0 40px rgba(201,168,76,0.35), 0 0 80px rgba(201,168,76,0.12);
      z-index: 2;
    }