  :root {
    --yellow:  #FFE800;
    --bg:      #FFE800;
    --mouse:   #0a0a0a;     /* was grey — now black for alt sections */
    --soft:    #0a0a0a;     /* same — alt sections now black */
    --ink:     #0a0a0a;
    --grey-text: #4a4a4a;
    --line:    #0a0a0a;
    --line-soft: rgba(10,10,10,0.15);
  }

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

  body {
    background: var(--bg);
    color: var(--ink);
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  a { color: inherit; text-decoration: none; }
  img { max-width: 100%; display: block; }

  /* ============================================================
     TOP HEADER — Locarno's simple two-line structure:
     Top: language + utility.   Bottom: big logo + nav
     ============================================================ */
  .util {
    background: var(--bg);
    border-bottom: 1px solid var(--line-soft);
    padding: 10px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    font-weight: 500;
  }
  .util-left { display: flex; gap: 20px; color: var(--grey-text); }
  .util-left a:hover, .util-right a:hover { color: var(--ink); }
  .util-right { display: flex; gap: 20px; align-items: center; }
  .util-right .langs { display: flex; gap: 8px; }
  .util-right .langs a { color: var(--grey-text); }
  .util-right .langs a.active { color: var(--ink); font-weight: 700; }

  header.main {
    background: var(--bg);
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--line-soft);
  }
  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    font-size: 19px;
    letter-spacing: -0.01em;
    color: var(--ink);
  }
  .logo-mark {
    width: 22px;
    height: 22px;
    background: var(--ink);
    flex-shrink: 0;
  }
  footer .logo-mark { background: #fff; }

  nav.main-nav {
    display: flex;
    gap: 28px;
    font-size: 14px;
    font-weight: 600;
  }
  nav.main-nav a {
    padding: 6px 0;
    position: relative;
    transition: color 0.2s;
    color: var(--ink);
  }
  nav.main-nav a:hover { color: var(--grey-text); }

  .header-right {
    display: flex;
    gap: 12px;
    align-items: center;
  }
  .btn {
    padding: 10px 20px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border: 1px solid var(--ink);
    color: var(--ink);
    transition: all 0.2s;
    cursor: pointer;
  }
  .btn:hover { background: var(--ink); color: var(--bg); }
  .btn.filled {
    background: var(--ink);
    color: var(--bg);
    border-color: var(--ink);
  }
  .btn.filled:hover {
    background: var(--yellow);
    color: var(--ink);
    border-color: var(--yellow);
  }

  .icon-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--ink);
  }

  /* ============================================================
     HERO BLOCK — LOCARNO SIGNATURE
     Full-bleed image + tiny LOCARNO78 tag top-left +
     huge multi-line title overlaid bottom-left.
     ============================================================ */
  .hero {
    position: relative;
    width: 100%;
    min-height: 78vh;
    background: var(--ink);
    overflow: hidden;
  }
  .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.82);
  }

  .hero-tag {
    position: absolute;
    top: 28px;
    left: 28px;
    z-index: 2;
    color: var(--yellow);
    font-weight: 900;
    font-size: clamp(20px, 2.4vw, 28px);
    letter-spacing: -0.01em;
    line-height: 1;
  }

  .hero-title {
    position: absolute;
    left: 28px;
    bottom: 40px;
    right: 28px;
    z-index: 2;
    color: var(--yellow);
    font-weight: 900;
    font-size: clamp(37px, 5.1vw, 74px);
    line-height: 0.95;
    letter-spacing: -0.03em;
    max-width: 1400px;
  }
  .hero-title sup {
    font-size: 0.45em;
    vertical-align: super;
    font-weight: 700;
  }

  /* Small play-icon bottom-right, very Locarno */
  .hero-play {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 2;
    width: 64px;
    height: 64px;
    border: 2px solid var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
  }
  .hero-play:hover { background: var(--yellow); }
  .hero-play:hover svg path { fill: #000; }
  .hero-play svg { width: 22px; height: 22px; }

  /* ============================================================
     BIG-IMAGE BLOCK — Locarno's stacked full-width content.
     Large image with a HUGE title on top, supporting text below.
     ============================================================ */
  .block {
    position: relative;
    background: var(--bg);
  }

  .block-image {
    position: relative;
    width: 100%;
    aspect-ratio: 21/9;
    overflow: hidden;
  }
  .block-image::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.55) 100%);
    pointer-events: none;
    z-index: 1;
  }
  .block-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.88);
  }

  .block-title-overlay {
    position: absolute;
    bottom: 32px;
    left: 32px;
    right: 32px;
    color: var(--yellow);
    font-weight: 900;
    font-size: clamp(37px, 5.1vw, 74px);
    line-height: 0.95;
    letter-spacing: -0.025em;
    z-index: 2;
    max-width: 1200px;
  }
  .block-tag-overlay {
    position: absolute;
    top: 28px;
    left: 32px;
    color: var(--yellow);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    z-index: 2;
  }

  .block-meta {
    padding: 36px 32px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 32px;
    border-bottom: 1px solid var(--line);
    background: var(--bg);
  }
  .block-meta .left {
    flex: 1;
    max-width: 820px;
    font-size: 17px;
    line-height: 1.55;
    color: var(--ink);
  }
  .block-meta .left p + p { margin-top: 0.8em; }
  .block-meta .right {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    flex-shrink: 0;
  }
  .block-meta .right a {
    padding: 12px 20px;
    border: 1px solid var(--ink);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    white-space: nowrap;
    transition: all 0.2s;
    color: var(--ink);
  }
  .block-meta .right a:hover { background: var(--ink); color: var(--bg); }
  .block-meta .right a.more::after { content: " →"; margin-left: 4px; }

  /* ============================================================
     INTRO STRIP — dark, big text (Locarno's manifesto text)
     ============================================================ */
  .intro-strip {
    padding: 120px 32px;
    background: var(--ink);
    color: #fff;
    border-bottom: 1px solid var(--line);
  }
  .intro-strip .inner {
    max-width: 1400px;
    margin: 0 auto;
  }
  .intro-strip .label {
    color: var(--yellow);
    font-size: 13px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 36px;
  }
  .intro-strip h1.lead {
    font-size: clamp(32px, 4.6vw, 68px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.025em;
    color: #fff;
    max-width: 1300px;
    margin-bottom: 48px;
  }
  .intro-strip h1.lead em {
    font-style: italic;
    font-weight: 800;
    background: var(--yellow);
    color: var(--ink);
    padding: 0 0.2em;
    margin: 0 0.05em;
  }
  .intro-strip .divider {
    height: 1px;
    background: rgba(255,255,255,0.2);
    margin: 48px 0;
  }
  .intro-strip .body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    max-width: 1300px;
    font-size: 17px;
    line-height: 1.65;
    color: #e8e8e8;
  }
  .intro-strip .body p + p { margin-top: 1em; }
  .intro-strip .body em {
    background: var(--yellow);
    color: var(--ink);
    padding: 0 0.15em;
    font-style: italic;
    font-weight: 600;
  }

  /* ============================================================
     DISCOVER GRID — multi-row grid of image cards, Locarno-style
     ============================================================ */
  .discover {
    padding: 96px 32px 48px;
    background: var(--bg);
  }
  .discover-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
  }
  .discover-header h2 {
    color: var(--ink);
    font-size: clamp(37px, 5.1vw, 74px);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.03em;
  }
  .discover-header h2 em {
    background: var(--ink);
    color: var(--yellow);
    font-style: normal;
    padding: 0 0.2em;
  }
  .discover-header a {
    color: var(--ink);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 700;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--ink);
  }
  .discover-header a:hover { opacity: 0.6; }

  .discover-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 24px;
    max-width: 1400px;
    margin: 0 auto;
  }
  .card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: var(--bg);
  }
  .card .card-img {
    aspect-ratio: 4/5;
    overflow: hidden;
    position: relative;
    background: #f0efec;
  }
  .card .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
  }
  .card:hover .card-img img {
    transform: scale(1.04);
  }
  .card .card-content {
    padding: 18px 0 20px;
  }
  .card .card-tag {
    color: var(--ink);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 10px;
  }
  .card .card-tag::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--ink);
    margin-right: 8px;
    vertical-align: middle;
    transform: translateY(-1px);
  }
  .card .card-title {
    color: var(--ink);
    font-size: 22px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.015em;
    margin-bottom: 8px;
  }
  .card:hover .card-title { text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 3px; }
  .card .card-lead {
    color: var(--ink);
    font-size: 15px;
    line-height: 1.5;
    margin: 0 0 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .card.wide .card-lead {
    font-size: 17px;
    -webkit-line-clamp: 4;
  }
  .card .card-meta {
    color: var(--grey-text);
    font-size: 13px;
    line-height: 1.4;
  }

  .card.wide { grid-column: span 2; }
  .card.wide .card-img { aspect-ratio: 21/9; }

  /* ============================================================
     NEWS SECTION — list of small items
     ============================================================ */
  .news {
    background: var(--ink);
    color: #fff;
    padding: 96px 32px;
    border-top: 1px solid var(--line);
  }
  .news-inner {
    max-width: 1400px;
    margin: 0 auto;
  }
  .news-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 48px;
  }
  .news-header h2 {
    color: #fff;
    font-size: clamp(37px, 5.1vw, 74px);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.03em;
  }
  .news-header a {
    color: var(--yellow);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 700;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--yellow);
  }
  .news-header a:hover { opacity: 0.8; }

  .news-list { border-top: 1px solid rgba(255,255,255,0.2); }
  .news-item {
    display: grid;
    grid-template-columns: 120px 120px 1fr 80px auto;
    gap: 32px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    align-items: center;
    cursor: pointer;
    transition: padding 0.2s;
  }
  .news-item:hover { padding-left: 12px; padding-right: 12px; background: var(--yellow); color: var(--ink); }
  .news-item .date {
    color: #a0a0a0;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.05em;
  }
  .news-item:hover .date { color: var(--ink); }
  .news-item .tag {
    color: var(--yellow);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 700;
  }
  .news-item:hover .tag { color: var(--ink); }
  .news-item .title {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.015em;
  }
  .news-item:hover .title { color: var(--ink); }
  .news-item .thumb {
    width: 80px;
    height: 60px;
    overflow: hidden;
    border-radius: 3px;
    background: #222;
  }
  .news-item .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .news-item .arrow {
    color: #fff;
    font-size: 18px;
    transition: transform 0.2s;
  }
  .news-item:hover .arrow { transform: translateX(4px); color: var(--ink); }

  /* ============================================================
     PRACTICAL BLOCK
     ============================================================ */
  .practical {
    padding: 96px 32px;
    background: var(--ink);
    color: #fff;
    border-top: 1px solid var(--line);
  }
  .practical-inner { max-width: 1400px; margin: 0 auto; }
  .practical-inner h2 {
    color: #fff;
    font-size: clamp(37px, 5.1vw, 74px);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.03em;
    margin-bottom: 48px;
  }
  .practical-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.25);
    border-left: 1px solid rgba(255,255,255,0.25);
  }
  .practical-item {
    padding: 32px 28px;
    border-right: 1px solid rgba(255,255,255,0.25);
    border-bottom: 1px solid rgba(255,255,255,0.25);
    min-height: 200px;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    color: #fff;
  }
  .practical-item:hover { background: var(--yellow); color: var(--ink); }
  .practical-item .num {
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--yellow);
    font-weight: 700;
  }
  .practical-item:hover .num { color: var(--ink); }
  .practical-item h3 {
    font-size: 26px;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    color: #fff;
  }
  .practical-item:hover h3 { color: var(--ink); }
  .practical-item p {
    font-size: 14px;
    line-height: 1.5;
    color: #c0c0c0;
    margin-bottom: auto;
  }
  .practical-item:hover p { color: var(--ink); }
  .practical-item .link {
    margin-top: 20px;
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--yellow);
  }
  .practical-item:hover .link { color: var(--ink); }
  .practical-item .link::after { content: " →"; }

  /* ============================================================
     NEWSLETTER
     ============================================================ */
  .newsletter {
    padding: 120px 32px;
    background: var(--ink);
    color: var(--yellow);
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .newsletter h2 {
    font-size: clamp(37px, 5.1vw, 74px);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    color: var(--yellow);
  }
  .newsletter p {
    font-size: 18px;
    line-height: 1.4;
    max-width: 640px;
    margin: 0 auto 40px;
    color: #fff;
  }
  .newsletter-form {
    max-width: 560px;
    margin: 0 auto;
    display: flex;
    gap: 0;
    border: 2px solid var(--yellow);
  }
  .newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 16px 20px;
    font-family: inherit;
    font-size: 15px;
    color: var(--yellow);
    outline: none;
  }
  .newsletter-form input::placeholder { color: rgba(255,232,0,0.5); }
  .newsletter-form button {
    background: var(--yellow);
    color: var(--ink);
    border: none;
    padding: 0 32px;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s;
  }
  .newsletter-form button:hover { background: #fff; }

  /* ============================================================
     PARTNERS STRIP
     ============================================================ */
  .partners-strip {
    padding: 80px 32px;
    background: var(--bg);
    border-top: 1px solid var(--line);
  }
  .partners-strip h4 {
    text-align: center;
    color: var(--ink);
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 48px;
    font-weight: 700;
  }
  .partners-row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
    align-items: stretch;
    max-width: 1400px;
    margin: 0 auto;
  }
  .partners-row .partner {
    background: var(--ink);
    color: #fff;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.02em;
    text-align: center;
    padding: 22px 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 72px;
    line-height: 1.15;
    transition: background 0.15s, color 0.15s, transform 0.15s;
    text-transform: uppercase;
    border-radius: 4px;
  }
  .partners-row .partner:hover {
    background: #fff;
    color: var(--ink);
  }

  /* ============================================================
     FOOTER
     ============================================================ */
  footer {
    background: var(--ink);
    color: #fff;
    padding: 80px 32px 28px;
  }
  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
  }
  .footer-brand .mark {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    font-size: 24px;
    margin-bottom: 16px;
    color: #fff;
  }
  .footer-brand p {
    color: #a0a0a0;
    font-size: 14px;
    line-height: 1.55;
    max-width: 300px;
    margin-bottom: 16px;
  }
  .footer-col h5 {
    color: var(--yellow);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 18px;
  }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 10px; font-size: 14px; }
  .footer-col a { color: #c5c5c5; }
  .footer-col a:hover { color: var(--yellow); }

  .footer-bottom {
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #7a7a7a;
    flex-wrap: wrap;
    gap: 16px;
  }
  .footer-bottom .socials {
    display: flex;
    gap: 14px;
  }
  .footer-bottom .socials a {
    width: 32px;
    height: 32px;
    border: 1px solid #555;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bbb;
    transition: all 0.2s;
  }
  .footer-bottom .socials a:hover {
    border-color: var(--yellow);
    color: var(--yellow);
  }

  /* ============================================================
     RESPONSIVE
     ============================================================ */
  @media (max-width: 1000px) {
    .intro-strip .body { grid-template-columns: 1fr; gap: 24px; }
    .discover-grid { grid-template-columns: 1fr 1fr; }
    .card.wide { grid-column: span 2; }
    .practical-grid { grid-template-columns: 1fr 1fr; }
    .partners-row { grid-template-columns: repeat(3, 1fr); }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
    .block-meta { flex-direction: column; }
    .news-item { grid-template-columns: 80px 1fr 60px auto; gap: 16px; }
    .news-item .tag { display: none; }
    .news-item .thumb { width: 60px; height: 45px; }
  }
  @media (max-width: 680px) {
    .util { padding: 8px 14px; font-size: 11px; }
    .util-left { display: none; }
    header.main { padding: 14px 14px; gap: 10px; flex-wrap: wrap; }
    nav.main-nav { display: none; }
    .hero { min-height: 70vh; }
    .block-image { aspect-ratio: 3/4; min-height: 70vh; }
    .block-image img { object-position: center; }
    .hero-tag { top: 16px; left: 16px; }
    .hero-title { left: 16px; right: 16px; bottom: 24px; }
    .hero-play { right: 16px; bottom: 24px; width: 48px; height: 48px; }
    .block-title-overlay { left: 16px; right: 16px; bottom: 20px; }
    .block-tag-overlay { top: 16px; left: 16px; }
    .block-meta { padding: 20px 16px; }
    .intro-strip { padding: 72px 16px; }
    .discover { padding: 56px 16px; }
    .discover-grid { grid-template-columns: 1fr; }
    .card.wide { grid-column: span 1; }
    .news { padding: 64px 16px; }
    .practical { padding: 64px 16px; }
    .practical-grid { grid-template-columns: 1fr; }
    .newsletter { padding: 72px 16px; }
    .newsletter-form { flex-direction: column; border: none; gap: 12px; }
    .newsletter-form input { border: 2px solid #000; }
    .newsletter-form button { padding: 16px; }
    .partners-strip { padding: 40px 16px; }
    .partners-row { grid-template-columns: 1fr 1fr; gap: 24px; }
    footer { padding: 48px 16px 16px; }
    .footer-top { grid-template-columns: 1fr; gap: 28px; padding-bottom: 32px; }
  }

  /* ============================================================
     SUB-PAGE STYLES
     ============================================================ */
  .page-hero {
    padding: 24px 32px 48px;
    border-bottom: 1px solid var(--line);
  }
  .page-hero-inner {
    max-width: 1400px;
    margin: 0 auto;
  }
  .page-hero .crumbs {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 24px;
    color: var(--ink);
  }
  .page-hero .crumbs a { border-bottom: 1px solid var(--ink); }
  .page-hero .crumbs a:hover { opacity: 0.6; }
  .page-hero .crumbs span { opacity: 0.4; margin: 0 10px; }
  .page-hero h1 {
    font-size: clamp(48px, 8vw, 120px);
    font-weight: 900;
    line-height: 0.92;
    letter-spacing: -0.04em;
    margin-bottom: 28px;
    max-width: 1400px;
  }
  .page-hero h1 em {
    font-style: italic;
    font-weight: 800;
    background: var(--ink);
    color: var(--yellow);
    padding: 0 0.15em;
  }
  .page-hero .lead {
    font-size: clamp(18px, 1.8vw, 24px);
    line-height: 1.45;
    max-width: 900px;
    font-weight: 500;
  }

  /* Content sections */
  .prose {
    padding: 64px 32px;
    border-bottom: 1px solid var(--line);
  }
  .prose.dark {
    background: var(--ink);
    color: #fff;
  }
  .prose.dark h2, .prose.dark h3 { color: #fff; }
  .prose.dark p { color: #e8e8e8; }
  .prose.dark a { color: var(--yellow); border-bottom: 1px solid var(--yellow); }
  .prose-inner {
    max-width: 900px;
    margin: 0 auto;
  }
  .prose-inner.wide { max-width: 1400px; }
  .prose h2 {
    font-size: clamp(32px, 4.4vw, 56px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
  }
  .prose h3 {
    font-size: clamp(22px, 2.4vw, 28px);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 32px 0 12px;
  }
  .prose p {
    font-size: 17px;
    line-height: 1.65;
    margin-bottom: 1em;
    max-width: 720px;
  }
  .prose ul { padding-left: 0; list-style: none; max-width: 720px; }
  .prose li {
    font-size: 17px;
    line-height: 1.55;
    padding: 10px 0 10px 28px;
    border-bottom: 1px solid var(--line-soft);
    position: relative;
  }
  .prose li::before {
    content: "→";
    position: absolute;
    left: 0;
    top: 10px;
    font-weight: 700;
  }
  .prose.dark li { border-color: rgba(255,255,255,0.15); }

  /* Ticket tiers grid */
  .tiers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
  }
  .tier {
    background: var(--ink);
    color: #fff;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    min-height: 420px;
    border-radius: 4px;
  }
  .tier.featured {
    background: var(--yellow);
    color: var(--ink);
    outline: 2px solid var(--ink);
    transform: scale(1.02);
  }
  .tier .tier-label {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--yellow);
  }
  .tier.featured .tier-label { color: var(--ink); }
  .tier h3 {
    font-size: 34px;
    font-weight: 900;
    letter-spacing: -0.025em;
    margin-bottom: 6px;
    line-height: 1;
    color: inherit;
  }
  .tier .price {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    opacity: 0.85;
  }
  .tier ul {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
  }
  .tier li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    font-size: 14px;
  }
  .tier.featured li { border-color: rgba(10,10,10,0.15); }
  .tier li:last-child { border-bottom: none; }
  .tier .cta {
    margin-top: auto;
    padding: 14px 22px;
    text-align: center;
    background: var(--yellow);
    color: var(--ink);
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 999px;
    transition: background 0.15s;
  }
  .tier.featured .cta { background: var(--ink); color: var(--yellow); }
  .tier .cta:hover { background: #fff; }

  /* Program day schedule */
  .schedule-day {
    margin-bottom: 56px;
  }
  .schedule-day h3 {
    font-size: clamp(28px, 3.6vw, 44px);
    font-weight: 900;
    letter-spacing: -0.025em;
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--ink);
  }
  .sched-list {}
  .sched-item {
    display: grid;
    grid-template-columns: 100px 160px 1fr auto;
    gap: 24px;
    padding: 20px 0;
    border-bottom: 1px solid var(--line-soft);
    align-items: baseline;
  }
  .sched-item .time {
    font-weight: 700;
    font-size: 15px;
  }
  .sched-item .cat {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 700;
  }
  .sched-item .title {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.015em;
    line-height: 1.25;
  }
  .sched-item .venue {
    font-size: 13px;
    opacity: 0.65;
    font-weight: 500;
  }

  /* Form fields */
  .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 720px;
    margin-top: 24px;
  }
  .form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .form-field.full { grid-column: span 2; }
  .form-field label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .form-field input,
  .form-field select,
  .form-field textarea {
    padding: 14px 16px;
    background: transparent;
    border: 1.5px solid var(--ink);
    font-family: inherit;
    font-size: 15px;
    color: var(--ink);
    border-radius: 0;
  }
  .form-field textarea { min-height: 120px; resize: vertical; }
  .form-submit {
    margin-top: 16px;
    padding: 16px 32px;
    background: var(--ink);
    color: var(--yellow);
    border: none;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 999px;
    transition: background 0.15s;
  }
  .form-submit:hover { background: var(--yellow); color: var(--ink); outline: 2px solid var(--ink); }

  @media (max-width: 1000px) {
    .tiers { grid-template-columns: 1fr; }
    .tier.featured { transform: none; }
    .sched-item { grid-template-columns: 80px 1fr; gap: 10px 16px; }
    .sched-item .cat, .sched-item .title, .sched-item .venue { grid-column: 2; }
    .form-grid { grid-template-columns: 1fr; }
    .form-field.full { grid-column: span 1; }
  }
  @media (max-width: 680px) {
    .page-hero { padding: 16px 16px 32px; }
    .prose { padding: 48px 16px; }
  }
