@font-face {
  font-family: "Hamston";
  src: url("/assets/fonts/hamston.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Barlow Condensed";
  src: url("/assets/fonts/barlow-condensed-medium.otf") format("opentype");
  font-display: swap;
}

:root {
  --honey: #f5aa00;
  --honey-dark: #a96d00;
  --ink: #181816;
  --ink-soft: #292823;
  --cream: #f2eee5;
  --paper: #fffdf8;
  --sage: #d6d8ce;
  --muted: #625f57;
  --line: rgba(24, 24, 22, 0.18);
  --line-light: rgba(255, 253, 248, 0.28);
  --display: "Hamston", Georgia, serif;
  --sans: "Barlow Condensed", "Arial Narrow", sans-serif;
  --gutter: clamp(1.25rem, 4.5vw, 5rem);
  --section-space: clamp(5.5rem, 9vw, 9rem);
  --event-h: 2.65rem;
  --header-h: 5.75rem;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--event-h) + var(--header-h) + 1rem);
  scrollbar-color: var(--honey) var(--ink);
  scrollbar-width: thin;
}

body {
  margin: 0;
  padding-top: calc(var(--event-h) + var(--header-h));
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.08rem;
  line-height: 1.58;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

::-webkit-scrollbar {
  width: 0.7rem;
}

::-webkit-scrollbar-track {
  background: var(--ink);
}

::-webkit-scrollbar-thumb {
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--honey);
}

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

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

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

a {
  color: inherit;
  text-underline-offset: 0.22em;
}

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

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

h1,
h2,
h3 {
  text-wrap: balance;
}

h1,
h2 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.92;
  text-transform: uppercase;
}

h2 {
  max-width: 12ch;
  margin-bottom: 1.5rem;
  font-size: clamp(3rem, 5vw, 5.25rem);
}

h3 {
  font-family: var(--display);
  font-size: clamp(1.9rem, 3vw, 3.1rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 0.98;
  text-transform: uppercase;
}

.shell {
  width: min(100%, 88rem);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: var(--section-space);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(18rem, 0.55fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: end;
  max-width: none;
  margin-bottom: clamp(3rem, 6vw, 5.5rem);
}

.section-heading h2,
.section-heading p {
  margin-bottom: 0;
}

.section-heading p,
.prose {
  max-width: 62ch;
}

.display-accent {
  color: var(--honey-dark);
}

.on-dark .display-accent,
.home-hero .display-accent,
.inner-hero .display-accent {
  color: var(--honey);
}

.label,
.availability {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  line-height: 1.2;
  text-transform: uppercase;
}

.availability {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 1rem;
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 0.58rem 0.85rem;
}

.button,
.text-action {
  display: inline-flex;
  min-height: 3.2rem;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms var(--ease);
}

.button {
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 0.85rem 1.45rem;
  background: var(--ink);
  color: var(--paper);
}

.button:hover,
.button:focus-visible {
  border-color: var(--honey);
  background: var(--honey);
  color: var(--ink);
  transform: translateY(-2px);
}

.button:active,
.text-action:active {
  transform: translateY(0) scale(0.98);
}

.button--honey {
  border-color: var(--honey);
  background: var(--honey);
  color: var(--ink);
}

.button--honey:hover,
.button--honey:focus-visible {
  border-color: var(--paper);
  background: var(--paper);
}

.button--outline {
  border-color: currentColor;
  background: transparent;
  color: inherit;
}

.text-action {
  position: relative;
  min-height: 2.6rem;
}

.text-action::after {
  position: absolute;
  content: "";
  right: 0;
  bottom: 0.25rem;
  left: 0;
  height: 1px;
  background: currentColor;
  transform-origin: right;
  transition: transform 260ms var(--ease);
}

.text-action:hover::after,
.text-action:focus-visible::after {
  transform: scaleX(0.45);
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-160%);
}

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

.event-ribbon {
  position: relative;
  z-index: 90;
  top: auto;
  height: var(--event-h);
  border-bottom: 1px solid rgba(24, 24, 22, 0.24);
  background: var(--honey);
  color: var(--ink);
}

.event-ribbon__inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 4vw, 3.25rem);
  padding-inline: var(--gutter);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  white-space: nowrap;
}

.event-ribbon__inner a {
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 0.28rem 0.78rem;
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease;
}

.event-ribbon__inner a:hover,
.event-ribbon__inner a:focus-visible {
  background: var(--ink);
  color: var(--paper);
}

[data-event-status-compact] {
  display: none;
}

.site-header {
  position: relative;
  z-index: 80;
  top: auto;
  min-height: var(--header-h);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.97);
  backdrop-filter: blur(12px);
}

.site-chrome {
  position: fixed;
  z-index: 90;
  top: 0;
  right: 0;
  left: 0;
  isolation: isolate;
}

.site-header__inner {
  display: flex;
  min-height: var(--header-h);
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  flex: 0 0 auto;
  width: clamp(8.25rem, 11vw, 10rem);
}

.brand img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 2.25rem);
}

.site-nav > a:not(.button) {
  position: relative;
  padding-block: 0.8rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav > a:not(.button)::after {
  position: absolute;
  content: "";
  right: 0;
  bottom: 0.5rem;
  left: 0;
  height: 2px;
  background: var(--honey);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms var(--ease);
}

.site-nav > a:hover::after,
.site-nav > a:focus-visible::after,
.site-nav > a[aria-current="page"]::after,
.site-nav > a[aria-current="location"]::after {
  transform: scaleX(1);
}

.site-nav > a:focus-visible::after {
  transition: none;
}

.menu-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--ink);
  border-radius: 50%;
  padding: 0;
  background: transparent;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 1.3rem;
  height: 1px;
  margin: 0.28rem auto;
  background: var(--ink);
  transition: opacity 200ms ease, transform 260ms var(--ease);
}

.menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"]::before {
  transform: translateY(0.56rem) rotate(45deg);
}

.menu-toggle[aria-expanded="true"]::after {
  transform: translateY(-0.56rem) rotate(-45deg);
}

.social-rail {
  position: fixed;
  z-index: 60;
  top: 48%;
  right: 1.2rem;
  display: grid;
  justify-items: center;
  gap: 0.65rem;
  padding: 1.05rem 0.62rem;
  border-radius: 999px;
  background: rgba(24, 24, 22, 0.94);
  color: var(--paper);
}

