:root {
  --green: #1a4d2e;
  --green-mid: #246b3e;
  --green-deep: #0c2416;
  --gold: #e6b422;
  --gold-soft: #f0c94a;
  --gold-wash: rgba(230, 180, 34, 0.16);
  --clay: #d95a1a;
  --snow: #f6f3ea;
  --ink: #102016;
  --font-display: "Barlow Condensed", sans-serif;
  --font-body: "Barlow", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 4.5rem;
}

body {
  margin: 0;
  color: var(--snow);
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.55;
  background: var(--green-deep);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 100;
  padding: 0.5rem 0.85rem;
  background: var(--gold);
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  padding: 0.85rem 1.25rem;
  background: rgba(8, 22, 14, 0.92);
  border-bottom: 1px solid rgba(230, 180, 34, 0.28);
  backdrop-filter: blur(10px);
}

.site-nav__brand {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  color: var(--gold);
}

.site-nav__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav__links a {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  color: rgba(246, 243, 234, 0.85);
}

.site-nav__links a:hover,
.site-nav__links a:focus-visible {
  color: var(--gold);
}

.site-nav__links a:focus-visible {
  outline: 2px solid var(--gold-soft);
  outline-offset: 3px;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 3rem 1.25rem 4.5rem;
  background:
    radial-gradient(ellipse 80% 55% at 50% 18%, rgba(230, 180, 34, 0.28), transparent 58%),
    linear-gradient(180deg, var(--green-mid) 0%, var(--green) 42%, var(--green-deep) 100%);
}

.hero__glow {
  position: absolute;
  inset: auto 10% 22% 10%;
  height: 40%;
  background: radial-gradient(ellipse at center, var(--gold-wash), transparent 70%);
  filter: blur(18px);
  pointer-events: none;
  animation: pulse-glow 6s ease-in-out infinite;
}

.hero__mountains {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: min(28vh, 220px);
  background:
    linear-gradient(180deg, transparent, rgba(12, 36, 22, 0.55) 40%, var(--green-deep)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 180' preserveAspectRatio='none'%3E%3Cpath fill='%230a1f14' d='M0 180V95l90-55 110 70 140-90 100 55 130-70 95 48 120-65 115 72 100-40 100 55V180z'/%3E%3Cpath fill='%230c2416' opacity='.85' d='M0 180V120l70-35 95 48 125-62 85 40 110-55 80 35 105-48 95 52 90-30 95 40V180z'/%3E%3C/svg%3E")
      bottom / 100% 100% no-repeat;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(36rem, 100%);
  text-align: center;
}

.hero__logo {
  width: min(18rem, 68vw);
  margin: 0 auto 1.35rem;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.35));
  animation: logo-in 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero__brand {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 9vw, 4rem);
  letter-spacing: 0.04em;
  line-height: 0.95;
  text-transform: uppercase;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.2);
  animation: rise-in 0.9s 0.15s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero__lede {
  margin: 0 auto 1.75rem;
  max-width: 28rem;
  font-size: clamp(1.05rem, 2.8vw, 1.25rem);
  font-weight: 500;
  color: rgba(246, 243, 234, 0.9);
  animation: rise-in 0.9s 0.28s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  animation: rise-in 0.9s 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.7rem 1.35rem;
  border: 2px solid transparent;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease,
    color 0.2s ease;
}

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

.btn:focus-visible {
  outline: 2px solid var(--gold-soft);
  outline-offset: 3px;
}

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

.btn--gold:hover {
  background: var(--gold-soft);
}

.btn--ghost {
  border-color: rgba(246, 243, 234, 0.55);
  color: var(--snow);
  background: transparent;
}

.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.section {
  padding: clamp(3.5rem, 8vw, 5.5rem) 1.25rem;
  max-width: 38rem;
  margin: 0 auto;
}

