@font-face {
  font-family: "Fraunces";
  src: url("/crew/fonts/fraunces-latin-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}
:root {
  --font-display: "Fraunces", Georgia, serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-small: ui-monospace, SFMono-Regular, Consolas, monospace;
  --ink: #202124;
  --paper: #ffffff;
  --surface: #f7f7f3;
  --muted: #626461;
  --line: #e1e2dc;
  --accent: #e9f26e;
  --accent-ink: #202124;
  --focus: #6569d9;
  --selection: #efefff;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
  color-scheme: light;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  cursor: pointer;
}
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 5px;
}
p {
  line-height: 1.65;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
[hidden] {
  display: none !important;
}
.header {
  max-width: 1280px;
  padding: 28px 48px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 36px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 32px;
  font-weight: 750;
  letter-spacing: -1.5px;
}

.header nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
  font-size: 14px;
}
.header nav a {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}
.header nav a[aria-current] {
  border-color: var(--ink);
  font-weight: 650;
}
.badge {
  font-size: 11px;
  letter-spacing: 0.8px;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 7px 12px;
}
.main {
  max-width: 1280px;
  padding: 32px 48px 72px;
  margin: auto;
}
.hero {
  border-radius: 18px;
  background: var(--ink);
  color: #f0f3dd;
  min-height: 480px;
  position: relative;
  overflow: hidden;
  padding: 54px 54px 0;
}
.hero-copy {
  position: relative;
  z-index: 1;
}
.eyebrow {
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 650;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(64px, 7vw, 104px);
  letter-spacing: -5px;
  line-height: 0.98;
  font-weight: 550;
  margin-bottom: 22px;
}
.accent {
  color: #ee9773;
}
.lede {
  font-size: 17px;
  color: #ccd9c8;
  margin-bottom: 24px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: var(--accent);
  color: var(--accent-ink);
  border: 0;
  border-radius: 7px;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 600;
  min-height: 46px;
}
.button-light {
  background: var(--accent);
  color: var(--ink);
}
.hero-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  letter-spacing: 1.5px;
  border-top: 1px solid #52736a;
  margin-top: 38px;
  padding: 20px 0;
}
.orbits {
  position: absolute;
  width: 490px;
  height: 490px;
  right: -22px;
  top: 0;
  transform: rotate(-23deg);
}
.orbits span {
  position: absolute;
  border: 1px solid #608179;
  border-radius: 50%;
  inset: 42px;
}
.orbits span:nth-child(2) {
  inset: 90px;
}
.orbits span:nth-child(3) {
  inset: 142px;
}
.orbits i {
  position: absolute;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #ee9773;
  right: 74px;
  top: 78px;
  box-shadow: 0 0 80px #ee977322;
}
.orbits b {
  position: absolute;
  inset: 215px 100px auto;
  text-align: center;
  transform: rotate(23deg);
  font-size: 12px;
  letter-spacing: 3px;
  line-height: 1.8;
  font-weight: 450;
}
.section {
  margin-top: 44px;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
}
.section h2 {
  font-size: 22px;
  letter-spacing: -0.5px;
}
.muted {
  color: var(--muted);
  font-size: 13px;
}
.cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.card,
.panel {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
}
.card:hover {
  border-color: #8da58f;
}
.card-number {
  font-size: 10px;
  letter-spacing: 1.7px;
  color: #687c6a;
}
.card h3 {
  font-size: 24px;
  letter-spacing: -0.8px;
  margin: 22px 0 12px;
}
.card p {
  font-size: 14px;
  color: var(--muted);
  max-width: 350px;
}
.card-link {
  display: block;
  margin-top: 30px;
  font-size: 13px;
  font-weight: 600;
}
.together {
  margin-top: 32px;
  border-radius: 12px;
  padding: 38px;
  background: #e8eddf;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 35px;
}
.together .eyebrow {
  grid-column: 1/-1;
  margin-bottom: 15px;
}
.together h2 {
  font-size: 30px;
  letter-spacing: -1px;
  margin: 0;
}
.together p {
  max-width: 400px;
  font-size: 14px;
  color: #5c6e60;
  margin: 0;
}
.footer {
  max-width: 1280px;
  margin: auto;
  padding: 24px 40px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--muted);
}
.page-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(38px, 4.7vw, 60px);
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin-bottom: 20px;
}
.page-intro {
  color: var(--muted);
  font-size: 17px;
}
.empty {
  text-align: center;
  padding: 75px 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  margin: 36px 0;
  background: var(--surface);
}
.empty h2 {
  font-size: 26px;
  letter-spacing: -0.7px;
}
.empty-symbol {
  font-size: 48px;
  display: block;
  color: #bd7955;
  margin-bottom: 24px;
}
.empty p {
  color: var(--muted);
}
.text-link {
  font-size: 14px;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.setup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 36px 0;
}
.panel h2 {
  font-size: 23px;
  letter-spacing: -0.6px;
}
.panel p,
.panel li {
  font-size: 14px;
  color: var(--muted);
}
.panel ol {
  padding-left: 22px;
}
.panel li {
  padding-left: 5px;
  margin: 22px 0;
  line-height: 1.7;
}
.update {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: white;
  padding: 16px 20px;
  border-radius: 10px;
  display: flex;
  gap: 20px;
  align-items: center;
  box-shadow: 0 4px 30px #0003;
  z-index: 5;
  font-size: 14px;
  max-width: 95vw;
}
.update button {
  border: 0;
  border-radius: 6px;
  padding: 10px;
  white-space: nowrap;
  background: var(--accent);
  color: var(--ink);
}
.skip {
  position: absolute;
  top: -100px;
}
.skip:focus {
  top: 5px;
  left: 5px;
  background: white;
  padding: 12px;
  z-index: 10;
}
@media (max-width: 720px) {
  .header {
    padding: 20px;
    gap: 14px;
    flex-wrap: wrap;
  }
  .header nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    margin: 0;
    gap: 12px;
  }
  .badge {
    margin-left: auto;
  }
  .main {
    padding: 6px 20px 35px;
  }
  .hero {
    padding: 32px 26px 0;
    min-height: 480px;
  }
  .hero h1 {
    letter-spacing: -3px;
    font-size: 68px;
  }
  .orbits {
    right: -250px;
    opacity: 0.45;
    top: 30px;
  }
  .orbits b {
    display: none;
  }
  .hero-bottom {
    font-size: 8px;
    gap: 20px;
  }
  .hero-bottom span:last-child {
    text-align: right;
  }
  .section-heading {
    display: block;
  }
  .section-heading .muted {
    display: block;
    margin-bottom: 20px;
  }
  .cards,
  .setup-grid {
    grid-template-columns: 1fr;
  }
  .together {
    padding: 28px;
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .together .eyebrow {
    margin: 0;
  }
  .together h2 {
    font-size: 28px;
  }
  .footer {
    padding: 24px 20px;
    gap: 20px;
  }
  .empty {
    padding: 45px 20px;
  }
  .page-title {
    letter-spacing: -1px;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
  }
}
.event-agenda {
  margin: 28px 0;
}
.agenda-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}
.agenda-toolbar label {
  display: grid;
  gap: 8px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  color: var(--muted);
}
.agenda-toolbar select {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  font-family: inherit;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 36px 12px 14px;
  width: 100%;
  max-width: 100%;
}
.agenda-toolbar select:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}
.agenda-day {
  margin: 28px 0;
}
.agenda-day > h2 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 16px;
}
.agenda-session {
  display: grid;
  grid-template-columns: 155px 1fr;
  gap: 24px;
  padding: 26px 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  margin: 12px 0;
}
.agenda-session time {
  font-size: 14px;
  font-weight: 650;
  color: var(--muted);
  padding-top: 3px;
}
.agenda-session h3 {
  font-size: 22px;
  letter-spacing: -0.6px;
  margin-bottom: 9px;
}
.agenda-session p {
  margin-bottom: 8px;
  font-size: 14px;
}
.session-location {
  color: var(--muted);
}
.session-instructions {
  white-space: pre-line;
  overflow-wrap: anywhere;
  max-width: 700px;
}
.agenda-state {
  padding: 40px 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  margin: 20px 0;
}
.agenda-state h2 {
  font-size: 24px;
  letter-spacing: -0.5px;
}
.agenda-state p {
  color: var(--muted);
  max-width: 650px;
}
.agenda-more {
  display: inline-block;
  margin-top: 10px;
}
@media (max-width: 720px) {
  .agenda-toolbar {
    display: grid;
    gap: 12px;
  }
  .agenda-toolbar select {
    font-size: 14px;
  }
  .agenda-session {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 22px;
  }
  .agenda-session h3 {
    font-size: 21px;
  }
  .agenda-state {
    padding: 28px 22px;
  }
  .agenda-toolbar label {
    min-width: 0;
  }
}

