:root {
  --bg: #050507;
  --bg-2: #09090c;
  --panel: #08080a;
  --line: rgba(255,255,255,0.12);
  --line-soft: rgba(255,255,255,0.07);
  --text: #f2f2f4;
  --muted: #c6c7cc;
  --red: #e0001b;
  --red-soft: #ff1634;
  --glow: rgba(255,0,38,0.65);
}

* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }
body {
  font-family: "Montserrat", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,0.05), transparent 28%),
    linear-gradient(180deg, #020203 0%, #070709 35%, #040405 100%);
  overflow-x: hidden;
}

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

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .12;
  background-image: url('../img/noise.svg');
  background-size: 320px 320px;
  mix-blend-mode: screen;
}

.container {
  width: min(1280px, calc(100% - 64px));
  margin: 0 auto;
}

.site-header {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), transparent 45%),
    linear-gradient(180deg, #050507 0%, #09090c 100%);
  border-bottom: 1px solid var(--line-soft);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 18%, rgba(255,255,255,.10), transparent 22%),
    radial-gradient(circle at 15% 72%, rgba(255,0,43,.05), transparent 16%),
    radial-gradient(circle at 85% 72%, rgba(255,0,43,.05), transparent 16%);
  pointer-events: none;
}

.header-top {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 8px 0 6px;
}

.brand-image {
  width: 370px;
  filter: drop-shadow(0 0 22px rgba(255,255,255,.05));
}

.brand-image-link { display: inline-block; }

.cta-button {
  min-width: 190px;
  text-align: center;
  padding: 18px 28px;
  border-radius: 4px;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 1.4px;
  color: #fff;
  background: linear-gradient(180deg, #df0d24 0%, #bc0018 100%);
  box-shadow: 0 0 24px rgba(255,0,38,.24), inset 0 -10px 18px rgba(0,0,0,.18);
}

.menu-bar {
    position: relative;
    border-top: 1px solid var(--line-soft);
    border-bottom: 1px solid rgb(0 0 0 / 95%);
    border-bottom: 1px solid rgb(0 0 0 / 95%);
    box-shadow: inset 0 -1px 0 rgba(255, 0, 38, .35);
}

.menu-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 57px;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(26px, 4vw, 78px);
  align-items: center;
}

.nav-link {
  position: relative;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 0px 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -19px;
  width: 0;
  height: 3px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, var(--red-soft), transparent);
  box-shadow: 0 0 12px var(--glow);
  transition: width .22s ease;
}

.nav-link:hover::after,
.nav-link.is-active::after { width: 86px; }

.socials {
  display: flex;
  align-items: center;
  gap: 14px;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.82);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
}

.band-strip {
  position: relative;
  overflow: hidden;
  min-height: 140px;
  border-top: 1px solid rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(255,255,255,.08);
 
}

.band-strip-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 32%;
  opacity: .42;
  background-size: cover;
  background-position: center;
}
.band-strip-bg-left { left: 0; background-image: url('../img/hero-left.svg'); }
.band-strip-bg-right { right: 0; background-image: url('../img/hero-right.svg'); }

.band-strip-inner {
  position: relative;
  z-index: 1;
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.band-strip h1 {
  margin: 0;
  font-size: clamp(3rem, 7vw, 3.1rem);
  line-height: 1;
  letter-spacing: 5px;
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
}

.band-strip-glow {
  width: min(520px, 82vw);
  height: 4px;
  margin-top: 22px;
  background: linear-gradient(90deg, transparent, var(--red-soft), transparent);
  box-shadow: 0 0 28px var(--glow);
}

.page-main { padding: 38px 0 80px; }

.content-section {
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0));
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(300px, .95fr);
  gap: 42px;
  align-items: start;
}

.photo-card {
  margin: 0;
  background: linear-gradient(180deg, rgba(255,0,38,.28), rgba(255,255,255,.08));
  padding: 4px;
  box-shadow: 0 0 0 1px rgba(255,255,255,.08), 0 18px 40px rgba(0,0,0,.35);
}

