:root {
  --ink: #141414;
  --muted: #5c625d;
  --paper: #fffaf1;
  --cream: #f3e7d5;
  --sun: #f7b512;
  --orange: #f25b22;
  --teal: #5aa995;
  --blue: #438fc2;
  --sand: #dfc3a1;
  --mint: #d9e9e2;
  --shadow: 0 20px 60px rgba(23, 20, 16, .15);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 20%, rgba(247, 181, 18, .1), transparent 24rem),
    radial-gradient(circle at 92% 46%, rgba(90, 169, 149, .13), transparent 24rem),
    var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

.hero {
  position: relative;
  min-height: min(720px, 74svh);
  color: #fff;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(7, 16, 18, .88) 0%, rgba(7, 16, 18, .56) 40%, rgba(7, 16, 18, .1) 75%),
    linear-gradient(180deg, rgba(7, 16, 18, .22), rgba(7, 16, 18, .5)),
    url("assets/images/hero-banner.jpg") center / cover;
}

.hero::after {
  content: "";
  position: absolute;
  left: -4%;
  right: -4%;
  bottom: -1px;
  height: 50px;
  z-index: 2;
  background: linear-gradient(172deg, transparent 0 46%, var(--paper) 47% 100%);
}

.topbar {
  position: relative;
  z-index: 3;
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 184px;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background: rgba(255, 255, 255, .12);
}

.brand strong {
  display: block;
  font-family: Caveat, cursive;
  font-size: 1.9rem;
  line-height: .8;
}

.brand small {
  display: block;
  margin-top: 6px;
  color: var(--sun);
  font-family: Caveat, cursive;
  font-size: 1.2rem;
  line-height: .85;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2.5vw, 32px);
  flex: 1;
  font-size: .92rem;
  color: rgba(255, 255, 255, .9);
}

.topbar .mobile-nav {
  display: none !important;
}

.thought-bubble {
  display: inline-grid;
  min-width: 138px;
  min-height: 64px;
  place-items: center;
  padding: 10px 18px;
  border-radius: 50%;
  color: #fff;
  background: #0d0d0d;
  font-family: Caveat, cursive;
  font-size: 1.28rem;
  font-weight: 700;
  line-height: .95;
  text-align: center;
  transform: rotate(-3deg);
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
  padding-top: clamp(72px, 12vh, 124px);
}

.eyebrow,
.label {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: Caveat, cursive;
  font-size: clamp(4rem, 8vw, 7.5rem);
  line-height: .82;
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
  color: var(--sun);
}

.brush-line {
  width: min(520px, 86vw);
  height: 15px;
  margin: 14px 0 24px;
  border-radius: 999px;
  background: var(--sun);
  transform: rotate(-1.5deg);
  clip-path: polygon(0 38%, 10% 25%, 24% 42%, 39% 26%, 57% 40%, 73% 29%, 100% 44%, 100% 66%, 78% 57%, 60% 72%, 42% 58%, 25% 73%, 12% 55%, 0 70%);
}

.brush-line.small {
  width: min(330px, 80vw);
  margin-top: 6px;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 535px;
  margin: 0 0 26px;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.white-cta,
.black-cta,
.clear-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 52px;
  border-radius: 999px;
  font-weight: 800;
}

.white-cta {
  padding: 11px 22px 11px 26px;
  color: var(--ink);
  background: #fff;
  font-family: Caveat, cursive;
  font-size: 1.42rem;
}

.clear-cta {
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, .52);
  color: #fff;
}

.black-cta {
  padding: 11px 22px;
  color: #fff;
  background: #0b0b0b;
  font-family: Caveat, cursive;
  font-size: 1.35rem;
}

main {
  position: relative;
  z-index: 4;
}

.doors {
  width: min(1080px, calc(100% - 44px));
  margin: 0 auto;
  padding: 30px 0 36px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.door {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 12px;
  align-items: start;
}

.door img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.door h2 {
  margin: 0 0 5px;
  font-family: Caveat, cursive;
  font-size: 2rem;
  line-height: .92;
}

.door p {
  margin: 0;
  font-size: .9rem;
}

.door i {
  display: block;
  width: 48px;
  height: 4px;
  margin-top: 8px;
  border-radius: 99px;
  background: var(--orange);
  transform: rotate(-3deg);
}

.door:nth-child(2) i { background: var(--teal); }
.door:nth-child(3) i { background: var(--sun); }
.door:nth-child(4) i { background: var(--blue); }
.door:nth-child(5) i { background: var(--sand); }

.feature-grid,
.programme-section,
.voices-band,
.story-row,
.share-band,
.books-section,
.community-row,
.about-section {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto 34px;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.5fr .92fr;
  gap: 30px;
  align-items: stretch;
}

.programme-section {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 30px;
  align-items: center;
  padding: 34px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 8% 20%, rgba(247, 181, 18, .22), transparent 18rem),
    linear-gradient(135deg, #dcebe5, #fff6e7 62%, #f4dcc0);
  box-shadow: 0 16px 44px rgba(28, 24, 18, .1);
}

.programme-copy h2 {
  margin: 0 0 18px;
  font-family: Caveat, cursive;
  font-size: clamp(3.4rem, 6.4vw, 5.6rem);
  line-height: .86;
  letter-spacing: 0;
}

.programme-copy .big {
  max-width: 560px;
  color: #27312d;
}

.programme-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 20px;
}

.programme-meta span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 8px 22px rgba(28, 24, 18, .08);
  font-size: .86rem;
  font-weight: 800;
}

.programme-includes {
  display: grid;
  gap: 8px;
  max-width: 560px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.programme-includes li {
  position: relative;
  padding-left: 22px;
  color: #27312d;
  font-size: .95rem;
  font-weight: 600;
}

.programme-includes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .58em;
  width: 10px;
  height: 4px;
  border-radius: 999px;
  background: var(--orange);
  transform: rotate(-8deg);
}

.countdown {
  width: min(100%, 520px);
  margin: 0 0 20px;
  padding: 14px;
  border: 1px solid rgba(20, 20, 20, .08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .74);
  box-shadow: 0 12px 30px rgba(28, 24, 18, .08);
}

.countdown-label {
  display: block;
  margin-bottom: 10px;
  color: var(--orange);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.countdown-grid span {
  display: grid;
  place-items: center;
  min-height: 70px;
  padding: 10px 6px;
  border-radius: 6px;
  background: #101815;
  color: #fff;
}

.countdown-grid strong {
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1;
}

.countdown-grid small {
  margin-top: 5px;
  color: rgba(255, 255, 255, .72);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.programme-section > img {
  width: 100%;
  max-height: 390px;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.episode-card {
  min-height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #111;
}

.episode-card > img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.episode-card::after {
  content: "";
  display: none;
}

.episode-text {
  position: relative;
  z-index: 2;
  max-width: none;
  padding: clamp(28px, 5vw, 54px);
  color: #fff;
  background:
    radial-gradient(circle at 90% 15%, rgba(247, 181, 18, .14), transparent 18rem),
    linear-gradient(135deg, #12100d, #1b1712);
}

.episode-text h2 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.04;
}

.big {
  margin: 0 0 18px;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
}

.spotify-embed {
  display: block;
  max-width: 560px;
  margin: 0 0 18px;
  border: 0;
  background: rgba(255, 255, 255, .08);
}

.play-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: Caveat, cursive;
  font-size: 1.4rem;
  font-weight: 700;
}

.play-link span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  color: #111;
  background: var(--sun);
  font-family: Inter, sans-serif;
  font-size: .95rem;
}

.note-card {
  position: relative;
  min-height: 300px;
  padding: 44px 34px 30px;
  border-radius: var(--radius);
  background: #f3e4cf;
  box-shadow: var(--shadow);
  text-align: center;
  transform: rotate(-1deg);
}

.note-card::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 28px;
  width: 74px;
  height: 28px;
  background: rgba(0, 0, 0, .86);
  transform: rotate(-12deg);
}

