@charset "UTF-8";

@font-face {
  font-family: "Secular One";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/secular-one-400.ttf") format("truetype");
}

@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../fonts/playfair-display-800.ttf") format("truetype");
}

@font-face {
  font-family: "Playfair Display";
  font-style: italic;
  font-weight: 800;
  font-display: swap;
  src: url("../fonts/playfair-display-800-italic.ttf") format("truetype");
}

:root {
  --color-charcoal: #303033;
  --color-warm: #e1dfdb;
  --color-paper: #f9f9f9;
  --color-ink: #1c1c1c;
  --color-white: #ffffff;
  --color-link: #303033;
  --color-focus: #2468c4;
  --color-muted: #676767;
  --font-body: "Secular One", Arial, Helvetica, sans-serif;
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --content-width: 1280px;
  --content-gutter: 64px;
  --header-height: 64px;
  --hero-height: 340px;
  --section-space: 48px;
  --radius: 4px;
  --shadow-raised: 0 8px 28px rgb(0 0 0 / 18%);
}

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

html {
  min-width: 320px;
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  background: var(--color-white);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  overflow-wrap: break-word;
}

body.nav-open {
  overflow: hidden;
}

main {
  display: block;
  flex: 1 0 auto;
}

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

img,
video {
  height: auto;
}

iframe {
  max-width: 100%;
  border: 0;
}

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

button,
[type="button"],
[type="submit"] {
  cursor: pointer;
}

a {
  color: var(--color-link);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}

a:hover {
  text-decoration-thickness: 2px;
}

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

.content-section--dark :focus-visible,
.section--dark :focus-visible,
.site-footer :focus-visible {
  outline-color: var(--color-white);
  box-shadow: 0 0 0 2px var(--color-ink);
}

[tabindex="-1"]:focus {
  outline: none;
}

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 10000;
  padding: 10px 16px;
  transform: translateY(-160%);
  border-radius: var(--radius);
  background: var(--color-white);
  color: var(--color-ink);
  font-weight: 700;
  text-decoration: none;
  transition: transform 160ms ease;
}

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

.sr-only,
.screen-reader-text,
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Typography */

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-charcoal);
  font-family: var(--font-display);
  font-weight: 800;
}

h1 {
  margin: 34px 0 0;
  font-size: 64px;
  line-height: 1.14;
}

h2 {
  margin: 18px 0 0;
  font-size: 40px;
  font-style: italic;
  line-height: 1.5;
  text-align: center;
}

h3 {
  margin: 14px 0 0;
  font-size: 18.667px;
  line-height: 1.5;
}

h4,
h5,
h6 {
  margin: 16px 0 0;
  line-height: 1.4;
}

p {
  margin: 12px 0 0;
}

ul,
ol {
  margin: 12px 0 0;
  padding-left: 1.5em;
}

li + li {
  margin-top: 0.35em;
}

blockquote {
  margin: 24px 0;
  padding: 4px 0 4px 22px;
  border-left: 4px solid var(--color-charcoal);
  font-family: var(--font-display);
  font-size: 1.1rem;
}

hr {
  height: 1px;
  margin: 32px 0;
  border: 0;
  background: rgb(28 28 28 / 18%);
}

/* Header and primary navigation */

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 100;
  min-height: var(--header-height);
  color: var(--color-paper);
}

.site-header::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to bottom, rgb(0 0 0 / 34%), transparent);
  content: "";
  pointer-events: none;
}

.header-inner,
.site-header__inner {
  display: flex;
  width: 100%;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 8px 28px;
}

.site-brand,
.brand,
.site-logo {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  color: inherit;
  line-height: 1;
  text-decoration: none;
}

.site-logo img,
.site-brand img,
.brand img {
  width: auto;
  height: 44px;
  object-fit: contain;
}

.site-logo:focus-visible,
.site-brand:focus-visible,
.brand:focus-visible,
.site-nav a:focus-visible,
.site-nav button:focus-visible,
.nav-toggle:focus-visible {
  outline-color: var(--color-white);
  box-shadow: 0 0 0 2px rgb(28 28 28 / 55%);
}

.site-nav {
  margin-left: auto;
}

.nav-list,
.dropdown,
.dropdown-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-list > li {
  position: relative;
  margin: 0;
}

.nav-list a,
.dropdown-toggle {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 6px 10px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--color-paper);
  font-size: 16px;
  line-height: 1.35;
  text-decoration: none;
  white-space: nowrap;
}

.nav-list a:hover,
.dropdown-toggle:hover,
.has-dropdown:hover > .dropdown-toggle {
  color: rgb(249 249 249 / 82%);
}

.nav-list a[aria-current="page"],
.nav-list .active > a,
.nav-list a.active,
.has-dropdown.is-current-section > .dropdown-toggle {
  background: var(--color-white);
  color: var(--color-ink);
}

.dropdown-toggle::after {
  width: 0;
  height: 0;
  border-top: 5px solid currentColor;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  content: "";
  transition: transform 150ms ease;
}

.dropdown-toggle > svg {
  display: none;
}

.has-dropdown.is-open > .dropdown-toggle::after,
.dropdown-toggle[aria-expanded="true"]::after {
  transform: rotate(180deg);
}

.dropdown,
.dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 120;
  width: max-content;
  min-width: 230px;
  padding: 7px 0;
  transform: translateY(-6px);
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: 2px;
  background: var(--color-charcoal);
  box-shadow: var(--shadow-raised);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 140ms ease, transform 140ms ease, visibility 140ms ease;
}

.dropdown li,
.dropdown-menu li {
  margin: 0;
}

.dropdown a,
.dropdown-menu a {
  display: flex;
  width: 100%;
  min-height: 38px;
  justify-content: flex-start;
  padding: 8px 16px;
  white-space: normal;
}