.photo-card img { width: 100%; background: #0a0a0c; }

.bio-block { margin-top: 34px; }
.section-title {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}
.section-title span {
  width: 7px; height: 34px; background: var(--red);
  box-shadow: 0 0 14px rgba(255,0,38,.45);
}
.section-title h2 {
  margin: 0;
  font-size: 1.1rem;
  letter-spacing: 3px;
  font-weight: 800;
}
.bio-block p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.lineup-card {
  padding-top: 8px;
}
.lineup-card h3 {
  margin: 0 0 18px;
  font-size: 1.05rem;
  letter-spacing: 2px;
  font-weight: 800;
}
.lineup-card h3::after {
  content: "";
  display: block;
  width: 140px;
  height: 3px;
  margin-top: 10px;
  background: linear-gradient(90deg, var(--red-soft), transparent);
  box-shadow: 0 0 16px var(--glow);
}
.lineup-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  border-bottom: 1px solid var(--line);
}
.lineup-card li {
  display: flex;
  gap: 14px;
  align-items: baseline;
  padding: 16px 0;
  border-top: 1px dashed rgba(255,255,255,.1);
}
.lineup-card li:first-child { border-top: 0; }
.lineup-card strong {
  font-size: 1.05rem;
  font-weight: 800;
  white-space: nowrap;
}
.lineup-card span {
  color: var(--muted);
  font-size: 1rem;
}
.lineup-card span::before {
  content: "–";
  color: var(--red-soft);
  margin-right: 10px;
  font-weight: 800;
}

.video-card {
  margin-top: 34px;
  padding: 1px;
  background: linear-gradient(180deg, rgba(255,0,38,.45), rgba(255,255,255,.08));
  box-shadow: 0 0 32px rgba(255,0,38,.12);
}
.video-card img { width: 100%; }

@media (max-width: 1080px) {
  .header-top { grid-template-columns: 1fr; justify-items: center;margin-bottom: 15px; }
  .menu-inner { grid-template-columns: 1fr; padding: 14px 0 18px; }
  .socials { justify-content: center;display: none; }
  .content-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 32px, 1280px); }
  .brand-image { width: 100%; }
  .main-nav { flex-wrap: wrap; gap: 18px 28px; }
  .nav-link::after { bottom: -10px; }
  .band-strip { min-height: 140px; }
  .band-strip-inner { min-height: 140px; }
  .bio-block { order: 2; }
  .right-column { order: 1; }
  .bio-block p { font-size: .98rem; }
  .lineup-card li { flex-direction: column; gap: 6px; }
  .lineup-card strong { white-space: normal; }
  
  
}

/* =========================
   BANDS PAGE
========================= */
.page-main-bands {
  padding-top: 28px;
}

.bands-section {
  padding-bottom: 10px;
}

.bands-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
}

.band-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.015));
  border: 1px solid rgba(255,255,255,.08);
  box-shadow:
    inset 0 0 0 1px rgba(255,0,38,.08),
    0 14px 32px rgba(0,0,0,.28);
  overflow: hidden;
}

.band-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,0,38,.12), transparent 18%, transparent 82%, rgba(255,255,255,.03));
}

.band-card__image {
  display: block;
  aspect-ratio: 4 / 3;
  min-height: 220px;
  background: #09090d;
  overflow: hidden;
}

.band-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.01);
  transition: transform .35s ease, opacity .35s ease;
}

.band-card:hover .band-card__image img {
  transform: scale(1.05);
}

.band-card__body {
  padding: 18px 18px 22px;
  text-align: center;
  background: linear-gradient(180deg, rgba(8,8,10,.78), rgba(8,8,10,.96));
}

.band-card__body h2 {
  margin: 0 0 18px;
  font-size: clamp(1.15rem, 1.4vw, 1.55rem);
  line-height: 1.2;
  font-weight: 800;
  color: #fff;
}

.band-card__button {
  display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 56px;
    padding: 14px 18px;
    border-radius: 2px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.3px;
    color: #fff;
    text-transform: uppercase;
  background: linear-gradient(180deg, #f20d22 0%, #b50018 100%);
  box-shadow: 0 0 20px rgba(255,0,38,.22), inset 0 -10px 18px rgba(0,0,0,.18);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.band-card__button:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 26px rgba(255,0,38,.28), inset 0 -10px 18px rgba(0,0,0,.18);
  filter: brightness(1.05);
}

@media (max-width: 1280px) {
  .bands-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .bands-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  .band-card__image {
    min-height: 200px;
  }
}

@media (max-width: 560px) {
  .bands-grid {
    grid-template-columns: 1fr;
  }

  .band-card__image {
    min-height: 230px;
  }

  .band-card__body {
    padding: 16px 16px 18px;
  }
}

/* =========================
   EVENTS PAGE
========================= */
.page-main-events {
  padding-top: 28px;
}

.events-section {
  padding-bottom: 10px;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
}

.event-card {
  position: relative;
  display: block;
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
  border: 1px solid rgba(255,255,255,.08);
  box-shadow:
    inset 0 0 0 1px rgba(255,0,38,.08),
    0 12px 28px rgba(0,0,0,.22);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.event-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,0,38,.10), transparent 18%, transparent 84%, rgba(255,255,255,.03));
}

