/* Artifact Summit 2027 - shared stylesheet.

   Built from the 8 page stylesheets, which were already near-identical: 227 rules in
   common and only two genuine per-page conflicts. Those two stay inline on the pages
   that need them:
     - body { padding-top: 76px }  on the five speaker pages (fixed nav)
     - .credit img { height: 46px } on Temple's page (42px everywhere else)
   Page-specific rules live in a <style> block AFTER the link to this file, so they win.

   sponsorship-prospectus.html deliberately does NOT use this sheet. Its CSS is 3.6MB of
   base64 background images, not shared design rules.

   NO BUILD STEP: bump the ?v= number in every page's <link> whenever you edit this file,
   or returning visitors will keep using a cached copy. */

:root {
  --paper: #ECE5D6;
  --paper-deep: #E2D9C4;
  --paper-dark: #1C1A14;
  --ink: #1B1913;
  --ink-soft: #4C473B;
  --ink-fade: #8A8271;
  --cream: #F5F0E4;
  --clay: #C24A22;
  --olive: #4A5A32;
  --olive-deep: #333F22;
  --line: rgba(27, 25, 19, .16);
  --ease: cubic-bezier(.19, 1, .22, 1);
  --f-disp: 'Montserrat', system-ui, sans-serif;
  --f-serif: 'Fraunces', Georgia, serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--f-disp);
  font-weight: 400;
  line-height: 1.5;
  overflow-x: hidden
}

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

a {
  color: inherit;
  text-decoration: none
}

::selection {
  background: var(--clay);
  color: var(--cream)
}

.wrap {
  width: min(1280px, 92vw);
  margin-inline: auto
}

.eyebrow {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--ink-fade)
}

.display {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -.01em;
  line-height: .98
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: .6em;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 1.05em 2em;
  border-radius: 100px;
  border: 1.5px solid var(--ink);
  transition: background .5s var(--ease), color .5s var(--ease), border-color .5s var(--ease)
}

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

.btn--clay {
  background: var(--clay);
  border-color: var(--clay);
  color: var(--cream)
}

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

.btn--light {
  border-color: var(--cream);
  color: var(--cream)
}

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

.arrow {
  transition: transform .5s var(--ease)
}

.btn:hover .arrow,
    .tlink:hover .arrow {
  transform: translateX(5px)
}

.tlink {
  display: inline-flex;
  align-items: center;
  gap: .7em;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  border-bottom: 1.5px solid var(--ink);
  padding-bottom: .4em
}

/* partner credit lockup (Temple Grandin fireside / neuromatch) */
.credit {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  flex-wrap: wrap;
  margin-top: 2.2rem;
  padding-top: 1.3rem;
  border-top: 1px solid var(--line)
}

.credit span {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--ink-fade)
}

.credit img {
  height: 42px;
  width: auto;
  display: block;
  opacity: .88;
  transition: opacity .3s var(--ease)
}

.credit a {
  display: block
}

.credit a:hover img {
  opacity: 1
}

/* recognition list (bio body) */
.cred-list {
  list-style: none;
  columns: 2;
  column-gap: 2.4rem;
  margin: 0 0 1.5rem;
  max-width: 64ch
}

.cred-list li {
  break-inside: avoid;
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: .62rem;
  font-size: .93rem;
  line-height: 1.5;
  color: var(--ink-soft)
}

.cred-list li::before {
  content: "\2726";
  position: absolute;
  left: 0;
  top: .04em;
  color: var(--clay);
  font-size: .72em
}

.reveal {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity 1s var(--ease), transform 1.1s var(--ease)
}

.reveal.in {
  opacity: 1;
  transform: none
}

.reveal[data-d="1"] {
  transition-delay: .08s
}

.reveal[data-d="2"] {
  transition-delay: .16s
}

.reveal[data-d="3"] {
  transition-delay: .24s
}

.reveal[data-d="4"] {
  transition-delay: .32s
}

/* nav */
header.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 120;
  padding: 1.5rem 0;
  transition: background .5s var(--ease), padding .5s var(--ease), box-shadow .5s var(--ease)
}

header.nav.solid {
  background: var(--paper);
  padding: .9rem 0;
  box-shadow: 0 1px 0 var(--line)
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem
}

.logo {
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .98rem;
  display: flex;
  align-items: center;
  gap: .55em;
  white-space: nowrap
}

