:root {
  --red: #e30613;
  --red-dark: #a9000d;
  --cream: #f8f1ea;
  --linen: #e6d5c3;
  --charcoal: #24201e;
  --muted: #6d625d;
  --clay: #ff6871;
  --sage: #64715d;
  --ochre: #b3833f;
  --white: #fffdfa;
  --line: rgba(36, 32, 30, 0.14);
  --shadow: 0 24px 70px rgba(36, 32, 30, 0.12);
  --header-height: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--charcoal);
  background: var(--cream);
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(227, 6, 19, 0.38);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-140%);
  padding: 0.7rem 1rem;
  color: var(--white);
  background: var(--red-dark);
  border-radius: 6px;
}

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

.section-shell {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--header-height);
  background: transparent;
  border-bottom: 1px solid transparent;
  backdrop-filter: none;
  transition: box-shadow 180ms ease, background 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 253, 250, 0.96);
  border-bottom-color: rgba(36, 32, 30, 0.08);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 34px rgba(36, 32, 30, 0.08);
}

.header-inner {
  width: min(1280px, calc(100% - 2rem));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 0.75rem;
}

.brand-logo-link {
  flex: 0 1 250px;
}

.brand-logo {
  width: min(250px, 38vw);
  max-height: 58px;
  object-fit: contain;
  transition: filter 180ms ease;
}

.site-header:not(.is-scrolled) .brand-logo {
  filter: brightness(0) invert(1);
}

.site-header.is-scrolled .brand-logo {
  filter: none;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
}

.primary-nav a {
  padding: 0.65rem 0.72rem;
  color: rgba(255, 253, 250, 0.92);
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 700;
}

.site-header.is-scrolled .primary-nav a {
  color: #3a312d;
}

.site-header.is-scrolled .primary-nav a:hover {
  color: var(--red-dark);
  background: rgba(227, 6, 19, 0.08);
}

.site-header:not(.is-scrolled) .primary-nav a:hover {
  color: var(--white);
  background: rgba(255, 253, 250, 0.14);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.82rem 1.1rem;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 14px 30px rgba(227, 6, 19, 0.24);
}

.button-primary:hover {
  background: var(--red-dark);
}

.button-secondary,
.button-ghost {
  color: var(--red);
  background: rgba(255, 253, 250, 0.74);
  border-color: rgba(227, 6, 19, 0.24);
}

.button-secondary:hover,
.button-ghost:hover {
  color: var(--red-dark);
  background: var(--white);
  border-color: rgba(227, 6, 19, 0.46);
}

.site-header:not(.is-scrolled) .header-actions .button-primary {
  color: var(--red-dark);
  background: rgba(255, 253, 250, 0.94);
  box-shadow: none;
}

.button-small {
  min-height: 42px;
  padding: 0.7rem 0.88rem;
  font-size: 0.86rem;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  gap: 4px;
  padding: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--charcoal);
}

.site-header:not(.is-scrolled) .menu-toggle {
  background: rgba(255, 253, 250, 0.14);
  border-color: rgba(255, 253, 250, 0.36);
}

.site-header:not(.is-scrolled) .menu-toggle span {
  background: var(--white);
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background: var(--charcoal);
  scroll-margin-top: var(--header-height);
}

.hero-video,
.hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.hero-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-scrim {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.46) 48%, rgba(0, 0, 0, 0.28)),
    rgba(0, 0, 0, 0.18);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 820px);
  align-content: center;
  align-items: center;
  min-height: min(720px, 100svh);
  padding: calc(var(--header-height) + 3.2rem) 0 2.7rem;
}

.eyebrow,
.card-kicker {
  margin: 0 0 0.65rem;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd7cf;
}

