:root {
  --ink: #17211b;
  --muted: #647067;
  --paper: #faf8f1;
  --surface: #ffffff;
  --trail: #2f5b42;
  --sun: #f0b441;
  --clay: #a8522d;
  --deep: #111713;
  --line: rgba(23, 33, 27, 0.14);
  --shadow: 0 24px 70px rgba(17, 23, 19, 0.18);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(250, 248, 241, 0) 360px),
    var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, sans-serif;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 128px;
  height: 54px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 2vw, 28px);
  font-size: 0.92rem;
  font-weight: 700;
}

.main-nav a,
.text-link {
  color: var(--muted);
}

.main-nav a:hover,
.text-link:hover {
  color: var(--trail);
}

.header-action,
.btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 6px;
  border: 1px solid transparent;
  padding: 12px 18px;
  font-weight: 800;
}

.header-action,
.btn.primary {
  background: linear-gradient(180deg, #ffd268, var(--sun));
  color: #1f1604;
  box-shadow: 0 10px 24px rgba(240, 180, 65, 0.24);
}

.btn.secondary {
  border-color: rgba(255, 255, 255, 0.52);
  color: #fff;
}

.btn.dark {
  background: var(--deep);
  color: #fff;
}

.btn:disabled {
  cursor: wait;
  opacity: 0.7;
}

.form-trap {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
}

.form-feedback {
  min-height: 22px;
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
}

.form-feedback.success {
  color: #24643a;
}

.form-feedback.success {
  display: grid;
  justify-items: center;
  gap: 12px;
}

.receipt-success-card {
  display: grid;
  gap: 4px;
  justify-items: center;
  width: min(100%, 390px);
  border: 1px solid rgba(47, 91, 66, 0.24);
  border-radius: 18px;
  padding: 13px 16px;
  background:
    radial-gradient(circle at 20% 0%, rgba(248, 211, 95, 0.34), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(235, 246, 237, 0.96));
  color: #1d4f32;
  box-shadow: 0 14px 34px rgba(47, 91, 66, 0.16);
}

.receipt-success-card strong {
  color: #173a25;
  font-size: clamp(0.98rem, 2vw, 1.12rem);
  letter-spacing: -0.01em;
}

.receipt-success-card span {
  color: #2f5b42;
  font-size: 0.9rem;
}

.form-feedback.error {
  color: #9b352c;
}

.btn svg,
.quick-links svg,
.quick-links .social-logo,
.menu-toggle svg {
  width: 18px;
  height: 18px;
}

.menu-toggle {
  display: none;
  min-width: 44px;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: 84vh;
  display: grid;
  align-items: end;
  padding: clamp(96px, 12vw, 150px) clamp(20px, 5vw, 72px) clamp(30px, 6vw, 64px);
  overflow: hidden;
  color: #fff;
}

.hero-slideshow,
.hero-slide,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero::before {
  display: none;
}

.hero-slideshow {
  overflow: hidden;
}

.hero-slide {
  --slide-pan: 0%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% center;
  opacity: 0;
  transform: scale(1.08);
  animation: heroCrossfade 75s linear infinite;
  will-change: opacity, transform;
}

.hero-slide:nth-child(1) {
  object-position: 100% center;
  --slide-pan: 6.5%;
}

.hero-slide:nth-child(2) {
  animation-delay: 15s;
}

.hero-slide:nth-child(3) {
  animation-delay: 30s;
}

.hero-slide:nth-child(4) {
  animation-delay: 45s;
}

.hero-slide:nth-child(5) {
  animation-delay: 60s;
}

@keyframes heroCrossfade {
  0% {
    opacity: 1;
    transform: scale(1.08) translateX(var(--slide-pan));
  }

  14% {
    opacity: 1;
    transform: scale(1.045) translateX(var(--slide-pan));
  }

  20%,
  94% {
    opacity: 0;
    transform: scale(1.08) translateX(var(--slide-pan));
  }

  100% {
    opacity: 1;
    transform: scale(1.08) translateX(var(--slide-pan));
  }
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(12, 18, 13, 0.9), rgba(12, 18, 13, 0.56), rgba(12, 18, 13, 0.22)),
    linear-gradient(0deg, rgba(12, 18, 13, 0.84), rgba(12, 18, 13, 0.02) 46%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--sun);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Archivo, Inter, sans-serif;
  line-height: 0.98;
}

