:root {
  --all-white: #f6f6f2;
  --cooks-blue: #6a8fb2;
  --yeabridge: #8fa072;
  --ink: #304050;
  --link-blue: #40566b;
  --green-dark: #596347;
  --bone: #e8e8e5;
  --brass: #7a6c3e;
  --muted: #6f7f8b;
  --rule: rgba(48, 64, 80, 0.24);
  --font-serif: "Instrument Serif", Georgia, serif;
  --font-sans: "Instrument Sans", Arial, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  --page-gutter: clamp(1.25rem, 5vw, 5.5rem);
  --max-width: 92rem;
  --header-height: 6.5rem;
}

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

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

body {
  margin: 0;
  min-width: 20rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.55;
  background: var(--all-white);
  color: var(--ink);
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.23em;
}

button,
input {
  font: inherit;
}

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

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.8rem 1rem;
  background: var(--all-white);
  border: 2px solid var(--ink);
  transform: translateY(-150%);
}

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

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

.section-label {
  margin: 0 0 1.1rem;
  font: 600 0.78rem/1 var(--font-mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-dark);
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: -0.022em;
}

h2 {
  margin: 0;
  font-size: clamp(2.7rem, 5.8vw, 5.8rem);
  line-height: 0.98;
}

.button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.35rem;
  border: 1.5px solid var(--ink);
  border-radius: 0;
  font-weight: 650;
  font-size: 1.05rem;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition:
    background-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

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

.button--paid {
  border-color: var(--cooks-blue);
  background: var(--cooks-blue);
  color: var(--all-white);
}

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

.button--interest {
  background: transparent;
  color: var(--ink);
}

.button--interest:hover {
  background: var(--ink);
  color: var(--all-white);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.2rem var(--page-gutter);
  border-bottom: 1px solid var(--rule);
  background: rgba(246, 246, 242, 0.96);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
}

.brand__name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  line-height: 1;
}

.seat-mark {
  display: block;
  flex: none;
  width: 8.5rem;
  height: auto;
  overflow: visible;
}

.seat-mark circle {
  fill: var(--all-white);
  stroke: var(--ink);
  stroke-width: 1.7;
}

.seat-mark .seat-mark__filled {
  fill: var(--cooks-blue);
  stroke: var(--ink);
  stroke-width: 1.8;
}

.seat-mark path {
  fill: none;
  stroke: var(--ink);
  stroke-width: 2.3;
}

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

.site-nav a {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  font-size: 0.96rem;
  font-weight: 550;
  text-decoration: none;
}

.site-nav a:not(.nav-cta):hover {
  text-decoration: underline;
  text-underline-offset: 0.35rem;
}

.site-nav .nav-cta {
  padding-inline: 1.1rem;
  border: 1.5px solid var(--ink);
}

.site-nav .nav-cta:hover {
  background: var(--ink);
  color: var(--all-white);
}