.hero-edition {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 0.75rem;
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero-edition::before {
  content: "";
  width: 40px;
  height: 4px;
  background: var(--red);
  border-radius: 999px;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: 4.25rem;
}

h2 {
  font-size: 3rem;
}

h3 {
  font-size: 1.35rem;
}

.hero-subtitle {
  max-width: 700px;
  margin: 1rem 0 0;
  font-size: 1.35rem;
  font-weight: 800;
}

.hero-copy {
  max-width: 680px;
  margin: 1rem 0 0;
  color: rgba(255, 253, 250, 0.88);
  font-size: 1.05rem;
}

.hero-actions,
.section-actions,
.card-actions,
.cta-actions,
.social-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-actions {
  margin-top: 1.65rem;
}

.section {
  padding: 6rem 0;
  scroll-margin-top: var(--header-height);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 2.1rem;
}

.section-heading h2,
.season-copy h2,
.gallery-intro h2,
.social-panel h2,
.cta-layout h2 {
  color: var(--charcoal);
}

.section-heading p,
.season-copy p,
.gallery-intro p,
.social-panel p,
.cta-layout p {
  color: var(--muted);
}

.section-heading-inline {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  max-width: none;
  gap: 2rem;
  align-items: end;
}

.section-tickets {
  padding-top: 4rem;
  background: var(--white);
}

.section-mission {
  background: var(--white);
}

.mission-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 2rem;
  align-items: start;
}

.mission-copy {
  display: grid;
  gap: 1rem;
}

.mission-copy p {
  margin: 0;
  color: var(--muted);
}

.mission-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.mission-points article {
  min-height: 280px;
  padding: 1.25rem;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.mission-points span {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--red);
  font-weight: 900;
}

.mission-points p {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

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

.ticket-card,
.workshop-card,
.exhibitor-card,
.info-card,
.season-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 54px rgba(36, 32, 30, 0.08);
}

.ticket-card {
  display: grid;
  min-height: 360px;
  padding: 1.35rem;
}

.ticket-card h3 {
  margin-bottom: 0.6rem;
}

.ticket-card p {
  margin: 0;
  color: var(--muted);
}

.ticket-card ul {
  display: grid;
  gap: 0.52rem;
  align-self: center;
  margin: 1.3rem 0;
  padding: 0;
  list-style: none;
}

.ticket-card li {
  padding-left: 1.2rem;
  position: relative;
}

.ticket-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 7px;
  height: 7px;
  background: var(--sage);
  border-radius: 50%;
}

.section-season {
  background: var(--cream);
}

.season-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 2.5rem;
  align-items: start;
}

.season-copy {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
}

.season-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.season-card {
  overflow: hidden;
}

.season-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.season-card div {
  padding: 1.1rem;
}

.season-card p {
  margin: 0.55rem 0 0;
  color: var(--muted);
}

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

.workshop-card {
  overflow: hidden;
}

.workshop-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.workshop-body {
  display: grid;
  gap: 1rem;
  padding: 1rem;
}

.workshop-summary {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.details-list {
  display: grid;
  gap: 0.48rem;
  margin: 0;
}

.details-list div {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding-bottom: 0.48rem;
  border-bottom: 1px solid rgba(36, 32, 30, 0.09);
}

.details-list dt {
  color: var(--muted);
  font-size: 0.82rem;
}

.details-list dd {
  margin: 0;
  font-size: 0.86rem;
  font-weight: 800;
  text-align: right;
}

.card-actions .button {
  flex: 1 1 120px;
  padding-inline: 0.78rem;
}

.section-pathways {
  background: var(--white);
}

.pathway-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.pathway-card {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  min-height: 320px;
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 54px rgba(36, 32, 30, 0.08);
}

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

.pathway-card div {
  display: grid;
  align-content: center;
  gap: 0.9rem;
  padding: 1.35rem;
}

.pathway-card p {
  margin: 0;
  color: var(--muted);
}

.page-hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  min-height: clamp(520px, 62vh, 700px);
  padding: calc(var(--header-height) + 3.5rem) 0 4rem;
  color: var(--white);
  background: var(--charcoal);
  scroll-margin-top: var(--header-height);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(36, 32, 30, 0.9), rgba(36, 32, 30, 0.56) 48%, rgba(36, 32, 30, 0.2));
}

