:root {
  --tag-bg: #f7f5f1;
  --tag-surface: #ffffff;
  --tag-surface-soft: #efebe5;
  --tag-text: #111111;
  --tag-muted: #58524b;
  --tag-border: #141414;
  --tag-accent: #e41e23;
  --tag-accent-soft: #fde8e8;
  --tag-black: #0c0c0c;
  --tag-shell: min(1440px, calc(100vw - 40px));
  --tag-font-display: "Manrope", "Avenir Next", "Helvetica Neue", "Segoe UI", sans-serif;
  --tag-font-sans: "Manrope", "Avenir Next", "Helvetica Neue", "Segoe UI", sans-serif;
  --tag-space-1: 0.25rem;
  --tag-space-2: 0.5rem;
  --tag-space-3: 0.75rem;
  --tag-space-4: 1rem;
  --tag-space-5: 1.5rem;
  --tag-space-6: 2rem;
  --tag-space-7: 3rem;
  --tag-space-8: 4.5rem;
  --tag-space-9: 7rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--tag-font-sans);
  background: var(--tag-bg);
  color: var(--tag-text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.seo-hidden {
  position: absolute;
  left: -9999px;
}

.tag-shell {
  width: var(--tag-shell);
  margin: 0 auto;
}

.tag-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.tag-eyebrow--no-line::before {
  display: none;
}

.tag-eyebrow--no-line {
  color: var(--tag-accent);
}

.tag-eyebrow::before {
  content: "";
  width: 2.75rem;
  height: 1px;
  background: currentColor;
}

.tag-kicker {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.tag-site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: #ffffff;
  border-bottom: 1px solid rgba(17, 17, 17, 0.18);
  backdrop-filter: none;
}

.tag-site-header__inner {
  min-height: 74px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--tag-space-5);
}

.tag-branding a,
.tag-footer-brand h2 {
  font-family: var(--tag-font-display);
  font-size: clamp(1.55rem, 1.8vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.03em;
}

.tag-branding a {
  display: inline-flex;
  align-items: center;
  font-size: clamp(1.15rem, 1.4vw, 1.4rem);
}

.tag-branding img {
  width: clamp(120px, 12vw, 168px);
  height: auto;
}

.tag-primary-nav {
  grid-column: 2;
  justify-self: center;
}

.tag-mobile-extras {
  display: none;
}

.tag-nav-list,
.tag-footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.tag-footer-social {
  flex-direction: row;
  gap: 1rem;
}

.tag-footer-social a {
  display: flex;
  align-items: center;
  color: var(--tag-text);
}

.tag-footer-social a::after {
  display: none;
}

.tag-nav-list a,
.tag-footer-menu a {
  position: relative;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
}

.tag-nav-list a::after,
.tag-footer-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.45rem;
  width: 100%;
  height: 2px;
  background: var(--tag-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.tag-nav-list a:hover::after,
.tag-nav-list .current-menu-item > a::after,
.tag-nav-list .current_page_item > a::after,
.tag-footer-menu a:hover::after {
  transform: scaleX(1);
}

.tag-search-button,
.tag-button,
.wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 1.4rem;
  border: 1px solid var(--tag-black);
  background: var(--tag-black);
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.tag-search-button:hover,
.tag-button:hover,
.wp-block-button__link:hover {
  transform: translateY(-1px);
}

.tag-header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 0.9rem;
}

.tag-search-form {
  display: flex;
  align-items: center;
}

.tag-search-form input {
  width: 0;
  max-width: 0;
  padding: 0;
  border: 0;
  border-bottom: 1.5px solid transparent;
  background: transparent;
  font-size: 0.875rem;
  color: var(--tag-black);
  overflow: hidden;
  transition: width 0.25s ease, max-width 0.25s ease, padding 0.25s ease, border-color 0.25s ease;
}

.tag-search-form.is-open input {
  width: 180px;
  max-width: 180px;
  padding: 0.2rem 0.4rem;
  border-bottom-color: var(--tag-black);
}

.tag-search-form input:focus {
  outline: none;
}

.tag-search-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--tag-black);
  flex-shrink: 0;
}

.tag-search-button svg,
.tag-social-link svg {
  width: 21px;
  height: 21px;
  display: block;
  flex-shrink: 0;
}

.tag-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  flex-shrink: 0;
  transition: transform 180ms ease, color 180ms ease;
}

.tag-lang-switcher {
  display: flex;
  align-items: center;
  gap: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--tag-black);
  margin-left: 0.4rem;
  padding-left: 0.9rem;
  border-left: 1px solid rgba(17, 17, 17, 0.2);
}

.tag-lang-switcher a,
.tag-lang-switcher span {
  padding: 0 0.3rem;
  color: var(--tag-black);
  text-decoration: none;
  transition: color 180ms ease;
}

.tag-lang-switcher a:hover {
  color: var(--tag-accent);
}

.tag-lang-switcher .tag-lang-divider {
  color: rgba(17, 17, 17, 0.3);
  padding: 0;
}

.tag-social-link:hover {
  transform: translateY(-1px);
  color: var(--tag-accent);
}

.tag-button--ghost {
  background: transparent;
  color: var(--tag-black);
}

.tag-site-main {
  overflow: clip;
}

.tag-home-hero {
  padding: var(--tag-space-6) 0 0;
}

.tag-home-hero__slider {
  position: relative;
  overflow: hidden;
  background: var(--tag-black);
}

.tag-home-hero__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
  pointer-events: none;
}

.tag-home-hero__slide.is-active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
}

.tag-home-hero__image {
  width: 100%;
  height: 76vh;
  object-fit: cover;
  display: block;
}


.tag-home-hero__dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.tag-home-hero__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}

.tag-home-hero__dot.is-active {
  background: #fff;
  transform: scale(1.3);
}