.logo .mk {
  width: 20px;
  height: 20px;
  flex: none
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.1rem
}

.nav-links a {
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  position: relative;
  padding: .3em 0
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1.5px;
  background: var(--ink);
  transition: width .45s var(--ease)
}

.nav-links a:hover::after {
  width: 100%
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem
}

.join-sm {
  padding: .75em 1.5em;
  font-size: .68rem;
  background: var(--ink);
  color: var(--cream);
  border-radius: 100px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: background .4s var(--ease)
}

.join-sm:hover {
  background: var(--clay)
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  background: none;
  border: 0;
  cursor: pointer
}

.burger span {
  height: 2px;
  width: 100%;
  background: var(--ink);
  transition: transform .4s var(--ease), opacity .3s
}

.menu {
  position: fixed;
  inset: 0;
  z-index: 119;
  background: var(--paper-dark);
  color: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 8vw;
  transform: translateY(-100%);
  transition: transform .7s var(--ease)
}

.menu.open {
  transform: none
}

.menu a {
  font-family: var(--f-disp);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -.01em;
  font-size: clamp(2rem, 7vw, 3.4rem);
  line-height: 1.18;
  color: var(--cream);
  opacity: .85
}

.menu a:hover {
  color: var(--clay);
  opacity: 1
}

.menu .msub {
  display: flex;
  gap: 1.4rem;
  flex-wrap: wrap;
  margin-top: 2.4rem
}

.menu .msub a {
  font-size: .8rem;
  letter-spacing: .18em;
  opacity: .6
}

/* hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 80% at 70% 10%, #e8c98a 0%, #c9873f 30%, #7a5a2e 62%, #2e2a1c 100%)
}

.hero-bg img,
    .hero-bg video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .9;
  transform: scale(1.08);
  animation: heroZoom 20s ease-out forwards
}

@keyframes heroZoom {
  to {
    transform: scale(1)
  }
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 16, 10, .32) 0%, rgba(20, 16, 10, 0) 32%, rgba(20, 16, 10, .16) 55%, rgba(20, 16, 10, .76) 100%)
}

.hero-inner {
  position: relative;
  z-index: 2;
  color: var(--cream);
  padding-bottom: clamp(5.5rem, 11vw, 9rem)
}

.hero .eyebrow {
  color: rgba(245, 240, 228, .75);
  margin-bottom: 1.2rem
}

.hero .edate {
  font-size: .9rem;
  letter-spacing: .08em;
  color: rgba(245, 240, 228, .75);
  margin-bottom: 1.6rem;
  display: block
}

.hero h1 {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -.015em;
  line-height: .97;
  font-size: clamp(2.4rem, 7vw, 6.6rem);
  max-width: 16ch
}

.hero h1 em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0
}

.hero-sub {
  max-width: 44ch;
  margin-top: 1.8rem;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.65;
  color: rgba(245, 240, 228, .82)
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem 1.6rem;
  margin-top: 2.4rem;
  align-items: center
}

.scroll-hint {
  position: absolute;
  right: 6vw;
  bottom: 2.4rem;
  z-index: 2;
  color: var(--cream);
  font-size: .66rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  opacity: .75;
  display: flex;
  align-items: center;
  gap: 1rem
}

.scroll-hint::after {
  content: "";
  width: 1px;
  height: 46px;
  background: var(--cream);
  animation: hintPulse 2s var(--ease) infinite
}

@keyframes hintPulse {
  0%,
      100% {
    opacity: .3;
    transform: scaleY(.5)
  }
  50% {
    opacity: 1;
    transform: scaleY(1)
  }
}

/* marquee */
.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  padding: 1.5rem 0;
  white-space: nowrap
}

.marquee--dark {
  border-color: rgba(245, 240, 228, .16)
}

.mq-track {
  display: inline-flex;
  align-items: center;
  gap: 2.4rem;
  animation: mq 30s linear infinite;
  will-change: transform
}

.marquee:hover .mq-track {
  animation-play-state: paused
}

.mq-track .u {
  display: inline-flex;
  align-items: center;
  gap: 2.4rem
}

.mq-word {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -.01em;
  font-size: clamp(1.1rem, 2.6vw, 1.7rem)
}

.mq-star {
  color: var(--clay);
  font-size: 1.1rem;
  transform: translateY(-2px)
}

