:root {
  --ink: #12231b;
  --pine: #174533;
  --grass: #2d6b4c;
  --paper: #f4f1e8;
  --white: #fffdf7;
  --coral: #ee654d;
  --gold: #e3c85c;
  --line: rgba(18, 35, 27, 0.18);
  --display: 'Archivo Black', sans-serif;
  --body: 'Source Sans 3', sans-serif;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.55;
  letter-spacing: 0;
}
body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: '';
  opacity: 0.3;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    90deg,
    transparent 0,
    transparent calc(25% - 1px),
    rgba(18, 35, 27, 0.08) 25%
  );
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea {
  font: inherit;
  letter-spacing: 0;
}
button {
  color: inherit;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 0.97;
  text-transform: uppercase;
}
h1 {
  font-size: clamp(3.2rem, 8vw, 8.7rem);
}
h2 {
  font-size: clamp(2.2rem, 5vw, 5.2rem);
}
.eyebrow {
  margin-bottom: 1rem;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
}
.eyebrow::before {
  display: inline-block;
  width: 2.5rem;
  height: 2px;
  margin-right: 0.75rem;
  vertical-align: middle;
  background: currentColor;
  content: '';
}
.reveal {
  opacity: 1;
  transform: none;
}
.reveal.is-reveal-pending {
  opacity: 1;
  transform: translateY(24px);
  transition: transform 0.65s ease;
}
.reveal.is-reveal-pending.is-visible {
  opacity: 1;
  transform: none;
}

.site-header {
  position: relative;
  z-index: 10;
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  padding: 0 3.5vw;
  border-bottom: 1px solid var(--line);
  background: rgba(244, 241, 232, 0.95);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}
.brand-mark {
  display: inline-grid;
  width: 72px;
  height: 54px;
  padding: 3px;
  place-items: center;
  flex: 0 0 72px;
  color: var(--paper);
  background: var(--pine);
}
.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}
.brand strong {
  font-family: var(--display);
  font-size: 1rem;
  text-transform: uppercase;
}
.brand small {
  margin-top: 0.3rem;
  font-size: 0.67rem;
  font-weight: 600;
  text-transform: uppercase;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.4vw, 2.4rem);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}
.main-nav a {
  padding: 1.8rem 0;
  border-bottom: 3px solid transparent;
}
.main-nav a:hover,
.main-nav a[aria-current='page'] {
  border-color: var(--coral);
}
.main-nav .admin-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.main-nav svg {
  width: 15px;
}
.icon-button {
  display: inline-grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
}
.icon-button:hover {
  color: var(--paper);
  background: var(--ink);
}
.icon-button svg {
  width: 19px;
}
.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(82svh - 84px);
  align-items: end;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 25vw);
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(9, 24, 17, 0.78), rgba(9, 24, 17, 0.15)),
    var(--hero-image) center/cover;
}
.hero::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(9, 24, 17, 0.6), transparent 45%);
  content: '';
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  padding: clamp(4rem, 8vw, 8rem) 3.5vw;
}
.hero h1 {
  max-width: 950px;
  margin-bottom: 1.5rem;
}
.hero-summary {
  max-width: 690px;
  font-size: clamp(1.05rem, 1.6vw, 1.4rem);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.3rem;
}
.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.8rem 1.35rem;
  border: 0;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}
.button svg,
.text-link svg {
  width: 17px;
}
.button-primary {
  color: var(--ink);
  background: var(--gold);
}
.button-primary:hover {
  background: var(--white);
}
.button-quiet {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: transparent;
}
.button-dark {
  color: var(--white);
  background: var(--ink);
}
.event-stamp {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 255px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  color: var(--ink);
  background: var(--coral);
}
.event-stamp span,
.event-stamp small {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}
.event-stamp strong {
  font-family: var(--display);
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 1;
}
.intro-band {
  display: grid;
  padding: clamp(4rem, 8vw, 8rem) 3.5vw;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 4vw;
  align-items: start;
}
.intro-band h2 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 5.4rem);
}
.intro-band > p:last-child {
  padding-top: 0.5rem;
  font-size: 1.1rem;
}
.home-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  background: var(--white);
}
.feature-copy {
  grid-column: span 5;
  padding: clamp(3rem, 6vw, 7rem) 3.5vw;
}
.feature-copy .index {
  display: block;
  margin-bottom: 5rem;
  font-family: var(--display);
  font-size: 1.5rem;
}
.feature-copy h2 {
  font-size: clamp(2.5rem, 4vw, 4.5rem);
}
.feature-image {
  min-height: 620px;
  margin: 0;
  grid-column: span 7;
  overflow: hidden;
}
.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.location-strip {
  display: grid;
  padding: 3rem 3.5vw;
  grid-column: 1 / -1;
  grid-template-columns: 2fr 2fr auto;
  gap: 3vw;
  align-items: center;
  color: var(--white);
  background: var(--pine);
}
.location-strip h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
}
.location-strip p {
  margin: 0;
}
.icon-button-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 0.25rem;
  border-bottom: 2px solid;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}