.has-dropdown:hover > .dropdown,
.has-dropdown:hover > .dropdown-menu,
.has-dropdown:focus-within > .dropdown,
.has-dropdown:focus-within > .dropdown-menu,
.has-dropdown.is-open > .dropdown,
.has-dropdown.is-open > .dropdown-menu,
.dropdown.is-open,
.dropdown-menu.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border: 0;
  background: transparent;
  color: var(--color-paper);
}

.nav-toggle-icon,
.nav-toggle-icon::before,
.nav-toggle-icon::after {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 1px;
  background: currentColor;
  content: "";
  transition: transform 160ms ease, opacity 160ms ease;
}

.nav-toggle-icon {
  position: relative;
}

.nav-toggle-icon::before {
  position: absolute;
  top: -6px;
}

.nav-toggle-icon::after {
  position: absolute;
  top: 6px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.no-hero .site-header,
.statute-page .site-header,
.site-header.site-header--solid {
  position: relative;
  background: var(--color-ink);
}

.no-hero .site-header::before,
.statute-page .site-header::before,
.site-header.site-header--solid::before {
  display: none;
}

/* Heroes */

.page-hero,
.hero {
  position: relative;
  display: grid;
  height: var(--hero-height);
  min-height: var(--hero-height);
  place-items: center;
  overflow: hidden;
  padding: var(--header-height) var(--content-gutter);
  isolation: isolate;
  background-color: var(--color-charcoal);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--color-paper);
}

.page-hero--image,
.hero--image {
  background-image: url("../images/shared/hero.jpg");
}

.page-hero--simple,
.hero--simple {
  background-color: #777779;
  background-image: var(--hero-image, url("../images/shared/simple-header.png"));
}

.page-hero::before,
.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgb(0 0 0 / 32%);
  content: "";
}

.page-hero > img,
.page-hero > picture,
.hero > img,
.hero > picture,
.page-hero__image,
.hero__image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
}

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

.page-hero__content,
.page-hero__inner,
.hero__content,
.hero__inner {
  position: relative;
  width: min(100%, var(--content-width));
  text-align: center;
}

.page-hero .content-container,
.hero .content-container {
  padding-inline: 0;
}

.page-hero h1,
.page-hero .page-title,
.hero h1,
.hero .hero-title {
  max-width: 1180px;
  margin: 0 auto;
  color: var(--color-paper);
  font-size: 64px;
  line-height: 1.14;
  text-align: center;
  text-wrap: balance;
}

.page-hero--graphic,
.page-hero--plain,
.hero--graphic,
.hero--plain {
  background-color: #777779;
}

.page-hero--graphic::before,
.page-hero--plain::before,
.hero--graphic::before,
.hero--plain::before {
  background: rgb(28 28 28 / 18%);
}

.page-hero--left,
.hero--left {
  place-items: center start;
}

.page-hero--left .page-hero__inner,
.page-hero--left .hero__inner,
.page-hero--left h1,
.page-hero--left .page-title,
.hero--left .hero__inner,
.hero--left h1,
.hero--left .hero-title {
  margin-left: 0;
  text-align: left;
}

.page-hero--sans h1,
.page-hero--sans .page-title,
.hero--sans h1,
.hero--sans .hero-title {
  font-family: var(--font-body);
  font-weight: 700;
}

.page-hero__subtitle,
.hero__subtitle {
  margin-top: 4px;
  font-size: 18px;
}

.page-branding .page-hero__subtitle {
  font-family: var(--font-body);
  font-size: 32px;
  font-weight: 700;
}

/* Shared sections and grids */

.container,
.content,
.content-container,
.section-inner,
.content-section__inner,
.footer-inner,
.events-inner {
  width: 100%;
  max-width: var(--content-width);
  margin-inline: auto;
  padding-inline: var(--content-gutter);
}

.content-section,
.section {
  position: relative;
  padding-block: 24px;
  background: var(--color-white);
}

.content-section--spacious,
.section--spacious {
  padding-block: 56px;
}

.content-section--warm,
.content-section--muted,
.section--warm,
.theme-warm,
.bg-warm {
  background: var(--color-warm);
}

.content-section--paper,
.section--paper,
.theme-paper,
.bg-paper {
  background: var(--color-paper);
}

.content-section--dark,
.section--dark,
.theme-dark,
.bg-dark {
  background: var(--color-charcoal);
  color: var(--color-paper);
}

.content-section--dark h1,
.content-section--dark h2,
.content-section--dark h3,
.content-section--dark h4,
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4,
.theme-dark h1,
.theme-dark h2,
.theme-dark h3,
.theme-dark h4,
.bg-dark h1,
.bg-dark h2,
.bg-dark h3,
.bg-dark h4 {
  color: var(--color-paper);
}

.content-section--dark a,
.section--dark a,
.theme-dark a,
.bg-dark a {
  color: var(--color-paper);
}

.section-title {
  margin: 0 0 28px;
  color: var(--color-charcoal);
  font-family: var(--font-display);
  font-size: 40px;
  font-style: italic;
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
  text-wrap: balance;
}

.section-subtitle {
  max-width: 800px;
  margin: -12px auto 28px;
  text-align: center;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  align-items: center;
  gap: 30px;
}