@keyframes mq {
  to {
    transform: translateX(-50%)
  }
}

.proof-line {
  text-align: center;
  padding: 2.6rem 0 3.4rem;
  font-size: clamp(1.1rem, 2.4vw, 1.5rem);
  color: var(--ink-soft);
  max-width: 44ch;
  margin-inline: auto
}

/* statement (manifesto-style) */
.statement {
  padding: clamp(5rem, 10vw, 8.5rem) 0;
  border-top: 1px solid var(--line)
}

.statement .eyebrow {
  margin-bottom: 2rem
}

.statement h2 {
  font-size: clamp(1.9rem, 4.6vw, 3.6rem);
  max-width: 22ch;
  margin-bottom: 2.2rem
}

.statement h2 .clay {
  color: var(--clay)
}

.statement h2 .olive {
  color: var(--olive)
}

.statement p.body {
  max-width: 62ch;
  color: var(--ink-soft);
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  line-height: 1.7;
  margin-bottom: 1.6rem;
  font-weight: 400
}

.bullets {
  list-style: none;
  max-width: 56ch;
  margin: 2rem 0 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem
}

.bullets li {
  display: flex;
  gap: 1em;
  font-size: 1.02rem;
  color: var(--ink-soft);
  line-height: 1.5
}

.bullets li::before {
  content: "—";
  color: var(--clay);
  font-weight: 700;
  flex: none
}

/* split */
.split {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center
}

.split.rev {
  grid-template-columns: 1.05fr 1fr
}

.split .media {
  aspect-ratio: 4/3;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(140deg, #4a5a32, #232b16)
}

.split .media img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.split .media .cap {
  position: absolute;
  left: 1.2rem;
  bottom: 1.2rem;
  color: var(--cream);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .85
}

.split h2 {
  margin-top: 1.4rem
}

/* speaker spotlight portrait mark (no photo of real person available) */
.portrait-mark {
  aspect-ratio: 4/3;
  border-radius: 6px;
  background: linear-gradient(150deg, var(--olive-deep), var(--paper-dark));
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center
}

.portrait-mark .initials {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(3.5rem, 8vw, 6rem);
  color: rgba(245, 240, 228, .92)
}

.portrait-mark .tag {
  position: absolute;
  left: 1.2rem;
  bottom: 1.2rem;
  color: var(--cream);
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  opacity: .75
}

/* dark bands */
.band {
  background: var(--paper-dark);
  color: var(--cream)
}

.band .eyebrow {
  color: rgba(245, 240, 228, .55)
}

.band .body {
  color: rgba(245, 240, 228, .72)
}

.band-inner {
  padding: clamp(5rem, 10vw, 8.5rem) 0
}

.band h2 {
  font-size: clamp(1.9rem, 4.4vw, 3.4rem);
  max-width: 24ch;
  margin-bottom: 2rem
}

.band p.body {
  max-width: 56ch;
  font-size: clamp(1rem, 1.4vw, 1.14rem);
  line-height: 1.7;
  margin-bottom: 2.2rem
}

.band .accent {
  color: var(--clay)
}

.band .sage {
  color: #a7b482
}

/* outcomes (3 numbered, order carries real meaning) */
.outcomes {
  padding: clamp(5rem, 10vw, 8rem) 0;
  border-top: 1px solid var(--line)
}

.outcomes h2 {
  font-size: clamp(1.9rem, 4.4vw, 3.4rem);
  max-width: 22ch;
  margin-bottom: 3.2rem
}

.out-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.6rem
}

.out-card .num {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--clay);
  margin-bottom: 1rem;
  display: block
}

.out-card h3 {
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: -.01em;
  margin-bottom: .7rem
}

.out-card p {
  color: var(--ink-soft);
  font-size: .98rem;
  line-height: 1.6
}

/* program scroller */
.events {
  padding: clamp(4rem, 8vw, 7rem) 0;
  border-top: 1px solid var(--line)
}

.events-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 2.6rem;
  flex-wrap: wrap
}

.events-head h2 {
  font-size: clamp(1.8rem, 4.2vw, 3.2rem)
}

.ev-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(270px, 1fr);
  gap: 1.5rem;
  overflow-x: auto;
  padding-bottom: 1.2rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none
}

.ev-scroll::-webkit-scrollbar {
  display: none
}

