:root {
  --mml-navy-950: #041326;
  --mml-navy-900: #071c3a;
  --mml-navy-800: #0b2a55;
  --mml-blue-700: #0b4ea2;
  --mml-blue-600: #1769d1;
  --mml-gold-500: #c9a227;
  --mml-gold-400: #d8b84f;
  --mml-ivory: #f8f5ec;
  --mml-paper: #fffdf7;
  --mml-charcoal: #1b1f2a;
  --mml-muted: #6c7384;
  --mml-line: rgba(201, 162, 39, 0.28);
  --mml-glass: rgba(7, 28, 58, 0.78);
  --mml-radius: 8px;
  --mml-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
  --font-display: Georgia, "Times New Roman", serif;
  --font-body: "Segoe UI", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--mml-charcoal);
  background: var(--mml-paper);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

img,
svg,
video,
canvas {
  display: block;
  max-width: 100%;
}

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

a {
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--mml-gold-400);
  outline-offset: 3px;
}

body.has-lightbox {
  overflow: hidden;
}

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

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 200;
  transform: translateY(-150%);
  background: var(--mml-gold-400);
  color: var(--mml-navy-950);
  padding: 0.75rem 1rem;
  border-radius: var(--mml-radius);
  font-weight: 800;
  text-decoration: none;
}

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

.container {
  width: min(100% - 2rem, 72rem);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(4, 19, 38, 0.92);
  color: white;
  border-bottom: 1px solid rgba(216, 184, 79, 0.26);
  backdrop-filter: blur(18px);
  transition: background 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(4, 19, 38, 0.98);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.site-header__inner {
  width: min(100% - 1rem, 78rem);
  min-height: 4.75rem;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  position: relative;
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}

.brand__seal {
  width: 2.75rem;
  height: 2.75rem;
  object-fit: contain;
  flex: 0 0 auto;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.32));
}

.brand__text {
  min-width: 0;
  display: grid;
  line-height: 1.15;
}

.brand__full {
  display: none;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
}

.brand__short {
  display: block;
  font-family: var(--font-display);
  font-size: 1.16rem;
  font-weight: 700;
}

.brand__place {
  display: block;
  margin-top: 0.12rem;
  color: rgba(248, 245, 236, 0.72);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-toggle {
  width: 2.75rem;
  height: 2.75rem;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(216, 184, 79, 0.42);
  border-radius: var(--mml-radius);
  background: rgba(255, 255, 255, 0.06);
  color: white;
  cursor: pointer;
}

.menu-toggle__bar {
  width: 1.15rem;
  height: 2px;
  display: block;
  background: currentColor;
  border-radius: 999px;
}

.site-nav {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  right: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transform: translateY(-0.5rem);
  transition: opacity 180ms ease, transform 180ms ease, max-height 220ms ease;
  background: var(--mml-paper);
  color: var(--mml-navy-950);
  border: 1px solid rgba(201, 162, 39, 0.34);
  border-radius: var(--mml-radius);
  box-shadow: var(--mml-shadow);
  padding: 0;
}

.site-nav.is-open {
  max-height: 38rem;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  padding: 0.75rem;
}

.site-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.1rem;
}

.site-nav__link,
.site-nav__cta {
  min-height: 2.75rem;
  display: flex;
  align-items: center;
  border-radius: var(--mml-radius);
  padding: 0.72rem 0.9rem;
  text-decoration: none;
  font-weight: 800;
}

.site-nav__link:hover,
.site-nav__link.is-active {
  background: rgba(201, 162, 39, 0.14);
  color: var(--mml-navy-900);
}

.site-nav__cta {
  justify-content: center;
  margin-top: 0.5rem;
  background: linear-gradient(135deg, var(--mml-gold-400), var(--mml-gold-500));
  color: var(--mml-navy-950);
  box-shadow: 0 12px 28px rgba(201, 162, 39, 0.28);
}

.hero,
.page-hero {
  position: relative;
  isolation: isolate;
  min-height: 42rem;
  display: grid;
  align-items: end;
  color: white;
  background: var(--mml-navy-950);
}

.page-hero {
  min-height: 28rem;
}

.hero__media,
.page-hero__media,
.hero__overlay,
.page-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__image,
.page-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay,
.page-hero__overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(4, 19, 38, 0.96), rgba(4, 19, 38, 0.74) 48%, rgba(4, 19, 38, 0.38)),
    linear-gradient(0deg, rgba(4, 19, 38, 0.92), rgba(4, 19, 38, 0.12) 46%, rgba(4, 19, 38, 0.2));
}

