:root {
  --yellow: #f1c40f;
  --yellow-strong: #f39c12;
  --yellow-soft: #fff5b8;
  --ink: #111827;
  --ink-soft: #1f2937;
  --text: #374151;
  --muted: #6b7280;
  --line: #e5e7eb;
  --paper: #ffffff;
  --paper-soft: #f9fafb;
  --success: #16794a;
  --error: #b42318;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --shadow-sm: 0 10px 35px rgba(17, 24, 39, 0.08);
  --shadow-lg: 0 25px 80px rgba(17, 24, 39, 0.16);
  --container: 1240px;
  --header-height: 86px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: var(--paper);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

address {
  font-style: normal;
}

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

::selection {
  color: var(--ink);
  background: var(--yellow);
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 8px;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-height);
  color: var(--paper);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  transition: background 250ms ease, box-shadow 250ms ease, color 250ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 30px rgba(17, 24, 39, 0.08);
  backdrop-filter: blur(14px);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 12px;
}

.brand img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: contain;
  background: var(--paper);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  color: inherit;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.brand-copy strong {
  font-weight: 800;
}

.brand-copy span {
  color: var(--yellow);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  padding-block: 10px;
  font-size: 14px;
  font-weight: 700;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  background: var(--yellow);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 200ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 50%;
  cursor: pointer;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease, color 200ms ease;
}

.button svg {
  width: 18px;
  height: 18px;
  transition: transform 200ms ease;
}

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

.button:hover svg {
  transform: translateX(3px);
}

.button-primary {
  color: var(--ink);
  background: linear-gradient(135deg, var(--yellow), var(--yellow-strong));
  box-shadow: 0 12px 30px rgba(243, 156, 18, 0.25);
}

.button-primary:hover {
  box-shadow: 0 16px 38px rgba(243, 156, 18, 0.36);
}

.button-ghost {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.46);
  backdrop-filter: blur(8px);
}

.button-ghost:hover {
  color: var(--ink);
  background: var(--paper);
}

.button-small {
  min-height: 44px;
  padding: 11px 18px;
  font-size: 12px;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 820px;
  height: max(820px, 94vh);
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}

.hero-slides,
.hero-slide,
.hero-overlay,
.hero-grid {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 900ms ease, transform 7s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

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

.hero-slide:nth-child(2) img {
  object-position: center 35%;
}

.hero-slide:nth-child(3) img {
  object-position: center 35%;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(6, 11, 21, 0.94) 0%, rgba(6, 11, 21, 0.78) 42%, rgba(6, 11, 21, 0.22) 74%, rgba(6, 11, 21, 0.36) 100%),
    linear-gradient(0deg, rgba(6, 11, 21, 0.72) 0%, transparent 46%);
}

.hero-grid {
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 110px 110px;
  mask-image: linear-gradient(90deg, black, transparent 72%);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 830px) 280px;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
  padding-top: var(--header-height);
}

.hero-content {
  padding-block: 74px 94px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: #9a6900;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  background: var(--yellow-strong);
  content: "";
}

.eyebrow-light {
  color: var(--yellow);
}

.eyebrow-light::before {
  display: none;
}

.status-dot {
  position: relative;
  width: 9px;
  height: 9px;
  background: var(--yellow);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(241, 196, 15, 0.13);
}

.status-dot::after {
  position: absolute;
  inset: -5px;
  border: 1px solid var(--yellow);
  border-radius: 50%;
  content: "";
  animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
  0% { opacity: 0.9; transform: scale(0.55); }
  100% { opacity: 0; transform: scale(1.6); }
}

