:root {
  --accent: #e85a4c;
  --accent-dark: #d14a3d;
  --ink: #16182b;
  --muted: #6f7388;
  --line: #ececf2;
  --paper: #ffffff;
  --soft: #f7f7fa;
  --navy: #12152a;
  --header-h: 88px;
  --radius: 12px;
  --shadow: 0 18px 40px rgba(22, 24, 43, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button, input, select, textarea { font: inherit; }
.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.eyebrow.light { color: rgba(255,255,255,0.7); }
.section { padding: 96px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-head h2,
.home-split h2,
.footer-cta h2,
.page-banner h1,
.hero-copy h1 {
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.section-head h2 { font-size: clamp(28px, 4vw, 42px); margin: 0; }
.muted { color: var(--muted); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 26px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.2s ease;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); }
.btn-outline { background: transparent; color: #fff; border-color: var(--accent); }
.btn-outline:hover { background: var(--accent); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #000; }

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  height: var(--header-h);
}
.site-header.is-sticky {
  position: fixed;
  background: rgba(18, 21, 42, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}
.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  margin-right: auto;
}
.brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  object-fit: cover;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { font-size: 18px; letter-spacing: 0.08em; text-transform: uppercase; }
.brand-text small { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.8; }
.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.site-nav ul { display: flex; gap: 28px; }
.nav-link {
  color: rgba(255,255,255,0.86);
  font-size: 14px;
  font-weight: 600;
}
.nav-link:hover,
.nav-link.is-active { color: #fff; }
.header-cta { color: #fff; }
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  padding: 9px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: #fff;
}

.hero {
  position: relative;
  min-height: 100vh;
  color: #fff;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background: #111 center/cover no-repeat;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.8s ease, transform 6s ease;
}
.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,12,24,0.72) 0%, rgba(10,12,24,0.28) 58%, rgba(10,12,24,0.18) 100%);
}
.hero-copy {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 120px 0 80px;
}
.hero-copy .eyebrow { color: rgba(255,255,255,0.78); }
.hero-copy h1 {
  max-width: 640px;
  margin: 0 0 28px;
  font-size: clamp(42px, 7vw, 78px);
  color: #fff;
}
.hero-nav {
  position: absolute;
  inset: 0 24px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}
.hero-nav button {
  pointer-events: auto;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.08);
  color: #fff;
  cursor: pointer;
}
.scroll-down {
  position: absolute;
  left: max(20px, calc((100% - 1180px) / 2));
  bottom: 28px;
  z-index: 3;
  color: rgba(255,255,255,0.8);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  position: relative;
  min-height: 340px;
  border-radius: var(--radius);
  overflow: hidden;
  color: #fff;
}
.feature-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.5s ease;
}
.feature-card:hover img { transform: scale(1.06); }
.feature-card span {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 28px 22px;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  font-weight: 700;
  font-size: 18px;
  z-index: 1;
}
.center-btn { text-align: center; margin-top: 40px; }

.home-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 48px;
}
.home-split h2 { font-size: clamp(32px, 4vw, 48px); margin: 0 0 12px; }
.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.photo-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
  text-align: center;
}
.stat-icon {
  width: 42px;
  height: 42px;
  margin: 0 auto 12px;
  color: var(--accent);
}
.stats strong { display: block; font-size: 40px; font-weight: 800; }
.stats p { margin: 6px auto 0; max-width: 220px; color: var(--muted); font-size: 14px; }