.tag-home-hero__panel {
  position: relative;
  min-height: 76vh;
  border: 1px solid var(--tag-border);
  background:
    linear-gradient(90deg, rgba(12, 12, 12, 0.93) 0%, rgba(26, 26, 26, 0.68) 16%, rgba(255, 255, 255, 0) 26%, rgba(255, 255, 255, 0) 74%, rgba(36, 36, 36, 0.72) 84%, rgba(12, 12, 12, 0.95) 100%),
    radial-gradient(circle at 52% 62%, rgba(255, 255, 255, 0.88), rgba(229, 226, 220, 0.82) 28%, rgba(190, 186, 180, 0.3) 48%, rgba(10, 10, 10, 0) 64%),
    linear-gradient(180deg, #e6e1d8 0%, #cbc6bd 56%, #9f9a90 100%);
  overflow: hidden;
}

.tag-home-hero__panel::before,
.tag-home-hero__panel::after {
  content: "";
  position: absolute;
  inset: auto;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 0 0 1px rgba(17, 17, 17, 0.08);
}

.tag-home-hero__panel::before {
  left: 23%;
  top: 22%;
  width: 46%;
  height: 44%;
}

.tag-home-hero__panel::after {
  left: 17%;
  top: 12%;
  width: 3%;
  height: 50%;
  background: rgba(255, 255, 255, 0.3);
}

.tag-home-plinth,
.tag-home-art {
  position: absolute;
  background: #f4f2ee;
  box-shadow: 0 0 0 1px rgba(17, 17, 17, 0.08);
}

.tag-home-plinth {
  bottom: 13%;
  width: 4.5%;
  height: 20%;
}

.tag-home-plinth--1 { left: 24%; }
.tag-home-plinth--2 { left: 35%; height: 15%; }
.tag-home-plinth--3 { left: 47%; height: 11%; }
.tag-home-plinth--4 { left: 63%; height: 17%; }

.tag-home-art {
  width: 26px;
  height: 26px;
  border: 3px solid rgba(122, 83, 30, 0.94);
  background: linear-gradient(180deg, #dfd8c7 0%, #b79e78 100%);
}

.tag-home-art--1 { left: 34%; top: 32%; }
.tag-home-art--2 { left: 42%; top: 37%; width: 22px; height: 22px; }
.tag-home-art--3 { left: 49%; top: 35%; width: 20px; height: 20px; }
.tag-home-art--4 { left: 58%; top: 36%; width: 24px; height: 24px; }
.tag-home-art--5 { left: 71%; top: 42%; width: 20px; height: 20px; }
.tag-home-art--6 { left: 73%; top: 47%; width: 18px; height: 18px; }

.tag-home-hero__meta {
  display: grid;
  grid-template-columns: repeat(5, minmax(120px, 1fr));
  gap: 0;
  padding: 0.95rem 1rem;
  border-left: 1px solid var(--tag-border);
  border-right: 1px solid var(--tag-border);
  border-bottom: 3px solid var(--tag-accent);
  background: var(--tag-surface);
}

.tag-home-hero__meta span {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.35);
}

.tag-section {
  padding: var(--tag-space-9) 0;
}

.tag-section--tight {
  padding: var(--tag-space-8) 0;
}

.tag-section--dark {
  background: var(--tag-accent);
  color: #ffffff;
}

.tag-grid-12 {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.5rem;
}

.tag-copy-block {
  display: grid;
  gap: 1.35rem;
}

.tag-copy-block h1,
.tag-copy-block h2,
.tag-copy-block h3,
.tag-page-hero h1,
.tag-feature-title,
.tag-stat-card strong,
.tag-contact-lead,
.tag-article-card h2,
.tag-archive-card h3 {
  font-family: var(--tag-font-display);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.tag-copy-block h2,
.tag-page-hero h1,
.tag-feature-title {
  font-size: clamp(1.75rem, 3vw, 3rem);
  text-transform: none;
}

.tag-concept-quote,
.tag-founder-panel,
.tag-owner-panel,
.tag-artist-panel,
.tag-contact-panel,
.tag-highlight-strip,
.tag-press-card,
.tag-archive-card,
.tag-form-card,
.tag-contact-card,
.tag-page-body .tag-entry-content {
  border: 1px solid rgba(17, 17, 17, 0.18);
  background: var(--tag-surface);
}

.tag-concept-quote,
.tag-founder-panel,
.tag-owner-panel,
.tag-artist-panel,
.tag-form-card,
.tag-contact-card,
.tag-page-body .tag-entry-content {
  padding: clamp(1.3rem, 2vw, 2rem);
}

.tag-concept-quote {
  border-left: 3px solid var(--tag-border);
  background: var(--tag-surface-soft);
}

.tag-concept-sdg-section {
  border-top: 1px solid rgba(17, 17, 17, 0.1);
}

.tag-concept-sdg-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.tag-concept-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tag-sdg-box {
  background: #ffffff;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(17, 17, 17, 0.06);
  overflow: hidden;
}

.tag-sdg-box__inner {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.tag-sdg-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.tag-sdg-icon {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.tag-highlight-strip {
  padding: 1.25rem 1.5rem;
  background: var(--tag-surface-soft);
}

.tag-highlight-strip strong {
  display: block;
  max-width: 72rem;
  font-family: var(--tag-font-display);
  font-size: clamp(1.1rem, 2.2vw, 1.65rem);
  font-weight: 600;
  line-height: 1.05;
  text-transform: none;
}

.tag-mbor-strip {
  background: #000000;
  padding: 2rem 0;
}

.tag-mbor-strip__inner {
  width: var(--tag-shell);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.tag-mbor-strip__text {
  font-family: var(--tag-font-display);
  font-size: clamp(1.05rem, 2vw, 1.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  margin: 0;
  max-width: 640px;
}

.tag-mbor-strip__highlight {
  color: #f5c518;
}

.tag-mbor-strip__logo {
  flex-shrink: 0;
}

.tag-mbor-strip__logo img {
  display: block;
  width: auto;
  height: auto;
  max-width: 160px;
  max-height: 80px;
  object-fit: contain;
}

@media (max-width: 680px) {
  .tag-mbor-strip__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
}

.tag-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.tag-stat-card {
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  padding-top: 1.25rem;
}

.tag-stat-card strong {
  display: block;
  font-size: clamp(2.1rem, 3.6vw, 3.1rem);
}

.tag-stat-card span {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.tag-events {
  display: grid;
  gap: 1.4rem;
}

.tag-event {
  display: grid;
  grid-template-columns: minmax(160px, 0.55fr) 2fr;
  gap: 0;
  border: 1px solid rgba(17, 17, 17, 0.16);
  background: linear-gradient(180deg, #ffffff 0%, #faf8f4 100%);
  overflow: hidden;
}

.tag-event__date {
  display: grid;
  gap: 0.4rem;
  align-content: start;
  padding: 1.7rem 1.5rem;
  background: linear-gradient(180deg, #f1eee7 0%, #fbfaf7 100%);
  border-right: 1px solid rgba(17, 17, 17, 0.08);
}

.tag-event__subtitle,
.tag-press-date,
.tag-archive-meta {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.tag-event__full-date {
  font-family: var(--tag-font-display);
  font-size: clamp(1.15rem, 1.65vw, 1.45rem);
  line-height: 1.1;
  text-transform: none;
}

.tag-event__content h3,
.tag-contact-email,
.tag-contact-social {
  margin: 0.25rem 0 0.8rem;
  font-family: var(--tag-font-display);
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  font-weight: 600;
  line-height: 0.95;
  text-transform: none;
}

.tag-event__content {
  padding: 1.7rem 1.8rem;
  position: relative;
}

.tag-event__content::before {
  display: none;
}

.tag-event__subtitle {
  margin-bottom: 1rem;
  color: var(--tag-accent);
}

.tag-timeline-section .tag-copy-block {
  max-width: 34rem;
}

.tag-timeline-section__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
}

.tag-timeline-legend {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  padding-top: 1rem;
}

.tag-timeline-legend__item {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6d6d6d;
}

.tag-timeline-legend__item::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background: currentColor;
}

.tag-timeline-legend__item--upcoming {
  color: #7a7a7a;
}

.tag-timeline-legend__item--upcoming::before {
  background: #ff1c1c;
}

.tag-timeline-legend__item--past {
  color: #6d6d6d;
}

.tag-timeline-legend__item--past::before {
  background: #111111;
}

.tag-artist-showcase {
  max-width: 52rem;
  padding: 0;
  background: transparent;
  color: var(--tag-text);
}

.tag-artist-band {
  background: transparent;
  color: var(--tag-text);
}

.tag-artist-band .tag-shell {
  padding-top: 0;
  padding-bottom: 0;
}

.tag-artist-band .tag-benefit-card p {
  color: var(--tag-muted);
}

.tag-artist-band .tag-benefit-card:nth-child(even) p {
  color: #ffffff;
}

.tag-artist-band .tag-benefit-card:nth-child(4) p,
.tag-artist-band .tag-benefit-card:nth-child(6) p {
  color: #111111;
}


.tag-artist-showcase p,
.tag-artist-showcase h2 {
  color: inherit;
}

.tag-artist-showcase h2 {
  display: inline-block;
  padding: 0.7rem 1rem 0.8rem;
  background: var(--tag-accent);
  color: #ffffff;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  line-height: 1.05;
}

.tag-artist-showcase .tag-eyebrow::before {
  background: var(--tag-accent);
}

.tag-artist-showcase .tag-eyebrow {
  color: var(--tag-accent);
}

.tag-page-shell {
  width: var(--tag-shell);
  margin: 0 auto;
}

.tag-page-accent {
  height: 10px;
  width: 100%;
  background: var(--tag-accent);
}

.tag-page-accent--red {
  background: var(--tag-accent);
}

.tag-page-accent--gradient {
  background: linear-gradient(90deg, #ba1a1a 0%, #ba1a1a 25%, #1b1b1b 25%, #1b1b1b 50%, #4c4546 50%, #4c4546 75%, #000000 75%, #000000 100%);
}

.tag-muted-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tag-muted);
}

.tag-kicker--red {
  color: var(--tag-accent);
}

.tag-timeline-section .tag-events {
  gap: 0.65rem;
}

.tag-timeline-section .tag-event {
  border: 0;
  border-top: 1px solid rgba(17, 17, 17, 0.12);
  background: transparent;
}

.tag-timeline-section .tag-event:first-child {
  border-top-width: 0;
}

.tag-timeline-section .tag-event__date {
  padding: 0.85rem 1rem 1rem 0;
  background: transparent;
  border-right: 0;
}

.tag-timeline-section .tag-event__month,
.tag-timeline-section .tag-event__year {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--tag-muted);
}

.tag-timeline-section .tag-event__days {
  font-family: var(--tag-font-display);
  font-size: clamp(1.45rem, 2.8vw, 2.2rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.tag-timeline-section .tag-event__content {
  padding: 0.9rem 0 1.1rem 1rem;
}

.tag-timeline-section .tag-event__status {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 0.5rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--tag-muted);
}

.tag-timeline-section .tag-event__status::before {
  content: "";
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  background: #111111;
}

.tag-timeline-section .tag-event--upcoming .tag-event__status::before {
  background: #ff1c1c;
}

.tag-timeline-section .tag-event__content h3 {
  font-size: clamp(1.45rem, 2.8vw, 2.2rem);
  margin-left: 0;
  margin-bottom: 0.6rem;
}

.tag-timeline-section .tag-event__subtitle {
  margin-top: 0.85rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  color: var(--tag-accent);
}

.tag-timeline-section .tag-event__content p {
  max-width: 100%;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
}

.tag-timeline-section .tag-event__venue {
  display: none;
}

.tag-event__audience {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: var(--tag-muted);
}

.tag-press-headline {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 2rem;
  padding: 4rem 0 2rem;
}

.tag-press-headline__copy h1,
.tag-about-hero h1,
.tag-gallery-head h1,
.tag-contact-hero h1 {
  margin: 0.6rem 0 1rem;
  font-family: var(--tag-font-display);
  font-size: clamp(1.875rem, 3.5vw, 3.4375rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
  text-transform: none;
}

.tag-press-headline__copy p,
.tag-about-hero__copy p,
.tag-gallery-head p,
.tag-contact-hero p {
  max-width: 42rem;
  font-size: 1.05rem;
  color: var(--tag-muted);
}

.tag-press-headline__contact {
  align-self: end;
  padding-left: 1.25rem;
  border-left: 1px solid rgba(17, 17, 17, 0.2);
}

.tag-press-headline__email {
  margin-top: 0.35rem;
  font-family: var(--tag-font-display);
  font-size: 1.5rem;
  font-weight: 700;
}

.tag-press-headline__phone {
  margin-top: 0.5rem;
}

.tag-press-banner,
.tag-about-image {
  margin-bottom: 1.5rem;
}

.tag-press-banner__frame,
.tag-about-image__frame {
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.14);
  background: var(--tag-surface);
}

.tag-press-banner__frame img {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
}

.tag-about-image__frame img {
  width: 100%;
  height: min(716px, 70vw);
  object-fit: cover;
}

.tag-press-editorial,
.tag-press-releases {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2rem;
  padding-top: 1.3rem;
  margin-bottom: 4rem;
  border-top: 1px solid rgba(17, 17, 17, 0.18);
}

.tag-press-editorial__label h2,
.tag-press-releases__label h2,
.tag-about-committees__head h2 {
  margin: 0;
  font-family: var(--tag-font-display);
  font-size: 1.4rem;
  text-transform: uppercase;
}

.tag-press-editorial__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.tag-press-story__image {
  margin-bottom: 1rem;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.16);
}

.tag-press-story__image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  filter: none;
}

.tag-press-story__meta {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 0.5rem;
}

.tag-press-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.tag-press-badge--solid {
  background: var(--tag-black);
  color: #ffffff;
}

.tag-press-badge--outline {
  border: 1px solid var(--tag-black);
}

.tag-press-story h3,
.tag-press-release-row h3 {
  margin: 0.35rem 0;
  font-family: var(--tag-font-display);
  font-size: 1.55rem;
  line-height: 1.08;
}

.tag-press-story p {
  color: var(--tag-muted);
}

.tag-press-source {
  margin-bottom: 0.25rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tag-accent);
}

.tag-press-story h3 a,
.tag-press-release-row h3 a {
  color: inherit;
}

.tag-press-story h3 a:hover,
.tag-press-release-row h3 a:hover {
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.tag-press-releases__list {
  border-bottom: 1px solid rgba(17, 17, 17, 0.12);
}

.tag-press-release-row {
  padding: 1.4rem 0;
  border-top: 1px solid rgba(17, 17, 17, 0.12);
}

.tag-press-logos {
  margin-bottom: 4rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(17, 17, 17, 0.18);
}

.tag-press-logos__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.tag-press-logos__grid span {
  font-family: var(--tag-font-display);
  font-size: 1.35rem;
  text-align: center;
}

.tag-about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(280px, 0.8fr);
  gap: 2.5rem;
  align-items: end;
  padding: 5.5rem 0 4.5rem;
}

.tag-about-hero__lead {
  max-width: 72rem;
}

.tag-about-hero__lead .tag-kicker {
  margin-bottom: 1rem;
}

.tag-about-hero h1 {
  max-width: 14ch;
  margin: 0;
  font-size: clamp(1.875rem, 3.5vw, 3.4375rem);
  line-height: 0.92;
  letter-spacing: -0.045em;
  text-transform: none;
}

.tag-about-hero__copy {
  max-width: 25rem;
  padding-bottom: 0.45rem;
}

.tag-about-hero__copy p {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.72;
  color: var(--tag-muted);
}

.tag-about-story {
  padding: 1.5rem 0 3.5rem;
}

.tag-about-story__body {
  display: grid;
  gap: 1.55rem;
}

.tag-about-story__body p,
.tag-about-story__body li {
  text-align: justify;
  hyphens: auto;
}

@media (max-width: 860px) {
  .tag-about-story__body p,
  .tag-about-story__body li {
    text-align: left;
    hyphens: none;
  }
}

.tag-about-story__body p {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.85;
}

.tag-about-story__body ul {
  margin: 0;
  padding-left: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.tag-about-story__body ul li {
  font-size: 1.08rem;
  line-height: 1.85;
}

.tag-about-story blockquote {
  margin: 0;
  padding: 0.15rem 0 0.15rem 1.3rem;
  border-left: 4px solid var(--tag-black);
  font-style: italic;
  font-size: 1.08rem;
  line-height: 1.85;
}

.tag-about-ownership {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.tag-about-ownership__card {
  position: relative;
  min-height: 80px;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(17, 17, 17, 0.18);
}

.tag-about-ownership__card--surface {
  background: var(--tag-surface-soft);
}

.tag-about-ownership__card--plain {
  background: var(--tag-surface);
}

.tag-about-ownership__card small {
  display: inline-block;
  margin-bottom: 0.25rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tag-muted);
}

.tag-about-ownership__card h2 {
  margin: 0.15rem 0;
  font-family: var(--tag-font-display);
  font-size: 0.95rem;
  line-height: 1.2;
  text-transform: none;
}

.tag-about-ownership__card p {
  max-width: 26rem;
  margin: 0.4rem 0 0;
  font-size: 0.85rem;
  color: var(--tag-muted);
}

.tag-about-ownership__mark {
  position: absolute;
  right: 1.6rem;
  bottom: 1.5rem;
  opacity: 0.22;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.tag-about-vision {
  padding: 5rem 0;
  background: var(--tag-accent);
  color: #ffffff;
}

.tag-about-vision__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3.5rem;
}

.tag-about-vision__panel {
  padding-left: 1.6rem;
  border-left: 1px solid rgba(255, 255, 255, 0.24);
}

.tag-about-vision__panel h2 {
  margin: 0 0 1rem;
  font-family: var(--tag-font-display);
  font-size: 2.15rem;
  text-transform: none;
}

.tag-about-vision__index {
  margin-bottom: 1rem;
  font-family: var(--tag-font-display);
  font-size: clamp(3.2rem, 5vw, 4.8rem);
  line-height: 0.9;
  color: rgba(255, 255, 255, 0.3);
}

.tag-about-vision__panel p,
.tag-about-vision__panel ul {
  max-width: 34rem;
  margin: 0;
  font-size: 1.04rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.76);
}

.tag-about-vision__panel ul {
  padding-left: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.tag-about-stats {
  padding: 4.5rem 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.15);
}

.tag-about-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
}

.tag-about-stat strong {
  display: block;
  font-family: var(--tag-font-display);
  font-size: clamp(2.65rem, 4vw, 3.6rem);
  line-height: 0.95;
  color: var(--tag-accent);
}

.tag-about-stat span {
  display: block;
  margin-top: 0.55rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--tag-muted);
}

.tag-about-committees {
  padding: 4.5rem 0;
}

.tag-about-committees__head {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(17, 17, 17, 0.18);
}

.tag-about-committees__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.7rem 2.5rem;
}

.tag-about-committee {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1rem;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(17, 17, 17, 0.12);
}

.tag-about-committee__avatar {
  display: grid;
  place-items: center;
  width: 80px;
  aspect-ratio: 1;
  border-radius: 999px;
  background: linear-gradient(180deg, #f2f2f2 0%, #dcdcdc 100%);
  color: #7f7f7f;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.tag-about-committee__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  display: block;
}

.tag-about-committee__meta small {
  display: inline-block;
  margin-bottom: 0.35rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tag-muted);
}

.tag-about-committee h3 {
  margin: 0;
  font-family: var(--tag-font-display);
  font-size: clamp(1.6rem, 2vw, 2.5rem);
  line-height: 1.02;
  text-transform: none;
}

.tag-contact-hero {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 2rem;
  align-items: end;
  padding: 3rem 0 1.5rem;
  border-bottom: 1px solid rgba(17, 17, 17, 0.18);
}

.tag-contact-hero__office {
  justify-self: end;
  padding-top: 0.75rem;
  border-top: 2px solid var(--tag-black);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.tag-contact-main {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) 1.2fr;
  gap: 1.5rem;
  padding: 2rem 0;
}

.tag-contact-main__image {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.18);
}