.content-grid--equal,
.content-grid--two,
.grid-two,
.two-column {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.content-grid--split {
  grid-template-columns: minmax(0, 8fr) minmax(0, 4fr);
}

.content-grid--sidebar,
.content-grid--sidebar-left {
  grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
}

.content-grid--sidebar-right {
  grid-template-columns: minmax(0, 8fr) minmax(0, 4fr);
}

.content-grid--two-thirds {
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
}

.content-grid--two-thirds > :only-child {
  grid-column: 1;
}

.content-grid--brand-sizes {
  grid-template-columns: minmax(0, 2fr) repeat(2, minmax(120px, 1fr));
}

.content-grid--align-center {
  align-items: center;
}

.content-grid--wide-media {
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
}

.content-grid--top {
  align-items: start;
}

.content-grid--center {
  justify-items: center;
}

.rich-text {
  min-width: 0;
}

.prose {
  min-width: 0;
}

.prose p,
.prose--policy p,
.event-copy--justify p {
  text-align: justify;
}

.prose > :first-child {
  margin-top: 0;
}

.prose > :last-child {
  margin-bottom: 0;
}

.prose--wide {
  max-width: none;
}

.rich-text > :first-child,
.article-content > :first-child,
.contact-card > :first-child {
  margin-top: 0;
}

.rich-text > :last-child,
.article-content > :last-child,
.contact-card > :last-child {
  margin-bottom: 0;
}

.rich-text p,
.text-justify,
.article-content p {
  text-align: justify;
}

.media-frame {
  width: 100%;
  min-width: 0;
  margin: 0;
  overflow: hidden;
}

.media-frame img,
.media-frame video {
  width: 100%;
}

.media-frame--contain img {
  object-fit: contain;
}

.media-frame--video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.media-frame--video iframe,
.media-frame--video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.media-frame figcaption,
.image-card figcaption,
.gallery figcaption {
  padding-top: 7px;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.4;
}

.content-section--dark figcaption,
.section--dark figcaption,
.event-entry--dark figcaption {
  color: rgb(249 249 249 / 72%);
}

/* Buttons and calls to action */

.button,
.btn {
  display: inline-flex;
  min-height: 37px;
  align-items: center;
  justify-content: center;
  padding: 6px 18px;
  border: 1px solid var(--color-charcoal);
  border-radius: var(--radius);
  background: transparent;
  color: var(--color-charcoal);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.35;
  text-align: center;
  text-decoration: none;
  transition: background-color 140ms ease, color 140ms ease, box-shadow 140ms ease;
}

.button:hover,
.btn:hover {
  background: rgb(48 48 51 / 8%);
  text-decoration: none;
}

.button--primary,
.button--dark,
.btn--primary,
.donate-button {
  border-color: var(--color-charcoal);
  background: var(--color-charcoal);
  color: var(--color-paper);
}

.button--primary:hover,
.button--dark:hover,
.btn--primary:hover,
.donate-button:hover {
  background: var(--color-ink);
  color: var(--color-white);
}

.button--light {
  border-color: var(--color-paper);
  color: var(--color-paper);
}

.button--light:hover {
  background: var(--color-paper);
  color: var(--color-charcoal);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.cta-bar,
.home-actions {
  padding-block: 24px;
  background: var(--color-warm);
}

.content-section--compact {
  padding-block: 24px;
}

.cta-row {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  align-items: center;
  gap: 29px;
  padding-inline: var(--content-gutter);
}

.cta-row .button {
  width: 100%;
}

.cta-row .button:first-child {
  border-color: var(--color-charcoal);
  background: transparent;
  color: var(--color-charcoal);
}

.cta-row .button:first-child:hover {
  background: rgb(48 48 51 / 8%);
}

.cta-row .button:last-child {
  border-color: var(--color-charcoal);
  background: var(--color-charcoal);
  color: var(--color-paper);
}

.cta-row .button:last-child:hover {
  background: var(--color-ink);
}

.cta-bar__inner,
.home-actions__inner {
  display: grid;
  width: 100%;
  max-width: var(--content-width);
  margin-inline: auto;
  padding-inline: var(--content-gutter);
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 29px;
}

.cta-bar .button,
.home-actions .button {
  width: 100%;
}

/* Cards, contact blocks, downloads and embeds */

.card-grid,
.contact-grid,
.download-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.image-card,
.contact-card,
.download-card {
  min-width: 0;
}

.image-card {
  margin: 0;
  overflow: hidden;
}

.image-card--portrait-crop {
  aspect-ratio: 5 / 6;
}

.image-card--portrait-crop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-intro .content-grid {
  align-items: start;
}

.page-home .home-intro .content-grid--sidebar {
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  padding-inline: var(--content-gutter);
}

.home-intro__crest {
  width: auto;
  height: 150px;
  margin: 0 auto 72px;
  object-fit: contain;
}

.home-intro__copy {
  padding-top: 1px;
}

.home-intro + .content-section .prose h2 {
  margin: 28px 0 0;
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: 18.667px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
}

.name-list {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.name-list li {
  margin: 0 0 8px;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-card,
.download-card {
  padding: 24px;
  border: 1px solid rgb(28 28 28 / 14%);
  background: var(--color-paper);
}

.contact-card h2,
.contact-card h3,
.download-card h2,
.download-card h3 {
  margin-top: 0;
  font-style: normal;
  text-align: left;
}

.contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  margin: 0 0 12px;
}

.contact-details {
  font-style: normal;
}

.contact-details__number {
  color: #1155cc;
  white-space: nowrap;
}

.contact-details a {
  color: #1155cc;
  text-decoration: underline;
}

.option-block__number {
  margin: 0 0 5px;
  font-family: var(--font-body);
  font-size: 18.667px;
  font-weight: 400;
}

.option-block h2 {
  margin: 0;
  font-family: var(--font-body);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  text-align: left;
}

.option-block__action {
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-divider {
  width: min(
    calc(100% - var(--content-gutter) - var(--content-gutter)),
    calc(var(--content-width) - var(--content-gutter) - var(--content-gutter))
  );
  height: 2px;
  margin: 8px auto;
  border: 0;
  background: rgb(0 0 0 / 15%);
}

.button-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-top: 24px;
}

.brand-logo-section .button-stack,
.brand-logo-section .button-stack .button {
  width: 100%;
}

.brand-name-section {
  padding-block: 32px 28px;
}

.page-branding .brand-name-section .display-text--name {
  margin-top: 22px;
  text-align: left;
}

.brand-logo-section {
  padding-bottom: 34px;
}

.brand-logo-section .content-grid {
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  align-items: start;
}

.brand-logo-section .brand-label--display {
  margin-top: 40px;
}

.brand-logo-section .brand-image--crest {
  margin-top: 14px;
}

.brand-font-section {
  padding-bottom: 37px;
}

.brand-image {
  width: auto;
  max-width: 100%;
  max-height: 520px;
  margin-inline: auto;
  object-fit: contain;
}

.brand-image--crest {
  max-height: 360px;
}

.brand-image--icon {
  max-height: 320px;
}

.brand-image--wordmark {
  max-height: 260px;
}

.image-stack {
  display: grid;
  gap: 20px;
}

.page-independence-day .content-grid--sidebar-right {
  grid-template-columns: minmax(0, 1fr) 168px;
  align-items: start;
  gap: 38px;
}

.page-independence-day .image-stack {
  gap: 26px;
}

.page-independence-day .prose p {
  text-align: left;
}

.display-text {
  font-family: var(--font-body);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
}

.notice {
  padding: 14px 16px;
  border-left: 4px solid var(--color-charcoal);
  background: var(--color-warm);
}

.notice--warning {
  border-left-color: #9d5f00;
}

.remembrance-message {
  color: var(--color-charcoal);
  font-family: var(--font-body);
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.embed,
.embed-frame,
.video-embed,
.map-embed {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #dedede;
}

.video-embed,
.embed--video {
  aspect-ratio: 16 / 9;
}

.embed iframe,
.embed-frame iframe,
.video-embed iframe,
.map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
}

.video-embed iframe,
.embed--video iframe {
  position: absolute;
  inset: 0;
  min-height: 0;
}

/* Galleries */

.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 12px;
  margin-top: 24px;
}

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

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

.gallery--single {
  grid-template-columns: minmax(0, 1fr);
  max-width: 820px;
  margin-inline: auto;
}

.gallery-item,
.gallery figure,
.gallery > a {
  min-width: 0;
  margin: 0;
  overflow: hidden;
}

.gallery-item img,
.gallery figure img,
.gallery > a img,
.gallery > img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

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

.gallery-item--portrait img {
  aspect-ratio: 3 / 4;
}

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

.gallery-item--wide img {
  aspect-ratio: 2 / 1;
}

.gallery-item--full {
  grid-column: 1 / -1;
}

.gallery a {
  color: inherit;
}

/* Events archive */

.events-heading,
.events-intro,
.events-empty {
  text-align: center;
}

.events-heading {
  display: flex;
  min-height: 125px;
  align-items: center;
  padding-block: 0;
}

.events-section-title {
  margin: 0;
}

.events-status {
  min-height: 105px;
  padding-block: 0;
  text-align: left;
}

.events-status .content-container {
  display: flex;
  min-height: 98px;
  align-items: center;
  border-bottom: 2px solid var(--color-warm);
}

.events-status .prose p {
  padding-left: 8px;
  text-align: left;
}

.events-spacer {
  display: none;
}

.events-empty {
  min-height: 96px;
}

.events-list {
  background: var(--color-charcoal);
}

.event-entry,
.events-item,
.event-section {
  padding-block: 48px;
}

.events-list > :is(.event-entry, .events-item, .event-section):nth-child(odd) {
  background: var(--color-charcoal);
  color: var(--color-paper);
}

.event-entry--dark,
.events-item--dark,
.event-section--dark {
  background: var(--color-charcoal) !important;
  color: var(--color-paper);
}

.event-entry--warm,
.events-item--warm,
.event-section--warm {
  background: var(--color-warm) !important;
  color: var(--color-ink);
}

.event-entry.content-section--dark,
.events-item.content-section--dark,
.event-section.content-section--dark {
  background: var(--color-charcoal);
  color: var(--color-paper);
}

.event-entry.content-section--muted,
.events-item.content-section--muted,
.event-section.content-section--muted {
  background: var(--color-warm);
  color: var(--color-ink);
}

.event-entry h2,
.event-entry h3,
.events-item h2,
.events-item h3,
.event-section h2,
.event-section h3 {
  color: inherit;
}

.event-title {
  margin: 0 0 18px;
  font-size: 30px;
  font-style: italic;
  line-height: 1.35;
  text-align: center;
  text-wrap: balance;
}

.event-date {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-weight: 800;
  text-align: center;
}

.event-entry__title {
  margin: 0;
  color: inherit;
  font-size: 18.667px;
  line-height: 1.5;
}

.event-entry__subtitle {
  margin: 12px 0 0;
  color: inherit;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
}

.event-entry__content {
  min-width: 0;
}

.event-entry--featured {
  padding-top: 24px;
}

.event-entry--featured .event-layout--columns-2 {
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 20px;
}

.event-entry--featured .event-copy {
  align-self: start;
  padding: 18px 0 0 8px;
}

.event-entry--featured .event-copy p {
  margin-top: 32px;
}

.event-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: stretch;
  gap: 30px;
}

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

.event-layout + .event-layout {
  margin-top: 30px;
}

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

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

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

.event-layout--columns-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

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

.event-layout--spacer {
  min-height: 96px;
}

.event-layout__item {
  min-width: 0;
}

.event-layout__item--empty {
  min-height: 1px;
}

.event-copy {
  align-self: center;
}

.event-photo {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 180px;
  align-self: start;
  align-items: center;
  justify-content: center;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgb(255 255 255 / 10%), transparent 52%),
    rgb(0 0 0 / 12%);
}