.note-card blockquote {
  margin: 28px 0 10px;
  font-family: Caveat, cursive;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: .96;
}

mark {
  padding: 0 .12em;
  background: linear-gradient(transparent 34%, rgba(247, 181, 18, .68) 34% 82%, transparent 82%);
}

.heart {
  font-size: 2.3rem;
}

.voices-band {
  display: grid;
  grid-template-columns: 1.42fr .92fr;
  gap: 28px;
  align-items: end;
}

.voices-band h2,
.share-band h2,
.books-copy h2,
.story-copy h2,
.community-card h2,
.about-card h2 {
  margin: 0 0 18px;
  font-family: Caveat, cursive;
  font-size: clamp(3rem, 5.6vw, 4.7rem);
  line-height: .9;
  letter-spacing: 0;
}

.voice-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.voice-grid article {
  min-height: 150px;
  padding: 20px 18px;
  border-radius: var(--radius);
  background: #f4e5cf;
  box-shadow: 0 14px 34px rgba(28, 24, 18, .1);
  font-family: Caveat, cursive;
  font-size: 1.28rem;
  font-weight: 700;
  line-height: 1.22;
}

.voice-grid article:nth-child(2) { background: #dce9df; }
.voice-grid article:nth-child(3) { background: #efdcc2; }
.voice-grid article:nth-child(4) { background: #f5d5bb; }

.voice-grid b {
  display: block;
  font-family: Inter, sans-serif;
  font-size: 3rem;
  line-height: .45;
}

.voice-grid span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-family: Inter, sans-serif;
  font-size: .75rem;
  font-weight: 700;
}

.text-link {
  display: inline-flex;
  width: max-content;
  margin-top: 18px;
  border-bottom: 4px solid var(--sun);
  font-weight: 800;
}

.voices-photo,
.story-row > img,
.community-row > img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
}

.voices-photo {
  min-height: 312px;
  height: 100%;
}

.story-row {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 34px;
  align-items: center;
  padding: 32px 0;
}

.story-row.reverse {
  grid-template-columns: 1.05fr .95fr;
}

.story-row.reverse img {
  order: 2;
}

.story-row > img {
  max-height: 360px;
  aspect-ratio: 16 / 10;
}

.story-copy p {
  max-width: 570px;
  color: var(--muted);
  font-size: 1.03rem;
}

.story-copy.paper {
  padding: 34px;
  border-radius: var(--radius);
  background: #fffdf8;
  box-shadow: var(--shadow);
}

.meta {
  color: var(--orange) !important;
  font-weight: 800;
}

.share-band {
  min-height: 220px;
  display: grid;
  grid-template-columns: 1.02fr .9fr .7fr;
  gap: 28px;
  align-items: center;
  padding: 30px 34px;
  border-radius: var(--radius);
  background: linear-gradient(115deg, #fffaf1, #f2e4cf);
  box-shadow: 0 16px 40px rgba(28, 24, 18, .08);
}

.share-band p {
  margin: 0 0 18px;
}

.share-band img {
  width: 100%;
  max-height: 170px;
  border-radius: var(--radius);
  object-fit: cover;
}

.books-section {
  display: grid;
  grid-template-columns: .9fr 1.3fr;
  gap: 28px;
  align-items: center;
  padding: 36px 0;
}

.books-copy p {
  max-width: 460px;
  color: var(--muted);
}

.book-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: end;
}

.book-card {
  padding: 12px;
  border-radius: var(--radius);
  background: #fffdf8;
  box-shadow: 0 12px 30px rgba(28, 24, 18, .11);
  transform: rotate(-1deg);
}

.book-card.featured {
  transform: translateY(-14px) rotate(1deg);
}

.book-card:nth-child(3) {
  transform: rotate(.8deg);
}

.book-card img {
  width: 100%;
  max-height: 210px;
  aspect-ratio: 2 / 3;
  border-radius: 6px;
  object-fit: cover;
}

.book-card h3 {
  margin: 10px 0 0;
  font-size: .92rem;
  line-height: 1.2;
}

.community-row {
  display: grid;
  grid-template-columns: 1.3fr .72fr;
  gap: 24px;
  align-items: center;
}

.community-row > img {
  max-height: 280px;
  aspect-ratio: 16 / 7;
}

.community-card {
  min-height: 220px;
  padding: 28px 26px;
  border-radius: var(--radius);
  background: linear-gradient(140deg, #d8e9e3, #f5eee0);
  box-shadow: 0 16px 40px rgba(28, 24, 18, .08);
}

.community-card p {
  margin: 0;
  line-height: 1.45;
}

.about-section {
  padding: 34px 0 42px;
}

.about-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 30px;
  align-items: center;
  width: min(820px, 100%);
  margin: 0 auto;
  padding: 24px;
  border-radius: var(--radius);
  background: #fffdf8;
  box-shadow: var(--shadow);
}

.about-card > img {
  width: 100%;
  max-width: 260px;
  height: 300px;
  border-radius: var(--radius);
  object-fit: cover;
  object-position: center;
}

.about-card p {
  max-width: 490px;
  color: var(--muted);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding: 44px 5vw;
  color: #fff;
  background: #101815;
}

.footer h2 {
  margin: 0 0 8px;
  font-family: Caveat, cursive;
  font-size: 2.8rem;
  line-height: .9;
}

.footer p {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, .78);
}

.footer small {
  color: rgba(255, 255, 255, .55);
}

.footer-links {
  display: grid;
  gap: 10px;
  align-content: start;
  font-weight: 700;
}

.subpage-hero {
  position: relative;
  min-height: 560px;
  color: #fff;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(7, 16, 18, .88), rgba(7, 16, 18, .52) 48%, rgba(7, 16, 18, .18)),
    url("assets/images/podcast-host.jpg") center / cover;
}

.subpage-hero-media {
  display: none;
}

.subpage-hero-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.subpage-hero::after {
  content: "";
  position: absolute;
  left: -4%;
  right: -4%;
  bottom: -1px;
  height: 46px;
  z-index: 2;
  background: linear-gradient(172deg, transparent 0 46%, var(--paper) 47% 100%);
}

.subpage-copy {
  position: relative;
  z-index: 3;
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
  padding-top: clamp(88px, 13vh, 132px);
}

.subpage-copy h1 {
  max-width: 760px;
  margin: 0;
  font-family: Caveat, cursive;
  font-size: clamp(3.4rem, 5.5vw, 5.35rem);
  line-height: .86;
  letter-spacing: 0;
}

.subpage-copy > p:not(.eyebrow) {
  max-width: 600px;
  margin: 0 0 24px;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
}

.podcast-intro,
.latest-podcast,
.episode-archive,
.podcast-share {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto 34px;
}

.podcast-intro {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  align-items: end;
  padding: 32px 0 10px;
}