.ev-card {
  position: relative;
  aspect-ratio: 3/3.6;
  border-radius: 6px;
  overflow: hidden;
  scroll-snap-align: start;
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--cream)
}

.ev-card .num {
  position: absolute;
  top: 1.4rem;
  left: 1.6rem;
  font-size: .7rem;
  letter-spacing: .2em;
  opacity: .6
}

.ev-card h3 {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -.01em;
  line-height: 1.05;
  font-size: 1.35rem;
  margin-bottom: .6rem
}

.ev-card p {
  font-size: .88rem;
  line-height: 1.5;
  opacity: .85
}

.ev-card:nth-child(1) {
  background: linear-gradient(155deg, #4A5A32, #1c2211)
}

.ev-card:nth-child(2) {
  background: linear-gradient(155deg, #C24A22, #3a1a0c)
}

.ev-card:nth-child(3) {
  background: linear-gradient(155deg, #8A8271, #2b271d)
}

.ev-card:nth-child(4) {
  background: linear-gradient(155deg, #333F22, #14180d)
}

.ev-card:nth-child(5) {
  background: linear-gradient(155deg, #4C473B, #1e1c17)
}

.ev-card:nth-child(6) {
  background: linear-gradient(155deg, #7a5a2e, #241a0d)
}

/* apply / register CTA */
.apply {
  padding: clamp(5.5rem, 11vw, 9rem) 0;
  text-align: center;
  border-top: 1px solid var(--line)
}

.apply p.lead {
  font-size: clamp(1.3rem, 3.2vw, 2.2rem);
  line-height: 1.35;
  font-weight: 400;
  color: var(--ink-soft);
  margin-bottom: 2.6rem;
  max-width: 26ch;
  margin-inline: auto
}

.apply p.lead em {
  font-family: var(--f-serif);
  font-style: italic;
  color: var(--ink)
}

.apply .btn {
  font-size: .82rem;
  padding: 1.3em 3em
}

.apply-ctas {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap
}

/* register form section */
.register {
  padding: clamp(5rem, 10vw, 8.5rem) 0;
  text-align: center;
  border-top: 1px solid var(--line)
}

.register .eyebrow {
  margin-bottom: 1.6rem
}

.register h2 {
  font-size: clamp(1.9rem, 4.4vw, 3.4rem);
  max-width: 20ch;
  margin-inline: auto;
  margin-bottom: 1.6rem
}

.register p.body {
  max-width: 52ch;
  margin-inline: auto;
  color: var(--ink-soft);
  font-size: 1.06rem;
  line-height: 1.65;
  margin-bottom: 2.4rem
}

.rform {
  display: flex;
  max-width: 440px;
  margin: 0 auto;
  border: 1.5px solid var(--ink);
  border-radius: 100px;
  overflow: hidden
}

.rform input {
  flex: 1;
  background: none;
  border: 0;
  color: var(--ink);
  padding: 1em 1.4em;
  font: inherit;
  font-size: .92rem;
  outline: none
}

.rform input::placeholder {
  color: var(--ink-fade)
}

.rform button {
  background: var(--ink);
  color: var(--cream);
  border: 0;
  padding: 0 1.8em;
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .3s
}

.rform button:hover {
  background: var(--clay)
}

.rform .hp {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0
}

.helper {
  margin-top: 1.1rem;
  font-size: .8rem;
  color: var(--ink-fade);
  max-width: 34ch;
  margin-inline: auto
}

/* footer */
footer {
  background: var(--paper-dark);
  color: var(--cream);
  padding: clamp(4rem, 8vw, 6rem) 0 2.5rem
}

.foot-tag {
  max-width: 52ch;
  font-size: 1.02rem;
  line-height: 1.6;
  color: rgba(245, 240, 228, .78);
  margin: 1.2rem 0 2.6rem
}

.foot-top {
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: 2.4rem
}

.foot-logo {
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 1.15rem;
  display: flex;
  gap: .5em;
  align-items: center
}

.foot-logo .mk {
  width: 24px;
  height: 24px
}

.logo-img {
  height: 26px;
  width: auto;
  display: block
}

.foot-logo-img {
  height: 30px;
  filter: brightness(0) invert(1)
}

@media(max-width:640px) {
  .logo-img {
    height: 22px
  }
}

.foot-col h4 {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(245, 240, 228, .5);
  margin-bottom: 1.2rem
}

.foot-col a {
  display: block;
  font-size: .86rem;
  color: rgba(245, 240, 228, .82);
  padding: .35em 0;
  transition: color .3s
}

.foot-col a:hover {
  color: var(--clay)
}

.signup {
  max-width: 340px;
  margin-top: 1.6rem
}

.signup p {
  font-size: .86rem;
  color: rgba(245, 240, 228, .6);
  margin-bottom: .9rem
}

.signup form {
  display: flex;
  border: 1px solid rgba(245, 240, 228, .28);
  border-radius: 100px;
  overflow: hidden
}

.signup input {
  flex: 1;
  background: none;
  border: 0;
  color: var(--cream);
  padding: .9em 1.2em;
  font: inherit;
  font-size: .82rem;
  outline: none
}

.signup input::placeholder {
  color: rgba(245, 240, 228, .5)
}

.signup button {
  background: var(--cream);
  color: var(--ink);
  border: 0;
  padding: 0 1.4em;
  font-weight: 700;
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .3s
}

.signup button:hover {
  background: var(--clay);
  color: var(--cream)
}

/* footer social icons */
.foot-social {
  display: flex;
  align-items: center;
  gap: .3rem;
  margin-left: -10px
}

.foot-tag:has(+ .foot-social) {
  margin-bottom: 1.5rem
}

.foot-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: rgba(245, 240, 228, .6);
  transition: color .3s var(--ease)
}

.foot-social a:focus-visible {
  color: var(--clay);
  outline: 1px solid var(--clay);
  outline-offset: 2px
}

.foot-social a:hover {
  color: var(--clay)
}

.foot-social svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: currentColor
}

.foot-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 3.2rem;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(245, 240, 228, .16);
  font-size: .76rem;
  color: rgba(245, 240, 228, .55)
}

.foot-bottom .legal {
  display: flex;
  gap: 1.6rem;
  flex-wrap: wrap
}

.foot-bottom a:hover {
  color: var(--cream)
}

@media(max-width:960px) {
  .nav-links {
    display: none
  }
  .burger {
    display: flex
  }
  .foot-top {
    grid-template-columns: 1fr 1fr
  }
  .split,
      .split.rev {
    grid-template-columns: 1fr
  }
  .split .media {
    order: -1
  }
  .out-grid {
    grid-template-columns: 1fr
  }
}

@media(max-width:560px) {
  .foot-top {
    grid-template-columns: 1fr
  }
  .join-sm {
    display: none
  }
  .rform {
    flex-direction: column;
    border-radius: 16px
  }
  .rform button {
    padding: 1em
  }
}

@media(prefers-reduced-motion:reduce) {
  * {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none
  }
  .mq-track {
    animation: none
  }
  .hero-bg img {
    animation: none;
    transform: none
  }
}

.pagehead {
  padding: clamp(3.2rem, 7vw, 5.4rem) 0 clamp(1.6rem, 3vw, 2.4rem)
}

.pagehead .crumb {
  display: flex;
  gap: .6em;
  align-items: center;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-fade);
  margin-bottom: 1.8rem
}

.pagehead .crumb a:hover {
  color: var(--clay)
}

.pagehead h1 {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -.015em;
  line-height: 1;
  font-size: clamp(2.3rem, 6vw, 4.6rem);
  margin: .9rem 0 1.1rem
}

.pagehead .role {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(1.05rem, 2.2vw, 1.5rem);
  color: var(--ink-soft);
  max-width: 40ch;
  line-height: 1.4
}

.bio-split {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
  padding-bottom: clamp(4rem, 8vw, 7rem)
}

.bio-media {
  position: sticky;
  top: 110px
}

.photo-slot {
  aspect-ratio: 4/5;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(150deg, var(--olive-deep), var(--paper-dark));
  display: flex;
  align-items: center;
  justify-content: center
}

.photo-slot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover
}

.photo-slot .initials {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(4rem, 9vw, 7rem);
  color: rgba(245, 240, 228, .9);
  line-height: 1
}

.photo-slot .tag {
  position: absolute;
  left: 1.2rem;
  bottom: 1.2rem;
  color: var(--cream);
  font-size: .66rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  opacity: .6
}

/* duotone: warm bark shadows, cream highlights (design system §8) */
.photo-slot.has-photo {
  background: var(--cream);
  isolation: isolate
}

.photo-slot.has-photo img {
  filter: grayscale(1) contrast(1.08) brightness(1.02);
  mix-blend-mode: multiply
}

.photo-slot.has-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #3A2A1E;
  mix-blend-mode: lighten;
  pointer-events: none
}