.page-hero-layout {
  display: block;
  min-height: 0;
  position: static;
}

.page-hero-layout > div {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.page-hero h1 {
  color: var(--white);
  font-size: 3.7rem;
}

.page-hero p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 253, 250, 0.78);
  font-size: 1.05rem;
}

.page-hero .eyebrow {
  color: #ffd7cf;
}

.page-hero img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}

.section-exhibitors {
  background: var(--white);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.4rem;
}

.filter-button {
  min-height: 38px;
  padding: 0.48rem 0.75rem;
  color: #413733;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 800;
}

.filter-button[aria-pressed="true"],
.filter-button:hover {
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
}

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

.exhibitor-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 0;
  overflow: hidden;
}

.exhibitor-media {
  display: block;
  background: #fffdfa;
  border-bottom: 1px solid var(--line);
  transition: background 180ms ease, transform 180ms ease;
}

.exhibitor-media[href]:hover {
  background: var(--white);
}

.exhibitor-media[href]:hover img {
  transform: scale(1.02);
}

.exhibitor-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  padding: 1.25rem;
  object-fit: contain;
  background: transparent;
  transition: transform 180ms ease;
}

.exhibitor-body {
  display: grid;
  align-content: start;
  gap: 0.7rem;
  padding: 1rem;
}

.category-pill {
  justify-self: start;
  padding: 0.28rem 0.52rem;
  color: var(--red-dark);
  background: rgba(227, 6, 19, 0.1);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 900;
}

.exhibitor-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.booth {
  color: var(--charcoal) !important;
  font-weight: 900;
}

.text-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.text-links a,
.download-links a,
.site-footer a {
  color: var(--red);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.section-gallery {
  background: #f3e7dc;
}

.gallery-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 2rem;
  align-items: center;
}

.gallery-intro {
  display: grid;
  gap: 1rem;
}

.gallery-intro p {
  margin: 0;
}

.gallery-collage {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.gallery-item {
  margin: 0;
  overflow: hidden;
  padding: 0.38rem;
  background: var(--white);
  border: 1px solid rgba(36, 32, 30, 0.1);
  border-radius: 8px;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 6px;
  background: #f3e7dc;
}

.section-edition-gallery {
  background: var(--white);
}

.edition-gallery-grid {
  columns: 3 280px;
  column-gap: 0.9rem;
}

.edition-gallery-item {
  margin: 0;
  margin-bottom: 0.9rem;
  overflow: hidden;
  padding: 0.38rem;
  background: var(--white);
  border: 1px solid rgba(36, 32, 30, 0.1);
  border-radius: 8px;
  box-shadow: var(--shadow);
  break-inside: avoid;
}

.edition-gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 6px;
  background: #f3e7dc;
}

.section-social {
  background: var(--charcoal);
  color: var(--white);
}

.social-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
}

.social-panel h2,
.social-panel p {
  color: var(--white);
}

.social-panel p {
  max-width: 620px;
  color: rgba(255, 253, 250, 0.72);
}