.podcast-intro h2,
.archive-heading h2,
.podcast-share h2 {
  margin: 0;
  font-family: Caveat, cursive;
  font-size: clamp(3rem, 5.6vw, 4.7rem);
  line-height: .9;
}

.podcast-intro > p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.loading-card,
.latest-podcast-card,
.episode-list-card,
.podcast-share {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.loading-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 28px;
  background: #fffdf8;
  color: var(--muted);
  font-weight: 700;
}

.loader-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 8px rgba(242, 91, 34, .12);
}

.latest-podcast-card {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  overflow: hidden;
  background: #111;
}

.latest-podcast-card > img {
  width: 100%;
  height: 100%;
  min-height: 410px;
  object-fit: cover;
}

.latest-podcast-card > div {
  padding: clamp(28px, 5vw, 52px);
  color: #fff;
  background:
    radial-gradient(circle at 92% 12%, rgba(247, 181, 18, .16), transparent 18rem),
    linear-gradient(135deg, #12100d, #1b1712);
}

.latest-podcast-card h2 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  line-height: 1.02;
}

.episode-date {
  margin: 0 0 10px;
  color: var(--orange);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.latest-podcast-card audio,
.episode-list-card audio {
  width: 100%;
  margin: 12px 0 16px;
}

.archive-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.episodes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.episode-list-card {
  display: flex;
  flex-direction: column;
  min-height: 300px;
  padding: 24px;
  background: #fffdf8;
}

.episode-list-card:nth-child(3n + 2) {
  background: #dce9df;
}

.episode-list-card:nth-child(3n + 3) {
  background: #f3e4cf;
}

.episode-list-card h3 {
  margin: 0 0 12px;
  font-size: 1.28rem;
  line-height: 1.16;
}

.episode-list-card p:not(.episode-date) {
  margin: 0 0 16px;
  color: #303833;
  font-size: .94rem;
}

.episode-list-card .text-link {
  margin-top: auto;
}

.podcast-share {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 34px;
  background: linear-gradient(140deg, #d8e9e3, #f5eee0);
}

.podcast-share p {
  margin: 0;
  color: var(--muted);
}

.compass-hero {
  background:
    linear-gradient(90deg, rgba(7, 16, 18, .86), rgba(7, 16, 18, .42) 46%, rgba(7, 16, 18, .12)),
    url("assets/images/resilient-compass.jpg") center / cover;
}

.compass-copy h1 {
  max-width: 850px;
}

.compass-intro,
.compass-map,
.compass-fit,
.journey-section,
.programme-details,
.compass-note {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto 34px;
}

.compass-intro {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: end;
  padding: 32px 0 8px;
}

.compass-intro h2,
.fit-card h2,
.journey-section h2,
.detail-panel h2,
.register-panel h2,
.compass-note h2 {
  margin: 0 0 16px;
  font-family: Caveat, cursive;
  font-size: clamp(3rem, 5.6vw, 4.7rem);
  line-height: .9;
}

.compass-intro > p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.compass-map {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.compass-map article,
.fit-card,
.journey-grid article,
.detail-panel,
.register-panel,
.compass-note {
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(28, 24, 18, .1);
}

.compass-map article {
  min-height: 190px;
  padding: 22px;
  background: #fffdf8;
}

.compass-map article:nth-child(2) {
  background: #dce9df;
}

.compass-map article:nth-child(3) {
  background: #f3e4cf;
}

.compass-map article:nth-child(4) {
  background: #f5d5bb;
}

.compass-map span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 11px;
  border-radius: 999px;
  color: #fff;
  background: #101815;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.compass-map h3,
.journey-grid h3 {
  margin: 0 0 8px;
  font-size: 1.22rem;
  line-height: 1.14;
}

.compass-map p,
.journey-grid p {
  margin: 0;
  color: #303833;
  font-size: .94rem;
}

.compass-fit {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  align-items: center;
  padding: 28px 0;
}

.fit-card {
  padding: 32px;
  background: #fffdf8;
}

.fit-card p,
.detail-panel p,
.register-panel p,
.compass-note p {
  color: var(--muted);
}

.fit-card ul,
.detail-panel ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.fit-card li,
.detail-panel li {
  position: relative;
  padding-left: 22px;
  font-weight: 600;
}

.fit-card li::before,
.detail-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .58em;
  width: 10px;
  height: 4px;
  border-radius: 999px;
  background: var(--orange);
  transform: rotate(-8deg);
}

.compass-fit img {
  width: 100%;
  max-height: 430px;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.journey-section {
  padding: 34px;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 250, 241, .9), rgba(243, 231, 213, .78)),
    repeating-linear-gradient(0deg, transparent 0 38px, rgba(20, 20, 20, .035) 39px 40px);
  box-shadow: 0 16px 44px rgba(28, 24, 18, .09);
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 26px 24px;
  align-items: stretch;
  counter-reset: journey;
}

.journey-grid article {
  position: relative;
  min-height: 205px;
  padding: 24px 18px 20px;
  background: #fff1bd;
  transform: rotate(-1.5deg);
}

.journey-grid article::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 50%;
  width: 64px;
  height: 24px;
  background: rgba(16, 24, 21, .78);
  transform: translateX(-50%) rotate(-4deg);
  opacity: .9;
}

.journey-grid article::after {
  content: "->";
  position: absolute;
  top: 50%;
  right: -25px;
  color: var(--orange);
  font-family: Caveat, cursive;
  font-size: 2rem;
  font-weight: 700;
  transform: translateY(-50%) rotate(2deg);
}

.journey-grid article:nth-child(5)::after,
.journey-grid article:nth-child(10)::after {
  content: "";
}

.journey-grid article:nth-child(2),
.journey-grid article:nth-child(7) {
  background: #dce9df;
  transform: rotate(1.2deg);
}

.journey-grid article:nth-child(3),
.journey-grid article:nth-child(8) {
  background: #f3e4cf;
  transform: rotate(-.8deg);
}

.journey-grid article:nth-child(4),
.journey-grid article:nth-child(9) {
  background: #f5d5bb;
  transform: rotate(1.6deg);
}

.journey-grid article:nth-child(5),
.journey-grid article:nth-child(10) {
  background: #d8e9f0;
  transform: rotate(-1deg);
}

.journey-grid b {
  display: grid;
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #101815;
  font-size: 1rem;
}

.journey-grid h3 {
  font-family: Caveat, cursive;
  font-size: 1.85rem;
  line-height: .95;
}

.programme-details {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 24px;
  align-items: stretch;
}

.detail-panel,
.register-panel {
  padding: 32px;
}

.detail-panel {
  background: #fffdf8;
}

