:root {
  --red: #d71920;
  --red-deep: #a80f16;
  --green: #046a38;
  --green-dark: #013c25;
  --gold: #e2b93b;
  --white: #faf9f6;
  --charcoal: #111513;
  --muted: #6f7771;
  --line-dark: rgba(17, 21, 19, 0.14);
  --line-light: rgba(250, 249, 246, 0.16);
  scroll-behavior: smooth;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  background: #050706;
  color: white;
  font-family: Inter, system-ui, sans-serif;
}

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

.site-shell {
  position: relative;
  overflow-x: hidden;
  background:
    linear-gradient(120deg, rgba(215, 25, 32, 0.14), transparent 28rem),
    linear-gradient(300deg, rgba(4, 106, 56, 0.18), transparent 30rem),
    #050706;
}

.site-shell::before {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(122deg, transparent 0 36%, rgba(250, 249, 246, 0.08) 36.1% 36.4%, transparent 36.5%),
    linear-gradient(32deg, transparent 0 62%, rgba(250, 249, 246, 0.06) 62.1% 62.35%, transparent 62.45%),
    linear-gradient(151deg, transparent 0 74%, rgba(215, 25, 32, 0.16) 74.1% 74.45%, transparent 74.55%),
    linear-gradient(70deg, transparent 0 18%, rgba(4, 106, 56, 0.12) 18.1% 18.45%, transparent 18.55%);
  opacity: 0.74;
  content: "";
}

.site-header,
main,
.footer {
  position: relative;
  z-index: 1;
}

.wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.portugal-stripe {
  display: grid;
  grid-template-columns: 60fr 40fr;
  width: 100%;
  height: 5px;
}

.portugal-stripe span:first-child { background: var(--red); }
.portugal-stripe span:last-child { background: var(--green); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  color: white;
  transition: background 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
}