.album-preview {
  padding: clamp(4rem, 8vw, 8rem) 3.5vw;
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
}
.section-heading h2 {
  max-width: 800px;
  margin: 0;
}
.photo-preview-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 0.8fr;
  gap: 1.25rem;
  align-items: end;
}
.photo-preview-grid figure {
  margin: 0;
}
.photo-preview-grid figure:nth-child(2) img {
  aspect-ratio: 4 / 5;
}
.photo-preview-grid figure:nth-child(3) img {
  aspect-ratio: 1 / 1;
}
.photo-preview-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.photo-preview-grid figcaption {
  display: grid;
  padding-top: 0.8rem;
  grid-template-columns: auto 1fr auto;
  gap: 0.8rem;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.page-hero {
  display: grid;
  min-height: min(720px, 76svh);
  grid-template-columns: 1.05fr 0.95fr;
  color: var(--white);
  background: var(--pine);
}
.page-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(4rem, 8vw, 8rem) 3.5vw;
}
.page-hero-copy h1 {
  margin-bottom: 2rem;
  font-size: clamp(3.2rem, 7vw, 7.5rem);
}
.page-hero-copy > p:last-child {
  max-width: 600px;
  font-size: 1.2rem;
}
.page-hero figure {
  margin: 0;
  overflow: hidden;
}
.page-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-body {
  display: grid;
  max-width: 1300px;
  min-height: 460px;
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 8rem) 3.5vw;
  grid-template-columns: 1fr 3fr;
  gap: 5vw;
}
.page-number {
  font-family: var(--display);
  font-size: clamp(3rem, 7vw, 7rem);
  color: var(--coral);
}
.body-copy {
  max-width: 900px;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.45;
}
.body-copy p {
  margin-bottom: 1.5em;
}
.rules-copy {
  font-size: 1.08rem;
  line-height: 1.65;
}
.rules-copy h2 {
  margin: 4rem 0 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
  font-size: clamp(2rem, 4vw, 3.75rem);
}
.rules-copy h2:first-child {
  margin-top: 0;
}
.rules-copy h3 {
  margin: 2.25rem 0 0.65rem;
  color: var(--pine);
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 400;
  text-transform: uppercase;
}
.rules-copy ul {
  display: grid;
  margin: 1.5rem 0 0;
  padding: 0;
  gap: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}