h1 {
  max-width: 780px;
  font-size: clamp(3.2rem, 10vw, 7.8rem);
}

h2 {
  font-size: clamp(2.1rem, 5vw, 4.3rem);
}

h3 {
  font-size: 1.15rem;
  line-height: 1.12;
}

.hero-content p:not(.eyebrow) {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.65;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-panel {
  position: absolute;
  z-index: 2;
  right: clamp(20px, 5vw, 72px);
  bottom: clamp(28px, 6vw, 64px);
  width: min(330px, calc(100% - 40px));
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(17, 23, 19, 0.56);
  backdrop-filter: blur(14px);
}

.hero-panel p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

.status-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 8px;
  border-radius: 50%;
  background: #50d889;
}

.quick-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
}

.quick-links a {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-right: 1px solid var(--line);
  background: var(--surface);
  font-weight: 800;
  transition: background 180ms ease, color 180ms ease;
}

.quick-links a:hover {
  background: #eef2e9;
}

.section {
  padding: clamp(58px, 9vw, 116px) clamp(20px, 5vw, 72px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
}

.reverse {
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1fr);
}

.reverse .section-copy {
  order: 2;
}

.section-copy p:not(.eyebrow),
.form-intro p,
.contact p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.72;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 32px;
}

.stat-grid div {
  min-height: 116px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.stat-grid strong {
  display: block;
  color: var(--clay);
  font-family: Archivo, Inter, sans-serif;
  font-size: 2rem;
}

.stat-grid span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.35;
}

.feature-media img,
.director-grid img,
.photo-card img {
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.feature-media img {
  width: 100%;
  aspect-ratio: 1.48 / 1;
  object-fit: contain;
  object-position: center;
  background: transparent;
  filter: drop-shadow(0 28px 36px rgba(0, 0, 0, 0.2));
}

.event-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: center;
  background: var(--trail);
  color: #fff;
}

.event-card {
  padding: clamp(22px, 4vw, 38px);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
}

.event-card span {
  color: var(--clay);
  font-weight: 900;
  text-transform: uppercase;
}

.event-card p {
  color: var(--muted);
}

.event-card a {
  color: var(--trail);
  font-weight: 900;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.section-heading > p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.gallery-grid,
.video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.photo-card,
.video-grid article {
  min-width: 0;
  border-radius: 8px;
  background: var(--surface);
  overflow: hidden;
  border: 1px solid var(--line);
}

.photo-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}

.photo-card h3,
.photo-card p,
.video-grid h3 {
  padding: 0 16px;
}

.photo-card h3,
.video-grid h3 {
  margin-top: 16px;
}

.photo-card p {
  margin-bottom: 18px;
  color: var(--muted);
}

.videos {
  background: #ece7da;
}

.video-grid {
  grid-template-columns: repeat(3, 1fr);
}

.video-grid h3 {
  margin-bottom: 18px;
}

.director-grid {
  display: grid;
  gap: 16px;
}

.director-grid img {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
}

.board-section {
  background: #f3f0e6;
}

.board-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.board-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(23, 33, 27, 0.12);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 18px 44px rgba(17, 23, 19, 0.1);
}

.board-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9);
}

.board-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 12, 10, 0.86), rgba(8, 12, 10, 0.08) 56%);
}

.board-card div {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 1;
  color: #fff;
}

.board-card span {
  display: inline-flex;
  margin-bottom: 10px;
  border-radius: 999px;
  background: var(--sun);
  color: #1f1604;
  padding: 7px 10px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.board-card h3 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.registration-section {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(24px, 6vw, 70px);
  align-items: start;
  background:
    linear-gradient(90deg, rgba(47, 91, 66, 0.1), rgba(240, 180, 65, 0.08)),
    var(--paper);
}

.event-form {
  border-top: 5px solid var(--sun);
}

.form-section,
.contact {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: clamp(24px, 6vw, 70px);
  align-items: start;
}

.form-intro img {
  width: 180px;
  margin-top: 24px;
  border-radius: 8px;
}

.smart-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 14px 50px rgba(17, 23, 19, 0.08);
}

.smart-form.compact {
  box-shadow: none;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
  background: #fff;
}

