* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --red: #f20d18;
  --dark: #070707;
  --black: #000;
  --white: #fff;
  --cream: #f7f3ed;
  --gray: #5f5f5f;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 16px;
  z-index: 1000;
}

.nav {
  max-width: 1180px;
  margin: auto;
  padding: 14px 18px;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(18px);
  border-radius: 999px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 18px 50px rgba(0,0,0,0.10);
}

.logo-text {
  font-weight: 900;
  letter-spacing: -0.04em;
  font-size: 18px;
}

.nav-links {
  display: flex;
  gap: 26px;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
}

.nav-links a:hover {
  color: var(--red);
}

.nav-cta {
  background: var(--red);
  color: white !important;
  padding: 12px 18px;
  border-radius: 999px;
}

.menu-btn {
  display: none;
  background: none;
  border: 0;
}

.menu-btn span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--dark);
  margin: 6px;
}

.hero {
  min-height: 100vh;
  padding: 150px 22px 80px;
  position: relative;
  color: white;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
  linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.7)),
  url("assets/hero.jpg") center/cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, black, transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  width: 100%;
  margin: auto;
}

.tag,
.label {
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 900;
  font-size: 13px;
  margin-bottom: 16px;
}

.hero h1 {
  max-width: 930px;
  font-size: clamp(50px, 9vw, 118px);
  line-height: 0.88;
  letter-spacing: -0.075em;
  margin-bottom: 26px;
}

.hero-text {
  max-width: 670px;
  font-size: clamp(17px, 2vw, 22px);
  color: rgba(255,255,255,0.82);
  margin-bottom: 34px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  min-height: 54px;
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 900;
  transition: 0.25s;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-red {
  background: var(--red);
  color: white;
}

.btn-light {
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.12);
  color: white;
}

.hero-card {
  position: absolute;
  right: 7vw;
  bottom: 7vh;
  z-index: 3;
  width: 280px;
  padding: 24px;
  border-radius: 28px;
  background: rgba(255,255,255,0.11);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(20px);
}

.hero-card p {
  color: var(--red);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 900;
}

.hero-card h3 {
  margin: 10px 0;
  font-size: 24px;
  line-height: 1.05;
}

.hero-card span {
  color: rgba(255,255,255,0.75);
}

.section {
  padding: 110px 22px;
}

.container {
  max-width: 1180px;
  margin: auto;
}

.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}

h2 {
  font-size: clamp(36px, 5vw, 70px);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.text-block p,
.lead {
  font-size: 18px;
  color: #4a4a4a;
  margin-bottom: 18px;
}

.visual-break {
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;

  background:
    linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.8)),
    url("assets/break.jpg") center/cover no-repeat;
}

.visual-inner h2 {
  font-size: clamp(52px, 10vw, 135px);
  line-height: 0.85;
  letter-spacing: -0.08em;
  text-transform: uppercase;
}

.visual-inner p {
  margin-top: 22px;
  font-size: 20px;
  color: rgba(255,255,255,0.75);
}

.section-head {
  max-width: 780px;
  margin-bottom: 44px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.card {
  background: white;
  min-height: 300px;
  padding: 28px;
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.07);
  border: 1px solid rgba(0,0,0,0.05);
}

.card span {
  color: var(--red);
  font-weight: 900;
}

.card h3 {
  margin: 54px 0 14px;
  font-size: 25px;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.card p {
  color: #555;
}

.dark {
  background: var(--dark);
  color: white;
}

.red {
  color: var(--red);
}

.event-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 54px;
  align-items: center;
}

.dark-text {
  color: rgba(255,255,255,0.72);
  font-size: 18px;
  margin-top: 24px;
}

.stats {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.stats div {
  padding: 20px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.14);
}

.stats strong {
  display: block;
  color: var(--red);
  font-size: 34px;
}

.stats span {
  color: rgba(255,255,255,0.65);
  font-size: 13px;
}

.event-box {
  min-height: 430px;
  border-radius: 38px;
  padding: 36px;
  background:
    radial-gradient(circle at top right, rgba(242,13,24,0.55), transparent 34%),
    #191919;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 34px 90px rgba(0,0,0,0.36);
}

.event-box h3 {
  font-size: 42px;
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: 16px;
}

.event-box p {
  color: rgba(255,255,255,0.75);
}

.quote {
  background: var(--red);
  color: white;
  text-align: center;
  padding: 120px 22px;
}

.quote h2 {
  max-width: 1100px;
  margin: auto;
  font-size: clamp(40px, 6vw, 86px);
}

.list {
  display: grid;
  gap: 16px;
}

.list div {
  background: white;
  padding: 26px;
  border-radius: 28px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.06);
}

.list h3 {
  font-size: 25px;
  margin-bottom: 8px;
  letter-spacing: -0.035em;
}

.list p {
  color: #555;
}