.rules-copy li {
  position: relative;
  padding: 1.25rem 0 1.25rem 2rem;
  border-bottom: 1px solid var(--line);
}
.rules-copy li::before {
  position: absolute;
  top: 1.55rem;
  left: 0;
  width: 0.65rem;
  height: 0.65rem;
  background: var(--coral);
  content: '';
}
.roster-copy {
  display: grid;
  max-width: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 1.5rem;
  font-size: 1rem;
}
.roster-copy h2 {
  display: flex;
  margin: 0;
  padding: 1.5rem;
  align-items: baseline;
  justify-content: space-between;
  font-size: clamp(2rem, 3vw, 3.25rem);
}
.roster-count {
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}
.roster-copy h2:nth-of-type(1) {
  grid-column: 1;
  grid-row: 1;
  color: #ffcb05;
  background: #163f73;
}
.roster-copy h2:nth-of-type(2) {
  grid-column: 2;
  grid-row: 1;
  color: var(--white);
  background: #ba0c2f;
}
.roster-copy ul {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: roster;
  border: 1px solid var(--line);
  border-top: 0;
}
.roster-copy ul:nth-of-type(1) {
  grid-column: 1;
  grid-row: 2;
}
.roster-copy ul:nth-of-type(2) {
  grid-column: 2;
  grid-row: 2;
}
.roster-copy li {
  display: grid;
  min-height: 56px;
  padding: 0.8rem 1rem;
  grid-template-columns: 2.25rem minmax(0, 1fr);
  align-items: center;
  border-bottom: 1px solid var(--line);
  counter-increment: roster;
}
.roster-copy li:last-child {
  border-bottom: 0;
}
.roster-copy li::before {
  color: var(--coral);
  font-family: var(--display);
  font-size: 0.75rem;
  content: counter(roster, decimal-leading-zero);
}
.location-venues {
  display: grid;
  margin: 3rem 0;
  gap: 1.5rem;
}
.location-venue {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 1.1fr);
  border: 1px solid var(--line);
  background: var(--white);
}
.location-venue-copy {
  display: flex;
  min-width: 0;
  padding: 1.5rem;
  flex-direction: column;
  align-items: flex-start;
}
.location-venue h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}
.location-venue address {
  margin-bottom: 0.25rem;
  font-style: normal;
}
.venue-actions {
  display: flex;
  margin-top: auto;
  padding-top: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.venue-map {
  width: 100%;
  min-height: 300px;
  border: 0;
}

.album-heading {
  display: grid;
  min-height: 400px;
  padding: clamp(4rem, 8vw, 8rem) 3.5vw;
  grid-template-columns: 1fr 3fr;
  gap: 4vw;
  align-items: end;
  color: var(--white);
  background: var(--pine);
}
.album-heading h1 {
  margin: 0;
  font-size: clamp(3.3rem, 8vw, 8rem);
}
.album-heading > p:last-child {
  max-width: 460px;
  align-self: end;
}
.gallery-index {
  display: grid;
  padding: 3.5vw;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}
.gallery-card {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.gallery-card:hover img {
  transform: scale(1.035);
}
.gallery-card span {
  position: absolute;
  inset: auto 0 0;
  display: grid;
  padding: 1.25rem;
  grid-template-columns: 1fr auto;
  align-items: end;
  background: linear-gradient(transparent, rgba(9, 24, 17, 0.9));
}
.gallery-card strong {
  grid-row: span 2;
  font-family: var(--display);
  font-size: clamp(2.4rem, 4vw, 4.6rem);
  line-height: 0.9;
}
.gallery-card small {
  font-weight: 700;
  text-align: right;
  text-transform: uppercase;
}
.gallery-card svg {
  width: 18px;
  margin-top: 0.45rem;
  justify-self: end;
}
.album-toolbar {
  padding: 2rem 3.5vw 0;
}
.album-grid {
  display: grid;
  padding: 3.5vw;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.2rem;
}
.album-entry {
  position: relative;
  min-height: 360px;
  grid-column: span 4;
  overflow: hidden;
  background: var(--ink);
}
.album-entry:nth-child(5n + 1),
.album-entry:nth-child(5n + 4) {
  grid-column: span 7;
}
.album-entry:nth-child(5n + 2),
.album-entry:nth-child(5n + 5) {
  grid-column: span 5;
}
.album-item {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
  padding: 0;
  border: 0;
  background: var(--ink);
  cursor: pointer;
}
.album-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.album-item:hover img {
  transform: scale(1.035);
}
.album-item > span {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  padding: 1.2rem;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  color: var(--white);
  background: linear-gradient(transparent, rgba(9, 24, 17, 0.85));
  text-align: left;
}
.album-item small {
  font-weight: 700;
}
.album-item svg {
  width: 18px;
}
.album-share {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(9, 24, 17, 0.75);
  backdrop-filter: blur(8px);
}
.scorecard-year-grid {
  display: grid;
  padding: 3.5vw;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.scorecard-year-card {
  display: grid;
  min-height: 180px;
  padding: 1rem;
  grid-template-columns: 96px minmax(0, 1fr) auto;
  gap: 1.25rem;
  align-items: center;
  color: var(--white);
  background: var(--pine);
}
.scorecard-year-card > img,
.scorecard-year-placeholder {
  width: 96px;
  height: 128px;
  object-fit: cover;
  background: var(--paper);
}
.scorecard-year-placeholder {
  display: grid;
  place-items: center;
  color: var(--grass);
}
.scorecard-year-placeholder svg {
  width: 2rem;
  height: 2rem;
}
.scorecard-year-card strong,
.scorecard-year-card small {
  display: block;
}
.scorecard-year-card strong {
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 1;
}
.scorecard-year-card small {
  margin-top: 0.5rem;
  font-weight: 700;
  text-transform: uppercase;
}
.scorecard-grid {
  display: grid;
  padding: 3.5vw;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}
.scorecard-entry {
  min-width: 0;
  border: 1px solid var(--line);
  background: var(--white);
}
.scorecard-entry > button {
  display: grid;
  width: 100%;
  min-height: 520px;
  padding: 0;
  grid-template-rows: minmax(0, 1fr) auto;
  border: 0;
  background: var(--paper);
  cursor: pointer;
}
.scorecard-entry img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
}
.scorecard-entry span {
  display: grid;
  padding: 1rem 1.2rem;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  color: var(--white);
  background: var(--pine);
  text-align: left;
}
.scorecard-entry small {
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
}
.scorecard-entry strong {
  overflow-wrap: anywhere;
}
.scorecard-entry svg {
  width: 1.1rem;
}
.photo-dialog {
  width: min(1100px, 94vw);
  max-height: 92vh;
  padding: 0;
  border: 0;
  color: var(--white);
  background: var(--ink);
}
.photo-dialog::backdrop {
  background: rgba(3, 12, 8, 0.85);
}
.photo-dialog img {
  width: 100%;
  max-height: 72vh;
  object-fit: contain;
  background: #07100c;
}
.photo-dialog-copy {
  display: grid;
  padding: 1.3rem 1.7rem;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
}
.photo-dialog h2 {
  margin-bottom: 0.5rem;
  font-size: 1.7rem;
}
.dialog-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(9, 24, 17, 0.65);
}
.photo-share-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
  justify-content: flex-end;
}
.photo-share-actions .button {
  min-height: 44px;
}
.share-status {
  width: 100%;
  min-height: 1.2em;
  color: var(--gold);
  font-size: 0.8rem;
  text-align: right;
}
.empty-state {
  grid-column: 1 / -1;
  padding: 5rem 0;
  text-align: center;
}