.menu-toggle {
  display: none;
  min-width: 3.5rem;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: 600 0.78rem/1 var(--font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.menu-toggle__icon,
.menu-toggle__icon::before,
.menu-toggle__icon::after {
  display: block;
  width: 1.15rem;
  height: 1.5px;
  background: currentColor;
  content: "";
}

.menu-toggle__icon {
  position: relative;
}

.menu-toggle__icon::before,
.menu-toggle__icon::after {
  position: absolute;
  left: 0;
}

.menu-toggle__icon::before {
  top: -0.35rem;
}

.menu-toggle__icon::after {
  top: 0.35rem;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(5.5rem, 0.48fr) minmax(25rem, 0.96fr) minmax(34rem, 1.44fr);
  grid-template-areas:
    "rail copy photo"
    "rail next next";
  min-height: calc(100svh - var(--header-height));
  border-bottom: 1px solid var(--rule);
}

.date-rail {
  grid-area: rail;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2.7rem 0.8rem;
  border-right: 1px solid var(--rule);
  text-align: center;
  font: 500 0.86rem/1.35 var(--font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.date-rail > strong {
  font: 400 clamp(3.7rem, 6vw, 5.6rem)/0.8 var(--font-serif);
}

.date-rail__day {
  letter-spacing: 0.17em;
}

.date-rail__rule {
  width: 100%;
  max-width: 4.4rem;
  height: 1px;
  margin-block: 0.4rem;
  background: var(--rule);
}

.date-rail .date-rail__price {
  color: var(--green-dark);
  font: 650 1.8rem/1 var(--font-sans);
}

.date-rail a {
  width: 100%;
  max-width: 5.25rem;
  min-height: 6rem;
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem;
  background: var(--cooks-blue);
  color: var(--all-white);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.15;
  text-decoration: none;
  text-transform: none;
}

.hero__photo {
  grid-area: photo;
  min-height: 37rem;
  border-left: 1px solid var(--rule);
  overflow: hidden;
}

.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 56%;
}

.hero__copy {
  grid-area: copy;
  align-self: center;
  padding: clamp(2.5rem, 5vw, 6.5rem) clamp(2rem, 4vw, 5rem);
}

.hero h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(3.8rem, 6vw, 7rem);
  line-height: 0.9;
}

.hero__accent {
  margin: 1.45rem 0 2rem;
  color: var(--green-dark);
  font: italic 400 clamp(1.7rem, 2.35vw, 2.45rem)/1.1 var(--font-serif);
}

.hero__essentials {
  margin: 0 calc(-1 * clamp(2rem, 4vw, 5rem)) 1.5rem;
  padding: 1.3rem clamp(2rem, 4vw, 5rem);
  background: var(--yeabridge);
  color: var(--ink);
  font-size: clamp(1.05rem, 1.25vw, 1.35rem);
  font-weight: 650;
}

.hero__essentials p {
  margin: 0;
}

.hero__copy .button {
  width: 100%;
  min-height: 4.2rem;
  font-size: 1.22rem;
}

.next-date {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin: 1.25rem 0 0;
  color: var(--ink);
  font-size: 1.02rem;
}

.next-date > span {
  width: 0.75rem;
  height: 0.75rem;
  flex: none;
  border-radius: 50%;
  background: var(--yeabridge);
}

.hero__next {
  grid-area: next;
  align-self: end;
  margin: 0 var(--page-gutter);
  padding: 2.2rem 0 2.5rem;
  border-top: 1px solid var(--rule);
  font: 400 clamp(2.2rem, 4vw, 4rem)/1 var(--font-serif);
  text-decoration: none;
}

.hero__next::after {
  content: "↓";
  margin-left: 0.35em;
  font-family: var(--font-sans);
  font-size: 0.5em;
  vertical-align: 0.35em;
}

.argument {
  padding-block: clamp(5rem, 9vw, 9rem);
  background: var(--ink);
  color: var(--all-white);
}

.argument__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(22rem, 0.72fr);
  gap: clamp(3rem, 7vw, 8rem);
  align-items: start;
}

.argument .section-label {
  color: #b3c0c9;
}

.argument h2 {
  max-width: 13ch;
  font-size: clamp(3.4rem, 6vw, 6rem);
}

.argument__lede {
  max-width: 28ch;
  margin: 1.8rem 0 2.6rem;
  font-size: clamp(1.45rem, 2.3vw, 2.3rem);
  font-weight: 600;
  line-height: 1.3;
}

.argument__body {
  max-width: 48rem;
  color: rgba(246, 246, 242, 0.9);
  font-size: clamp(1.04rem, 1.22vw, 1.22rem);
}

.argument__body p {
  margin: 0 0 1.1rem;
}

.argument__close {
  margin: 2.5rem 0 0;
  padding-top: 1.65rem;
  border-top: 2px solid var(--yeabridge);
  font: italic 400 clamp(2rem, 3vw, 3.2rem)/1.05 var(--font-serif);
}

.stats {
  display: grid;
  gap: 1rem;
}

.stat {
  padding: clamp(1.5rem, 2.5vw, 2.6rem);
  border: 1px solid rgba(246, 246, 242, 0.45);
}

.stat p {
  margin: 0 0 1.3rem;
  font-size: 1.08rem;
  line-height: 1.45;
}

.stat .stat__number {
  font: 400 clamp(3.2rem, 5.1vw, 5.4rem)/0.95 var(--font-serif);
}

.stat__number span {
  font-size: 0.58em;
}

.stat a {
  display: inline-block;
  border-bottom: 2px solid var(--yeabridge);
  color: var(--all-white);
  font-size: 1.05rem;
  text-decoration: none;
}

.agenda {
  padding-top: clamp(5rem, 9vw, 9rem);
}

.agenda h2 {
  margin-bottom: clamp(2rem, 4vw, 4rem);
}

.timeline {
  position: relative;
  margin: 0;
  padding: 0;
  border-top: 3px solid var(--cooks-blue);
  list-style: none;
}

.timeline::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 10.75rem;
  width: 2px;
  background: var(--cooks-blue);
  content: "";
}

.timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 8.5rem minmax(14rem, 0.9fr) minmax(20rem, 1.45fr);
  gap: 2.25rem;
  align-items: start;
  min-height: 7.2rem;
  padding: 2rem 2rem;
  border-bottom: 1px solid var(--rule);
}

.timeline li::before {
  position: absolute;
  top: 2.7rem;
  left: 10.1rem;
  width: 1.4rem;
  height: 2px;
  background: var(--cooks-blue);
  content: "";
}

.timeline time {
  font: 500 1.25rem/1.2 var(--font-mono);
}

.timeline h3 {
  margin: 0;
  font-size: clamp(1.05rem, 1.45vw, 1.5rem);
  line-height: 1.3;
}

.timeline p {
  margin: 0;
  font-size: clamp(1rem, 1.25vw, 1.22rem);
}

.timeline__focus {
  background: rgba(106, 143, 178, 0.11);
}

.timeline__focus h3 {
  font-size: clamp(1.8rem, 2.8vw, 3rem);
  line-height: 1;
}

.reassurance {
  margin: 0 calc(-1 * var(--page-gutter));
  padding: clamp(2.7rem, 5vw, 4.8rem) var(--page-gutter);
  background: var(--yeabridge);
  text-align: center;
  font: italic 400 clamp(2rem, 4vw, 4rem)/1.1 var(--font-serif);
}

.host {
  display: grid;
  grid-template-columns: minmax(25rem, 0.9fr) minmax(30rem, 1.1fr);
  max-width: var(--max-width);
  margin-inline: auto;
  padding: clamp(5rem, 9vw, 9rem) var(--page-gutter);
  gap: clamp(3rem, 7vw, 8rem);
  align-items: center;
}

.host__photo {
  position: relative;
}

.host__photo::before {
  position: absolute;
  z-index: -1;
  top: -2.5rem;
  bottom: -2.5rem;
  left: calc(-1 * var(--page-gutter));
  width: 30%;
  background: var(--yeabridge);
  content: "";
}

.host__photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: 60% 35%;
}

.host__copy h2 {
  margin-bottom: 1.3rem;
  font-size: clamp(3rem, 5.6vw, 5.8rem);
}

.host__copy > p:not(.section-label) {
  max-width: 42rem;
  margin: 0 0 1rem;
  font-size: clamp(1.04rem, 1.28vw, 1.25rem);
}

.host__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  margin-top: 1.8rem;
}

.host__links a {
  color: var(--link-blue);
  font-weight: 600;
}

.details {
  display: grid;
  grid-template-columns: minmax(16rem, 0.4fr) minmax(30rem, 1fr);
  gap: clamp(2.5rem, 6vw, 7rem);
  padding-bottom: clamp(5rem, 9vw, 9rem);
}

.details__heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
}

.details__heading h2 {
  font-size: clamp(3rem, 5vw, 5rem);
}

.details__heading .button {
  min-width: 13rem;
}

.details__list {
  margin: 0;
  border-top: 2px solid var(--ink);
}

.details__list div {
  display: grid;
  grid-template-columns: minmax(8rem, 0.34fr) 1fr;
  gap: 1.5rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--rule);
}

.details__list dt {
  font: 600 0.82rem/1.45 var(--font-mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.details__list dd {
  margin: 0;
  font-size: 1.05rem;
}

.upcoming {
  padding-block: clamp(5rem, 9vw, 9rem);
  border-top: 1px solid var(--rule);
  background: var(--bone);
}

.upcoming h2 {
  margin-bottom: 1.2rem;
}

.upcoming__intro {
  max-width: 46rem;
  margin: 0 0 2.8rem;
  font-size: clamp(1.15rem, 1.65vw, 1.65rem);
}

.date-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 1.25rem;
  align-items: stretch;
}

.date-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: clamp(1.4rem, 2.3vw, 2.25rem);
  border: 1px solid rgba(48, 64, 80, 0.34);
  background: var(--all-white);
}

.date-card--live {
  border: 2px solid var(--ink);
}