.event-photo__image {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: contain;
  object-position: center center;
}

.event-gallery-grid .event-photo {
  aspect-ratio: 4 / 3;
}

.event-layout--content-only {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 360px), 1fr));
}

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

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

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

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

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

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

.event-gallery .event-photo {
  min-height: 0;
  aspect-ratio: 1 / 1;
}

.event-gallery .event-photo__image {
  min-height: 0;
}

.event-description {
  max-width: 1000px;
  margin: 0 auto;
}

.event-description p {
  text-align: justify;
}

/* Progressive event carousels. The original grids remain as an uncropped
   no-JavaScript fallback; large galleries are enhanced at runtime. */

.event-showcase {
  margin-top: 36px;
}

.event-showcase__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 14px;
}

.event-showcase__title {
  margin: 0;
  color: inherit;
  font-size: clamp(22px, 2.2vw, 30px);
  font-style: italic;
  line-height: 1.25;
  text-align: left;
}

.event-showcase__status {
  flex: 0 0 auto;
  margin: 0;
  color: inherit;
  font-size: 14px;
  letter-spacing: 0.04em;
  opacity: 0.78;
}

.event-showcase__stage {
  position: relative;
  isolation: isolate;
  height: clamp(300px, 56vw, 720px);
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 16%);
  border-radius: calc(var(--radius) * 2);
  background: #19191b;
  box-shadow: var(--shadow-raised);
  touch-action: pan-y;
}