.footer {
  flex-wrap: wrap;
  gap: 16px;
}
.footer-meta {
  text-align: right;
}
.build-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 4px;
  font-size: 10px;
  line-height: 1.5;
  font-variant-numeric: tabular-nums;
}
.build-info time {
  white-space: nowrap;
}
@media (max-width: 480px) {
  .footer-meta {
    text-align: left;
  }
}

/* Agenda: an event programme with a compact, thumb-friendly day selector. */
.event-agenda {
  margin-top: 12px;
}
.agenda-toolbar {
  margin-bottom: 22px;
}
.agenda-toolbar label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
}
.agenda-toolbar select {
  font-size: 13px;
  padding: 9px 32px 9px 12px;
}
.agenda-cover {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--surface);
  color: var(--ink);
  border-radius: 18px;
  padding: 42px 44px;
  min-height: 0;
  margin-bottom: 38px;
}
.agenda-cover-copy {
  position: relative;
  z-index: 1;
  max-width: 630px;
}
.agenda-cover .eyebrow {
  color: var(--muted);
  margin-bottom: 24px;
}
.agenda-cover h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.1vw, 66px);
  font-weight: 400;
  line-height: 1.01;
  letter-spacing: -0.035em;
  margin: 0 0 20px;
  max-width: 660px;
  overflow-wrap: anywhere;
}
.agenda-cover-intro {
  font-size: 15px;
  color: var(--muted);
  max-width: 46ch;
  margin-bottom: 28px;
}
.agenda-date-range {
  display: inline-block;
  border-top: 0;
  padding-top: 0;
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 0;
}
.agenda-orbit {
  position: absolute;
  width: 510px;
  height: 510px;
  right: -90px;
  top: -90px;
  transform: rotate(-24deg);
  z-index: 0;
  opacity: 0.8;
}
.agenda-orbit i {
  position: absolute;
  inset: 25px;
  border: 1px solid #dedfe6;
  border-radius: 50%;
}
.agenda-orbit i:nth-child(2) {
  inset: 88px;
}
.agenda-orbit i:nth-child(3) {
  inset: 150px;
}
.agenda-orbit b {
  position: absolute;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--accent);
  right: 118px;
  top: 89px;
  box-shadow: none;
}

