:root {
  color-scheme: light;
  --pine: #123827;
  --pine-dark: #081d16;
  --leaf: #4b8e46;
  --paper: #fff9ed;
  --cream: #f5ead4;
  --clay: #c7532d;
  --sky: #2f6388;
  --ink: #172018;
  --muted: #5f675d;
  --line: rgba(23, 32, 24, 0.16);
  --white: #ffffff;
  --shadow: 0 18px 44px rgba(8, 29, 22, 0.18);
  --radius: 8px;
}

* { box-sizing: border-box; }

html,
body {
  min-width: 0;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(18, 56, 39, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(18, 56, 39, 0.06) 1px, transparent 1px),
    var(--cream);
  background-size: 44px 44px;
}

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

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

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.topbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: 30px clamp(14px, 4vw, 54px);
  color: #fffdf3;
  background: rgba(8, 29, 22, 0.96);
  border-bottom: 4px solid var(--clay);
}

.topbar-sticky {
  position: sticky;
  top: 0;
  z-index: 20;
  flex-wrap: nowrap;
  align-items: stretch;
}

.header-brand-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.brand-wide {
  flex: 0 0 auto;
}

.brand img {
  width: 384px;
  height: 384px;
  border: 2px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
}

.instagram-button {
  display: inline-flex;
  flex: 0 0 46px;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 52%, #fcb045 100%);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.24);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.instagram-button:hover,
.instagram-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 11px 24px rgba(0, 0, 0, 0.32);
}

.instagram-button:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

.instagram-button svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.instagram-button .instagram-button-dot {
  fill: currentColor;
  stroke: none;
}

.brand-copy {
  display: block;
  min-width: 0;
}

.brand-tagline {
  display: block;
  max-width: 15ch;
  color: #fffdf3;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.1vw, 1.8rem);
  font-weight: 900;
  line-height: 1.02;
}

.page-tabs {
  display: flex;
  flex: 1 1 430px;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.page-tabs a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  color: #fffdf3;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  font-weight: 900;
}

.page-tabs a[aria-current="page"],
.page-tabs a:hover {
  background: var(--clay);
  border-color: var(--clay);
}

.main-nav a {
  min-height: 0;
  width: 100%;
  height: 100%;
  justify-content: center;
  padding: 12px 14px;
  font-size: clamp(0.9rem, 0.95vw, 1.04rem);
  line-height: 1.1;
  text-align: center;
}

.topbar-sticky .main-nav {
  display: grid;
  flex: 1 1 0;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  align-self: stretch;
  min-width: min(520px, 100%);
  gap: 10px;
}

.page-main {
  flex: 1;
  padding: clamp(22px, 4vw, 44px) clamp(14px, 4vw, 54px) 42px;
}

.hero-page {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: stretch;
}

.hero-copy,
.side-card,
.content-band,
.ticket,
.info-card,
.event-card,
.faq-card,
.booking-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 249, 237, 0.94);
  box-shadow: var(--shadow);
}

.hero-copy {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(24px, 5vw, 56px);
  color: #fffdf3;
  background:
    linear-gradient(118deg, rgba(8, 29, 22, 0.96), rgba(18, 56, 39, 0.88) 54%, rgba(75, 142, 70, 0.72)),
    radial-gradient(circle at 90% 18%, rgba(199, 83, 45, 0.44), transparent 26%);
  overflow: hidden;
}

.hero-copy-home {
  min-height: 560px;
}

.hero-inline-video {
  width: min(100%, 860px);
  margin: 28px 0 0;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 243, 0.2);
  border-radius: var(--radius);
  background: rgba(8, 29, 22, 0.58);
  box-shadow: 0 18px 40px rgba(8, 29, 22, 0.34);
}

.hero-inline-video video {
  display: block;
  width: 100%;
  max-height: min(58vh, 560px);
  background: #06110d;
  object-fit: contain;
}

.hero-inline-video figcaption {
  padding: 10px 14px;
  color: rgba(255, 253, 243, 0.78);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.35;
}

