/* ===== Variables ===== */
:root {
  --black: #0a0a0a;
  --black-soft: #141414;
  --white: #fafafa;
  --red: #d10000;
  --red-dark: #8f0000;
  --gold: #d4af37;
  --gray: #6b6b6b;
  --gray-light: #e4e4e4;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  --radius: 10px;
  --font-display: "Anton", "Arial Narrow", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1.1;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.section {
  padding: 90px 0;
}

.section--dark {
  background: var(--black);
  color: var(--white);
}

.section--dark .eyebrow {
  color: var(--gold);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.section-lead {
  max-width: 640px;
  color: var(--gray);
  font-size: 1.05rem;
  margin-bottom: 48px;
}

.section--dark .section-lead {
  color: #b9b9b9;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  font-family: var(--font-display);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.9rem;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

.btn--primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(209, 0, 0, 0.35);
}

.btn--primary:hover {
  background: var(--red-dark);
}

.btn--outline {
  border-color: var(--white);
  color: var(--white);
}

.btn--outline:hover {
  background: var(--white);
  color: var(--black);
}

.btn--gold {
  background: var(--gold);
  color: var(--black);
}

/* ===== Header / Nav ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  letter-spacing: 2px;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.logo span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--white);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--white);
  background: var(--black);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 20%;
  opacity: 0.55;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.55) 0%, rgba(10, 10, 10, 0.85) 65%, var(--black) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  padding: 140px 24px 80px;
  width: 100%;
}

.hero-number {
  font-family: var(--font-display);
  font-size: clamp(4rem, 14vw, 9rem);
  color: rgba(255, 255, 255, 0.08);
  position: absolute;
  top: 10%;
  right: 5%;
  z-index: 1;
  line-height: 1;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  margin-bottom: 20px;
}

.hero-title .accent {
  color: var(--gold);
}

.hero-subtitle {
  font-size: 1.15rem;
  max-width: 560px;
  color: #d8d8d8;
  margin-bottom: 36px;
}

.hero-cta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

/* Page hero (smaller, for inner pages) */
.page-hero {
  position: relative;
  padding: 190px 0 70px;
  background: var(--black);
  color: var(--white);
  text-align: center;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.4), var(--black) 90%);
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero .eyebrow {
  justify-content: center;
}

.page-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
}

/* ===== Stats strip ===== */
.stats {
  background: var(--red);
  color: var(--white);
  padding: 50px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
}

.stat-label {
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 6px;
}

/* ===== Cards ===== */
.grid {
  display: grid;
  gap: 28px;
}

.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: 1px solid var(--gray-light);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.card-body {
  padding: 28px;
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.card p {
  color: var(--gray);
  font-size: 0.95rem;
}

.card--dark {
  background: var(--black-soft);
  color: var(--white);
  border-color: rgba(212, 175, 55, 0.2);
}

.card--dark p {
  color: #b9b9b9;
}

.card-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 3px;
  margin-bottom: 14px;
}

/* ===== Timeline (about page) ===== */
.timeline {
  position: relative;
  padding-left: 32px;
  border-left: 3px solid var(--gold);
}

.timeline-item {
  position: relative;
  padding-bottom: 42px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -41px;
  top: 4px;
  width: 16px;
  height: 16px;
  background: var(--red);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--gold);
}

.timeline-year {
  font-family: var(--font-display);
  color: var(--red);
  font-size: 1.3rem;
  margin-bottom: 6px;
}

.timeline-item p {
  color: var(--gray);
  max-width: 560px;
}

/* ===== About intro ===== */
.about-intro {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.about-intro img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-intro p {
  color: var(--gray);
  margin-bottom: 16px;
}

/* ===== Gallery ===== */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px;
  background: linear-gradient(0deg, rgba(0,0,0,0.85), transparent);
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.gallery-item--wide {
  grid-column: span 2;
}

/* ===== Events ===== */
.event-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.event-row {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  align-items: center;
  gap: 24px;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 20px 26px;
  box-shadow: var(--shadow);
}

.event-date {
  text-align: center;
  border-right: 2px solid var(--gray-light);
  padding-right: 20px;
}

.event-date .day {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--red);
  display: block;
}

.event-date .month {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray);
}

.event-info h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.event-info p {
  color: var(--gray);
  font-size: 0.9rem;
}

.event-badge {
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 1px;
  padding: 6px 12px;
  border-radius: 4px;
  white-space: nowrap;
}

.notice {
  margin-top: 40px;
  padding: 18px 22px;
  border-left: 4px solid var(--gold);
  background: var(--gray-light);
  color: var(--gray);
  font-size: 0.9rem;
  border-radius: 0 8px 8px 0;
}

/* ===== Contact ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--gray);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--gray-light);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--white);
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
}

.form-note {
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--gray);
  display: none;
}

.form-note.visible {
  display: block;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-info-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-info-item h4 {
  font-size: 1rem;
  margin-bottom: 4px;
  text-transform: none;
}

.contact-info-item p {
  color: var(--gray);
  font-size: 0.9rem;
}

.social-row {
  display: flex;
  gap: 14px;
  margin-top: 30px;
}

.social-row a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.social-row a:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

/* ===== Footer ===== */
.site-footer {
  background: var(--black);
  color: #b9b9b9;
  padding: 60px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-grid h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 18px;
}

.footer-grid ul li {
  margin-bottom: 10px;
}

.footer-grid ul li a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.8rem;
}

.footer-bottom a {
  color: var(--gold);
}

.footer-credit {
  margin-top: 10px;
  font-size: 0.75rem;
  color: #6b6b6b;
}

/* ===== Responsive ===== */
@media (max-width: 860px) {
  .nav-links {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    transform: translateY(-150%);
    transition: transform 0.3s ease;
  }

  .nav-links.open {
    transform: translateY(0);
  }

  .nav-toggle {
    display: flex;
  }

  .stats-grid,
  .grid--3,
  .grid--2,
  .about-intro,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item--wide {
    grid-column: span 2;
  }

  .event-row {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .event-date {
    border-right: none;
    border-bottom: 2px solid var(--gray-light);
    padding-bottom: 10px;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .gallery {
    grid-template-columns: 1fr;
  }

  .gallery-item--wide {
    grid-column: span 1;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