.content-section--muted .event-showcase__stage {
  border-color: rgb(28 28 28 / 14%);
}

.event-showcase__backdrop,
.event-showcase__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.event-showcase__backdrop {
  z-index: -2;
  transform: scale(1.09);
  filter: blur(30px) saturate(0.85);
  object-fit: cover;
  opacity: 0.42;
}

.event-showcase__stage::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to bottom, rgb(0 0 0 / 8%), rgb(0 0 0 / 25%));
  content: "";
  pointer-events: none;
}

.event-showcase__image {
  z-index: 1;
  padding: clamp(8px, 1.4vw, 18px);
  object-fit: contain;
  object-position: center center;
  transition: opacity 150ms ease, transform 220ms ease;
}

.event-showcase__stage.is-changing .event-showcase__image {
  transform: scale(0.992);
  opacity: 0.35;
}

.event-showcase__control {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  padding: 0;
  transform: translateY(-50%);
  border: 1px solid rgb(255 255 255 / 42%);
  border-radius: 50%;
  background: rgb(18 18 20 / 72%);
  color: var(--color-white);
  box-shadow: 0 4px 18px rgb(0 0 0 / 30%);
  font-size: 28px;
  line-height: 1;
  transition: background-color 150ms ease, transform 150ms ease;
}

.event-showcase__control:hover {
  transform: translateY(-50%) scale(1.06);
  background: rgb(18 18 20 / 92%);
}

.event-showcase__control--previous {
  left: 16px;
}

.event-showcase__control--next {
  right: 16px;
}

.event-carousel__track {
  display: flex;
  gap: 12px;
  margin-top: 14px;
  padding: 4px 2px 13px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
  scrollbar-color: currentColor transparent;
  scrollbar-width: thin;
}

.event-carousel__item {
  position: relative;
  flex: 0 0 clamp(126px, 18%, 210px);
  min-width: 0;
  margin: 0;
  scroll-snap-align: start;
}

.event-carousel__thumbnail {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  padding: 0;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: var(--radius);
  background: rgb(0 0 0 / 18%);
  color: inherit;
  opacity: 0.72;
  transition: border-color 150ms ease, opacity 150ms ease, transform 150ms ease;
}

.event-carousel__thumbnail:hover {
  opacity: 1;
}

.event-carousel__thumbnail[aria-current="true"] {
  transform: translateY(-2px);
  border-color: currentColor;
  opacity: 1;
  box-shadow: 0 5px 16px rgb(0 0 0 / 22%);
}

.event-carousel__thumbnail-image {
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 12%);
  object-fit: contain;
  object-position: center center;
}

.event-carousel__number {
  position: absolute;
  right: 6px;
  bottom: 6px;
  display: inline-grid;
  min-width: 26px;
  min-height: 26px;
  place-items: center;
  padding: 2px 6px;
  border-radius: 999px;
  background: rgb(18 18 20 / 78%);
  color: var(--color-white);
  font-size: 12px;
  line-height: 1;
}

.event-entry .gallery,
.events-item .gallery,
.event-section .gallery {
  margin-top: 28px;
}

.event-entry video,
.events-item video,
.event-section video {
  width: 100%;
  max-height: 720px;
  background: #000;
}

/* Long-form and policy pages */

.article,
.article-page {
  background: var(--color-white);
}

.article-content,
.policy-content,
.privacy-content {
  width: 100%;
  max-width: 1040px;
  margin-inline: auto;
}

.article-content h2,
.policy-content h2,
.privacy-content h2 {
  margin-top: 34px;
}

.article-content h3,
.policy-content h3,
.privacy-content h3 {
  margin-top: 28px;
}

.article-lead {
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.65;
}

.article-meta,
.citation,
.source-note {
  color: var(--color-muted);
  font-size: 0.875rem;
}

.references {
  font-size: 0.925rem;
}

.references li {
  margin-top: 0.75em;
}

.content-label,
.policy-heading,
.brand-label,
.article-subheading {
  color: inherit;
  font-family: var(--font-body);
  font-style: normal;
  line-height: 1.5;
  text-align: left;
}

.content-label,
.brand-label--regular,
.brand-label--strong {
  margin: 14px 0 0;
  font-size: 18.667px;
}

.content-label--regular,
.brand-label--regular {
  font-weight: 400;
}

.content-label--strong,
.brand-label--strong {
  font-weight: 700;
}

.policy-heading {
  margin: 28px 0 0;
  font-size: 24px;
  font-weight: 700;
}

.brand-label--display {
  margin: 14px 0 0;
  font-size: 40px;
  font-weight: 700;
}

.display-text--name {
  font-size: 40px;
}