.date-card__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.date-card h3 {
  margin: 0;
  font: 400 clamp(2rem, 3vw, 3.2rem)/1 var(--font-serif);
}

.date-card__header > p {
  flex: none;
  margin: 0;
  font-size: 0.95rem;
}

.date-card__status {
  color: var(--brass);
  font: 700 0.74rem/1.2 var(--font-mono) !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.date-card__meta {
  margin: 0.8rem 0 2.2rem;
  font: 500 0.92rem/1.5 var(--font-mono);
  color: var(--muted);
}

.date-card--live .button {
  width: 100%;
  min-height: 4rem;
  margin-top: auto;
  font-size: 1.15rem;
}

.date-card > .button {
  width: 100%;
  margin-top: auto;
}

.date-card__note {
  margin: 0.8rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  text-align: center;
}

.interest-form {
  display: flex;
  flex-direction: column;
  margin-top: auto;
  padding-top: 1.1rem;
}

.interest-form label {
  margin-bottom: 0.4rem;
  font-size: 0.84rem;
  font-weight: 600;
}

.interest-form input,
.interest-form textarea {
  width: 100%;
  min-height: 3.5rem;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(48, 64, 80, 0.44);
  border-radius: 0;
  background: var(--all-white);
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
}

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

.interest-form input::placeholder,
.interest-form textarea::placeholder {
  color: var(--muted);
  opacity: 1;
}

.interest-form input[aria-invalid="true"] {
  border: 2px solid #8a3c32;
}

.interest-form .button {
  width: 100%;
}

.interest-form .button:disabled {
  cursor: wait;
  opacity: 0.66;
}

.interest-form--full {
  scroll-margin-top: 7rem;
}

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

.form-field {
  display: flex;
  flex-direction: column;
}

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

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

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  white-space: nowrap !important;
}

.form-status {
  min-height: 1.5rem;
  margin: 0.8rem 0 0;
  font-size: 0.88rem;
}

.form-status[data-state="success"] {
  padding: 0.8rem;
  border: 1px solid var(--green-dark);
  background: rgba(143, 160, 114, 0.16);
  color: var(--green-dark);
}

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

.faq {
  display: grid;
  grid-template-columns: minmax(17rem, 0.52fr) minmax(30rem, 1fr);
  gap: clamp(3rem, 8vw, 9rem);
  padding-block: clamp(5rem, 9vw, 9rem);
}

.faq h2 {
  font-size: clamp(3.8rem, 7.2vw, 7rem);
}

.faq__items {
  border-top: 1px solid var(--rule);
}

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

.faq summary {
  position: relative;
  min-height: 4.25rem;
  padding: 1.35rem 3rem 1.35rem 0;
  font-size: clamp(1rem, 1.32vw, 1.25rem);
  font-weight: 600;
  list-style: none;
  cursor: pointer;
}

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

.faq summary::after {
  position: absolute;
  top: 50%;
  right: 0.4rem;
  width: 0.7rem;
  height: 0.7rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  content: "";
  transform: translateY(-65%) rotate(45deg);
  transition: transform 160ms ease;
}

.faq details[open] summary::after {
  transform: translateY(-25%) rotate(225deg);
}

.faq details p {
  max-width: 48rem;
  margin: -0.25rem 0 1.4rem;
  padding-right: 3rem;
  font-size: 1.04rem;
}

.closing {
  padding-block: clamp(4.5rem, 8vw, 8rem);
  background: var(--yeabridge);
}

.closing__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(3rem, 8vw, 8rem);
}

.closing h2 {
  margin-bottom: 1.2rem;
}

.closing__grid > div:first-child > p {
  max-width: 29rem;
  margin: 0 0 2rem;
  font-size: clamp(1.2rem, 1.7vw, 1.55rem);
}

.closing__grid > div:first-child .button {
  min-width: 20rem;
}

.closing__list {
  padding-left: clamp(2rem, 5vw, 5rem);
  border-left: 1px solid rgba(48, 64, 80, 0.5);
}

.closing__list h3 {
  margin: 0;
  font-size: clamp(1.35rem, 1.8vw, 1.75rem);
}

.closing__list > p {
  margin: 0.25rem 0 0;
}

.closing .interest-form {
  margin-top: 1.4rem;
  padding-top: 0;
}

.closing .interest-form input,
.closing .interest-form textarea {
  background: var(--all-white);
}