textarea {
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

.contact {
  background: var(--deep);
  color: #fff;
}

.contact p {
  color: rgba(255, 255, 255, 0.74);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 72px);
  background: #070907;
  color: rgba(255, 255, 255, 0.74);
}

.site-footer img {
  width: 120px;
  height: 64px;
  object-fit: contain;
}

.site-footer a {
  color: var(--sun);
  font-weight: 900;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
  text-align: right;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .main-nav {
    position: fixed;
    inset: 83px 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: flex;
  }

  .header-action {
    justify-self: end;
  }

  .hero-panel {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 32px;
  }

  .quick-links,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split,
  .reverse,
  .event-band,
  .registration-section,
  .form-section,
  .contact {
    grid-template-columns: 1fr;
  }

  .reverse .section-copy {
    order: 0;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }

  .board-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .site-header {
    gap: 12px;
    padding-inline: 14px;
  }

  .brand img {
    width: 96px;
  }

  .header-action {
    padding-inline: 12px;
    font-size: 0.86rem;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-actions,
  .contact-actions,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .footer-links {
    align-items: flex-end;
    flex-direction: column;
    gap: 12px;
  }

  .quick-links,
  .gallery-grid,
  .board-grid,
  .stat-grid,
  .smart-form {
    grid-template-columns: 1fr;
  }

  .board-card {
    min-height: 360px;
  }

  .section-heading {
    display: block;
  }
}

:root {
  --cream: #f6f1e4;
  --cream-2: #ebe2d0;
  --forest: #183425;
  --forest-2: #0d1b14;
  --gold: #f3bd45;
  --gold-2: #d7952e;
  --white-soft: rgba(255, 255, 255, 0.92);
}

body {
  background:
    radial-gradient(circle at 10% 8%, rgba(243, 189, 69, 0.16), transparent 24rem),
    radial-gradient(circle at 88% 20%, rgba(47, 91, 66, 0.12), transparent 28rem),
    linear-gradient(180deg, #fbfaf4 0, var(--cream) 42rem, #f9f7ef 100%);
}

.site-header {
  grid-template-columns: auto 1fr auto;
  padding: 12px clamp(18px, 4vw, 58px);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 52px rgba(13, 27, 20, 0.08);
}

.brand img {
  width: 116px;
  filter: drop-shadow(0 8px 14px rgba(13, 27, 20, 0.12));
}

.main-nav {
  justify-self: center;
  padding: 8px;
  border: 1px solid rgba(23, 33, 27, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.main-nav a {
  border-radius: 999px;
  padding: 9px 12px;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.main-nav a:hover {
  background: rgba(47, 91, 66, 0.1);
  transform: translateY(-1px);
}

.header-action,
.btn {
  min-height: 48px;
  border-radius: 999px;
  padding-inline: 20px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-action:hover,
.btn:hover {
  transform: translateY(-2px);
}

.header-action,
.btn.primary {
  background: linear-gradient(135deg, #ffe28b 0%, var(--gold) 44%, var(--gold-2) 100%);
  box-shadow: 0 16px 36px rgba(215, 149, 46, 0.26);
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(10px);
}

.hero {
  min-height: calc(100vh - 78px);
  align-items: center;
  padding-top: clamp(70px, 9vw, 120px);
  padding-bottom: clamp(96px, 12vw, 150px);
}

.hero::after {
  content: "";
  position: absolute;
  left: clamp(20px, 5vw, 72px);
  right: clamp(20px, 5vw, 72px);
  bottom: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.54), transparent);
}

.hero-slide {
  filter: saturate(1.06) contrast(1.04);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 16, 11, 0.94) 0%, rgba(8, 16, 11, 0.76) 32%, rgba(8, 16, 11, 0.28) 62%, rgba(8, 16, 11, 0.08) 100%),
    linear-gradient(0deg, rgba(8, 16, 11, 0.78) 0%, rgba(8, 16, 11, 0.12) 58%, rgba(8, 16, 11, 0.24) 100%);
}

.hero-content {
  max-width: 860px;
}

.hero-content h1 {
  text-wrap: balance;
  text-shadow: 0 18px 58px rgba(0, 0, 0, 0.36);
}

.hero-content p:not(.eyebrow) {
  max-width: 700px;
}

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-metrics span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 8px 13px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
}

.hero-metrics strong {
  color: var(--gold);
  font-family: Archivo, Inter, sans-serif;
  font-size: 1.08rem;
}

.hero-panel {
  width: min(380px, calc(100% - 40px));
  padding: 22px;
  border-color: rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(8, 16, 11, 0.62);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.quick-links {
  position: relative;
  z-index: 5;
  width: min(1180px, calc(100% - 40px));
  margin: -48px auto 0;
  border: 1px solid rgba(23, 33, 27, 0.1);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(13, 27, 20, 0.16);
}

.quick-links a {
  min-height: 104px;
  background: rgba(255, 255, 255, 0.92);
}

.quick-links .social-logo {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.quick-links .youtube-logo {
  width: 36px;
}

.quick-links a:hover {
  background: var(--forest);
  color: #fff;
}

.section {
  position: relative;
  padding-top: clamp(76px, 9vw, 128px);
  padding-bottom: clamp(76px, 9vw, 128px);
}

.split,
.registration-section,
.form-section,
.contact,
.event-band {
  padding-inline: clamp(24px, 6vw, 88px);
}

.section-copy {
  max-width: 680px;
}

.section-copy h2,
.section-heading h2,
.event-band h2,
.contact h2 {
  text-wrap: balance;
}

.feature-note {
  margin-top: 22px;
  padding-left: 18px;
  border-left: 4px solid var(--gold);
}

.stat-grid {
  gap: 14px;
}

.stat-grid div {
  min-height: 132px;
  border: 0;
  background: linear-gradient(180deg, #fff, #f4efe4);
  box-shadow: 0 18px 42px rgba(13, 27, 20, 0.08);
}

.feature-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  background: #f7efe0;
}

.feature-media::before {
  display: none;
}

.feature-media img {
  border: 8px solid #111713;
  border-radius: 18px;
  box-shadow: 0 34px 90px rgba(13, 27, 20, 0.2);
  padding: 44px;
}

.event-band {
  background:
    linear-gradient(90deg, rgba(13, 27, 20, 0.94), rgba(24, 52, 37, 0.84)),
    url("assets/gallery/66.jpg") center / cover;
}

.event-card {
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.event-card h3 {
  margin-top: 12px;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.section-heading {
  align-items: center;
  margin-bottom: 34px;
}

.text-link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border: 1px solid rgba(47, 91, 66, 0.16);
  border-radius: 999px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.62);
  font-weight: 800;
}

.gallery-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 20px;
}

.photo-card,
.video-grid article {
  border: 0;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 22px 54px rgba(13, 27, 20, 0.1);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.photo-card:hover,
.video-grid article:hover,
.board-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 70px rgba(13, 27, 20, 0.16);
}

.photo-card img {
  aspect-ratio: 4 / 3.15;
}

.featured-photo {
  grid-column: span 1;
  grid-row: span 1;
}

.featured-photo img {
  aspect-ratio: 4 / 3.15;
}

.gallery-actions {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.load-more-photos {
  min-height: 48px;
  border: 1px solid rgba(47, 91, 66, 0.18);
  border-radius: 999px;
  padding: 12px 22px;
  background: #fff;
  color: var(--forest);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  box-shadow: 0 16px 36px rgba(13, 27, 20, 0.08);
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.load-more-photos:hover {
  background: var(--forest);
  color: #fff;
  transform: translateY(-2px);
}

.photo-card h3,
.photo-card p,
.video-grid h3 {
  padding-inline: 20px;
}

.photo-card p {
  padding-bottom: 4px;
}

.videos {
  background:
    linear-gradient(180deg, rgba(13, 27, 20, 0.04), rgba(13, 27, 20, 0)),
    #eee7d8;
}

.video-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.video-card a {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 18px 18px 0 0;
  background: var(--forest);
}

.video-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 220ms ease, filter 220ms ease;
}

.video-card span {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffe28b, var(--gold));
  color: #1f1604;
  transform: translate(-50%, -50%);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.26);
}

.video-card span svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.video-card:hover img {
  filter: brightness(0.82);
  transform: scale(1.04);
}

.board-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0)),
    var(--cream);
}