.agenda-layout {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: 44px;
  align-items: start;
}
.agenda-day-nav {
  display: grid;
  gap: 10px;
  position: sticky;
  top: 24px;
  padding-top: 8px;
}
.agenda-day-button {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 5px 8px;
  text-align: left;
  padding: 19px 16px;
  color: var(--muted);
  border: 1px solid transparent;
  border-radius: 10px;
  background: transparent;
  min-height: 84px;
}
.agenda-day-button strong {
  font-size: 14px;
  font-weight: 600;
}
.agenda-day-button > span:last-child {
  grid-column: 2;
  font-size: 12px;
}
.agenda-day-number {
  grid-row: 1/3;
  font-size: 12px;
  padding-top: 2px;
  font-variant-numeric: tabular-nums;
}
.agenda-day-button[aria-current="location"] {
  background: var(--selection);
  border-color: var(--line);
  color: var(--ink);
}
.agenda-day-button[aria-current="location"] .agenda-day-number {
  color: var(--muted);
}
.agenda-day-button:hover {
  background: var(--surface);
}
.agenda-day {
  margin: 0;
}
.agenda-day-heading {
  position: relative;
  padding: 4px 0 24px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 5px;
}
.agenda-day-kicker {
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 11px;
}
.agenda-day-heading h2 {
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: -0.03em;
  font-weight: 400;
  margin: 0;
}
.agenda-day-toggle {
  position: absolute;
  right: 0;
  bottom: 24px;
  font-size: 12px;
  color: var(--muted);
  margin: 0;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 0;
  background: none;
  border: 0;
  cursor: pointer;
}
.agenda-day-toggle:hover {
  color: var(--ink);
}
.agenda-day-toggle:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 4px;
}
.agenda-session {
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 22px;
  padding: 28px 0;
  margin: 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}