.privacy-note {
  max-width: 38rem;
  font-size: 0.83rem;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr) 1fr;
  min-height: 12rem;
  align-items: center;
  gap: 0;
  padding: 2.5rem var(--page-gutter) 5rem;
  background: var(--ink);
  color: var(--all-white);
}

.site-footer > * {
  min-height: 4.3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-inline: clamp(1rem, 2.5vw, 2.5rem);
  border-left: 1px solid rgba(246, 246, 242, 0.38);
  font-size: 0.94rem;
}

.site-footer > :first-child {
  padding-left: 0;
  border-left: 0;
}

.site-footer a {
  align-items: flex-start;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.site-footer__brand p {
  margin: 0 0 0.7rem;
  font: 400 1.8rem/1 var(--font-serif);
}

.seat-mark--dark circle {
  fill: var(--ink);
  stroke: var(--all-white);
}

.seat-mark--dark .seat-mark__filled {
  fill: var(--cooks-blue);
  stroke: var(--all-white);
}

.seat-mark--dark path {
  stroke: var(--all-white);
}

.site-footer__legal p {
  margin: 0 0 0.3rem;
}

.site-footer__legal button {
  width: fit-content;
  min-height: 2.75rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.25rem;
  cursor: pointer;
}

.mobile-cta {
  display: none;
}

.privacy-dialog {
  width: min(calc(100% - 2rem), 38rem);
  padding: 0;
  border: 2px solid var(--ink);
  border-radius: 0;
  background: var(--all-white);
  color: var(--ink);
}

.privacy-dialog::backdrop {
  background: rgba(48, 64, 80, 0.72);
}

.privacy-dialog__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--rule);
}

.privacy-dialog__header h2 {
  font-size: 2.3rem;
}