.meta {
  margin-top: 1.6rem;
  border-top: 1px solid var(--line);
  padding-top: 1.4rem
}

.meta dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .55rem 1.2rem;
  font-size: .85rem
}

.meta dt {
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-fade);
  padding-top: .18em
}

.meta dd {
  color: var(--ink-soft);
  line-height: 1.45
}

.meta .tlink {
  margin-top: 1.5rem;
  font-size: .68rem
}

/* speaker affiliation lockup (organization the speaker represents) */
.affil {
  margin-top: 1.6rem;
  padding-top: 1.3rem;
  border-top: 1px solid var(--line)
}

.affil p {
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-fade);
  margin-bottom: .85rem
}

.affil a {
  display: inline-block
}

.affil img {
  height: 32px;
  width: auto;
  display: block;
  opacity: .9;
  transition: opacity .3s var(--ease)
}

.affil a:hover img {
  opacity: 1
}

.bio-body p {
  color: var(--ink-soft);
  font-size: clamp(1.02rem, 1.4vw, 1.14rem);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  max-width: 64ch
}

.bio-body p.lede {
  font-size: clamp(1.15rem, 1.9vw, 1.42rem);
  line-height: 1.6;
  color: var(--ink);
  font-weight: 400
}

/* Inline prose links.
       The global reset at the top of this sheet sets `a {
  color: inherit;
  text-decoration: none
}

` because every link elsewhere on the site is a styled
       component (.tlink, .sp-pill, .also-card, nav, footer). That leaves a plain link
       inside body copy with no affordance at all, so it needs its own rule.
       Ink text on a clay hairline: the accent carries the signal, the copy keeps its
       reading color. text-decoration (not border-bottom, as .tlink uses) so the rule
       follows a link that wraps across lines, and skip-ink keeps descenders clean. */
