  /* ═══════════════════════════════════════════
     RESET & BASE
     ═══════════════════════════════════════════ */
  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

  :root {
    --charcoal: #1a1714;
    --dark-wood: #2a2219;
    --warm-brown: #3d3024;
    --aged-oak: #5c4a3a;
    --burnt-sienna: #8b5e3c;
    --forge-orange: #c4632a;
    --ember: #e8873a;
    --hot-steel: #f0a050;
    --ash: #b0a898;
    --pale-ash: #d4ccc2;
    --bone: #ede6dc;
    --iron: #6b6560;
    --brushed-steel: #8a8580;
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--charcoal);
    color: var(--pale-ash);
    font-family: 'Libre Baskerville', Georgia, serif;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }

  ::selection {
    background: var(--forge-orange);
    color: var(--charcoal);
  }

  /* ═══════════════════════════════════════════
     NOISE OVERLAY (grain texture)
     ═══════════════════════════════════════════ */
  body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.035;
    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)'/%3E%3C/svg%3E");
    background-size: 256px 256px;
  }

  /* ═══════════════════════════════════════════
     NAVIGATION
     ═══════════════════════════════════════════ */
  nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to bottom, rgba(26,23,20,0.95), rgba(26,23,20,0));
    transition: background 0.4s;
  }

  nav.scrolled {
    background: rgba(26,23,20,0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(196,99,42,0.15);
  }

  .nav-brand {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.15em;
    color: var(--bone);
    text-decoration: none;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.6rem;
  }

  .nav-brand img {
    height: 1.8rem;
    width: auto;
    filter: invert(1);
    opacity: 0.9;
  }

  .nav-brand span {
    color: var(--forge-orange);
  }

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

  .nav-links a {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 300;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ash);
    text-decoration: none;
    position: relative;
    transition: color 0.3s;
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--forge-orange);
    transition: width 0.3s;
  }

  .nav-links a:hover { color: var(--ember); }
  .nav-links a:hover::after { width: 100%; }

  /* Mobile menu */
  .nav-toggle { display: none; background: none; border: none; cursor: pointer; }
  .nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--ash);
    margin: 5px 0;
    transition: all 0.3s;
  }

  /* ═══════════════════════════════════════════
     HERO
     ═══════════════════════════════════════════ */
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    filter: brightness(0.3) saturate(0.7);
    transform: scale(1.05);
    animation: heroZoom 20s ease-in-out infinite alternate;
  }

  @keyframes heroZoom {
    0% { transform: scale(1.05); }
    100% { transform: scale(1.12); }
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse at 30% 80%, rgba(196,99,42,0.15) 0%, transparent 60%),
      radial-gradient(ellipse at 70% 20%, rgba(232,135,58,0.08) 0%, transparent 50%),
      linear-gradient(to bottom, rgba(26,23,20,0.3) 0%, rgba(26,23,20,0.6) 60%, var(--charcoal) 100%);
  }

  .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
  }

  .hero-nameplate {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(1.5rem, 3vw, 3rem);
  }

  .hero-logo {
    height: clamp(8rem, 18vw, 16rem);
    width: auto;
    filter: invert(1);
    opacity: 0.85;
    animation: fadeUp 1s ease-out both;
  }

  .hero-line {
    display: block;
    overflow: hidden;
  }

  .hero-name {
    font-family: 'Cinzel', serif;
    font-weight: 900;
    font-size: clamp(3.5rem, 10vw, 9rem);
    line-height: 0.95;
    color: var(--bone);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    animation: fadeUp 1.2s ease-out both;
  }

  .hero-name .last {
    display: block;
    color: var(--forge-orange);
    animation: fadeUp 1.2s ease-out 0.2s both;
  }

  .hero-rule {
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--forge-orange), transparent);
    margin: 2rem auto;
    animation: fadeUp 1s ease-out 0.5s both;
  }

  .hero-subtitle {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 300;
    font-size: clamp(0.65rem, 1.5vw, 0.85rem);
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--ash);
    animation: fadeUp 1s ease-out 0.6s both;
  }

  .hero-materials {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    gap: 3rem;
    animation: fadeUp 1s ease-out 0.8s both;
  }

  .material-tag {
    font-family: 'Cinzel', serif;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--aged-oak);
    position: relative;
    padding: 0 0.5rem;
  }

  .material-tag::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -1rem;
    width: 6px;
    height: 6px;
    border: 1px solid var(--forge-orange);
    transform: rotate(45deg) translateY(-50%);
  }

  .hero-scroll {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: fadeUp 1s ease-out 1.2s both;
  }

  .hero-scroll a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--iron);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.55rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
  }

  .scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--forge-orange), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
  }

  @keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.4; transform: scaleY(0.6); }
  }

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

  /* ═══════════════════════════════════════════
     SECTION SHARED STYLES
     ═══════════════════════════════════════════ */
  section {
    position: relative;
    padding: 8rem 2rem;
  }

  .section-header {
    text-align: center;
    margin-bottom: 5rem;
  }

  .section-label {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 300;
    font-size: 0.65rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--forge-orange);
    margin-bottom: 1rem;
    display: block;
  }

  .section-title {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--bone);
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  .section-rule {
    width: 60px;
    height: 2px;
    background: var(--forge-orange);
    margin: 1.5rem auto 0;
  }

  /* ═══════════════════════════════════════════
     ABOUT
     ═══════════════════════════════════════════ */
  .about {
    background:
      linear-gradient(to bottom, var(--charcoal), rgba(42,34,25,0.6), var(--charcoal));
  }

  .about-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }

  .about-image-frame {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
  }

  .about-image-frame::before {
    content: '';
    position: absolute;
    inset: 12px;
    border: 1px solid var(--forge-orange);
    opacity: 0.3;
    z-index: 2;
    pointer-events: none;
  }

  .about-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.6) brightness(0.85);
    transition: all 0.6s;
  }

  .about-image-frame:hover img {
    filter: saturate(0.8) brightness(0.95);
    transform: scale(1.03);
  }

  .about-image-label {
    position: absolute;
    bottom: 2rem;
    left: -1rem;
    background: var(--charcoal);
    padding: 0.5rem 1.5rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--forge-orange);
    border: 1px solid rgba(196,99,42,0.3);
    z-index: 3;
  }

  .about-text h3 {
    font-family: 'Cinzel', serif;
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--bone);
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
  }

  .about-text p {
    font-size: 0.95rem;
    color: var(--ash);
    margin-bottom: 1.5rem;
    max-width: 500px;
  }

  .about-text p:first-of-type::first-letter {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    float: left;
    line-height: 0.8;
    margin-right: 0.5rem;
    margin-top: 0.1rem;
    color: var(--forge-orange);
    font-weight: 700;
  }

  .about-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(196,99,42,0.15);
  }

  .about-stat {
    text-align: center;
  }

  .stat-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: block;
  }

  .stat-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--iron);
  }

  .stat-value {
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    color: var(--ember);
    font-weight: 600;
    letter-spacing: 0.1em;
  }

  /* ═══════════════════════════════════════════
     MATERIALS STRIP
     ═══════════════════════════════════════════ */
  .materials-strip {
    padding: 6rem 2rem;
    background: var(--dark-wood);
    position: relative;
    overflow: hidden;
  }

  .materials-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      repeating-linear-gradient(
        90deg,
        transparent,
        transparent 200px,
        rgba(196,99,42,0.03) 200px,
        rgba(196,99,42,0.03) 201px
      );
  }

  .materials-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    position: relative;
  }

  .material-card {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    cursor: default;
  }

  .material-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.35) saturate(0.5);
    transition: all 0.6s;
  }

  .material-card:hover .material-card-bg {
    filter: brightness(0.5) saturate(0.7);
    transform: scale(1.08);
  }

  .material-card-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
  }

  .material-card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    opacity: 0.7;
  }

  .material-card h3 {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--bone);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
  }

  .material-card p {
    font-size: 0.8rem;
    color: var(--ash);
    max-width: 250px;
    line-height: 1.6;
  }

  /* ═══════════════════════════════════════════
     GALLERY
     ═══════════════════════════════════════════ */
  .gallery {
    background: var(--charcoal);
  }

  .gallery-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 300px;
    gap: 6px;
  }

  .gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: var(--dark-wood);
  }

  .gallery-item.tall { grid-row: span 2; }
  .gallery-item.wide { grid-column: span 2; }

  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.95);
    transition: all 0.5s;
  }

  .gallery-item:hover img {
    filter: brightness(1);
    transform: scale(1.05);
  }

  .gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,23,20,0.9) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
  }

  .gallery-item:hover .gallery-item-overlay { opacity: 1; }

  .gallery-item-overlay span {
    font-family: 'Cinzel', serif;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--bone);
    letter-spacing: 0.1em;
  }

  .gallery-item-overlay small {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.55rem;
    color: var(--forge-orange);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-top: 0.3rem;
  }

  /* Placeholder slots for actual artwork */
  .gallery-placeholder {
    background:
      linear-gradient(135deg, var(--dark-wood) 0%, var(--warm-brown) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    border: 1px dashed rgba(196,99,42,0.2);
  }

  .gallery-placeholder .placeholder-icon {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(196,99,42,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--forge-orange);
    font-size: 1.2rem;
    opacity: 0.5;
  }

  .gallery-placeholder .placeholder-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.55rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--iron);
    text-align: center;
    line-height: 1.8;
  }

  /* ═══════════════════════════════════════════
     EXHIBITIONS
     ═══════════════════════════════════════════ */
  .exhibitions {
    background:
      linear-gradient(to bottom, var(--charcoal), rgba(42,34,25,0.4), var(--charcoal));
  }

  .exhibitions-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
  }

  .exhibitions-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--forge-orange), transparent);
    transform: translateX(-50%);
  }

  .exhibition-item {
    position: relative;
    padding: 2.5rem 0;
    display: grid;
    grid-template-columns: 1fr 60px 1fr;
    align-items: center;
  }

  .exhibition-dot {
    width: 14px;
    height: 14px;
    border: 2px solid var(--forge-orange);
    background: var(--charcoal);
    border-radius: 50%;
    justify-self: center;
    position: relative;
    z-index: 2;
    transition: all 0.3s;
  }

  .exhibition-item:hover .exhibition-dot {
    background: var(--forge-orange);
    box-shadow: 0 0 20px rgba(196,99,42,0.4);
  }

  .exhibition-date {
    text-align: right;
    padding-right: 2rem;
  }

  .exhibition-date .year {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 2rem;
    color: var(--aged-oak);
    display: block;
    line-height: 1;
  }

  .exhibition-date .month {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--iron);
  }

  .exhibition-details {
    padding-left: 2rem;
  }

  .exhibition-details h3 {
    font-family: 'Cinzel', serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--bone);
    letter-spacing: 0.05em;
    margin-bottom: 0.3rem;
  }

  .exhibition-details .venue {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    color: var(--forge-orange);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
  }

  .exhibition-details p {
    font-size: 0.85rem;
    color: var(--ash);
    line-height: 1.6;
  }

  .exhibition-details a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid rgba(196,99,42,0.3);
    transition: border-color 0.3s, color 0.3s;
  }

  .exhibition-details a:hover {
    color: var(--ember);
    border-bottom-color: var(--ember);
  }

  .exhibition-details h3 a { border-bottom: none; }
  .exhibition-details h3 a:hover { color: var(--forge-orange); }

  /* ═══════════════════════════════════════════
     COMMUNITY
     ═══════════════════════════════════════════ */
  .community {
    padding: 6rem 2rem;
    background: var(--dark-wood);
    position: relative;
  }

  .community-inner {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .community-card {
    padding: 2.5rem;
    background: rgba(26,23,20,0.6);
    border: 1px solid rgba(196,99,42,0.1);
    transition: all 0.4s;
    position: relative;
  }

  .community-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--forge-orange);
    transition: height 0.4s;
  }

  .community-card:hover::before { height: 100%; }

  .community-card:hover {
    border-color: rgba(196,99,42,0.3);
    background: rgba(42,34,25,0.6);
  }

  .community-card h3 {
    font-family: 'Cinzel', serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--bone);
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
  }

  .community-card p {
    font-size: 0.85rem;
    color: var(--ash);
    line-height: 1.7;
  }

  .community-card .card-tag {
    display: inline-block;
    margin-top: 1.2rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.55rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--forge-orange);
    border: 1px solid rgba(196,99,42,0.3);
    padding: 0.3rem 0.8rem;
  }

  /* ═══════════════════════════════════════════
     CONTACT / FOOTER
     ═══════════════════════════════════════════ */
  .contact {
    padding: 8rem 2rem;
    background: var(--charcoal);
    text-align: center;
    position: relative;
  }

  .contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, var(--forge-orange), transparent);
  }

  .contact-inner {
    max-width: 600px;
    margin: 0 auto;
  }

  .contact-cta {
    font-family: 'Cinzel', serif;
    font-weight: 400;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: var(--bone);
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    line-height: 1.4;
  }

  .contact-text {
    font-size: 0.9rem;
    color: var(--ash);
    margin-bottom: 3rem;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
  }

  .contact-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
  }

  .contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 1.8rem;
    border: 1px solid rgba(196,99,42,0.3);
    text-decoration: none;
    color: var(--bone);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
  }

  .contact-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--forge-orange);
    transform: translateY(100%);
    transition: transform 0.3s;
    z-index: 0;
  }

  .contact-link:hover::before { transform: translateY(0); }
  .contact-link:hover { color: var(--charcoal); border-color: var(--forge-orange); }
  .contact-link span { position: relative; z-index: 1; }
  .contact-link svg { position: relative; z-index: 1; transition: fill 0.3s; }
  .contact-link:hover svg { fill: var(--charcoal); }

  footer {
    padding: 3rem 2rem;
    border-top: 1px solid rgba(196,99,42,0.1);
    text-align: center;
  }

  .footer-brand {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    color: var(--aged-oak);
    text-transform: uppercase;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
  }

  .footer-brand img {
    height: 2.4rem;
    width: auto;
    opacity: 0.35;
    filter: invert(1);
  }

  .footer-location {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.55rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--iron);
  }

  /* ═══════════════════════════════════════════
     LIGHTBOX
     ═══════════════════════════════════════════ */
  .lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(10,8,6,0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
    cursor: zoom-out;
  }

  .lightbox.active {
    opacity: 1;
    pointer-events: auto;
  }

  .lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border: 1px solid rgba(196,99,42,0.2);
    box-shadow: 0 0 80px rgba(0,0,0,0.6);
    transform: scale(0.92);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .lightbox.active img {
    transform: scale(1);
  }

  .lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ash);
    background: none;
    border: 1px solid rgba(196,99,42,0.3);
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: all 0.3s;
  }

  .lightbox-close:hover {
    color: var(--bone);
    border-color: var(--forge-orange);
  }

  .lightbox-caption {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--iron);
    text-align: center;
    white-space: nowrap;
  }

  .lightbox-prev,
  .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(196,99,42,0.15);
    border: 1px solid rgba(196,99,42,0.3);
    color: var(--ash);
    font-size: 2.5rem;
    line-height: 1;
    width: 3rem;
    height: 4rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
  }

  .lightbox-prev { left: 1.5rem; }
  .lightbox-next { right: 1.5rem; }

  .lightbox-prev:hover,
  .lightbox-next:hover {
    background: rgba(196,99,42,0.35);
    border-color: var(--forge-orange);
    color: var(--bone);
    transform: translateY(-50%) scale(1.05);
  }

  .gallery-item:not(.gallery-placeholder) { cursor: zoom-in; }

  /* ═══════════════════════════════════════════
     EASTER EGG: THE TRUTH
     ═══════════════════════════════════════════ */
  .nav-truth {
    position: fixed;
    top: 1.2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1001;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s;
  }

  .nav-truth.revealed {
    opacity: 1;
    pointer-events: auto;
  }

  .nav-truth.fading {
    opacity: 0;
  }

  .nav-truth a {
    color: #c42a2a !important;
    font-style: italic;
    letter-spacing: 0.3em !important;
  }

  .nav-truth a::after {
    background: #c42a2a !important;
  }

  /* ═══════════════════════════════════════════
     SCROLL ANIMATIONS
     ═══════════════════════════════════════════ */
  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  }

  .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; }

  /* ═══════════════════════════════════════════
     DECORATIVE ELEMENTS
     ═══════════════════════════════════════════ */
  .corner-mark {
    position: absolute;
    width: 30px;
    height: 30px;
    border-color: rgba(196,99,42,0.2);
    border-style: solid;
    pointer-events: none;
  }
  .corner-mark.tl { top: 2rem; left: 2rem; border-width: 1px 0 0 1px; }
  .corner-mark.tr { top: 2rem; right: 2rem; border-width: 1px 1px 0 0; }
  .corner-mark.bl { bottom: 2rem; left: 2rem; border-width: 0 0 1px 1px; }
  .corner-mark.br { bottom: 2rem; right: 2rem; border-width: 0 1px 1px 0; }

  /* ═══════════════════════════════════════════
     RESPONSIVE
     ═══════════════════════════════════════════ */
  @media (max-width: 900px) {
    .about-grid {
      grid-template-columns: 1fr;
      gap: 3rem;
    }

    .about-image-frame {
      max-width: 400px;
      margin: 0 auto;
    }

    .materials-grid {
      grid-template-columns: 1fr;
      gap: 2px;
    }

    .material-card {
      aspect-ratio: 2/1;
    }

    .gallery-grid {
      grid-template-columns: 1fr 1fr;
      grid-auto-rows: 250px;
    }

    .gallery-item.wide { grid-column: span 1; }
    .gallery-item.tall { grid-row: span 1; }

    .exhibitions-timeline::before { left: 20px; }
    .exhibition-item {
      grid-template-columns: 40px 1fr;
      gap: 0;
    }
    .exhibition-date {
      grid-column: 2;
      text-align: left;
      padding: 0 0 0.5rem 1rem;
    }
    .exhibition-dot {
      grid-row: 1 / 3;
      grid-column: 1;
      align-self: start;
      margin-top: 0.3rem;
    }
    .exhibition-details {
      grid-column: 2;
      padding-left: 1rem;
    }

    .community-inner {
      grid-template-columns: 1fr;
    }
  }

  @media (max-width: 600px) {
    nav { padding: 1rem 1.5rem; }
    .nav-links { display: none; }
    .nav-toggle { display: block; }
    .nav-links.open {
      display: flex;
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: rgba(26,23,20,0.97);
      padding: 2rem;
      gap: 1.5rem;
      backdrop-filter: blur(10px);
    }

    .hero-nameplate {
      flex-direction: column;
      gap: 1rem;
    }
    .hero-logo {
      height: 5rem;
    }
    .hero-materials { gap: 1.5rem; flex-wrap: wrap; }
    .material-tag::before { display: none; }

    section { padding: 5rem 1.5rem; }
    .section-header { margin-bottom: 3rem; }

    .gallery-grid {
      grid-template-columns: 1fr;
      grid-auto-rows: 250px;
    }

    .about-stats { gap: 1.5rem; }
    .contact-links { flex-direction: column; align-items: center; }

    .lightbox-prev,
    .lightbox-next {
      width: 2.5rem;
      height: 3.5rem;
      font-size: 2rem;
    }
    .lightbox-prev { left: 0.75rem; }
    .lightbox-next { right: 0.75rem; }
  }
