/* Sylphx Events product site. Dest host: https://events.sylphx.com */
:root {
  color-scheme: light;
  --ink: #16150f;
  --muted: #4a463c;
  --paper: #f7f4ee;
  --sheet: #fffdf8;
  --rule: #d9d2c4;
  --seal: #8a2f12;
  --seal-ink: #fffdf8;
  --focus: #16150f;
  --code: #2a261c;
  --ok: #1f4d38;
  --space: clamp(1rem, 2vw, 1.5rem);
  --measure: 42rem;
  --page: 72rem;
}

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

html {
  background: var(--paper);
  color: var(--ink);
}

body {
  margin: 0;
  font: 1.0625rem/1.55 "Segoe UI", ui-sans-serif, system-ui, sans-serif;
  letter-spacing: -0.005em;
}

h1,
h2,
h3,
.wordmark {
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.12;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  margin: 0 0 0.6em;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 0.5em;
}

h3 {
  font-size: 1.15rem;
  margin: 0 0 0.4em;
}

p,
li {
  color: var(--ink);
}

.lede,
.muted,
figcaption {
  color: var(--muted);
}

a {
  color: var(--seal);
  text-underline-offset: 0.18em;
}

a:hover {
  text-decoration-thickness: 0.12em;
}

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

.skip {
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  transform: translateY(-200%);
  background: var(--sheet);
  color: var(--ink);
  padding: 0.7rem 1rem;
  z-index: 2;
}

.skip:focus {
  transform: none;
}

.mast {
  border-bottom: 1px solid var(--rule);
  background: var(--sheet);
}

.mast-inner,
.foot-inner,
.wrap {
  width: min(var(--page), calc(100% - 2 * var(--space)));
  margin-inline: auto;
}

.mast-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  min-height: 4.5rem;
  padding-block: 0.75rem;
}

.wordmark {
  color: var(--ink);
  text-decoration: none;
  font-size: 1.2rem;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.wordmark span {
  display: block;
  font-family: "Segoe UI", ui-sans-serif, system-ui, sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

nav[aria-label="Primary"] {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}

nav[aria-label="Primary"] a {
  color: var(--ink);
  text-decoration: none;
  min-height: 44px;
  min-width: 44px;
  padding: 0.7rem 0.85rem;
  display: inline-flex;
  align-items: center;
}

nav[aria-label="Primary"] a[aria-current="page"] {
  box-shadow: inset 0 -2px 0 var(--seal);
}

.hero,
.section {
  padding-block: clamp(2.5rem, 6vw, 4.5rem);
}

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

.kicker {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--seal);
  font-weight: 700;
  margin: 0 0 0.8rem;
}

.lede {
  font-size: 1.2rem;
  max-width: var(--measure);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  min-width: 44px;
  padding: 0.7rem 1.1rem;
  text-decoration: none;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
}

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

.grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
}

.card,
.sheet {
  background: var(--sheet);
  border: 1px solid var(--rule);
  padding: 1.15rem 1.2rem;
}

.sheet {
  max-width: 52rem;
}

code,
pre {
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 0.92em;
  color: var(--code);
}

pre {
  overflow: auto;
  background: #efe8d8;
  border: 1px solid var(--rule);
  padding: 1rem;
  line-height: 1.45;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--sheet);
}

th,
td {
  text-align: left;
  vertical-align: top;
  padding: 0.75rem 0.8rem;
  border-bottom: 1px solid var(--rule);
}

th {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.note {
  border-left: 3px solid var(--ok);
  padding: 0.2rem 0 0.2rem 1rem;
  max-width: var(--measure);
}

footer {
  border-top: 1px solid var(--rule);
  padding-block: 2rem 3rem;
  color: var(--muted);
  font-size: 0.95rem;
}

footer p {
  color: var(--muted);
  max-width: 52rem;
}

.hosts {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  margin-top: 1.5rem;
}

.hosts p {
  margin: 0.35rem 0 0;
}

@media (max-width: 40rem) {
  nav[aria-label="Primary"] {
    width: 100%;
  }

  nav[aria-label="Primary"] a {
    flex: 1 1 auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

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

.table-wrap {
  overflow: auto;
}

.promise-grid {
  margin-top: 1.5rem;
}

table caption.kicker {
  text-align: left;
  margin-bottom: 0.6rem;
}