.bio-body p a,
    .bio-body li a,
    .meta dd a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--clay);
  text-decoration-thickness: 1.5px;
  text-underline-offset: .2em;
  text-decoration-skip-ink: auto;
  transition: color .3s var(--ease), text-decoration-thickness .3s var(--ease)
}

.bio-body p a:hover,
    .bio-body li a:hover,
    .meta dd a:hover {
  color: var(--clay);
  text-decoration-thickness: 2px
}

.bio-body p a:focus-visible,
    .bio-body li a:focus-visible,
    .meta dd a:focus-visible {
  outline: 2px solid var(--clay);
  outline-offset: 3px;
  border-radius: 2px
}

/* Word-as-word mentions -- a word being referred to rather than used.
       The HTML spec asks authors to class every <i> so the reason it is there is
       recorded and the styling can change later without touching the markup.
       Italic is the browser default for <i>; this rule is the hook. */
.bio-body .term {
  font-style: italic
}

.bio-body h2 {
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: -.01em;
  margin: 2.8rem 0 1.2rem;
  line-height: 1.15;
  max-width: 24ch
}

.bio-body h2 .clay {
  color: var(--clay)
}

.bio-body h2 .olive {
  color: var(--olive)
}

.pullquote {
  border-left: 2px solid var(--clay);
  padding: .3rem 0 .3rem 1.6rem;
  margin: 2.4rem 0;
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  line-height: 1.45;
  color: var(--ink);
  max-width: 46ch
}

.alsospeaking {
  border-top: 1px solid var(--line);
  padding: clamp(3.5rem, 7vw, 5.5rem) 0
}

.also-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  margin-top: 2rem
}

.also-card {
  display: flex;
  gap: 1.3rem;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 1.3rem 1.5rem;
  transition: border-color .4s var(--ease), background .4s var(--ease)
}

.also-card:hover {
  border-color: var(--ink);
  background: var(--paper-deep)
}

