:root {
  --cream: #F5F0E8;
  --cream-deep: #EFE8DD;
  --paper: #FBF7F1;
  --ink: #1C1B1A;
  --ink-soft: #4A4744;
  --ink-quiet: #8A857E;
  --ink-whisper: #BAB4AB;
  --purple: #AA5CB4;
  --teal: #128F8B;
  --rule: rgba(28, 27, 26, 0.14);

  --taupe: #D9CFC2;
  --taupe-light: #ECE5DC;
  --taupe-deep: #CDC1B1;
  --rule-dark: rgba(251, 247, 241, 0.22);

  --display: "Bodoni Moda", "Didot", "Bodoni MT", "Times New Roman", serif;
  --body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --wordmark: "Outfit", var(--body);

  --t-hero: clamp(3.4rem, 9vw, 8.25rem);
  --t-section: clamp(2.75rem, 5.4vw, 4.5rem);
  --t-sub: clamp(2rem, 3.4vw, 2.75rem);
  --t-body: 1.0625rem;

  --measure: 1208px;
  --gutter: 24px;
  --unit: 72px;
  --section-y: 72px;
}

@media (min-width: 800px) {
  :root {
    --gutter: 40px;
    --section-y: 144px;
  }
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--display);
  font-optical-sizing: auto;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0;
}

p {
  margin: 0 0 1.1em;
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: inherit;
}

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

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

.section--dark :focus-visible {
  outline-color: var(--paper);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--paper);
  padding: 12px 18px;
  z-index: 10;
}

.skip-link:focus {
  left: 0;
}

.wrap {
  width: 100%;
  max-width: var(--measure);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 32px;
}