.board-grid {
  gap: 22px;
}

.board-card {
  min-height: 470px;
  border: 0;
  border-radius: 20px;
  box-shadow: 0 26px 68px rgba(13, 27, 20, 0.14);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.board-card::after {
  background:
    linear-gradient(0deg, rgba(5, 10, 7, 0.9) 0%, rgba(5, 10, 7, 0.48) 38%, rgba(5, 10, 7, 0.02) 70%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 28%);
}

.board-card span {
  background: linear-gradient(135deg, #ffe28b, var(--gold));
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
}

.registration-section {
  background:
    linear-gradient(135deg, rgba(13, 27, 20, 0.96), rgba(24, 52, 37, 0.92)),
    url("assets/gallery/65.jpg") center / cover;
  color: #fff;
}

.registration-section .section-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
}

.registration-logo {
  display: flex;
  justify-content: center;
  position: relative;
  margin: clamp(18px, 4vw, 30px) auto 0;
  width: min(100%, 390px);
  padding-top: clamp(12px, 2vw, 18px);
}

.registration-logo::before {
  content: "";
  position: absolute;
  top: 0;
  left: 14%;
  right: 14%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(243, 189, 69, 0.75), transparent);
}

.registration-logo img {
  display: block;
  width: min(100%, 350px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.28));
}

