@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

:root {
  --bg: #060814;
  --bg-elevated: #0d1021;
  --accent: #2fb57f;
  --accent-soft: rgba(47, 181, 127, 0.1);
  --accent-strong: rgba(47, 181, 127, 0.35);
  --text: #f7f9ff;
  --muted: #9fa4c2;
  --border-subtle: rgba(255, 255, 255, 0.07);
  --danger: #ff4d6a;
  --radius-lg: 18px;
  --radius-sm: 999px;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.45);
  --transition-fast: 0.18s ease-out;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: radial-gradient(circle at top left, #141b33, #050714 48%, #02030a 100%);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.shell {
  max-width: 1100px;
  margin: 0 auto;
  padding: 22px 20px 40px;
}

/* NAVIGATION */

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: linear-gradient(135deg, rgba(16, 22, 48, 0.88), rgba(5, 8, 24, 0.94));
  box-shadow: var(--shadow-soft);
  position: sticky;
  top: 16px;
  z-index: 50;
  backdrop-filter: blur(18px);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  object-fit: cover;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 1px rgba(2, 3, 8, 0.55), 0 14px 34px rgba(0, 0, 0, 0.45);
  background: rgba(255, 255, 255, 0.02);
}

.nav-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.nav-title {
  font-weight: 650;
  font-size: 17px;
}

.nav-subtitle {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}

.nav-link {
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--muted);
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast), transform 0.1s ease-out;
}

.nav-link-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
  opacity: 0;
  transform: scale(0.4);
  transition: inherit;
}

.nav-link:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.nav-link.active {
  color: #020308;
  background: var(--accent);
  border-color: var(--accent-strong);
  box-shadow: 0 12px 30px rgba(0, 208, 133, 0.32);
}

.nav-link.active .nav-link-dot {
  opacity: 1;
  transform: scale(1);
  background: #020308;
}

.nav-cta {
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: radial-gradient(circle at 0 0, rgba(57, 255, 210, 0.14), rgba(0, 0, 0, 0.9));
  color: var(--text);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: background var(--transition-fast), transform 0.1s ease-out, box-shadow var(--transition-fast);
}

.nav-cta span.badge {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  background: rgba(2, 3, 8, 0.9);
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.7);
  background: radial-gradient(circle at 0 0, rgba(57, 255, 210, 0.16), rgba(0, 0, 0, 0.96));
}

.nav-cta svg {
  width: 14px;
  height: 14px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  padding: 4px;
  cursor: pointer;
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
}

/* HERO / HEADER */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.4fr);
  gap: 26px;
  margin-top: 32px;
}

