* {
  box-sizing: border-box;
}

:root {
  --bg: #030303;
  --bg-soft: #0b0b0b;
  --panel: rgba(255, 255, 255, 0.05);
  --panel-strong: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.12);
  --border-strong: rgba(255, 255, 255, 0.18);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --muted-2: rgba(255, 255, 255, 0.52);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --radius: 26px;
  --radius-sm: 18px;
  --max: 1180px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 10%, rgba(255,255,255,0.10), transparent 24%),
    radial-gradient(circle at 88% 18%, rgba(255,255,255,0.07), transparent 20%),
    radial-gradient(circle at 50% 90%, rgba(255,255,255,0.05), transparent 30%),
    linear-gradient(180deg, #050505 0%, #020202 100%);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

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

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

.noise,
.grid-lines,
.orb {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.noise {
  opacity: 0.035;
  background-image:
    radial-gradient(circle at 25% 25%, #fff 0.6px, transparent 0.7px),
    radial-gradient(circle at 75% 75%, #fff 0.6px, transparent 0.7px);
  background-size: 14px 14px;
  z-index: 0;
}

.grid-lines {
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 75%);
  opacity: 0.4;
  z-index: 0;
}

.orb {
  z-index: 0;
  filter: blur(100px);
}

.orb-1 {
  width: 340px;
  height: 340px;
  background: rgba(255,255,255,0.08);
  top: -80px;
  left: -60px;
  border-radius: 50%;
}

.orb-2 {
  width: 360px;
  height: 360px;
  background: rgba(255,255,255,0.06);
  right: -80px;
  bottom: -120px;
  border-radius: 50%;
}

.container {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: rgba(3, 3, 3, 0.45);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-mini {
  font-weight: 900;
  letter-spacing: 0.16em;
  font-size: 1rem;
}

.nav-link {
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--muted);
  transition: 0.25s ease;
}

.nav-link:hover {
  color: var(--text);
  border-color: var(--border-strong);
  background: rgba(255,255,255,0.04);
}

.hero {
  padding: 72px 0 36px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-copy h1,
.section-heading h2 {
  margin: 0;
  letter-spacing: -0.05em;
}

.hero-copy h1 {
  font-size: clamp(2.8rem, 5.2vw, 5.8rem);
  line-height: 0.95;
  max-width: 720px;
}

.hero-copy h1 span {
  color: rgba(255,255,255,0.92);
  text-shadow: 0 0 22px rgba(255,255,255,0.12);
}

.lead {
  max-width: 670px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.9;
  margin: 22px 0 28px;
}

.hero-actions,
.instagram-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  min-height: 54px;
  padding: 14px 22px;
  border-radius: 15px;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: #ffffff;
  color: #000000;
  box-shadow: 0 15px 35px rgba(255,255,255,0.08);
}

.btn-secondary {
  background: rgba(255,255,255,0.04);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.07);
}

.contact-chip {
  margin-top: 24px;
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  padding: 14px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 16px;
  color: var(--muted);
}

.contact-chip strong {
  color: var(--text);
}

.logo-panel,
.info-card,
.event-card,
.instagram-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.logo-panel {
  border-radius: 32px;
  padding: 22px;
  position: relative;
  overflow: hidden;
}

.logo-panel::before {
  content: "";
  position: absolute;
  inset: -30% auto auto -10%;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  filter: blur(65px);
}

.logo-main {
  width: 100%;
  position: relative;
  z-index: 1;
  border-radius: 22px;
}

.section {
  padding: 44px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 26px;
}

.section-heading h2 {
  font-size: clamp(2rem, 3.3vw, 3.2rem);
  line-height: 1.06;
}

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

.info-card {
  border-radius: 24px;
  padding: 26px;
}

.card-number {
  color: var(--muted-2);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  font-weight: 700;
  margin-bottom: 18px;
}

.info-card h3,
.event-content h3,
.instagram-card h3 {
  margin: 0 0 12px;
  font-size: 1.28rem;
}

.info-card p,
.event-content p,
.instagram-text,
.instagram-note,
.instagram-top p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.events-list {
  display: grid;
  gap: 16px;
}

.event-card {
  border-radius: 24px;
  padding: 20px;
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 18px;
  align-items: center;
}

.event-date {
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  min-height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  line-height: 1;
}

.event-day {
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.event-month {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.instagram-wrap {
  display: grid;
}

.instagram-card {
  border-radius: 28px;
  padding: 26px;
  max-width: 760px;
}

.instagram-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.ig-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.09);
  border: 1px solid var(--border);
  font-weight: 800;
}

.instagram-note {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.site-footer {
  padding: 34px 0 48px;
}

.footer-inner {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--muted);
}

.reveal,
.reveal-delayed,
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(18px);
}

@media (max-width: 980px) {
  .hero-grid,
  .vision-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 40px;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 24px), var(--max));
  }

  .nav {
    min-height: 68px;
  }

  .nav-link {
    padding: 10px 14px;
    font-size: 0.92rem;
  }

  .btn {
    width: 100%;
    min-width: 100%;
  }

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

  .event-date {
    min-height: 84px;
  }

  .logo-panel,
  .info-card,
  .event-card,
  .instagram-card {
    border-radius: 22px;
  }

  .footer-inner {
    flex-direction: column;
  }
}