.privacy-dialog__header button {
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.privacy-dialog > p {
  margin: 0;
  padding: 1rem 1.5rem 0;
}

.privacy-dialog > p:last-child {
  padding-bottom: 1.5rem;
}

@media (max-width: 74rem) {
  :root {
    --header-height: 5.5rem;
  }

  .brand__name {
    display: none;
  }

  .hero {
    grid-template-columns: minmax(5rem, 0.28fr) minmax(22rem, 0.9fr) minmax(29rem, 1.15fr);
  }

  .date-grid {
    grid-template-columns: 1.1fr 1fr;
  }

  .date-card--live {
    grid-column: 1 / -1;
    min-height: 22rem;
  }

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

  .site-footer > :nth-child(4),
  .site-footer > :nth-child(5) {
    border-top: 1px solid rgba(246, 246, 242, 0.38);
  }
}

@media (max-width: 58rem) {
  :root {
    --header-height: 4.7rem;
  }

  .site-header {
    padding-block: 0.8rem;
  }

  .seat-mark {
    width: 7rem;
  }

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

  .site-nav {
    position: fixed;
    z-index: 49;
    inset: var(--header-height) 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem var(--page-gutter) 1.5rem;
    border-bottom: 2px solid var(--ink);
    background: var(--all-white);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    min-height: 3.5rem;
    border-bottom: 1px solid var(--rule);
  }

  .site-nav .nav-cta {
    justify-content: center;
    margin-top: 1rem;
    border: 1.5px solid var(--ink);
  }

  .hero {
    grid-template-columns: 1fr;
    grid-template-areas:
      "photo"
      "copy"
      "next";
    min-height: 0;
    padding-bottom: 4.75rem;
  }

  .date-rail {
    display: none;
  }

  .hero__photo {
    min-height: 20rem;
    aspect-ratio: 16 / 10;
    border-left: 0;
    border-bottom: 1px solid var(--rule);
  }

  .hero__copy {
    padding: 2.5rem var(--page-gutter) 1.6rem;
  }

  .hero h1 {
    max-width: 14ch;
    font-size: clamp(3.2rem, 11vw, 5.7rem);
  }

  .hero__essentials {
    margin-inline: calc(-1 * var(--page-gutter));
    padding-inline: var(--page-gutter);
  }

  .hero__next {
    padding-block: 1.6rem 1.8rem;
  }

  .argument__grid,
  .host,
  .details,
  .faq,
  .closing__grid {
    grid-template-columns: 1fr;
  }

  .argument__grid,
  .host,
  .details,
  .faq,
  .closing__grid {
    gap: 3.5rem;
  }

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

  .timeline::before {
    left: 7.45rem;
  }

  .timeline li {
    grid-template-columns: 5.6rem 1fr;
    gap: 1.8rem;
    padding-inline: 1rem;
  }

  .timeline li::before {
    left: 6.8rem;
  }

  .timeline p {
    grid-column: 2;
  }

  .host {
    padding-inline: var(--page-gutter);
  }

  .host__photo::before {
    width: 24%;
  }

  .details__heading {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

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

  .date-card--live {
    grid-column: auto;
  }

  .closing__list {
    padding: 3rem 0 0;
    border-top: 1px solid rgba(48, 64, 80, 0.5);
    border-left: 0;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
    padding-bottom: 7rem;
  }

  .site-footer > * {
    border-top: 1px solid rgba(246, 246, 242, 0.38);
    border-left: 0;
  }

  .site-footer > :nth-child(even) {
    border-left: 1px solid rgba(246, 246, 242, 0.38);
  }

  .mobile-cta {
    position: fixed;
    z-index: 45;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    min-height: 4.8rem;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.7rem var(--page-gutter);
    border-top: 1px solid var(--rule);
    background: rgba(246, 246, 242, 0.98);
  }

  .mobile-cta p {
    margin: 0;
    line-height: 1.25;
  }

  .mobile-cta p span {
    display: block;
    color: var(--muted);
    font-size: 0.82rem;
  }

  .mobile-cta a {
    min-width: 8.6rem;
    min-height: 3.3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 0.85rem;
    background: var(--ink);
    color: var(--all-white);
    font-weight: 650;
    line-height: 1.15;
    text-align: center;
    text-decoration: none;
  }
}

@media (max-width: 39rem) {
  :root {
    --page-gutter: 1rem;
  }

  .site-header {
    min-height: 4.1rem;
  }

  .seat-mark {
    width: 6.4rem;
  }

  .hero__photo {
    min-height: 0;
    aspect-ratio: 15 / 8;
  }

  .hero__copy {
    padding-top: 1.6rem;
  }

  .hero h1 {
    font-size: clamp(3rem, 14.5vw, 4.25rem);
    line-height: 0.94;
  }

  .hero__accent {
    margin-block: 1rem 1.25rem;
    font-size: 1.75rem;
  }

  .hero__essentials {
    margin-bottom: 1rem;
    padding-block: 0.9rem;
    font-size: 1rem;
  }

  .hero__copy .button {
    min-height: 3.5rem;
  }

  .next-date {
    margin-top: 0.85rem;
    font-size: 0.88rem;
  }

  .hero__next {
    font-size: 2.1rem;
  }

  .argument {
    padding-block: 4rem;
  }

  .argument h2 {
    font-size: 3.5rem;
  }

  .argument__lede {
    font-size: 1.55rem;
  }

  .argument__body {
    font-size: 1rem;
  }

  .stat {
    padding: 1.5rem;
  }

  .stat .stat__number {
    font-size: 3.7rem;
  }

  .agenda {
    padding-top: 4rem;
  }

  .agenda h2 {
    font-size: 3.4rem;
  }

  .timeline::before {
    left: 4rem;
  }

  .timeline li {
    grid-template-columns: 3rem 1fr;
    gap: 1rem;
    min-height: 0;
    padding: 1.35rem 0.25rem;
  }

  .timeline li::before {
    top: 1.9rem;
    left: 3.65rem;
    width: 0.7rem;
  }

  .timeline time {
    font-size: 0.83rem;
  }

  .timeline h3 {
    font-size: 1.05rem;
  }

  .timeline__focus h3 {
    font-size: 1.65rem;
  }

  .timeline p {
    font-size: 0.98rem;
  }

  .reassurance {
    font-size: 2.2rem;
  }

  .host {
    padding-block: 4rem;
  }

  .host h2 {
    font-size: 3.4rem;
  }

  .details {
    padding-bottom: 4rem;
  }

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

  .details__list div {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }

  .upcoming {
    padding-block: 4rem;
  }

  .upcoming h2 {
    font-size: 3.9rem;
  }

  .date-card {
    padding: 1.25rem;
  }

  .date-card__header {
    align-items: flex-start;
  }

  .date-card h3 {
    font-size: 2.25rem;
  }

  .date-card__meta {
    font-size: 0.8rem;
  }

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

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

  .faq {
    padding-block: 4rem;
  }

  .faq h2 {
    font-size: 4rem;
  }

  .closing {
    padding-block: 4rem;
  }

  .closing h2 {
    font-size: 4rem;
  }

  .closing__grid > div:first-child .button {
    width: 100%;
    min-width: 0;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding-inline: 1.25rem;
  }

  .site-footer > *,
  .site-footer > :nth-child(even) {
    min-height: 4rem;
    padding-inline: 0;
    border-left: 0;
  }

  .mobile-cta p {
    font-size: 0.82rem;
  }

  .mobile-cta p span {
    font-size: 0.76rem;
  }

  .mobile-cta a {
    min-width: 7.8rem;
    font-size: 0.92rem;
  }
}

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

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

/* Contextual internal links */
.section-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  color: var(--link-blue);
  font-size: 1rem;
  font-weight: 650;
  text-decoration: none;
}

.section-link:hover {
  text-decoration: underline;
}

.section-link--light {
  margin-top: 2rem;
  color: var(--all-white);
}

.agenda__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(2rem, 4vw, 4rem);
}