.hero-main {
  padding: 26px 26px 26px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: radial-gradient(circle at top left, rgba(57, 255, 210, 0.18), rgba(8, 10, 32, 0.98));
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 9px 4px 4px;
  border-radius: 999px;
  background: rgba(2, 3, 8, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 11px;
  color: var(--muted);
}

.hero-kicker-pill {
  background: var(--accent);
  color: #020308;
  border-radius: 999px;
  padding: 2px 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.hero-title {
  margin-top: 18px;
  font-size: clamp(30px, 4vw, 38px);
  font-weight: 750;
  letter-spacing: 0.02em;
}

.hero-title span {
  background: linear-gradient(120deg, #8adcc3, #2fb57f, #b8e7d8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  max-width: 460px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.btn-primary,
.btn-ghost {
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast), box-shadow var(--transition-fast), transform 0.1s ease-out, border-color var(--transition-fast);
}

.btn-primary {
  background: var(--accent);
  color: #020308;
  border-color: var(--accent-strong);
  box-shadow: 0 14px 35px rgba(0, 208, 133, 0.35);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(0, 208, 133, 0.42);
}

.btn-ghost {
  background: rgba(3, 5, 16, 0.6);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.14);
}

.btn-ghost:hover {
  background: rgba(6, 10, 26, 0.96);
}

.hero-meta {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  font-size: 12px;
  color: var(--muted);
}

.hero-meta span strong {
  color: var(--text);
}

.hero-badge {
  position: absolute;
  right: 22px;
  bottom: 20px;
  padding: 8px 12px;
  border-radius: 14px;
  background: rgba(2, 3, 8, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 11px;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-badge strong {
  color: var(--accent);
  font-size: 13px;
}

.hero-aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-card {
  border-radius: var(--radius-lg);
  padding: 16px 16px 16px 16px;
  border: 1px solid var(--border-subtle);
  background: linear-gradient(145deg, rgba(9, 12, 30, 0.98), rgba(5, 6, 18, 0.98));
  box-shadow: var(--shadow-soft);
}

.hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.hero-card-title {
  font-size: 14px;
  font-weight: 600;
}

.hero-chip {
  font-size: 11px;
  color: var(--muted);
  padding: 3px 9px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
}

.hero-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-list-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
}

.hero-tagline {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}

/* GENERIC LAYOUT / SECTIONS */

.main {
  margin-top: 26px;
  flex: 1;
}

.home-hero {
  margin-top: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: radial-gradient(circle at top left, rgba(57, 255, 210, 0.12), rgba(8, 10, 32, 0.98));
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 16px;
}

.home-hero-content {
  padding: 22px 22px 20px;
}

.home-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 5px 10px 5px 5px;
  border-radius: 999px;
  background: rgba(2, 3, 8, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 11px;
  color: var(--muted);
}

.home-hero-pill {
  background: var(--accent);
  color: #020308;
  border-radius: 999px;
  padding: 2px 9px;
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.home-hero-muted {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 10px;
}

.home-hero-title {
  margin: 14px 0 8px;
  font-size: clamp(26px, 3.4vw, 34px);
  font-weight: 760;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.home-hero-title span {
  background: linear-gradient(120deg, #8adcc3, #2fb57f, #b8e7d8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.home-hero-text {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  max-width: 54ch;
  line-height: 1.55;
}

.home-hero-media {
  position: relative;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 14px 14px 0;
}

.home-hero-media::before {
  content: '';
  position: absolute;
  inset: -40px -40px -40px -40px;
  background: radial-gradient(circle at 20% 0, rgba(138, 220, 195, 0.12), transparent 60%),
    radial-gradient(circle at 80% 30%, rgba(47, 181, 127, 0.1), transparent 55%);
  pointer-events: none;
}

.home-hero-media img {
  width: min(520px, 100%);
  height: auto;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.55);
  background: rgba(255, 255, 255, 0.02);
}

.home-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr) minmax(0, 0.9fr);
  gap: 16px;
  margin-top: 16px;
  align-items: start;
}

.home-span-2 {
  grid-column: span 2;
}

.home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.ig-placeholder {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(4, 6, 20, 0.92);
  padding: 10px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.ig-link {
  display: block;
  border-radius: 14px;
  outline: none;
}

.ig-link:focus-visible .ig-placeholder {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(0, 208, 133, 0.6);
}

.ig-tile {
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  background: radial-gradient(circle at 20% 0, rgba(138, 220, 195, 0.18), rgba(0, 0, 0, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.45);
}

.event.event-compact {
  padding-block: 9px;
  grid-template-columns: auto 1fr;
  align-items: flex-start;
}

.event.event-compact .event-note {
  display: none;
}

.event.event-compact .event-tag {
  justify-self: flex-start;
  margin-top: 4px;
}

.card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: linear-gradient(145deg, rgba(9, 12, 30, 0.98), rgba(5, 6, 18, 0.98));
  padding: 22px 22px 20px;
  box-shadow: var(--shadow-soft);
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.card-title {
  font-size: 18px;
  font-weight: 650;
}

.card-subtitle {
  font-size: 13px;
  color: var(--muted);
}

.pill {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  padding: 3px 9px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(4, 7, 20, 0.9);
}

.grid {
  display: grid;
  gap: 16px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.muted {
  color: var(--muted);
  font-size: 14px;
}

/* TEAM */

.team-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 14px;
  margin-top: 8px;
}

.team-member {
  border-radius: 14px;
  padding: 12px 12px 11px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: radial-gradient(circle at top left, rgba(57, 255, 210, 0.08), rgba(4, 6, 20, 0.96));
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
}

.team-avatar {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: radial-gradient(circle at 0 0, #39ffd2, #00d085);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #020308;
  font-weight: 700;
}

.team-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  object-fit: cover;
  display: block;
}

.team-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.team-name {
  font-size: 14px;
  font-weight: 600;
}

.team-role {
  font-size: 12px;
  color: var(--muted);
}

.team-note {
  font-size: 12px;
  color: var(--muted);
}

/* EVENTS */

.events-list {
  display: grid;
  gap: 10px;
  margin-top: 6px;
}

.event {
  border-radius: 12px;
  padding: 10px 12px 11px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: radial-gradient(circle at 0 0, var(--accent-soft), rgba(5, 6, 18, 0.98));
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
}

.event-date {
  text-align: center;
  min-width: 62px;
}

.event-date-month {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.event-date-day {
  font-size: 20px;
  font-weight: 700;
}

.event-countdown {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  padding: 2px 9px;
  border-radius: 999px;
  background: var(--accent);
  color: #020308;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  box-shadow: 0 0 20px rgba(47, 181, 127, 0.6);
}

.event-main {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.event-title {
  font-size: 14px;
  font-weight: 600;
}

.event-meta {
  font-size: 12px;
  color: var(--muted);
}

.event-tag {
  font-size: 11px;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(2, 3, 8, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.event-note {
  font-size: 11px;
  color: var(--muted);
  margin-top: 3px;
}

/* ABOUT */

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1.3fr);
  gap: 18px;
  margin-top: 6px;
}

.about-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.about-facts {
  display: grid;
  gap: 10px;
  font-size: 13px;
}

.about-fact {
  border-radius: 12px;
  padding: 10px 12px;
  background: rgba(4, 6, 20, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.about-fact span.label {
  color: var(--muted);
}

.about-fact span.value {
  font-weight: 600;
}

/* CONTACT */

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr);
  gap: 18px;
  margin-top: 8px;
}

.contact-form {
  display: grid;
  gap: 10px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.field label {
  font-size: 13px;
}

.field small {
  font-size: 11px;
  color: var(--muted);
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="date"],
textarea {
  border-radius: 11px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(4, 6, 20, 0.96);
  color: var(--text);
  padding: 8px 10px;
  font-family: inherit;
  font-size: 13px;
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

input::placeholder,
textarea::placeholder {
  color: #62698b;
}

textarea {
  resize: vertical;
  min-height: 90px;
}

input:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(0, 208, 133, 0.6);
  background: rgba(7, 10, 28, 0.98);
}

.contact-info {
  border-radius: 14px;
  padding: 12px 12px 11px;
  background: radial-gradient(circle at 0 0, rgba(0, 208, 133, 0.16), rgba(4, 6, 20, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  gap: 10px;
  font-size: 13px;
}

.contact-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-label {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.contact-value a {
  color: var(--accent);
}

.contact-note {
  font-size: 11px;
  color: var(--muted);
}

/* ADMIN */

.admin-login {
  display: grid;
  gap: 10px;
  max-width: 420px;
  margin-top: 8px;
  margin-inline: auto;
}

.admin-hint {
  font-size: 11px;
}

.admin-error {
  font-size: 12px;
  color: var(--danger);
  min-height: 1.2em;
}

.admin-panel {
  margin-top: 18px;
  display: grid;
  gap: 16px;
}

.admin-tabs {
  display: inline-flex;
  gap: 6px;
  padding: 3px;
  border-radius: 999px;
  background: rgba(4, 6, 20, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.admin-tab {
  border-radius: 999px;
  border: none;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  padding: 5px 12px;
  cursor: pointer;
}

.admin-tab-active {
  background: var(--accent);
  color: #020308;
}

.admin-section {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(4, 6, 20, 0.96);
  padding: 14px 14px 12px;
  display: grid;
  gap: 12px;
}

.admin-section-title {
  margin: 0 0 2px;
  font-size: 15px;
}

.admin-form {
  display: grid;
  gap: 10px;
}

.admin-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.admin-list {
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 10px;
  background: rgba(5, 7, 20, 0.98);
  display: grid;
  gap: 6px;
}

.admin-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  font-size: 13px;
}

.admin-item-actions {
  display: flex;
  gap: 6px;
  align-items: center;
}

.admin-edit {
  font-size: 11px;
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: rgba(47, 181, 127, 0.4);
}

.admin-note {
  color: var(--muted);
  font-size: 12px;
}

.admin-tag {
  font-size: 11px;
  color: var(--muted);
}

.admin-delete {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.02);
  color: var(--muted);
  font-size: 11px;
  padding: 4px 9px;
  cursor: pointer;
}

.admin-pill-ok {
  border-color: var(--accent-strong);
  color: #020308;
  background: var(--accent);
}

/* FOOTER */

.footer {
  margin-top: 26px;
  padding: 14px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 11px;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.footer a {
  color: var(--muted);
  text-decoration: underline;
  text-decoration-color: rgba(159, 164, 194, 0.4);
}

.footer span.dot {
  margin: 0 4px;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-aside {
    order: -1;
  }

  .about-grid,
  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .home-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .home-span-2 {
    grid-column: auto;
  }

  .home-hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .home-hero-media {
    padding: 0 14px 18px;
  }
}

@media (max-width: 720px) {
  .shell {
    padding-inline: 16px;
  }

  .nav {
    padding-inline: 14px;
  }

  .nav-links {
    position: absolute;
    inset: 100% 0 auto;
    margin-top: 8px;
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid var(--border-subtle);
    background: rgba(5, 7, 20, 0.98);
    flex-direction: column;
    align-items: flex-start;
    box-shadow: var(--shadow-soft);
    transform-origin: top;
    transform: scaleY(0.9);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-fast), transform var(--transition-fast);
  }

  .nav-links.open {
    opacity: 1;
    transform: scaleY(1);
    pointer-events: auto;
  }

  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero-main {
    padding: 20px 18px 20px 18px;
  }

  .hero-badge {
    position: static;
    margin-top: 16px;
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: minmax(0, 1fr);
  }

  .event {
    grid-template-columns: minmax(0, 1fr);
    justify-items: flex-start;
  }

  .event-date {
    display: flex;
    align-items: baseline;
    gap: 8px;
  }

  .ig-placeholder {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