.also-card .chip {
  width: 58px;
  height: 58px;
  flex: none;
  border-radius: 100px;
  background: linear-gradient(150deg, var(--olive-deep), var(--paper-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--cream)
}

.also-card h3 {
  font-size: 1.02rem;
  text-transform: uppercase;
  letter-spacing: -.01em;
  margin-bottom: .25rem
}

.also-card p {
  font-size: .83rem;
  color: var(--ink-fade);
  line-height: 1.4
}

@media(max-width:960px) {
  .bio-split {
    grid-template-columns: 1fr
  }
  .bio-media {
    position: static;
    max-width: 420px
  }
  .also-grid {
    grid-template-columns: 1fr
  }
  .cred-list {
    columns: 1
  }
}

/* Inline prose links -- the global `a {
  color:inherit;text-decoration:none
}

/* duotone: warm bark shadows, cream highlights (design system §8).
       Scoped to .has-photo so the venue landscapes in this class stay full colour. */
.portrait-mark.has-photo {
  background: var(--cream);
  isolation: isolate
}

.portrait-mark.has-photo img {
  filter: grayscale(1) contrast(1.08) brightness(1.02);
  mix-blend-mode: multiply
}

.portrait-mark.has-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #3A2A1E;
  mix-blend-mode: lighten;
  pointer-events: none
}

/* ---- speaker roster cards ---- */
.sp-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.4rem 2.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.2rem
}

.sp-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(258px, 1fr);
  gap: 1.5rem;
  overflow-x: auto;
  padding-bottom: 1.2rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none
}

.sp-scroll::-webkit-scrollbar {
  display: none
}

.sp-card {
  position: relative;
  /* .sp-body is bottom-anchored and grows upward, so the card must be tall enough
  that a full-length text block still clears the subject's chin. 3/4.5 was not:
  at five wrapped lines the name landed on José's and Robert's mouths. This is the
  same remedy the <=860px query already used for narrow cards, now the base. */
  aspect-ratio: 3/5;
  border-radius: 6px;
  overflow: hidden;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: var(--cream);
  background: linear-gradient(150deg, var(--olive-deep), var(--paper-dark))
}

/* duotone bed: warm bark shadows, cream highlights (design system §8) */
.sp-photo {
  position: absolute;
  inset: 0;
  background: var(--cream);
  isolation: isolate;
  z-index: 0
}

.sp-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
  filter: grayscale(1) contrast(1.08) brightness(1.02);
  mix-blend-mode: multiply;
  transition: transform 1.1s var(--ease)
}

.sp-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #3A2A1E;
  mix-blend-mode: lighten
}

.sp-card:hover .sp-photo img {
  transform: scale(1.07)
}

.sp-initials {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(3rem, 7vw, 4.6rem);
  color: rgba(245, 240, 228, .92);
  z-index: 0
}

/* two-part scrim: a short cap so the top label reads on light photos,
       and a bottom ramp that is fully dark wherever the text block sits */
.sp-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
  linear-gradient(to bottom, rgba(15, 12, 7, .58) 0%, rgba(15, 12, 7, .30) 14%, rgba(15, 12, 7, 0) 30%),
  linear-gradient(to top, rgba(15, 12, 7, .94) 0%, rgba(15, 12, 7, .90) 26%, rgba(15, 12, 7, .70) 44%, rgba(15, 12, 7, .30) 62%, rgba(15, 12, 7, 0) 80%)
}

.sp-kind {
  position: absolute;
  top: 1.4rem;
  left: 1.5rem;
  z-index: 2;
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  opacity: 1
}

.sp-body {
  position: relative;
  z-index: 2
}

.sp-card h3 {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -.01em;
  line-height: 1.05;
  font-size: 1.3rem;
  margin-bottom: .5rem
}

.sp-role {
  font-size: .84rem;
  line-height: 1.45;
  opacity: .88
}

.sp-meta {
  margin-top: .7rem;
  font-size: .66rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  opacity: .72
}

/* Hard cap on the two variable-length lines. Every extra wrapped line pushes the
       speaker's name further up the photo; at five it reaches the mouth. Two each holds
       the name at ~44% of card height, which clears the chin on every portrait in the
       set. Write card copy that fits — this is the backstop, not the plan. */
.sp-role,
    .sp-meta {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden
}

/* Role gets one more line than the session note: titles like José's run long and
       matter more than the session line, which can always be reworded. Five lines total
       is the ceiling the 3/5 card is sized against. */
.sp-role {
  -webkit-line-clamp: 3;
  line-clamp: 3
}