.hero__content,
.page-hero__content {
  width: min(100% - 2rem, 72rem);
  margin-inline: auto;
  padding: 8rem 0 4rem;
}

.hero__content {
  max-width: 52rem;
  margin-inline: max(1rem, calc((100% - 72rem) / 2)) auto;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--mml-gold-400);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  color: inherit;
  font-family: var(--font-display);
  line-height: 1.08;
}

h1 {
  margin: 0;
  font-size: 2.65rem;
}

h2 {
  margin: 0;
  font-size: 2rem;
}

h3 {
  margin: 0;
  font-size: 1.25rem;
}

.hero__lead {
  margin: 1rem 0 0;
  color: var(--mml-gold-400);
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1.25;
}

.hero__body,
.page-hero__content p,
.section-lead,
.section-heading p {
  max-width: 42rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
}

.section-lead,
.section-heading p {
  color: var(--mml-muted);
}

.hero__actions,
.inline-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.button {
  min-height: 2.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--mml-radius);
  padding: 0.78rem 1.05rem;
  text-decoration: none;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button--gold {
  background: linear-gradient(135deg, var(--mml-gold-400), var(--mml-gold-500));
  color: var(--mml-navy-950);
  box-shadow: 0 16px 34px rgba(201, 162, 39, 0.3);
}

.button--navy {
  background: var(--mml-navy-900);
  color: white;
}

.button--ghost {
  border-color: rgba(248, 245, 236, 0.52);
  background: rgba(248, 245, 236, 0.08);
  color: white;
}

.button--ghost-dark {
  border-color: rgba(7, 28, 58, 0.22);
  background: transparent;
  color: var(--mml-navy-900);
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 1rem;
  color: var(--mml-blue-700);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: rgba(201, 162, 39, 0.58);
  text-underline-offset: 0.28rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  padding: 0.28rem 0.62rem;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.badge--gold {
  background: rgba(216, 184, 79, 0.18);
  color: var(--mml-gold-400);
  border: 1px solid rgba(216, 184, 79, 0.42);
}

.badge--outline,
.badge--outline-dark {
  background: transparent;
  border: 1px solid currentColor;
  color: rgba(248, 245, 236, 0.84);
}

.badge--outline-dark {
  color: var(--mml-navy-800);
}

.trust-chips {
  list-style: none;
  margin: 1.6rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.trust-chips li {
  border: 1px solid rgba(216, 184, 79, 0.32);
  border-radius: 999px;
  padding: 0.36rem 0.72rem;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(248, 245, 236, 0.86);
  font-size: 0.82rem;
  font-weight: 800;
}

.tournament-sign {
  width: min(100%, 42rem);
  min-height: 6.15rem;
  margin-top: 1.45rem;
  padding: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(216, 184, 79, 0.78);
  border-radius: var(--mml-radius);
  background:
    linear-gradient(135deg, rgba(4, 19, 38, 0.96), rgba(11, 42, 85, 0.94) 55%, rgba(11, 78, 162, 0.72)),
    var(--mml-navy-900);
  color: white;
  text-decoration: none;
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(248, 245, 236, 0.08),
    0 0 28px rgba(216, 184, 79, 0.24);
  animation: mmlTournamentPulse 3.8s ease-in-out infinite;
  transform-origin: center;
}

.tournament-sign::after {
  content: "";
  width: 9rem;
  height: 2px;
  position: absolute;
  right: -1.6rem;
  bottom: 1.15rem;
  background: linear-gradient(90deg, rgba(216, 184, 79, 0), rgba(216, 184, 79, 0.78));
  transform: rotate(-6deg);
}

.tournament-sign__logo-wrap {
  width: 4.45rem;
  height: 4.45rem;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(216, 184, 79, 0.72);
  border-radius: var(--mml-radius);
  background: rgba(255, 253, 247, 0.94);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.28);
}

.tournament-sign__logo {
  width: 3.85rem;
  height: 3.85rem;
  object-fit: contain;
}

.tournament-sign__content {
  min-width: 0;
  display: grid;
  gap: 0.1rem;
}

.tournament-sign:hover,
.tournament-sign:focus-visible {
  border-color: var(--mml-gold-400);
  box-shadow:
    0 22px 50px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(248, 245, 236, 0.14),
    0 0 36px rgba(216, 184, 79, 0.34);
}

.tournament-sign__eyebrow,
.tournament-sign__hint {
  position: relative;
  z-index: 1;
  color: rgba(248, 245, 236, 0.8);
  font-size: 0.82rem;
  font-weight: 900;
}

.tournament-sign__eyebrow {
  color: var(--mml-gold-400);
  text-transform: uppercase;
}

.tournament-sign__title {
  position: relative;
  z-index: 1;
  color: white;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1.08;
}

.tournament-sign__hint {
  color: rgba(248, 245, 236, 0.88);
}

.tournament-sign__cta {
  position: relative;
  z-index: 1;
  width: fit-content;
  margin-top: 0.22rem;
  color: var(--mml-gold-400);
  font-size: 0.82rem;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 0.22rem;
}

@keyframes mmlTournamentPulse {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-8px) scale(1.025);
  }
}