.hero h1 {
  max-width: 880px;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(45px, 5.3vw, 76px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.hero h1 em {
  position: relative;
  color: var(--yellow);
  font-style: normal;
}

.hero h1 em::after {
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 8px;
  background: var(--yellow);
  border-radius: 999px;
  content: "";
  opacity: 0.24;
  transform: rotate(-1.5deg);
}

.hero-lead {
  max-width: 730px;
  margin: 27px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin: 32px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.8);
  list-style: none;
  font-size: 13px;
  font-weight: 600;
}

.hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-trust svg {
  width: 17px;
  height: 17px;
  color: var(--yellow);
}

.hero-note {
  position: relative;
  margin-bottom: 104px;
  padding: 28px;
  background: rgba(17, 24, 39, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  backdrop-filter: blur(18px);
}

.hero-note-index {
  display: block;
  margin-bottom: 22px;
  color: var(--yellow);
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.hero-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  line-height: 1.65;
}

.hero-note a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 800;
}

.hero-note a svg {
  width: 16px;
}

.carousel-controls {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 30px;
  left: 0;
  display: flex;
  align-items: center;
  gap: 16px;
}

.carousel-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.carousel-dot {
  width: 24px;
  height: 4px;
  padding: 0;
  background: rgba(255, 255, 255, 0.4);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: width 200ms ease, background 200ms ease;
}

.carousel-dot.is-active {
  width: 58px;
  background: var(--yellow);
}

.carousel-pause {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  padding: 0;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  cursor: pointer;
}

.carousel-pause svg {
  width: 14px;
}

.intro-strip {
  color: var(--ink);
  background: var(--yellow);
}

.intro-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  min-height: 74px;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.intro-strip-inner p {
  margin: 0;
}

.intro-strip-inner span {
  width: 5px;
  height: 5px;
  background: var(--ink);
  border-radius: 50%;
}

.section {
  position: relative;
  padding-block: 120px;
}

.section-heading,
.life-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.7fr);
  align-items: end;
  gap: 80px;
  margin-bottom: 58px;
}

.section-heading h2,
.life-heading h2,
.contact-heading h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Montserrat", sans-serif;
  font-size: clamp(38px, 4.2vw, 60px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.section-heading h2 span,
.life-heading h2 span,
.contact-heading h2 span {
  color: #b07900;
}

.section-heading > p,
.life-heading > p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.missions {
  overflow: hidden;
  background:
    radial-gradient(circle at 95% 15%, rgba(241, 196, 15, 0.12), transparent 24%),
    var(--paper-soft);
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.mission-card {
  position: relative;
  min-height: 480px;
  padding: 34px 32px;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease;
}

.mission-card::after {
  position: absolute;
  right: -38px;
  bottom: -38px;
  width: 130px;
  height: 130px;
  background: var(--yellow);
  border-radius: 50%;
  content: "";
  opacity: 0.08;
  transition: transform 300ms ease, opacity 300ms ease;
}

.mission-card:hover {
  border-color: rgba(241, 196, 15, 0.72);
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}

.mission-card:hover::after {
  opacity: 0.16;
  transform: scale(1.25);
}

.mission-card-featured {
  color: rgba(255, 255, 255, 0.76);
  background: var(--ink);
  border-color: var(--ink);
}

.mission-number {
  position: absolute;
  top: 27px;
  right: 28px;
  color: #d1d5db;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.mission-card-featured .mission-number {
  color: rgba(255, 255, 255, 0.4);
}

.mission-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 65px;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 18px;
  transform: rotate(-4deg);
}

.mission-icon svg {
  width: 29px;
  height: 29px;
  transform: rotate(4deg);
}

.mission-card h3 {
  max-width: 280px;
  margin: 0;
  color: var(--ink);
  font-family: "Montserrat", sans-serif;
  font-size: 23px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.mission-card-featured h3 {
  color: var(--paper);
}

.mission-card > p {
  margin: 18px 0 25px;
  color: var(--muted);
  font-size: 14px;
}

.mission-card-featured > p {
  color: rgba(255, 255, 255, 0.67);
}

.mission-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
  font-weight: 600;
}

.mission-card li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.mission-card li svg {
  width: 16px;
  height: 16px;
  color: #b07900;
}

.mission-card-featured li svg {
  color: var(--yellow);
}

.mission-cta {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
  padding: 24px 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.mission-cta-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 50%;
}

.mission-cta-icon svg {
  width: 22px;
}

.mission-cta strong,
.mission-cta span {
  display: block;
}

.mission-cta strong {
  color: var(--ink);
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
}

.mission-cta span {
  color: var(--muted);
  font-size: 13px;
}

.mission-cta > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.mission-cta > a svg {
  width: 17px;
}

.events {
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}

.events-pattern {
  position: absolute;
  top: -120px;
  right: -150px;
  width: 520px;
  height: 520px;
  border: 90px solid rgba(241, 196, 15, 0.06);
  border-radius: 50%;
}

.section-heading-dark h2 {
  color: var(--paper);
}

.section-heading-dark h2 span {
  color: var(--yellow);
}

.section-heading-dark > p {
  color: rgba(255, 255, 255, 0.58);
}

.event-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: repeat(2, 300px);
  gap: 20px;
}