.gallery-placeholder {
  margin: 0 22px 110px;
  min-height: 430px;
  border-radius: 42px;
  background:
    linear-gradient(rgba(0,0,0,0.58), rgba(0,0,0,0.72)),
    radial-gradient(circle at 70% 30%, rgba(242,13,24,0.55), transparent 35%),
    #111;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 38px;
}

.gallery-placeholder p {
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 16px;
}

.gallery-placeholder h2 {
  max-width: 850px;
}

.contact {
  padding-top: 0;
}

.contact-box {
  background: var(--dark);
  color: white;
  border-radius: 42px;
  padding: clamp(36px, 7vw, 78px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-box::before {
  content: "";
  position: absolute;
  top: -140px;
  right: -120px;
  width: 380px;
  height: 380px;
  background: rgba(242,13,24,0.48);
  border-radius: 50%;
  filter: blur(90px);
}

.contact-box * {
  position: relative;
}

.contact-box p {
  color: rgba(255,255,255,0.75);
  margin-top: 16px;
}

.contact-links {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-links a {
  background: white;
  color: var(--dark);
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 900;
}

.contact-links a:first-child {
  background: var(--red);
  color: white;
}

.footer {
  background: white;
  text-align: center;
  padding: 46px 22px;
}

.footer h3 {
  font-size: 20px;
  letter-spacing: -0.04em;
}

.footer p {
  color: var(--gray);
  margin-top: 8px;
  font-size: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: 0.75s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .header {
    padding: 12px;
  }

  .nav {
    border-radius: 24px;
  }

  .logo-text {
    font-size: 15px;
  }

  .menu-btn {
    display: block;
    z-index: 1001;
  }

  .nav-links {
    position: absolute;
    top: 74px;
    left: 12px;
    right: 12px;
    background: white;
    border-radius: 24px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: 0.25s;
    box-shadow: 0 24px 70px rgba(0,0,0,0.18);
  }

  .nav-links.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    padding: 14px 4px;
  }

  .nav-cta {
    text-align: center;
    margin-top: 8px;
  }

.hero {
  min-height: 92vh;
  padding-top: 140px;
  flex-direction: column;
}

  .hero h1 {
    font-size: clamp(52px, 15vw, 78px);
  }

  .hero-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 38px;
  }

  .section {
    padding: 78px 18px;
  }

  .two,
  .cards,
  .event-grid,
  .stats {
    grid-template-columns: 1fr;
  }

  .cards {
    gap: 14px;
  }

  .card {
    min-height: auto;
  }

  .card h3 {
    margin-top: 36px;
  }

  .visual-break {
    min-height: 390px;
  }

  .event-box {
    min-height: 330px;
  }

  .quote {
    padding: 86px 18px;
  }

  .gallery-placeholder {
    margin: 0 18px 78px;
    min-height: 350px;
    border-radius: 30px;
  }

  .contact-links {
    flex-direction: column;
  }

  .contact-links a {
    width: 100%;
  }
}

.gallery {
  max-width: 1180px;
  margin: 0 auto 110px;
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr;
  gap: 16px;
  padding: 0 22px;
}

.gallery img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 30px;
}

.gallery img:nth-child(2) {
  margin-top: 70px;
}

@media (max-width: 900px) {
  .gallery {
    grid-template-columns: 1fr;
    margin-bottom: 78px;
  }

  .gallery img {
    height: 330px;
  }

  .gallery img:nth-child(2) {
    margin-top: 0;
  }
}

.gallery-section {
  margin: 100px 0 120px;
}

.gallery-text {
  text-align: center;
  margin-bottom: 40px;
}

.gallery-text p {
  color: #ff3b30;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.gallery-text h2 {
  font-size: 42px;
  font-weight: 700;
}

.gallery {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr;
  gap: 16px;
  padding: 0 22px;
}

.gallery img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 30px;
}

.gallery img:nth-child(2) {
  margin-top: 70px;
}

@media (max-width: 900px) {
  .gallery {
    grid-template-columns: 1fr;
  }

  .gallery img {
    height: 300px;
  }

  .gallery img:nth-child(2) {
    margin-top: 0;
  }
}
.mini-support {
  background: #f8f6f1;
  text-align: center;
  padding: 40px 20px;
}

.mini-support p {
  font-size: 16px;
  opacity: 0.8;
}
.support-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 25px;
}

.support-option {
  background: white;
  border-radius: 28px;
  padding: 32px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.06);
}

.support-option h3 {
  margin: 10px 0 15px;
  font-size: 28px;
}

.support-option .btn {
  margin-top: 18px;
}
@media (max-width: 900px) {
  .hero {
    padding-top: 190px;
    padding-bottom: 50px;
    align-items: stretch;
  }

  .hero-content {
    margin: 0;
  }

  .hero h1 {
    font-size: clamp(48px, 13vw, 68px);
  }

  .hero-text {
    font-size: 17px;
  }

  .hero-card {
    margin-top: 28px;
    padding: 22px;
  }
}