.check-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.check-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
}

.check-list svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
}

.smart-form {
  border: 0;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 34px 90px rgba(13, 27, 20, 0.18);
}

.event-form {
  gap: 12px;
  padding: clamp(18px, 2.5vw, 24px);
  border-top: 0;
  border-radius: 16px;
}

.event-form label {
  align-self: start;
  gap: 6px;
  font-size: 0.82rem;
}

.event-form input,
.event-form select,
.event-form textarea {
  border-radius: 10px;
  padding: 10px 12px;
}

.event-form input,
.event-form select {
  min-height: 44px;
}

.registration-vehicle-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 0.72fr;
  gap: 12px;
  align-items: start;
}

.shirt-section {
  display: grid;
  gap: 13px;
  min-width: 0;
  border: 1px solid rgba(23, 33, 27, 0.11);
  border-radius: 14px;
  padding: clamp(15px, 2vw, 19px);
  background: linear-gradient(145deg, #fffdf8, #f4f0e4);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.shirt-section-heading {
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(23, 33, 27, 0.1);
}

.shirt-section-heading h3 {
  margin: 0;
  color: var(--deep);
  font-size: 1.05rem;
}

.shirt-section-heading p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.included-shirts-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
}

.extra-shirts-choice {
  max-width: 430px;
  padding-top: 2px;
}

.extra-shirts {
  min-width: 0;
  margin: 0;
  border: 1px solid rgba(215, 149, 46, 0.28);
  border-radius: 12px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.82);
}

.extra-shirts legend {
  padding: 0 7px;
  color: var(--ink);
  font-weight: 900;
}

.extra-shirts > p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.84rem;
}

.form-hint {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 600;
  line-height: 1.45;
}

#extra-shirts-list {
  display: grid;
  gap: 9px;
  max-height: 190px;
  overflow-y: auto;
  padding-right: 5px;
  scrollbar-color: rgba(47, 91, 66, 0.45) transparent;
  scrollbar-width: thin;
}

#extra-shirts-list::-webkit-scrollbar { width: 6px; }
#extra-shirts-list::-webkit-scrollbar-track { background: transparent; }
#extra-shirts-list::-webkit-scrollbar-thumb { border-radius: 99px; background: rgba(47, 91, 66, 0.4); }

.extra-shirt-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: end;
  gap: 10px;
}

.extra-shirt-price {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 10px;
  padding: 8px 13px;
  border: 1px solid rgba(23, 33, 27, 0.1);
  background: #f4f2eb;
  color: #5f675f;
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
}