.hero-quick,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.kicker,
.label {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  align-items: center;
  min-height: 32px;
  padding: 0 10px;
  border-radius: var(--radius);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.kicker {
  color: #ffe0c6;
  background: rgba(199, 83, 45, 0.24);
  border: 1px solid rgba(255, 224, 198, 0.28);
}

.label {
  color: var(--pine);
  background: rgba(75, 142, 70, 0.12);
  border: 1px solid rgba(75, 142, 70, 0.22);
}

h1,
h2,
h3,
p,
li {
  overflow-wrap: anywhere;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  max-width: 10ch;
  margin-top: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 8vw, 7.4rem);
  line-height: 0.86;
  letter-spacing: 0;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h3 {
  font-size: 1.06rem;
  line-height: 1.2;
}

.lead {
  max-width: 760px;
  margin-top: 22px;
  color: #fffdf3;
  font-size: clamp(1.04rem, 2vw, 1.34rem);
  line-height: 1.48;
}

.note {
  margin-top: 16px;
  color: rgba(255, 253, 243, 0.74);
  font-size: 0.98rem;
  line-height: 1.65;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid var(--pine);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 950;
  text-align: center;
}

.button-primary {
  color: #fff;
  background: var(--clay);
  border-color: var(--clay);
}

.button-secondary {
  color: var(--pine);
  background: #fff;
}

.side-card {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.logo-stage {
  display: grid;
  place-items: center;
  min-height: 250px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(18, 56, 39, 0.12), rgba(199, 83, 45, 0.1)),
    var(--white);
}

.logo-stage img {
  width: min(260px, 82%);
  border-radius: 50%;
}

.media-side {
  align-content: start;
}

.video-hero {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--pine-dark);
}

.video-hero video {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}

.video-caption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: grid;
  gap: 8px;
  padding: 14px;
  color: #fffdf3;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(8, 29, 22, 0.78);
  backdrop-filter: blur(10px);
}

.video-caption .label {
  color: #ffe0c6;
  border-color: rgba(255, 224, 198, 0.24);
  background: rgba(199, 83, 45, 0.28);
}

.score-grid,
.card-grid,
.split-grid,
.date-grid,
.partner-grid,
.faq-grid {
  display: grid;
  gap: 14px;
}

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

.score {
  min-height: 120px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.score strong {
  display: block;
  color: var(--clay);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1;
}

.score span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.35;
}

.content-band {
  margin-top: 22px;
  padding: clamp(18px, 3vw, 28px);
}

.shooting-school-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(340px, 1.22fr);
  gap: clamp(20px, 4vw, 48px);
  align-items: center;
  overflow: hidden;
  color: #fffdf3;
  background:
    radial-gradient(circle at 82% 50%, rgba(224, 93, 20, 0.22), transparent 38%),
    linear-gradient(135deg, #0b0b0a, #211b16);
}

.shooting-school-copy {
  display: grid;
  gap: 14px;
  align-content: center;
}

.shooting-school-copy .label {
  width: fit-content;
  color: #ffd7bd;
  border-color: rgba(255, 137, 61, 0.38);
  background: rgba(224, 93, 20, 0.16);
}

.shooting-school-copy h2 {
  color: #fffdf3;
}

.shooting-school-copy p {
  max-width: 520px;
  color: rgba(255, 253, 243, 0.76);
  line-height: 1.65;
}

.shooting-school-gallery-trigger {
  width: fit-content;
}

.shooting-school-art {
  margin: 0;
}

.shooting-school-cover-button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: calc(var(--radius) + 6px);
  background: transparent;
  cursor: pointer;
}

.shooting-school-cover-button:focus-visible {
  outline: 4px solid #ff8a3d;
  outline-offset: 5px;
}

.shooting-school-art img {
  display: block;
  width: 100%;
  max-height: 680px;
  object-fit: contain;
  border-radius: calc(var(--radius) + 6px);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.42);
}