@media (min-width: 800px) {
  .grid {
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 24px;
  }

  .rail {
    grid-column: 1 / span 2;
  }

  .field {
    grid-column: 3 / span 6;
  }

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

.rail {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.section {
  padding: var(--section-y) 0;
}

.section--taupe {
  background: var(--taupe-light);
}

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

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

.section--dark {
  background: var(--ink);
  color: var(--paper);
}

.section--dark a {
  color: var(--paper);
}

.masthead {
  background: var(--taupe-light);
  border-bottom: 1px solid var(--rule);
  padding: 20px 0;
}

.masthead__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  justify-content: space-between;
  align-items: baseline;
}

.strokes {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 44px;
}

@media (min-width: 800px) {
  .strokes {
    width: 56px;
  }
}

.strokes span {
  display: block;
  height: 1px;
  background: var(--ink);
}

.section--dark .strokes span {
  background: var(--paper);
}

.numeral {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 0;
}

.numeral b {
  font-family: var(--display);
  font-optical-sizing: auto;
  font-style: italic;
  font-weight: 400;
  font-size: 2rem;
  line-height: 0.9;
}

@media (min-width: 800px) {
  .numeral {
    gap: 16px;
  }

  .numeral b {
    font-size: 2.75rem;
  }
}

.numeral i {
  display: block;
  width: 1px;
  height: 2.4em;
  background: rgba(28, 27, 26, 0.42);
  transform: rotate(22deg);
  transform-origin: top center;
}

.section--dark .numeral i {
  background: var(--rule-dark);
}

.eyebrow {
  font-family: var(--body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0;
}

.section--dark .eyebrow {
  color: var(--ink-whisper);
}

.section-title {
  font-size: var(--t-section);
  line-height: 1;
  margin-bottom: var(--unit);
}

.muted {
  color: var(--ink-soft);
}

.rule {
  border: 0;
  border-top: 1px solid var(--rule);
  margin: 40px 0;
}

.section--dark .rule {
  border-top-color: var(--rule-dark);
}

.hero {
  background: var(--taupe-light);
  padding: 72px 0;
}

@media (min-width: 800px) {
  .hero {
    padding: 144px 0 120px;
  }
}

.hero__head .strokes {
  margin-bottom: 24px;
}

.hero__title {
  font-size: var(--t-hero);
  line-height: 0.88;
  margin: 24px 0 28px;
}

@media (min-width: 800px) {
  .hero__head {
    grid-column: 1 / span 5;
  }

  .hero__aside {
    grid-column: 6 / span 3;
    justify-content: space-between;
    gap: 40px;
  }

  .hero__aside .hero__logo {
    order: 0;
  }

  .hero__aside .hero__tagline {
    order: 0;
    margin-bottom: 6px;
  }

  .hero__rule {
    grid-column: 1 / span 8;
    margin-top: var(--unit);
  }

  .hero__meta {
    grid-column: 1 / span 8;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 24px;
  }

  .hero__meta > div:nth-child(1) { grid-column: 1 / span 2; }
  .hero__meta > div:nth-child(2) { grid-column: 3 / span 2; }
  .hero__meta > div:nth-child(3) { grid-column: 5 / span 3; }

  .hero__cta {
    grid-column: 1 / span 3;
    margin-top: var(--unit);
  }
}

.hero__aside {
  display: flex;
  flex-direction: column;
  gap: 44px;
}

.hero__logo {
  order: 2;
  width: 100%;
  max-width: 260px;
  height: auto;
}

@media (min-width: 800px) {
  .hero__logo {
    max-width: 340px;
  }
}

.hero__tagline {
  order: 1;
  font-size: clamp(1.05rem, 2.4vw, 1.2rem);
  line-height: 1.6;
  max-width: 34ch;
  margin: 0;
}

.organizers__logo {
  width: 100%;
  max-width: 180px;
  height: auto;
}

.hero__rule {
  height: 1px;
  background: var(--rule);
  margin-top: 44px;
}

.hero__meta {
  display: grid;
  gap: 20px;
  margin: 28px 0 0;
}

.hero__meta dt {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 6px;
}

.hero__meta dd {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.5;
}

.hero__cta {
  margin-top: 44px;
}

.btn {
  display: inline-block;
  font-family: var(--body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 20px 40px;
  background: var(--ink);
  color: var(--paper);
  border: 1px solid var(--ink);
  transition: background 160ms ease, color 160ms ease;
}

.btn:hover {
  background: transparent;
  color: var(--ink);
}

.section--dark .btn,
.hero__cta .btn {
  text-align: center;
}

.section--dark .btn {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}

.section--dark .btn:hover {
  background: transparent;
  color: var(--paper);
}

.btn--block {
  display: block;
  text-align: center;
}

.btn--disabled {
  background: transparent;
  color: var(--ink-quiet);
  border-color: var(--ink-whisper);
  cursor: not-allowed;
  pointer-events: none;
}

.link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid var(--ink-whisper);
  padding-bottom: 3px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: border-color 160ms ease;
}

.link:hover {
  border-bottom-color: var(--ink);
}

.manifesto p {
  font-family: var(--display);
  font-optical-sizing: auto;
  font-size: var(--t-sub);
  line-height: 1.28;
  letter-spacing: -0.01em;
  text-wrap: pretty;
  margin: 0 0 1em;
}

.manifesto p:last-child {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.workshop {
  padding: 36px 0;
  border-top: 1px solid var(--rule);
}

.workshop:last-child {
  border-bottom: 1px solid var(--rule);
}

@media (min-width: 800px) {
  .workshop {
    display: grid;
    grid-template-columns: 108px minmax(0, 1fr);
    gap: 32px;
    padding: 44px 0;
  }
}

.workshop__index {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 12px;
  padding-top: 8px;
}

@media (min-width: 800px) {
  .workshop__index {
    margin: 0;
  }
}

.workshop__title {
  font-size: var(--t-sub);
  line-height: 1.14;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}

.workshop__title--pending {
  color: var(--ink-quiet);
}

.workshop__body {
  max-width: 60ch;
  color: var(--ink-soft);
}

.workshop__lede {
  display: grid;
  gap: 20px;
  margin: 0 0 32px;
}

.workshop__lede dt {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 6px;
}

.workshop__lede dd {
  margin: 0;
  max-width: 60ch;
}

.modules {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
}

.module {
  display: grid;
  gap: 8px;
  padding: 24px 0;
  border-top: 1px solid var(--rule);
}

.module:last-child {
  border-bottom: 1px solid var(--rule);
}

@media (min-width: 800px) {
  .module {
    grid-template-columns: 108px minmax(0, 1fr);
    gap: 32px;
  }
}

.module__index {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding-top: 4px;
}

.module__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.module__title {
  font-family: var(--body);
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0;
  margin: 0;
  max-width: 52ch;
}

.module__body {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.96rem;
  max-width: 60ch;
}

.module__dynamic {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.pullquote {
  margin: 32px 0 0;
  font-family: var(--display);
  font-optical-sizing: auto;
  font-size: var(--t-sub);
  line-height: 1.26;
  letter-spacing: -0.01em;
  max-width: 26ch;
}

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

.agenda__item {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 22px 0;
  border-top: 1px solid var(--rule);
}

.agenda__item:last-child {
  border-bottom: 1px solid var(--rule);
}

@media (min-width: 800px) {
  .agenda__item {
    gap: 24px;
  }
}

.agenda__time {
  width: 56px;
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
  font-size: 1.02rem;
  color: var(--ink-soft);
}

@media (min-width: 800px) {
  .agenda__time {
    width: 64px;
  }
}

.agenda__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ink-quiet);
  flex-shrink: 0;
}

.agenda__dot--major {
  width: 11px;
  height: 11px;
  background: transparent;
  border: 1px solid var(--ink);
  margin-left: -3px;
}

.agenda__label {
  font-size: 1.02rem;
}

.note {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 24px 0 0;
}

.speakers {
  display: grid;
  gap: 56px;
}

.speaker {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 760px) {
  .speakers {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: start;
  }

  @supports (grid-template-rows: subgrid) {
    .speakers {
      grid-template-rows: auto auto auto auto auto;
      align-items: stretch;
    }

    .speaker {
      display: grid;
      grid-row: span 5;
      grid-template-rows: subgrid;
      row-gap: 16px;
    }
  }
}

.speaker__photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: var(--cream-deep);
  border: 1px solid var(--rule);
  object-fit: cover;
  margin-bottom: 4px;
}

.speaker__name {
  font-size: var(--t-sub);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--ink-quiet);
}