.section--gold {
  max-width: none;
  margin: 0;
  padding-inline: 1.25rem;
  background:
    linear-gradient(180deg, rgba(230, 180, 34, 0.12), rgba(230, 180, 34, 0.05)),
    linear-gradient(180deg, #163d26, #134022);
  border-block: 1px solid rgba(230, 180, 34, 0.28);
}

.section__inner {
  max-width: 38rem;
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.section h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 6vw, 2.75rem);
  letter-spacing: 0.02em;
  line-height: 1.05;
  text-transform: uppercase;
}

.section__copy {
  margin: 0 0 1rem;
  color: rgba(246, 243, 234, 0.88);
}

.section__copy:last-child {
  margin-bottom: 0;
}

.section__copy--note {
  margin-top: 1.25rem;
  font-size: 1rem;
  color: rgba(246, 243, 234, 0.65);
}

.subhead {
  margin: 2rem 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
}

.section-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  margin: 1.75rem 0 0.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(230, 180, 34, 0.25);
}

.section-nav a {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  color: var(--gold);
}

.section-nav a:hover {
  color: var(--gold-soft);
}

.shoot-block {
  margin-top: 2.75rem;
  padding-top: 0.25rem;
}

.shoot-block__title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.75rem, 5vw, 2.25rem);
  letter-spacing: 0.02em;
  line-height: 1.05;
  text-transform: uppercase;
}

.plain-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.plain-list li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.15rem;
  border-bottom: 1px solid rgba(246, 243, 234, 0.1);
  color: rgba(246, 243, 234, 0.88);
}

.plain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.05rem;
  width: 0.4rem;
  height: 0.4rem;
  background: var(--gold);
}

.price-list {
  margin: 0;
}

.price-list > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.35rem 1.25rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(230, 180, 34, 0.22);
}

.price-list dt {
  margin: 0;
  font-weight: 600;
  color: rgba(246, 243, 234, 0.92);
}

.price-list dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--gold-soft);
}

.text-link {
  color: var(--gold);
  font-weight: 600;
  text-underline-offset: 0.2em;
}

.text-link:hover {
  color: var(--gold-soft);
}

.event-list {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.event-list__item {
  display: grid;
  gap: 0.35rem 1.25rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid rgba(230, 180, 34, 0.22);
}

.event-list__item:first-child {
  padding-top: 0;
}

.event-list__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.event-list__when {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
}

.event-list__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.15;
  text-transform: uppercase;
}

.event-list__meta,
.event-list__notes {
  margin: 0;
  font-size: 1rem;
  color: rgba(246, 243, 234, 0.8);
}

.event-list__notes {
  color: rgba(246, 243, 234, 0.65);
}

.event-list__about {
  margin: 0.15rem 0 0;
  font-size: 0.95rem;
}

.event-list__more {
  margin: 1.25rem 0 0;
  font-size: 0.95rem;
  color: rgba(246, 243, 234, 0.6);
}

.event-list__empty {
  margin: 0;
  color: rgba(246, 243, 234, 0.7);
}

.event-list__empty code {
  font-size: 0.9em;
  color: var(--gold-soft);
}

@media (min-width: 560px) {
  .event-list__item {
    grid-template-columns: 11.5rem 1fr;
    align-items: start;
  }

  .event-list__when {
    grid-row: 1 / -1;
    padding-top: 0.2rem;
  }
}

.footer {
  padding: 2.75rem 1.25rem 3.25rem;
  text-align: center;
  background: #08160e;
  color: rgba(246, 243, 234, 0.7);
  font-size: 0.95rem;
}

.footer__mark {
  width: 4.5rem;
  margin: 0 auto 1rem;
  opacity: 0.95;
}

.footer p {
  margin: 0;
}

.footer__address {
  margin-top: 0.65rem;
  line-height: 1.45;
}

@keyframes logo-in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.94);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse-glow {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.06);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero__logo,
  .hero__brand,
  .hero__lede,
  .hero__actions,
  .hero__glow {
    animation: none;
  }

  .btn:hover {
    transform: none;
  }
}