.section {
  padding: 4.5rem 0;
}

.section--paper {
  background: var(--mml-paper);
}

.section--ivory {
  background:
    linear-gradient(180deg, rgba(201, 162, 39, 0.08), rgba(201, 162, 39, 0)),
    var(--mml-ivory);
}

.section--navy {
  color: white;
  background:
    linear-gradient(135deg, var(--mml-navy-950), var(--mml-navy-800));
}

.section--officers {
  color: white;
  background:
    linear-gradient(180deg, rgba(4, 19, 38, 0.96), rgba(7, 28, 58, 0.94)),
    linear-gradient(135deg, var(--mml-navy-950), var(--mml-blue-700));
}

.section--cta {
  color: white;
  background:
    linear-gradient(135deg, rgba(4, 19, 38, 0.96), rgba(11, 78, 162, 0.92)),
    var(--mml-navy-900);
}

.section-heading {
  margin-bottom: 2rem;
}

.section-heading--light p {
  color: rgba(248, 245, 236, 0.78);
}

.split {
  display: grid;
  gap: 2rem;
}

.identity-grid,
.value-grid,
.officer-preview,
.officer-grid,
.three-lights-grid,
.past-preview,
.resource-grid,
.activity-grid {
  display: grid;
  gap: 1rem;
}

.identity-grid,
.value-grid,
.officer-preview,
.officer-grid,
.resource-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
}

.activity-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
}

.card,
.note-panel,
.directory-panel,
.officer-card,
.three-light-card,
.officer-group-figure,
.portrait-card,
.activity-card,
.resource-card,
.contact-card,
.contact-aside,
.notice,
.timeline-card {
  border-radius: var(--mml-radius);
  border: 1px solid rgba(7, 28, 58, 0.1);
  background: rgba(255, 253, 247, 0.92);
  box-shadow: 0 16px 44px rgba(27, 31, 42, 0.08);
}

.card,
.note-panel,
.directory-panel,
.contact-card,
.contact-aside,
.notice {
  padding: 1.3rem;
}

.card--quiet {
  background: white;
}

.card p,
.note-panel p,
.directory-panel p,
.officer-card p,
.activity-card p,
.resource-card p,
.contact-aside p,
.notice p,
.timeline-card p {
  color: var(--mml-muted);
}

.feature {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.feature__media {
  overflow: hidden;
  border-radius: var(--mml-radius);
  box-shadow: var(--mml-shadow);
}

.feature__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 500ms ease;
}

.feature:hover .feature__image {
  transform: scale(1.025);
}

.feature__body p {
  color: var(--mml-muted);
}

.note-panel {
  position: relative;
  overflow: hidden;
  border-color: var(--mml-line);
}

.note-panel__seal,
.notice__seal {
  width: 4.5rem;
  height: 4.5rem;
  margin-bottom: 1rem;
  object-fit: contain;
}

.officer-card {
  min-height: 14rem;
  display: grid;
  align-content: end;
  gap: 0.8rem;
  padding: 1.2rem;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(7, 28, 58, 0.66), rgba(4, 19, 38, 0.94)),
    var(--mml-navy-900);
  color: white;
  border-color: rgba(216, 184, 79, 0.32);
}

.officer-card--light {
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0.86), rgba(248, 245, 236, 0.98)),
    white;
  color: var(--mml-navy-950);
}