.remove-extra-shirt,
.add-extra-shirt {
  min-height: 46px;
  border: 1px solid rgba(23, 33, 27, 0.16);
  border-radius: 10px;
  padding: 9px 14px;
  font-family: inherit;
  font-size: 0.86rem;
  font-weight: 900;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.remove-extra-shirt {
  background: #fff;
  color: #8b392f;
}

.add-extra-shirt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  margin-top: 11px;
  border: 0;
  padding-inline: 20px;
  background: linear-gradient(135deg, var(--deep), #315e45);
  color: #fff;
  box-shadow: 0 10px 24px rgba(13, 47, 31, 0.22);
}

.event-form > .btn.primary {
  min-height: 46px;
  border-radius: 10px;
  font-size: 0.86rem;
  box-shadow: 0 10px 24px rgba(215, 149, 46, 0.24);
}

.add-extra-shirt::before {
  content: "+";
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  font-size: 1.15rem;
  line-height: 1;
}

.add-extra-shirt:hover,
.remove-extra-shirt:hover {
  transform: translateY(-1px);
}

.add-extra-shirt:hover {
  box-shadow: 0 14px 28px rgba(13, 47, 31, 0.28);
}

.add-extra-shirt:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

input,
textarea,
select {
  border-color: rgba(23, 33, 27, 0.12);
  border-radius: 12px;
  background: #fbfaf6;
  transition: border 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: rgba(215, 149, 46, 0.75);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(243, 189, 69, 0.18);
}

@media (max-width: 560px) {
  .registration-vehicle-grid { grid-template-columns: 1fr; }
  .included-shirts-grid { grid-template-columns: 1fr; }
  .extra-shirts-choice { max-width: none; }
  .extra-shirt-row { grid-template-columns: 1fr auto; }
  .extra-shirt-row label { grid-column: 1 / -1; }
  .add-extra-shirt { width: 100%; }
  #extra-shirts-list { max-height: 250px; }
}

.form-section {
  background: linear-gradient(180deg, #fbfaf4, #f2ecd9);
}

.form-intro img {
  width: 220px;
  border: 8px solid #fff;
  border-radius: 18px;
  box-shadow: 0 18px 48px rgba(13, 27, 20, 0.12);
}

.contact {
  background:
    linear-gradient(135deg, rgba(7, 9, 7, 0.96), rgba(24, 52, 37, 0.94)),
    url("assets/gallery/68.jpg") center / cover;
}

.contact .smart-form {
  background: rgba(255, 255, 255, 0.92);
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #060806;
}

@media (max-width: 980px) {
  .main-nav {
    border-radius: 18px;
  }

  .quick-links {
    margin-top: -28px;
  }

  .featured-photo {
    grid-column: span 2;
  }

  .board-card {
    min-height: 430px;
  }
}

@media (max-width: 620px) {
  .site-header {
    grid-template-columns: auto auto auto;
  }

  .main-nav {
    inset: 74px 14px auto;
  }

  .hero {
    min-height: calc(100vh - 70px);
    padding-bottom: 92px;
  }

  .hero-metrics {
    display: grid;
  }

  .quick-links {
    width: calc(100% - 28px);
    margin-top: -34px;
  }

  .featured-photo {
    grid-column: span 1;
  }

  .board-card {
    min-height: 390px;
  }
}

.site-header .header-action {
  justify-self: end;
  min-width: 128px;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid rgba(17, 23, 19, 0.08);
  border-radius: 16px;
  line-height: 1;
  white-space: nowrap;
  box-shadow:
    0 14px 30px rgba(215, 149, 46, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.48);
}

.site-header .header-action:hover {
  box-shadow:
    0 18px 38px rgba(215, 149, 46, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.54);
}

@media (max-width: 620px) {
  .site-header .header-action {
    min-width: 112px;
    min-height: 44px;
    padding-inline: 14px;
    border-radius: 14px;
    font-size: 0.86rem;
  }
}

.site-header > .header-action {
  position: relative !important;
  overflow: hidden !important;
  isolation: isolate !important;
  min-width: 132px !important;
  width: auto !important;
  height: 48px !important;
  min-height: 48px !important;
  padding: 0 22px !important;
  border: 0 !important;
  border-radius: 14px !important;
  background: #f0b441 !important;
  color: #1f1604 !important;
  white-space: nowrap !important;
  line-height: 1 !important;
  box-shadow:
    0 0 0 1px rgba(17, 23, 19, 0.12),
    0 16px 34px rgba(215, 149, 46, 0.34) !important;
}

.site-header > .header-action span {
  position: relative;
  z-index: 3;
}

.site-header > .header-action::before {
  content: "";
  position: absolute;
  inset: -38px;
  z-index: 0;
  border-radius: inherit;
  background: conic-gradient(
    from 0deg,
    rgba(255, 255, 255, 0) 0deg,
    rgba(255, 255, 255, 0) 42deg,
    #fff7b8 58deg,
    #ffffff 72deg,
    #ffef6a 88deg,
    #f0b441 104deg,
    rgba(255, 255, 255, 0) 126deg,
    rgba(255, 255, 255, 0) 360deg
  );
  animation: inscriptionLed 1.7s linear infinite;
  filter: drop-shadow(0 0 8px rgba(255, 231, 106, 0.95));
}

.site-header > .header-action::after {
  content: "";
  position: absolute;
  inset: 4px;
  z-index: 1;
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(255, 244, 190, 0.42), rgba(255, 255, 255, 0) 38%),
    linear-gradient(135deg, #ffe28b 0%, var(--gold) 48%, var(--gold-2) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.58),
    inset 0 -1px 0 rgba(107, 71, 12, 0.18);
}

@keyframes inscriptionLed {
  to {
    transform: rotate(1turn);
  }
}

@media (max-width: 620px) {
  .site-header > .header-action {
    min-width: 112px !important;
    height: 44px !important;
    min-height: 44px !important;
    padding-inline: 14px !important;
    border-radius: 12px !important;
  }
}

@media (max-width: 620px) {
  body {
    overflow-x: hidden;
  }

  .site-header {
    grid-template-columns: auto auto auto !important;
    gap: 10px !important;
    padding: 10px 12px !important;
  }

  .brand img {
    width: 82px !important;
    height: 44px !important;
  }

  .menu-toggle {
    min-width: 42px;
    min-height: 42px;
  }

  .main-nav {
    z-index: 40 !important;
  }

  .main-nav.open {
    display: flex !important;
    gap: 10px !important;
    padding: 14px !important;
    border: 1px solid rgba(23, 33, 27, 0.22) !important;
    border-radius: 18px !important;
    background: #fffaf0 !important;
    box-shadow: 0 22px 60px rgba(17, 23, 19, 0.28) !important;
  }

  .main-nav.open a {
    display: flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(47, 91, 66, 0.16);
    border-radius: 12px;
    background: #ffffff;
    color: var(--ink);
    font-size: 1rem;
    font-weight: 900;
    box-shadow: 0 8px 20px rgba(13, 27, 20, 0.08);
  }

  .hero {
    min-height: 82vh;
    padding: 82px 18px 86px !important;
  }

  .hero-content {
    max-width: 100%;
  }

  h1 {
    font-size: clamp(2.9rem, 17vw, 4.6rem);
  }

  h2 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .hero-content p:not(.eyebrow) {
    font-size: 1rem;
    line-height: 1.55;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
    max-width: 290px;
  }

  .hero-actions .btn,
  .contact-actions .btn {
    width: 100%;
  }

  .quick-links {
    width: calc(100% - 24px);
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .quick-links a {
    min-height: 78px;
    padding: 12px 8px;
    font-size: 0.92rem;
  }

  .section,
  .split,
  .registration-section,
  .form-section,
  .contact,
  .event-band,
  .board-section,
  .videos {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  #galeria {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  #galeria .section-heading {
    padding-inline: 6px;
  }

  .section {
    padding-top: 58px !important;
    padding-bottom: 58px !important;
  }

  .section-heading {
    display: block !important;
    margin-bottom: 22px !important;
  }

  .section-heading .text-link {
    margin-top: 16px;
  }

  #galeria .gallery-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 22px !important;
    width: 100%;
  }

  #galeria .photo-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    width: 100%;
    border-radius: 18px !important;
    overflow: hidden;
  }

  #galeria .photo-card img {
    display: block !important;
    flex: 0 0 auto !important;
    width: 100%;
    max-width: none !important;
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: auto !important;
    object-fit: contain !important;
    object-position: center center;
    background: #f4efe4;
  }

  #galeria .photo-card h3 {
    flex: 0 0 auto !important;
    margin-top: 18px !important;
    padding-inline: 18px !important;
    font-size: 1.18rem;
    line-height: 1.2;
  }

  #galeria .photo-card p {
    flex: 0 0 auto !important;
    padding-inline: 18px !important;
    padding-bottom: 8px !important;
    font-size: 1rem;
  }

  .load-more-photos {
    width: 100%;
  }

  .video-grid,
  .board-grid,
  .smart-form,
  .stat-grid {
    grid-template-columns: 1fr !important;
  }

  .feature-media img {
    padding: 22px;
  }
}