.social-icon-link {
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  color: var(--red);
  background: var(--white);
  border: 1px solid rgba(255, 253, 250, 0.22);
  border-radius: 999px;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.social-icon-link:hover {
  transform: translateY(-1px);
  color: var(--white);
  background: var(--red);
}

.social-icon-link svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.section-info {
  background: var(--cream);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.info-card {
  min-height: 220px;
  padding: 1.25rem;
}

.info-card ul {
  display: grid;
  gap: 0.6rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.info-card li,
.download-links a {
  color: var(--muted);
}

.download-links {
  display: grid;
  gap: 0.65rem;
  margin-top: 1rem;
}

.exhibitor-cta {
  background: var(--white);
}

.cta-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.cta-layout p {
  max-width: 780px;
}

.site-footer {
  padding: 4rem 0;
  color: rgba(255, 253, 250, 0.76);
  background: #000;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.75fr 1fr 1.1fr;
  gap: 2rem;
}

.site-footer h2 {
  margin: 0 0 0.9rem;
  color: var(--white);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0 0 0.45rem;
}

.site-footer nav,
.site-footer div {
  min-width: 0;
}

.site-footer nav a {
  display: block;
  margin-bottom: 0.35rem;
}

.footer-logo {
  width: min(190px, 100%);
  height: auto;
}

.footer-tagline {
  max-width: 240px;
  margin-top: 0.9rem !important;
}

.footer-social-actions {
  margin-top: 0.85rem;
}

.footer-social-actions .social-icon-link {
  width: 44px;
  height: 44px;
}

.footer-social-actions .social-icon-link svg {
  width: 22px;
  height: 22px;
}

.newsletter-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.5rem;
  margin-top: 0.8rem;
}

.newsletter-form input {
  width: 100%;
  min-height: 46px;
  padding: 0.75rem 0.9rem;
  color: var(--charcoal);
  background: var(--white);
  border: 1px solid rgba(255, 253, 250, 0.18);
  border-radius: 6px;
}

.form-note {
  min-height: 1.4rem;
  margin-top: 0.7rem !important;
  color: #f2c7bf;
  font-size: 0.86rem;
}

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

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@media (max-width: 1120px) {
  .primary-nav {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    display: grid;
    max-height: calc(100svh - var(--header-height));
    padding: 1rem;
    overflow: auto;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 50px rgba(36, 32, 30, 0.14);
    transform: translateY(-130%);
    transition: transform 220ms ease;
  }

  .site-header:not(.is-scrolled) .primary-nav {
    background: var(--white);
  }

  .primary-nav.is-open {
    transform: translateY(0);
  }

  .primary-nav a {
    color: var(--charcoal);
    padding: 0.95rem;
    border-bottom: 1px solid rgba(36, 32, 30, 0.08);
  }

  .site-header:not(.is-scrolled) .primary-nav a {
    color: var(--charcoal);
  }

  .site-header:not(.is-scrolled) .primary-nav a:hover {
    color: var(--red-dark);
    background: rgba(227, 6, 19, 0.08);
  }

  .menu-toggle {
    display: grid;
  }

  .workshop-grid,
  .info-grid,
  .mission-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

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

  .section-shell,
  .header-inner {
    width: min(100% - 1.25rem, 1180px);
  }

  .brand-logo-link {
    flex-basis: 176px;
  }

  .brand-logo {
    width: min(176px, 38vw);
    max-height: 48px;
  }

  .header-actions .button {
    max-width: 148px;
    min-height: 40px;
    padding: 0.62rem 0.72rem;
    font-size: 0.78rem;
  }

  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 2.24rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: calc(var(--header-height) + 1.95rem) 0 1.35rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-copy {
    margin-top: 0.75rem;
    font-size: 0.94rem;
  }

  .ticket-grid,
  .season-layout,
  .season-grid,
  .mission-layout,
  .section-heading-inline,
  .gallery-layout,
  .cta-layout,
  .page-hero-layout {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 4.2rem 0;
  }

  .season-copy {
    position: static;
  }

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

  .newsletter-form {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: calc(var(--header-height) + 2rem) 0 3rem;
  }

  .page-hero h1 {
    font-size: 2.55rem;
  }

  .pathway-grid,
  .pathway-card {
    grid-template-columns: 1fr;
  }

  .pathway-card img {
    aspect-ratio: 1.45 / 1;
  }
}

@media (max-width: 620px) {
  .brand-logo-link {
    flex-basis: 132px;
  }

  .brand-logo {
    width: min(132px, 34vw);
    max-height: 42px;
  }

  .hero-actions,
  .section-actions,
  .card-actions,
  .cta-actions,
  .social-actions {
    display: grid;
  }

  .social-actions {
    grid-template-columns: repeat(2, 56px);
  }

  .button {
    width: 100%;
  }

  .workshop-grid,
  .exhibitor-grid,
  .info-grid,
  .mission-points,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .exhibitor-media img {
    aspect-ratio: 16 / 9;
  }

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

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

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

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