.register-panel {
  background:
    radial-gradient(circle at 88% 12%, rgba(247, 181, 18, .2), transparent 16rem),
    linear-gradient(135deg, #dcebe5, #fff6e7);
}

.register-panel .countdown {
  width: 100%;
}

.compass-note {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 28px;
  align-items: center;
  padding: 30px 34px;
  background: linear-gradient(140deg, #f3e4cf, #fffdf8);
}

.compass-note p {
  margin: 0;
}

.north-hero {
  background: #071012;
}

.north-hero .subpage-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
}

.north-copy h1 {
  max-width: 680px;
}

.reading-hero {
  background:
    linear-gradient(90deg, rgba(7, 16, 18, .92), rgba(7, 16, 18, .6) 46%, rgba(7, 16, 18, .24)),
    linear-gradient(180deg, rgba(7, 16, 18, .08), rgba(7, 16, 18, .48)),
    url("assets/images/read.jpg") center / cover;
}

.reading-copy h1 {
  max-width: 760px;
}

.reading-opening,
.reading-books,
.writer-note,
.book-detail-grid,
.begin-board,
.reading-themes {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto 34px;
}

.reading-opening {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  align-items: end;
  padding: 32px 0 8px;
}

.reading-opening h2,
.reading-book-card h2,
.writer-note h2,
.book-detail h2,
.begin-board h2,
.reading-themes h2 {
  margin: 0 0 16px;
  font-family: Caveat, cursive;
  font-size: clamp(3rem, 5.6vw, 4.7rem);
  line-height: .9;
}

.reading-opening > p,
.reading-book-card p,
.writer-note p,
.book-detail p,
.begin-board .archive-heading > p,
.reading-themes p {
  color: var(--muted);
}

.reading-books {
  display: grid;
  gap: 24px;
}

.reading-book-card {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 28px;
  align-items: center;
  padding: 24px;
  border-radius: var(--radius);
  background: #fffdf8;
  box-shadow: var(--shadow);
}

.reading-book-card.featured {
  background: linear-gradient(140deg, #fff1bd, #fffdf8 58%);
  transform: rotate(-.45deg);
}

.reading-book-card img {
  width: 100%;
  max-height: 310px;
  aspect-ratio: 2 / 3;
  border-radius: 6px;
  object-fit: cover;
  box-shadow: 0 16px 34px rgba(28, 24, 18, .2);
}

.theme-line {
  font-weight: 800;
  color: var(--ink) !important;
}

.writer-note {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 28px;
  padding: 34px;
  border-radius: var(--radius);
  background:
    linear-gradient(140deg, rgba(255, 250, 241, .96), rgba(220, 233, 223, .9)),
    repeating-linear-gradient(0deg, transparent 0 38px, rgba(20, 20, 20, .035) 39px 40px);
  box-shadow: 0 16px 44px rgba(28, 24, 18, .09);
}

.book-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.book-detail {
  padding: 26px 22px;
  border-radius: var(--radius);
  background: #fffdf8;
  box-shadow: 0 14px 34px rgba(28, 24, 18, .1);
}

.book-detail:nth-child(2) {
  background: #f3e4cf;
  transform: rotate(.7deg);
}

.book-detail:nth-child(3) {
  background: #dce9df;
  transform: rotate(-.6deg);
}

.book-detail h3 {
  margin: 20px 0 8px;
  font-size: .92rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.begin-board {
  padding: 34px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 250, 241, .92), rgba(243, 231, 213, .76));
  box-shadow: 0 16px 44px rgba(28, 24, 18, .09);
}

.begin-notes {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.begin-notes article {
  min-height: 170px;
  padding: 22px 18px;
  border-radius: var(--radius);
  background: #fff1bd;
  box-shadow: 0 14px 30px rgba(28, 24, 18, .1);
  transform: rotate(-1deg);
}

.begin-notes article:nth-child(2),
.begin-notes article:nth-child(5) {
  background: #dce9df;
  transform: rotate(.8deg);
}

.begin-notes article:nth-child(3) {
  background: #f3e4cf;
}

.begin-notes article:nth-child(4) {
  background: #d8e9f0;
  transform: rotate(1deg);
}

.begin-notes span {
  display: block;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: .92rem;
}

.begin-notes strong {
  display: block;
  font-family: Caveat, cursive;
  font-size: 2rem;
  line-height: .95;
}

.reading-themes {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 28px;
  align-items: start;
}

.reading-theme-notes {
  grid-template-columns: repeat(3, 1fr);
}

.reading-theme-notes article h3 {
  margin: 0 0 10px;
  font-family: Caveat, cursive;
  font-size: 2.15rem;
  line-height: .9;
}

.reading-theme-notes article p {
  margin: 0;
  color: #303833;
  font-family: Inter, sans-serif;
  font-size: .92rem;
  font-weight: 700;
  line-height: 1.35;
}

.reading-invite h2 {
  max-width: 420px;
}

.brewed-hero {
  background:
    linear-gradient(90deg, rgba(7, 16, 18, .9), rgba(7, 16, 18, .58) 48%, rgba(7, 16, 18, .18)),
    linear-gradient(180deg, rgba(7, 16, 18, .08), rgba(7, 16, 18, .52)),
    url("assets/images/brewed-fridays.jpg") center / cover;
}

.brewed-copy h1 {
  max-width: 760px;
}

.brewed-opening,
.brewed-card-row,
.session-flow,
.brewed-join {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto 34px;
}

.brewed-opening {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  align-items: end;
  padding: 32px 0 8px;
}

.brewed-opening h2,
.session-flow h2,
.brewed-join h2,
.brewed-invite h2 {
  margin: 0 0 16px;
  font-family: Caveat, cursive;
  font-size: clamp(3rem, 5.6vw, 4.7rem);
  line-height: .9;
}

.brewed-opening > p,
.brewed-card-row p,
.session-flow .archive-heading > p,
.brewed-join p,
.brewed-invite p {
  color: var(--muted);
}

.brewed-card-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.brewed-card-row article {
  min-height: 190px;
  padding: 26px 22px;
  border-radius: var(--radius);
  background: #fffdf8;
  box-shadow: 0 14px 34px rgba(28, 24, 18, .1);
}

.brewed-card-row article:nth-child(2) {
  background: #f3e4cf;
  transform: rotate(-.6deg);
}

.brewed-card-row article:nth-child(3) {
  background: #dce9df;
  transform: rotate(.7deg);
}

.brewed-card-row h3,
.flow-notes h3 {
  margin: 0 0 10px;
  font-family: Caveat, cursive;
  font-size: 2.2rem;
  line-height: .92;
}

.session-flow {
  padding: 34px;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 250, 241, .92), rgba(243, 231, 213, .76)),
    repeating-linear-gradient(0deg, transparent 0 38px, rgba(20, 20, 20, .035) 39px 40px);
  box-shadow: 0 16px 44px rgba(28, 24, 18, .09);
}

.flow-notes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.flow-notes article {
  position: relative;
  min-height: 190px;
  padding: 24px 18px 20px;
  border-radius: var(--radius);
  background: #fff1bd;
  box-shadow: 0 14px 34px rgba(28, 24, 18, .1);
  transform: rotate(-1deg);
}

.flow-notes article:nth-child(2) {
  background: #dce9df;
  transform: rotate(.8deg);
}

.flow-notes article:nth-child(3) {
  background: #f3e4cf;
  transform: rotate(-.5deg);
}

.flow-notes article:nth-child(4) {
  background: #d8e9f0;
  transform: rotate(.7deg);
}

.flow-notes b {
  display: grid;
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #101815;
}

.flow-notes p {
  margin: 0;
  color: #303833;
}

.brewed-join {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 28px;
  align-items: center;
}