.event-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255,0,38,.28);
  box-shadow:
    inset 0 0 0 1px rgba(255,0,38,.14),
    0 16px 32px rgba(0,0,0,.30),
    0 0 22px rgba(255,0,38,.10);
}

.event-card__frame {
  display: block;
  aspect-ratio: 3 / 4;
  background: #09090d;
  overflow: hidden;
}

.event-card__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform .3s ease;
}

.event-card:hover .event-card__frame img {
  transform: scale(1.04);
}

.lightbox-open {
  overflow: hidden;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.lightbox.is-open {
  display: block;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0,0,0,.85);
  backdrop-filter: blur(4px);
}

.lightbox__dialog {
  position: relative;
  z-index: 1;
  width: min(1100px, calc(100% - 48px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox__figure {
  margin: 0;
  max-width: 100%;
  max-height: calc(100vh - 70px);
  padding: 4px;
  background: linear-gradient(180deg, rgba(255,0,38,.35), rgba(255,255,255,.08));
  box-shadow: 0 0 0 1px rgba(255,255,255,.08), 0 18px 40px rgba(0,0,0,.45);
}

.lightbox__figure img {
  display: block;
  max-width: min(92vw, 1000px);
  max-height: calc(100vh - 78px);
  width: auto;
  height: auto;
  background: #050507;
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  border: 0;
  color: #fff;
  cursor: pointer;
  background: rgba(8,8,10,.72);
  box-shadow: 0 0 16px rgba(255,0,38,.18);
}

.lightbox__close {
  top: 18px;
  right: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 2rem;
  line-height: 1;
}

.lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 74px;
  font-size: 3rem;
  line-height: 1;
}

.lightbox__nav--prev { left: -8px; }
.lightbox__nav--next { right: -8px; }

@media (max-width: 1280px) {
  .events-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (max-width: 1080px) {
  .events-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .events-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }
}

@media (max-width: 560px) {
  .events-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .lightbox__dialog {
    width: calc(100% - 20px);
  }

  .lightbox__nav {
    width: 42px;
    height: 60px;
    font-size: 2.4rem;
  }

  .lightbox__nav--prev { left: -2px; }
  .lightbox__nav--next { right: -2px; }

  .lightbox__close {
    width: 42px;
    height: 42px;
    top: 10px;
  }
}




/* =========================
   NEWS PAGE
========================= */
.page-main-news {
  padding-top: 40px;
  padding-bottom: 96px;
}

.news-section {
  padding-bottom: 14px;
}

.news-list {
  display: grid;
  gap: 26px;
}

.news-row {
  position: relative;
  display: grid;
  grid-template-columns: 190px minmax(240px, 1.2fr) minmax(280px, 1fr) 190px;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01)),
    linear-gradient(180deg, rgba(8,8,10,.92), rgba(6,6,8,.98));
  border: 1px solid rgba(255, 0, 38, .22);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .04),
    0 16px 34px rgba(0,0,0,.28),
    0 0 24px rgba(255, 0, 38, .08);
  overflow: hidden;
}

.news-row::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255,0,38,.10), transparent 24%, transparent 82%, rgba(255,255,255,.03));
}

.news-row::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  transform: translateX(-50%);
  width: min(360px, 42%);
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--red-soft), transparent);
  box-shadow: 0 0 18px var(--glow);
}

.news-row__date,
.news-row__title,
.news-row__address,
.news-row__cta-wrap {
  position: relative;
  z-index: 1;
}