.tag-contact-main__image img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
}

.tag-contact-main__caption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.35rem 0.6rem;
  border: 1px solid rgba(17, 17, 17, 0.18);
  background: var(--tag-surface);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tag-contact-main__form {
  padding: 1.5rem;
  border: 1px solid rgba(17, 17, 17, 0.18);
  background: var(--tag-surface);
}

.tag-contact-form {
  display: grid;
  gap: 1.2rem;
}

.tag-contact-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.tag-form-field--minimal input {
  border-width: 0 0 1px;
  padding-left: 0;
  padding-right: 0;
}

.tag-contact-directory {
  padding: 2rem 0 4rem;
  background: var(--tag-surface-soft);
}

.tag-contact-directory__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(17, 17, 17, 0.18);
}

.tag-contact-directory__card {
  min-height: 180px;
  padding: 1.75rem;
  border-right: 1px solid rgba(17, 17, 17, 0.18);
}

.tag-contact-directory__card:last-child {
  border-right: 0;
}

.tag-contact-directory__card h3 {
  margin: 1rem 0 0;
  font-family: var(--tag-font-display);
  font-size: 1.8rem;
}

.tag-gallery-head {
  padding: 3rem 0 2rem;
}

.tag-gallery-head__frame {
  max-width: 58rem;
  padding-left: 1.5rem;
  border-left: 2px solid var(--tag-black);
}