.ballistic-calculator-band {
  color: #fffdf3;
  background:
    radial-gradient(circle at 88% 8%, rgba(199, 83, 45, 0.28), transparent 28%),
    linear-gradient(140deg, #081d16, #123827 58%, #172f25);
}

.ballistic-calculator-head {
  align-items: end;
}

.ballistic-calculator-head h2 {
  color: #fffdf3;
}

.ballistic-calculator-head p {
  color: rgba(255, 253, 243, 0.74);
}

.ballistic-tool-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.ballistic-tool-tabs button {
  display: grid;
  gap: 5px;
  min-height: 132px;
  padding: 16px 12px;
  place-items: center;
  color: #fffdf3;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  font: inherit;
  text-align: center;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.ballistic-tool-tabs button:hover,
.ballistic-tool-tabs button[aria-selected="true"] {
  border-color: #ff9a67;
  background: rgba(199, 83, 45, 0.88);
  transform: translateY(-2px);
}

.ballistic-tool-tabs button:focus-visible {
  outline: 3px solid #fff9ed;
  outline-offset: 3px;
}

.ballistic-tool-tabs button > span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  color: var(--pine-dark);
  background: #fff9ed;
  font-size: 1.35rem;
  font-weight: 950;
}

.ballistic-tool-tabs strong {
  font-size: 0.95rem;
  line-height: 1.15;
}

.ballistic-tool-tabs small {
  color: rgba(255, 253, 243, 0.68);
  font-size: 0.76rem;
  line-height: 1.25;
}

.ballistic-panel {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(18px, 3vw, 34px);
  margin-top: 12px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(4, 17, 12, 0.58);
}

.ballistic-panel[hidden] {
  display: none;
}

.ballistic-panel-copy {
  display: grid;
  gap: 10px;
  align-content: center;
}

.ballistic-panel-copy h3 {
  color: #fffdf3;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3.4vw, 3rem);
  line-height: 1;
}

.ballistic-panel-copy p {
  color: rgba(255, 253, 243, 0.72);
  line-height: 1.55;
}

.ballistic-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: end;
}

.ballistic-form-grid label {
  display: grid;
  gap: 7px;
  color: #fffdf3;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ballistic-form-grid label > span {
  position: relative;
  display: flex;
  min-width: 0;
}

.ballistic-form-grid input,
.ballistic-form-grid select {
  width: 100%;
  min-width: 0;
  min-height: 48px;
  padding: 0 12px;
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: #fff9ed;
  font: inherit;
  font-size: 0.96rem;
  font-weight: 800;
}

.ballistic-form-grid label > span input {
  padding-right: 74px;
}

.ballistic-form-grid label > span em {
  position: absolute;
  top: 50%;
  right: 12px;
  color: var(--muted);
  font-size: 0.76rem;
  font-style: normal;
  letter-spacing: 0;
  pointer-events: none;
  text-transform: none;
  transform: translateY(-50%);
}

.ballistic-form-grid label > span select {
  flex: 0 0 88px;
  width: 88px;
  margin-left: 6px;
}

.ballistic-result {
  display: grid;
  grid-column: 1 / -1;
  min-height: 118px;
  padding: 16px;
  place-content: center;
  color: var(--pine-dark);
  border: 2px solid rgba(199, 83, 45, 0.34);
  border-radius: var(--radius);
  background: #fff9ed;
  text-align: center;
}

.ballistic-result small,
.ballistic-result span {
  color: var(--muted);
}

.ballistic-result small {
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ballistic-result strong {
  margin: 4px 0;
  color: var(--clay);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
}

.ballistic-result span {
  font-size: 0.85rem;
  font-weight: 800;
}

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

.ballistic-source {
  margin-top: 12px;
  color: rgba(255, 253, 243, 0.62);
  font-size: 0.76rem;
  line-height: 1.4;
  text-align: right;
}

.ballistic-source a {
  color: #ffd7bd;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.calendar-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1.14fr);
  gap: clamp(16px, 3vw, 28px);
  align-items: stretch;
  color: #fffdf3;
  background:
    linear-gradient(135deg, rgba(8, 29, 22, 0.98), rgba(18, 56, 39, 0.92)),
    var(--pine-dark);
}

.calendar-copy {
  display: grid;
  align-content: center;
  gap: 16px;
}

.calendar-copy .label {
  color: #ffe0c6;
  border-color: rgba(255, 224, 198, 0.24);
  background: rgba(199, 83, 45, 0.24);
}

.calendar-copy h2 {
  max-width: 10ch;
}

.calendar-copy p {
  max-width: 620px;
  color: rgba(255, 253, 243, 0.78);
  font-size: 1rem;
  line-height: 1.65;
}

.calendar-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.past-stage-buttons {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.past-stage-buttons .button {
  width: 100%;
  min-width: 0;
  min-height: 48px;
  padding: 0 12px;
  line-height: 1.15;
}

.past-stage-panel[hidden] {
  display: none;
}

.past-stage-panel {
  grid-column: 1 / -1;
  display: grid;
  gap: 14px;
  padding: 14px;
  color: var(--ink);
  border: 1px solid rgba(255, 253, 243, 0.26);
  border-radius: var(--radius);
  background: #fff9ed;
  box-shadow: 0 14px 34px rgba(8, 29, 22, 0.22);
}

.past-stage-panel-copy {
  display: grid;
  gap: 8px;
}

.past-stage-panel h3 {
  color: var(--pine);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 3vw, 2.45rem);
  line-height: 1;
}

.past-stage-panel p,
.past-stage-panel figcaption {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.past-stage-score-sheet,
.past-stage-gallery-wrap,
.past-stage-gallery figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(23, 32, 24, 0.14);
  border-radius: var(--radius);
  background: var(--paper);
}

.past-stage-score-sheet {
  background: var(--paper);
}

.past-stage-gallery-wrap {
  display: grid;
  gap: 12px;
  padding: 12px;
}

.past-stage-gallery-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}

