:root {
  --bg: #111111;
  --bg-alt: #0a0a0a;
  --surface: #1b1b1b;
  --border: #2a2a2a;
  --text: #b9b8bd;
  --heading: #ffffff;
  --accent: #ee1d24;
  --accent-hover: #fe7259;
  --wrap: 1170px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 16px/1.75 "Open Sans", system-ui, sans-serif;
}
img, video, iframe { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; transition: color .2s; }
a:hover { color: var(--accent-hover); }
h1, h2, h3, h4, h5 {
  font-family: "Oswald", sans-serif;
  color: var(--heading);
  text-transform: uppercase;
  letter-spacing: .02em;
  line-height: 1.2;
  margin: 0 0 .6em;
  font-weight: 500;
}
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 16px; }
.wrap.narrow { max-width: 860px; }
.center { text-align: center; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10, 10, 10, .92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 84px; gap: 24px; }
.logo img { height: 60px; width: auto; }
.main-nav { display: flex; gap: 30px; }
.main-nav a {
  font-family: "Oswald", sans-serif; text-transform: uppercase; letter-spacing: .08em;
  color: #fff; font-size: 15px; padding: 6px 0; border-bottom: 2px solid transparent;
}
.main-nav a:hover, .main-nav a.active { color: var(--accent); border-color: var(--accent); }
.burger { display: none; background: none; border: 0; padding: 8px; cursor: pointer; }
.burger span { display: block; width: 26px; height: 2px; background: #fff; margin: 5px 0; }

@media (max-width: 860px) {
  .burger { display: block; }
  .main-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0; background: #0a0a0a;
    border-bottom: 1px solid var(--border); display: none;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 14px 16px; border-bottom: 1px solid var(--border); }
  .logo img { height: 48px; }
}

