@charset "UTF-8";

:root {
  --ink: #071b3f;
  --ink-soft: #1c3766;
  --paper: #f5f8ff;
  --paper-deep: #e6edff;
  --white: #fff;
  --magenta: #ff2a8a;
  --magenta-dark: #c6005c;
  --red: #e2001a;
  --cyan: #00c8ff;
  --blue: #1557ff;
  --lime: #baff00;
  --yellow: #ffd400;
  --line: rgba(7, 27, 63, 0.18);
  --shadow: 0 24px 70px rgba(7, 27, 63, 0.18);
  --radius-sm: 0.5rem;
  --radius-md: 1.25rem;
  --radius-lg: 2.25rem;
  --shell: 1180px;
  --header-height: 86px;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  --font-display: "Arial Black", "Avenir Next", "Segoe UI", "Yu Gothic", YuGothic, sans-serif;
}

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

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  overflow-wrap: anywhere;
  -webkit-font-smoothing: antialiased;
}

body.menu-is-open {
  overflow: hidden;
}

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

figure {
  margin: 0;
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

.shell {
  width: min(calc(100% - 3rem), var(--shell));
  margin-inline: auto;
}

.shell--wide {
  --shell: 1360px;
}

.skip-link {
  position: fixed;
  z-index: 10000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.65rem 1rem;
  color: var(--white);
  background: var(--ink);
  border-radius: 0.25rem;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

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

.screen-reader-text:focus {
  z-index: 100000;
  top: 0.75rem;
  left: 0.75rem;
  width: auto;
  height: auto;
  padding: 0.65rem 1rem;
  clip: auto;
  color: var(--white);
  background: var(--ink);
}

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

.site-header.is-scrolled,
body:not(.is-one-page-home) .site-header {
  height: 72px;
  color: var(--ink);
  background: rgba(245, 248, 255, 0.94);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 35px rgba(7, 27, 63, 0.08);
  backdrop-filter: blur(14px);
}

.admin-bar .site-header {
  top: 32px;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 2rem;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
}

.site-brand__mark {
  display: grid;
  position: relative;
  width: 46px;
  height: 46px;
  overflow: hidden;
  color: var(--white);
  background: var(--magenta);
  border: 2px solid currentColor;
  place-items: center;
  transform: rotate(-4deg);
}

.site-brand__mark::before {
  position: absolute;
  width: 60%;
  height: 120%;
  right: -14%;
  content: "";
  background: var(--cyan);
  transform: rotate(25deg);
}

.site-brand__mark span {
  position: absolute;
  z-index: 1;
  font: 900 1.1rem/1 var(--font-display);
}

.site-brand__mark span:first-child {
  top: 0.42rem;
  left: 0.42rem;
}

.site-brand__mark span:last-child {
  right: 0.42rem;
  bottom: 0.42rem;
}

.site-brand__copy {
  display: grid;
  line-height: 1.1;
}

.site-brand__copy strong {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 900;
  letter-spacing: 0.03em;
}

.site-brand__copy small {
  margin-top: 0.3rem;
  font-family: var(--font-display);
  font-size: 0.54rem;
  letter-spacing: 0.15em;
}

.primary-navigation {
  margin-left: auto;
}

.menu {
  display: flex;
  align-items: center;
  gap: clamp(0.7rem, 1.8vw, 1.8rem);
  padding: 0;
  margin: 0;
  list-style: none;
}

.menu-item {
  position: relative;
}

.menu-item a {
  display: block;
  padding: 0.6rem 0;
  color: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-decoration: none;
}

.menu--primary > .menu-item > a::after {
  position: absolute;
  right: 0;
  bottom: 0.35rem;
  left: 0;
  height: 2px;
  content: "";
  background: var(--magenta);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.menu--primary > .menu-item > a:hover::after,
.menu--primary > .current-menu-item > a::after {
  transform: scaleX(1);
  transform-origin: left;
}

.sub-menu {
  position: absolute;
  top: 100%;
  left: -1rem;
  min-width: 220px;
  padding: 0.6rem 1rem;
  margin: 0;
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow);
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(0.5rem);
  transition: opacity 180ms ease, transform 180ms ease;
}

.menu-item:hover > .sub-menu,
.menu-item:focus-within > .sub-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 0.65rem;
  padding: 0.5rem;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-toggle__label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
}

.menu-toggle__lines {
  display: grid;
  width: 27px;
  gap: 5px;
}

.menu-toggle__lines i {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__lines i:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__lines i:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__lines i:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  min-height: 760px;
  height: min(920px, 100svh);
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  isolation: isolate;
}

.hero__visual,
.hero__wash {
  position: absolute;
  inset: 0;
}

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

.hero__wash {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 27, 63, 0.95) 0%, rgba(7, 27, 63, 0.78) 30%, rgba(7, 27, 63, 0.12) 66%, rgba(7, 27, 63, 0.26) 100%),
    linear-gradient(0deg, rgba(7, 27, 63, 0.74) 0%, transparent 44%);
}