.join-note {
  padding: 30px;
  border-radius: var(--radius);
  background: linear-gradient(140deg, #fff1bd, #fffdf8);
  box-shadow: var(--shadow);
  transform: rotate(-1deg);
}

.join-note p {
  margin: 0 0 22px;
  color: var(--ink);
  font-family: Caveat, cursive;
  font-size: clamp(2.1rem, 4vw, 3rem);
  font-weight: 700;
  line-height: .95;
}

.brewed-invite h2 {
  max-width: 430px;
}

.about-hero {
  background:
    linear-gradient(90deg, rgba(7, 16, 18, .9), rgba(7, 16, 18, .58) 47%, rgba(7, 16, 18, .18)),
    linear-gradient(180deg, rgba(7, 16, 18, .08), rgba(7, 16, 18, .52)),
    url("assets/images/about-himadri.jpg") center 38% / cover;
}

.about-copy h1 {
  max-width: 720px;
}

.about-intro,
.signature-quote,
.why-elaris,
.work-board,
.belief-section,
.human-notes,
.credentials-section {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto 34px;
}

.about-intro {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 32px;
  align-items: center;
  padding: 32px 0 8px;
}

.about-intro img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.about-intro h2,
.why-elaris h2,
.work-board h2,
.belief-section h2,
.human-notes h2,
.credentials-section h2,
.about-connect h2 {
  margin: 0 0 16px;
  font-family: Caveat, cursive;
  font-size: clamp(3rem, 5.6vw, 4.7rem);
  line-height: .9;
}

.about-intro p,
.why-elaris p,
.work-board .archive-heading > p,
.belief-list p,
.credentials-section li,
.about-connect p {
  color: var(--muted);
}

.signature-quote {
  padding: 34px;
  border-radius: var(--radius);
  background: linear-gradient(140deg, #fff1bd, #fffdf8 64%);
  box-shadow: var(--shadow);
  transform: rotate(-.5deg);
}

.signature-quote p {
  max-width: 920px;
  margin: 0;
  font-family: Caveat, cursive;
  font-size: clamp(2.2rem, 4.8vw, 3.75rem);
  font-weight: 700;
  line-height: .95;
}

.why-elaris,
.belief-section,
.credentials-section {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.why-elaris p {
  margin-top: 0;
}

.work-board,
.human-notes {
  padding: 34px;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 250, 241, .92), rgba(243, 231, 213, .76)),
    repeating-linear-gradient(0deg, transparent 0 38px, rgba(20, 20, 20, .035) 39px 40px);
  box-shadow: 0 16px 44px rgba(28, 24, 18, .09);
}

.work-notes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.work-notes article {
  min-height: 210px;
  padding: 24px 18px;
  border-radius: var(--radius);
  background: #fffdf8;
  box-shadow: 0 14px 34px rgba(28, 24, 18, .1);
  transform: rotate(-1deg);
}

.work-notes article:nth-child(2) {
  background: #dce9df;
  transform: rotate(.8deg);
}

.work-notes article:nth-child(3) {
  background: #f3e4cf;
  transform: rotate(-.5deg);
}

.work-notes article:nth-child(4) {
  background: #d8e9f0;
  transform: rotate(.7deg);
}

.work-notes h3 {
  margin: 0 0 12px;
  font-family: Caveat, cursive;
  font-size: 2.1rem;
  line-height: .92;
}

.work-notes p {
  margin: 0;
  color: #303833;
}

.belief-list {
  display: grid;
  gap: 12px;
}

.belief-list p {
  margin: 0;
  padding: 16px 18px;
  border-radius: var(--radius);
  background: #fffdf8;
  box-shadow: 0 10px 24px rgba(28, 24, 18, .08);
  font-weight: 700;
}

.human-notes {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 28px;
  align-items: start;
}

.about-things {
  grid-template-columns: repeat(3, 1fr);
}

.about-things article {
  min-height: 126px;
}

.credentials-section {
  padding: 30px;
  border-radius: var(--radius);
  background: #fffdf8;
  box-shadow: 0 14px 34px rgba(28, 24, 18, .1);
}

.credentials-section ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.credentials-section li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 24px;
  font-weight: 700;
}

.credentials-section li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 12px;
  height: 5px;
  border-radius: 999px;
  background: var(--orange);
  transform: rotate(-8deg);
}

.about-connect h2 {
  max-width: 430px;
}

.talk-hero {
  background:
    linear-gradient(90deg, rgba(7, 16, 18, .9), rgba(7, 16, 18, .58) 47%, rgba(7, 16, 18, .18)),
    linear-gradient(180deg, rgba(7, 16, 18, .08), rgba(7, 16, 18, .52)),
    url("assets/images/whats-on-your-mind.jpg") center / cover;
}

.talk-copy h1 {
  max-width: 720px;
}

.talk-opening,
.talk-reasons,
.talk-expect,
.important-note {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto 34px;
}

.talk-opening,
.talk-expect,
.important-note {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 28px;
  align-items: start;
}

.talk-opening {
  padding: 32px 0 8px;
}

.talk-opening h2,
.talk-reasons h2,
.talk-expect h2,
.important-note h2,
.talk-booking h2 {
  margin: 0 0 16px;
  font-family: Caveat, cursive;
  font-size: clamp(3rem, 5.6vw, 4.7rem);
  line-height: .9;
}

.talk-opening p,
.talk-reasons .archive-heading > p,
.talk-expect p,
.important-note p,
.talk-booking p {
  color: var(--muted);
}

.talk-reasons {
  padding: 34px;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 250, 241, .92), rgba(243, 231, 213, .76)),
    repeating-linear-gradient(0deg, transparent 0 38px, rgba(20, 20, 20, .035) 39px 40px);
  box-shadow: 0 16px 44px rgba(28, 24, 18, .09);
}

.reason-notes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.reason-notes article {
  min-height: 118px;
  display: grid;
  align-items: center;
  padding: 20px 18px;
  border-radius: var(--radius);
  background: #fff1bd;
  box-shadow: 0 14px 30px rgba(28, 24, 18, .1);
  font-family: Caveat, cursive;
  font-size: 1.9rem;
  font-weight: 700;
  line-height: .95;
  transform: rotate(-1deg);
}

.reason-notes article:nth-child(2n) {
  background: #dce9df;
  transform: rotate(.8deg);
}

.reason-notes article:nth-child(3n) {
  background: #f3e4cf;
}

.expect-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.expect-cards article,
.important-note {
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(28, 24, 18, .1);
}

.expect-cards article {
  padding: 24px 20px;
  background: #fffdf8;
}

.expect-cards article:nth-child(2) {
  background: #f3e4cf;
}

.expect-cards article:nth-child(3) {
  background: #dce9df;
}

.expect-cards h3 {
  margin: 0 0 10px;
  font-family: Caveat, cursive;
  font-size: 2.2rem;
  line-height: .92;
}

.important-note {
  padding: 30px;
  background: #fffdf8;
}

.important-note h2 {
  color: #101815;
}

.talk-booking h2 {
  max-width: 430px;
}

.voices-hero {
  background:
    linear-gradient(90deg, rgba(7, 17, 17, .74), rgba(7, 17, 17, .28)),
    url("assets/images/community.jpg") center / cover;
}

.voices-copy h1 {
  max-width: 820px;
}

.voices-intro,
.voices-journal,
.himadri-note {
  width: min(1160px, calc(100% - 80px));
  margin: 0 auto 34px;
}

.voices-intro {
  display: grid;
  grid-template-columns: .9fr 1fr 1fr;
  gap: 26px;
  align-items: start;
  padding: 40px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 247, 226, .96), rgba(225, 241, 235, .8)),
    var(--paper);
  box-shadow: var(--shadow-soft);
}

.voices-intro h2,
.journal-heading h2,
.himadri-note h2 {
  margin: 0;
  font-family: Caveat, cursive;
  font-size: clamp(2.7rem, 6vw, 4.4rem);
  line-height: .94;
}