.media-block {
  position: relative;
  min-height: 420px;
  background: #111 center/cover no-repeat;
}
.play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  border: 0;
  background: #fff;
  color: var(--accent);
  font-size: 22px;
  cursor: pointer;
  box-shadow: var(--shadow);
}
.cta-bar {
  background: var(--accent);
  color: #fff;
  padding: 28px 0;
}
.cta-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cta-bar h2 { margin: 0; font-size: clamp(22px, 3vw, 32px); max-width: 640px; }
.cta-bar .btn { background: #fff; color: var(--accent); }

.event-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 36px;
}
.event-row {
  display: grid;
  grid-template-columns: 70px 92px 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.event-row:hover h3 { color: var(--accent); }
.event-date { text-align: center; }
.event-date strong { display: block; font-size: 32px; line-height: 1; }
.event-date span { color: var(--muted); font-size: 13px; font-weight: 700; }
.event-row img {
  width: 92px;
  height: 72px;
  object-fit: cover;
  border-radius: 8px;
}
.event-row h3 { margin: 0 0 4px; font-size: 18px; }
.badge {
  display: inline-flex;
  min-width: 64px;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}
.filter-row { display: flex; justify-content: flex-end; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}
.blog-card img { width: 100%; height: 220px; object-fit: cover; }
.blog-card h3 { margin: 0 0 8px; font-size: 20px; }
.blog-card p { margin: 0; color: var(--muted); }
.blog-card > div { padding: 22px; }

.site-footer { background: var(--navy); color: #fff; padding-top: 72px; }
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-cta h2 { font-size: clamp(28px, 4vw, 44px); margin: 0 0 24px; }
.footer-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-content: center;
}
.footer-meta h3 { margin: 0 0 8px; font-size: 14px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.55); }
.footer-meta p { margin: 0; color: rgba(255,255,255,0.82); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); }
.footer-bottom-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}
.footer-bottom nav { display: flex; gap: 18px; }

.page-banner {
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  padding: 140px 0 56px;
  color: #fff;
  background: #111 center/cover no-repeat;
  position: relative;
}
.page-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12,14,28,0.35), rgba(12,14,28,0.72));
}
.page-banner .container { position: relative; z-index: 1; }
.page-banner h1 { margin: 0; font-size: clamp(36px, 5vw, 56px); }

.gallery-filters, .event-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.filter-btn, select.filter-select {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 8px 16px;
  cursor: pointer;
  color: var(--ink);
}
.filter-btn.is-active { background: var(--accent); color: #fff; border-color: var(--accent); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  min-height: 260px;
  cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; min-height: 260px; }
.gallery-item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 18px;
  color: #fff;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  font-weight: 700;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
}
.contact-card, .form-card, .admin-card, .event-detail {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.form-grid { display: grid; gap: 14px; }
.form-grid.two { grid-template-columns: 1fr 1fr; }
label { font-size: 13px; font-weight: 700; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  background: var(--soft);
}
textarea { min-height: 140px; resize: vertical; }
.map-embed {
  margin-top: 18px;
  border: 0;
  width: 100%;
  min-height: 220px;
  border-radius: 8px;
}
.alert {
  padding: 12px 14px;
  border-radius: 8px;
  margin-bottom: 16px;
}
.alert-success { background: #e9f8ef; color: #146c3a; }
.alert-error { background: #fdecea; color: #a12622; }

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(8,10,20,0.92);
  display: none;
  place-items: center;
  z-index: 50;
  padding: 24px;
}
.lightbox.is-open { display: grid; }
.lightbox img { max-height: 82vh; max-width: 90vw; border-radius: 8px; }
.lightbox button {
  position: absolute;
  top: 20px;
  right: 20px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
}

.admin-wrap { width: min(1080px, calc(100% - 32px)); margin: 40px auto 80px; }
.admin-bar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 24px;
}
.table { width: 100%; border-collapse: collapse; }
.table th, .table td { text-align: left; padding: 12px; border-bottom: 1px solid var(--line); vertical-align: middle; }
.table img { width: 72px; height: 52px; object-fit: cover; border-radius: 6px; }
.login-wrap { min-height: 100vh; display: grid; place-items: center; background: var(--navy); }
.login-card { width: min(420px, calc(100% - 32px)); }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .site-nav { display: none; }
  .site-nav.is-open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--navy);
    padding: 16px 20px 24px;
  }
  .site-nav.is-open ul { flex-direction: column; gap: 14px; }
  .feature-grid, .photo-grid, .blog-grid, .gallery-grid, .stats,
  .home-split, .event-layout, .contact-grid, .footer-top, .form-grid.two {
    grid-template-columns: 1fr;
  }
  .event-row { grid-template-columns: 60px 1fr auto; }
  .event-row img { display: none; }
  .cta-bar .container, .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
  .hero-nav { display: none; }
}