.tag-gallery-filters {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1.5rem;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(17, 17, 17, 0.16);
}

.tag-gallery-pills {
  display: flex;
  gap: 0.65rem;
  margin-top: 0.5rem;
}

.tag-gallery-masonry {
  columns: 3 280px;
  column-gap: 24px;
}

.tag-gallery-item {
  break-inside: avoid;
  margin-bottom: 24px;
}

.tag-gallery-item__frame {
  padding: 4px;
  border: 1px solid rgba(17, 17, 17, 0.16);
  background: var(--tag-surface);
}

.tag-gallery-item__frame img {
  width: 100%;
  height: auto;
  display: block;
}

.tag-gallery-empty {
  margin-bottom: 2rem;
  color: var(--tag-muted);
  font-size: 0.95rem;
}

.tag-gallery-cta {
  display: flex;
  justify-content: center;
  padding: 2rem 0 4rem;
}

.tag-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.tag-benefit-card {
  display: grid;
  gap: 0.75rem;
  padding: 2.25rem 1.75rem;
  background: var(--tag-surface);
  color: var(--tag-text);
}

.tag-benefit-card:nth-child(2) {
  background: #d63091;
  color: #ffffff;
}

.tag-benefit-card:nth-child(2) p {
  color: #ffffff;
}

.tag-benefit-card:nth-child(4) {
  background: #f5d020;
  color: #111111;
}