.hero__inner {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--header-height);
  gap: 3rem;
}

.hero__content {
  width: min(680px, 72%);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1.2rem;
  color: var(--magenta-dark);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.eyebrow::before {
  width: 2rem;
  height: 3px;
  content: "";
  background: currentColor;
}

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

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 7.2vw, 7.4rem);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.98;
  text-wrap: balance;
}

.hero h1 em,
.display-title em {
  color: var(--magenta);
  font-style: normal;
  -webkit-text-stroke: 0;
}

.hero__lead {
  max-width: 620px;
  margin: 2rem 0 0;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-weight: 700;
  line-height: 2;
  text-shadow: 0 2px 18px rgba(7, 27, 63, 0.5);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
  margin-top: 2.4rem;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 0.8rem 1.35rem;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-decoration: none;
  border: 2px solid transparent;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

.button i {
  font-style: normal;
  font-size: 1.1rem;
}

.button--primary {
  color: var(--white);
  background: var(--magenta-dark);
  box-shadow: 8px 8px 0 var(--cyan);
}

.button--primary:hover {
  color: var(--ink);
  background: var(--lime);
  box-shadow: 8px 8px 0 var(--magenta);
}

.button--ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
}

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

.button--dark {
  color: var(--white);
  background: var(--ink);
}

.button--dark:hover {
  color: var(--ink);
  background: var(--cyan);
}

.button--outline-dark {
  color: var(--ink);
  border-color: var(--ink);
}

.button--outline-dark:hover {
  color: var(--white);
  background: var(--ink);
}