.past-stage-gallery-head > div {
  display: grid;
  gap: 4px;
}

.past-stage-gallery-head strong {
  color: var(--pine);
  font-size: 1rem;
  font-weight: 950;
  line-height: 1.2;
  text-transform: uppercase;
}

.past-stage-gallery-head span {
  max-width: 520px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.past-stage-gallery-note {
  padding-top: 10px;
  border-top: 1px solid rgba(23, 32, 24, 0.12);
}

.past-stage-close {
  flex: 0 0 auto;
  min-height: 38px;
  padding: 0 14px;
  color: #fff;
  border: 0;
  border-radius: 999px;
  background: var(--pine);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
  cursor: pointer;
}

.past-stage-close:hover,
.past-stage-close:focus-visible {
  background: var(--clay);
}

.past-stage-gallery img,
.past-stage-gallery video {
  width: 100%;
  height: 188px;
  object-fit: cover;
  background: #fff;
}

.past-stage-gallery img.gallery-focus-faces {
  object-position: center 18%;
}

.past-stage-gallery video {
  display: block;
  background: #101611;
}

.past-stage-score-sheet img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: transparent;
}

.past-stage-score-sheet figcaption {
  color: var(--pine);
}

.past-stage-score-sheet figcaption,
.past-stage-gallery figcaption {
  padding: 10px 12px;
}

.past-stage-score-table {
  overflow: hidden;
}

.past-stage-score-table figcaption {
  border-bottom: 1px solid rgba(18, 56, 39, 0.14);
  color: var(--pine);
  font-weight: 950;
  text-align: center;
}

.score-table-scroll {
  width: 100%;
  overflow-x: auto;
  background: var(--paper);
}

.past-stage-score-table table {
  width: 100%;
  min-width: 430px;
  border-collapse: collapse;
  color: var(--pine);
  font-size: 0.86rem;
  line-height: 1.25;
}

.past-stage-score-table th,
.past-stage-score-table td {
  padding: 9px 5px;
  border: 1px solid rgba(18, 56, 39, 0.22);
  text-align: center;
  vertical-align: middle;
}

.past-stage-score-table thead th,
.past-stage-score-table tbody th {
  background: rgba(18, 56, 39, 0.08);
  font-weight: 950;
}

.past-stage-score-table tbody th {
  width: 104px;
  text-align: left;
}

.past-stage-score-table td strong,
.past-stage-score-table td span {
  display: block;
}

.past-stage-score-table td strong {
  font-weight: 850;
}

.past-stage-score-table td span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.86rem;
}

.past-stage-score-list {
  display: grid;
  gap: 10px;
}

.past-stage-empty {
  display: grid;
  gap: 6px;
  min-height: 132px;
  padding: 18px;
  align-content: center;
  border: 1px dashed rgba(18, 56, 39, 0.32);
  border-radius: var(--radius);
  color: var(--pine);
  background:
    linear-gradient(135deg, rgba(18, 56, 39, 0.08), rgba(245, 234, 212, 0.65)),
    var(--paper);
}