.site-header.scrolled {
  background: rgba(1, 30, 19, 0.94);
  border-bottom: 1px solid rgba(215, 25, 32, 0.8);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 70px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark,
.photo-logo {
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: white;
  font-family: Barlow Condensed, Oswald, sans-serif;
  font-weight: 800;
}

.brand-mark {
  position: relative;
  width: 58px;
  height: 58px;
  border-radius: 0;
  overflow: hidden;
  padding: 0;
}

.registered-text-mark {
  display: inline-block;
  margin-left: 3px;
  color: white;
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.8em;
  font-weight: 900;
  line-height: 1;
  transform: translateY(-0.38em);
}

.brand-logo,
.brand-logo-img {
  display: block;
  width: 112%;
  height: 112%;
  object-fit: contain;
}

.brand-name,
.headline,
.section-title,
.card-title,
.stat-number {
  margin: 0;
  font-family: Barlow Condensed, Oswald, Inter, sans-serif;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-name {
  display: block;
  font-size: 20px;
  line-height: 0.95;
}

.desktop-nav,
.header-actions,
.footer-links {
  display: flex;
  align-items: center;
}

.desktop-nav { gap: 22px; }
.header-actions { gap: 12px; }

.nav-link {
  position: relative;
  color: rgba(250, 249, 246, 0.82);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.nav-link:hover,
.nav-link.active { color: white; }

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 2px;
  background: var(--red);
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.lang-switch {
  display: flex;
  border: 1px solid rgba(250, 249, 246, 0.24);
  border-radius: 8px;
  overflow: hidden;
}

.lang-switch button {
  min-width: 40px;
  border: 0;
  background: transparent;
  color: rgba(250, 249, 246, 0.76);
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  padding: 9px 10px;
  text-transform: uppercase;
}

.lang-switch .active {
  background: var(--red);
  color: white;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(250, 249, 246, 0.24);
  border-radius: 8px;
  background: rgba(1, 60, 37, 0.45);
  color: white;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  padding: 14px 0 18px;
  border-top: 1px solid rgba(250, 249, 246, 0.14);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
  padding: 0 20px;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover { transform: translateY(-1px); }
.button-primary { background: var(--red); color: white; }
.button-primary:hover { background: var(--red-deep); }
.button-outline { border-color: rgba(250, 249, 246, 0.54); color: white; background: rgba(1, 60, 37, 0.2); }
.button-outline:hover { border-color: white; background: rgba(250, 249, 246, 0.1); }
.button-light { background: var(--white); color: var(--green-dark); }
.button-green { background: var(--green); color: white; }

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: center;
  color: white;
  background:
    linear-gradient(135deg, #050706, var(--green-dark) 45%, #210608),
    #050706;
}

.hero::before,
.photo-frame::before,
.mosaic-item::before,
.news-image::before,
.product-visual::before {
  position: absolute;
  inset: 0;
  background-image: var(--photo);
  background-size: cover;
  background-position: center;
  content: "";
}

.hero::before {
  --photo: url("../images/supporters/hero/hero.jpg");
  opacity: 0.18;
}

.hero::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 31, 21, 0.93) 0%, rgba(3, 31, 21, 0.76) 38%, rgba(3, 31, 21, 0.32) 70%, rgba(3, 31, 21, 0.1) 100%),
    linear-gradient(135deg, rgba(215, 25, 32, 0.32), transparent 48%),
    linear-gradient(118deg, transparent 0 48%, rgba(250, 249, 246, 0.1) 48.1% 48.35%, transparent 48.45%),
    linear-gradient(36deg, transparent 0 69%, rgba(215, 25, 32, 0.28) 69.1% 69.45%, transparent 69.55%);
  content: "";
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 116px 0 72px;
}

.hero-watermark {
  position: absolute;
  z-index: 1;
  right: clamp(-160px, -8vw, -60px);
  bottom: clamp(-170px, -10vw, -90px);
  width: clamp(420px, 52vw, 760px);
  height: auto;
  opacity: 0.16;
  filter: contrast(1.12) saturate(1.18);
  pointer-events: none;
}

.hero-label,
.section-label,
.category {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-label {
  display: inline-block;
  margin-bottom: 18px;
  border-left: 4px solid var(--red);
  background: rgba(17, 21, 19, 0.86);
  padding: 8px 10px;
}

.headline {
  max-width: 820px;
  color: white;
  font-size: clamp(58px, 9vw, 118px);
  line-height: 0.88;
}

.headline .red { color: var(--red); }

.hero-copy {
  max-width: 670px;
  margin: 24px 0 0;
  color: rgba(250, 249, 246, 0.88);
  font-size: 19px;
  line-height: 1.65;
}

.hero-copy p {
  margin: 0;
}

.hero-copy p + p {
  margin-top: 4px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-photo-note {
  display: inline-flex;
  margin-top: 28px;
  border-left: 4px solid var(--red);
  background: rgba(17, 21, 19, 0.74);
  color: rgba(250, 249, 246, 0.74);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 12px;
}

.stats-band {
  position: relative;
  z-index: 3;
  margin-top: -46px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(250, 249, 246, 0.16);
  background: var(--charcoal);
}

.stats-grid.verified-only {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stat {
  min-height: 124px;
  padding: 24px;
  border-right: 1px solid rgba(250, 249, 246, 0.12);
}

.stat:last-child { border-right: 0; }
.stat-number { color: var(--red); font-size: clamp(34px, 4vw, 54px); line-height: 0.95; }
.stat-label { margin-top: 8px; color: rgba(250, 249, 246, 0.74); font-size: 13px; font-weight: 900; text-transform: uppercase; }

.section {
  padding: 92px 0;
  background:
    linear-gradient(128deg, transparent 0 40%, rgba(250, 249, 246, 0.045) 40.1% 40.35%, transparent 40.45%),
    linear-gradient(28deg, transparent 0 72%, rgba(215, 25, 32, 0.1) 72.1% 72.4%, transparent 72.55%),
    #090d0b;
  color: white;
}

.section.dark {
  background:
    linear-gradient(132deg, rgba(215, 25, 32, 0.14), transparent 44%),
    linear-gradient(28deg, transparent 0 56%, rgba(250, 249, 246, 0.06) 56.1% 56.35%, transparent 56.45%),
    var(--green-dark);
  color: white;
}

.section.charcoal {
  background:
    linear-gradient(128deg, rgba(4, 106, 56, 0.18), transparent 32%),
    linear-gradient(35deg, transparent 0 64%, rgba(215, 25, 32, 0.18) 64.1% 64.35%, transparent 64.5%),
    var(--charcoal);
  color: white;
}

.section.red-panel {
  background: linear-gradient(135deg, var(--red-deep), var(--red));
  color: white;
}

.section-header {
  display: grid;
  gap: 16px;
  max-width: 820px;
  margin-bottom: 40px;
}

.section-header.wide {
  max-width: none;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: end;
}

.section-title {
  color: inherit;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.94;
}

.section-title .red { color: var(--red); }
.section.dark .section-label,
.section.charcoal .section-label { color: var(--gold); }

.section-copy {
  margin: 0;
  color: rgba(250, 249, 246, 0.72);
  font-size: 18px;
  line-height: 1.7;
}

.dark .section-copy,
.charcoal .section-copy,
.red-panel .section-copy {
  color: rgba(250, 249, 246, 0.76);
}

.body-stack {
  display: grid;
  gap: 16px;
  color: rgba(250, 249, 246, 0.74);
  font-size: 18px;
  line-height: 1.72;
}

.body-stack p {
  margin: 0;
}

.body-stack.light {
  color: rgba(250, 249, 246, 0.78);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(0, 1.05fr);
  gap: 44px;
  align-items: center;
}

.photo-frame,
.mosaic-item,
.news-image,
.product-visual {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(4, 106, 56, 0.88), rgba(215, 25, 32, 0.82)),
    linear-gradient(120deg, transparent 0 46%, rgba(250, 249, 246, 0.14) 46.1% 46.35%, transparent 46.45%);
}

.photo-frame {
  min-height: 560px;
  border-radius: 10px;
}

.photo-frame::before {
  --photo: url("../images/supporters/community/about.jpg");
  opacity: 0.16;
}

.photo-label {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  border-left: 4px solid var(--red);
  background: rgba(17, 21, 19, 0.84);
  color: white;
  font-size: 13px;
  font-weight: 800;
  padding: 12px;
}

.feature-list {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.feature {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: start;
  border-top: 1px solid var(--line-light);
  padding-top: 18px;
}

.feature-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 8px;
  background: var(--red);
  color: white;
}

.feature p,
.event-card p,
.news-card p,
.value-card p {
  margin: 8px 0 0;
  color: rgba(250, 249, 246, 0.68);
  line-height: 1.6;
}

.event-board {
  display: grid;
  gap: 14px;
}

.event-card {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 22px;
  align-items: center;
  border: 1px solid var(--line-light);
  background: rgba(250, 249, 246, 0.05);
  padding: 18px;
}

.date-block {
  display: grid;
  place-items: center;
  min-height: 88px;
  border-radius: 8px;
  background: var(--red);
  color: white;
}

.date-block strong {
  font-family: Barlow Condensed, Oswald, sans-serif;
  font-size: 36px;
  line-height: 0.8;
}

.date-block span {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.event-status {
  border: 1px solid rgba(226, 185, 59, 0.38);
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  padding: 8px 10px;
  text-transform: uppercase;
}

.match-board {
  display: grid;
  gap: 10px;
}

.empty-match {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr auto;
  gap: 22px;
  align-items: center;
  border: 1px solid var(--line-light);
  background: rgba(250, 249, 246, 0.05);
  padding: 22px;
}

.empty-fields {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.empty-fields div {
  min-height: 72px;
  border: 1px solid rgba(250, 249, 246, 0.14);
  background: rgba(250, 249, 246, 0.05);
  padding: 12px;
}

.section:not(.dark):not(.charcoal):not(.red-panel) .empty-fields div {
  border-color: var(--line-light);
  background: rgba(250, 249, 246, 0.05);
}

.empty-fields span {
  display: block;
  opacity: 0.68;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.empty-fields strong {
  display: block;
  margin-top: 8px;
  color: var(--red);
  font-family: Barlow Condensed, Oswald, sans-serif;
  font-size: 30px;
}

.fan-walk-grid,
.international-grid,
.music-grid,
.merch-layout,
.cta-grid {
  display: grid;
  gap: 44px;
  align-items: center;
}

.fan-walk-grid,
.international-grid,
.music-grid {
  grid-template-columns: 1fr 1fr;
}

.fan-photo::before {
  --photo: url("../images/supporters/fan-walks/fan-walk-01.jpg");
}

.community-photo::before {
  --photo: url("../images/supporters/community/international.jpg");
}

.gathering-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
  align-items: stretch;
}

.gathering-photo {
  min-height: 580px;
}

.gathering-copy {
  display: grid;
  align-content: end;
  min-height: 580px;
  background: var(--charcoal);
  color: white;
  padding: 38px;
}

.mosaic {
  display: grid;
  grid-template-columns: 1.15fr 0.8fr 0.85fr;
  grid-template-rows: 250px 230px 190px;
  gap: 14px;
}

.mosaic-item {
  min-height: 210px;
  border-radius: 8px;
  transition: transform 180ms ease;
}

.mosaic-item:hover { transform: scale(1.03); }
.mosaic-item.large { grid-row: span 2; }
.mosaic-item.wide { grid-column: span 2; }
.mosaic-item::before { opacity: 0.14; }
.mosaic-item:nth-child(1)::before { --photo: url("../images/supporters/gallery/ssp-001.webp"); }
.mosaic-item:nth-child(2)::before { --photo: url("../images/supporters/gallery/ssp-002.webp"); }
.mosaic-item:nth-child(3)::before { --photo: url("../images/supporters/gallery/ssp-003.webp"); }
.mosaic-item:nth-child(4)::before { --photo: url("../images/supporters/gallery/ssp-004.webp"); }
.mosaic-item:nth-child(5)::before { --photo: url("../images/supporters/gallery/ssp-005.webp"); }

.mosaic-caption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  color: white;
  font-weight: 900;
  text-transform: uppercase;
}

.music-section {
  background:
    linear-gradient(135deg, rgba(215, 25, 32, 0.16), transparent 38%),
    linear-gradient(35deg, transparent 0 64%, rgba(250, 249, 246, 0.08) 64.1% 64.35%, transparent 64.5%),
    #070a08;
}

.music-artwork {
  position: relative;
  display: grid;
  min-height: 520px;
  place-items: center;
  overflow: hidden;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--green-dark), var(--red-deep));
  color: white;
}

.music-artwork::before {
  position: absolute;
  inset: 0;
  background: url("../images/supporters/music/somos-supporters-portugal.jpg") center/cover;
  content: "";
  opacity: 0.16;
}

.music-placeholder-title {
  position: relative;
  z-index: 1;
  max-width: 360px;
  color: white;
  font-family: Barlow Condensed, Oswald, sans-serif;
  font-size: clamp(52px, 7vw, 86px);
  font-weight: 800;
  line-height: 0.9;
  text-align: center;
  text-transform: uppercase;
}

.music-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}

.music-meta div {
  border-top: 4px solid var(--red);
  background: rgba(250, 249, 246, 0.05);
  padding: 16px;
}

.music-meta span {
  display: block;
  color: rgba(250, 249, 246, 0.62);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.music-meta strong {
  display: block;
  margin-top: 8px;
  font-size: 18px;
}

.music-disabled {
  width: auto;
  margin-top: 26px;
  padding: 0 18px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.value-card {
  border-top: 4px solid var(--red);
  background: rgba(1, 60, 37, 0.04);
  padding: 24px;
}

.instagram-panel {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: center;
}

.insta-wall {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  transform: rotate(-1.5deg);
}

.insta-tile {
  min-height: 210px;
  border: 1px solid rgba(250, 249, 246, 0.18);
  background: linear-gradient(135deg, rgba(1, 60, 37, 0.95), rgba(215, 25, 32, 0.78));
}

.insta-tile:nth-child(2),
.insta-tile:nth-child(3) {
  transform: translateY(26px);
}

.news-grid,
.merch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.events-empty {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--line-light);
  background: rgba(250, 249, 246, 0.05);
  color: rgba(250, 249, 246, 0.82);
  padding: 22px;
}

.merch-section {
  background:
    linear-gradient(135deg, rgba(1, 60, 37, 0.24), transparent 42%),
    linear-gradient(115deg, transparent 0 35%, rgba(215, 25, 32, 0.16) 35.1% 35.45%, transparent 35.58%),
    #080b09;
}

.merch-layout {
  grid-template-columns: 1fr 0.8fr;
}

.merch-subtitle {
  margin: 0 0 18px;
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
}

.merch-coming {
  display: grid;
  min-height: 330px;
  place-items: center;
  border: 1px solid rgba(215, 25, 32, 0.36);
  background:
    linear-gradient(135deg, rgba(17, 21, 19, 0.96), rgba(1, 60, 37, 0.52)),
    linear-gradient(32deg, transparent 0 48%, rgba(250, 249, 246, 0.1) 48.1% 48.35%, transparent 48.48%);
}

.merch-coming span {
  color: var(--red);
  font-family: Barlow Condensed, Oswald, sans-serif;
  font-size: clamp(54px, 8vw, 96px);
  font-weight: 800;
  line-height: 0.9;
  text-align: center;
  text-transform: uppercase;
}

.community-cta {
  background: var(--charcoal);
  color: white;
}

.community-cta .section-label {
  color: var(--gold);
}

.community-cta .section-copy {
  color: rgba(250, 249, 246, 0.76);
}

.cta-grid {
  grid-template-columns: 1fr auto;
}

.news-card,
.product-card {
  border: 1px solid var(--line-light);
  background: rgba(250, 249, 246, 0.045);
  color: white;
}

.news-image {
  min-height: 240px;
}

.news-image::before {
  --photo: url("../images/supporters/events/news-01.jpg");
  opacity: 0.14;
}

.news-body,
.product-body {
  padding: 22px;
}

.product-visual {
  display: grid;
  min-height: 260px;
  place-items: center;
  color: rgba(250, 249, 246, 0.7);
  font-family: Barlow Condensed, Oswald, sans-serif;
  font-size: 44px;
  font-weight: 800;
}

.product-visual::before {
  --photo: url("../images/supporters/merch/merch-placeholder.jpg");
  opacity: 0.1;
}

.disabled-button {
  width: 100%;
  min-height: 44px;
  margin-top: 18px;
  border: 1px solid rgba(250, 249, 246, 0.16);
  border-radius: 8px;
  background: rgba(250, 249, 246, 0.06);
  color: rgba(250, 249, 246, 0.54);
  cursor: not-allowed;
  font-weight: 900;
  text-transform: uppercase;
}

.global-panel {
  position: relative;
  min-height: 480px;
  display: grid;
  align-items: end;
  padding: 42px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(1, 60, 37, 0.96), rgba(17, 21, 19, 0.92));
  color: white;
}

.global-panel::before {
  position: absolute;
  inset: 0;
  background: url("../images/supporters/community/travel-01.jpg") center/cover;
  content: "";
  opacity: 0.14;
}

.global-panel > * {
  position: relative;
  z-index: 1;
}

.footer {
  background:
    linear-gradient(126deg, rgba(215, 25, 32, 0.18), transparent 38%),
    linear-gradient(30deg, transparent 0 70%, rgba(250, 249, 246, 0.07) 70.1% 70.35%, transparent 70.45%),
    #06120d;
  color: white;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 1fr) auto;
  align-items: start;
  gap: 34px;
  padding: 46px 0;
}