.news-row__date {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 12px 18px;
  border-radius: 4px;
  background: linear-gradient(180deg, #d90e24 0%, #a80016 100%);
  box-shadow:
    0 0 20px rgba(255,0,38,.22),
    inset 0 -10px 18px rgba(0,0,0,.18);
  color: #fff;
  font-size: clamp(1.2rem, 1.7vw, 1.55rem);
  font-weight: 800;
  letter-spacing: .02em;
  text-align: center;
}

.news-row__title {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  min-width: 0;
}

.news-row__title strong {
  font-size: clamp(1.2rem, 1.9vw, 1.6rem);
  line-height: 1.2;
  font-weight: 800;
  color: #fff;
}

.news-row__title span {
  color: rgba(255,255,255,.82);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.3;
}

.news-row__title span::before {
  content: " - ";
  color: var(--red-soft);
  font-weight: 700;
}

.news-row__address {
  color: rgba(255,255,255,.88);
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  line-height: 1.5;
}

.news-row__cta-wrap {
  display: flex;
  justify-content: flex-end;
}

.news-row__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 176px;
  min-height: 58px;
  padding: 14px 22px;
  border-radius: 4px;
  background: linear-gradient(180deg, #f10f24 0%, #b30017 100%);
  box-shadow:
    0 0 22px rgba(255,0,38,.22),
    inset 0 -10px 18px rgba(0,0,0,.18);
  color: #fff;
  font-size: .98rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-align: center;
  transition: transform .22s ease, filter .22s ease, box-shadow .22s ease;
}

.news-row__cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow:
    0 0 28px rgba(255,0,38,.30),
    inset 0 -10px 18px rgba(0,0,0,.18);
}

.news-row__cta--disabled {
  background: linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,.10));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.12);
  color: rgba(255,255,255,.72);
}

.news-empty {
  width: min(760px, 100%);
  margin: 0 auto;
  padding: 34px 28px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(8,8,10,.94), rgba(6,6,8,.98)),
    radial-gradient(circle at 50% 0%, rgba(255,255,255,.04), transparent 28%);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow:
    inset 0 0 0 1px rgba(255,0,38,.08),
    0 16px 34px rgba(0,0,0,.28);
}

.news-empty h2 {
  margin: 0 0 12px;
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  font-weight: 800;
}

.news-empty p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 1rem;
}

@media (max-width: 1180px) {
  .news-row {
    grid-template-columns: 180px minmax(220px, 1.1fr) minmax(220px, 1fr) 170px;
    gap: 14px;
  }

  .news-row__title strong {
    font-size: 1.28rem;
  }

  .news-row__address {
    font-size: 1rem;
  }
}

@media (max-width: 900px) {
  .news-row {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 20px 18px;
  }

  .news-row__date,
  .news-row__cta {
    width: 100%;
  }

  .news-row__cta-wrap {
    justify-content: stretch;
  }

  .news-row__title {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .news-row__title span::before {
    content: "";
    margin: 0;
  }
}

@media (max-width: 560px) {
  .news-list {
    gap: 18px;
  }

  .news-row {
    padding: 16px;
  }

  .news-row__date {
    font-size: 1.1rem;
    min-height: 56px;
  }

  .news-row__title strong {
    font-size: 1.15rem;
  }

  .news-row__title span,
  .news-row__address {
    font-size: .98rem;
  }

  .news-row__cta {
    min-height: 54px;
    font-size: .92rem;
  }

  .news-empty {
    padding: 28px 18px;
  }
}

/* =========================
   CONTACT PAGE
   Regole aggiuntive isolate: nessuna regola esistente modificata
========================= */
.page-main-contact {
  padding-top: 34px;
  padding-bottom: 90px;
}

.contact-section {
  padding-bottom: 12px;
}

.contact-shell {
  width: min(760px, 100%);
  margin: 0 auto;
  position: relative;
  padding: 1px;
  background: linear-gradient(180deg, rgba(255,0,38,.42), rgba(255,255,255,.08));
  box-shadow:
    0 0 0 1px rgba(255,255,255,.08),
    0 22px 50px rgba(0,0,0,.34),
    0 0 28px rgba(255,0,38,.10);
}

.contact-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,0,38,.08), transparent 18%, transparent 84%, rgba(255,255,255,.03));
}

.contact-card {
  position: relative;
  padding: 42px 46px 34px;
  background:
    linear-gradient(180deg, rgba(8,8,10,.94), rgba(6,6,8,.98)),
    radial-gradient(circle at 50% 0%, rgba(255,255,255,.04), transparent 28%);
}

.contact-heading {
  text-align: center;
  margin-bottom: 28px;
}

.contact-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4.6vw, 3rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.contact-heading h2 span {
  color: var(--red-soft);
}