.agenda-session time {
  font-size: 13px;
  line-height: 1.8;
  padding-top: 1px;
  font-variant-numeric: tabular-nums;
  display: flex;
  flex-direction: column;
}
.agenda-session time strong {
  font-weight: 650;
  color: var(--ink);
}
.agenda-session time span {
  font-size: 11px;
  color: var(--muted);
}
.agenda-session h3 {
  font-size: 21px;
  line-height: 1.35;
  font-weight: 580;
  letter-spacing: -0.55px;
  margin: 0 0 8px;
  overflow-wrap: anywhere;
}
.agenda-session .session-location {
  font-size: 12px;
  color: var(--muted);
  margin: 0 0 11px;
}
.agenda-session details summary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  color: var(--muted);
  cursor: pointer;
  list-style: none;
  padding: 5px 0;
  min-height: 30px;
}
.agenda-session summary::-webkit-details-marker {
  display: none;
}
.agenda-session summary:after {
  content: "+";
  font-size: 16px;
  line-height: 1;
}
.agenda-session details[open] summary:after {
  content: "−";
}
.agenda-session summary:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 4px;
}
.agenda-session details[open] {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 18px;
  margin: 12px 0 2px;
}
.agenda-session .session-instructions {
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
  margin: 12px 0 2px;
}
.agenda-session-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  min-width: 0;
}
.agenda-session .session-prepare {
  display: inline-block;
  padding: 4px 9px;
  white-space: nowrap;
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-ink);
  font-family: var(--font-small);
  font-size: 9px;
  letter-spacing: 1.5px;
  font-weight: 650;
  line-height: 1.4;
}
.event-agenda[data-compact="true"] .agenda-layout {
  display: block;
}
.event-agenda[data-compact="true"] .agenda-day {
  margin-top: 20px;
}
.event-agenda[data-compact="true"] .agenda-day-heading h2 {
  font-size: 20px;
}
.event-agenda[data-compact="true"] .agenda-day-kicker,
.event-agenda[data-compact="true"] .agenda-day-toggle {
  display: none;
}
@media (max-width: 900px) {
  .agenda-layout {
    grid-template-columns: 160px minmax(0, 1fr);
    gap: 28px;
  }
  .agenda-day-toggle {
    position: static;
    margin: 9px 0 0;
    min-height: 44px;
  }
  .agenda-cover-copy {
    max-width: 75%;
  }
  .agenda-orbit {
    right: -230px;
    opacity: 0.6;
  }
}
@media (max-width: 600px) {
  .agenda-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  .agenda-toolbar label {
    width: 100%;
    font-size: 9px;
  }
  .agenda-toolbar select {
    flex: 1;
    min-width: 0;
    font-size: 12px;
  }
  .agenda-toolbar [data-time-zone] {
    font-size: 11px;
  }
  .agenda-cover {
    padding: 32px 26px;
    min-height: 0;
    margin-bottom: 18px;
    border-radius: 14px;
  }
  .agenda-cover-copy {
    max-width: 100%;
  }
  .agenda-cover h1 {
    font-size: clamp(34px, 9vw, 46px);
    letter-spacing: -0.035em;
    max-width: 100%;
  }
  .agenda-cover .eyebrow {
    font-size: 9px;
  }
  .agenda-cover-intro {
    font-size: 13px;
    max-width: 235px;
  }
  .agenda-date-range {
    font-size: 10px;
  }
  .agenda-orbit {
    right: -340px;
    top: -80px;
    opacity: 0.45;
  }
  .agenda-layout {
    display: block;
  }
  .agenda-day-nav {
    display: flex;
    gap: 7px;
    position: sticky;
    top: 0;
    z-index: 2;
    background: var(--paper);
    padding: 12px 0 14px;
    overflow-x: auto;
    margin-bottom: 16px;
  }
  .agenda-day-button {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 14px 12px;
    flex: 1;
    min-width: 96px;
    min-height: 80px;
    border-color: var(--line);
  }
  .agenda-day-button .agenda-day-number {
    display: none;
  }
  .agenda-day-button strong {
    font-size: 12px;
  }
  .agenda-day-button > span:last-child {
    font-size: 11px;
  }
  .agenda-day-heading h2 {
    font-size: 32px;
  }
  .agenda-day-heading {
    padding-bottom: 20px;
  }
  .agenda-session {
    grid-template-columns: 75px minmax(0, 1fr);
    gap: 14px;
    padding: 23px 0;
  }
  .agenda-session h3 {
    font-size: 19px;
    letter-spacing: -0.45px;
  }
  .agenda-session time {
    font-size: 12px;
  }
  .agenda-session time span {
    font-size: 10px;
  }
  .agenda-session details[open] {
    padding: 11px 13px;
  }
  .agenda-session .session-instructions {
    font-size: 13px;
  }
  .agenda-session details summary {
    min-height: 40px;
  }
  .agenda-session-meta {
    gap: 8px;
  }
  .agenda-session .session-prepare {
    padding: 3px 6px;
    font-size: 8px;
    letter-spacing: 0.9px;
  }
}