.event-card {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  isolation: isolate;
}

.event-card-large {
  grid-row: 1 / 3;
}

.event-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.event-card-large img {
  object-position: center 30%;
}

.event-card:hover img {
  transform: scale(1.07);
}

.event-card-overlay {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 9, 17, 0.92) 0%, rgba(5, 9, 17, 0.06) 68%);
}

.event-card-accent .event-card-overlay {
  background: linear-gradient(0deg, rgba(74, 47, 0, 0.94) 0%, rgba(17, 24, 39, 0.05) 72%);
}

.event-card-content {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 30px;
}

.event-card-content span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--yellow);
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.event-card-content h3 {
  max-width: 590px;
  margin: 0;
  color: var(--paper);
  font-family: "Montserrat", sans-serif;
  font-size: clamp(20px, 2vw, 29px);
  line-height: 1.2;
}

.event-card-content p {
  max-width: 580px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.life {
  padding-bottom: 0;
  background: var(--paper);
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.filter-button {
  padding: 10px 17px;
  color: var(--text);
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.filter-button:hover,
.filter-button.is-active {
  color: var(--ink);
  background: var(--yellow);
  border-color: var(--yellow);
}

.gallery-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-auto-rows: 250px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.gallery-item {
  position: relative;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  background: var(--ink);
  border: 0;
  border-radius: 18px;
  cursor: zoom-in;
  isolation: isolate;
  transition: opacity 220ms ease, transform 220ms ease;
}

.gallery-item.is-hidden {
  display: none;
}

.gallery-item::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 9, 17, 0.9), transparent 60%);
  content: "";
}

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

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

.gallery-item span {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 18px;
  left: 20px;
  color: var(--paper);
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 800;
  text-align: left;
}