.hero-ticket {
  display: grid;
  width: 190px;
  min-height: 255px;
  align-content: center;
  justify-items: center;
  padding: 1.5rem 1rem;
  color: var(--ink);
  background: var(--cyan);
  box-shadow: 14px 14px 0 var(--magenta);
  text-align: center;
  text-decoration: none;
  transform: rotate(2deg);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.hero-ticket:hover {
  box-shadow: 8px 8px 0 var(--magenta);
  transform: rotate(0deg) translateY(-3px);
}

.hero-ticket__top,
.hero-ticket > span:not(.hero-ticket__top) {
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}

.hero-ticket strong {
  margin: 0.6rem 0 0.2rem;
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
}

.hero-ticket .hero-ticket__date {
  font-size: 1.55rem;
  white-space: nowrap;
}

.hero-ticket i {
  margin-top: 2.2rem;
  font-family: var(--font-display);
  font-size: 0.58rem;
  font-style: normal;
  letter-spacing: 0.18em;
}

.hero__shapes i {
  position: absolute;
  z-index: 2;
  display: block;
  pointer-events: none;
}

.hero__shapes i:nth-child(1) {
  top: 18%;
  right: 3%;
  width: 72px;
  aspect-ratio: 1;
  background: var(--cyan);
  border-radius: 50%;
  mix-blend-mode: multiply;
}

.hero__shapes i:nth-child(2) {
  right: 17%;
  bottom: 5%;
  width: 0;
  height: 0;
  border-right: 52px solid transparent;
  border-bottom: 92px solid var(--lime);
  border-left: 52px solid transparent;
  transform: rotate(21deg);
}

.hero__shapes i:nth-child(3) {
  top: 28%;
  left: -42px;
  width: 85px;
  height: 85px;
  border: 16px solid var(--magenta);
  border-radius: 50%;
}

.hero__shapes i:nth-child(4) {
  right: 43%;
  bottom: 8%;
  width: 110px;
  height: 22px;
  background: repeating-linear-gradient(90deg, var(--white) 0 8px, transparent 8px 16px);
  opacity: 0.65;
  transform: rotate(-8deg);
}

.news-strip {
  color: var(--white);
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.news-strip__inner {
  display: grid;
  grid-template-columns: 180px 1fr;
  min-height: 160px;
  align-items: stretch;
}

.section-kicker {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 2rem;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.section-kicker span {
  color: var(--cyan);
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
}

.section-kicker h2 {
  margin: 0.2rem 0 0;
  font-size: 1.2rem;
}

.news-list {
  display: grid;
  align-content: center;
  padding-block: 1rem;
}

.news-item {
  display: grid;
  grid-template-columns: 110px 1fr 2rem;
  align-items: center;
  min-height: 43px;
  padding-left: 2rem;
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.news-item:last-child {
  border-bottom: 0;
}

.news-item time {
  color: var(--cyan);
  font-family: var(--font-display);
  font-size: 0.67rem;
  letter-spacing: 0.06em;
}

.news-item span {
  font-size: 0.82rem;
  font-weight: 700;
}

.news-item i {
  font-style: normal;
  transition: transform 180ms ease;
}

.news-item:hover i {
  transform: translateX(0.35rem);
}

.section {
  position: relative;
  padding-block: clamp(6rem, 11vw, 10rem);
}

.section--about {
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 12%, rgba(255, 42, 138, 0.14) 0 85px, transparent 86px),
    linear-gradient(var(--paper), var(--paper));
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.split-layout__media {
  position: relative;
}

.image-frame {
  position: relative;
}

.image-frame::before {
  position: absolute;
  z-index: -1;
  top: -24px;
  right: 26px;
  bottom: 26px;
  left: -24px;
  content: "";
  background: var(--cyan);
}

.image-frame::after {
  position: absolute;
  z-index: -2;
  right: -22px;
  bottom: -22px;
  width: 58%;
  height: 45%;
  content: "";
  background: var(--magenta);
}

.image-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.vertical-note {
  position: absolute;
  top: 4%;
  right: -3.2rem;
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  writing-mode: vertical-rl;
}

.display-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 5.4rem);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 1.06;
  text-wrap: balance;
}

.prose {
  font-size: 1rem;
  line-height: 2.1;
}

.prose--lead {
  max-width: 580px;
  margin-top: 2rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 0.25rem;
  margin-top: 1.2rem;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
  text-decoration: none;
  border-bottom: 2px solid var(--magenta);
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translate(0.2rem, -0.2rem);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(5rem, 10vw, 9rem);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.values-grid article {
  position: relative;
  min-height: 210px;
  padding: 2rem clamp(1.2rem, 3vw, 2.5rem);
  border-right: 1px solid var(--line);
}

.values-grid article:last-child {
  border-right: 0;
}

.values-grid article > span {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  color: var(--magenta);
  font-family: var(--font-display);
  font-size: 0.7rem;
}

.values-grid h3 {
  margin: 0 0 0.7rem;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  line-height: 1.2;
}

.values-grid p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.9;
}

.section--event {
  overflow: hidden;
  color: var(--white);
  background: var(--magenta);
  isolation: isolate;
}

.event-pattern {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, transparent 0 28px, rgba(7, 27, 63, 0.18) 29px 38px, transparent 39px),
    linear-gradient(135deg, transparent 43%, rgba(7, 27, 63, 0.12) 44% 47%, transparent 48%);
  background-size: 190px 190px, 120px 120px;
  opacity: 0.55;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.section-heading > p {
  max-width: 440px;
  margin: 0 0 0.8rem;
  font-weight: 700;
}

.section-heading--light .display-title em {
  color: var(--cyan);
}

.event-card {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  color: var(--ink);
  background: var(--paper);
  box-shadow: 18px 18px 0 var(--ink);
}

.event-card__image {
  position: relative;
  min-height: 650px;
  overflow: hidden;
}

.event-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-card__image--flyer {
  display: grid;
  padding: clamp(1.5rem, 4vw, 3rem);
  background:
    radial-gradient(circle at 12% 14%, var(--lime) 0 48px, transparent 49px),
    linear-gradient(145deg, var(--blue), var(--cyan));
  place-items: center;
}

.event-card__image--flyer img {
  width: auto;
  max-width: 100%;
  height: min(100%, 702px);
  object-fit: contain;
  box-shadow: 12px 12px 0 var(--ink);
}

.event-card__image > span {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  padding: 0.5rem 0.8rem;
  color: var(--white);
  background: var(--ink);
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
}

.event-ended-badge {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  padding: 0.5em 1.1em;
  color: var(--red);
  background: var(--white);
  border: 3px solid var(--red);
  box-shadow: 6px 6px 0 var(--ink);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.1rem, 2.4vw, 1.6rem);
  letter-spacing: 0.12em;
  text-align: center;
  white-space: nowrap;
  transform: translate(-50%, -50%) rotate(-8deg);
}

.event-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4.5rem);
}

.event-date {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;
  padding-bottom: 1.8rem;
  border-bottom: 2px solid var(--ink);
}

.event-date span,
.event-date em {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-style: normal;
  letter-spacing: 0.13em;
}

.event-card__notice {
  display: grid;
  gap: 0.8rem;
  padding: 1.7rem;
  background: var(--paper-deep);
  border-left: 8px solid var(--magenta);
}

.event-card__notice span {
  color: var(--magenta-dark);
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
}

.event-card__notice strong {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.6rem);
  letter-spacing: -0.05em;
  line-height: 1;
}