.agenda-photo-prompt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 14px 0 0;
  padding: 12px 15px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--surface);
}
.agenda-photo-prompt > div {
  min-width: 0;
}
.agenda-photo-prompt .eyebrow {
  font-size: 9px;
  letter-spacing: 1px;
  color: #64705b;
  margin: 0 0 4px;
}
.agenda-photo-prompt h4 {
  font-size: 14px;
  line-height: 1.4;
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.2px;
}
.agenda-photo-prompt .button {
  flex-shrink: 0;
  padding: 10px 12px;
  font-size: 12px;
  min-height: 44px;
  white-space: nowrap;
}
.agenda-session {
  scroll-margin-top: 24px;
}
@media (max-width: 720px) {
  .agenda-photo-prompt {
    gap: 10px;
    padding: 10px 12px;
  }
  .agenda-photo-prompt .button {
    padding: 10px;
    font-size: 11px;
  }
}

/* One continuous agenda, with day links following the reader's position. */
.event-agenda:not([data-compact="true"]) .agenda-day {
  scroll-margin-top: 24px;
}
.event-agenda:not([data-compact="true"]) .preparation {
  margin-bottom: 56px;
}
.event-agenda:not([data-compact="true"]) [data-days] > .agenda-day + .agenda-day {
  margin-top: 64px;
}
@media (max-width: 600px) {
  .event-agenda:not([data-compact="true"]) .agenda-day,
  .agenda-session {
    scroll-margin-top: 126px;
  }
  .agenda-day-nav {
    border-bottom: 1px solid var(--line);
  }
}

/* Shared reading rhythm: display type for page/section titles, quiet sans for tasks. */
button, input, select, textarea { font-family: var(--font-body); }
input, select, textarea { color: var(--ink); }
button:disabled { cursor: not-allowed; }
.button:hover:not(:disabled) { filter: brightness(.96); }
.button:disabled { opacity: .5; }
.eyebrow, .agenda-day-kicker, .agenda-date-range { font-family: var(--font-small); font-weight: 400; letter-spacing: .055em; }
.header nav a { min-height: 44px; display: inline-flex; align-items: center; }
.header nav a:hover { color: var(--muted); }
.header nav a[aria-current] { border-color: var(--focus); }
.page-title, .page-intro, .section-heading > *, .agenda-day-heading h2 { overflow-wrap: anywhere; }
.page-intro { max-width: 60ch; line-height: 1.6; }
.agenda-cover .eyebrow { margin-bottom: 16px; }
.agenda-cover-intro { margin-bottom: 20px; }
.agenda-cover-copy { max-width: 78%; }
.agenda-day-heading { padding-right: 130px; }
.agenda-session > div { min-width: 0; }
.agenda-session details summary { font-size: 13px; min-height: 44px; }
.agenda-photo-prompt .eyebrow { color: var(--muted); }
.agenda-photo-prompt h4 { overflow-wrap: anywhere; }
.agenda-day-nav { font-family: var(--font-body); }
@media (max-width: 900px) {
  .agenda-day-heading { padding-right: 0; }
}
@media (max-width: 720px) {
  .header { padding: 18px 22px 10px; }
  .main { padding: 20px 22px 48px; }
  .header nav { gap: 8px; }
  .header nav a { font-size: 14px; }
  .footer { padding: 24px 22px; }
  .agenda-cover-copy { max-width: 100%; }
  .agenda-orbit { display: none; }
}
@media (max-width: 420px) {
  .agenda-cover { padding: 26px 22px; }
  .agenda-photo-prompt { align-items: flex-start; flex-direction: column; }
  .agenda-photo-prompt .button { align-self: flex-start; font-size: 12px; }
  .agenda-day-button { min-width: 86px; }
}

@media (min-width: 375px) and (max-width: 420px) {
  .agenda-day-nav { gap: 4px; }
  .agenda-day-button { min-width: 0; padding: 12px 7px; }
  .agenda-day-button strong { font-size: 11px; }
}