.tag-benefit-card:nth-child(4) p {
  color: #111111;
}

.tag-benefit-card:nth-child(6) {
  background: #7ab648;
  color: #111111;
}

.tag-benefit-card:nth-child(6) p {
  color: #111111;
}

.tag-benefit-card h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  line-height: 1.3;
}

.tag-benefit-card h3 span {
  font-family: var(--tag-font-display);
  font-size: 1.1rem;
}

.tag-concept-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
}

.tag-concept-card {
  display: grid;
  align-content: start;
  gap: 0.75rem;
  padding: 2.25rem 1.75rem;
}

.tag-concept-card--light {
  background: var(--tag-surface);
  color: var(--tag-text);
}

.tag-concept-card--light h2 {
  margin: 0;
  font-family: var(--tag-font-display);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.1;
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.tag-concept-card--light p {
  margin: 0;
}

.tag-concept-card--gradient {
  background: linear-gradient(to right, #d63091, #7ab648);
  color: #ffffff;
}

.tag-concept-card--gradient p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.tag-concept-card__eyebrow {
  color: rgba(255, 255, 255, 0.75) !important;
}

.tag-concept-card__kicker {
  display: block;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 0.25rem;
}

.tag-concept-sdg-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5rem;
  align-items: center;
}

.tag-concept-sdg-row a {
  display: block;
  flex: 1 1 0;
}

.tag-concept-sdg-row img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 72px;
  object-fit: contain;
}

.tag-partner-year {
  display: grid;
  gap: 1.5rem;
}

.tag-partner-year__header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.tag-partner-year__header h3 {
  margin: 0;
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.tag-partner-line {
  flex: 1;
  height: 1px;
  background: rgba(17, 17, 17, 0.2);
}

.tag-partner-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.tag-partner-group {
  display: grid;
  gap: 0.9rem;
}

.tag-partner-group h4 {
  margin: 0;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid rgba(17, 17, 17, 0.15);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tag-muted);
}

.tag-partner-groups {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  align-items: flex-start;
}

.tag-partner-row-break {
  display: none;
}

.tag-partner-group-block {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  max-width: 620px;
}

.tag-partner-group-block--full {
  max-width: 100%;
  width: 100%;
}

.tag-partner-group-block h4 {
  margin: 0 0 0.65rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid rgba(17, 17, 17, 0.15);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tag-muted);
}

.tag-logo-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.tag-logo-block {
  width: 140px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  background: #ffffff;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 2px;
}

.tag-logo-block a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.tag-partner-logo-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.tag-page-hero {
  padding: var(--tag-space-9) 0 var(--tag-space-7);
}

.tag-page-hero--compact {
  padding-bottom: var(--tag-space-5);
}

.tag-page-hero__content {
  max-width: 72rem;
  display: grid;
  gap: 1rem;
}

.tag-page-hero__content p {
  max-width: 38rem;
  margin: 0;
  color: var(--tag-muted);
  font-size: 0.98rem;
}

.tag-editorial-split {
  display: grid;
  grid-template-columns: 2.15fr 1fr;
  gap: 2rem;
  align-items: end;
}

.tag-about-visual,
.tag-press-visual,
.tag-contact-visual {
  position: relative;
  min-height: 420px;
  border: 1px solid rgba(17, 17, 17, 0.18);
  background: linear-gradient(180deg, #d8d4cc 0%, #f5f4f1 36%, #8f8a82 100%);
  overflow: hidden;
}

.tag-about-visual::before,
.tag-about-visual::after,
.tag-press-visual::before,
.tag-press-visual::after,
.tag-contact-visual::before,
.tag-contact-visual::after {
  content: "";
  position: absolute;
}

.tag-about-visual::before {
  inset: 7% 7% 9%;
  background:
    linear-gradient(180deg, rgba(22, 22, 22, 0.82), rgba(22, 22, 22, 0.55) 12%, rgba(255, 255, 255, 0) 13%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0 14%, rgba(244, 242, 237, 1) 14% 86%, rgba(255, 255, 255, 0.96) 86% 100%);
  box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.08);
}

.tag-about-visual::after {
  inset: 24% 14% 18%;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0) 0 6%, rgba(17, 17, 17, 0.15) 6% 7%, rgba(0, 0, 0, 0) 7% 21%, rgba(17, 17, 17, 0.15) 21% 22%, rgba(0, 0, 0, 0) 22% 78%, rgba(17, 17, 17, 0.15) 78% 79%, rgba(0, 0, 0, 0) 79% 94%, rgba(17, 17, 17, 0.15) 94% 95%, rgba(0, 0, 0, 0) 95%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0 54%, rgba(38, 38, 38, 0.1) 54% 55%, rgba(0, 0, 0, 0) 55%);
}

.tag-press-visual {
  background: linear-gradient(180deg, #f7f6f4 0%, #d8d4cc 100%);
}

.tag-press-visual::before {
  inset: 14% 9% 16%;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0 14%, rgba(241, 240, 236, 0.98) 14% 86%, rgba(255, 255, 255, 0.98) 86% 100%),
    linear-gradient(180deg, rgba(17, 17, 17, 0.08), rgba(17, 17, 17, 0));
  box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.1);
}

.tag-press-visual::after {
  inset: 32% 18% 25%;
  background:
    radial-gradient(circle at 50% 50%, rgba(17, 17, 17, 0.25), rgba(17, 17, 17, 0) 54%),
    linear-gradient(90deg, rgba(17, 17, 17, 0.15) 0 3%, rgba(0, 0, 0, 0) 3% 18%, rgba(17, 17, 17, 0.15) 18% 21%, rgba(0, 0, 0, 0) 21% 41%, rgba(17, 17, 17, 0.15) 41% 44%, rgba(0, 0, 0, 0) 44% 61%, rgba(17, 17, 17, 0.15) 61% 64%, rgba(0, 0, 0, 0) 64% 84%, rgba(17, 17, 17, 0.15) 84% 87%, rgba(0, 0, 0, 0) 87%);
}

.tag-contact-visual {
  background: linear-gradient(180deg, #1b1b1b 0%, #0f0f0f 100%);
}

.tag-contact-visual::before {
  left: 34%;
  top: 26%;
  width: 26%;
  height: 40%;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0 18%, rgba(220, 220, 220, 0.9) 18% 23%, rgba(255, 255, 255, 0.97) 23% 100%);
  clip-path: polygon(35% 0%, 100% 28%, 100% 100%, 0% 100%, 0% 38%);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.24);
}

.tag-contact-visual::after {
  left: 24%;
  top: 46%;
  width: 12%;
  height: 18%;
  border-radius: 999px 999px 18px 18px;
  background: linear-gradient(180deg, #ffffff 0%, #d7d7d7 100%);
}

.tag-founders {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.tag-founders h3,
.tag-vision-card h2,
.tag-contact-card h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
  text-transform: uppercase;
}

.tag-founder-panel small,
.tag-owner-panel small,
.tag-press-card small,
.tag-archive-card small,
.tag-committee-card small,
.tag-contact-card small {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tag-muted);
}