.event-card__notice p {
  max-width: 560px;
  margin: 0;
}

.event-date strong {
  grid-row: span 2;
  margin-left: auto;
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 6vw, 5.7rem);
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.event-meta {
  margin: 1.8rem 0;
}

.event-meta > div {
  display: grid;
  grid-template-columns: 115px 1fr;
  padding-block: 0.65rem;
  border-bottom: 1px solid var(--line);
}

.event-meta dt {
  color: var(--magenta-dark);
  font-family: var(--font-display);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
}

.event-meta dd {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.55;
}

.event-meta small {
  font-size: 0.78rem;
}

.event-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.event-tags span {
  padding: 0.25rem 0.65rem;
  font-size: 0.7rem;
  font-weight: 800;
  border: 1px solid var(--ink);
  border-radius: 999px;
}

.event-card .button-row {
  margin-top: 2rem;
}

.event-documents {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: clamp(1rem, 2.5vw, 1.5rem);
  margin: 1rem 0 3rem;
}

.event-document {
  display: grid;
  min-height: 220px;
  padding: clamp(1.25rem, 3vw, 1.7rem);
  color: var(--ink);
  background: var(--paper);
  border: 2px solid var(--ink);
  box-shadow: 8px 8px 0 var(--magenta);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.event-document:hover,
.event-document:focus-visible {
  box-shadow: 5px 5px 0 var(--cyan);
  transform: translate(3px, 3px);
}

.event-document span {
  color: var(--magenta-dark);
  font-family: var(--font-display);
  font-size: 0.64rem;
  letter-spacing: 0.12em;
}

.event-document strong {
  margin-top: 0.75rem;
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  line-height: 1.25;
}

.event-document small {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.75;
}

.event-document i {
  align-self: end;
  justify-self: start;
  margin-top: 1.5rem;
  padding-top: 0.75rem;
  border-top: 2px solid var(--ink);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-style: normal;
  letter-spacing: 0.1em;
}

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

.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(3rem, 9vw, 9rem);
}

.faq-layout__heading {
  position: sticky;
  top: calc(var(--header-height) + 3rem);
  align-self: start;
}

.faq-layout__heading > p:not(.eyebrow) {
  max-width: 380px;
  margin: 1.5rem 0 0;
}

.faq-list {
  border-top: 2px solid var(--ink);
}

.faq-list details {
  border-bottom: 2px solid var(--ink);
}

.faq-list summary {
  display: grid;
  grid-template-columns: 2.5rem 1fr 2rem;
  align-items: center;
  min-height: 100px;
  padding: 1rem 0.5rem;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  color: var(--magenta);
  font-family: var(--font-display);
  font-size: 0.65rem;
}

.faq-list summary i {
  position: relative;
  display: block;
  width: 1.5rem;
  height: 1.5rem;
}

.faq-list summary i::before,
.faq-list summary i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1rem;
  height: 2px;
  content: "";
  background: var(--ink);
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.faq-list summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary i::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-list details > div {
  padding: 0 3rem 2.1rem;
}

.faq-list details p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 2;
}

.section--access {
  color: var(--ink);
  background: var(--cyan);
}

.access-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  min-height: 520px;
  background: var(--paper);
  box-shadow: 16px 16px 0 var(--ink);
}

.access-map {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  background-color: var(--cyan);
  background-image:
    linear-gradient(rgba(245, 248, 255, 0.26) 2px, transparent 2px),
    linear-gradient(90deg, rgba(245, 248, 255, 0.26) 2px, transparent 2px);
  background-size: 64px 64px;
}

.access-map b {
  position: absolute;
  right: -1rem;
  bottom: -1.8rem;
  color: rgba(7, 27, 63, 0.12);
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 9rem);
  line-height: 1;
  transform: rotate(-7deg);
}

.access-map__route {
  position: absolute;
  inset: 18% 13%;
  border-top: 10px solid var(--paper);
  border-right: 10px solid var(--paper);
  border-radius: 0 80px 0 0;
  transform: rotate(12deg);
}

.access-map__route::before {
  position: absolute;
  top: -10px;
  left: -55px;
  width: 60%;
  height: 75%;
  content: "";
  border-bottom: 10px solid var(--paper);
  border-left: 10px solid var(--paper);
  border-radius: 0 0 0 70px;
}

.access-map__route i {
  position: absolute;
  width: 17px;
  height: 17px;
  background: var(--magenta);
  border: 4px solid var(--paper);
  border-radius: 50%;
}