.past-stage-empty strong {
  font-size: 1rem;
  font-weight: 950;
  text-transform: uppercase;
}

.past-stage-empty span {
  max-width: 620px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.past-stage-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

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

.stage-board {
  display: grid;
  gap: 14px;
}

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

.stage-button {
  min-height: 48px;
  padding: 0 12px;
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: #fff9ed;
  cursor: pointer;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 950;
  line-height: 1.15;
  text-align: center;
}

.stage-button[aria-selected="true"],
.stage-button:hover {
  color: #fffdf3;
  border-color: var(--clay);
  background: var(--clay);
}

.stage-detail {
  display: grid;
  gap: 14px;
  padding: 18px;
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: #fff9ed;
}

.stage-detail[hidden],
.stage-detail-actions[hidden],
.stage-poster-gallery[hidden] {
  display: none;
}

.stage-detail h3 {
  color: var(--pine);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.95;
}

.stage-summary {
  max-width: 720px;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.55;
}

.stage-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.stage-poster-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.stage-poster-gallery figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(23, 32, 24, 0.12);
  border-radius: var(--radius);
  background: #111;
}

.stage-poster-gallery img {
  width: 100%;
  aspect-ratio: 9 / 14;
  object-fit: contain;
  background: #111;
}

.stage-poster-gallery figcaption {
  padding: 10px 12px;
  color: var(--muted);
  background: #fff;
  font-size: 0.82rem;
  line-height: 1.35;
}

.calendar-date {
  min-height: 158px;
  display: grid;
  align-content: space-between;
  gap: 8px;
  padding: 16px;
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: #fff9ed;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
}

.calendar-date.next {
  grid-row: span 2;
  color: #fffdf3;
  background:
    radial-gradient(circle at 90% 12%, rgba(255, 224, 198, 0.2), transparent 32%),
    linear-gradient(145deg, var(--clay), #8d361f);
}

.calendar-date:last-child {
  grid-column: 2 / span 2;
}

.calendar-date span,
.calendar-date small {
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.35;
}

.calendar-date span {
  width: fit-content;
  padding: 6px 8px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.16);
  text-transform: uppercase;
}

.calendar-date strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 0.82;
}

.calendar-date em {
  font-style: normal;
  font-size: 1.05rem;
  font-weight: 950;
}

.calendar-date small {
  color: var(--muted);
}

.calendar-date.next small {
  color: rgba(255, 253, 243, 0.78);
}

.band-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  margin-bottom: 18px;
}

.band-head p {
  max-width: 700px;
  color: var(--muted);
  line-height: 1.6;
}

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

.range-overview {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(245, 234, 212, 0.92)),
    var(--paper);
}

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

.range-card {
  min-height: 360px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 34px rgba(8, 29, 22, 0.12);
}

.range-card.technical {
  background:
    linear-gradient(135deg, rgba(18, 56, 39, 0.08), transparent),
    #fff;
}

.range-card.plinking {
  background:
    linear-gradient(135deg, rgba(47, 99, 136, 0.1), transparent),
    #fff;
}

.range-card h3 {
  margin-top: 14px;
  color: var(--pine);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 3rem);
  line-height: 1;
}

.range-card p,
.range-card li {
  color: var(--muted);
  line-height: 1.58;
}

.range-card p {
  margin-top: 14px;
}

.range-card ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding-left: 18px;
}

.range-gallery-trigger {
  width: 100%;
  margin-top: 22px;
}

.photo-gallery-modal[hidden] {
  display: none;
}

.photo-gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: clamp(14px, 4vw, 42px);
}

.gallery-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(8, 29, 22, 0.78);
}

.photo-gallery-panel {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(1040px, 100%);
  max-height: min(86vh, 820px);
  gap: 18px;
  padding: clamp(16px, 3vw, 28px);
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
}

.gallery-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.gallery-head h2 {
  margin: 10px 0 0;
  color: var(--pine);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 4vw, 3.2rem);
  line-height: 1;
}

.gallery-close {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--pine);
  border-radius: var(--radius);
  color: var(--pine);
  background: #fff;
  font-weight: 950;
  cursor: pointer;
}

.gallery-close-bottom {
  justify-self: end;
  min-width: 140px;
}

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