.tag-vision-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.tag-vision-card {
  padding: 2rem;
  border-left: 1px solid rgba(255, 255, 255, 0.24);
}

.tag-vision-card strong {
  font-family: var(--tag-font-display);
  font-size: clamp(2rem, 4vw, 2.9rem);
  color: rgba(255, 255, 255, 0.34);
}

.tag-committee-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem 2rem;
}

.tag-committee-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 1rem;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(17, 17, 17, 0.15);
}

.tag-committee-avatar {
  display: grid;
  place-items: center;
  width: 72px;
  aspect-ratio: 1;
  background: var(--tag-surface-soft);
  border: 1px solid rgba(17, 17, 17, 0.14);
  font-family: var(--tag-font-display);
  font-size: 1rem;
}

.tag-committee-card h3 {
  margin: 0.2rem 0 0;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.tag-feature-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 2rem;
  align-items: end;
}

.tag-press-feature {
  display: grid;
  gap: 1.5rem;
}

.tag-press-contact {
  justify-self: end;
  width: 100%;
  max-width: 320px;
  border-left: 1px solid rgba(17, 17, 17, 0.2);
  padding-left: 1.5rem;
}

.tag-press-contact p {
  margin: 0;
  color: var(--tag-muted);
}

.tag-press-contact a {
  display: inline-block;
  margin-top: 0.65rem;
  font-family: var(--tag-font-display);
  font-size: 1.45rem;
  font-weight: 600;
}

.tag-press-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.tag-press-card {
  display: grid;
  gap: 1rem;
}

.tag-press-media {
  min-height: 280px;
  position: relative;
  border: 1px solid rgba(17, 17, 17, 0.16);
  background:
    radial-gradient(circle at 24% 32%, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.16) 18%, rgba(0, 0, 0, 0) 32%),
    radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.05) 36%, rgba(0, 0, 0, 0) 62%),
    linear-gradient(135deg, #2a2a2a 0%, #b8b3aa 50%, #151515 100%);
}

.tag-press-card:nth-child(2) .tag-press-media {
  background:
    radial-gradient(circle at 52% 24%, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0) 22%),
    linear-gradient(180deg, #1d1d1d 0 35%, #4a4a4a 35% 36%, #111 36% 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 20%, rgba(0, 0, 0, 0) 20% 80%, rgba(255, 255, 255, 0.08) 80% 100%);
}

.tag-press-body h3,
.tag-archive-card h3 {
  margin: 0.35rem 0;
  font-size: clamp(1.15rem, 2.1vw, 1.6rem);
  line-height: 0.95;
}

.tag-press-release-list {
  display: grid;
  gap: 1rem;
}

.tag-press-release {
  padding: 1.2rem 0;
  border-top: 1px solid rgba(17, 17, 17, 0.15);
}

.tag-logo-ticker {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(17, 17, 17, 0.14);
}

.tag-logo-ticker span {
  display: block;
  text-align: center;
  font-family: var(--tag-font-display);
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  color: rgba(17, 17, 17, 0.5);
}

.tag-featured-section {
  padding-top: 2.25rem;
  background: #ffffff;
}

.tag-logo-marquee {
  overflow: hidden;
  border-top: 1px solid rgba(17, 17, 17, 0.14);
  border-bottom: 1px solid rgba(17, 17, 17, 0.14);
  padding: 1rem 0;
  background: #ffffff;
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.tag-logo-marquee__track {
  display: flex;
  width: max-content;
  gap: 0;
  animation: tagMarquee 28s linear infinite;
}

.tag-logo-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  min-height: 74px;
  padding: 0.85rem 2rem;
  overflow: hidden;
}

.tag-logo-chip img {
  display: block;
  max-width: 220px;
  max-height: 72px;
  width: auto !important;
  height: auto !important;
  object-fit: contain;
}

@keyframes tagMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-25%); }
}

.tag-filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1.5rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(17, 17, 17, 0.14);
}

.tag-filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.tag-filter-button,
.tag-purpose-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 1rem;
  border: 1px solid rgba(17, 17, 17, 0.2);
  background: var(--tag-surface);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.tag-filter-button.is-active,
.tag-purpose-pill input:checked + span {
  background: var(--tag-black);
  color: #ffffff;
  border-color: var(--tag-black);
}

.tag-purpose-pill {
  position: relative;
  padding: 0;
  overflow: hidden;
}

.tag-purpose-pill input {
  position: absolute;
  opacity: 0;
}

.tag-purpose-pill span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 1rem;
}

.tag-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.tag-archive-card {
  display: grid;
  gap: 1rem;
}