.access-map__route i:nth-child(1) { top: -13px; left: 8%; }
.access-map__route i:nth-child(2) { top: -13px; left: 52%; }
.access-map__route i:nth-child(3) { top: 45%; right: -13px; }
.access-map__route i:nth-child(4) { right: -13px; bottom: -2%; }

.access-map__station,
.access-map__venue {
  position: absolute;
  z-index: 2;
  display: grid;
  width: 92px;
  height: 92px;
  color: var(--white);
  background: var(--ink);
  font-family: var(--font-display);
  font-size: 0.72rem;
  line-height: 1.25;
  text-align: center;
  place-items: center;
}

.access-map__station {
  top: 12%;
  left: 8%;
  transform: rotate(-5deg);
}

.access-map__venue {
  right: 8%;
  bottom: 12%;
  color: var(--white);
  background: var(--magenta-dark);
  border-radius: 50%;
  transform: rotate(5deg);
}

.access-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 6vw, 5rem);
}

.access-info__prefecture {
  color: var(--magenta-dark);
  font-family: var(--font-display);
  font-size: 0.66rem;
  letter-spacing: 0.15em;
}

.access-info h3 {
  margin: 0.4rem 0 0;
  font-size: clamp(1.45rem, 3vw, 2.4rem);
  line-height: 1.35;
}

.access-info > p:not(.access-info__prefecture) {
  margin: 0.4rem 0 0;
}

.access-info ul {
  padding: 0;
  margin: 2rem 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.access-info li {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  padding-block: 0.8rem;
  font-size: 0.84rem;
  border-bottom: 1px solid var(--line);
}

.access-info li span {
  color: var(--magenta-dark);
  font-family: var(--font-display);
  font-size: 0.66rem;
}

.access-info .button {
  align-self: flex-start;
}

.contact-banner {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.contact-banner__inner {
  display: flex;
  min-height: 410px;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.contact-banner h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 5.3rem);
  letter-spacing: -0.06em;
  line-height: 1.1;
}

.circle-link {
  display: grid;
  width: clamp(180px, 20vw, 245px);
  aspect-ratio: 1;
  flex: 0 0 auto;
  color: var(--ink);
  background: var(--lime);
  border-radius: 50%;
  text-decoration: none;
  place-items: center;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.circle-link span {
  margin-top: 2.4rem;
  font-weight: 900;
}

.circle-link i {
  margin-top: -3.2rem;
  font-size: 2rem;
  font-style: normal;
}

.circle-link:hover {
  color: var(--white);
  background: var(--magenta);
  transform: rotate(-5deg) scale(1.03);
}

.contact-banner__shapes i {
  position: absolute;
  display: block;
  opacity: 0.22;
}

.contact-banner__shapes i:nth-child(1) {
  top: -70px;
  left: 48%;
  width: 180px;
  height: 180px;
  border: 32px solid var(--cyan);
  border-radius: 50%;
}

.contact-banner__shapes i:nth-child(2) {
  bottom: -120px;
  left: 14%;
  width: 260px;
  height: 260px;
  background: var(--magenta);
  transform: rotate(25deg);
}

.contact-banner__shapes i:nth-child(3) {
  right: 30%;
  bottom: 8%;
  width: 130px;
  height: 26px;
  background: repeating-linear-gradient(90deg, var(--cyan) 0 10px, transparent 10px 21px);
  transform: rotate(-15deg);
}

.site-footer {
  position: relative;
  padding-top: 6rem;
  color: var(--paper);
  background: #03112b;
}

.site-footer__art {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1.6fr 1fr 0.7fr 1.2fr 0.8fr;
  height: 18px;
}

.site-footer__art span:nth-child(1) { background: var(--magenta); }
.site-footer__art span:nth-child(2) { background: var(--cyan); }
.site-footer__art span:nth-child(3) { background: var(--lime); }
.site-footer__art span:nth-child(4) { background: var(--paper); }
.site-footer__art span:nth-child(5) { background: var(--magenta); }

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  gap: 4rem;
  padding-bottom: 4rem;
}

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

.site-footer__statement {
  max-width: 400px;
  margin: 1.5rem 0 0;
  color: rgba(245, 248, 255, 0.65);
  font-size: 0.84rem;
}

.menu--footer {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-content: start;
  gap: 0.4rem 1.5rem;
}

.menu--footer a {
  color: rgba(245, 248, 255, 0.78);
}

.site-footer__social {
  display: grid;
  align-content: start;
  gap: 0.8rem;
}

.site-footer__social span {
  color: var(--cyan);
  font-family: var(--font-display);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
}

.site-footer__social a {
  font-weight: 800;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.5rem;
  color: rgba(245, 248, 255, 0.55);
  font-size: 0.7rem;
  border-top: 1px solid rgba(245, 248, 255, 0.12);
}

.site-footer__bottom p {
  margin: 0;
}

.page-main {
  min-height: 60vh;
}

.page-hero {
  position: relative;
  display: grid;
  min-height: 420px;
  align-items: end;
  padding: calc(var(--header-height) + 6rem) 0 5rem;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  isolation: isolate;
}

.page-hero--post {
  min-height: 500px;
}

.page-hero__pattern {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    radial-gradient(circle at 80% 30%, var(--magenta) 0 95px, transparent 96px),
    linear-gradient(135deg, transparent 55%, rgba(0, 200, 255, 0.5) 56% 70%, transparent 71%),
    repeating-linear-gradient(90deg, transparent 0 80px, rgba(255, 255, 255, 0.04) 80px 82px);
}

.page-hero h1 {
  max-width: 950px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 6.4rem);
  letter-spacing: -0.06em;
  line-height: 1.04;
  text-wrap: balance;
}