.photo-gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 24px rgba(8, 29, 22, 0.14);
}

.school-gallery-grid img {
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  background: #111;
}

.gallery-is-open {
  overflow: hidden;
}

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

.program-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}

.info-card,
.event-card,
.faq-card,
.booking-card,
.ticket {
  padding: 18px;
}

.info-card p,
.event-card p,
.faq-card p,
.booking-card p,
.ticket p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.6;
}

.target-box {
  display: grid;
  place-items: center;
  min-height: 340px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    repeating-linear-gradient(0deg, rgba(8, 29, 22, 0.08), rgba(8, 29, 22, 0.08) 1px, transparent 1px, transparent 18px),
    linear-gradient(135deg, #fff, #f8f1e4);
}

.target {
  width: min(260px, 80vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, #f9f1e4 0 6%, var(--clay) 6% 12%, #f9f1e4 12% 22%, var(--sky) 22% 36%, #f9f1e4 36% 52%, var(--pine) 52% 70%, #f9f1e4 70%);
  border: 10px solid #efe1c5;
  box-shadow: inset 0 0 0 1px rgba(8, 29, 22, 0.2), 0 20px 44px rgba(8, 29, 22, 0.2);
}

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

.date {
  min-height: 122px;
  display: grid;
  place-items: center;
  padding: 12px;
  color: #fffdf3;
  text-align: center;
  border-radius: var(--radius);
  background: var(--pine);
}

.date strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 0.9;
}

.date span {
  display: block;
  margin-top: 8px;
  font-weight: 900;
}

.month-archive {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(245, 234, 212, 0.9)),
    var(--paper);
}

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

.month-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 100%;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 30px rgba(8, 29, 22, 0.1);
}

.month-card header {
  display: grid;
  gap: 10px;
}

.month-card h3 {
  color: var(--pine);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.featured-month {
  grid-row: span 2;
}

.month-poster {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
}

.month-poster img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  object-position: top center;
}