.officer-card__seal {
  position: absolute;
  top: 1rem;
  right: 1rem;
  opacity: 0.18;
}

.officer-card__mark {
  width: 5rem;
  height: 5rem;
  object-fit: contain;
}

.officer-card p {
  margin: 0;
  color: inherit;
  opacity: 0.74;
}

.officer-preview--confirmed {
  align-items: stretch;
}

.officer-card--teaser {
  min-height: 11.5rem;
  align-content: space-between;
  background:
    linear-gradient(180deg, rgba(11, 42, 85, 0.88), rgba(4, 19, 38, 0.98)),
    var(--mml-navy-900);
}

.officer-card__badge {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: var(--mml-radius);
  border: 1px solid rgba(216, 184, 79, 0.72);
  background: rgba(201, 162, 39, 0.18);
  color: var(--mml-gold-400);
  font-weight: 900;
}

.officers-section {
  display: grid;
  gap: 2rem;
}

.officers-section__heading {
  max-width: 60rem;
  margin-bottom: 0;
}

.officer-privacy-note {
  max-width: 54rem;
  margin-top: 1rem;
  border-left: 3px solid var(--mml-gold-400);
  padding-left: 1rem;
  font-weight: 800;
}

.three-lights-grid {
  grid-template-columns: 1fr;
  gap: 1.2rem;
}

.three-light-card {
  min-width: 0;
  overflow: hidden;
  border-color: rgba(216, 184, 79, 0.4);
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0.98), rgba(248, 245, 236, 0.96)),
    white;
  color: var(--mml-navy-950);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

.three-light-card__media {
  background:
    linear-gradient(135deg, rgba(4, 19, 38, 0.18), rgba(201, 162, 39, 0.1)),
    var(--mml-navy-950);
}

.three-light-card__image {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
}

.three-light-card__body {
  display: grid;
  gap: 0.45rem;
  padding: 1.1rem;
}

.three-light-card__badge {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: var(--mml-radius);
  border: 1px solid rgba(201, 162, 39, 0.5);
  background:
    linear-gradient(180deg, rgba(201, 162, 39, 0.18), rgba(201, 162, 39, 0.08)),
    var(--mml-paper);
  color: var(--mml-navy-950);
  font-weight: 900;
}

.three-light-card__rank {
  margin: 0.35rem 0 0;
  color: var(--mml-blue-700);
  font-weight: 900;
  text-transform: uppercase;
}

.three-light-card h3 {
  margin: 0;
  font-size: 1.32rem;
}

.three-light-card__lodge {
  margin: 0;
  color: var(--mml-muted);
  font-size: 0.95rem;
  font-weight: 800;
}

.officer-group-feature {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.officer-group-feature__body {
  min-width: 0;
}

.officer-group-feature__body p {
  color: var(--mml-muted);
}

.officer-group-figure {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: var(--mml-paper);
  border-color: rgba(201, 162, 39, 0.34);
}

.officer-group-figure__image {
  width: 100%;
  height: auto;
  background: var(--mml-navy-950);
}

.officer-group-figure figcaption {
  padding: 0.9rem 1rem 1rem;
  color: var(--mml-muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.past-preview {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 13rem), 1fr));
}

.portrait-card {
  overflow: hidden;
  background: white;
}

.portrait-card--dark {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(216, 184, 79, 0.28);
  color: white;
}