.page-hero__description {
  max-width: 700px;
  margin-top: 1rem;
}

.content-shell {
  width: min(calc(100% - 3rem), 860px);
  padding-block: clamp(4rem, 9vw, 8rem);
}

.content-featured-image {
  margin-bottom: 3rem;
}

.content-featured-image img {
  width: 100%;
  box-shadow: var(--shadow);
}

.entry-content {
  font-size: clamp(1rem, 1.4vw, 1.08rem);
  line-height: 2;
}

.entry-content > *:first-child {
  margin-top: 0;
}

.entry-content .alignwide,
.entry-content .alignfull {
  position: relative;
  left: 50%;
  width: min(calc(100vw - 3rem), var(--shell));
  max-width: none;
  transform: translateX(-50%);
}

.entry-content .alignfull {
  width: 100vw;
}

.entry-content .wp-caption-text,
.entry-content figcaption {
  margin-top: 0.6rem;
  color: var(--ink-soft);
  font-size: 0.78rem;
  line-height: 1.6;
}

.entry-content .wp-block-gallery {
  margin-block: 2rem;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
  margin: 2.5em 0 0.8em;
  line-height: 1.4;
}

.entry-content h2 {
  padding-bottom: 0.45em;
  font-size: clamp(1.7rem, 4vw, 2.7rem);
  border-bottom: 4px solid var(--magenta);
}

.entry-content h3 {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
}

.entry-content a {
  color: var(--magenta-dark);
  font-weight: 700;
}

.entry-content blockquote {
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  background: var(--paper-deep);
  border-left: 8px solid var(--cyan);
}

.entry-content table {
  width: 100%;
  border-collapse: collapse;
}

.entry-content th,
.entry-content td {
  padding: 0.8rem;
  border: 1px solid var(--line);
}

.entry-content th {
  background: var(--paper-deep);
}

.entry-content input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]),
.entry-content select,
.entry-content textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: 0;
}

.entry-content input:focus,
.entry-content select:focus,
.entry-content textarea:focus {
  border-color: var(--cyan);
  outline: 0;
}

.entry-content input[type="submit"],
.entry-content button[type="submit"] {
  min-height: 52px;
  padding: 0.7rem 1.4rem;
  color: var(--white);
  background: var(--ink);
  border: 0;
  cursor: pointer;
}

.post-navigation-links {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 2rem;
  margin-top: 4rem;
  border-top: 2px solid var(--ink);
}

.post-navigation-links a {
  font-weight: 800;
  text-decoration: none;
}

.comments-area {
  padding-top: 2.5rem;
  margin-top: 4rem;
  border-top: 2px solid var(--ink);
}