.footer-message {
  margin: 0;
  font-family: Barlow Condensed, Oswald, sans-serif;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.92;
  text-transform: uppercase;
}

.footer-links {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
}

.footer-links a {
  color: rgba(250, 249, 246, 0.72);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-handle {
  color: var(--gold);
  font-weight: 900;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line-light);
  padding: 18px 0 24px;
  color: rgba(250, 249, 246, 0.64);
  font-size: 13px;
}

.fade-up {
  animation: fadeUp 520ms ease both;
}

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

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .desktop-nav,
  .header-actions .button {
    display: none;
  }

  .menu-button {
    display: grid;
  }

  .mobile-menu.open {
    display: grid;
    gap: 16px;
    width: 100%;
    margin: 0 auto 12px;
    border: 1px solid rgba(215, 25, 32, 0.42);
    border-top: 3px solid var(--red);
    background:
      linear-gradient(135deg, rgba(215, 25, 32, 0.12), transparent 42%),
      rgba(1, 30, 19, 0.98);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.34);
    padding: 18px;
  }

  .mobile-menu.open .nav-link {
    color: white;
    padding: 8px 0;
  }

  .mobile-menu.open .lang-switch {
    width: max-content;
    background: rgba(17, 21, 19, 0.72);
  }

  .hero {
    min-height: 80vh;
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(3, 31, 21, 0.94) 0%, rgba(3, 31, 21, 0.78) 58%, rgba(3, 31, 21, 0.38) 100%),
      linear-gradient(135deg, rgba(215, 25, 32, 0.22), transparent 50%);
  }

  .stats-grid,
  .section-header.wide,
  .about-grid,
  .gathering-grid,
  .fan-walk-grid,
  .international-grid,
  .music-grid,
  .merch-layout,
  .cta-grid,
  .empty-match,
  .instagram-panel,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .values-grid,
  .news-grid,
  .merch-grid,
  .empty-fields {
    grid-template-columns: 1fr 1fr;
  }

  .mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 220px);
  }

  .mosaic-item.large,
  .mosaic-item.wide {
    grid-column: auto;
    grid-row: auto;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .wrap { width: min(100% - 24px, 1180px); }
  .brand-name { font-size: 17px; }
  .hero { min-height: 78vh; }
  .hero-content { padding: 104px 0 54px; }
  .headline { font-size: clamp(52px, 17vw, 76px); }
  .hero-copy { font-size: 16px; line-height: 1.55; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .stats-band { margin-top: 0; }
  .stats-grid,
  .values-grid,
  .news-grid,
  .merch-grid,
  .empty-fields,
  .music-meta {
    grid-template-columns: 1fr;
  }
  .stat { min-height: 98px; }
  .section { padding: 68px 0; }
  .photo-frame,
  .gathering-photo,
  .gathering-copy,
  .global-panel,
  .fan-photo,
  .community-photo,
  .music-artwork {
    min-height: 390px;
  }
  .feature { grid-template-columns: 42px 1fr; }
  .event-card {
    grid-template-columns: 82px 1fr;
  }
  .event-status {
    grid-column: 1 / -1;
    width: max-content;
  }
  .empty-match .button,
  .cta-grid .button {
    width: 100%;
  }
  .mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 230px);
  }
  .insta-wall {
    transform: none;
  }
  .insta-tile:nth-child(2),
  .insta-tile:nth-child(3) {
    transform: none;
  }
  .footer-bottom {
    display: grid;
  }
}