.site-footer {
  display: grid;
  padding: 4rem 3.5vw 2rem;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  color: var(--white);
  background: var(--ink);
}
.footer-newsletter {
  display: grid;
  padding-bottom: 3rem;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
  gap: 3rem;
  align-items: end;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.footer-newsletter h2 {
  margin-bottom: 0.75rem;
  font-size: clamp(2.4rem, 5vw, 5rem);
}
.footer-newsletter label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}
.newsletter-fields {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
}
.newsletter-fields input {
  min-width: 0;
  border-color: var(--white);
}
.newsletter-fields .button {
  min-height: 49px;
}
.footer-newsletter form > small {
  display: block;
  margin-top: 0.65rem;
  color: rgba(255, 255, 255, 0.68);
}
.newsletter-trap {
  position: absolute;
  left: -10000px;
}
.newsletter-status {
  margin: 0.7rem 0 0;
  color: var(--gold);
}
.footer-brand {
  display: flex;
  gap: 1rem;
}
.site-footer p {
  margin: 0;
}
.site-footer strong {
  font-family: var(--display);
  text-transform: uppercase;
}
.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.85rem;
}
.site-footer > small {
  padding-top: 2rem;
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.login-page {
  color: var(--white);
  background: var(--pine);
}
.login-shell {
  display: grid;
  min-height: 100svh;
  padding: 4vw;
  grid-template-rows: auto 1fr;
  background:
    linear-gradient(90deg, rgba(9, 24, 17, 0.88), rgba(9, 24, 17, 0.45)),
    url('https://images.unsplash.com/photo-1535131749006-b7f58c99034b?auto=format&fit=crop&w=2200&q=85')
      center/cover;
}
.brand-light .brand-mark {
  background: rgba(9, 24, 17, 0.78);
}
.login-panel {
  display: grid;
  width: min(1280px, 100%);
  align-self: center;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 480px);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: end;
}
.login-panel > * {
  min-width: 0;
}
.login-panel h1 {
  max-width: 700px;
  font-size: clamp(3rem, 7vw, 7rem);
  overflow-wrap: anywhere;
}
.login-form {
  width: 100%;
  padding: 2rem;
  color: var(--ink);
  background: var(--paper);
}
.login-form label,
.editor-form label {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}
input,
textarea {
  width: 100%;
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--ink);
  background: var(--white);
  outline: 0;
}
input:focus,
textarea:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 2px rgba(238, 101, 77, 0.18);
}
textarea {
  min-height: 100px;
  resize: vertical;
}
.login-form label + label {
  margin-top: 1rem;
}
.login-form .button {
  width: 100%;
  margin-top: 1rem;
}
.form-status {
  min-height: 1.5rem;
  margin: 1rem 0 0;
  font-size: 0.85rem;
}
.is-error {
  color: #b5241d !important;
}