.voices-intro p,
.himadri-note p,
.voices-final p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.voices-journal {
  padding-top: 24px;
}

.voices-journal.compact {
  padding-top: 8px;
}

.journal-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.journal-heading::after {
  content: "";
  flex: 1;
  max-width: 420px;
  height: 8px;
  border-radius: 999px;
  background: var(--yellow);
  transform: rotate(-1deg);
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.journal-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.journal-card {
  position: relative;
  min-height: 300px;
  padding: 26px 22px 22px;
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 250, 238, .98), rgba(246, 226, 196, .72)),
    var(--paper);
  box-shadow: var(--shadow-soft);
  transform: rotate(-.6deg);
}

.journal-card::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  width: 58px;
  height: 22px;
  background: rgba(16, 24, 21, .16);
  transform: translateX(-50%) rotate(-4deg);
}

.journal-card:nth-child(2n) {
  background:
    linear-gradient(145deg, rgba(239, 249, 243, .98), rgba(220, 238, 229, .76)),
    var(--paper);
  transform: rotate(.5deg);
}

.journal-card:nth-child(3n) {
  background:
    linear-gradient(145deg, rgba(255, 244, 226, .98), rgba(255, 213, 181, .62)),
    var(--paper);
}

.journal-card h3 {
  margin: 0 0 14px;
  font-size: 1.05rem;
  line-height: 1.22;
}

.journal-card p {
  margin: 0;
  color: var(--ink);
  font-family: Caveat, cursive;
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  line-height: 1.12;
}

.journal-card span {
  display: inline-block;
  margin-top: 18px;
  color: var(--orange);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .76rem;
}

.himadri-note {
  display: grid;
  grid-template-columns: .9fr 1fr 1fr;
  gap: 26px;
  padding: 38px;
  border-radius: var(--radius);
  background:
    linear-gradient(120deg, rgba(239, 249, 243, .96), rgba(255, 250, 238, .98));
  box-shadow: var(--shadow-soft);
}

.voices-final {
  align-items: center;
}

.voices-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.voices-actions .white-cta {
  background: #fffaf1;
  color: var(--ink);
}

.north-opening,
.north-photo-row,
.north-gallery,
.noise-strip,
.experience-section,
.theme-board,
.daily-rhythm,
.format-section,
.outcomes-section,
.north-facilitator {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto 34px;
}

.north-opening {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: end;
  padding: 32px 0 8px;
}

.north-opening h2,
.north-note-card h2,
.experience-section h2,
.theme-board h2,
.outcomes-section h2,
.north-facilitator h2 {
  margin: 0 0 16px;
  font-family: Caveat, cursive;
  font-size: clamp(3rem, 5.6vw, 4.7rem);
  line-height: .9;
}

.north-opening > p,
.north-note-card p,
.experience-section .archive-heading > p,
.format-card p,
.outcomes-section p,
.north-facilitator p {
  color: var(--muted);
}

.north-photo-row {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 28px;
  align-items: center;
}

.north-photo-row img {
  width: 100%;
  max-height: 430px;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.north-note-card {
  padding: 32px;
  border-radius: var(--radius);
  background: #fffdf8;
  box-shadow: var(--shadow);
  transform: rotate(-1deg);
}

.noise-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.north-gallery {
  display: grid;
  grid-template-columns: .72fr .72fr 1.2fr;
  gap: 16px;
  align-items: stretch;
}

.north-gallery img {
  width: 100%;
  height: 360px;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.north-gallery img:nth-child(1) {
  object-position: center center;
}

.north-gallery img:nth-child(2) {
  object-position: center bottom;
}

.north-gallery img:nth-child(3) {
  object-position: center center;
}

.noise-strip article {
  min-height: 96px;
  display: grid;
  place-items: center;
  padding: 18px;
  border-radius: var(--radius);
  color: #fff;
  background: #101815;
  font-family: Caveat, cursive;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: .95;
  text-align: center;
  transform: rotate(-1deg);
}

.noise-strip article:nth-child(2),
.noise-strip article:nth-child(4) {
  background: var(--orange);
  transform: rotate(1deg);
}

.experience-section {
  padding: 28px 0;
}

.experience-grid,
.daily-rhythm,
.format-section {
  display: grid;
  gap: 18px;
}

.experience-grid {
  grid-template-columns: repeat(3, 1fr);
}

.experience-grid article,
.rhythm-card,
.format-card,
.outcomes-section,
.north-facilitator {
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(28, 24, 18, .1);
}

.experience-grid article {
  min-height: 185px;
  padding: 24px;
  background: #fffdf8;
}

.experience-grid article:nth-child(2),
.experience-grid article:nth-child(5) {
  background: #dce9df;
}

.experience-grid article:nth-child(3),
.experience-grid article:nth-child(6) {
  background: #f3e4cf;
}

.experience-grid h3,
.rhythm-card h3 {
  margin: 0 0 10px;
  font-family: Caveat, cursive;
  font-size: 2rem;
  line-height: .95;
}

.experience-grid p,
.rhythm-card p {
  margin: 0;
  color: #303833;
}

.theme-board {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 28px;
  align-items: start;
  padding: 34px;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 250, 241, .9), rgba(243, 231, 213, .78)),
    repeating-linear-gradient(0deg, transparent 0 38px, rgba(20, 20, 20, .035) 39px 40px);
  box-shadow: 0 16px 44px rgba(28, 24, 18, .09);
}

.theme-notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.theme-notes article {
  position: relative;
  min-height: 132px;
  padding: 24px 18px 18px;
  border-radius: var(--radius);
  background: #fff1bd;
  box-shadow: 0 14px 34px rgba(28, 24, 18, .1);
  font-family: Caveat, cursive;
  font-size: 2rem;
  font-weight: 700;
  line-height: .9;
  transform: rotate(-1deg);
}

.theme-notes article::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  width: 58px;
  height: 22px;
  background: rgba(16, 24, 21, .78);
  transform: translateX(-50%) rotate(-4deg);
}

.theme-notes article:nth-child(2),
.theme-notes article:nth-child(5) {
  background: #dce9df;
  transform: rotate(1deg);
}

.theme-notes article:nth-child(3),
.theme-notes article:nth-child(6) {
  background: #f3e4cf;
  transform: rotate(-.5deg);
}

.theme-notes span {
  display: block;
  margin-top: 10px;
  font-family: Inter, sans-serif;
  font-size: .84rem;
  font-weight: 700;
  line-height: 1.35;
}

.daily-rhythm {
  grid-template-columns: repeat(4, 1fr);
}

.rhythm-card {
  padding: 24px;
  background: #fffdf8;
}

.format-section {
  grid-template-columns: 1fr 1fr;
}

.format-card {
  padding: 30px;
  background: #fffdf8;
}

.format-card.muted {
  background: #dce9df;
}

.format-card h2 {
  margin: 0 0 12px;
  font-family: Caveat, cursive;
  font-size: clamp(3rem, 5vw, 4rem);
  line-height: .9;
}

.format-card span {
  display: block;
  margin-top: 16px;
  padding: 14px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .72);
  font-weight: 800;
}

.outcomes-section,
.north-facilitator {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 28px;
  align-items: center;
  padding: 30px 34px;
  background: #fffdf8;
}

.outcomes-section ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.outcomes-section li {
  position: relative;
  padding-left: 22px;
  font-weight: 700;
}

.outcomes-section li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .58em;
  width: 10px;
  height: 4px;
  border-radius: 999px;
  background: var(--orange);
  transform: rotate(-8deg);
}