.comments-title,
.comment-reply-title {
  margin: 0 0 1.5rem;
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.comment-list,
.comment-list .children {
  padding: 0;
  list-style: none;
}

.comment-list .children {
  padding-left: clamp(1rem, 4vw, 3rem);
}

.comment-body {
  padding: 1.5rem;
  margin-bottom: 1rem;
  background: var(--white);
  border: 1px solid var(--line);
}

.comment-meta {
  font-size: 0.78rem;
}

.comment-author {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.comment-author img {
  border-radius: 50%;
}

.comment-content {
  margin-top: 1rem;
}

.comment-form label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.8rem;
  font-weight: 800;
}

.comment-form input:not([type="submit"]):not([type="checkbox"]),
.comment-form textarea,
.search-form .search-field {
  width: 100%;
  padding: 0.8rem 1rem;
  background: var(--white);
  border: 2px solid var(--line);
}

.comment-form input[type="submit"],
.search-form .search-submit {
  min-height: 48px;
  padding: 0.65rem 1.3rem;
  color: var(--white);
  font-weight: 800;
  background: var(--ink);
  border: 0;
  cursor: pointer;
}

.empty-state--search {
  max-width: 680px;
  padding: 2rem;
  background: var(--white);
  border: 2px solid var(--ink);
  box-shadow: 8px 8px 0 var(--ink);
}

.search-form {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-block: clamp(4rem, 8vw, 7rem);
}

.archive-card {
  background: var(--white);
  border: 2px solid var(--ink);
  box-shadow: 8px 8px 0 var(--ink);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.archive-card:hover {
  box-shadow: 4px 4px 0 var(--ink);
  transform: translate(4px, 4px);
}

.archive-card > a {
  display: block;
  height: 100%;
  padding: 1.5rem;
  text-decoration: none;
}

.archive-card__image {
  margin: -1.5rem -1.5rem 1.3rem;
  overflow: hidden;
}

.archive-card__image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 300ms ease;
}

.archive-card:hover .archive-card__image img {
  transform: scale(1.03);
}

.archive-card time,
.archive-card > a > span {
  color: var(--magenta-dark);
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
}

.archive-card h2 {
  margin: 0.8rem 0;
  font-size: 1.25rem;
  line-height: 1.45;
}

.archive-card p {
  font-size: 0.82rem;
}

.archive-card > a > span {
  display: inline-block;
  margin-top: 1rem;
}

.pagination,
.empty-state {
  grid-column: 1 / -1;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.nav-links .page-numbers {
  display: grid;
  min-width: 42px;
  min-height: 42px;
  padding: 0.35rem;
  border: 1px solid var(--ink);
  text-decoration: none;
  place-items: center;
}

.nav-links .current {
  color: var(--white);
  background: var(--ink);
}

.not-found {
  position: relative;
  display: grid;
  min-height: 80vh;
  align-items: center;
  padding: calc(var(--header-height) + 4rem) 0 5rem;
  overflow: hidden;
  background: var(--cyan);
}

.not-found__inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  text-align: center;
}

.not-found__code {
  margin: 0;
  color: var(--magenta);
  font-family: var(--font-display);
  font-size: clamp(7rem, 25vw, 18rem);
  line-height: 0.8;
  -webkit-text-stroke: 3px var(--ink);
}

.not-found h1 {
  margin: 2rem 0 0;
  font-size: clamp(1.8rem, 5vw, 3.5rem);
}

.not-found .button {
  margin-top: 1.5rem;
}

.js-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 700ms cubic-bezier(0.2, 0.75, 0.2, 1), transform 700ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

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

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

  .menu-toggle {
    display: inline-flex;
  }

  .primary-navigation {
    position: fixed;
    z-index: -1;
    top: 0;
    right: 0;
    display: flex;
    width: min(86vw, 440px);
    height: 100svh;
    align-items: center;
    padding: calc(var(--header-height) + 3rem) 2.5rem 3rem;
    color: var(--white);
    background: var(--ink);
    box-shadow: -25px 0 70px rgba(0, 0, 0, 0.25);
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%);
    transition: opacity 220ms ease, transform 220ms ease;
  }

  .primary-navigation.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
  }

  .menu--primary {
    display: grid;
    width: 100%;
    align-content: center;
    gap: 0;
  }

  .menu--primary > .menu-item > a {
    padding: 1rem 0;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .sub-menu {
    position: static;
    display: block;
    padding: 0 0 0 1rem;
    color: var(--white);
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .hero__content {
    width: min(700px, 80%);
  }

  .hero-ticket {
    width: 165px;
    min-height: 225px;
  }

  .split-layout {
    gap: 4rem;
  }

  .event-card__image {
    min-height: 580px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__social {
    grid-column: 2;
  }
}

@media (max-width: 820px) {
  .admin-bar .site-header {
    top: 46px;
  }

  .hero {
    min-height: 740px;
    height: 100svh;
  }

  .hero__wash {
    background:
      linear-gradient(90deg, rgba(7, 27, 63, 0.92), rgba(7, 27, 63, 0.42)),
      linear-gradient(0deg, rgba(7, 27, 63, 0.84) 0%, transparent 65%);
  }

  .hero__content {
    width: 100%;
    padding-bottom: 7rem;
  }

  .hero h1 {
    font-size: clamp(3.1rem, 13vw, 6rem);
  }

  .hero-ticket {
    position: absolute;
    right: 0;
    bottom: 2.5rem;
    width: 150px;
    min-height: 105px;
    align-content: center;
    box-shadow: 8px 8px 0 var(--magenta);
  }

  .hero-ticket strong {
    font-size: 1.4rem;
  }

  .hero-ticket i {
    display: none;
  }

  .news-strip__inner {
    grid-template-columns: 130px 1fr;
  }

  .news-item {
    grid-template-columns: 95px 1fr;
  }

  .news-item i {
    display: none;
  }

  .split-layout,
  .event-card,
  .faq-layout,
  .access-grid {
    grid-template-columns: 1fr;
  }

  .split-layout__media {
    width: min(92%, 620px);
  }

  .vertical-note {
    right: -2.5rem;
  }

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

  .values-grid article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .values-grid article:last-child {
    border-bottom: 0;
  }

  .event-card__image {
    min-height: 460px;
  }

  .faq-layout__heading {
    position: static;
  }

  .access-map {
    min-height: 440px;
  }

  .contact-banner__inner {
    min-height: 500px;
  }

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

@media (max-width: 620px) {
  :root {
    --header-height: 68px;
  }

  .shell,
  .content-shell {
    width: min(calc(100% - 2rem), var(--shell));
  }

  .site-brand__mark {
    width: 40px;
    height: 40px;
  }

  .site-brand__copy small {
    display: none;
  }

  .site-brand__copy strong {
    font-size: 0.95rem;
  }

  .primary-navigation {
    width: 100%;
  }

  .hero__visual img {
    object-position: 63% center;
  }

  .hero__wash {
    background:
      linear-gradient(90deg, rgba(7, 27, 63, 0.88), rgba(7, 27, 63, 0.22)),
      linear-gradient(0deg, rgba(7, 27, 63, 0.92) 0%, rgba(7, 27, 63, 0.22) 75%);
  }

  .hero__content {
    align-self: end;
    padding-bottom: 10rem;
  }

  .hero h1 {
    font-size: clamp(2.9rem, 16vw, 4.9rem);
  }

  .hero__lead {
    font-size: 0.9rem;
    line-height: 1.85;
  }

  .button-row {
    align-items: stretch;
  }

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

  .hero .button--ghost {
    display: none;
  }

  .hero-ticket {
    right: 1rem;
    bottom: 2rem;
    width: 135px;
  }

  .hero__shapes i:nth-child(1),
  .hero__shapes i:nth-child(4) {
    display: none;
  }

  .news-strip__inner {
    display: block;
    padding-block: 1.4rem;
  }

  .section-kicker {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 0.8rem;
    padding: 0 0 0.7rem;
    border-right: 0;
  }

  .section-kicker h2 {
    font-size: 1rem;
  }

  .news-item {
    display: block;
    min-height: auto;
    padding: 0.7rem 0;
  }

  .news-item time,
  .news-item span {
    display: block;
  }

  .news-item span {
    margin-top: 0.15rem;
  }

  .section {
    padding-block: 5.5rem;
  }

  .image-frame::before {
    top: -14px;
    left: -14px;
  }

  .image-frame::after {
    right: -14px;
    bottom: -14px;
  }

  .vertical-note {
    display: none;
  }

  .display-title {
    font-size: clamp(2.55rem, 13vw, 4rem);
  }

  .section-heading {
    display: block;
  }

  .section-heading > p {
    margin-top: 1.2rem;
  }

  .event-card {
    box-shadow: 9px 9px 0 var(--ink);
  }

  .event-card__image {
    min-height: 340px;
  }

  .event-card__body {
    padding: 1.6rem;
  }

  .event-date strong {
    font-size: 3.15rem;
  }

  .event-meta > div {
    grid-template-columns: 95px 1fr;
  }

  .faq-list summary {
    grid-template-columns: 2rem 1fr 1.6rem;
    min-height: 88px;
    font-size: 0.95rem;
  }

  .faq-list details > div {
    padding: 0 1rem 1.8rem 2.5rem;
  }

  .access-grid {
    box-shadow: 9px 9px 0 var(--ink);
  }

  .access-map {
    min-height: 350px;
  }

  .access-info {
    padding: 2rem 1.5rem;
  }

  .contact-banner__inner {
    display: grid;
    min-height: 560px;
    align-content: center;
    justify-items: start;
  }

  .circle-link {
    width: 165px;
    justify-self: end;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .site-footer__social {
    grid-column: auto;
  }

  .site-footer__bottom {
    display: grid;
    gap: 0.5rem;
  }

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

  .page-hero {
    min-height: 340px;
    padding-bottom: 3rem;
  }

  .page-hero--post {
    min-height: 400px;
  }

  .entry-content table {
    display: block;
    overflow-x: auto;
  }

  .post-navigation-links {
    display: grid;
  }
}

@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;
  }

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

@media print {
  .site-header,
  .site-footer,
  .contact-banner,
  .button,
  .hero__shapes,
  .event-pattern {
    display: none !important;
  }

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

  .page-hero {
    min-height: 0;
    padding: 1rem 0;
    color: #000;
    background: #fff;
  }
}
