  /* ===================================================================
     THE INDIE DIVISION — WEBSITE v1.0
     Aesthetic: Factory Records / Peter Saville
     =================================================================== */

  :root {
    --black: #0a0a0a;
    --white: #f0ece4;
    --cream: #e8e2d6;
    --grey: #8a8578;
    --accent: #c23b22;
    --blue: #2d4a7a;
    --fac-pink: #d4a0a0;
    --fac-slate: #3d3d3d;
    --border: #1e1e1e;
    --border-light: #2a2a2a;
  }

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

  body {
    font-family: 'Archivo', sans-serif;
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
  }

  /* Grid overlay */
  body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
      linear-gradient(90deg, transparent 49.8%, rgba(240,236,228,0.015) 49.8%, rgba(240,236,228,0.015) 50.2%, transparent 50.2%),
      linear-gradient(0deg, transparent 49.8%, rgba(240,236,228,0.015) 49.8%, rgba(240,236,228,0.015) 50.2%, transparent 50.2%);
    background-size: 120px 120px;
    pointer-events: none;
    z-index: 0;
  }

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

  /* ===== NAVIGATION ===== */
  nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background: rgba(10,10,10,0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
  }

  .nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    max-width: 1440px;
    margin: 0 auto;
  }

  .nav-logo {
    display: flex;
    align-items: center;
    padding: 10px 24px;
    border-right: 1px solid var(--border);
    text-decoration: none;
  }

  .nav-logo img {
    height: 34px;
    width: auto;
    filter: brightness(1.1);
  }

  .nav-links {
    display: flex;
    list-style: none;
    flex: 1;
  }

  .nav-links li {
    border-right: 1px solid var(--border);
  }

  .nav-links li:last-child {
    border-right: none;
    margin-left: auto;
    border-left: 1px solid var(--border);
  }

  .nav-links a {
    display: flex;
    align-items: center;
    padding: 18px 26px;
    color: var(--white);
    text-decoration: none;
    font-family: 'DM Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: all 0.3s ease;
  }

  .nav-links a:hover {
    background: var(--white);
    color: var(--black);
  }

  .nav-links a.nav-cta {
    background: var(--accent);
    color: var(--white);
  }

  .nav-links a.nav-cta:hover {
    background: var(--white);
    color: var(--accent);
  }

  /* Mobile menu */
  .nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    padding: 14px 20px;
    cursor: pointer;
    font-family: 'DM Mono', monospace;
  }

  /* ===== HERO ===== */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    z-index: 1;
    margin-top: 54px;
  }

  .hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    border-right: 1px solid var(--border);
    position: relative;
  }

  .hero-left::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 60px;
    width: 160px;
    height: 160px;
    border: 1px solid rgba(240,236,228,0.06);
    transform: rotate(45deg);
  }

  .hero-title {
    font-size: clamp(3.2rem, 6.5vw, 5.5rem);
    font-weight: 900;
    line-height: 0.9;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    margin-bottom: 40px;
    position: relative;
  }

  .hero-title .the {
    font-family: 'DM Mono', monospace;
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
    color: var(--grey);
  }

  .hero-title .indie { display: block; color: var(--white); }
  .hero-title .division { display: block; color: var(--accent); }

  .hero-logo {
    margin-bottom: 32px;
    position: relative;
  }

  .hero-logo img {
    width: clamp(200px, 30vw, 320px);
    height: auto;
    filter: drop-shadow(0 2px 12px rgba(194,59,34,0.15));
    transition: filter 0.4s ease;
  }

  .hero-logo:hover img {
    filter: drop-shadow(0 2px 20px rgba(194,59,34,0.3));
  }

  .hero-subtitle {
    font-family: 'DM Mono', monospace;
    font-size: 0.75rem;
    color: var(--grey);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    line-height: 2.2;
    max-width: 440px;
  }

  .hero-cta {
    margin-top: 40px;
    display: flex;
    gap: 16px;
  }

  .btn {
    font-family: 'DM Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 32px;
    transition: all 0.3s ease;
    display: inline-block;
  }

  .btn-primary {
    background: var(--accent);
    color: var(--white);
    border: 1px solid var(--accent);
  }

  .btn-primary:hover {
    background: transparent;
    color: var(--accent);
  }

  .btn-secondary {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--border-light);
  }

  .btn-secondary:hover {
    background: var(--white);
    color: var(--black);
  }

  .hero-right {
    position: relative;
    overflow: hidden;
  }

  .hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    filter: grayscale(20%) contrast(1.05);
  }

  .hero-right::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--black) 0%, transparent 15%);
  }

  /* ===== COLOUR BAR ===== */
  .colour-bar {
    display: flex;
    height: 5px;
    position: relative;
    z-index: 1;
  }

  .colour-bar div { flex: 1; transition: flex 0.6s ease; }
  .colour-bar div:nth-child(1) { background: #c23b22; }
  .colour-bar div:nth-child(2) { background: #2d4a7a; }
  .colour-bar div:nth-child(3) { background: #d4a0a0; }
  .colour-bar div:nth-child(4) { background: #e8e2d6; }
  .colour-bar div:nth-child(5) { background: #3d3d3d; }
  .colour-bar div:nth-child(6) { background: #8a8578; }
  .colour-bar:hover div:nth-child(odd) { flex: 2; }

  /* ===== SECTIONS ===== */
  section {
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--border);
  }

  .section-header {
    display: grid;
    grid-template-columns: 200px 1fr;
    border-bottom: 1px solid var(--border);
  }

  .section-number {
    font-family: 'DM Mono', monospace;
    font-size: 0.62rem;
    letter-spacing: 0.3em;
    color: var(--grey);
    padding: 18px 28px;
    border-right: 1px solid var(--border);
    text-transform: uppercase;
  }

  .section-title {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    padding: 18px 28px;
    color: var(--white);
  }

  /* ===== ABOUT ===== */
  .about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1440px;
    margin: 0 auto;
  }

  .about-text {
    padding: 80px 60px;
    border-right: 1px solid var(--border);
  }

  .about-text p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--cream);
    margin-bottom: 24px;
    max-width: 540px;
  }

  .about-text p:first-of-type::first-letter {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--accent);
    float: left;
    line-height: 0.85;
    margin-right: 8px;
    margin-top: 4px;
  }

  .about-stats {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
  }

  .stat-item {
    border-left: 2px solid var(--accent);
    padding-left: 24px;
  }

  .stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    margin-bottom: 6px;
  }

  .stat-label {
    font-family: 'DM Mono', monospace;
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--grey);
  }

  .about-image {
    margin-top: 40px;
    position: relative;
  }

  .about-image img {
    width: 100%;
    max-width: 500px;
    filter: grayscale(30%) contrast(1.05);
    border: 1px solid var(--border);
  }

  /* ===== VIDEO ===== */
  .video-content {
    max-width: 1440px;
    margin: 0 auto;
    padding: 60px;
  }

  .video-single {
    max-width: 900px;
    margin: 0 auto;
  }

  .video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border: 1px solid var(--border);
  }

  .video-wrapper iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }

  .video-caption {
    font-family: 'DM Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--grey);
    margin-top: 12px;
  }

  /* ===== GIGS ===== */
  .gigs-content {
    max-width: 1440px;
    margin: 0 auto;
    padding: 60px;
  }

  .gigs-loading {
    font-family: 'DM Mono', monospace;
    font-size: 0.75rem;
    color: var(--grey);
    letter-spacing: 0.15em;
    text-align: center;
    padding: 40px;
  }

  .gigs-loading::after {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    border: 1px solid var(--grey);
    border-top-color: var(--accent);
    border-radius: 50%;
    margin-left: 10px;
    animation: spin 0.8s linear infinite;
    vertical-align: middle;
  }

  @keyframes spin { to { transform: rotate(360deg); } }

  .gig-row {
    display: grid;
    grid-template-columns: 110px 200px 1fr 140px;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
  }

  .gig-row:hover {
    padding-left: 12px;
    border-bottom-color: var(--accent);
  }

  .gig-row.past-gig {
    opacity: 0.35;
  }

  .gig-day {
    font-family: 'DM Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--grey);
  }

  .gig-date {
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--white);
  }

  .gig-venue {
    font-size: 0.92rem;
    color: var(--cream);
  }

  .gig-status {
    font-family: 'DM Mono', monospace;
    font-size: 0.58rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-align: right;
    color: var(--accent);
  }

  .gig-year-divider {
    font-family: 'DM Mono', monospace;
    font-size: 0.62rem;
    letter-spacing: 0.3em;
    color: var(--grey);
    text-transform: uppercase;
    padding: 24px 0 10px;
    border-bottom: 1px solid var(--border-light);
    margin-top: 10px;
  }

  .gigs-error {
    font-family: 'DM Mono', monospace;
    font-size: 0.75rem;
    color: var(--accent);
    text-align: center;
    padding: 40px;
    border: 1px dashed var(--accent);
  }

  /* ===== SONGS ===== */
  .songs-content {
    max-width: 1440px;
    margin: 0 auto;
    padding: 60px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 40px;
  }

  .song-group h3 {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
  }

  .song-group ul { list-style: none; }

  .song-group li {
    font-family: 'DM Mono', monospace;
    font-size: 0.73rem;
    color: var(--cream);
    padding: 5px 0;
    letter-spacing: 0.04em;
    transition: color 0.2s;
  }

  .song-group li:hover { color: var(--accent); }

  /* ===== GALLERY ===== */
  .gallery-content {
    max-width: 1440px;
    margin: 0 auto;
    padding: 60px;
  }

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

  .gallery-item {
    aspect-ratio: 4/3;
    overflow: hidden;
    position: relative;
    cursor: pointer;
  }

  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(40%) contrast(1.05);
    transition: all 0.5s ease;
  }

  .gallery-item:hover img {
    filter: grayscale(0%) contrast(1.1);
    transform: scale(1.05);
  }

  .gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(240,236,228,0.05);
    pointer-events: none;
  }

  /* Lightbox */
  .lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10,10,10,0.95);
    z-index: 200;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }

  .lightbox.active { display: flex; }

  .lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    filter: none;
  }

  .lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-family: 'DM Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--grey);
    background: none;
    border: 1px solid var(--border-light);
    padding: 10px 18px;
    cursor: pointer;
    transition: all 0.3s;
  }

  .lightbox-close:hover {
    color: var(--white);
    border-color: var(--white);
  }

  /* ===== CONTACT ===== */
  .contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1440px;
    margin: 0 auto;
  }

  .contact-left {
    padding: 80px 60px;
    border-right: 1px solid var(--border);
  }

  .contact-left h2 {
    font-size: 2.4rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    line-height: 1.1;
  }

  .contact-left h2 span { color: var(--accent); }

  .contact-desc {
    font-size: 0.95rem;
    color: var(--cream);
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 400px;
  }

  .social-links {
    display: flex;
    gap: 16px;
    margin-top: 36px;
    flex-wrap: wrap;
  }

  .social-links a {
    font-family: 'DM Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
    text-decoration: none;
    padding: 14px 24px;
    border: 1px solid var(--border-light);
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
  }

  .social-links a:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
  }

  .contact-right {
    padding: 80px 60px;
  }

  .contact-form .form-group { margin-bottom: 22px; }

  .contact-form label {
    font-family: 'DM Mono', monospace;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white);
    display: block;
    margin-bottom: 8px;
  }

  .contact-form input,
  .contact-form textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border);
    color: var(--white);
    font-family: 'Archivo', sans-serif;
    font-size: 0.92rem;
    padding: 10px 0;
    outline: none;
    transition: border-color 0.3s;
  }

  .contact-form input:focus,
  .contact-form textarea:focus {
    border-bottom-color: var(--accent);
  }

  .contact-form textarea { height: 110px; resize: none; }

  .contact-form button {
    font-family: 'DM Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    background: var(--white);
    color: var(--black);
    border: none;
    padding: 14px 36px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 8px;
  }

  .contact-form button:hover {
    background: var(--accent);
    color: var(--white);
  }

  .form-success {
    display: none;
    font-family: 'DM Mono', monospace;
    font-size: 0.8rem;
    color: var(--accent);
    letter-spacing: 0.1em;
    padding: 20px 0;
  }

  /* ===== FOOTER ===== */
  footer {
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--border);
    padding: 28px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-left {
    font-family: 'DM Mono', monospace;
    font-size: 0.58rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--grey);
  }

  .footer-right {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .footer-right a {
    font-family: 'DM Mono', monospace;
    font-size: 0.58rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--grey);
    text-decoration: none;
    transition: color 0.3s;
  }

  .footer-right a:hover { color: var(--white); }

  .footer-logo {
    height: 28px;
    width: auto;
    opacity: 0.6;
    transition: opacity 0.3s;
  }

  .footer-logo:hover { opacity: 1; }

  /* ===== MOBILE / DESKTOP VISIBILITY ===== */
  .mobile-only { display: none; }
  .desktop-only { display: block; }

  /* ===== MOBILE EXPLORE CARDS ===== */
  .explore-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .explore-card {
    display: grid;
    grid-template-columns: 56px 1fr 40px;
    align-items: center;
    padding: 20px 16px;
    background: rgba(240,236,228,0.03);
    text-decoration: none;
    color: var(--white);
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--border);
  }

  .explore-card:first-child { border-top: 1px solid var(--border); }

  .explore-card:hover,
  .explore-card:active {
    background: rgba(240,236,228,0.06);
    padding-left: 22px;
  }

  .explore-icon {
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .explore-info h3 {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 3px;
  }

  .explore-info p {
    font-family: 'DM Mono', monospace;
    font-size: 0.62rem;
    color: var(--grey);
    letter-spacing: 0.08em;
  }

  .explore-arrow {
    font-size: 1.2rem;
    color: var(--grey);
    text-align: right;
    transition: color 0.3s, transform 0.3s;
  }

  .explore-card:hover .explore-arrow {
    color: var(--accent);
    transform: translateX(4px);
  }

  /* ===== SCROLL ANIMATIONS ===== */
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* Hero animations */
  @keyframes fade-up {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .hero-left > * {
    animation: fade-up 0.8s ease-out both;
  }

  .hero-title { animation-delay: 0.15s; }
  .hero-logo { animation-delay: 0.35s; }
  .hero-subtitle { animation-delay: 0.55s; }
  .hero-cta { animation-delay: 0.75s; }
  .hero-social { animation-delay: 0.9s; }

  .hero-social {
    display: flex;
    gap: 14px;
    margin-top: 28px;
  }

  .hero-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border-light);
    color: var(--grey);
    transition: all 0.3s ease;
  }

  .hero-social a:hover {
    color: var(--white);
    border-color: var(--white);
    background: rgba(240,236,228,0.05);
  }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 1024px) {
    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-left { padding: 60px 40px; border-right: none; }
    .hero-right { height: 50vh; }
    .hero-right::after {
      background: linear-gradient(to bottom, var(--black) 0%, transparent 20%);
    }
    .about-content { grid-template-columns: 1fr; }
    .about-text { border-right: none; padding: 60px 40px; }
    .about-stats { padding: 0 40px 60px; }
    .contact-content { grid-template-columns: 1fr; }
    .contact-left { border-right: none; padding: 60px 40px; }
    .contact-right { padding: 0 40px 60px; }
    .section-header { grid-template-columns: 140px 1fr; }
    .gigs-content { padding: 40px; }
    .songs-content { padding: 40px; }
    .gallery-content { padding: 40px; }
    .video-content { padding: 40px; }
    footer { padding: 24px 40px; }
  }

  @media (max-width: 768px) {
    .desktop-only { display: none !important; }
    .mobile-only { display: block !important; }

    .nav-links { display: none; }
    .nav-links.open {
      display: flex;
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: rgba(10,10,10,0.98);
      border-bottom: 1px solid var(--border);
    }
    .nav-links.open li {
      border-right: none;
      border-bottom: 1px solid var(--border);
    }
    .nav-links.open li:last-child { margin-left: 0; border-left: none; }
    .nav-toggle { display: block; }

    .hero-left { padding: 50px 24px; }
    .hero-right { height: 40vh; }
    .hero-title { font-size: 2.8rem; }
    .hero-cta { flex-direction: column; }
    .hero-cta .btn { text-align: center; }

    .section-header { grid-template-columns: 1fr; }
    .section-number { border-right: none; border-bottom: 1px solid var(--border); padding: 12px 24px; }
    .section-title { padding: 12px 24px; }

    .gig-row {
      grid-template-columns: 1fr;
      gap: 4px;
      padding: 16px 0;
    }
    .gig-status { text-align: left; margin-top: 4px; }

    .songs-content { grid-template-columns: 1fr 1fr; gap: 24px; padding: 24px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }

    .gigs-content { padding: 24px; }
    .gallery-content { padding: 24px; }
    .video-content { padding: 24px; }
    .about-text { padding: 40px 24px; }
    .about-stats { padding: 0 24px 40px; }
    .contact-left { padding: 40px 24px; }
    .contact-right { padding: 0 24px 40px; }
    footer { padding: 20px 24px; flex-direction: column; gap: 12px; text-align: center; }
  }

  @media (max-width: 480px) {
    .songs-content { grid-template-columns: 1fr; }
    .hero-title { font-size: 2.2rem; }
  }

/* Sub-page styles */

.subpage-body { padding-top: 54px; }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey);
  text-decoration: none;
  padding: 24px 0 0;
  transition: color 0.3s;
}

.back-link:hover { color: var(--white); }

.subpage-content {
  max-width: 1440px;
  margin: 0 auto;
  padding: 20px 24px 60px;
}

.subpage-hero {
  padding: 40px 24px 20px;
  max-width: 1440px;
  margin: 0 auto;
}

.subpage-hero h1 {
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.subpage-hero h1 span { color: var(--accent); }

.subpage-hero p {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  color: var(--grey);
  letter-spacing: 0.1em;
}
