*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --pink:    #FF2D7A;
      --teal:    #00C4B0;
      --black:   #0D0D0D;
      --white:   #FAFAF8;
      --off:     #F2F0EB;
      --muted:   #888;
      --border:  #E0DDD8;
      --card:    #F7F5F1;
    }
    html { scroll-behavior: smooth; }
    body { background: var(--white); color: var(--black); font-family: 'Barlow', sans-serif; font-weight: 300; overflow-x: hidden; }
    ::-webkit-scrollbar { width: 3px; }
    ::-webkit-scrollbar-track { background: var(--white); }
    ::-webkit-scrollbar-thumb { background: var(--pink); }

    /* NAV */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 500;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0.7rem 2.5rem;
      background: rgba(255,45,122,0.97);
      backdrop-filter: blur(10px);
    }
    .nav-brand { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; }
    .nav-cat {
      height: 34px; width: 34px; object-fit: contain;
      mix-blend-mode: multiply;
    }
    .nav-wordmark {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800; font-size: 1rem;
      letter-spacing: 0.08em; text-transform: uppercase; color: #fff;
    }
    nav ul { list-style: none; display: flex; gap: 1.8rem; }
    nav ul a {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 600; font-size: 0.7rem;
      letter-spacing: 0.14em; text-transform: uppercase;
      color: rgba(255,255,255,0.75); text-decoration: none; transition: color 0.2s;
    }
    nav ul a:hover { color: #fff; }

    /* HERO — full-screen pink, typographic */
    #hero {
      background: var(--pink);
      min-height: 100vh;
      padding: 7rem 3rem 5rem;
      display: flex; flex-direction: column; justify-content: flex-end;
      position: relative; overflow: hidden;
    }
    .hero-bg-text {
      position: absolute; top: 50%; left: 50%;
      transform: translate(-50%,-50%);
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800; font-size: clamp(12rem, 22vw, 22rem);
      line-height: 1; text-transform: uppercase;
      -webkit-text-stroke: 2px rgba(255,255,255,0.1);
      color: transparent; white-space: nowrap;
      pointer-events: none; user-select: none; letter-spacing: -0.03em;
    }
    .hero-content { position: relative; z-index: 2; max-width: 900px; }
    .hero-kicker {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 600; font-size: 0.7rem;
      letter-spacing: 0.3em; text-transform: uppercase;
      color: rgba(255,255,255,0.65); margin-bottom: 1.2rem;
      display: flex; align-items: center; gap: 0.8rem;
    }
    .hero-kicker::before { content: ''; display: inline-block; width: 28px; height: 1px; background: rgba(255,255,255,0.45); }
    .hero-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800; font-style: italic;
      font-size: clamp(5rem, 13vw, 12rem);
      line-height: 0.88; text-transform: uppercase; color: #fff; letter-spacing: -0.02em;
    }
    .hero-title .outline { -webkit-text-stroke: 2px #fff; color: transparent; font-style: normal; }
    .hero-bottom {
      margin-top: 3rem;
      display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 2rem;
    }
    .hero-sub { font-size: 0.95rem; line-height: 1.75; color: rgba(255,255,255,0.8); max-width: 360px; font-weight: 400; }
    .hero-actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
    .hero-event-pill { display: flex; flex-direction: column; gap: 0.3rem; margin-bottom: 1.2rem; }
    .event-pill-label { font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.55); }
    .event-pill-value { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1rem; color: #fff; letter-spacing: 0.04em; text-transform: uppercase; }
    .btn-white { display: inline-block; padding: 0.85rem 2rem; background: #fff; color: var(--pink); font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none; border: none; cursor: pointer; transition: transform 0.15s, box-shadow 0.2s; }
    .btn-white:hover { transform: translate(-2px,-2px); box-shadow: 4px 4px 0 rgba(0,0,0,0.2); }
    .btn-ghost { display: inline-block; padding: 0.85rem 2rem; background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.6); font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none; cursor: pointer; transition: background 0.2s, border-color 0.2s; }
    .btn-ghost:hover { background: rgba(255,255,255,0.15); border-color: #fff; }

    /* SHARED */
    section { padding: 6rem 3rem; }
    .container { max-width: 1100px; margin: 0 auto; }
    .section-label { display: block; font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 0.63rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--pink); margin-bottom: 0.8rem; }
    h2 { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: clamp(2.8rem, 5vw, 4.2rem); text-transform: uppercase; line-height: 1; }
    h2 em { font-style: italic; color: var(--pink); }
    h2 .outline { -webkit-text-stroke: 1.5px var(--black); color: transparent; }
    hr.rule { border: none; border-top: 1px solid var(--border); margin: 2rem 0 3.5rem; }
    .btn { display: inline-block; padding: 0.85rem 2rem; background: var(--pink); color: #fff; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none; border: none; cursor: pointer; transition: transform 0.15s, box-shadow 0.2s; }
    .btn:hover { transform: translate(-2px,-2px); box-shadow: 4px 4px 0 var(--black); }
    .btn-outline { background: transparent; border: 1.5px solid var(--black); color: var(--black); }
    .btn-outline:hover { background: var(--black); color: var(--white); box-shadow: 4px 4px 0 var(--pink); }

    /* EVENT */
    #event { background: var(--off); }
    .event-grid { display: grid; grid-template-columns: 360px 1fr; gap: 5rem; align-items: start; }
    .event-poster-wrap { position: relative; }
    .event-poster { width: 100%; display: block; box-shadow: 6px 6px 0 var(--black); }
    .poster-tape { position: absolute; top: -10px; left: 50%; transform: translateX(-50%) rotate(-2deg); width: 75px; height: 20px; background: rgba(255,45,122,0.5); }
    .poster-tape2 { position: absolute; bottom: -8px; right: 18px; transform: rotate(2.5deg); width: 55px; height: 16px; background: rgba(0,196,176,0.5); }
    .event-big-date { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-style: italic; font-size: clamp(3.5rem, 6vw, 5.5rem); line-height: 1; text-transform: uppercase; }
    .event-big-date .pink { color: var(--pink); }
    .event-theme-block { display: inline-block; margin-top: 0.8rem; padding: 0.5rem 1rem; background: var(--black); color: var(--white); font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-style: italic; font-size: 1.5rem; text-transform: uppercase; }
    .event-theme-block .pink { color: var(--pink); }
    .event-meta-list { list-style: none; margin: 2rem 0; display: flex; flex-direction: column; gap: 0.7rem; }
    .event-meta-list li { display: flex; align-items: center; gap: 0.8rem; font-size: 0.85rem; color: #555; }
    .event-meta-list li::before { content: ''; width: 6px; height: 6px; background: var(--teal); flex-shrink: 0; }
    .event-desc { font-size: 0.9rem; line-height: 1.85; color: #555; margin-bottom: 2rem; max-width: 420px; }
    .event-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

    /* MANIFESTO */
    #manifesto { background: var(--black); color: var(--white); padding: 7rem 3rem; }
    #manifesto .section-label { color: var(--teal); }
    .manifesto-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
    .manifesto-statements { display: flex; flex-direction: column; }
    .manifesto-line { padding: 1.4rem 0; border-bottom: 1px solid #222; display: flex; align-items: baseline; gap: 1.2rem; }
    .manifesto-line:first-child { border-top: 1px solid #222; }
    .manifesto-num { font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 0.68rem; color: var(--pink); letter-spacing: 0.1em; min-width: 2rem; flex-shrink: 0; }
    .manifesto-text { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-style: italic; line-height: 1.45; color: #ccc; }
    .manifesto-text strong { color: #fff; font-style: normal; }
    .manifesto-right h2 { color: var(--white); margin-bottom: 2rem; }
    .manifesto-headline { color: var(--white); margin-bottom: 3rem; max-width: 16ch; }
    .manifesto-headline em { color: var(--pink); }
    .manifesto-headline .outline { -webkit-text-stroke: 1.5px #fff; color: transparent; }
    .manifesto-body { font-size: 0.9rem; line-height: 1.9; color: #888; }
    .manifesto-body p { margin-bottom: 1rem; }
    .manifesto-body strong { color: #ccc; }

    /* ARTISTS */
    #artists { background: var(--white); }
    .artists-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 2rem; }
    .artist-card { background: var(--card); border: 1px solid var(--border); overflow: hidden; transition: transform 0.25s, box-shadow 0.25s; }
    .artist-card:hover { transform: translate(-3px,-3px); box-shadow: 6px 6px 0 var(--black); }
    .artist-photo { width: 100%; aspect-ratio: 3/4; display: flex; align-items: center; justify-content: center; overflow: hidden; position: relative; }
    .artist-photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(20%); transition: filter 0.3s; }
    .artist-card:hover .artist-photo img { filter: grayscale(0%); }
    .artist-photo-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--off) 0%, #e8e4de 100%); }
    .artist-photo-placeholder span { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 5rem; color: var(--border); }
    .artist-genre-tag { position: absolute; top: 0.8rem; left: 0.8rem; background: var(--pink); color: #fff; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase; padding: 0.15rem 0.6rem; }
    .artist-info { padding: 1.5rem; }
    .artist-name { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.4rem; text-transform: uppercase; line-height: 1; margin-bottom: 0.4rem; }
    .artist-tagline { font-family: 'Playfair Display', serif; font-style: italic; font-size: 0.82rem; color: var(--muted); margin-bottom: 0.9rem; }
    .artist-bio { font-size: 0.8rem; line-height: 1.75; color: #666; margin-bottom: 1.2rem; }
    .artist-links { display: flex; gap: 0.6rem; flex-wrap: wrap; }
    .artist-link { font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--black); text-decoration: none; border: 1px solid var(--border); padding: 0.3rem 0.7rem; transition: background 0.2s, border-color 0.2s, color 0.2s; }
    .artist-link:hover { background: var(--pink); border-color: var(--pink); color: #fff; }
    .artist-card-cta { background: var(--off); border: 1.5px dashed var(--border); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 3rem 2rem; min-height: 420px; transition: border-color 0.2s, background 0.2s; }
    .artist-card-cta:hover { border-color: var(--pink); background: #fff8fa; }
    .artist-card-cta span { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); display: block; margin-top: 1rem; }
    .cta-plus { width: 48px; height: 48px; border: 2px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--muted); margin: 0 auto; }

    /* POETRY */
    #poetry { background: var(--off); }
    .poetry-tabs { display: flex; margin-bottom: 3rem; border-bottom: 1px solid var(--border); }
    .poetry-tab { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.75rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); padding: 0.8rem 1.6rem; cursor: pointer; border: none; background: none; border-bottom: 2px solid transparent; margin-bottom: -1px; transition: color 0.2s, border-color 0.2s; }
    .poetry-tab.active { color: var(--pink); border-bottom-color: var(--pink); }
    .poetry-tab:hover:not(.active) { color: var(--black); }
    .poetry-panel { display: none; }
    .poetry-panel.active { display: block; }
    .poem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
    .poem-author-row { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
    .poem-author-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--border); display: flex; align-items: center; justify-content: center; overflow: hidden; flex-shrink: 0; }
    .poem-author-avatar span { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.1rem; color: var(--muted); }
    .poem-author-info .name { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.06em; }
    .poem-author-info .date { font-size: 0.72rem; color: var(--muted); margin-top: 0.1rem; }
    .poem-title-display { font-family: 'Playfair Display', serif; font-weight: 700; font-style: italic; font-size: clamp(1.8rem, 3vw, 2.8rem); line-height: 1.15; margin-bottom: 1rem; }
    .poem-theme-tag { display: inline-block; background: var(--off); border: 1px solid var(--border); font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); padding: 0.2rem 0.7rem; margin-bottom: 2rem; }
    .poem-desc { font-size: 0.85rem; line-height: 1.8; color: #666; }
    .poem-text-display { border-left: 3px solid var(--pink); padding: 2rem 2rem 2rem 2.5rem; background: var(--white); }
    .poem-text-display pre { font-family: 'Playfair Display', serif; font-size: 1.05rem; line-height: 2; color: var(--black); white-space: pre-wrap; word-break: break-word; }
    .poem-text-display pre strong { font-weight: 700; font-style: normal; color: var(--black); }
    .poem-text-display pre em { color: var(--pink); font-style: italic; }
    .video-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 2rem; }
    .video-card { background: var(--white); border: 1px solid var(--border); overflow: hidden; }
    .video-embed-wrap { position: relative; padding-bottom: 56.25%; height: 0; background: var(--black); overflow: hidden; }
    .video-embed-wrap.portrait { padding-bottom: 177.78%; max-width: 320px; margin: 0 auto; }
    .video-embed-wrap iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }
    .video-placeholder { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; background: #111; color: #444; cursor: pointer; transition: background 0.2s; }
    .video-placeholder:hover { background: #1a1a1a; }
    .play-icon { width: 52px; height: 52px; border: 2px solid #444; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 0.8rem; transition: border-color 0.2s; }
    .video-placeholder:hover .play-icon { border-color: var(--pink); }
    .play-icon svg { fill: #fff; margin-left: 3px; }
    .video-placeholder p { font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; }
    .video-info { padding: 1.2rem; }
    .video-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.1rem; text-transform: uppercase; margin-bottom: 0.3rem; }
    .video-author { font-size: 0.78rem; color: var(--muted); }
    .video-event-tag { font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--teal); }

    /* ARCHIVE */
    #archive { background: var(--white); }
    .archive-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1px; background: var(--border); border: 1px solid var(--border); }
    .archive-card { background: var(--white); padding: 2rem; transition: background 0.2s; }
    .archive-card:hover { background: var(--black); }
    .archive-card:hover .archive-theme { color: var(--pink); }
    .archive-card:hover .archive-month { color: var(--teal); }
    .archive-card:hover .archive-venue { color: #666; }
    .archive-month { font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 0.63rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--teal); margin-bottom: 0.5rem; transition: color 0.2s; }
    .archive-theme { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-style: italic; font-size: 1.5rem; text-transform: uppercase; color: var(--black); margin-bottom: 0.3rem; transition: color 0.2s; }
    .archive-venue { font-size: 0.72rem; color: var(--muted); transition: color 0.2s; }
    .archive-more { background: var(--white); padding: 2rem; display: flex; align-items: center; justify-content: center; color: var(--muted); font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; }

    /* NEWSLETTER */
    #newsletter { background: var(--black); color: var(--white); text-align: center; }
    #newsletter .section-label { color: var(--teal); }
    #newsletter h2 { color: var(--white); margin-bottom: 1rem; }
    #newsletter .sub-text { color: #777; font-size: 0.9rem; line-height: 1.8; margin-bottom: 3rem; max-width: 420px; margin-left: auto; margin-right: auto; }
    .newsletter-form { display: flex; max-width: 460px; margin: 0 auto; }
    .newsletter-form input { flex: 1; padding: 0.9rem 1.2rem; background: transparent; border: 1px solid #333; border-right: none; color: var(--white); font-family: 'Barlow', sans-serif; font-size: 0.85rem; outline: none; transition: border-color 0.2s; }
    .newsletter-form input::placeholder { color: #555; }
    .newsletter-form input:focus { border-color: var(--teal); }
    .newsletter-form button { padding: 0.9rem 1.6rem; background: var(--pink); color: #fff; border: none; cursor: pointer; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; transition: background 0.2s; }
    .newsletter-form button:hover { background: #e01f65; }
    .form-note { margin-top: 1rem; font-size: 0.65rem; color: #555; letter-spacing: 0.08em; }

    /* FOOTER */
    footer { border-top: 1px solid var(--border); padding: 2.5rem 3rem; }
    .footer-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem; }
    .footer-brand-row { display: flex; align-items: center; gap: 0.6rem; }
    .footer-cat { height: 28px; width: 28px; object-fit: contain; }
    .footer-brand { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 0.95rem; letter-spacing: 0.08em; text-transform: uppercase; }
    .footer-brand span { color: var(--pink); }
    .footer-links { display: flex; gap: 2rem; align-items: center; flex-wrap: wrap; }
    .footer-links a { font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); text-decoration: none; transition: color 0.2s; }
    .footer-links a:hover { color: var(--pink); }
    .ig-pill { display: flex; align-items: center; gap: 0.5rem; border: 1.5px solid var(--black); color: var(--black) !important; padding: 0.4rem 0.9rem; transition: background 0.2s, color 0.2s !important, border-color 0.2s !important; }
    .ig-pill:hover { background: var(--pink) !important; border-color: var(--pink) !important; color: #fff !important; }
    .footer-copy { width: 100%; font-size: 0.62rem; color: var(--muted); letter-spacing: 0.08em; padding-top: 1.5rem; border-top: 1px solid var(--border); }


    .host-grid {
      display: grid;
      grid-template-columns: 380px 1fr;
      gap: 5rem;
      align-items: start;
    }
    @media (max-width: 768px) {
      .host-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }
    }


    .poster-grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 1.2rem;
      align-items: end;
      margin: 2rem -2rem 2.5rem;
      width: calc(100% + 4rem);
    }
    @media (max-width: 768px) {
      .poster-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 2rem 0 2.5rem;
        width: 100%;
      }
      .poster-grid > div {
        transform: none !important;
        margin-top: 0 !important;
      }
    }

    /* REVEAL */
    .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s, transform 0.7s; }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-d1 { transition-delay: 0.1s; }
    .reveal-d2 { transition-delay: 0.2s; }
    .reveal-d3 { transition-delay: 0.3s; }

    /* RESPONSIVE */
    @media (max-width: 960px) {
      .event-grid, .manifesto-grid, .poem-grid { grid-template-columns: 1fr; gap: 2.5rem; }
      nav { padding: 0.7rem 1.5rem; }
      nav ul { gap: 1rem; }
      nav ul a { font-size: 0.62rem; }
      section { padding: 4.5rem 1.5rem; }
      #hero { padding: 6rem 1.5rem 4rem; }
    }
    @media (max-width: 600px) {
      nav ul { display: none; }
      .hero-bottom { flex-direction: column; align-items: flex-start; }
    }

/* ANTHOLOGY SPLASH — teaser band for the first-edition anthology */
#anthology { background: var(--black); color: var(--white); padding: 5rem 3rem; overflow: hidden; }
.anthology-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 0.8fr 1fr; gap: 3.5rem; align-items: center; }
.anthology-img-wrap img { width: 100%; max-width: 360px; display: block; margin: 0 auto; box-shadow: 10px 10px 0 var(--pink); border: 3px solid var(--white); transform: rotate(-2.5deg); transition: transform 0.25s; }
.anthology-img-wrap img:hover { transform: rotate(0deg) scale(1.02); }
.anthology-kicker { font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 0.7rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--teal); margin-bottom: 1.2rem; display: flex; align-items: center; gap: 0.7rem; }
.anthology-kicker::before { content: ''; display: inline-block; width: 28px; height: 1px; background: var(--teal); }
.anthology-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-style: italic; font-size: clamp(2.2rem, 4.6vw, 3.6rem); line-height: 0.95; text-transform: uppercase; margin-bottom: 1.5rem; letter-spacing: -0.01em; }
.anthology-title .pink { color: var(--pink); }
.anthology-body { font-size: 1rem; line-height: 1.75; color: rgba(255,255,255,0.82); max-width: 460px; font-weight: 400; margin-bottom: 1.8rem; }
.anthology-when { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.05rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 2rem; }
.anthology-when span { color: var(--pink); }
@media (max-width: 760px) { #anthology { padding: 3.5rem 1.5rem; } .anthology-inner { grid-template-columns: 1fr; gap: 2.5rem; } }
