.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  backdrop-filter: blur(6px);
  background: rgba(26, 33, 21, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-logo {
  width: auto;
  height: 64px;
}

.navbar .nav-link {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 500;
  transition: var(--transition-base);
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
  color: var(--color-accent);
}

main {
  padding-top: var(--header-height);
}

.hero-section {
  height: calc(100vh - var(--header-height));
  min-height: 510px;
}

.hero-swiper,
.hero-swiper .swiper-wrapper,
.hero-swiper .swiper-slide {
  height: 100%;
}

.hero-swiper .swiper-slide {
  position: relative;
  overflow: hidden;
}

.hero-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(23, 31, 19, 0.78), rgba(12, 20, 12, 0.45));
}

.hero-quote {
  position: absolute;
  inset: auto 0 10%;
  z-index: 2;
  color: var(--color-white);
  text-align: center;
}

.hero-quote h1,
.hero-quote h2 {
  max-width: 940px;
  margin: 0 auto var(--space-3);
  font-size: clamp(1.9rem, 5vw, 3.8rem);
  text-shadow: 0 5px 25px rgba(0, 0, 0, 0.55);
}

.hero-quote p {
  font-size: clamp(1rem, 2.6vw, 1.25rem);
  opacity: 0.95;
  margin: 0;
}

.section-image {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  object-fit: cover;
}

.schedule-section {
  position: relative;
  overflow: hidden;
}

.schedule-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.42);
}

.site-footer {
  background: linear-gradient(120deg, #1e2818 0%, #3a4c2a 70%, #566f3a 100%);
  color: var(--color-white);
}

.site-footer hr {
  border-color: rgba(255, 255, 255, 0.2);
}
