@media (max-width: 1000px) {
  body.menu-open {
    overflow: hidden;
  }

  .site-header {
    position: sticky;
    top: 0;
  }

  .nav {
    position: relative;
    flex-wrap: nowrap;
    min-height: 64px;
    padding: 10px 0;
  }

  .brand {
    max-width: calc(100% - 58px);
  }

  .brand-logo {
    height: 42px;
    max-width: min(220px, calc(100vw - 98px));
    object-fit: contain;
  }

  .brand-blaq {
    font-size: clamp(1.4rem, 9vw, 2.05rem);
  }

  .brand-fest {
    font-size: clamp(0.9rem, 5.4vw, 1.22rem);
  }

  .brand-year {
    font-size: clamp(0.88rem, 4.6vw, 1.08rem);
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
    width: 46px;
    height: 46px;
    margin-left: auto;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    color: var(--ink);
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(34, 24, 18, 0.08);
  }

  .nav-toggle-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .nav-toggle-lines {
    position: relative;
    display: block;
    width: 22px;
    height: 16px;
  }

  .nav-toggle-lines span {
    position: absolute;
    left: 0;
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 220ms ease, opacity 160ms ease, top 220ms ease;
  }

  .nav-toggle-lines span:nth-child(1) {
    top: 0;
  }

  .nav-toggle-lines span:nth-child(2) {
    top: 7px;
  }

  .nav-toggle-lines span:nth-child(3) {
    top: 14px;
  }

  .nav.is-open .nav-toggle-lines span:nth-child(1) {
    top: 7px;
    transform: rotate(45deg);
  }

  .nav.is-open .nav-toggle-lines span:nth-child(2) {
    opacity: 0;
  }

  .nav.is-open .nav-toggle-lines span:nth-child(3) {
    top: 7px;
    transform: rotate(-45deg);
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: grid;
    gap: 18px;
    overflow: hidden;
    max-height: 0;
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 0 18px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 24px 60px rgba(34, 24, 18, 0.16);
    opacity: 0;
    transform: translateY(-10px);
    transition: max-height 320ms ease, opacity 180ms ease, transform 220ms ease, padding 220ms ease, border-color 220ms ease;
    pointer-events: none;
  }

  .nav.is-open .nav-menu {
    max-height: calc(100vh - 92px);
    overflow-y: auto;
    border-color: var(--line);
    padding: 18px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-links {
    display: grid;
    gap: 4px;
    width: 100%;
    font-size: 1rem;
    justify-items: stretch;
    text-align: left;
  }

  .nav-links a {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    min-height: 44px;
    border-bottom: 1px solid var(--line);
    text-align: left;
  }

  .nav-links li:last-child a {
    border-bottom: 0;
  }

  .nav-actions {
    display: grid;
    width: 100%;
    gap: 10px;
    min-width: 0;
    justify-items: stretch;
  }

  .nav-actions .button {
    width: 100%;
    min-height: 48px;
    justify-content: center;
  }

  .hero img {
    width: 100%;
    height: auto;
  }

  .about,
  .pillars,
  .date-strip,
  .news,
  .community-action {
    padding-bottom: 38px;
  }

  .pillars-main,
  .experience-panel {
    text-align: center;
  }

  .pillar-card {
    text-align: center;
  }

  .pillar-card::before {
    left: 50%;
    transform: translateX(-50%);
  }

  .pillar-icon {
    margin-right: auto;
    margin-left: auto;
  }

  .experience-list li {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 8px;
    text-align: center;
  }

  .experience-panel .button {
    width: 100%;
  }

  .section-title,
  .pillars-title,
  .experience-title,
  .date-banner h2,
  .newsletter h2 {
    word-break: normal;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 520px) {
  .brand-logo {
    height: 36px;
    max-width: min(190px, calc(100vw - 96px));
  }

  .about {
    padding-top: 30px;
  }

  .section-title {
    font-size: 1.82rem;
  }

  .about-copy {
    font-size: 0.95rem;
    line-height: 1.62;
  }

  .date-banner h2 {
    font-size: 1.72rem;
  }

  .note-image {
    width: 100%;
  }

  .newsletter h2 {
    font-size: 1.65rem;
  }

  .footer-logo .blaq {
    font-size: 2rem;
  }

  .pillars-main,
  .experience-panel,
  .pillar-card {
    text-align: center;
  }

  .pillar-card::before {
    left: 50%;
    transform: translateX(-50%);
  }

  .pillar-icon {
    margin-right: auto;
    margin-left: auto;
  }
}