.admin-page {
  background: #ece9df;
}
.admin-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  height: 72px;
  align-items: center;
  justify-content: space-between;
  padding: 0 2vw;
  border-bottom: 1px solid var(--line);
  background: rgba(244, 241, 232, 0.96);
  backdrop-filter: blur(10px);
}
.admin-header > div {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.admin-user {
  margin-right: 1rem;
  font-size: 0.75rem;
  font-weight: 700;
}
.admin-header .brand-mark {
  width: 60px;
  height: 46px;
  flex-basis: 60px;
}
.admin-shell {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
}
.admin-nav {
  position: sticky;
  top: 72px;
  display: flex;
  height: calc(100vh - 72px);
  flex-direction: column;
  gap: 0.3rem;
  padding: 2.5rem 2vw;
  border-right: 1px solid var(--line);
}
.admin-nav a {
  padding: 0.55rem 0;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}
.admin-nav a:hover {
  color: var(--coral);
}
.admin-nav a[aria-current='page'] {
  color: var(--coral);
}
.admin-content {
  min-width: 0;
  padding: 4vw;
}
.admin-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 4rem;
}
.admin-intro h1 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(3rem, 7vw, 7rem);
}
.global-status {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  z-index: 30;
  margin: 0;
  padding: 0.8rem 1.2rem;
  color: var(--white);
  background: var(--pine);
}
.global-status:empty {
  display: none;
}
.global-status.is-error {
  color: var(--white) !important;
  background: #8d241d;
}
.admin-section {
  margin-bottom: 2rem;
  padding: clamp(1.5rem, 3vw, 3rem);
  border: 1px solid var(--line);
  background: var(--paper);
  scroll-margin-top: 100px;
}
.admin-section-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}
.admin-section-heading > div {
  display: flex;
  align-items: baseline;
  gap: 1rem;
}
.admin-section-heading span {
  color: var(--coral);
  font-family: var(--display);
}
.admin-section-heading h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 3rem);
}
.admin-section-heading p {
  max-width: 360px;
  margin: 0;
  font-size: 0.85rem;
}
.editor-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}
.field-wide,
.form-actions {
  grid-column: 1 / -1;
}
.body-editor {
  min-height: 220px;
}
.form-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.5rem;
  margin-top: 0.5rem;
}
.album-admin-grid {
  display: grid;
  margin: 1.5rem 0 2rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}
.album-admin-card {
  display: grid;
  min-width: 0;
  padding: 0.55rem;
  grid-template-columns: 64px minmax(0, 1fr) 20px;
  gap: 0.75rem;
  align-items: center;
  border: 1px solid var(--line);
  background: var(--white);
}
.album-admin-card.is-active {
  color: var(--white);
  background: var(--pine);
  border-color: var(--pine);
}
.album-admin-card img {
  width: 64px;
  height: 52px;
  object-fit: cover;
}
.album-admin-card strong,
.album-admin-card small {
  display: block;
}
.album-admin-card strong {
  font-family: var(--display);
  font-size: 1.3rem;
}
.album-admin-card small {
  margin-top: 0.2rem;
  font-size: 0.72rem;
}
.album-admin-card svg {
  width: 1rem;
}
.album-image-heading {
  display: flex;
  margin: 2.5rem 0 1rem;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}