.display-text--font {
  font-size: 32px;
}

.page-branding #official-name-title {
  font-size: 24px;
}

.page-home .home-intro__copy,
.page-contacts .contact-details {
  font-size: 21.333px;
}

.page-home .home-intro + .content-section .prose,
.page-apply main .content-section {
  font-size: 18.667px;
}

.page-operation-pedestal .prose {
  font-size: 20px;
  line-height: 1.4;
}

.page-operation-pedestal .page-hero + .content-section--dark {
  min-height: 484px;
  padding-block: 32px;
}

.page-operation-pedestal .content-grid--align-center {
  align-items: start;
}

.page-operation-pedestal .media-frame--video {
  aspect-ratio: 3.75 / 1;
}

@media (min-width: 1200px) {
  .page-operation-pedestal .content-grid--two {
    grid-template-columns: minmax(0, 561px) minmax(0, 506px) minmax(0, 1fr);
    gap: 38px;
  }
}

.page-language-policy .prose {
  font-size: 14.667px;
}

.page-victory-day .prose {
  font-size: 18.667px;
}

.page-victory-day article > .content-container {
  max-width: 1266px;
}

.page-victory-day .prose a {
  color: #3c78d8;
  text-decoration: none;
}

.page-victory-day .source-note {
  color: #202122;
  font-size: 18.667px;
}

.page-victory-day .prose p {
  margin: 24px 0 16px;
  line-height: 1.38;
  text-align: left;
}

.page-remembrance-sunday .remembrance-primary .content-grid--two-thirds {
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: 20px;
}

.page-old-branding .old-branding-formal-section {
  min-height: 217px;
}

.page-old-branding .old-branding-crest-section .content-grid {
  align-items: start;
}

.article-subheading {
  margin: 28px 0 0;
  font-size: 32px;
  font-weight: 700;
}

.responsive-table {
  width: 100%;
  margin-top: 24px;
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 10px 12px;
  border: 1px solid rgb(28 28 28 / 20%);
  text-align: left;
  vertical-align: top;
}

th {
  background: var(--color-warm);
}

/* Footer */

.site-footer {
  min-height: 102px;
  padding-block: 32px 24px;
  background: var(--color-charcoal);
  color: var(--color-paper);
}

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

.site-footer h2,
.site-footer h3,
.site-footer h4 {
  color: var(--color-paper);
  font-style: normal;
  text-align: left;
}

.site-footer p {
  margin-top: 8px;
}

.site-footer a {
  color: #b7b7b7;
}

.footer-credit,
.footer-meta {
  color: #b7b7b7;
  font-size: 16px;
}

.footer-official,
.footer-secondary {
  text-align: right;
}

.footer-inner > p {
  margin: 0;
}

.footer-inner > p:last-child {
  text-align: right;
}

.footer-inner > p:first-child {
  color: #b7b7b7;
}

/* Locally supplied statute */

body.statute-page {
  background: repeating-linear-gradient(
    45deg,
    rgb(230 230 230) 0,
    rgb(230 230 230) 10px,
    #c4c4c4 10px,
    #c4c4c4 20px
  );
}

.statute-page main,
.statute-shell {
  padding: 24px var(--content-gutter);
  background: repeating-linear-gradient(
    45deg,
    rgb(230 230 230) 0,
    rgb(230 230 230) 10px,
    #c4c4c4 10px,
    #c4c4c4 20px
  );
}

.statute-document,
.statute-paper,
.statute-page .page {
  width: 100%;
  max-width: 1020px;
  margin: 0 auto;
  padding: 50px 60px;
  background: var(--color-white);
  box-shadow: 0 0 10px rgb(0 0 0 / 50%);
  color: #000;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  line-height: 1.7;
}

.statute-date,
.statute-document .date,
.statute-page .page .date {
  margin-bottom: 30px;
  font-weight: 700;
  text-align: right;
}

.statute-masthead,
.statute-document .masthead,
.statute-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.statute-logo,
.statute-masthead img,
.statute-document .masthead img,
.statute-title img {
  width: auto;
  height: 100px;
  flex: 0 0 auto;
  object-fit: contain;
}

.statute-document h1,
.statute-paper h1,
.statute-page .page h1 {
  margin: 0 0 5px;
  color: #000;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 26px;
  font-style: normal;
  line-height: 1.3;
  text-align: center;
}

.statute-document h2,
.statute-paper h2,
.statute-page .page h2 {
  margin: 0 0 40px;
  color: #000;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 20px;
  font-style: normal;
  line-height: 1.4;
  letter-spacing: 1px;
  text-align: center;
}

.statute-document ol,
.statute-paper ol,
.statute-page .page ol {
  padding-left: 20px;
}

.statute-list {
  margin-top: 0;
}

.text-accent {
  font-weight: 700;
}

.statute-document li,
.statute-paper li,
.statute-page .page li {
  margin-bottom: 20px;
}

.statute-document li > ol,
.statute-document li > ul,
.statute-paper li > ol,
.statute-paper li > ul,
.statute-page .page li > ol,
.statute-page .page li > ul {
  margin-top: 10px;
}

.statute-document .sublist,
.statute-sublist,
.statute-page .page .sublist {
  list-style-type: lower-alpha;
}

.statute-document .roman,
.statute-roman,
.statute-page .page .roman {
  list-style-type: lower-roman;
}