.agenda__heading h2 {
  margin-bottom: 0;
}

.faq__heading .section-link {
  margin-top: 2rem;
}

/* Editorial supporting pages */
.content-page {
  min-height: 70vh;
}

.content-hero {
  border-bottom: 1px solid var(--rule);
  background: var(--all-white);
}

.content-hero__inner,
.content-layout,
.related-pages {
  width: min(100%, var(--max-width));
  margin-inline: auto;
}

.content-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(20rem, 0.78fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: end;
  padding: clamp(4.5rem, 9vw, 9rem) var(--page-gutter);
}

.content-kicker,
.content-meta {
  font: 600 0.78rem/1.3 var(--font-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.content-kicker {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--green-dark);
}

.content-hero h1 {
  max-width: 11ch;
  margin: 0;
  font: 400 clamp(3.8rem, 7.5vw, 7.6rem)/0.9 var(--font-serif);
  letter-spacing: -0.025em;
}

.content-hero__lede {
  max-width: 33rem;
  margin: 0;
  padding-left: clamp(1.5rem, 3vw, 3rem);
  border-left: 2px solid var(--yeabridge);
  color: var(--green-dark);
  font: italic 400 clamp(1.65rem, 2.5vw, 2.45rem)/1.12 var(--font-serif);
}

.content-hero__inner > p:last-child:not(.content-kicker):not(.content-hero__lede) {
  grid-column: 2;
  margin: 0;
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.32fr) minmax(18rem, 0.48fr);
  padding-inline: var(--page-gutter);
}

.prose {
  min-width: 0;
  padding: clamp(4.5rem, 8vw, 8rem) clamp(3rem, 7vw, 7rem) clamp(5rem, 9vw, 9rem) 0;
  border-right: 1px solid var(--rule);
  font-size: clamp(1.04rem, 1.25vw, 1.2rem);
}

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

.prose > img {
  width: 100%;
  margin: 3.5rem 0;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.prose h2 {
  max-width: 15ch;
  margin: clamp(4rem, 7vw, 7rem) 0 1.4rem;
  font-size: clamp(3rem, 5.2vw, 5.2rem);
}

.prose h3 {
  max-width: 34rem;
  margin: 2.8rem 0 0.75rem;
  font-size: clamp(1.35rem, 2.1vw, 1.9rem);
  line-height: 1.25;
}

.prose p,
.prose li {
  max-width: 48rem;
}

.prose a {
  color: var(--link-blue);
}

.answer-card {
  max-width: 45rem;
  margin-bottom: clamp(3.5rem, 7vw, 6rem);
  padding: 0 0 clamp(2rem, 4vw, 3.5rem);
  border-bottom: 3px solid var(--cooks-blue);
  background: transparent;
  font: italic 400 clamp(2rem, 3.25vw, 3.25rem)/1.08 var(--font-serif);
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-block: 3.5rem 5rem;
  border-top: 3px solid var(--cooks-blue);
}

.fact-card {
  min-height: 10.5rem;
  padding: 1.5rem 1.5rem 1.7rem 0;
  border-bottom: 1px solid var(--rule);
  background: transparent;
}

.fact-card:nth-child(even) {
  padding-left: 1.5rem;
  border-left: 1px solid var(--rule);
}

.fact-card strong {
  display: block;
  margin-bottom: 0.5rem;
  font: 400 clamp(2.25rem, 4vw, 4rem)/0.95 var(--font-serif);
}

.content-aside {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
  align-self: start;
  margin: clamp(4.5rem, 8vw, 8rem) 0;
  padding: 1.5rem 0 0 clamp(2rem, 4vw, 4rem);
  border-top: 3px solid var(--yeabridge);
}

.content-aside h2 {
  max-width: 9ch;
  margin: 0 0 1.2rem;
  font: 400 clamp(2.4rem, 3.5vw, 3.6rem)/0.95 var(--font-serif);
}

.content-aside p {
  margin: 0 0 1rem;
}

.content-aside ul {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--rule);
}