.sp-pill {
  display: inline-flex;
  align-items: center;
  gap: .55em;
  margin-top: 1.1rem;
  padding: .62em 1.25em;
  border: 1px solid rgba(245, 240, 228, .5);
  border-radius: 100px;
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .5s var(--ease), transform .5s var(--ease), background .3s var(--ease)
}

.sp-card:hover .sp-pill,
    .sp-card:focus-within .sp-pill {
  opacity: 1;
  transform: none
}

.sp-pill:hover {
  background: rgba(245, 240, 228, .14)
}

/* whole card is the link target — oversized, clipped by the card's overflow:hidden */
.sp-link::after {
  content: "";
  position: absolute;
  inset: -60rem;
  z-index: 3
}

/* "more announced weekly" tile */
.sp-card.is-soon {
  background: none;
  border: 1px solid var(--line);
  color: var(--ink)
}

.sp-card.is-soon .sp-kind {
  color: var(--ink-fade);
  opacity: 1
}

.sp-card.is-soon .sp-role {
  color: var(--ink-soft);
  opacity: 1
}

.sp-card.is-soon .sp-pill {
  border-color: var(--line);
  color: var(--ink)
}

.sp-card.is-soon .sp-pill:hover {
  background: rgba(27, 25, 19, .06)
}

@media (max-width:860px) {
  .sp-scroll {
    grid-auto-columns: minmax(268px, 84%)
  }
}

@media (hover:none) {
  .sp-pill {
    opacity: 1;
    transform: none
  }
}

@media (prefers-reduced-motion:reduce) {
  .sp-photo img,
      .sp-pill {
    transition: none
  }
  .sp-card:hover .sp-photo img {
    transform: none
  }
  .sp-pill {
    opacity: 1;
    transform: none
  }
}

/* ===== legal / policy page ===== */
.legal-hero {
  padding: 9rem 0 3.2rem;
  border-bottom: 1px solid var(--line)
}

.legal-hero .eyebrow {
  margin-bottom: 1.1rem
}

.legal-hero h1 {
  font-family: var(--f-disp);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -.01em;
  line-height: 1;
  font-size: clamp(2.6rem, 7vw, 4.6rem)
}

.legal-hero .effective {
  display: block;
  margin-top: 1.3rem;
  font-size: .8rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-fade)
}

.legal-body {
  width: min(760px, 92vw);
  margin: 0 auto;
  padding: 3.4rem 0 5rem
}

.legal-body .intro {
  font-size: 1.12rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 1.4rem
}

.legal-body h2 {
  font-family: var(--f-disp);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .02em;
  font-size: 1.02rem;
  margin: 2.9rem 0 1rem;
  padding-top: 2.4rem;
  border-top: 1px solid var(--line)
}

.legal-body h2:first-of-type {
  border-top: 0;
  padding-top: 0
}

.legal-body h3 {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.28rem;
  margin: 1.8rem 0 .5rem;
  color: var(--ink)
}

.legal-body p {
  font-size: .98rem;
  line-height: 1.72;
  color: var(--ink-soft);
  margin-bottom: 1.1rem
}

.legal-body strong {
  color: var(--ink);
  font-weight: 600
}

.legal-body ul {
  list-style: none;
  margin: 0 0 1.3rem;
  padding: 0
}

.legal-body li {
  position: relative;
  font-size: .98rem;
  line-height: 1.66;
  color: var(--ink-soft);
  padding-left: 1.5rem;
  margin-bottom: .65rem
}

.legal-body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .66em;
  width: 6px;
  height: 6px;
  background: var(--clay);
  border-radius: 50%
}

.legal-body a {
  color: var(--clay);
  border-bottom: 1px solid rgba(194, 74, 34, .35);
  transition: border-color .3s
}

.legal-body a:hover {
  border-color: var(--clay)
}

.legal-body .addr {
  font-style: normal;
  line-height: 1.7;
  color: var(--ink-soft);
  font-size: .98rem
}

.legal-note {
  background: var(--paper-deep);
  border-radius: 8px;
  padding: 1.2rem 1.4rem;
  margin: 1.4rem 0 1.6rem;
  font-size: .92rem;
  line-height: 1.6;
  color: var(--ink-soft)
}

@media(max-width:640px) {
  .legal-hero {
    padding: 7.5rem 0 2.6rem
  }
}