.tag-archive-media,
.tag-artwork {
  position: relative;
  min-height: 340px;
  border: 1px solid rgba(17, 17, 17, 0.16);
  background: linear-gradient(180deg, #d8d4cc 0%, #f4f2ee 100%);
  overflow: hidden;
}

.tag-artwork::before,
.tag-artwork::after {
  content: "";
  position: absolute;
}

.tag-artwork--frame::before {
  inset: 18% 24%;
  background: linear-gradient(180deg, #f7f4ed 0%, #b19565 100%);
  box-shadow: inset 0 0 0 7px #735126;
}

.tag-artwork--frame::after {
  inset: 26% 32%;
  background: linear-gradient(180deg, #d5cfbf 0%, #8a857e 100%);
}

.tag-artwork--paper::before {
  left: 17%;
  bottom: 16%;
  width: 22%;
  height: 22%;
  background: radial-gradient(circle, #bbbbbb 0 38%, #8f8f8f 39% 48%, rgba(0, 0, 0, 0) 49%);
  border-radius: 999px;
}

.tag-artwork--paper::after {
  left: 40%;
  top: 24%;
  width: 26%;
  height: 26%;
  background: #f5f3ee;
  box-shadow: -56px 76px 0 -48px #202020, 88px 88px 0 -46px #202020;
  transform: rotate(-2deg);
}

.tag-artwork--mask::before {
  left: 35%;
  top: 16%;
  width: 30%;
  height: 52%;
  border-radius: 48% 48% 44% 44% / 54% 54% 40% 40%;
  background: linear-gradient(180deg, #dedad3 0%, #938c83 100%);
}

.tag-artwork--mask::after {
  left: 43%;
  top: 34%;
  width: 14%;
  height: 8%;
  border-radius: 999px;
  background: rgba(24, 24, 24, 0.75);
  box-shadow: -30px 0 0 rgba(24, 24, 24, 0.75), 15px 28px 0 -8px rgba(24, 24, 24, 0.72);
}

.tag-artwork--bust::before {
  left: 27%;
  top: 18%;
  width: 46%;
  height: 42%;
  border-radius: 52% 48% 48% 52% / 48% 52% 38% 42%;
  background: linear-gradient(180deg, #eeeeea 0%, #a8a29a 100%);
}

.tag-artwork--bust::after {
  left: 21%;
  bottom: 18%;
  width: 58%;
  height: 18%;
  background: linear-gradient(180deg, #ece8e1 0%, #b7b0a7 100%);
}

.tag-artwork--tower::before {
  left: 32%;
  top: 23%;
  width: 36%;
  height: 38%;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0) 0 12%, rgba(255, 255, 255, 0.2) 12% 16%, rgba(0, 0, 0, 0) 16% 28%, rgba(255, 255, 255, 0.2) 28% 32%, rgba(0, 0, 0, 0) 32% 44%, rgba(255, 255, 255, 0.2) 44% 48%, rgba(0, 0, 0, 0) 48% 60%, rgba(255, 255, 255, 0.2) 60% 64%, rgba(0, 0, 0, 0) 64% 76%, rgba(255, 255, 255, 0.2) 76% 80%, rgba(0, 0, 0, 0) 80%),
    linear-gradient(180deg, #dad5cd 0%, #8c877f 100%);
}

.tag-artwork--tower::after {
  left: 28%;
  bottom: 18%;
  width: 44%;
  height: 9%;
  background: rgba(17, 17, 17, 0.82);
}

.tag-artwork--cube::before {
  left: 26%;
  top: 20%;
  width: 48%;
  height: 52%;
  border: 6px solid rgba(17, 17, 17, 0.45);
  background: rgba(255, 255, 255, 0.14);
}

.tag-artwork--cube::after {
  left: 39%;
  top: 39%;
  width: 22%;
  height: 12%;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.85);
  box-shadow: 16px -8px 0 rgba(17, 17, 17, 0.85), 34px 5px 0 rgba(17, 17, 17, 0.85);
}

.tag-contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 1.5rem;
}

.tag-form-card {
  display: grid;
  gap: 1.25rem;
}

.tag-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.tag-form-field {
  display: grid;
  gap: 0.45rem;
}

.tag-form-field label {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tag-muted);
}

.tag-form-field input,
.tag-form-field textarea {
  width: 100%;
  border: 1px solid rgba(17, 17, 17, 0.2);
  background: transparent;
  padding: 0.95rem 1rem;
  color: var(--tag-text);
}

.tag-form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.tag-form-message {
  padding: 1rem 1.2rem;
  border: 1px solid rgba(17, 17, 17, 0.16);
  background: var(--tag-surface-soft);
}

.tag-form-message--success {
  border-left: 4px solid #256a3f;
}

.tag-form-message--error {
  border-left: 4px solid var(--tag-accent);
}

.tag-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tag-contact-card {
  min-height: 220px;
  display: grid;
  gap: 1rem;
  border-right: 1px solid rgba(17, 17, 17, 0.15);
}

.tag-contact-card:last-child {
  border-right: 0;
}

.tag-contact-card p {
  margin: 0;
}

.tag-page-body {
  padding-bottom: var(--tag-space-9);
}

.tag-entry-content {
  max-width: 72rem;
}

.tag-entry-content > *:first-child {
  margin-top: 0;
}

.tag-entry-content h2,
.tag-entry-content h3,
.tag-entry-content h4 {
  font-family: var(--tag-font-display);
  font-weight: 600;
  line-height: 0.98;
}

.tag-entry-content h2 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
}

.tag-entry-content h3 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.tag-entry-content p,
.tag-copy-block p,
.tag-owner-panel p,
.tag-founder-panel p,
.tag-benefit-card p,
.tag-event__content p,
.tag-contact-card p,
.tag-page-hero__content p {
  color: var(--tag-muted);
}

.tag-featured-image {
  margin-bottom: 2rem;
}

/* FAQ */
.tag-faq-section {
  background: #111111;
}

.tag-faq-section .tag-eyebrow {
  color: #ffffff;
}

.tag-faq-section h2 {
  color: #ffffff;
}

.tag-faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.tag-faq-item {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  margin-bottom: 0.75rem;
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.tag-faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.15rem 1.4rem;
  background: transparent;
  border: 0;
  text-align: left;
  font-family: var(--tag-font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  cursor: pointer;
  gap: 1rem;
  transition: background 180ms ease;
}

.tag-faq-trigger:hover {
  background: rgba(255, 255, 255, 0.06);
}

.tag-faq-trigger span {
  flex: 1;
}

.tag-faq-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transition: transform 240ms ease;
  color: #ffffff;
}

.tag-faq-item.is-open .tag-faq-trigger {
  color: var(--tag-accent);
}

.tag-faq-item.is-open .tag-faq-icon {
  transform: rotate(180deg);
  border-color: var(--tag-accent);
  color: var(--tag-accent);
}

.tag-faq-body {
  padding: 0 1.4rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms ease, padding 300ms ease;
}

.tag-faq-item.is-open .tag-faq-body {
  padding: 0 1.4rem 1.25rem;
}

.tag-faq-answer p,
.tag-faq-answer ul {
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--tag-muted);
  margin-bottom: 0.75rem;
}

.tag-faq-answer ul {
  padding-left: 1.25rem;
}

.tag-faq-answer li {
  margin-bottom: 0.3rem;
}

.tag-faq-answer p:last-child,
.tag-faq-answer ul:last-child {
  margin-bottom: 0;
}

.tag-site-footer {
  border-top: 1px solid rgba(17, 17, 17, 0.14);
  background: var(--tag-surface);
}

.tag-site-footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  padding: 2.6rem 0 1.8rem;
  align-items: start;
}

.tag-footer-brand p {
  max-width: 22rem;
  color: var(--tag-muted);
}

.tag-footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: start;
}

.tag-footer-menu {
  display: grid;
  gap: 0.7rem;
}

.tag-footer-links .tag-eyebrow::before {
  display: none;
}

.tag-footer-social {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}

.tag-site-footer__meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 0 1.8rem;
  color: var(--tag-muted);
  font-size: 0.82rem;
}

.tag-site-footer__meta a[rel="author"] {
  color: rgba(17, 17, 17, 0.18);
  text-decoration: none;
  transition: color 200ms ease;
}

.tag-site-footer__meta a[rel="author"]:hover {
  color: rgba(17, 17, 17, 0.45);
}

@media (max-width: 1100px) {
  .tag-home-hero__meta,
  .tag-stats,
  .tag-benefits,
  .tag-partner-columns,
  .tag-committee-grid,
  .tag-contact-grid,
  .tag-site-footer__inner,
  .tag-footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tag-archive-grid,
  .tag-press-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tag-contact-layout,
  .tag-event,
  .tag-feature-grid,
  .tag-editorial-split,
  .tag-founders,
  .tag-vision-grid {
    grid-template-columns: 1fr;
  }

  .tag-press-headline,
  .tag-press-editorial,
  .tag-press-releases,
  .tag-about-hero,
  .tag-about-ownership,
  .tag-about-vision__grid,
  .tag-contact-hero,
  .tag-contact-main,
  .tag-contact-directory__grid {
    grid-template-columns: 1fr;
  }

  .tag-about-stats__grid,
  .tag-about-committees__grid,
  .tag-press-editorial__grid,
  .tag-press-logos__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tag-press-contact {
    justify-self: start;
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid rgba(17, 17, 17, 0.15);
    padding-top: 1rem;
    max-width: none;
  }
}