.speaker__role {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0;
}

.speaker__bio {
  color: var(--ink-soft);
  font-size: 0.96rem;
  margin: 0;
}

.speaker__link {
  align-self: start;
  justify-self: start;
}

.venue__name {
  font-size: var(--t-section);
  line-height: 1;
  margin-bottom: 24px;
}

.venue__address {
  font-style: normal;
  color: var(--ink-soft);
  margin-bottom: 28px;
  max-width: 36ch;
}

.tiers {
  display: grid;
  gap: 24px;
}

@media (min-width: 760px) {
  .tiers {
    grid-template-columns: repeat(auto-fit, minmax(260px, 340px));
    justify-content: start;
  }
}

.tier {
  border: 1px solid var(--rule-dark);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tier__name {
  font-family: var(--body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-whisper);
  margin: 0;
}

.tier__price {
  font-family: var(--display);
  font-optical-sizing: auto;
  font-size: var(--t-sub);
  line-height: 1.1;
  margin: 6px 0 4px;
}

.tier__detail {
  color: var(--ink-whisper);
  font-size: 0.96rem;
  margin: 0 0 28px;
}

.tier .btn {
  margin-top: auto;
}

.section--dark .btn--disabled {
  background: transparent;
  color: var(--ink-whisper);
  border-color: var(--rule-dark);
}

.faq__item {
  border-top: 1px solid var(--rule);
  padding: 28px 0;
}

.faq__item:last-child {
  border-bottom: 1px solid var(--rule);
}

.faq__q {
  font-family: var(--display);
  font-optical-sizing: auto;
  font-size: var(--t-sub);
  line-height: 1.15;
  letter-spacing: -0.01em;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 32px;
}

.faq__q::-webkit-details-marker {
  display: none;
}

.faq__q::after {
  content: "+";
  font-family: var(--body);
  font-size: 1.02rem;
  color: var(--ink-soft);
}

.faq__item[open] .faq__q::after {
  content: "–";
}

.faq__a {
  color: var(--ink-soft);
  max-width: 60ch;
  padding-top: 16px;
}

.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding: 96px 0 56px;
}

.site-footer a {
  color: var(--paper);
}

.site-footer .eyebrow {
  color: var(--ink-whisper);
}

.site-footer .wordmark {
  color: var(--purple);
}

.organizers {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  padding: 36px 0 44px;
  border-top: 1px solid var(--rule-dark);
  border-bottom: 1px solid var(--rule-dark);
  margin: 20px 0 44px;
}

@media (min-width: 800px) {
  .organizers {
    gap: var(--unit);
  }
}

.wordmark {
  font-family: var(--wordmark);
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1;
  color: var(--purple);
  text-decoration: none;
  display: inline-block;
  position: relative;
  padding: 8px 0;
}

.wordmark__dotted {
  position: relative;
}

.wordmark__dotted::before,
.wordmark__dotted::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 0.13em;
  height: 0.13em;
  border-radius: 50%;
  background: var(--teal);
  transform: translateX(-50%);
}

.wordmark__dotted::before {
  top: -0.2em;
}

.wordmark__dotted::after {
  bottom: -0.16em;
}

.footer-grid {
  display: grid;
  gap: 32px;
}

@media (min-width: 700px) {
  .footer-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
  }
}

.footer-grid h2 {
  font-family: var(--body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-whisper);
  margin: 0 0 14px;
}

.footer-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  font-size: 1.02rem;
}

.colophon {
  margin-top: var(--unit);
  padding-top: 24px;
  border-top: 1px solid var(--rule-dark);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-quiet);
}

.organizers + .colophon {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

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

.event-list__item {
  border-top: 1px solid var(--rule);
  padding: 36px 0;
}

.event-list__item:last-child {
  border-bottom: 1px solid var(--rule);
}

@media (min-width: 800px) {
  .event-list__item {
    padding: 44px 0;
  }
}

.event-list__link {
  text-decoration: none;
  transition: opacity 160ms ease;
}

.event-list__link:hover {
  opacity: 0.62;
}

.event-list__meta {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 16px;
}

.event-list__title {
  font-family: var(--display);
  font-optical-sizing: auto;
  font-size: var(--t-section);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.event-list__blurb {
  color: var(--ink-soft);
  max-width: 52ch;
  margin: 0;
}

.event-list__cue {
  display: inline-block;
  margin-top: 24px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--ink-whisper);
  padding-bottom: 4px;
}

.event-list__item--ghost {
  color: var(--ink-quiet);
}

.event-list__item--ghost .event-list__title {
  color: var(--ink-quiet);
  font-size: var(--t-sub);
  margin-bottom: 0;
}

.index-hero {
  background: var(--taupe-light);
  padding: 72px 0;
}

@media (min-width: 800px) {
  .index-hero {
    padding: 144px 0 120px;
  }
}

.index-hero h1 {
  font-size: clamp(2.75rem, 6.8vw, 6rem);
  line-height: 0.92;
  margin: 24px 0 0;
}