/* Hero */
.hero { position: relative; min-height: 78vh; display: flex; align-items: center; overflow: hidden; }
.slide {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.4s ease; transform: scale(1.05);
}
.slide.on { opacity: 1; animation: kenburns 10s linear forwards; }
@keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.1); } }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.85), rgba(0,0,0,.35)); }
.hero-text { position: relative; width: 100%; }
.hero-text h1 { font-size: clamp(34px, 6vw, 68px); max-width: 780px; }
.hero-text p { font-size: 18px; max-width: 560px; color: #ddd; }

.subtitle {
  display: block; font-family: "Oswald", sans-serif; text-transform: uppercase;
  letter-spacing: .2em; color: var(--accent); font-size: 14px; margin-bottom: 8px;
}
.btn {
  display: inline-block; margin-top: 12px; padding: 13px 34px;
  background: var(--accent); color: #fff; font-family: "Oswald", sans-serif;
  text-transform: uppercase; letter-spacing: .1em; border: 2px solid var(--accent); cursor: pointer; font-size: 15px;
}
.btn:hover { background: transparent; color: #fff; }
.btn.ghost { background: transparent; }
.btn.ghost:hover { background: var(--accent); }

/* Sections */
.section { padding: 90px 0; }
.section.alt { background: var(--bg-alt); }
.section-head { text-align: center; margin-bottom: 48px; }
.section-head h2 { font-size: clamp(30px, 4vw, 46px); }
.page-title { padding: 80px 0 60px; text-align: center; background: linear-gradient(#000, var(--bg)); border-bottom: 1px solid var(--border); }
.page-title h1 { font-size: clamp(30px, 5vw, 54px); margin: 0; }

.promo { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; }
.promo-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.promo-imgs img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.promo-text h2 { font-size: clamp(30px, 4vw, 46px); }
@media (max-width: 860px) { .promo { grid-template-columns: 1fr; gap: 36px; } }

.services { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 16px; }
.services li {
  background: var(--surface); border-top: 3px solid var(--accent);
  padding: 34px 20px; text-align: center; color: #fff;
  font-family: "Oswald", sans-serif; text-transform: uppercase; letter-spacing: .1em; font-size: 20px;
}

/* Cards */
.cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 30px; }
.card { background: var(--surface); display: flex; flex-direction: column; }
.card-img { display: block; aspect-ratio: 16/10; overflow: hidden; background: #000; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.card:hover .card-img img { transform: scale(1.06); }
.card-body { padding: 24px; }
.card-body time { font-size: 13px; color: var(--accent); text-transform: uppercase; letter-spacing: .08em; }
.card-body h3 { font-size: 21px; margin: 6px 0 10px; }
.card-body h3 a { color: #fff; }
.card-body h3 a:hover { color: var(--accent); }
.card-body p { margin: 0; font-size: 15px; }

.gal-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.gal-card { position: relative; display: block; aspect-ratio: 4/3; overflow: hidden; background: #000; }
.gal-card img { width: 100%; height: 100%; object-fit: cover; opacity: .7; transition: transform .5s, opacity .3s; }
.gal-card:hover img { transform: scale(1.06); opacity: .5; }
.gal-card span { position: absolute; left: 0; right: 0; bottom: 0; padding: 20px; background: linear-gradient(transparent, rgba(0,0,0,.9)); }
.gal-card strong { display: block; color: #fff; font-family: "Oswald", sans-serif; text-transform: uppercase; font-size: 20px; font-weight: 500; }
.gal-card em { font-style: normal; color: var(--accent); font-size: 14px; }

/* Content */
.content { font-size: 17px; }
.content p { margin: 0 0 1.2em; }
.content figure { margin: 30px 0; }
.content figure img, .lead-img img { margin: 0 auto; height: auto; }
.lead-img { margin: 0 0 36px; }
.content iframe { width: 100%; aspect-ratio: 16/9; height: auto; border: 0; margin: 30px 0; }
.content video { width: 100%; max-height: 80vh; background: #000; }
.content img { height: auto; }
.content .row { display: flex; flex-wrap: wrap; gap: 20px; margin: 20px 0; }
.content .col { flex: 1 1 240px; min-width: 0; }
.content strong { color: #fff; }
.event-meta { font-size: 18px; border-left: 3px solid var(--accent); padding-left: 14px; }
.back { margin-top: 50px; }

.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 8px; margin: 20px 0; }
.g-item { display: block; aspect-ratio: 1; overflow: hidden; background: #000; }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s, opacity .3s; }
.g-item:hover img { transform: scale(1.08); opacity: .8; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 100; background: rgba(0,0,0,.95); display: flex; align-items: center; justify-content: center; }
.lightbox[hidden] { display: none; }
.lightbox img { max-width: 92vw; max-height: 88vh; object-fit: contain; }
.lightbox button { position: absolute; background: none; border: 0; color: #fff; font-size: 48px; cursor: pointer; padding: 10px 18px; line-height: 1; }
.lightbox button:hover { color: var(--accent); }
.lb-close { top: 10px; right: 10px; }
.lb-prev { left: 4px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 4px; top: 50%; transform: translateY(-50%); }

/* Contact */
.contact { display: grid; grid-template-columns: 1.3fr 1fr; gap: 70px; }
.contact-form label { display: block; margin-bottom: 18px; color: #fff; font-size: 14px; text-transform: uppercase; letter-spacing: .06em; }
.contact-form input, .contact-form textarea {
  display: block; width: 100%; margin-top: 6px; padding: 14px; font: inherit;
  background: var(--surface); color: #fff; border: 1px solid var(--border);
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--accent); }
.hint { font-size: 13px; margin-top: 10px; }
.contact-info h5 { font-size: 20px; margin-top: 10px; }
.contact-info p { margin: 0 0 30px; }
@media (max-width: 860px) { .contact { grid-template-columns: 1fr; gap: 40px; } }

/* Footer */
.site-footer { background: #0a0a0a; border-top: 1px solid var(--border); padding-top: 56px; text-align: center; }
.footer-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 30px; align-items: center; }
.footer-grid > div:first-child { text-align: right; }
.footer-grid > div:last-child { text-align: left; }
.footer-grid .label { display: block; font-family: "Oswald", sans-serif; text-transform: uppercase; letter-spacing: .15em; color: var(--text); font-size: 13px; }
.footer-grid a { color: #fff; font-size: 17px; word-break: break-word; }
.footer-logo img { height: 80px; width: auto; margin: 0 auto; }
.socials { margin: 30px 0; display: flex; justify-content: center; gap: 24px; }
.socials a { font-family: "Oswald", sans-serif; text-transform: uppercase; letter-spacing: .1em; font-size: 14px; }
.copyright { background: #000; padding: 18px 16px; font-size: 14px; }
@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:first-child, .footer-grid > div:last-child { text-align: center; }
  .footer-logo { order: -1; }
  .section { padding: 60px 0; }
}