/* ── Burger button ─────────────────────────────────── */
.tag-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 6px;
  background: transparent;
  border: 0;
  cursor: pointer;
  z-index: 50;
}

.tag-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--tag-black);
  transition: transform 240ms ease, opacity 240ms ease;
  transform-origin: center;
}

.tag-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.tag-burger.is-open span:nth-child(2) { opacity: 0; }
.tag-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px) {
  .tag-burger {
    display: flex;
  }

  .tag-site-header__inner {
    grid-template-columns: auto 1fr auto;
    min-height: 64px;
    padding: 0;
    position: relative;
  }

  .tag-primary-nav {
    display: none;
    position: fixed;
    inset: 64px 0 0 0;
    background: #ffffff;
    z-index: 40;
    overflow-y: auto;
    padding: 2rem var(--tag-space-5);
    border-top: 1px solid rgba(17,17,17,0.12);
  }

  .tag-primary-nav.is-open {
    display: block;
  }

  .tag-nav-list {
    flex-direction: column;
    gap: 0;
  }

  .tag-nav-list li {
    border-bottom: 1px solid rgba(17,17,17,0.08);
  }

  .tag-nav-list li:last-child {
    border-bottom: 0;
  }

  .tag-nav-list a {
    display: block;
    padding: 1rem 0;
    font-size: 1.15rem;
  }

  .tag-nav-list a::after {
    display: none;
  }

  .tag-lang-switcher {
    margin-top: 1.5rem;
    margin-left: 0;
    padding-left: 0;
    border-left: 0;
    font-size: 0.9rem;
  }

  .tag-header-actions {
    gap: 0.6rem;
  }

  /* hide social icons + search in header bar on mobile — they live inside the overlay instead */
  .tag-social-link,
  .tag-search-form {
    display: none;
  }

  .tag-mobile-extras {
    margin-top: 2rem;
    padding-top: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }

  .tag-mobile-search {
    display: flex;
    align-items: center;
    border: 1.5px solid rgba(17,17,17,0.18);
    border-radius: 6px;
    overflow: hidden;
  }

  .tag-mobile-search input {
    flex: 1;
    border: 0;
    padding: 0.65rem 0.9rem;
    font-size: 0.95rem;
    color: var(--tag-black);
    background: transparent;
    outline: none;
  }

  .tag-mobile-search button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    color: var(--tag-black);
    flex-shrink: 0;
    cursor: pointer;
  }

  .tag-mobile-search button svg {
    width: 20px;
    height: 20px;
    display: block;
  }

  .tag-mobile-socials {
    display: flex;
    gap: 0.5rem;
  }

  .tag-mobile-socials .tag-social-link {
    display: inline-flex;
  }

  .tag-nav-list {
    gap: 0;
  }

  .tag-home-hero__panel {
    min-height: 54vh;
  }

  .tag-home-hero__meta,
  .tag-stats,
  .tag-benefits,
  .tag-archive-grid,
  .tag-press-grid,
  .tag-contact-grid,
  .tag-footer-links,
  .tag-form-grid {
    grid-template-columns: 1fr;
  }

  .tag-about-stats__grid,
  .tag-about-committees__grid,
  .tag-contact-form__grid,
  .tag-press-editorial__grid,
  .tag-press-logos__grid {
    grid-template-columns: 1fr;
  }

  .tag-header-actions {
    flex-wrap: wrap;
  }


  .tag-partner-columns,
  .tag-committee-grid,
  .tag-site-footer__inner,
  .tag-site-footer__meta {
    grid-template-columns: 1fr;
    display: grid;
  }

  .tag-contact-card {
    border-right: 0;
  }

  .tag-grid-12 {
    grid-template-columns: 1fr;
  }

  .tag-copy-block h2,
  .tag-page-hero h1,
  .tag-feature-title {
    font-size: clamp(1.75rem, 8vw, 3rem);
  }

  .tag-timeline-section .tag-event {
    grid-template-columns: 1fr;
  }

  .tag-timeline-section__head {
    flex-direction: column;
  }

  .tag-timeline-legend {
    padding-top: 0;
    gap: 1.5rem;
  }

  .tag-timeline-section .tag-event__date {
    padding-right: 0;
  }

  .tag-timeline-section .tag-event__content {
    padding-left: 0;
  }

  .tag-timeline-section .tag-event__content::before {
    left: 0;
  }

  .tag-gallery-filters {
    flex-direction: column;
    align-items: start;
  }

  .tag-gallery-masonry {
    columns: 1;
  }

  /* Homepage sections */
  .tag-home-hero__slider,
  .tag-home-hero__panel {
    min-height: 50vw;
  }

  .tag-concept-quote {
    grid-column: 1 !important;
  }

  .tag-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .tag-benefits {
    grid-template-columns: 1fr;
  }

  .tag-partner-year .tag-partner-columns {
    grid-template-columns: 1fr;
  }

  .tag-partner-groups {
    gap: 1.2rem 1.5rem;
  }

  .tag-logo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
  }

  .tag-logo-block {
    width: 100%;
    height: auto;
    aspect-ratio: 5 / 3;
    box-sizing: border-box;
    overflow: hidden;
  }

  .tag-logo-block img.tag-partner-logo-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center !important;
  }

  /* About */
  .tag-about-ownership {
    grid-template-columns: 1fr;
  }

  .tag-about-stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Press */
  .tag-press-headline {
    flex-direction: column;
  }

  .tag-press-headline__contact {
    border-left: 0;
    border-top: 1px solid rgba(17,17,17,0.12);
    padding-top: 1.5rem;
    margin-top: 0.5rem;
  }

  /* Footer */
  .tag-footer-links {
    grid-template-columns: repeat(2, 1fr);
  }

  .tag-site-footer__meta {
    flex-direction: column;
    gap: 0.4rem;
  }

  /* MBOR strip */
  .tag-mbor-strip__inner {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  /* Concept section — stack boxes vertically on mobile */
  .tag-concept-cards {
    grid-template-columns: 1fr;
  }

  /* FAQ */
  .tag-faq-trigger {
    font-size: 0.88rem;
    padding: 1rem;
  }

  .tag-faq-item.is-open .tag-faq-body {
    padding: 0 1rem 1rem;
  }

  /* Section spacing */
  .tag-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .tag-page-shell {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}

/* ── Extra small screens ──────────────────────────── */
@media (max-width: 480px) {
  .tag-stats,
  .tag-about-stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tag-gallery-pills {
    gap: 0.5rem;
  }

  .tag-gallery-pill {
    font-size: 0.72rem;
    padding: 0.45rem 0.9rem;
  }

  .tag-event {
    grid-template-columns: 1fr;
  }

  .tag-event__date {
    padding: 1rem;
    border-right: 0;
    border-bottom: 1px solid rgba(17,17,17,0.08);
  }

  .tag-mbor-strip__text {
    font-size: 1rem;
  }

  .tag-footer-links {
    grid-template-columns: 1fr;
  }

  .tag-about-committees__grid {
    grid-template-columns: 1fr;
  }

  .tag-press-editorial__grid {
    grid-template-columns: 1fr;
  }

  .tag-logo-marquee__track {
    gap: 1.5rem;
  }
}