.content-aside li {
  padding-block: 0.85rem;
  border-bottom: 1px solid var(--rule);
}

.content-aside .button {
  width: 100%;
  margin-top: 1.5rem;
}

.source-list {
  padding-left: 1.25rem;
}

.source-list li + li {
  margin-top: 0.8rem;
}

.content-meta {
  margin-top: 3.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--rule);
  color: var(--muted);
}

.related-pages {
  padding: 0 var(--page-gutter) clamp(5rem, 9vw, 9rem);
}

.related-pages h2 {
  margin: 0 0 1.5rem;
  font-size: clamp(3rem, 5vw, 5rem);
}

.related-pages__grid {
  border-top: 3px solid var(--ink);
}

.related-pages__grid a {
  display: flex;
  min-height: 5rem;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--rule);
  font: 400 clamp(1.65rem, 2.7vw, 2.8rem)/1.05 var(--font-serif);
  text-decoration: none;
}

.related-pages__grid a::after {
  flex: none;
  content: "→";
  font: 400 1.3rem/1 var(--font-sans);
}

.related-pages__grid a:hover {
  color: var(--link-blue);
}

.event-summary {
  margin: 3rem 0 5rem;
  border-top: 3px solid var(--ink);
}

.event-summary div {
  display: grid;
  grid-template-columns: minmax(8rem, 0.32fr) 1fr;
  gap: 1.5rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--rule);
}

.event-summary dt {
  font: 600 0.78rem/1.4 var(--font-mono);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.event-summary dd {
  margin: 0;
  font-size: 1.08rem;
}

.page-faq {
  border-top: 3px solid var(--ink);
}

.page-faq .answer-card {
  border-top: 0;
}

.page-faq details {
  border-bottom: 1px solid var(--rule);
}

.page-faq summary {
  position: relative;
  min-height: 4.8rem;
  padding: 1.45rem 3rem 1.45rem 0;
  font-size: clamp(1.05rem, 1.45vw, 1.3rem);
  font-weight: 650;
  list-style: none;
  cursor: pointer;
}

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

.page-faq summary::after {
  position: absolute;
  top: 50%;
  right: 0.4rem;
  width: 0.7rem;
  height: 0.7rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  content: "";
  transform: translateY(-65%) rotate(45deg);
  transition: transform 160ms ease;
}

.page-faq details[open] summary::after {
  transform: translateY(-25%) rotate(225deg);
}

.page-faq details p {
  margin: -0.25rem 0 1.6rem;
  padding-right: 3rem;
}

@media (max-width: 900px) {
  .content-hero__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .content-hero__lede,
  .content-hero__inner > p:last-child:not(.content-kicker):not(.content-hero__lede) {
    grid-column: 1;
  }

  .content-hero__lede {
    max-width: 42rem;
    padding: 1.5rem 0 0;
    border-top: 2px solid var(--yeabridge);
    border-left: 0;
  }

  .content-layout {
    grid-template-columns: 1fr;
  }

  .prose {
    padding-right: 0;
    border-right: 0;
  }

  .content-aside {
    position: static;
    margin: 0 0 clamp(4rem, 8vw, 7rem);
    padding-left: 0;
  }
}

@media (max-width: 620px) {
  .agenda__heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .content-hero__inner {
    padding-block: 3.5rem 4rem;
  }

  .content-hero h1 {
    font-size: clamp(3.2rem, 17vw, 5rem);
  }

  .content-layout {
    padding-inline: 1.25rem;
  }

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

  .fact-card,
  .fact-card:nth-child(even) {
    min-height: 0;
    padding-inline: 0;
    border-left: 0;
  }

  .event-summary div {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }
}