.album-image-heading h3 {
  margin: 0.2rem 0 0;
  font-size: clamp(1.8rem, 4vw, 3rem);
}
.album-image-heading p {
  margin: 0;
}
.scorecard-admin-years {
  display: flex;
  margin: 1.5rem 0 2rem;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.scorecard-admin-years a {
  display: flex;
  min-width: 120px;
  padding: 0.75rem 1rem;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid var(--line);
  background: var(--white);
}
.scorecard-admin-years a[aria-current='page'] {
  color: var(--white);
  border-color: var(--pine);
  background: var(--pine);
}
.scorecard-admin-years small {
  align-self: center;
}
.photo-create-form {
  display: grid;
  margin-bottom: 2rem;
  padding: 1.5rem;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 2rem;
  border: 1px dashed var(--line);
}
.upload-drop {
  display: flex;
  min-height: 260px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  color: var(--grass);
  background: rgba(45, 107, 76, 0.08);
  text-align: center;
}
.upload-drop svg {
  width: 40px;
  height: 40px;
}
.upload-drop label {
  padding: 0.65rem 1rem;
  color: var(--white);
  background: var(--pine);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}
.upload-drop input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.upload-drop small {
  max-width: 240px;
}
.compact-form {
  align-content: start;
}
.photo-admin-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.photo-admin-item {
  display: grid;
  padding: 0.8rem;
  grid-template-columns: 150px minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  border: 1px solid var(--line);
  background: var(--white);
}
.photo-admin-item > img {
  width: 150px;
  height: 118px;
  object-fit: cover;
}
.photo-admin-item > div:nth-child(2) {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
.photo-admin-item input {
  padding: 0.5rem 0.65rem;
  font-size: 0.82rem;
}
.checkbox-field {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 0.6rem;
}
.checkbox-field input {
  width: 1rem;
  height: 1rem;
}
.tribute-admin-item > div:nth-child(2) {
  grid-template-columns: 1fr 1fr;
}
.tribute-admin-item textarea,
.tribute-admin-item .checkbox-field {
  grid-column: 1 / -1;
}
.tribute-grid {
  display: grid;
  margin-top: 3rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.tribute-card {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(130px, 0.8fr) minmax(0, 1.2fr);
  background: var(--white);
}
.tribute-card > img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}
.tribute-card-copy {
  padding: clamp(1.25rem, 3vw, 2.5rem);
}
.tribute-card-copy h2 {
  margin: 0.4rem 0 0.7rem;
  font-size: clamp(1.5rem, 2.5vw, 2.4rem);
}
.tribute-card-copy > p:last-child {
  line-height: 1.7;
}
.tribute-memorial {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--grass);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}
.tribute-memorial svg {
  width: 1rem;
}
.tribute-years {
  font-size: 0.82rem;
  text-transform: uppercase;
}
.tribute-empty {
  margin-top: 3rem;
  padding: clamp(2rem, 6vw, 5rem);
  border: 1px solid var(--line);
  text-align: center;
}
.tribute-empty svg {
  width: 2rem;
  height: 2rem;
  color: var(--grass);
}
.photo-actions {
  display: grid;
  grid-template-columns: repeat(2, 44px);
  gap: 0.35rem;
}
.icon-button.danger {
  color: #a42a22;
}
.icon-button:disabled {
  opacity: 0.25;
  cursor: not-allowed;
}

@media (max-width: 900px) {
  .album-admin-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .tribute-grid {
    grid-template-columns: 1fr;
  }
  .menu-toggle {
    display: inline-grid;
  }
  .main-nav {
    position: absolute;
    top: 84px;
    right: 0;
    left: 0;
    display: none;
    padding: 1rem 3.5vw 2rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    box-shadow: 0 20px 30px rgba(18, 35, 27, 0.18);
  }
  .main-nav.is-open {
    display: flex;
  }
  .main-nav a {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--line);
  }
  .hero {
    min-height: calc(88svh - 84px);
    grid-template-columns: 1fr;
  }
  .event-stamp {
    min-height: auto;
  }
  .intro-band {
    grid-template-columns: 1fr;
  }
  .feature-copy,
  .feature-image {
    grid-column: 1 / -1;
  }
  .feature-image {
    min-height: 460px;
  }
  .location-strip {
    grid-template-columns: 1fr auto;
  }
  .location-strip > p {
    grid-column: 1 / -1;
    grid-row: 2;
  }
  .photo-preview-grid {
    grid-template-columns: 1fr 1fr;
  }
  .photo-preview-grid figure:first-child {
    grid-column: 1 / -1;
  }
  .page-hero {
    grid-template-columns: 1fr;
  }
  .page-hero-copy {
    min-height: 500px;
  }
  .page-hero figure {
    max-height: 500px;
  }
  .album-heading {
    grid-template-columns: 1fr;
  }
  .gallery-index {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .scorecard-year-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .album-entry,
  .album-entry:nth-child(n) {
    min-height: 320px;
    grid-column: span 6;
  }
  .login-panel {
    grid-template-columns: 1fr;
  }
  .login-form {
    width: min(560px, 100%);
    justify-self: end;
  }
  .admin-shell {
    grid-template-columns: 1fr;
  }
  .admin-nav {
    position: static;
    height: auto;
    flex-direction: row;
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .admin-nav .eyebrow {
    display: none;
  }
  .admin-nav a {
    flex: 0 0 auto;
  }
  .photo-create-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 16px;
  }
  .site-header {
    padding: 0 1rem;
  }
  .brand-mark {
    width: 58px;
    height: 44px;
    flex-basis: 58px;
  }
  .album-admin-grid {
    grid-template-columns: 1fr;
  }
  .brand small,
  .admin-user {
    display: none;
  }
  .hero-content,
  .intro-band,
  .feature-copy,
  .location-strip,
  .album-preview,
  .page-hero-copy,
  .page-body,
  .album-heading,
  .gallery-index,
  .album-toolbar,
  .album-grid {
    padding-right: 1.2rem;
    padding-left: 1.2rem;
  }
  .album-heading > * {
    min-width: 0;
  }
  .album-heading h1 {
    font-size: clamp(2.8rem, 14vw, 4.2rem);
    overflow-wrap: anywhere;
  }
  .scorecard-year-grid,
  .scorecard-grid {
    padding-right: 1.2rem;
    padding-left: 1.2rem;
  }
  .hero h1 {
    font-size: clamp(2.8rem, 15vw, 5rem);
  }
  .page-hero-copy h1 {
    font-size: 1.625rem;
    overflow-wrap: anywhere;
  }
  .page-hero-copy > p:last-child {
    font-size: 1rem;
  }
  .intro-band {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .feature-copy .index {
    margin-bottom: 3rem;
  }
  .feature-image {
    min-height: 360px;
  }
  .section-heading {
    align-items: start;
    flex-direction: column;
  }
  .photo-preview-grid {
    grid-template-columns: 1fr;
  }
  .photo-preview-grid figure:first-child {
    grid-column: auto;
  }
  .page-body {
    grid-template-columns: 1fr;
  }
  .roster-copy {
    grid-template-columns: 1fr;
  }
  .roster-copy h2:nth-of-type(1),
  .roster-copy ul:nth-of-type(1),
  .roster-copy h2:nth-of-type(2),
  .roster-copy ul:nth-of-type(2) {
    grid-column: 1;
  }
  .roster-copy h2:nth-of-type(1) {
    grid-row: 1;
  }
  .roster-copy ul:nth-of-type(1) {
    grid-row: 2;
  }
  .roster-copy h2:nth-of-type(2) {
    margin-top: 2rem;
    grid-row: 3;
  }
  .roster-copy ul:nth-of-type(2) {
    grid-row: 4;
  }
  .page-number {
    font-size: 3rem;
  }
  .location-venue {
    grid-template-columns: 1fr;
  }
  .album-entry,
  .album-entry:nth-child(n) {
    grid-column: 1 / -1;
  }
  .photo-dialog-copy {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .photo-share-actions {
    justify-content: flex-start;
  }
  .share-status {
    text-align: left;
  }
  .gallery-index {
    grid-template-columns: 1fr;
  }
  .scorecard-year-grid,
  .scorecard-grid {
    grid-template-columns: 1fr;
  }
  .scorecard-year-card {
    grid-template-columns: 72px minmax(0, 1fr) auto;
  }
  .scorecard-year-card > img,
  .scorecard-year-placeholder {
    width: 72px;
    height: 96px;
  }
  .scorecard-entry > button {
    min-height: 420px;
  }
  .site-footer {
    grid-template-columns: 1fr;
  }
  .footer-newsletter {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .newsletter-fields {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }
  .login-shell {
    padding: 1rem;
  }
  .login-panel {
    align-self: start;
    margin-top: 18vh;
  }
  .login-form {
    width: 100%;
    padding: 1.3rem;
    justify-self: stretch;
  }
  .admin-content {
    padding: 1rem;
  }
  .admin-intro,
  .admin-section-heading {
    align-items: start;
    flex-direction: column;
  }
  .editor-form {
    grid-template-columns: 1fr;
  }
  .photo-admin-item {
    grid-template-columns: 86px minmax(0, 1fr);
  }
  .photo-admin-item > img {
    width: 86px;
    height: 86px;
  }
  .photo-admin-item > div:nth-child(2) {
    grid-template-columns: 1fr;
  }
  .photo-actions {
    grid-column: 1 / -1;
    display: flex;
    justify-content: flex-end;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