@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .hero {
    min-height: 680px;
  }

  .doors,
  .feature-grid,
  .programme-section,
  .podcast-intro,
  .latest-podcast-card,
  .compass-intro,
  .compass-fit,
  .programme-details,
  .compass-note,
  .north-opening,
  .north-photo-row,
  .reading-opening,
  .writer-note,
  .reading-themes,
  .brewed-opening,
  .brewed-join,
  .about-intro,
  .why-elaris,
  .belief-section,
  .human-notes,
  .credentials-section,
  .talk-opening,
  .talk-expect,
  .important-note,
  .voices-intro,
  .himadri-note,
  .theme-board,
  .format-section,
  .outcomes-section,
  .north-facilitator,
  .voices-band,
  .story-row,
  .story-row.reverse,
  .share-band,
  .books-section,
  .community-row {
    grid-template-columns: 1fr;
  }

  .doors {
    grid-template-columns: repeat(2, 1fr);
  }

  .episode-text {
    background:
      radial-gradient(circle at 90% 15%, rgba(247, 181, 18, .14), transparent 18rem),
      linear-gradient(135deg, #12100d, #1b1712);
  }

  .voice-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .episodes-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .compass-map {
    grid-template-columns: 1fr;
  }

  .journey-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .noise-strip,
  .experience-grid,
  .daily-rhythm,
  .theme-notes {
    grid-template-columns: repeat(2, 1fr);
  }

  .reading-book-card {
    grid-template-columns: 170px 1fr;
  }

  .book-detail-grid {
    grid-template-columns: 1fr;
  }

  .begin-notes {
    grid-template-columns: repeat(2, 1fr);
  }

  .reading-theme-notes {
    grid-template-columns: repeat(2, 1fr);
  }

  .brewed-card-row,
  .flow-notes,
  .work-notes,
  .about-things,
  .reason-notes,
  .expect-cards,
  .journal-grid,
  .journal-grid.two {
    grid-template-columns: repeat(2, 1fr);
  }

  .journey-grid article::after {
    content: "";
  }

  .compass-map article,
  .journey-grid article {
    min-height: 0;
    padding: 22px;
  }

  .journey-grid article {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 16px;
    align-items: start;
  }

  .journey-grid b {
    margin-bottom: 0;
  }

  .journey-grid h3,
  .journey-grid p {
    grid-column: 2;
  }

  .latest-podcast-card > img {
    min-height: 320px;
    max-height: 380px;
  }

  .story-row.reverse img {
    order: initial;
  }

  .share-band img {
    max-height: 260px;
  }

  .books-section {
    align-items: start;
  }

  .about-card {
    grid-template-columns: 220px 1fr;
  }

  .about-card > img {
    max-width: 220px;
    height: 260px;
  }
}