.social-rail span {
  writing-mode: vertical-rl;
  font-size: 0.61rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.social-rail a,
.social-links a {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease;
}

.social-rail a:hover,
.social-rail a:focus-visible,
.social-links a:hover,
.social-links a:focus-visible {
  background: var(--honey);
  color: var(--ink);
}

.social-rail svg,
.social-links svg {
  width: 0.95rem;
  height: 0.95rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.home-hero {
  position: relative;
  display: flex;
  width: 100%;
  max-width: none;
  min-height: calc(100svh - var(--event-h) - var(--header-h));
  align-items: flex-end;
  overflow: hidden;
  padding: clamp(3.5rem, 6vw, 5.5rem) var(--gutter) clamp(2.5rem, 4vw, 4rem);
  background: var(--ink);
  color: var(--paper);
}

.home-hero__visual {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  background: var(--ink);
}

.home-hero__visual picture,
.home-hero__visual img {
  width: 100%;
  height: 100%;
}

.home-hero__visual img {
  object-fit: cover;
  object-position: center 52%;
  transform: scale(1.01);
}

.home-hero__visual::after {
  position: absolute;
  content: "";
  inset: 0;
  background:
    linear-gradient(90deg, rgba(14, 14, 12, 0.82) 0%, rgba(14, 14, 12, 0.56) 38%, rgba(14, 14, 12, 0.12) 70%),
    linear-gradient(0deg, rgba(14, 14, 12, 0.55), transparent 56%);
}

.home-hero__content {
  position: relative;
  z-index: 2;
  width: min(100%, 48rem);
}

.home-hero h1 {
  max-width: 9ch;
  margin-bottom: 1.1rem;
  font-size: clamp(3.8rem, 6vw, 5.45rem);
  line-height: 0.86;
}

.home-hero h1 span {
  display: block;
}

.home-hero__promise {
  max-width: 38rem;
  margin-bottom: 1.1rem;
  color: rgba(255, 253, 248, 0.9);
  font-size: clamp(1.14rem, 1.5vw, 1.38rem);
  line-height: 1.45;
}

.home-hero__date {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
  font-variant-numeric: tabular-nums;
}

.home-hero__date strong {
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 400;
  line-height: 1;
}

.home-hero__date span {
  color: rgba(255, 253, 248, 0.72);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.4rem;
}

.hero-actions__vendor {
  color: var(--honey);
}

.hero-seal {
  position: absolute;
  z-index: 2;
  right: clamp(2rem, 7vw, 7rem);
  bottom: clamp(2rem, 5vw, 4.5rem);
  display: grid;
  width: 7.3rem;
  height: 7.3rem;
  place-content: center;
  border: 1px solid rgba(255, 253, 248, 0.58);
  border-radius: 50%;
  color: var(--paper);
  text-align: center;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  line-height: 1.55;
  text-transform: uppercase;
}

.js .home-hero__content,
.js .inner-hero__copy {
  animation: hero-copy-in 720ms 100ms var(--ease) both;
}

.js .home-hero__visual img,
.js .inner-hero__visual img {
  animation: hero-photo-in 1200ms var(--ease) both;
}

@keyframes hero-copy-in {
  from {
    opacity: 0;
    transform: translateY(1rem);
  }
}

@keyframes hero-photo-in {
  from {
    opacity: 0.72;
    transform: scale(1.045);
  }
}

.discovery-marquee {
  display: flex;
  min-height: 4.1rem;
  align-items: center;
  overflow: hidden;
  border-block: 1px solid rgba(24, 24, 22, 0.28);
  background: var(--honey);
  color: var(--ink);
  contain: paint;
}

.discovery-marquee__track {
  display: flex;
  width: max-content;
  animation: marquee-run 27s linear infinite paused;
  transform: translate3d(0, 0, 0);
}

.discovery-marquee.is-running .discovery-marquee__track {
  animation-play-state: running;
}

.discovery-marquee__group {
  display: flex;
  flex: none;
  align-items: center;
  gap: clamp(1.3rem, 3vw, 2.7rem);
  padding-right: clamp(1.3rem, 3vw, 2.7rem);
  white-space: nowrap;
}

.discovery-marquee span {
  font-family: var(--display);
  font-size: clamp(1.65rem, 2.7vw, 2.4rem);
  letter-spacing: -0.015em;
  line-height: 1;
  text-transform: uppercase;
}

.discovery-marquee i {
  font-size: 0.82rem;
  font-style: normal;
}

@keyframes marquee-run {
  to { transform: translate3d(-50%, 0, 0); }
}

@media (hover: hover) and (pointer: fine) {
  .discovery-marquee:hover .discovery-marquee__track {
    animation-play-state: paused;
  }
}

.facts {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

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

.fact {
  display: flex;
  min-height: 7.5rem;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--line);
  padding: 1.6rem clamp(1rem, 2.5vw, 2.5rem);
  color: inherit;
  text-decoration: none;
}

.fact:last-child {
  border-right: 0;
}

.fact span {
  margin-bottom: 0.35rem;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.fact strong {
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.25vw, 2.2rem);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.fact--link {
  transition: background-color 180ms ease;
}

.fact--link:hover,
.fact--link:focus-visible {
  background: var(--honey);
}

.anchor-target,
#fall-show,
#location,
#vendors,
#venue,
#about {
  scroll-margin-top: 1rem;
}

.anchor-target {
  position: relative;
  display: block;
  height: 0;
}

.pathways {
  background: var(--paper);
}

.pathways__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(1rem, 2vw, 1.8rem);
}

.pathway {
  position: relative;
  min-height: 34rem;
  overflow: hidden;
  border-radius: 0.85rem;
  background: var(--ink);
  color: var(--paper);
}

.pathway img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--ease);
}

.pathway::after {
  position: absolute;
  content: "";
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 10, 9, 0.84), rgba(10, 10, 9, 0.06) 72%);
}

.pathway__content {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: clamp(1.7rem, 4vw, 3.5rem);
}

.pathway__content h3 {
  max-width: 10ch;
  margin-bottom: 0.9rem;
  font-size: clamp(2.7rem, 4.7vw, 4.6rem);
}

.pathway__content p {
  max-width: 35rem;
  margin-bottom: 1.35rem;
  color: rgba(255, 253, 248, 0.85);
}

.pathway:hover img {
  transform: scale(1.035);
}

.about {
  background: var(--cream);
}

.about__grid {
  display: grid;
  grid-template-columns: minmax(18rem, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}

.about__copy {
  max-width: 34rem;
}

.about__copy p {
  color: var(--muted);
}

.about__copy .text-action {
  margin-top: 0.7rem;
}

.about__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem 1.5rem;
  margin-top: 1.2rem;
}

.about__photos {
  display: grid;
  grid-template-columns: 1.35fr 0.75fr;
  grid-template-rows: 18rem 18rem;
  gap: 1rem;
}

.about__photos figure {
  position: relative;
  margin: 0;
  overflow: hidden;
}

.about__photos figure:first-child {
  grid-row: 1 / 3;
  border-radius: 12rem 12rem 0.6rem 0.6rem;
}

.about__photos figure:not(:first-child) {
  border-radius: 0.6rem;
}

.about__photos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms var(--ease);
}

.about__photos figure:hover img {
  transform: scale(1.035);
}

.about__photos figcaption,
.gallery-item span {
  position: absolute;
  right: 0.7rem;
  bottom: 0.7rem;
  padding: 0.38rem 0.55rem;
  background: rgba(24, 24, 22, 0.88);
  color: var(--paper);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-contact {
  display: grid;
  grid-template-columns: minmax(16rem, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(3rem, 8vw, 8rem);
  margin-top: clamp(4rem, 8vw, 7rem);
  border-top: 1px solid var(--line);
  padding-top: clamp(2.5rem, 5vw, 4rem);
}

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

.contact-section .about-contact {
  margin-top: 0;
}

.about-contact h3 {
  max-width: 9ch;
  margin-top: 0.65rem;
  font-size: clamp(2.5rem, 4vw, 4rem);
}

.about-contact > div p {
  color: var(--muted);
}

.about-contact form {
  border-radius: 0.75rem;
  padding: clamp(1.5rem, 3.5vw, 2.8rem);
  background: var(--paper);
  box-shadow: 0 1.4rem 4rem rgba(24, 24, 22, 0.06);
}

.location-contact {
  background: var(--sage);
  color: var(--ink);
}

.location-contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(22rem, 0.75fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
}

.location-contact h2 {
  max-width: 9ch;
}

.contact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.2rem;
  margin: 1.6rem 0 2.1rem;
  padding: 0;
  list-style: none;
}

.contact-list a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.map-frame {
  position: relative;
  min-height: 26rem;
  overflow: hidden;
  border-radius: 12rem 12rem 0.75rem 0.75rem;
  background: #bbbeb4;
}

.map-frame iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 0;
  inset: 0;
}

.contact-panel,
.inquiry-panel {
  border-radius: 0.8rem;
  padding: clamp(1.7rem, 4vw, 3.2rem);
  background: var(--paper);
  color: var(--ink);
}

.contact-panel h3 {
  max-width: 9ch;
  margin-bottom: 1rem;
}

.contact-panel > p,
.inquiry-panel > p,
form > p {
  color: var(--muted);
}

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

.field--wide {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.field label span {
  color: var(--muted);
  font-weight: 400;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 3rem;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  padding: 0.6rem 0;
  background: transparent;
  outline: 0;
}

.field textarea {
  min-height: 7rem;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-bottom-color: var(--honey-dark);
  box-shadow: 0 1px 0 var(--honey-dark);
}

.field input::placeholder,
.field textarea::placeholder {
  color: #77736a;
  opacity: 1;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.4rem;
  margin-top: 1.7rem;
}

.form-actions .button:disabled {
  cursor: wait;
  opacity: 0.62;
}

.form-status {
  margin: 0;
  color: var(--muted);
}

.form-status[data-state="success"] {
  color: #17633c;
}

.form-status[data-state="error"] {
  color: #9b2929;
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip-path: inset(50%) !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.inner-hero {
  position: relative;
  display: flex;
  min-height: calc(100svh - var(--event-h) - var(--header-h));
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}

.inner-hero__copy {
  position: relative;
  z-index: 2;
  width: min(100%, 52rem);
  padding: clamp(3.5rem, 6vw, 5.5rem) var(--gutter) clamp(2.5rem, 4vw, 4rem);
}

.inner-hero h1 {
  max-width: 10ch;
  margin-bottom: 1.1rem;
  font-size: clamp(3.8rem, 6vw, 5.45rem);
  line-height: 0.88;
}

.inner-hero__lead {
  max-width: 39rem;
  margin-bottom: 1.25rem;
  color: rgba(255, 253, 248, 0.88);
  font-size: clamp(1.14rem, 1.55vw, 1.38rem);
  line-height: 1.45;
}

.inner-hero__visual {
  position: absolute;
  z-index: 0;
  inset: 0;
}

.inner-hero__visual picture,
.inner-hero__visual img {
  width: 100%;
  height: 100%;
}

.inner-hero__visual img {
  object-fit: cover;
  object-position: center;
}

.space-hero .inner-hero__visual img {
  object-position: center 58%;
}

.inner-hero__visual::after {
  position: absolute;
  content: "";
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 10, 9, 0.85), rgba(10, 10, 9, 0.48) 44%, rgba(10, 10, 9, 0.14) 73%),
    linear-gradient(0deg, rgba(10, 10, 9, 0.65), transparent 58%);
}