.gallery-item small {
  display: block;
  margin-bottom: 3px;
  color: var(--yellow);
  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

.gallery-item-tall {
  grid-row: span 2;
}

.stats-band {
  margin-top: 90px;
  color: var(--paper);
  background: var(--ink);
}

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

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 235px;
  padding: 35px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  color: var(--yellow);
  font-family: "Montserrat", sans-serif;
  font-size: clamp(48px, 6vw, 76px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.06em;
}

.stat > span {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact {
  overflow: hidden;
  background: var(--paper-soft);
}

.contact-shape {
  position: absolute;
  top: 140px;
  left: -180px;
  width: 420px;
  height: 420px;
  background: var(--yellow);
  border-radius: 50%;
  filter: blur(1px);
  opacity: 0.12;
}

.contact-heading {
  max-width: 850px;
  margin-bottom: 56px;
}

.contact-heading > p:last-child {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(350px, 0.83fr) minmax(0, 1.17fr);
  align-items: stretch;
  gap: 24px;
}

.contact-person-card,
.contact-form {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.contact-person-card {
  position: relative;
  padding: 34px;
  overflow: hidden;
  color: var(--paper);
  background:
    radial-gradient(circle at 100% 0%, rgba(241, 196, 15, 0.22), transparent 30%),
    var(--ink);
}

.contact-person-card::after {
  position: absolute;
  right: -60px;
  bottom: -80px;
  width: 230px;
  height: 230px;
  border: 45px solid rgba(241, 196, 15, 0.08);
  border-radius: 50%;
  content: "";
}

.contact-person-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 18px;
}

.contact-person-top img {
  width: 96px;
  height: 96px;
  flex: 0 0 auto;
  object-fit: cover;
  object-position: center 22%;
  border: 4px solid var(--yellow);
  border-radius: 50%;
}

.contact-person-top span {
  color: var(--yellow);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-person-top h3 {
  margin: 3px 0 2px;
  color: var(--paper);
  font-family: "Montserrat", sans-serif;
  font-size: 26px;
  line-height: 1.15;
}

.contact-person-top p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.contact-quote {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 13px;
  margin: 30px 0;
  padding: 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
}

.contact-quote svg {
  width: 21px;
  flex: 0 0 auto;
  color: var(--yellow);
}

.contact-quote p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-style: italic;
}

.contact-details {
  position: relative;
  z-index: 1;
  display: grid;
}

.contact-details > a {
  display: grid;
  grid-template-columns: 42px 1fr 18px;
  align-items: center;
  gap: 13px;
  padding-block: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
  line-height: 1.4;
  transition: color 180ms ease, transform 180ms ease;
}

.contact-details > a:hover {
  color: var(--yellow);
  transform: translateX(3px);
}

.contact-details > a > span:first-child {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 13px;
}

.contact-details > a > span:first-child svg {
  width: 19px;
}

.contact-details > a > span:nth-child(2) {
  min-width: 0;
  overflow-wrap: anywhere;
}

.contact-details small {
  display: block;
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-details > a > svg {
  width: 16px;
  color: var(--yellow);
}

.business-card-toggle {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 26px;
  padding: 0;
  color: var(--yellow);
  background: none;
  border: 0;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.business-card-toggle svg {
  width: 18px;
}

.contact-form {
  padding: 42px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.form-intro {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
}

.form-intro span {
  color: var(--ink);
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 800;
}

.form-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.form-status {
  display: none;
  margin-bottom: 22px;
  padding: 13px 15px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  color: var(--success);
  background: #ecfdf3;
  border: 1px solid #abefc6;
}

.form-status.is-error {
  color: var(--error);
  background: #fef3f2;
  border: 1px solid #fecdca;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 19px;
}

.form-field {
  min-width: 0;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-field label {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.form-field input,
.form-field select {
  min-height: 51px;
}

.form-field textarea {
  min-height: 142px;
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #9ca3af;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  background: var(--paper);
  border-color: var(--yellow-strong);
  box-shadow: 0 0 0 4px rgba(241, 196, 15, 0.15);
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
  cursor: pointer;
}

.consent input {
  width: 17px;
  height: 17px;
  margin: 1px 0 0;
  flex: 0 0 auto;
  accent-color: var(--yellow-strong);
}

.consent a {
  color: #875c00;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-submit {
  width: 100%;
  margin-top: 22px;
  border: 0;
}

.form-submit:disabled {
  cursor: wait;
  filter: grayscale(0.4);
  opacity: 0.75;
}

.form-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 10px;
}

.form-note svg {
  width: 13px;
}

.site-footer {
  color: rgba(255, 255, 255, 0.65);
  background: #090e18;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.7fr) repeat(3, minmax(145px, 0.7fr));
  gap: 55px;
  padding-block: 74px 64px;
}

.brand-footer {
  color: var(--paper);
}

.brand-footer img {
  width: 64px;
  height: 64px;
}

.footer-brand > p {
  max-width: 360px;
  margin: 22px 0 0;
  font-size: 13px;
  line-height: 1.7;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
}

.footer-column h2 {
  margin: 0 0 10px;
  color: var(--paper);
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
}

.footer-column > a {
  transition: color 180ms ease, transform 180ms ease;
}

.footer-column > a:hover {
  color: var(--yellow);
  transform: translateX(2px);
}

.footer-social > div {
  display: flex;
  gap: 8px;
}

.footer-social a,
.footer-social button {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.footer-social a:hover,
.footer-social button:hover {
  color: var(--ink);
  background: var(--yellow);
  border-color: var(--yellow);
}

.footer-social svg {
  width: 17px;
}

.social-letter {
  font-family: Arial, sans-serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  text-transform: lowercase;
}

.share-feedback {
  min-height: 18px;
  margin: 3px 0 0;
  color: var(--yellow);
  font-size: 10px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 10px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom span[aria-label] {
  color: var(--yellow);
}

.lightbox,
.business-card-modal {
  max-width: min(920px, calc(100vw - 40px));
  padding: 0;
  overflow: visible;
  background: transparent;
  border: 0;
}

.lightbox::backdrop,
.business-card-modal::backdrop {
  background: rgba(5, 9, 17, 0.9);
  backdrop-filter: blur(8px);
}

.lightbox img {
  max-height: 82vh;
  margin-inline: auto;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.lightbox p {
  margin: 12px 0 0;
  color: var(--paper);
  font-size: 13px;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  z-index: 2;
  top: -18px;
  right: -18px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  color: var(--ink);
  background: var(--yellow);
  border: 0;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.lightbox-close svg {
  width: 20px;
}

.business-card-modal {
  width: min(640px, calc(100vw - 40px));
  padding: 28px;
  color: var(--ink);
  background: var(--paper);
  border-radius: var(--radius-md);
  text-align: center;
}

.business-card-modal h2 {
  margin: 0 0 18px;
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
}

.business-card-modal img {
  width: 100%;
  border-radius: 14px;
}

.business-card-modal .button {
  margin-top: 20px;
}

[data-reveal] {
  opacity: 1;
  transform: none;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.legal-page {
  background: var(--paper-soft);
}

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

.legal-hero {
  padding-block: 95px 82px;
  color: var(--paper);
  background:
    radial-gradient(circle at 85% 15%, rgba(241, 196, 15, 0.22), transparent 28%),
    var(--ink);
}

.legal-hero h1 {
  margin: 0;
  color: var(--paper);
  font-family: "Montserrat", sans-serif;
  font-size: clamp(44px, 6vw, 78px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.legal-hero h1 span {
  color: var(--yellow);
}

.legal-hero > .container > p:last-child {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 17px;
}

.legal-content {
  padding-block: 85px 110px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  align-items: start;
  gap: 65px;
}

.legal-summary {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.legal-summary strong {
  margin-bottom: 13px;
  color: var(--ink);
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
}

.legal-summary a {
  padding-block: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  transition: color 180ms ease, transform 180ms ease;
}

.legal-summary a:hover {
  color: #875c00;
  transform: translateX(3px);
}

.legal-articles {
  min-width: 0;
}

.legal-articles article {
  position: relative;
  margin-bottom: 20px;
  padding: 35px 38px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  scroll-margin-top: calc(var(--header-height) + 22px);
}

.legal-articles article > span {
  position: absolute;
  top: 34px;
  right: 35px;
  color: #b7bdc7;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.legal-articles h2 {
  margin: 0 0 18px;
  padding-right: 35px;
  color: var(--ink);
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  line-height: 1.2;
}

.legal-articles p {
  margin: 0 0 13px;
  color: var(--text);
  font-size: 14px;
}

.legal-articles p:last-child {
  margin-bottom: 0;
}

.legal-articles ul {
  margin: 16px 0 0;
  padding-left: 20px;
  color: var(--text);
  font-size: 14px;
}

.legal-articles a {
  color: #805700;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-update {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 11px;
  text-align: right;
}

.legal-footer a {
  color: var(--yellow);
  font-weight: 700;
}

@media (max-width: 1080px) {
  :root {
    --header-height: 76px;
  }

  .site-header.is-scrolled {
    background: var(--paper);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .container {
    width: min(calc(100% - 36px), var(--container));
  }

  .js .menu-toggle {
    display: grid;
  }

  .js .nav-panel {
    position: fixed;
    top: var(--header-height);
    right: 0;
    bottom: auto;
    width: min(430px, 100%);
    height: calc(100vh - var(--header-height));
    height: calc(100dvh - var(--header-height));
    flex-direction: column;
    align-items: stretch;
    gap: 28px;
    padding: 34px 34px calc(34px + env(safe-area-inset-bottom));
    overflow-y: auto;
    overscroll-behavior: contain;
    color: var(--ink);
    background-color: var(--paper);
    box-shadow: -30px 30px 70px rgba(17, 24, 39, 0.16);
    transform: translateX(110%);
    transition: transform 280ms ease;
    -webkit-overflow-scrolling: touch;
  }

  .js .nav-panel.is-open {
    transform: translateX(0);
  }

  .js .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .js .nav-links a {
    display: flex;
    padding-block: 15px;
    border-bottom: 1px solid var(--line);
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
  }

  .js .nav-cta {
    align-self: flex-start;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1fr) 240px;
    gap: 30px;
  }

  .hero-content {
    padding-bottom: 104px;
  }

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

  .mission-card:last-child {
    grid-column: 1 / -1;
    min-height: auto;
  }

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

  .contact-layout {
    grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
  }

  .contact-form {
    padding: 34px;
  }

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

  .footer-social {
    grid-column: 2 / 3;
  }

  .legal-layout {
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 32px;
  }
}

@media (max-width: 820px) {
  .section {
    padding-block: 88px;
  }

  .hero {
    min-height: 760px;
    height: auto;
  }

  .hero-layout {
    display: block;
  }

  .hero-content {
    padding-block: 150px 120px;
  }

  .hero h1 {
    max-width: 700px;
  }

  .hero-note {
    display: none;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(6, 11, 21, 0.93), rgba(6, 11, 21, 0.52)),
      linear-gradient(0deg, rgba(6, 11, 21, 0.8), transparent 55%);
  }

  .section-heading,
  .life-heading {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 44px;
  }

  .section-heading > p,
  .life-heading > p {
    max-width: 620px;
  }

  .event-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 440px repeat(2, 290px);
  }

  .event-card-large {
    grid-row: auto;
  }

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

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat {
    min-height: 170px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .stat:last-child {
    border-bottom: 0;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-social {
    grid-column: auto;
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-summary {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .legal-summary strong {
    grid-column: 1 / -1;
  }
}

@media (max-width: 580px) {
  :root {
    --header-height: 70px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .brand img {
    width: 49px;
    height: 49px;
  }

  .brand-copy {
    font-size: 11px;
  }

  .brand-copy span {
    font-size: 10px;
  }

  .hero-content {
    padding-block: 126px 110px;
  }

  .hero h1 {
    font-size: clamp(39px, 12.2vw, 55px);
  }

  .hero-lead {
    margin-top: 22px;
    font-size: 15px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-trust {
    gap: 12px 18px;
  }

  .intro-strip-inner {
    flex-wrap: wrap;
    gap: 4px 13px;
    min-height: 88px;
    padding-block: 16px;
    font-size: 10px;
    text-align: center;
  }

  .section {
    padding-block: 72px;
  }

  .section-heading h2,
  .life-heading h2,
  .contact-heading h2 {
    font-size: clamp(34px, 10vw, 47px);
  }

  .mission-grid {
    grid-template-columns: 1fr;
  }

  .mission-card,
  .mission-card:last-child {
    grid-column: auto;
    min-height: 440px;
    padding: 28px 25px;
  }

  .mission-icon {
    margin-bottom: 48px;
  }

  .mission-cta {
    grid-template-columns: auto 1fr;
  }

  .mission-cta > a {
    grid-column: 1 / -1;
  }

  .event-grid {
    grid-template-rows: 390px repeat(2, 270px);
  }

  .event-card-content {
    padding: 23px;
  }

  .gallery-filters {
    flex-wrap: nowrap;
    margin-right: -14px;
    margin-left: -14px;
    padding-inline: 14px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .gallery-filters::-webkit-scrollbar {
    display: none;
  }

  .filter-button {
    flex: 0 0 auto;
  }

  .gallery-grid {
    grid-auto-rows: 220px;
    grid-template-columns: 1fr;
  }

  .gallery-item-wide {
    grid-column: auto;
  }

  .gallery-item-tall {
    grid-row: span 2;
  }

  .stats-band {
    margin-top: 65px;
  }

  .contact-person-card,
  .contact-form {
    padding: 25px;
    border-radius: 22px;
  }

  .contact-person-top {
    align-items: flex-start;
  }

  .contact-person-top img {
    width: 76px;
    height: 76px;
  }

  .contact-person-top h3 {
    font-size: 21px;
  }

  .contact-details > a {
    grid-template-columns: 40px 1fr;
  }

  .contact-details > a > svg {
    display: none;
  }

  .form-intro {
    display: block;
  }

  .form-intro p {
    margin-top: 4px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-field-full {
    grid-column: auto;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-block: 60px 50px;
  }

  .footer-brand,
  .footer-social {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .lightbox-close {
    top: -12px;
    right: -8px;
  }

  .legal-hero {
    padding-block: 72px 62px;
  }

  .legal-content {
    padding-block: 60px 75px;
  }

  .legal-summary {
    grid-template-columns: 1fr;
  }

  .legal-summary strong {
    grid-column: auto;
  }

  .legal-articles article {
    padding: 28px 24px;
  }

  .legal-articles article > span {
    top: 28px;
    right: 24px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