.statute-document strong,
.statute-paper strong,
.statute-page .page strong {
  display: block;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.statute-download {
  width: min(100%, 1020px);
  margin: 0 auto 16px;
  text-align: right;
}

/* Responsive navigation */

@media (max-width: 899px) {
  :root {
    --content-gutter: 28px;
  }

  body.nav-open::after {
    position: fixed;
    inset: 0;
    z-index: 90;
    background: rgb(0 0 0 / 48%);
    content: "";
  }

  .header-inner,
  .site-header__inner {
    justify-content: flex-start;
    gap: 4px;
    padding-inline: 8px 20px;
  }

  .nav-toggle {
    position: relative;
    z-index: 130;
    display: inline-flex;
    flex: 0 0 40px;
    order: -1;
  }

  .site-logo img,
  .site-brand img,
  .brand img {
    height: 44px;
  }

  .site-nav {
    position: fixed;
    inset: 0 auto 0 0;
    z-index: 120;
    width: min(320px, 86vw);
    margin: 0;
    padding: calc(var(--header-height) + 18px) 16px 32px;
    overflow: auto;
    overscroll-behavior: contain;
    transform: translateX(-105%);
    background: var(--color-white);
    box-shadow: 8px 0 28px rgb(0 0 0 / 24%);
    color: var(--color-ink);
    visibility: hidden;
    transition: transform 180ms ease, visibility 180ms ease;
  }

  .site-nav.is-open,
  .nav-open .site-nav {
    transform: translateX(0);
    visibility: visible;
  }

  .nav-open .nav-toggle {
    position: fixed;
    top: 12px;
    left: 8px;
    color: var(--color-ink);
  }

  .nav-list {
    display: block;
  }

  .nav-list > li {
    width: 100%;
  }

  .nav-list a,
  .dropdown-toggle {
    width: 100%;
    min-height: 44px;
    justify-content: flex-start;
    padding: 10px 12px;
    color: var(--color-ink);
    text-align: left;
    white-space: normal;
  }

  .dropdown-toggle::after {
    margin-left: auto;
  }

  .nav-list a:hover,
  .dropdown-toggle:hover,
  .has-dropdown:hover > .dropdown-toggle {
    background: rgb(48 48 51 / 8%);
    color: var(--color-ink);
  }

  .nav-list a[aria-current="page"],
  .nav-list .active > a,
  .nav-list a.active,
  .has-dropdown.is-current-section > .dropdown-toggle {
    background: var(--color-charcoal);
    color: var(--color-paper);
  }

  .site-nav a:focus-visible,
  .site-nav button:focus-visible {
    outline-color: var(--color-focus);
    box-shadow: none;
  }

  .dropdown,
  .dropdown-menu {
    position: static;
    width: 100%;
    min-width: 0;
    max-height: 0;
    padding: 0;
    overflow: hidden;
    transform: none;
    border: 0;
    background: var(--color-paper);
    box-shadow: none;
    opacity: 1;
    visibility: hidden;
    pointer-events: none;
    transition: max-height 180ms ease, visibility 180ms ease;
  }

  .has-dropdown:hover > .dropdown,
  .has-dropdown:hover > .dropdown-menu,
  .has-dropdown:focus-within > .dropdown,
  .has-dropdown:focus-within > .dropdown-menu {
    max-height: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .has-dropdown.is-open > .dropdown,
  .has-dropdown.is-open > .dropdown-menu,
  .dropdown.is-open,
  .dropdown-menu.is-open {
    max-height: 560px;
    visibility: visible;
    pointer-events: auto;
  }

  .dropdown a,
  .dropdown-menu a {
    min-height: 42px;
    padding-left: 28px;
    font-size: 15px;
  }

  .event-layout--columns-4,
  .event-layout--columns-5,
  .event-layout--columns-6 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .event-gallery--columns-5,
  .event-gallery--columns-6,
  .event-gallery--columns-7,
  .event-gallery--columns-8,
  .event-gallery--columns-9 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .no-js .site-header {
    position: relative;
    background: var(--color-charcoal);
  }

  .no-js .site-header::before,
  .no-js .nav-toggle {
    display: none;
  }

  .no-js .header-inner,
  .no-js .site-header__inner {
    flex-wrap: wrap;
  }

  .no-js .site-nav {
    position: static;
    width: 100%;
    flex: 1 0 100%;
    padding: 0;
    transform: none;
    background: var(--color-white);
    box-shadow: none;
    visibility: visible;
  }

  .no-js .dropdown,
  .no-js .dropdown-menu,
  .no-js .has-dropdown:hover > .dropdown,
  .no-js .has-dropdown:focus-within > .dropdown {
    max-height: none;
    visibility: visible;
    pointer-events: auto;
  }
}

@media (max-width: 767px) {
  :root {
    --content-gutter: 20px;
    --section-space: 32px;
  }

  h1 {
    font-size: 44px;
  }

  h2,
  .section-title {
    font-size: 30.667px;
  }

  .page-hero,
  .hero {
    height: 250px;
    min-height: 250px;
    padding-inline: 20px;
  }

  .page-home .page-hero--image,
  .page-events .page-hero--image,
  .page-operation-pedestal .page-hero--image,
  .page-remembrance-sunday .page-hero--image,
  .page-independence-day .page-hero--image {
    height: 297px;
    min-height: 297px;
  }

  .page-branding .page-hero--image {
    height: 355px;
    min-height: 355px;
  }

  .page-hero h1,
  .page-hero .page-title,
  .hero h1,
  .hero .hero-title {
    font-size: 44px;
    line-height: 1.35;
  }

  .page-branding .page-hero__subtitle {
    font-size: 26.667px;
  }

  .content-section--spacious,
  .section--spacious {
    padding-block: 40px;
  }

  .content-grid,
  .content-grid--equal,
  .content-grid--wide-media,
  .grid-two,
  .two-column {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

  .page-independence-day .content-grid--sidebar-right,
  .brand-logo-section .content-grid,
  .page-remembrance-sunday .remembrance-primary .content-grid--two-thirds {
    grid-template-columns: minmax(0, 1fr);
  }

  .brand-name-section {
    padding-top: 35px;
    padding-bottom: 61px;
  }

  .page-branding .brand-name-section #official-name-title {
    font-size: 20px;
  }

  .page-branding .brand-name-section .display-text--name {
    margin-top: 19px;
    text-align: left;
  }

  .brand-logo-section .brand-label--display {
    margin-top: 14px;
  }

  .brand-logo-section .brand-image--crest {
    margin-top: 24px;
  }

  .page-home .home-intro .content-grid--sidebar {
    grid-template-columns: minmax(0, 1fr);
    padding-inline: 20px;
  }

  .policy-heading,
  .option-block h2,
  .page-branding #official-name-title {
    font-size: 22.667px;
  }

  .content-grid--media-right > .media-frame,
  .content-grid--reverse > .media-frame {
    order: -1;
  }

  .cta-bar,
  .home-actions {
    padding-block: 24px;
  }

  .cta-bar__inner,
  .home-actions__inner,
  .cta-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
    padding-inline: 20px;
  }

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

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

  .gallery-item img,
  .gallery figure img,
  .gallery > a img,
  .gallery > img {
    min-height: 140px;
  }

  .event-layout--columns-2,
  .event-layout--columns-3,
  .event-layout--columns-4,
  .event-layout--columns-5,
  .event-layout--columns-6 {
    grid-template-columns: minmax(0, 1fr);
  }

  .event-entry--featured .event-layout--columns-2 {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
  }

  .event-entry--featured .event-copy {
    padding-left: 0;
  }

  .event-layout__item--empty {
    display: none;
  }

  .event-gallery,
  .event-gallery--columns-5,
  .event-gallery--columns-6,
  .event-gallery--columns-7,
  .event-gallery--columns-8,
  .event-gallery--columns-9 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .event-entry,
  .events-item,
  .event-section {
    padding-block: 36px;
  }

  .event-title {
    font-size: 27px;
  }

  .event-showcase {
    margin-top: 30px;
  }

  .event-showcase__stage {
    height: clamp(270px, 72vw, 520px);
  }

  .event-showcase__control {
    width: 42px;
    height: 42px;
  }

  .event-showcase__control--previous {
    left: 10px;
  }

  .event-showcase__control--next {
    right: 10px;
  }

  .event-carousel__item {
    flex-basis: clamp(120px, 34%, 180px);
  }

  .footer-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }

  .footer-official,
  .footer-secondary {
    text-align: left;
  }

  .footer-inner > p:last-child {
    text-align: left;
  }

  .statute-page main,
  .statute-shell {
    padding: 18px 12px;
  }

  .statute-document,
  .statute-paper,
  .statute-page .page {
    padding: 34px 28px;
  }

  .statute-document h1,
  .statute-paper h1,
  .statute-page .page h1 {
    font-size: 22px;
  }

  .statute-masthead,
  .statute-document .masthead,
  .statute-title {
    align-items: center;
  }

  .statute-logo,
  .statute-masthead img,
  .statute-document .masthead img,
  .statute-title img {
    height: 76px;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  h1,
  .page-hero h1,
  .page-hero .page-title,
  .hero h1,
  .hero .hero-title {
    font-size: 54.667px;
  }

  h2,
  .section-title {
    font-size: 36px;
  }

  .brand-label--display,
  .display-text--name {
    font-size: 36px;
  }

  .display-text--font,
  .article-subheading,
  .remembrance-message,
  .page-branding .page-hero__subtitle {
    font-size: 29.333px;
  }
}