.inner-hero .text-action {
  color: var(--paper);
}

.event-panel {
  border-bottom: 1px solid rgba(24, 24, 22, 0.28);
  background: var(--honey);
}

.event-panel__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.6fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: end;
}

.event-date {
  display: flex;
  align-items: center;
  gap: clamp(0.55rem, 1.7vw, 1.4rem);
  font-variant-numeric: tabular-nums;
}

.event-date span {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.event-date strong {
  font-family: var(--display);
  font-size: clamp(4.2rem, 9vw, 8rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 0.82;
}

.event-date i {
  width: clamp(1.5rem, 4vw, 4rem);
  height: 1px;
  background: var(--ink);
}

.event-panel__meta {
  padding-left: clamp(1.5rem, 4vw, 3rem);
  border-left: 1px solid rgba(24, 24, 22, 0.3);
}

.event-panel__meta strong {
  display: block;
  font-family: var(--display);
  font-size: 2.5rem;
  font-weight: 400;
  text-transform: uppercase;
}

.finds {
  background: var(--paper);
}

.word-field {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.word-field div {
  display: flex;
  min-height: 8.5rem;
  align-items: center;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.5rem;
}

.word-field div:nth-child(4n) {
  border-right: 0;
}

.word-field strong {
  font-family: var(--display);
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 400;
  text-transform: uppercase;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 14rem;
  gap: 1rem;
}

.gallery-item {
  position: relative;
  grid-column: span 4;
  overflow: hidden;
  border: 0;
  border-radius: 0.6rem;
  padding: 0;
  background: var(--ink);
  cursor: zoom-in;
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(4) {
  grid-column: span 7;
  grid-row: span 2;
}

.gallery-item:nth-child(2),
.gallery-item:nth-child(3),
.gallery-item:nth-child(5),
.gallery-item:nth-child(6) {
  grid-column: span 5;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 300ms ease, transform 900ms var(--ease);
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  opacity: 0.88;
  transform: scale(1.035);
}

.visit-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(24rem, 1.08fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.visit-layout .section-heading {
  display: block;
  margin-bottom: 2.5rem;
}

.visit-layout .section-heading p {
  margin-bottom: 0;
}

.visit-details {
  margin-bottom: 2rem;
  border-top: 1px solid var(--line);
}

.visit-details article {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 1rem;
  align-items: baseline;
  border-bottom: 1px solid var(--line);
  padding-block: 1.1rem;
}

.visit-details strong {
  font-size: 1.3rem;
}

.visit-details p {
  grid-column: 2;
  margin: 0;
  color: var(--muted);
}

.visit-layout .map-frame {
  min-height: 30rem;
}

.guide-card {
  display: grid;
  grid-template-columns: 9rem 1fr;
  gap: 1.2rem;
  align-items: center;
  margin-top: 1rem;
}

.guide-card img {
  width: 100%;
  height: 8rem;
  object-fit: cover;
  object-position: center;
}

.guide-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.faq {
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.faq__grid {
  display: grid;
  grid-template-columns: minmax(16rem, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.faq details {
  border-top: 1px solid var(--line);
}

.faq details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  position: relative;
  padding: 1.35rem 3rem 1.35rem 0;
  cursor: pointer;
  font-size: 1.25rem;
  list-style: none;
}

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

.faq summary::after {
  position: absolute;
  content: "+";
  top: 50%;
  right: 0;
  font-family: var(--display);
  font-size: 1.8rem;
  transform: translateY(-50%);
}

.faq details[open] summary::after {
  content: "−";
}

.faq details p {
  max-width: 65ch;
  padding: 0 3rem 1.4rem 0;
  color: var(--muted);
}

.show-gallery {
  background: var(--cream);
}

.plan-visit {
  background: var(--paper);
}

.vendor-teaser {
  position: relative;
  overflow: hidden;
  background: var(--ink-soft);
  color: var(--paper);
}

.vendor-teaser::after {
  position: absolute;
  content: "";
  top: -11rem;
  right: -9rem;
  width: 28rem;
  height: 28rem;
  border: 1px solid rgba(244, 170, 0, 0.28);
  border-radius: 50%;
  pointer-events: none;
}

.vendor-teaser__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(20rem, 0.95fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}

.vendor-teaser__image {
  position: relative;
  min-height: 35rem;
  overflow: hidden;
  border-radius: 16rem 16rem 0.7rem 0.7rem;
}

.vendor-teaser__image::after {
  position: absolute;
  content: "";
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 10, 9, 0.55), transparent 45%);
}

.vendor-teaser__image img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--ease);
  inset: 0;
}

.vendor-teaser__image:hover img {
  transform: scale(1.03);
}

.vendor-teaser__image span {
  position: absolute;
  z-index: 1;
  right: 1.2rem;
  bottom: 1.1rem;
  left: 1.2rem;
  color: var(--paper);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.vendor-teaser__content {
  max-width: 37rem;
}

.vendor-teaser__content .availability,
.vendor-teaser__content .display-accent {
  color: var(--honey);
}

.vendor-teaser__content > p:not(.availability) {
  color: rgba(255, 253, 248, 0.76);
}

.vendor-teaser__categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.7rem 0;
  padding: 0;
  list-style: none;
}

.vendor-teaser__categories li {
  border: 1px solid rgba(255, 253, 248, 0.25);
  border-radius: 999px;
  padding: 0.45rem 0.7rem;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.vendor-teaser__content .vendor-teaser__proof-label {
  margin: 1.7rem 0 0.7rem;
  color: var(--honey);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.vendor-teaser__proof {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.7rem;
}

.vendor-teaser__proof img {
  width: 10.5rem;
  height: 5.6rem;
  border-radius: 0.35rem;
  padding: 0.6rem 0.8rem;
  background: var(--paper);
  object-fit: contain;
}

.vendor-teaser__proof img:first-child {
  width: 7.3rem;
}

.spaces-showcase {
  background: var(--paper);
}

.spaces-showcase__grid {
  display: grid;
  grid-template-columns: minmax(19rem, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}

.spaces-showcase__copy {
  max-width: 34rem;
}

.spaces-showcase__copy .button {
  margin-top: 0.8rem;
}

.vendor-carousel {
  min-width: 0;
}

.vendor-carousel__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.vendor-carousel__top p {
  margin: 0;
}

.vendor-carousel__controls {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.65rem;
}

.vendor-carousel__controls button {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms var(--ease);
}

.vendor-carousel__controls button:hover,
.vendor-carousel__controls button:focus-visible {
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-2px);
}

.vendor-carousel__controls button:disabled {
  cursor: default;
  opacity: 0.32;
  transform: none;
}

.vendor-carousel__controls span {
  min-width: 3.2rem;
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.vendor-carousel__viewport {
  min-width: 0;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding-bottom: 0.7rem;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--honey) rgba(24, 24, 22, 0.12);
  scrollbar-width: thin;
}

.vendor-carousel__track {
  display: flex;
  gap: 1rem;
}

.vendor-carousel .vendor-carousel__slide,
.vendor-carousel .vendor-carousel__slide:nth-child(n) {
  flex: 0 0 clamp(20rem, 76%, 34rem);
  grid-column: auto;
  grid-row: auto;
  min-height: 30rem;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.vendor-carousel .vendor-carousel__slide:first-child {
  border-radius: 12rem 12rem 0.6rem 0.6rem;
}

.spaces-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.originals {
  background: var(--ink-soft);
  color: var(--paper);
}

.originals__grid {
  display: grid;
  grid-template-columns: minmax(17rem, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.originals__grid > div p {
  max-width: 30rem;
  color: rgba(255, 253, 248, 0.74);
}

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

.category-list li {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line-light);
  padding: 1rem 0;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1;
  text-transform: uppercase;
}

.category-list li:last-child {
  border-bottom: 1px solid var(--line-light);
}

.category-list span {
  color: var(--honey);
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.process {
  background: var(--cream);
}

.process__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.process__grid article {
  min-height: 18rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

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

.process__number {
  display: block;
  margin-bottom: 3.5rem;
  color: var(--honey-dark);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
}

.process__grid h3 {
  max-width: 9ch;
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.process__grid p {
  color: var(--muted);
}

.vendor-proof {
  display: grid;
  grid-template-columns: 1fr 1fr 1.15fr;
  border-block: 1px solid var(--line);
  background: var(--paper);
}

.vendor-proof > div {
  display: grid;
  min-height: 13rem;
  place-items: center;
  border-right: 1px solid var(--line);
  padding: 2rem;
}

.vendor-proof > div:last-child {
  justify-items: start;
  border-right: 0;
  background: var(--honey);
}

.vendor-proof img {
  width: min(100%, 13rem);
  max-height: 7rem;
  object-fit: contain;
}

.vendor-proof > div:first-child img {
  max-height: 9rem;
}

.vendor-proof strong {
  max-width: 11ch;
  font-family: var(--display);
  font-size: clamp(2rem, 3.5vw, 3.4rem);
  font-weight: 400;
  line-height: 0.98;
  text-transform: uppercase;
}

.inquiry-section {
  background: var(--sage);
}

.inquiry-section__grid {
  display: grid;
  grid-template-columns: minmax(17rem, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.inquiry-section__grid > div:first-child {
  position: sticky;
  top: calc(var(--event-h) + var(--header-h) + 2rem);
}

.inquiry-panel {
  box-shadow: 0 1.5rem 4rem rgba(24, 24, 22, 0.08);
}

.concept-plan {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(18rem, 1.25fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  margin-top: 5rem;
  padding-top: 3rem;
  border-top: 1px solid var(--line);
}

.concept-plan img {
  width: 100%;
  max-height: 25rem;
  object-fit: cover;
  object-position: top;
}

.site-plan__preview {
  display: grid;
  min-width: 0;
  color: inherit;
  cursor: zoom-in;
  text-decoration: none;
}

.concept-plan h3 {
  max-width: 11ch;
}

.concept-plan p {
  max-width: 48rem;
  color: var(--muted);
}

.site-footer {
  padding-block: 5rem 2rem;
  background: #0c0c0b;
  color: var(--paper);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 0.55fr 0.8fr;
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: start;
}

.site-footer__home {
  display: block;
  width: fit-content;
  margin-bottom: 2rem;
}

.site-footer__brand img {
  width: 8.5rem;
  filter: brightness(0) invert(1);
}

.site-footer__brand h2 {
  max-width: 18ch;
  margin-bottom: 0;
  font-size: clamp(2rem, 3.1vw, 3.65rem);
  line-height: 1.02;
  text-wrap: balance;
}

.site-footer nav,
.site-footer address {
  display: grid;
  gap: 0.7rem;
  font-style: normal;
}

.site-footer nav a,
.site-footer address a,
.site-footer address span {
  width: fit-content;
  color: rgba(255, 253, 248, 0.74);
  font-size: clamp(1rem, 1.2vw, 1.25rem);
  line-height: 1.5;
  text-underline-offset: 0.2em;
}

.site-footer nav a {
  font-size: clamp(1.1rem, 1.35vw, 1.4rem);
}

.site-footer address .social-links a {
  width: 2.4rem;
  height: 2.4rem;
  flex: 0 0 2.4rem;
}

.social-links {
  display: flex;
  gap: 0.55rem;
  margin-top: 1rem;
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 5rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line-light);
  color: rgba(255, 253, 248, 0.6);
  font-size: clamp(0.85rem, 1vw, 1rem);
}

.gallery-dialog {
  width: min(92vw, 70rem);
  max-height: 92vh;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--paper);
}

.gallery-dialog::backdrop {
  background: rgba(8, 8, 7, 0.92);
  backdrop-filter: blur(7px);
}

.gallery-dialog__body {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 1rem;
}

.gallery-dialog[open]::backdrop {
  animation: backdrop-in 200ms ease-out both;
}

.gallery-dialog[open] .gallery-dialog__body {
  animation: dialog-in 280ms var(--ease) both;
}

.gallery-dialog.is-closing::backdrop {
  animation: backdrop-out 160ms ease-in both;
}

.gallery-dialog.is-closing .gallery-dialog__body {
  animation: dialog-out 160ms ease-in both;
}

@keyframes backdrop-in { from { opacity: 0; } }
@keyframes backdrop-out { to { opacity: 0; } }
@keyframes dialog-in { from { opacity: 0; transform: translateY(0.6rem) scale(0.985); } }
@keyframes dialog-out { to { opacity: 0; transform: translateY(-0.35rem) scale(0.99); } }

.gallery-dialog__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gallery-dialog__top button {
  min-width: 3rem;
  height: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  background: transparent;
  color: var(--paper);
  cursor: pointer;
}

.gallery-dialog img {
  width: 100%;
  max-height: 75vh;
  object-fit: contain;
}

.gallery-dialog figcaption {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .site-nav {
    gap: 1rem;
  }

  .site-nav .button {
    padding-inline: 1rem;
  }

  .pathway {
    min-height: 30rem;
  }

  .about__grid,
  .spaces-showcase__grid {
    gap: 4rem;
  }

  .gallery-grid {
    grid-auto-rows: 12rem;
  }
}

@media (max-width: 860px) {
  :root {
    --header-h: 5rem;
  }

  .menu-toggle {
    position: relative;
    z-index: 3;
    display: block;
  }

  .site-nav {
    position: fixed;
    z-index: 2;
    top: calc(var(--event-h) + var(--header-h));
    right: 0;
    left: 0;
    display: flex;
    height: calc(100svh - var(--event-h) - var(--header-h));
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    padding: 2rem var(--gutter);
    background: var(--paper);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-0.7rem);
    transition: opacity 180ms ease, transform 300ms var(--ease);
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav > a:not(.button) {
    border-bottom: 1px solid var(--line);
    padding-block: 1.1rem;
    font-family: var(--display);
    font-size: clamp(2.2rem, 8vw, 3.5rem);
    font-weight: 400;
    letter-spacing: -0.02em;
  }

  .site-nav > a:not(.button)::after {
    display: block;
  }

  .site-nav .button {
    margin-top: 1.5rem;
  }

  .social-rail {
    display: none;
  }

  .home-hero__visual::after,
  .inner-hero__visual::after {
    background:
      linear-gradient(90deg, rgba(10, 10, 9, 0.72), rgba(10, 10, 9, 0.18)),
      linear-gradient(0deg, rgba(10, 10, 9, 0.82), transparent 68%);
  }

  .hero-seal {
    right: 1.5rem;
    bottom: 1.5rem;
    width: 6.2rem;
    height: 6.2rem;
  }

  .section-heading,
  .about__grid,
  .about-contact,
  .location-contact__grid,
  .event-panel__grid,
  .visit-layout,
  .vendor-teaser__grid,
  .spaces-showcase__grid,
  .originals__grid,
  .inquiry-section__grid,
  .faq__grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 1.25rem;
  }

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

  .pathway {
    min-height: 31rem;
  }

  .about__copy,
  .spaces-showcase__copy {
    max-width: 42rem;
  }

  .about__photos {
    grid-template-rows: 22rem 15rem;
  }

  .location-contact__grid,
  .visit-layout,
  .vendor-teaser__grid,
  .spaces-showcase__grid,
  .originals__grid,
  .inquiry-section__grid,
  .faq__grid {
    gap: 3.5rem;
  }

  .event-panel__meta {
    padding-top: 2rem;
    padding-left: 0;
    border-top: 1px solid rgba(24, 24, 22, 0.3);
    border-left: 0;
  }

  .vendor-teaser__content {
    max-width: 44rem;
  }

  .vendor-teaser__image {
    min-height: 30rem;
  }

  .vendor-carousel .vendor-carousel__slide,
  .vendor-carousel .vendor-carousel__slide:nth-child(n) {
    flex-basis: min(78vw, 34rem);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 17rem;
  }

  .gallery-item,
  .gallery-item:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-item:nth-child(1),
  .gallery-item:nth-child(4) {
    grid-row: span 2;
  }

  .visit-layout .section-heading {
    margin-bottom: 2rem;
  }

  .inquiry-section__grid > div:first-child {
    position: static;
  }
}

@media (max-width: 600px) {
  :root {
    --event-h: 3rem;
    --gutter: 1.15rem;
    --section-space: 4.6rem;
  }

  body {
    font-size: 1.03rem;
  }

  h2 {
    font-size: clamp(2.8rem, 13vw, 4.1rem);
  }

  .event-ribbon__inner {
    justify-content: space-between;
    gap: 0.55rem;
    padding-inline: 0.65rem;
    font-size: 0.61rem;
  }

  .event-ribbon__inner [data-event-status] {
    max-width: 58%;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  [data-event-status-full] {
    display: none;
  }

  [data-event-status-compact] {
    display: inline;
  }

  .event-ribbon__inner a {
    padding-inline: 0.52rem;
  }

  .brand {
    width: 8.2rem;
  }

  .home-hero,
  .inner-hero {
    min-height: 42rem;
  }

  .home-hero {
    padding: 4rem var(--gutter) 2.2rem;
  }

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

  .home-hero h1,
  .inner-hero h1 {
    font-size: clamp(3.45rem, 16vw, 4.65rem);
  }

  .home-hero__promise,
  .inner-hero__lead {
    font-size: 1.12rem;
  }

  .home-hero__date {
    gap: 0.55rem;
  }

  .home-hero__date strong {
    font-size: 1.9rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button,
  .hero-actions .text-action {
    width: 100%;
  }

  .hero-seal {
    display: none;
  }

  .discovery-marquee {
    min-height: 3.6rem;
  }

  .discovery-marquee span {
    font-size: 1.65rem;
  }

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

  .fact {
    min-height: 6.6rem;
    border-bottom: 1px solid var(--line);
    padding: 1.15rem;
  }

  .fact:nth-child(2) {
    border-right: 0;
  }

  .fact:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .fact strong {
    font-size: 1.5rem;
  }

  .pathway {
    min-height: 28rem;
  }

  .pathway__content {
    padding: 1.5rem;
  }

  .pathway__content h3 {
    font-size: 2.75rem;
  }

  .about__photos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 18rem 11rem;
    gap: 0.65rem;
  }

  .about-contact {
    gap: 2rem;
  }

  .about-contact form {
    padding: 1.35rem;
  }

  .about__photos figure:first-child {
    grid-column: 1 / -1;
    grid-row: 1;
    border-radius: 8rem 8rem 0.5rem 0.5rem;
  }

  .about__photos figure:not(:first-child) {
    grid-row: 2;
  }

  .map-frame,
  .visit-layout .map-frame {
    min-height: 23rem;
    border-radius: 7rem 7rem 0.6rem 0.6rem;
  }

  .contact-panel,
  .inquiry-panel {
    padding: 1.35rem;
  }

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

  .field--wide {
    grid-column: auto;
  }

  .inner-hero__copy {
    padding: 4rem var(--gutter) 2.2rem;
  }

  .event-date {
    flex-wrap: wrap;
  }

  .event-date strong {
    font-size: clamp(4rem, 22vw, 5.5rem);
  }

  .event-date i {
    width: 1.5rem;
  }

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

  .word-field div,
  .word-field div:nth-child(4n) {
    min-height: 6.6rem;
    border-right: 1px solid var(--line);
    padding: 1rem;
  }

  .word-field div:nth-child(2n) {
    border-right: 0;
  }

  .word-field strong {
    overflow-wrap: anywhere;
    font-size: clamp(1.55rem, 8vw, 1.85rem);
  }

  .gallery-grid {
    grid-auto-rows: 12rem;
    gap: 0.65rem;
  }

  .gallery-item:nth-child(1),
  .gallery-item:nth-child(4) {
    grid-row: auto;
  }

  .visit-details article {
    grid-template-columns: 5.5rem 1fr;
  }

  .guide-card {
    grid-template-columns: 7rem 1fr;
  }

  .vendor-teaser__image {
    min-height: 25rem;
    border-radius: 10rem 10rem 0.6rem 0.6rem;
  }

  .vendor-teaser__proof {
    flex-wrap: wrap;
  }

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

  .vendor-carousel .vendor-carousel__slide,
  .vendor-carousel .vendor-carousel__slide:nth-child(n) {
    flex-basis: 88%;
    min-height: 21rem;
  }

  .vendor-carousel .vendor-carousel__slide:first-child {
    border-radius: 8rem 8rem 0.5rem 0.5rem;
  }

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

  .process__grid article {
    min-height: auto;
    border-right: 0;
  }

  .process__number {
    margin-bottom: 2rem;
  }

  .vendor-proof {
    grid-template-columns: 1fr 1fr;
  }

  .vendor-proof > div {
    min-height: 10rem;
    padding: 1.2rem;
  }

  .vendor-proof > div:nth-child(2) {
    border-right: 0;
  }

  .vendor-proof > div:last-child {
    grid-column: 1 / -1;
    min-height: 11rem;
    border-top: 1px solid var(--line);
  }

  .concept-plan {
    grid-template-columns: 1fr;
    margin-top: 3.5rem;
  }

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

  .site-footer__bottom {
    flex-direction: column;
    margin-top: 3rem;
  }
}

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

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

  .discovery-marquee__track {
    animation: none !important;
    transform: none !important;
  }
}

/* Editorial polish: stronger venue, show hierarchy, and purposeful motion. */
body {
  font-synthesis: none;
}

.site-header {
  background: var(--paper);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  transition: background-color 220ms ease, box-shadow 220ms ease;
}

.header-elevated .site-header {
  background: rgba(255, 253, 248, 0.99);
  box-shadow: 0 0.75rem 2rem rgba(24, 24, 22, 0.08);
}

.site-nav .button {
  min-width: 8.9rem;
  white-space: nowrap;
}

.about {
  position: relative;
  border-bottom: 1px solid var(--line);
}

.about__grid {
  grid-template-columns: minmax(20rem, 0.82fr) minmax(0, 1.28fr);
  align-items: start;
}

.about__copy {
  align-self: center;
}

.venue-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 2rem 0 0;
  border-top: 1px solid var(--line);
  padding: 0;
  list-style: none;
}

.venue-features li {
  min-width: 0;
  padding: 1.1rem 0.9rem 1rem 0;
}

.venue-features li + li {
  border-left: 1px solid var(--line);
  padding-left: 0.9rem;
}

.venue-features span,
.word-field span {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--muted);
  font-size: 0.66rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.venue-features strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.25rem, 1.75vw, 1.65rem);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.about__actions {
  align-items: center;
  margin-top: 1.65rem;
}

.about__copy .about__actions .text-action {
  margin-top: 0;
}

.about__photos {
  grid-template-columns: 1.28fr 0.82fr;
  grid-template-rows: 20rem 17rem;
  gap: 0.8rem;
}

.about__photos figure {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  background: var(--paper);
}

.about__photos figcaption,
.gallery-item span {
  position: static;
  right: auto;
  bottom: auto;
  padding: 0.62rem 0.75rem;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.2;
}

.event-panel {
  padding-block: clamp(4.5rem, 7vw, 7rem);
}

.event-panel__grid {
  grid-template-columns: minmax(16rem, 0.72fr) minmax(24rem, 1.15fr) minmax(16rem, 0.68fr);
  gap: 0;
  align-items: stretch;
}

.event-panel__intro,
.event-panel__schedule,
.event-panel__meta {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: space-between;
}

.event-panel__intro {
  padding-right: clamp(2rem, 4vw, 4rem);
}

.event-panel__intro h2 {
  max-width: 9ch;
  margin: 1rem 0;
  font-size: clamp(3rem, 4.5vw, 4.8rem);
}

.event-panel__intro p,
.event-panel__schedule p,
.event-panel__meta p {
  margin-bottom: 0;
}

.event-panel__schedule,
.event-panel__meta {
  border-left: 1px solid rgba(24, 24, 22, 0.3);
  padding-left: clamp(2rem, 4vw, 4rem);
}

.event-panel__schedule {
  padding-right: clamp(2rem, 4vw, 4rem);
}

.event-panel__schedule > p {
  margin-top: 2rem;
  font-size: 1.15rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.event-panel__schedule > p strong {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
}

.event-panel__meta {
  padding-top: 0;
}

.event-panel__meta strong {
  margin: 1rem 0 0.55rem;
  font-size: clamp(2.2rem, 3.2vw, 3.4rem);
  line-height: 0.95;
}

.event-panel__meta .button {
  align-self: flex-start;
  margin-top: 1.5rem;
}

.finds .section-heading,
.show-gallery .section-heading {
  display: block;
  max-width: 54rem;
}

.finds .section-heading p,
.show-gallery .section-heading p {
  max-width: 44rem;
  margin-top: 1.25rem;
}

.word-field {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0.7rem;
  border-top: 0;
}

.word-field div,
.word-field div:nth-child(4n) {
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  min-height: 8.25rem;
  border: 1px solid var(--line);
  padding: clamp(1.2rem, 2.2vw, 2rem);
  background: var(--cream);
}

.word-field div:nth-child(1) {
  grid-row: span 2;
  grid-column: span 5;
  background: var(--honey);
}

.word-field div:nth-child(2) {
  grid-column: span 4;
  background: var(--sage);
}

.word-field div:nth-child(3) {
  grid-column: span 3;
  background: var(--ink-soft);
  color: var(--paper);
}

.word-field div:nth-child(4) {
  grid-column: span 3;
}

.word-field div:nth-child(5) {
  grid-column: span 4;
}

.word-field div:nth-child(n + 6) {
  grid-column: span 4;
}

.word-field div:first-child strong {
  font-size: clamp(3.7rem, 6.2vw, 6.5rem);
}

.word-field div:nth-child(3) span {
  color: rgba(255, 253, 248, 0.68);
}

.gallery-item {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  background: var(--paper);
  color: var(--ink);
  text-align: left;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  opacity: 0.92;
}

.vendor-teaser {
  border-top: 0.45rem solid var(--honey);
}

.vendor-teaser::after {
  opacity: 0.55;
}

.reveal-enabled [data-reveal] {
  opacity: 0;
  transform: translateY(1.6rem);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

.reveal-enabled [data-reveal-delay="1"] {
  transition-delay: 90ms;
}

.reveal-enabled [data-reveal-delay="2"] {
  transition-delay: 180ms;
}

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

@media (max-width: 1100px) {
  .event-panel__grid {
    grid-template-columns: minmax(14rem, 0.7fr) minmax(21rem, 1.1fr) minmax(14rem, 0.7fr);
  }

  .event-date strong {
    font-size: clamp(4rem, 8vw, 6.5rem);
  }
}

@media (max-width: 860px) {
  .about__grid {
    grid-template-columns: 1fr;
  }

  .about__copy {
    max-width: 39rem;
  }

  .event-panel__grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem 0;
  }

  .event-panel__intro {
    grid-column: 1 / -1;
    max-width: 39rem;
    padding-right: 0;
  }

  .event-panel__schedule {
    border-left: 0;
    padding-left: 0;
  }

  .event-panel__meta {
    border-top: 0;
    border-left: 1px solid rgba(24, 24, 22, 0.3);
    padding-top: 0;
    padding-left: 2rem;
  }

  .word-field div:first-child strong {
    font-size: clamp(3.5rem, 10vw, 5.5rem);
  }
}

@media (max-width: 600px) {
  .site-nav .button {
    min-width: 0;
  }

  .about__photos {
    grid-template-rows: 18rem 12.5rem;
  }

  .about__photos figure:first-child {
    border-radius: 7rem 7rem 0.5rem 0.5rem;
  }

  .venue-features li {
    padding-right: 0.55rem;
  }

  .venue-features li + li {
    padding-left: 0.55rem;
  }

  .venue-features strong {
    font-size: 1.12rem;
  }

  .event-panel__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .event-panel__intro {
    grid-column: auto;
    padding-bottom: 2.5rem;
  }

  .event-panel__intro h2 {
    font-size: clamp(3rem, 13vw, 4rem);
  }

  .event-panel__schedule,
  .event-panel__meta {
    border-top: 1px solid rgba(24, 24, 22, 0.3);
    border-left: 0;
    padding: 2.5rem 0 0;
  }

  .event-panel__meta {
    margin-top: 2.5rem;
  }

  .event-date {
    flex-wrap: nowrap;
  }

  .event-date strong {
    font-size: clamp(4.2rem, 22vw, 5.6rem);
  }

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

  .word-field div,
  .word-field div:nth-child(n),
  .word-field div:nth-child(4n) {
    grid-row: auto;
    grid-column: auto;
    min-height: 7.4rem;
    border: 1px solid var(--line);
    padding: 1rem;
  }

  .word-field div:nth-child(1) {
    grid-column: 1 / -1;
    min-height: 11rem;
  }

  .word-field div:first-child strong {
    font-size: clamp(3.8rem, 18vw, 5rem);
  }

  .word-field strong {
    font-size: clamp(1.45rem, 7.4vw, 1.8rem);
  }

  .gallery-item span {
    padding: 0.55rem 0.6rem;
    font-size: 0.6rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal-enabled [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* V4 type scale: V2-sized editorial presence within the V4 compositions. */
h2 {
  max-width: 10.5ch;
  font-size: clamp(3.65rem, 6.25vw, 6.75rem);
  letter-spacing: -0.04em;
  line-height: 0.84;
}

h3 {
  font-size: clamp(2.15rem, 3.4vw, 3.65rem);
  line-height: 0.94;
}

.home-hero__content {
  width: min(100%, 56rem);
}

.home-hero h1,
.inner-hero h1 {
  max-width: 8.5ch;
  font-size: clamp(5rem, 8.25vw, 8.25rem);
  letter-spacing: -0.045em;
  line-height: 0.79;
}

.inner-hero__copy {
  width: min(100%, 58rem);
}

.home-hero__date strong {
  font-size: clamp(2.5rem, 4vw, 4rem);
}

.event-panel__intro h2 {
  max-width: 8.5ch;
  font-size: clamp(4rem, 5.6vw, 6.25rem);
  letter-spacing: -0.04em;
  line-height: 0.84;
}

.event-panel__meta strong {
  font-size: clamp(2.5rem, 3.75vw, 4rem);
}

.finds .section-heading,
.show-gallery .section-heading {
  max-width: 66rem;
}

.finds .section-heading h2,
.show-gallery .section-heading h2,
.visit-layout .section-heading h2 {
  max-width: 9.5ch;
}

.word-field div:first-child strong {
  font-size: clamp(4.35rem, 7.1vw, 7.4rem);
  line-height: 0.82;
}

.word-field strong {
  font-size: clamp(2.25rem, 3.65vw, 3.5rem);
  line-height: 0.88;
}

@media (max-width: 1100px) {
  .home-hero h1,
  .inner-hero h1 {
    font-size: clamp(4.5rem, 9vw, 6.4rem);
  }

  .event-panel__intro h2 {
    font-size: clamp(3.8rem, 6vw, 5.2rem);
  }
}

@media (max-width: 860px) {
  h2 {
    font-size: clamp(3.6rem, 9.5vw, 5.25rem);
  }

  .home-hero__content,
  .inner-hero__copy {
    width: min(100%, 44rem);
  }
}

@media (max-width: 600px) {
  h2 {
    font-size: clamp(3.25rem, 14.5vw, 4.85rem);
    line-height: 0.86;
  }

  .home-hero h1,
  .inner-hero h1 {
    font-size: clamp(3.6rem, 17vw, 5.1rem);
    line-height: 0.8;
  }

  .home-hero__date strong {
    font-size: 2.2rem;
  }

  .event-panel__intro h2 {
    font-size: clamp(3.35rem, 14.5vw, 4.8rem);
  }

  .event-panel__meta strong {
    font-size: clamp(2.35rem, 11vw, 3.25rem);
  }

  .word-field div:first-child strong {
    font-size: clamp(3.9rem, 18vw, 5.4rem);
  }

  .word-field strong {
    font-size: clamp(1.65rem, 8vw, 2rem);
  }

  .site-footer__brand h2 {
    font-size: clamp(2.1rem, 9vw, 2.8rem);
  }
}

/* V4 venue expansion and Fall Show feature. */
.about__photos {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: 18rem 15rem;
}

.about__photos figure:first-child,
.about__photos figure:nth-child(1) {
  grid-row: 1 / 3;
  grid-column: 1 / 6;
}

.about__photos figure:nth-child(2) {
  grid-row: 1;
  grid-column: 6 / 10;
}

.about__photos figure:nth-child(3) {
  grid-row: 1;
  grid-column: 10 / 13;
}

.about__photos figure:nth-child(4) {
  grid-row: 2;
  grid-column: 6 / 9;
}

.about__photos figure:nth-child(5) {
  grid-row: 2;
  grid-column: 9 / 13;
}

.about__photos figure:nth-child(n + 2) {
  border-radius: 0.6rem;
}

.venue-carousel {
  grid-column: 1 / -1;
  min-width: 0;
  margin-top: clamp(2rem, 4vw, 3.5rem);
  border-top: 1px solid var(--line);
  padding-top: clamp(2rem, 4vw, 3.5rem);
}

.venue-carousel__top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1.25rem;
}

.venue-carousel__top h3 {
  max-width: none;
  margin: 0.45rem 0 0;
  font-size: clamp(3.2rem, 5.4vw, 5.5rem);
  letter-spacing: -0.035em;
  line-height: 0.84;
}

.venue-carousel__controls {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.65rem;
}

.venue-carousel__controls button {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 1.1rem;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms var(--ease);
}

.venue-carousel__controls button:hover,
.venue-carousel__controls button:focus-visible {
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-2px);
}

.venue-carousel__controls button:disabled {
  cursor: default;
  opacity: 0.32;
  transform: none;
}

.venue-carousel__controls span {
  min-width: 3.4rem;
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.venue-carousel__viewport {
  min-width: 0;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding-bottom: 0.8rem;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--honey) rgba(24, 24, 22, 0.12);
  scrollbar-width: thin;
}

.venue-carousel__track {
  display: flex;
  gap: 0.9rem;
}

.venue-carousel__slide {
  display: grid;
  height: clamp(25rem, 38vw, 34rem);
  flex: 0 0 clamp(21rem, 43vw, 36rem);
  grid-template-rows: minmax(0, 1fr) auto;
  overflow: hidden;
  border: 0;
  border-radius: 0.65rem;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  cursor: zoom-in;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  text-align: left;
}

.venue-carousel__slide:first-child {
  border-radius: 12rem 12rem 0.65rem 0.65rem;
}

.venue-carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 220ms ease, transform 700ms var(--ease);
}

.venue-carousel__slide:hover img,
.venue-carousel__slide:focus-visible img {
  opacity: 0.94;
  transform: scale(1.025);
}

.venue-carousel__slide span {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.8rem 0.9rem;
  font-size: 0.7rem;
  letter-spacing: 0.11em;
  line-height: 1.2;
  text-transform: uppercase;
}

.venue-carousel__slide b {
  color: var(--muted);
  font-weight: 500;
}

.event-panel {
  position: relative;
  overflow: hidden;
  border-bottom: 0;
  background: var(--ink);
  color: var(--paper);
}

.event-panel::before {
  position: absolute;
  width: clamp(18rem, 30vw, 32rem);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 253, 248, 0.08);
  border-radius: 50%;
  content: "";
  top: 4rem;
  left: -14rem;
  pointer-events: none;
}

.event-panel__grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(18rem, 0.72fr) minmax(34rem, 1.28fr);
  gap: clamp(3rem, 6vw, 6.5rem);
  align-items: center;
}

.event-panel__intro {
  display: block;
  max-width: 31rem;
  padding-right: 0;
}

.event-panel__intro .label {
  color: rgba(255, 253, 248, 0.68);
}

.event-panel__intro h2 {
  max-width: 7ch;
  margin: clamp(2.3rem, 5vw, 5.5rem) 0 2rem;
  color: var(--paper);
  font-size: clamp(4.6rem, 6.8vw, 7.4rem);
  line-height: 0.76;
  text-transform: uppercase;
}

.event-panel__intro h2 .display-accent {
  color: var(--honey);
}

.event-panel__intro p {
  max-width: 29rem;
  color: rgba(255, 253, 248, 0.72);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.65;
}

.event-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.5rem;
  margin-top: 1.7rem;
}

.event-panel .text-action--light {
  color: var(--paper);
}

.event-panel__board {
  display: grid;
  min-width: 0;
  gap: 0.9rem;
}

.event-panel__schedule {
  position: relative;
  display: block;
  min-height: clamp(23rem, 32vw, 29rem);
  overflow: hidden;
  border: 0;
  border-radius: 0.85rem;
  padding: clamp(2rem, 4vw, 4rem);
  background: var(--honey);
  color: var(--ink);
}

.event-panel__schedule::after {
  position: absolute;
  right: -8rem;
  bottom: -10rem;
  width: 25rem;
  aspect-ratio: 1;
  border: 1px solid rgba(24, 24, 22, 0.22);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.event-panel__schedule .label {
  position: relative;
  z-index: 1;
  color: var(--ink);
}

.event-panel__schedule .event-date {
  position: relative;
  z-index: 1;
  justify-content: space-between;
  margin: clamp(4rem, 8vw, 7rem) 0 1.5rem;
}

.event-panel__schedule .event-date strong {
  font-size: clamp(5rem, 8.2vw, 8.75rem);
  line-height: 0.68;
}

.event-panel__schedule .event-date i {
  width: auto;
  height: auto;
  background: none;
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  font-style: normal;
}

.event-panel__schedule > p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 1.12rem;
  letter-spacing: 0;
  text-transform: none;
}

.event-panel__meta {
  display: grid;
  grid-template-columns: 0.9fr 1fr 1.15fr;
  gap: 0.9rem;
  border: 0;
  padding: 0;
}

.event-panel__meta article {
  display: flex;
  min-width: 0;
  min-height: 12.5rem;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 0.75rem;
  padding: 1.5rem;
  background: var(--cream);
  color: var(--ink);
}

.event-panel__meta article:nth-child(2) {
  background: var(--sage);
}

.event-panel__meta article:nth-child(3) {
  background: var(--paper);
}

.event-panel__meta strong {
  display: block;
  margin: auto 0 0.75rem;
  font-size: clamp(2rem, 2.7vw, 3rem);
  line-height: 0.86;
}

.event-panel__meta small {
  color: rgba(24, 24, 22, 0.66);
  font-size: 0.78rem;
  line-height: 1.45;
}

.event-panel__meta .button {
  align-self: flex-start;
  margin-top: auto;
}

@media (max-width: 1100px) {
  .event-panel__grid {
    grid-template-columns: minmax(16rem, 0.68fr) minmax(30rem, 1.32fr);
    gap: 3rem;
  }

  .event-panel__intro h2 {
    font-size: clamp(4.2rem, 7.4vw, 6rem);
  }

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

@media (max-width: 860px) {
  .about__photos {
    grid-template-rows: 22rem 14rem 14rem;
  }

  .about__photos figure:nth-child(1) {
    grid-row: 1;
    grid-column: 1 / 13;
  }

  .about__photos figure:nth-child(2) {
    grid-row: 2;
    grid-column: 1 / 8;
  }

  .about__photos figure:nth-child(3) {
    grid-row: 2;
    grid-column: 8 / 13;
  }

  .about__photos figure:nth-child(4) {
    grid-row: 3;
    grid-column: 1 / 6;
  }

  .about__photos figure:nth-child(5) {
    grid-row: 3;
    grid-column: 6 / 13;
  }

  .event-panel__grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .event-panel__intro {
    grid-column: auto;
    max-width: 44rem;
  }

  .event-panel__intro h2 {
    max-width: 8ch;
    margin-top: 2.6rem;
    font-size: clamp(4.5rem, 12vw, 6.5rem);
  }

  .event-panel__board {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .about__photos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 19rem 11.5rem 11.5rem;
    gap: 0.6rem;
  }

  .about__photos figure:nth-child(1) {
    grid-column: 1 / -1;
  }

  .about__photos figure:nth-child(2),
  .about__photos figure:nth-child(4) {
    grid-column: 1;
  }

  .about__photos figure:nth-child(3),
  .about__photos figure:nth-child(5) {
    grid-column: 2;
  }

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

  .venue-carousel__top h3 {
    font-size: clamp(3rem, 14vw, 4.25rem);
  }

  .venue-carousel__slide {
    height: 25rem;
    flex-basis: 88%;
  }

  .venue-carousel__slide:first-child {
    border-radius: 8rem 8rem 0.55rem 0.55rem;
  }

  .event-panel__intro {
    padding-bottom: 0;
  }

  .event-panel__intro h2 {
    font-size: clamp(4rem, 19vw, 5.5rem);
  }

  .event-panel__schedule {
    min-height: 22rem;
    padding: 1.5rem;
  }

  .event-panel__schedule .event-date {
    gap: 0.35rem;
    margin-top: 4.5rem;
  }

  .event-panel__schedule .event-date strong {
    font-size: clamp(4rem, 20vw, 5.25rem);
  }

  .event-panel__schedule .event-date span {
    font-size: 0.62rem;
  }

  .event-panel__schedule .event-date i {
    font-size: 1.2rem;
  }

  .event-panel__meta {
    grid-template-columns: 1fr;
  }

  .event-panel__meta article {
    min-height: 10.5rem;
  }

  .event-panel__meta strong {
    font-size: clamp(2.4rem, 12vw, 3.15rem);
  }
}

/* Live show ribbon and reading position, shared by both pages. */
:root {
  --event-h: 3.5rem;
}

.event-ribbon__inner {
  gap: clamp(1rem, 2.4vw, 2.5rem);
  font-size: 0.85rem;
  letter-spacing: 0.065em;
  padding-bottom: 3px;
}

.event-countdown {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.3em;
  font-size: 1.12rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  font-variant-numeric: tabular-nums;
}

.event-countdown[hidden] {
  display: none;
}

.event-countdown b {
  display: inline-block;
  min-width: 2ch;
  font-weight: inherit;
  text-align: right;
}

.reading-progress {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 4px;
  border-top: 1px solid var(--paper);
  background: var(--paper);
  pointer-events: none;
}

.reading-progress > span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--honey);
  transform: scaleX(0);
  transform-origin: left;
}

@media (max-width: 1000px) {
  :root { --event-h: 5rem; }
  .event-ribbon__inner {
    display: grid;
    grid-template-columns: auto auto;
    align-content: center;
    justify-content: center;
    gap: 0.2rem 1.5rem;
    font-size: 0.78rem;
  }
  .event-ribbon__inner [data-event-status] { grid-column: 1; grid-row: 1; }
  .event-ribbon__inner [data-event-action] { grid-column: 2; grid-row: 1; }
  .event-countdown { grid-column: 1 / -1; grid-row: 2; }
}

@media (max-width: 600px) {
  .event-ribbon__inner {
    justify-content: space-between;
    column-gap: 0.55rem;
    font-size: 0.67rem;
    padding-inline: 0.65rem;
  }
  .event-ribbon__inner [data-event-status] { max-width: none; overflow: visible; }
  .event-ribbon__inner [data-event-status-full] {
    display: block;
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
  }
  .event-countdown { font-size: 1.08rem; }
}

/* Photo-led V4: larger venue imagery and full zoom coverage. */
.about__grid {
  grid-template-columns: minmax(18rem, 0.64fr) minmax(0, 1.36fr);
  gap: clamp(3rem, 5.5vw, 6rem);
}

.about__photos {
  grid-template-rows: 21rem 18rem;
}

.about__photo-trigger {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 0;
  border-radius: 0.6rem;
  padding: 0;
  background: var(--paper);
  cursor: zoom-in;
}

.about__photo-trigger:focus-visible {
  outline: 3px solid var(--honey);
  outline-offset: -5px;
}

.about__photo-trigger img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__photos figure:focus-within img {
  transform: scale(1.035);
}

.venue-carousel__slide {
  height: clamp(28rem, 42vw, 38rem);
  flex-basis: clamp(24rem, 52vw, 44rem);
}

.venue-carousel__slide:first-child {
  overflow: hidden;
  border-radius: 0.65rem;
  background: var(--paper);
}

.vendor-carousel .vendor-carousel__slide:first-child {
  overflow: hidden;
  border-radius: 0.6rem;
  background: var(--paper);
}

.vendor-carousel .vendor-carousel__slide:first-child span {
  background: var(--paper);
}

.vendor-teaser__image {
  width: 100%;
  border: 0;
  border-radius: 0.6rem;
  padding: 0;
  color: var(--paper);
  cursor: zoom-in;
}

.vendor-teaser__image:focus-visible {
  outline: 3px solid var(--honey);
  outline-offset: -6px;
}

@media (max-width: 860px) {
  .about__grid {
    grid-template-columns: 1fr;
  }

  .about__photos {
    grid-template-rows: 25rem 16rem 16rem;
  }
}

@media (max-width: 600px) {
  .about__photos {
    grid-template-rows: 22rem 13rem 13rem;
  }

  .venue-carousel__slide {
    height: 27rem;
    flex-basis: 92%;
  }

  .venue-carousel__slide:first-child,
  .vendor-carousel .vendor-carousel__slide:first-child {
    border-radius: 0.55rem;
  }

  .vendor-teaser__image {
    min-height: 27rem;
  }
}

/* Show details: one clock source, readable categories, and an expandable guide. */
.venue-features--route {
  grid-template-columns: 1fr;
}

.show-countdown__digits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem 0.8rem;
  margin-block: 1rem;
  font-variant-numeric: tabular-nums;
}

.show-countdown__digits[hidden] {
  display: none;
}

.show-countdown__digits b {
  display: block;
  font-family: var(--sans);
  font-size: 2.3rem;
  font-weight: 500;
  line-height: 1;
}

.show-countdown__digits small {
  display: block;
  margin-top: 0.2rem;
  letter-spacing: 0.04em;
}

.guide-card__preview {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0.4rem;
  background: var(--paper);
  color: var(--ink);
  cursor: zoom-in;
  text-decoration: none;
}

.guide-card__preview img {
  object-fit: contain;
}

.guide-card__preview span,
.site-plan__preview span {
  padding: 0.55rem 0.4rem;
  text-align: center;
  font-size: 0.82rem;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.word-field > div {
  min-width: 0;
  container-type: inline-size;
}

.word-field strong {
  font-size: clamp(1rem, 2.5vw, 3.5rem);
  overflow-wrap: normal;
  word-break: normal;
  white-space: nowrap;
  hyphens: none;
  line-height: 1;
}

.word-field div:first-child strong {
  font-size: clamp(2.25rem, 6vw, 7.4rem);
  line-height: 1;
}

@supports (font-size: 1cqi) {
  .word-field strong { font-size: clamp(1rem, 17cqi, 3.5rem); }
  .word-field div:first-child strong { font-size: clamp(2.25rem, 18cqi, 7.4rem); }
}

.category-list li {
  gap: 1rem;
  overflow-wrap: normal;
  word-break: normal;
}

.category-list li > span { flex-shrink: 0; }

@media (max-width: 860px) {
  .word-field { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .word-field div:nth-child(n) {
    grid-row: auto;
    grid-column: auto;
    min-height: 7.4rem;
    padding: 1rem;
  }
  .word-field div:first-child {
    grid-column: 1 / -1;
    min-height: 11rem;
  }
}

@media (max-width: 600px) {
  .show-countdown__digits {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.35rem;
  }
  .category-list li { font-size: clamp(1.3rem, 6vw, 1.8rem); }
}

/* V5 Vendors: a shared roster with the supplied brand artwork. */
.vendor-roster-section { position: relative; z-index: 1; margin-top: clamp(3rem, 6vw, 5rem); }
.vendor-roster-title { margin: 0 0 1.5rem; font-family: var(--sans); font-size: clamp(1.25rem, 2vw, 1.65rem); font-weight: 500; line-height: 1.25; letter-spacing: 0.06em; }
.vendor-roster { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; margin: 0; padding: 0; list-style: none; background: var(--line); }
.vendor-roster li { display: grid; place-items: center; min-width: 0; height: 11rem; padding: 1.5rem; background: #fff; }
.vendor-roster img { display: block; width: 100%; height: 100%; max-height: 8rem; object-fit: contain; }
.vendor-roster-band { padding-block: clamp(3rem, 6vw, 5rem); background: var(--paper); }
.rental-flexibility { max-width: 36rem; margin: 0 0 1.75rem; color: var(--paper); font-size: clamp(1.2rem, 1.7vw, 1.5rem); line-height: 1.4; }
.rental-flexibility strong { color: var(--honey); }
.field-help { margin: 0.5rem 0 0; color: var(--muted); font-size: 1rem; line-height: 1.4; }
@media (max-width: 820px) { .vendor-roster { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .vendor-roster { grid-template-columns: minmax(0, 1fr); } .vendor-roster li { height: 9rem; padding: 1rem 1.5rem; } .vendor-roster img { max-height: 7rem; } }