.contact-heading p {
  margin: 12px auto 0;
  max-width: 520px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.contact-status {
  display: none;
  margin: 0 0 24px;
  padding: 15px 18px;
  border: 1px solid rgba(255,255,255,.12);
  font-size: .96rem;
  line-height: 1.6;
  text-align: center;
}

.contact-status.is-visible {
  display: block;
}

.contact-status.is-success {
  color: #fff;
  border-color: rgba(52, 199, 89, .45);
  background: rgba(52, 199, 89, .12);
}

.contact-status.is-error {
  color: #fff;
  border-color: rgba(255,0,38,.36);
  background: rgba(255,0,38,.10);
}

.contact-form {
  display: grid;
  gap: 22px;
}

.contact-field {
  display: grid;
  gap: 10px;
}

.contact-field label {
  color: var(--muted);
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: .4px;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.03);
  color: #fff;
  font: inherit;
  padding: 15px 16px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.contact-field input {
  min-height: 54px;
}

.contact-field textarea {
  min-height: 220px;
  resize: vertical;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: rgba(255,255,255,.36);
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: rgba(255,0,38,.50);
  box-shadow: 0 0 0 3px rgba(255,0,38,.10);
  background: rgba(255,255,255,.04);
}

.contact-actions {
  display: flex;
  justify-content: center;
  padding-top: 4px;
}

.contact-submit {
  min-width: 220px;
  border: 0;
  cursor: pointer;
  text-align: center;
  padding: 18px 28px;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 1.6px;
  color: #fff;
  text-transform: uppercase;
  background: linear-gradient(180deg, #df0d24 0%, #bc0018 100%);
  box-shadow: 0 0 24px rgba(255,0,38,.24), inset 0 -10px 18px rgba(0,0,0,.18);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.contact-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 28px rgba(255,0,38,.28), inset 0 -10px 18px rgba(0,0,0,.18);
  filter: brightness(1.05);
}

.contact-note {
  margin: 18px 0 0;
  color: rgba(255,255,255,.46);
  font-size: .86rem;
  text-align: center;
}

@media (max-width: 720px) {
  .page-main-contact {
    padding-top: 26px;
  }

  .contact-card {
    padding: 30px 20px 26px;
  }

  .contact-heading h2 {
    letter-spacing: 1px;
  }

  .contact-heading p {
    font-size: .94rem;
  }

  .contact-field textarea {
    min-height: 190px;
  }

  .contact-submit {
    width: 100%;
    min-width: 0;
  }
}


.facebook-feed-section{
  padding: 60px 20px;
}

.facebook-feed-wrap{
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.facebook-feed-title{
  margin: 0 0 30px;
  font-size: 42px;
  line-height: 1.2;
  font-weight: 700;
  color: #fff;
}

.facebook-feed-box{
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  overflow: hidden;
}

.facebook-feed-box .fb-page{
  max-width: 500px;
  width: 100%;
}

.facebook-feed-box span,
.facebook-feed-box iframe{
  max-width: 100% !important;
  width: 100% !important;
}

@media (max-width: 767px){
  .facebook-feed-section{
    padding: 40px 15px;
  }

  .facebook-feed-title{
    font-size: 30px;
    margin-bottom: 20px;
  }
}

/* =========================
   GLOBAL HEADER + HAMBURGER
========================= */
.header-actions{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:16px;
}

.menu-toggle{
  display:none;
  width:56px;
  height:56px;
  padding:0;
  border:1px solid rgba(255,255,255,.14);
  border-radius:4px;
  background:rgba(255,255,255,.02);
  cursor:pointer;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:6px;
  box-shadow:0 0 18px rgba(255,0,38,.10);
}

.menu-toggle span{
  display:block;
  width:24px;
  height:2px;
  background:#fff;
  transition:transform .22s ease, opacity .22s ease;
}

.mobile-menu-extra{
  display:none;
}

body.menu-open{
  overflow:hidden;
}

@media (max-width: 1024px){
  .header-top{
    grid-template-columns:minmax(0,1fr) auto;
    align-items:center;
    padding:12px 0 14px;
    margin-bottom:0;
  }

  .brand-image{
    width:min(100%, 320px);
  }

  .cta-button--desktop{
    display:none;
  }

  .menu-toggle{
    display:inline-flex;
  }

  .menu-bar{
    position:relative;
    overflow:hidden;
    max-height:0;
    border-top:0;
    box-shadow:none;
    transition:max-height .28s ease, border-color .28s ease, box-shadow .28s ease;
  }

  body.menu-open .menu-bar{
    max-height:80vh;
    overflow:auto;
    border-top:1px solid var(--line-soft);
    box-shadow:inset 0 -1px 0 rgba(255, 0, 38, .35);
  }

  .menu-inner{
    grid-template-columns:1fr;
    gap:0;
    align-items:stretch;
    padding:0;
  }

  .main-nav{
    display:grid;
    justify-content:stretch;
    gap:0;
    padding:10px 0 0;
  }

  .nav-link{
    display:block;
    padding:18px 0;
    text-align:left;
    border-bottom:1px solid rgba(255,255,255,.08);
    letter-spacing:1.2px;
  }

  .nav-link::after{
    display:none;
  }

  .socials{
    display:none;
  }

  .mobile-menu-extra{
    display:flex;
    flex-direction:column;
    gap:18px;
    padding:22px 0 24px;
  }

  .mobile-menu-cta{
    width:100%;
  }

  .mobile-menu-socials{
    display:flex;
    justify-content:flex-start;
    gap:12px;
  }
}

@media (max-width: 560px){
  .header-top{
    gap:14px;
  }

  .brand-image{
    width:min(100%, 250px);
  }

  .menu-toggle{
    width:50px;
    height:50px;
  }

  .nav-link{
    padding:16px 0;
    font-size:.95rem;
  }
}

/* =========================
   GENERIC CONTENT PAGE
========================= */
.content-panel{
  width:min(1120px, 100%);
  margin:0 auto;
  padding:1px;
  background:linear-gradient(180deg, rgba(255,0,38,.24), rgba(255,255,255,.08));
  box-shadow:
    0 0 0 1px rgba(255,255,255,.08),
    0 20px 46px rgba(0,0,0,.34),
    0 0 28px rgba(255,0,38,.10);
}

.content-rich,
.content-empty{
  position:relative;
  padding:40px 42px;
  background:
    linear-gradient(180deg, rgba(8,8,10,.94), rgba(6,6,8,.98)),
    radial-gradient(circle at 50% 0%, rgba(255,255,255,.04), transparent 28%);
}

.content-rich{
  color:var(--muted);
  line-height:1.8;
  font-size:1.04rem;
}

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

.content-rich h2,
.content-rich h3{
  color:#fff;
  font-weight:800;
  letter-spacing:1px;
  margin:0 0 18px;
}

.content-rich p,
.content-rich ul,
.content-rich ol{
  margin:0 0 20px;
}

.content-rich ul,
.content-rich ol{
  padding-left:22px;
}

.content-rich img{
  display:block;
  max-width:100%;
  height:auto;
  margin:26px auto;
}

.content-empty{
  text-align:center;
}

.content-empty h2{
  margin:0 0 12px;
  font-size:clamp(1.6rem, 2.8vw, 2.2rem);
  color:#fff;
}

.content-empty p{
  margin:0;
  color:var(--muted);
  line-height:1.7;
}

@media (max-width: 768px){
  .content-rich,
  .content-empty{
    padding:28px 22px;
  }
}

/* =========================
   ABOUT PAGE
========================= */
.page-main-about{
  padding-top:40px;
  padding-bottom:96px;
}

.about-section{
  padding-bottom:12px;
}

/* =========================
   PARTNERS PAGE
========================= */
.page-main-partners{
  padding-top:40px;
  padding-bottom:96px;
}

.partners-section{
  padding-bottom:12px;
}

.partners-grid{
  display:grid;
  grid-template-columns:repeat(6, minmax(0, 1fr));
  gap:22px;
}

.partner-card{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:132px;
  padding:20px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015)),
    linear-gradient(180deg, rgba(8,8,10,.94), rgba(6,6,8,.98));
  border:1px solid rgba(255,255,255,.08);
  box-shadow:
    inset 0 0 0 1px rgba(255,0,38,.08),
    0 14px 32px rgba(0,0,0,.26);
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.partner-card img{
  width:100%;
  max-width:150px;
  max-height:76px;
  object-fit:contain;
  filter:drop-shadow(0 0 10px rgba(255,255,255,.04));
}

a.partner-card:hover{
  transform:translateY(-3px);
  border-color:rgba(255,0,38,.26);
  box-shadow:
    inset 0 0 0 1px rgba(255,0,38,.10),
    0 18px 36px rgba(0,0,0,.30),
    0 0 22px rgba(255,0,38,.10);
}

@media (max-width: 1200px){
  .partners-grid{
    grid-template-columns:repeat(5, minmax(0, 1fr));
  }
}

@media (max-width: 1024px){
  .partners-grid{
    grid-template-columns:repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 768px){
  .partners-grid{
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:18px;
  }

  .partner-card{
    min-height:110px;
    padding:16px;
  }
}

@media (max-width: 560px){
  .partners-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:16px;
  }

  .partner-card{
    min-height:96px;
  }

  .partner-card img{
    max-width:120px;
    max-height:60px;
  }
}