@media (max-width: 479px) {
  .page-hero h1,
  .page-hero .page-title,
  .hero h1,
  .hero .hero-title {
    font-size: 44px;
  }

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

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

  .gallery-item--portrait {
    grid-row: auto;
  }

  .event-gallery,
  .event-gallery--columns-5,
  .event-gallery--columns-6,
  .event-gallery--columns-7,
  .event-gallery--columns-8,
  .event-gallery--columns-9 {
    grid-template-columns: minmax(0, 1fr);
  }

  .event-showcase__header {
    align-items: flex-end;
    gap: 12px;
  }

  .event-showcase__title {
    font-size: 21px;
  }

  .event-showcase__status {
    font-size: 12px;
  }

  .event-showcase__stage {
    height: clamp(250px, 78vw, 360px);
  }

  .event-showcase__image {
    padding: 6px;
  }

  .event-showcase__control {
    width: 38px;
    height: 38px;
    font-size: 24px;
  }

  .event-carousel__item {
    flex-basis: 52%;
  }

  .brand-label--display,
  .display-text--name {
    font-size: 30.667px;
  }

  .display-text--font,
  .article-subheading,
  .remembrance-message,
  .page-branding .page-hero__subtitle {
    font-size: 26.667px;
  }

  .button-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .statute-document,
  .statute-paper,
  .statute-page .page {
    padding: 50px 60px;
    box-shadow: none;
  }

  .statute-masthead,
  .statute-document .masthead,
  .statute-title {
    flex-direction: row;
    align-items: flex-start;
  }

  .statute-page main {
    padding: 0;
  }

  .statute-shell {
    padding: 8px 0 0;
  }

  .statute-document h1,
  .statute-paper h1,
  .statute-page .page h1 {
    font-size: 26px;
  }

  .statute-logo,
  .statute-masthead img,
  .statute-document .masthead img,
  .statute-title img {
    height: 100px;
  }

  .statute-date,
  .statute-document .date,
  .statute-page .page .date {
    text-align: right;
  }
}

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

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

@media print {
  .skip-link,
  .site-header,
  .site-footer,
  .statute-download,
  .nav-toggle {
    display: none !important;
  }

  body,
  body.statute-page,
  .statute-page main,
  .statute-shell {
    background: var(--color-white) !important;
  }

  .statute-page main,
  .statute-shell {
    padding: 0;
  }

  .statute-document,
  .statute-paper,
  .statute-page .page {
    max-width: none;
    padding: 0;
    box-shadow: none;
  }

  a {
    color: inherit;
  }
}