.month-assets {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.month-assets li {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 10px;
  border: 1px solid rgba(23, 32, 24, 0.1);
  border-radius: var(--radius);
  background: rgba(245, 234, 212, 0.38);
}

.month-assets strong {
  color: var(--clay);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.month-assets span,
.month-assets a {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.4;
}

.month-assets a {
  color: var(--sky);
  font-weight: 950;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.program {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.program li {
  display: block;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  font-size: 0.98rem;
  line-height: 1.2;
  overflow-x: auto;
  scrollbar-width: none;
  white-space: nowrap;
}

.program time {
  color: var(--clay);
  font-weight: 950;
}

.program span {
  display: block;
  min-width: 0;
}

.schedule-band,
.lifestyle-band,
.youtube-band,
.signup-band,
.contact-band {
  scroll-margin-top: 252px;
}

.youtube-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.youtube-card {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 210px;
  overflow: hidden;
  padding: 14px;
  color: #fffdf3;
  border: 1px solid rgba(23, 32, 24, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(18, 56, 39, 0.92), rgba(47, 99, 136, 0.86)),
    var(--pine);
  box-shadow: 0 16px 34px rgba(8, 29, 22, 0.14);
}

.youtube-card.with-thumb {
  grid-column: span 2;
  min-height: 260px;
}

.youtube-card img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.youtube-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(8, 29, 22, 0.12), rgba(8, 29, 22, 0.84));
}

.youtube-card span {
  position: relative;
  z-index: 2;
  font-size: 1rem;
  font-weight: 950;
  line-height: 1.22;
}

.signup-form {
  display: grid;
  grid-template-columns: minmax(150px, 0.85fr) minmax(170px, 0.9fr) minmax(320px, 1.35fr) minmax(150px, 0.85fr) auto;
  gap: 10px;
  align-items: end;
}

.signup-form label,
.category-field {
  display: grid;
  gap: 7px;
  color: #fffdf3;
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.category-field {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.category-field legend {
  margin-bottom: 7px;
  padding: 0;
}

.category-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  min-height: 48px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: #fff9ed;
}

.category-options label {
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: none;
}

.signup-form input,
.signup-form select {
  width: 100%;
  min-height: 48px;
  padding: 0 12px;
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: #fff9ed;
  font: inherit;
  font-size: 0.94rem;
  font-weight: 800;
}

.signup-form input[type="checkbox"] {
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  margin: 0;
  padding: 0;
  accent-color: var(--clay);
}

.form-hint {
  color: #ffe0c6;
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1.25;
  text-transform: none;
}

.signup-form button {
  min-height: 48px;
}

.contact-actions {
  margin-top: 0;
}

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

.partner {
  display: grid;
  place-items: center;
  min-height: 108px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.partner img {
  max-height: 70px;
  object-fit: contain;
}

.supporter-footer {
  display: grid;
  gap: 24px;
  margin-top: 14px;
  padding: clamp(30px, 5vw, 54px) clamp(16px, 5vw, 72px);
  color: #fff9ed;
  background:
    linear-gradient(135deg, rgba(18, 56, 39, 0.94), rgba(34, 46, 31, 0.96)),
    #123827;
  border-top: 1px solid rgba(255, 249, 237, 0.16);
}

.supporter-footer-head {
  display: flex;
  gap: 16px;
  align-items: end;
  justify-content: space-between;
}

.supporter-footer h2 {
  max-width: 620px;
  margin: 0;
  color: #fff9ed;
  font-size: clamp(1.45rem, 3vw, 2.3rem);
  line-height: 1;
  text-align: left;
}

.supporter-group {
  display: grid;
  gap: 12px;
}

.supporter-group-title {
  margin: 0;
  color: #fff9ed;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.supporter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}

.supporter-card {
  display: grid;
  place-items: center;
  min-height: clamp(118px, 14vw, 168px);
  padding: clamp(14px, 2.2vw, 28px);
  overflow: hidden;
  border: 1px solid rgba(255, 249, 237, 0.2);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 38px rgba(2, 11, 8, 0.24);
}

.supporter-card img {
  display: block;
  width: min(100%, 260px);
  max-height: 104px;
  object-fit: contain;
  filter: saturate(1.04) contrast(1.03);
}

.client-asset-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.72fr) minmax(260px, 0.72fr);
  gap: 14px;
  align-items: stretch;
}

.client-asset {
  display: grid;
  grid-template-rows: minmax(240px, 1fr) auto;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 34px rgba(8, 29, 22, 0.12);
}

.client-asset.wide,
.client-asset.tall {
  grid-row: span 2;
}

.client-asset img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  object-position: top center;
}

.client-asset figcaption {
  display: grid;
  gap: 6px;
  padding: 14px;
}

.client-asset figcaption strong {
  color: var(--pine);
  font-weight: 950;
}

.client-asset figcaption span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.dark-panel {
  color: #fffdf3;
  background:
    linear-gradient(135deg, rgba(8, 29, 22, 0.98), rgba(18, 56, 39, 0.92)),
    var(--pine-dark);
}

.dark-panel .band-head p,
.dark-panel .info-card p,
.dark-panel .event-card p,
.dark-panel .faq-card p,
.dark-panel .booking-card p {
  color: rgba(255, 253, 243, 0.76);
}

.dark-panel .info-card,
.dark-panel .event-card,
.dark-panel .faq-card,
.dark-panel .booking-card {
  color: #fffdf3;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.dark-panel h2,
.dark-panel h3 {
  color: #fff;
}

.video-slot {
  display: grid;
  gap: 12px;
  min-height: 210px;
  align-content: center;
  justify-items: start;
  padding: 18px;
  border: 1px dashed rgba(255, 255, 255, 0.34);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.video-slot strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
}

.media-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(255, 253, 243, 0.38);
  border-radius: var(--radius);
  color: #fffdf3;
  background: var(--clay);
  font-size: 0.88rem;
  font-weight: 950;
}

.media-link:hover {
  background: #a84427;
}

.notice {
  margin-top: 18px;
  padding: 14px;
  border-left: 5px solid var(--clay);
  background: rgba(199, 83, 45, 0.1);
  color: var(--pine);
  line-height: 1.55;
}

.crania-demo-footer {
  display: grid;
  gap: 16px;
  padding: 24px clamp(14px, 4vw, 54px);
  color: #fffdf3;
  background: #050b09;
}

.crania-demo-footer p {
  max-width: 720px;
  color: rgba(255, 253, 243, 0.82);
  line-height: 1.55;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-link-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.footer-link-group span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 10px;
  border-radius: var(--radius);
  color: #ffe0c6;
  background: rgba(199, 83, 45, 0.18);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.crania-demo-footer a {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 900;
}

@media (max-width: 1050px) {
  .topbar-sticky {
    flex-wrap: wrap;
  }

  .topbar-sticky .main-nav {
    flex-basis: 100%;
    min-height: 76px;
    overflow-x: auto;
  }

  .hero-page,
  .calendar-feature,
  .split-grid {
    grid-template-columns: 1fr;
  }

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

  .range-cards,
  .stage-poster-gallery,
  .category-options,
  .signup-form,
  .ballistic-tool-tabs {
    grid-template-columns: 1fr;
  }

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

  .ballistic-panel {
    grid-template-columns: 1fr;
  }

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

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

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

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

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

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

  .youtube-card.with-thumb {
    grid-column: span 2;
  }
}

@media (max-width: 720px) {
  .topbar,
  .band-head {
    align-items: stretch;
    flex-direction: column;
  }

  .brand {
    align-items: flex-start;
    flex-direction: column;
  }

  .header-brand-actions {
    justify-content: space-between;
    width: 100%;
  }

  .brand img {
    width: min(288px, 82vw);
    height: min(288px, 82vw);
  }

  .brand-tagline {
    max-width: 12ch;
    font-size: clamp(1.55rem, 7vw, 1.8rem);
  }

  .page-tabs {
    flex: none;
    justify-content: flex-start;
    width: 100%;
  }

  .topbar-sticky .main-nav {
    grid-template-columns: repeat(7, minmax(128px, 1fr));
    min-height: auto;
  }

  .hero-copy {
    min-height: auto;
  }

  h1 {
    max-width: none;
    font-size: clamp(2.55rem, 15vw, 4.1rem);
  }

  .actions,
  .button {
    width: 100%;
  }

  .score-grid,
  .card-grid,
  .calendar-panel,
  .past-stage-buttons,
  .stage-buttons,
  .past-stage-gallery,
  .date-grid,
  .month-grid,
  .partner-grid,
  .faq-grid,
  .youtube-grid,
  .client-asset-grid {
    grid-template-columns: 1fr;
  }

  .ballistic-tool-tabs,
  .ballistic-form-grid,
  .ballistic-converter-grid,
  .ballistic-pcp-grid {
    grid-template-columns: 1fr;
  }

  .ballistic-tool-tabs button {
    min-height: 0;
    grid-template-columns: 38px 1fr;
    justify-items: start;
    text-align: left;
  }

  .ballistic-tool-tabs button small {
    grid-column: 2;
  }

  .shooting-school-band {
    grid-template-columns: 1fr;
  }

  .shooting-school-copy {
    text-align: center;
  }

  .shooting-school-copy .label {
    margin-inline: auto;
  }

  .shooting-school-gallery-trigger {
    width: 100%;
  }

  .past-stage-gallery-head {
    align-items: start;
    flex-direction: column;
  }

  .past-stage-gallery-head span {
    text-align: left;
  }

  .supporter-footer-head {
    align-items: stretch;
    flex-direction: column;
  }

  .supporter-footer h2 {
    max-width: none;
    text-align: left;
  }

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

  .topbar-sticky {
    position: static;
  }

  .hero-quick,
  .contact-actions {
    width: 100%;
  }

  .hero-quick .button,
  .contact-actions .button,
  .signup-form button {
    width: 100%;
  }

  .youtube-card.with-thumb {
    grid-column: auto;
  }

  .calendar-date.next,
  .calendar-date:last-child {
    grid-column: auto;
    grid-row: auto;
  }

  .video-caption {
    position: static;
    margin: 10px;
  }

  .photo-gallery-panel {
    max-height: 90vh;
  }

  .gallery-head {
    align-items: stretch;
    flex-direction: column;
  }

  .gallery-close {
    width: 100%;
  }

  .photo-gallery-grid {
    grid-template-columns: 1fr;
  }

  .program li {
    padding: 11px 10px;
    font-size: 0.9rem;
  }

  .featured-month {
    grid-row: auto;
  }

  .month-assets li {
    grid-template-columns: 1fr;
  }
}