@media (max-width: 620px) {
  .topbar,
  .hero-copy,
  .doors,
  .feature-grid,
  .programme-section,
  .podcast-intro,
  .latest-podcast,
  .episode-archive,
  .podcast-share,
  .compass-intro,
  .compass-map,
  .compass-fit,
  .journey-section,
  .programme-details,
  .compass-note,
  .north-opening,
  .north-photo-row,
  .reading-opening,
  .reading-books,
  .writer-note,
  .book-detail-grid,
  .begin-board,
  .reading-themes,
  .brewed-opening,
  .brewed-card-row,
  .session-flow,
  .brewed-join,
  .about-intro,
  .signature-quote,
  .why-elaris,
  .work-board,
  .belief-section,
  .human-notes,
  .credentials-section,
  .talk-opening,
  .talk-reasons,
  .talk-expect,
  .important-note,
  .voices-intro,
  .voices-journal,
  .himadri-note,
  .noise-strip,
  .experience-section,
  .theme-board,
  .daily-rhythm,
  .format-section,
  .outcomes-section,
  .north-facilitator,
  .subpage-copy,
  .voices-band,
  .story-row,
  .share-band,
  .books-section,
  .community-row,
  .about-section {
    width: calc(100% - 28px);
    max-width: 1160px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero {
    min-height: 820px;
    background:
      linear-gradient(180deg, rgba(7, 16, 18, .1) 0%, rgba(7, 16, 18, .54) 46%, rgba(7, 16, 18, .86) 100%),
      url("assets/images/hero-banner-mobile.jpg") center top / cover;
  }

  .topbar {
    position: absolute;
    top: 14px;
    left: 14px;
    right: 14px;
    z-index: 5;
    width: auto;
    padding: 0;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 10px;
  }

  .subpage-hero {
    min-height: 700px;
    background-position: center top;
  }

  .subpage-copy {
    padding-top: 285px;
  }

  .subpage-copy h1 {
    max-width: 320px;
    font-size: clamp(2.35rem, 10.2vw, 3.05rem);
    line-height: .96;
  }

  .compass-copy h1 {
    max-width: 350px;
    font-size: clamp(2.75rem, 12vw, 3.5rem);
  }

  .podcast-intro {
    padding-top: 26px;
  }

  .archive-heading,
  .podcast-share {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .compass-map,
  .journey-grid,
  .noise-strip,
  .north-gallery,
  .experience-grid,
  .theme-notes,
  .daily-rhythm {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .compass-intro,
  .compass-fit,
  .journey-section,
  .programme-details,
  .north-opening,
  .experience-section {
    padding-top: 24px;
  }

  .compass-intro h2,
  .fit-card h2,
  .journey-section h2,
  .detail-panel h2,
  .register-panel h2,
  .compass-note h2 {
    font-family: Caveat, cursive;
    font-size: clamp(2.65rem, 12vw, 3.4rem);
    line-height: .92;
  }

  .compass-map article {
    display: block;
    padding: 22px 18px;
    border-radius: var(--radius);
    background: #fffdf8;
    box-shadow: 0 14px 34px rgba(28, 24, 18, .1);
  }

  .compass-map article:nth-child(2) {
    background: #dce9df;
  }

  .compass-map article:nth-child(3) {
    background: #f3e4cf;
  }

  .compass-map article:nth-child(4) {
    background: #f5d5bb;
  }

  .compass-map span {
    display: inline-flex;
    margin-bottom: 10px;
    padding: 7px 11px;
    border-radius: 999px;
    color: #fff;
    background: #101815;
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
  }

  .latest-podcast-card > img {
    min-height: 0;
    height: 260px;
  }

  .latest-podcast-card > div,
  .episode-list-card,
  .podcast-share,
  .fit-card,
  .detail-panel,
  .register-panel,
  .compass-note,
  .north-note-card,
  .theme-board,
  .format-card,
  .outcomes-section,
  .north-facilitator {
    padding: 24px 20px;
  }

  .compass-fit img {
    max-height: 260px;
  }

  .north-photo-row img {
    max-height: 260px;
  }

  .north-gallery img {
    height: 260px;
  }

  .journey-grid article,
  .compass-map article,
  .experience-grid article,
  .theme-notes article,
  .rhythm-card {
    min-height: 0;
  }

  .north-opening h2,
  .north-note-card h2,
  .experience-section h2,
  .theme-board h2,
  .outcomes-section h2,
  .north-facilitator h2 {
    font-family: Caveat, cursive;
    font-size: clamp(2.65rem, 12vw, 3.4rem);
    line-height: .92;
  }

  .noise-strip article {
    min-height: 76px;
    font-size: 1.55rem;
  }

  .theme-board {
    gap: 20px;
  }

  .theme-notes article {
    padding: 24px 18px 18px;
  }

  .format-section,
  .outcomes-section,
  .north-facilitator,
  .reading-opening,
  .writer-note,
  .reading-themes,
  .brewed-opening,
  .brewed-join,
  .about-intro,
  .why-elaris,
  .belief-section,
  .human-notes,
  .credentials-section,
  .talk-opening,
  .talk-expect,
  .important-note,
  .voices-intro,
  .himadri-note {
    grid-template-columns: 1fr;
  }

  .reading-book-card {
    grid-template-columns: 118px 1fr;
    gap: 16px;
    padding: 18px;
  }

  .reading-book-card img {
    max-height: 180px;
  }

  .book-detail-grid,
  .begin-notes,
  .reading-theme-notes {
    grid-template-columns: 1fr;
  }

  .begin-board,
  .writer-note {
    padding: 24px 20px;
  }

  .begin-notes article {
    min-height: 0;
  }

  .brewed-card-row,
  .flow-notes {
    grid-template-columns: 1fr;
  }

  .brewed-card-row article,
  .flow-notes article {
    min-height: 0;
  }

  .session-flow {
    padding: 24px 20px;
  }

  .join-note {
    padding: 24px 20px;
  }

  .about-intro img {
    max-height: 360px;
  }

  .work-board,
  .human-notes,
  .signature-quote,
  .credentials-section {
    padding: 24px 20px;
  }

  .work-notes,
  .about-things,
  .reason-notes,
  .expect-cards,
  .journal-grid,
  .journal-grid.two {
    grid-template-columns: 1fr;
  }

  .work-notes article,
  .about-things article,
  .reason-notes article {
    min-height: 0;
  }

  .talk-reasons,
  .important-note,
  .voices-intro,
  .himadri-note {
    padding: 24px 20px;
  }

  .journal-heading {
    display: block;
  }

  .journal-heading::after {
    display: block;
    margin-top: 12px;
    max-width: 210px;
  }

  .journal-card {
    min-height: 0;
    padding: 24px 20px 22px;
    transform: none;
  }

  .journal-card:nth-child(2n),
  .journal-card:nth-child(3n) {
    transform: none;
  }

  .journal-card p {
    font-size: 1.42rem;
    line-height: 1.16;
  }

  .voices-actions {
    justify-content: flex-start;
  }

  .journey-section {
    padding: 26px 18px;
    overflow: visible;
  }

  .journey-grid {
    gap: 18px;
    overflow: visible;
  }

  .journey-grid article {
    display: block;
    height: auto;
    min-height: 0;
    overflow: visible;
    padding: 24px 18px 18px;
    border-radius: var(--radius);
    background: #fff1bd;
    box-shadow: 0 14px 34px rgba(28, 24, 18, .1);
    transform: rotate(-.8deg);
  }

  .journey-grid article::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 50%;
    width: 58px;
    height: 22px;
    background: rgba(16, 24, 21, .78);
    transform: translateX(-50%) rotate(-4deg);
  }

  .journey-grid article::after {
    content: "";
  }

  .journey-grid article:nth-child(even) {
    transform: rotate(.8deg);
  }

  .journey-grid h3 {
    grid-column: auto;
    font-family: Caveat, cursive;
    font-size: 1.8rem;
    line-height: .96;
  }

  .journey-grid p {
    grid-column: auto;
  }

  .brand {
    flex: 0 1 auto;
    min-width: 0;
    max-width: 150px;
    padding: 8px 9px;
    border-radius: 999px;
    background: rgba(255, 250, 241, .86);
    color: var(--ink);
    backdrop-filter: blur(10px);
  }

  .brand img {
    width: 30px;
    height: 30px;
  }

  .brand strong {
    font-family: Inter, system-ui, sans-serif;
    font-size: .85rem;
    line-height: 1.05;
  }

  .brand small {
    margin-top: 1px;
    font-size: .82rem;
    color: var(--orange);
  }

  .thought-bubble {
    min-width: 94px;
    min-height: 46px;
    padding: 7px 10px;
    font-size: .98rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .18);
  }

  .topbar .mobile-nav {
    order: 3;
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    gap: 8px;
    overflow: visible;
    padding: 8px 9px;
    border-radius: 22px;
    background: rgba(255, 250, 241, .9);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .16);
    backdrop-filter: blur(10px);
  }

  .mobile-nav::-webkit-scrollbar {
    display: none;
  }

  .mobile-nav a {
    flex: 0 1 auto;
    padding: 8px 11px;
    border-radius: 999px;
    color: var(--ink);
    background: rgba(255, 255, 255, .64);
    font-size: .8rem;
    font-weight: 800;
    white-space: nowrap;
  }

  .hero-copy {
    padding-top: 355px;
  }

  .hero h1 {
    max-width: 350px;
    font-size: clamp(3.05rem, 13vw, 3.9rem);
    line-height: .9;
  }

  .hero-copy .eyebrow {
    max-width: 320px;
    font-size: .72rem;
    line-height: 1.45;
    letter-spacing: .13em;
  }

  .hero-copy > p:not(.eyebrow) {
    max-width: 330px;
    font-size: 1.02rem;
    line-height: 1.48;
  }

  .hero-actions {
    align-items: flex-start;
    gap: 8px;
  }

  .white-cta,
  .clear-cta {
    min-height: 44px;
  }

  .white-cta {
    padding: 9px 16px 9px 18px;
    font-size: 1.2rem;
  }

  .clear-cta {
    padding: 8px 14px;
    font-size: .95rem;
  }

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

  .episode-card {
    min-height: 0;
  }

  .episode-card > img {
    height: 260px;
  }

  .note-card,
  .share-band,
  .story-copy.paper,
  .community-card,
  .about-card {
    padding: 24px 20px;
  }

  .programme-section {
    gap: 18px;
    padding: 24px 18px 18px;
    overflow: hidden;
  }

  .programme-copy h2 {
    margin-bottom: 14px;
    font-size: clamp(2.9rem, 14vw, 3.8rem);
  }

  .programme-copy .big {
    margin-bottom: 18px;
    font-size: 1rem;
    line-height: 1.52;
  }

  .programme-meta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 18px;
  }

  .programme-meta span {
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: .9rem;
  }

  .programme-includes {
    gap: 10px;
    margin-bottom: 20px;
  }

  .programme-includes li {
    padding-left: 20px;
    font-size: .92rem;
    line-height: 1.42;
  }

  .countdown {
    margin-bottom: 20px;
    padding: 14px 12px;
  }

  .countdown-label {
    margin-bottom: 12px;
    line-height: 1.25;
  }

  .countdown-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .countdown-grid span {
    min-height: 66px;
  }

  .programme-section > img {
    max-height: 235px;
    margin-top: 2px;
    object-position: center;
  }

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

  .book-row {
    grid-template-columns: repeat(3, minmax(96px, 1fr));
    gap: 8px;
  }

  .book-card {
    padding: 8px;
  }

  .book-card img {
    max-height: 155px;
  }

  .book-card h3 {
    font-size: .72rem;
  }

  .about-card {
    grid-template-columns: 1fr;
    width: min(420px, 100%);
  }

  .about-card > img {
    width: 190px;
    max-width: 190px;
    height: 220px;
    margin: 0 auto;
  }

  .footer {
    flex-direction: column;
  }
}