.portrait-card__image {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.portrait-card__body {
  padding: 1rem;
}

.portrait-card__body span {
  display: inline-block;
  color: var(--mml-gold-500);
  font-weight: 900;
}

.portrait-card__body h3 {
  margin-top: 0.35rem;
  font-size: 1.12rem;
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.gallery-strip__item {
  margin: 0;
  overflow: hidden;
  border-radius: var(--mml-radius);
  background: white;
  box-shadow: 0 12px 28px rgba(27, 31, 42, 0.08);
}

.gallery-strip__image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.gallery-strip figcaption,
.gallery-card figcaption {
  padding: 0.7rem;
  color: var(--mml-muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.cta-panel {
  display: grid;
  gap: 1.2rem;
  align-items: center;
}

.page-hero__content h1 {
  font-size: 2.45rem;
}

.notice {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 2rem;
  border-color: var(--mml-line);
}

.timeline-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
}

.timeline-card {
  overflow: hidden;
  position: relative;
}

.timeline-card__year {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 2;
  border-radius: 999px;
  padding: 0.32rem 0.65rem;
  background: rgba(4, 19, 38, 0.86);
  color: var(--mml-gold-400);
  font-weight: 900;
}

.timeline-card__image {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.timeline-card__body {
  padding: 1rem;
}

.timeline-card__body h2 {
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
}

.activity-card,
.resource-card {
  overflow: hidden;
}

.activity-card__image,
.resource-card__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.activity-card__body,
.resource-card__body {
  padding: 1rem;
}

.gallery-grid {
  column-count: 1;
  column-gap: 1rem;
}

.gallery-card {
  margin: 0 0 1rem;
  display: inline-block;
  width: 100%;
  overflow: hidden;
  border-radius: var(--mml-radius);
  background: white;
  border: 1px solid rgba(7, 28, 58, 0.1);
  box-shadow: 0 16px 40px rgba(27, 31, 42, 0.08);
  break-inside: avoid;
}

.gallery-card__button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.gallery-card__image {
  width: 100%;
  object-fit: cover;
  transition: transform 300ms ease, filter 300ms ease;
}

.gallery-card__button:hover .gallery-card__image {
  transform: scale(1.025);
  filter: saturate(1.04) contrast(1.03);
}

.lightbox[hidden] {
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(4, 19, 38, 0.92);
}

.lightbox__figure {
  width: min(100%, 68rem);
  margin: 0;
  color: white;
}

.lightbox__image {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: var(--mml-radius);
  box-shadow: var(--mml-shadow);
}

.lightbox__caption {
  margin-top: 0.8rem;
  color: var(--mml-ivory);
  text-align: center;
  font-weight: 800;
}

.lightbox__close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  width: 2.9rem;
  height: 2.9rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(216, 184, 79, 0.4);
  border-radius: var(--mml-radius);
  background: rgba(255, 253, 247, 0.1);
  color: white;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.contact-layout {
  display: grid;
  gap: 1.25rem;
}

.event-placeholder {
  display: grid;
  gap: 1.25rem;
}

.event-placeholder__main,
.event-placeholder__note {
  border-radius: var(--mml-radius);
  border: 1px solid rgba(7, 28, 58, 0.1);
  background: rgba(255, 253, 247, 0.94);
  box-shadow: 0 16px 44px rgba(27, 31, 42, 0.08);
  padding: 1.3rem;
}

.event-placeholder__main p,
.event-placeholder__note p {
  color: var(--mml-muted);
}

.event-placeholder__seal {
  width: 5rem;
  height: 5rem;
  object-fit: contain;
  margin-bottom: 1rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
  margin-top: 1.2rem;
}

.form-field {
  display: grid;
  gap: 0.4rem;
}

.form-field label {
  color: var(--mml-navy-900);
  font-weight: 900;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  border: 1px solid rgba(7, 28, 58, 0.18);
  border-radius: var(--mml-radius);
  padding: 0.82rem 0.9rem;
  background: white;
  color: var(--mml-charcoal);
}

.form-status {
  min-height: 1.5rem;
  margin: 0;
  color: var(--mml-blue-700);
  font-weight: 800;
}

.contact-aside__seal {
  width: 7rem;
  height: 7rem;
  object-fit: contain;
  margin-bottom: 1rem;
}

.directory-panel {
  position: relative;
  overflow: hidden;
}

.directory-panel__watermark {
  position: absolute;
  right: 1rem;
  top: 1rem;
  opacity: 0.08;
}

.directory-panel__seal {
  width: 9rem;
  height: 9rem;
  object-fit: contain;
}

.privacy-list {
  position: relative;
  margin: 0;
  padding-left: 1.2rem;
  color: var(--mml-muted);
}

.privacy-list li + li {
  margin-top: 0.5rem;
}

.exclusion-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.exclusion-list span {
  border-radius: 999px;
  border: 1px solid rgba(7, 28, 58, 0.16);
  background: white;
  padding: 0.35rem 0.65rem;
  color: var(--mml-muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.not-found {
  min-height: 76vh;
  display: grid;
  place-items: center;
  padding: 5rem 1rem;
  color: white;
  background:
    linear-gradient(135deg, rgba(4, 19, 38, 0.96), rgba(11, 42, 85, 0.96)),
    var(--mml-navy-950);
}

.not-found__inner {
  max-width: 42rem;
  text-align: center;
}

.not-found__seal {
  width: 8rem;
  height: 8rem;
  margin: 0 auto 1.5rem;
  object-fit: contain;
}

.site-footer {
  background: var(--mml-navy-950);
  color: white;
  border-top: 1px solid rgba(216, 184, 79, 0.28);
}

.site-footer__inner {
  width: min(100% - 2rem, 72rem);
  margin-inline: auto;
  padding: 3.5rem 0 2rem;
  display: grid;
  gap: 2rem;
}

.site-footer__brand {
  display: grid;
  gap: 1rem;
}

.site-footer__seal {
  width: 5.5rem;
  height: 5.5rem;
  object-fit: contain;
}

.site-footer__name {
  margin: 0;
  color: var(--mml-gold-400);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
}

.site-footer__copy,
.site-footer__privacy,
.site-footer__bottom {
  color: rgba(248, 245, 236, 0.76);
}

.site-footer__columns {
  display: grid;
  gap: 1.25rem;
}

.footer-heading {
  margin-bottom: 0.7rem;
  color: white;
  font-family: var(--font-body);
  font-size: 0.86rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
}

.footer-links a {
  color: rgba(248, 245, 236, 0.82);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--mml-gold-400);
}

.site-footer__privacy {
  max-width: 58rem;
  border-top: 1px solid rgba(216, 184, 79, 0.22);
  padding-top: 1.3rem;
}

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  border-top: 1px solid rgba(216, 184, 79, 0.16);
  padding-top: 1rem;
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity 500ms ease, transform 500ms ease;
}

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

@media (min-width: 30rem) {
  .brand__full {
    display: block;
    max-width: 18rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand__short {
    display: none;
  }

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

  .tournament-sign {
    padding-right: 1.4rem;
  }

  .tournament-sign__title {
    font-size: 1.8rem;
  }
}

@media (min-width: 48rem) {
  .site-header__inner {
    min-height: 5.15rem;
  }

  h1 {
    font-size: 4.05rem;
  }

  h2 {
    font-size: 2.55rem;
  }

  .hero__lead {
    font-size: 1.9rem;
  }

  .split,
  .feature,
  .contact-layout,
  .cta-panel,
  .site-footer__brand,
  .site-footer__columns,
  .notice {
    grid-template-columns: 1fr 1fr;
  }

  .feature--reverse .feature__media {
    order: 2;
  }

  .gallery-grid {
    column-count: 2;
  }

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

  .event-placeholder {
    grid-template-columns: 1.35fr 0.85fr;
    align-items: stretch;
  }

  .tournament-sign__title {
    font-size: 2.1rem;
  }
}

@media (min-width: 64rem) {
  .menu-toggle {
    display: none;
  }

  .brand__full {
    max-width: none;
    font-size: 1.18rem;
  }

  .site-nav {
    position: static;
    max-height: none;
    opacity: 1;
    overflow: visible;
    pointer-events: auto;
    transform: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0;
    background: transparent;
    color: white;
    border: 0;
    box-shadow: none;
  }

  .site-nav__list {
    display: flex;
    align-items: center;
    gap: 0.15rem;
  }

  .site-nav__link {
    min-height: 2.5rem;
    padding: 0.55rem 0.62rem;
    color: rgba(248, 245, 236, 0.82);
    font-size: 0.9rem;
  }

  .site-nav__link:hover,
  .site-nav__link.is-active {
    background: rgba(255, 255, 255, 0.08);
    color: var(--mml-gold-400);
  }

  .site-nav__cta {
    min-height: 2.5rem;
    margin-top: 0;
    padding: 0.58rem 0.8rem;
    white-space: nowrap;
  }

  .hero {
    min-height: 44rem;
  }

  .page-hero {
    min-height: 32rem;
  }

  .section {
    padding: 6rem 0;
  }

  .three-lights-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.35rem;
  }

  .officer-group-feature {
    grid-template-columns: 0.82fr 1.18fr;
    gap: 2rem;
  }

  .gallery-grid {
    column-count: 3;
  }

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

@media (min-width: 80rem) {
  .site-nav__link {
    padding-inline: 0.78rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .tournament-sign {
    animation: none !important;
    transform: none;
  }
}

@media print {
  .site-header,
  .site-footer,
  .hero__media,
  .page-hero__media,
  .button,
  .menu-toggle {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .section {
    padding: 1.5rem 0;
  }
}
