/* ABOUTME: Busan color overrides loaded after style.css to recolor the shared design. */
/* ABOUTME: Swaps the forest palette for navy sea tones, harbor rust, and warm paper. */

:root {
  --color-cream: #f5f1e8;
  --color-cream-dark: #e4ddcf;

  /* Navy replaces mountain green as the key color. */
  --color-forest: #07172b;
  --color-forest-light: #12395f;

  /* Harbor accents keep the page from becoming one-note blue. */
  --color-terracotta: #c95f3d;
  --color-terracotta-light: #e57d52;
  --color-gold: #76c4cf;
  --color-ink: #111820;
  --color-ink-light: #33404f;
  --color-stone: #6f7882;
}

.hero {
  background-image: url('/images/busan.webp');
  background-position: center 45%;
  height: 100svh;
  min-height: 0;
  padding: calc(var(--header-height) + clamp(1rem, 5svh, 3rem)) var(--space-md) clamp(1.5rem, 6svh, 4rem);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(245, 241, 232, 0.78) 0%, rgba(245, 241, 232, 0.46) 42%, rgba(7, 23, 43, 0.34) 100%),
    linear-gradient(90deg, rgba(7, 23, 43, 0.22) 0%, transparent 38%, rgba(201, 95, 61, 0.14) 100%);
  pointer-events: none;
}

.hero-texture {
  z-index: 1;
  background-image:
    radial-gradient(circle at 18% 28%, rgba(118, 196, 207, 0.16) 0%, transparent 45%),
    radial-gradient(circle at 82% 68%, rgba(201, 95, 61, 0.14) 0%, transparent 48%),
    repeating-linear-gradient(90deg, rgba(7, 23, 43, 0.08) 0 1px, transparent 1px 34px),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.34;
}

.hero-content {
  z-index: 2;
  margin-bottom: 0;
}

.hero-title {
  font-size: clamp(3rem, 10vw, 7rem);
  color: var(--color-forest);
  text-shadow: 0 2px 30px rgba(245, 241, 232, 0.5);
}

.hero-label {
  background: rgba(245, 241, 232, 0.74);
  border: 1px solid rgba(7, 23, 43, 0.12);
}

.site-header.scrolled {
  background: rgba(245, 241, 232, 0.96);
}

.cta-button {
  border-color: rgba(245, 241, 232, 0.82);
  box-shadow: 0 10px 28px rgba(7, 23, 43, 0.12);
}

.cta-button:hover {
  background: var(--color-terracotta);
  box-shadow: 0 10px 28px rgba(201, 95, 61, 0.28);
}

.layer-section-centered .layer-description {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
  line-height: 1.35;
  color: var(--color-forest);
}

.layer-image img {
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(7, 23, 43, 0.14);
}

#busan .layer-image,
#post-growth .layer-image,
#sea .layer-image {
  max-width: none;
}

#busan .layer-image img,
#post-growth .layer-image img,
#sea .layer-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.theme-section {
  background:
    linear-gradient(180deg, #07172b 0%, #0d2947 100%);
}

.proto-section {
  background: #0b2039;
  border-top: 1px solid rgba(245, 241, 232, 0.12);
}

.busan-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-sm);
  max-width: 900px;
  margin: var(--space-lg) auto 0;
}

.busan-stat {
  padding: var(--space-md);
  border: 1px solid rgba(247, 244, 237, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  text-align: left;
}

.busan-stat strong {
  display: block;
  color: var(--color-cream);
  font-family: var(--font-display);
  font-size: 1.75rem;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.busan-stat span {
  display: block;
  color: rgba(247, 244, 237, 0.72);
  font-size: var(--text-sm);
  line-height: 1.45;
}

.proto-intro {
  max-width: 760px;
  margin: 0 auto var(--space-xl);
  text-align: center;
}

.proto-lead {
  font-family: var(--font-display);
  font-size: var(--text-display-md);
  font-weight: 500;
  color: var(--color-cream);
  margin-bottom: var(--space-md);
}

.proto-subtitle {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-cream);
  margin-bottom: var(--space-xs);
}

.proto-subtitle-center {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.people-group {
  max-width: 1120px;
  margin: 0 auto;
}

.people-group-heading {
  display: grid;
  grid-template-columns: 56px minmax(150px, 0.55fr) 1fr;
  gap: var(--space-md);
  align-items: baseline;
  margin-bottom: var(--space-md);
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(245, 241, 232, 0.22);
}

.people-group-heading p {
  color: rgba(245, 241, 232, 0.62);
}

.people-index,
.person-role {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.people-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-sm);
}

.person-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(245, 241, 232, 0.16);
  border-radius: 8px;
  background: rgba(245, 241, 232, 0.055);
}

.person-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.person-card:first-child .person-photo {
  object-position: center 60%;
}

.compact-person-card .person-photo {
  object-position: center 34%;
}

.person-photo-placeholder {
  display: grid;
  place-items: center;
  background:
    linear-gradient(145deg, rgba(118, 196, 207, 0.22), rgba(7, 23, 43, 0.1)),
    repeating-linear-gradient(135deg, transparent 0 15px, rgba(245, 241, 232, 0.035) 15px 16px);
  color: rgba(245, 241, 232, 0.75);
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
}

.person-copy {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 190px;
  padding: 1.25rem;
}

.person-role {
  color: var(--color-gold);
  margin-bottom: var(--space-sm);
}

.person-copy h4 {
  color: var(--color-cream);
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 500;
  line-height: 1.05;
  margin-bottom: var(--space-sm);
}

.person-copy > p:last-of-type {
  color: rgba(245, 241, 232, 0.72);
  font-size: 0.86rem;
  line-height: 1.55;
}

.person-number {
  margin-top: auto;
  padding-top: var(--space-md);
  color: rgba(245, 241, 232, 0.3);
  font-family: var(--font-display);
  font-size: 0.9rem;
}

.open-group {
  margin-top: var(--space-xl);
}

.compact-person-card .person-copy,
.is-placeholder .person-copy {
  min-height: 145px;
}

.is-placeholder {
  border-style: dashed;
  background: rgba(245, 241, 232, 0.025);
}

.participant-callout {
  display: grid;
  grid-template-columns: 180px minmax(220px, 0.7fr) 1fr;
  gap: var(--space-md);
  align-items: baseline;
  max-width: 1120px;
  margin: var(--space-xl) auto 0;
  padding: var(--space-md);
  border: 1px dashed rgba(245, 241, 232, 0.22);
  border-radius: 8px;
}

.participant-callout h3 {
  color: var(--color-cream);
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
}

.participant-callout > p:last-child {
  color: rgba(245, 241, 232, 0.65);
}

#timeline .week-timetable thead th:not(.time-header),
#timeline .week-timetable tbody td:not(.time-cell) {
  width: calc((100% - 70px) / 5);
}

.signup-container-centered {
  text-align: center;
}

.signup-date {
  color: var(--color-stone);
  margin-bottom: var(--space-lg);
}

.theme-card {
  border-radius: 8px;
  background: rgba(245, 241, 232, 0.06);
  border-color: rgba(245, 241, 232, 0.14);
  box-shadow: inset 0 1px 0 rgba(245, 241, 232, 0.06);
}

.theme-title {
  color: var(--color-cream);
}

.theme-description,
.proto-intro {
  color: rgba(245, 241, 232, 0.76);
}

.gallery-carousel::before {
  background: linear-gradient(to left, transparent, var(--color-cream));
}

.gallery-carousel::after {
  background: linear-gradient(to right, transparent, var(--color-cream));
}

.carousel-slide,
.carousel-slide img {
  border-radius: 8px;
}

.carousel-btn {
  background: var(--color-cream-dark);
  color: var(--color-forest);
}

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

/* Recolor the timetable activity blocks from earth tones to cool
   navy-blue tints. Navy text on light sea colors, rust for meal accents. */
.week-timetable .activity.morning {
  background: #dfeaf3;
  color: var(--color-forest);
}

.week-timetable .activity.work {
  background: #bfd4e6;
  color: var(--color-forest);
}

.week-timetable .activity.meal {
  background: #f0d9ca;
  color: #7c351e;
}

.week-timetable .activity.special {
  background: #d4e7e9;
  color: var(--color-forest);
}

@media (max-width: 760px) {
  .busan-stat-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    height: 100svh;
    min-height: 0;
    background-position: center top;
    padding: calc(var(--header-height) + 0.75rem) var(--space-sm) 2rem;
  }

  .hero-title {
    font-size: clamp(2.8rem, 13vw, 4.25rem);
    letter-spacing: 0;
  }

  .layer-section-centered .layer-description {
    font-size: 1.45rem;
  }

  .people-group-heading {
    grid-template-columns: 40px 1fr;
  }

  .people-group-heading > p:last-child {
    grid-column: 2;
  }

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

  .participant-callout {
    grid-template-columns: 1fr;
  }

  .person-copy {
    min-height: 170px;
    padding: 1rem;
  }

  .person-copy > p:last-of-type {
    font-size: 0.8rem;
  }
}

@media (max-width: 440px) {
  .people-grid {
    grid-template-columns: 1fr;
  }

  .person-photo {
    aspect-ratio: 4 / 3;
  }
}

@media (max-height: 640px) {
  .hero {
    padding-top: calc(var(--header-height) + 0.5rem);
    padding-bottom: 1rem;
  }

  .hero-title {
    font-size: clamp(2.5rem, 12vw, 5.5rem);
    margin-bottom: var(--space-md);
  }
}

@media (min-width: 900px) {
  #busan .layer-image,
  #sea .layer-image {
    margin-left: -4rem;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 34%);
    mask-image: linear-gradient(to right, transparent 0%, black 34%);
  }

  #post-growth .layer-image {
    margin-right: -4rem;
    -webkit-mask-image: linear-gradient(to left, transparent 0%, black 34%);
    mask-image: linear-gradient(to left, transparent 0%, black 34%);
  }

  #busan .layer-image img,
  #post-growth .layer-image img,
  #sea .layer-image img {
    height: 340px;
  }
}

/* One Neighborhood at a Time */
.program-proof,
.village-works-section,
.neighborhoods-section,
.local-tables-section,
.journey-section,
.weekend-section,
.open-sessions-section,
.busan-people-section {
  padding: var(--space-xl) var(--space-md);
}

.program-proof {
  background: var(--color-forest);
  color: var(--color-cream);
}

.program-proof-grid,
.village-works-grid,
.voices-grid,
.session-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.program-proof-item dd {
  display: block;
  color: var(--color-cream);
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
}

.program-proof-item dt,
.section-kicker {
  color: var(--color-gold);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.program-proof-intro,
.section-lead {
  max-width: 760px;
  margin: 2rem auto 0;
  text-align: center;
}

.village-works-section,
.neighborhoods-section,
.journey-section {
  max-width: 1440px;
  margin: 0 auto;
}

.neighborhoods-heading,
.journey-heading,
.section-heading {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.village-work-card,
.session-note,
.voice-card,
.local-table-card {
  padding: 1.5rem;
  border: 1px solid var(--color-cream-dark);
  border-radius: 10px;
  background: #fffaf2;
}

.village-work-card h3,
.session-note h3,
.voice-card h3 {
  margin: .65rem 0;
  font-size: 1.5rem;
}

.neighborhoods-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr);
  gap: 2rem;
  max-width: var(--max-width);
  margin: 2.5rem auto 0;
  align-items: start;
}

.neighborhood-cards { display: block; min-width: 0; }
.neighborhood-card {
  position: relative;
  overflow: hidden;
  border: 0;
  border-top: 4px solid var(--color-forest);
  border-radius: 0;
  background: transparent;
}
.neighborhood-card[hidden] { display: none; }
.neighborhood-card.is-active { box-shadow: none; }
.neighborhood-image {
  position: relative;
  overflow: hidden;
  background: var(--color-forest);
}
.neighborhood-card img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  filter: saturate(.82) contrast(1.04);
  transition: transform .7s var(--ease-out), filter .7s var(--ease-out);
}
.neighborhood-card:hover img { transform: scale(1.018); filter: saturate(1) contrast(1.04); }
.neighborhood-image::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 52%;
  background: linear-gradient(transparent, rgba(7, 23, 43, .72));
  pointer-events: none;
}
.neighborhood-image figcaption {
  position: absolute;
  z-index: 1;
  right: 1.25rem;
  bottom: 1rem;
  left: 1.25rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(255, 253, 248, .92);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.neighborhood-image figcaption span { color: var(--color-gold); }
.neighborhood-card-content {
  padding: 1.75rem 0 0;
}
.neighborhood-card-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid rgba(7, 23, 43, .18);
}
.neighborhood-card-label {
  margin-bottom: .35rem;
  color: var(--color-terracotta);
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.neighborhood-card-heading h3 {
  max-width: 13ch;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: .95;
}
.neighborhood-days {
  flex: 0 0 auto;
  padding: .5rem .75rem;
  border: 1px solid var(--color-forest);
  color: var(--color-forest);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  line-height: 1;
  text-transform: uppercase;
}
.neighborhood-context {
  max-width: 38ch;
  padding: 1.1rem 0;
  color: var(--color-ink-light);
  font-size: .92rem;
  line-height: 1.5;
}
.neighborhood-card-details {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(250px, 1.08fr);
  border-top: 1px solid rgba(7, 23, 43, .18);
  border-bottom: 1px solid rgba(7, 23, 43, .18);
}
.neighborhood-question,
.neighborhood-rhythm {
  padding: 1.35rem 0 1.5rem;
}
.neighborhood-question {
  padding-right: 1.5rem;
  border-right: 1px solid rgba(7, 23, 43, .18);
}
.neighborhood-rhythm { padding-left: 1.5rem; }
.neighborhood-question h4,
.neighborhood-rhythm h4 {
  margin-bottom: 1rem;
  color: var(--color-stone);
  font-family: var(--font-body);
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.neighborhood-question p {
  max-width: 22ch;
  color: var(--color-forest);
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.08;
}
.neighborhood-rhythm ol { list-style: none; }
.neighborhood-rhythm li {
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr);
  gap: .75rem;
  align-items: baseline;
  padding: .55rem 0;
  border-top: 1px solid rgba(7, 23, 43, .1);
}
.neighborhood-rhythm li:first-child { padding-top: 0; border-top: 0; }
.neighborhood-rhythm li span {
  color: var(--color-terracotta);
  font-family: var(--font-display);
  font-size: .88rem;
}
.neighborhood-rhythm li p {
  max-width: 34ch;
  font-size: .84rem;
  line-height: 1.35;
}
.neighborhood-map-shell { position: sticky; top: calc(var(--header-height) + 1rem); }
.neighborhood-map { position: relative; }
#busan-neighborhood-map { width: 100%; height: min(70vh, 680px); min-height: 420px; border-radius: 12px; background: var(--color-cream-dark); }
.neighborhood-marker { width: 44px; height: 44px; border: 12px solid white; border-radius: 50%; background: var(--color-forest); box-shadow: 0 2px 10px #07172b55; }
.neighborhood-marker.is-active { background: var(--color-terracotta); transform: scale(1.25); }

.featured-table { display: grid; grid-template-columns: 1.1fr 1fr; max-width: var(--max-width); margin: 2rem auto 1rem; overflow: hidden; padding: 0; }
.featured-table img { width: 100%; height: 100%; min-height: 380px; object-fit: cover; }
.featured-table-copy, .weekend-card-copy { padding: 1.5rem; }
.pending-table-grid { max-width: var(--max-width); margin: 1rem auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.pending-table-card { padding: 1.5rem; border: 1px solid rgba(245,241,232,.18); border-radius: 10px; }
.program-image-placeholder, .option-image-placeholder { display: grid; place-items: center; min-height: 280px; padding: 1rem; text-align: center; background: linear-gradient(145deg,#234c6c,#07172b); color: rgba(255,255,255,.7); }
.program-feature-image { width: 100%; height: 100%; min-height: 360px; object-fit: cover; }
.weekend-card .program-feature-image { height: 62%; min-height: 340px; }
.temple-options img { width: 100%; aspect-ratio: 4 / 3; margin-bottom: .45rem; object-fit: cover; border-radius: 4px; }
.status-badge { display: inline-block; padding: .3rem .6rem; border: 1px dashed currentColor; border-radius: 100px; color: var(--color-terracotta); font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; }

/* Journey — week-grouped with shared rhythm band (Option A) */
.journey-legend { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.25rem; margin: 1.5rem auto 0; max-width: var(--max-width); font-size: .78rem; }
.journey-legend-item { display: flex; align-items: center; gap: .45rem; color: var(--color-ink-light); }
.journey-legend-item span { width: 11px; height: 11px; border-radius: 2px; background: var(--color-forest); }
.journey-legend-item.is-local-table span { background: var(--color-terracotta); }
.journey-legend-item.is-weekend span { background: var(--color-gold); }
.journey-legend-item.is-open span { background: transparent; border: 1.5px dashed var(--color-stone); }

.journey-week { max-width: var(--max-width); margin: 3.5rem auto 0; }
.journey-week-head {
  display: flex; align-items: baseline; flex-wrap: wrap; gap: .5rem 1rem;
  padding-bottom: 1rem; border-bottom: 2px solid var(--color-forest);
}
.journey-week-label { color: var(--color-terracotta); font-size: .72rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.journey-week-theme { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.4rem); line-height: 1; color: var(--color-forest); }
.journey-week-range { margin-left: auto; color: var(--color-stone); font-size: .85rem; letter-spacing: .04em; }

/* Weekday cards connected by a thin navy line */
.journey-weekdays {
  display: grid; grid-template-columns: repeat(var(--weekday-count, 3), minmax(0, 1fr));
  gap: 1px; margin: 1.5rem 0 0; list-style: none;
  background: rgba(7, 23, 43, .18); border: 1px solid rgba(7, 23, 43, .18); border-radius: 10px; overflow: hidden;
}
.journey-week:has(.journey-weekday:nth-child(5)) .journey-weekdays { --weekday-count: 5; }
.journey-weekday { padding: 1.1rem 1rem 1.25rem; background: #fffaf2; border-top: 4px solid var(--color-forest); }
.journey-weekday.is-local-table { border-top-color: var(--color-terracotta); }
.journey-weekday-top { display: flex; align-items: baseline; justify-content: space-between; gap: .5rem; }
.journey-weekday-day { font-family: var(--font-display); font-size: 1.15rem; color: var(--color-forest); }
.journey-weekday-num { font-size: .64rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--color-stone); }
.journey-weekday-date { margin-top: .15rem; font-size: .74rem; color: var(--color-stone); }
.journey-weekday-place { margin-top: .65rem; font-size: .64rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--color-terracotta); }
.journey-weekday-title { margin-top: .2rem; font-family: var(--font-display); font-size: 1.05rem; line-height: 1.15; color: var(--color-forest); font-weight: 500; }
.journey-weekday-tags { display: flex; flex-wrap: wrap; gap: .35rem; margin-top: .75rem; list-style: none; }
.journey-weekday-tags li { padding: .22rem .5rem; border-radius: 4px; font-size: .68rem; font-weight: 500; line-height: 1.2; }
.tag-note { background: rgba(7, 23, 43, .07); color: var(--color-ink-light); }
.tag-evening { background: var(--color-forest); color: var(--color-cream); }
.tag-evening.is-table { background: var(--color-terracotta); }

/* Shared rhythm band */
.journey-rhythm {
  margin-top: 1px; padding: 1.4rem 1.5rem 1.25rem;
  background: var(--color-forest); color: var(--color-cream); border-radius: 10px;
}
.journey-rhythm-head { display: flex; align-items: baseline; gap: .75rem; margin-bottom: 1.1rem; }
.journey-rhythm-title { font-size: .72rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--color-gold); }
.journey-rhythm-days { font-size: .72rem; letter-spacing: .08em; color: rgba(245, 241, 232, .6); }
.journey-rhythm-flow { display: flex; flex-wrap: wrap; align-items: stretch; gap: .35rem 0; list-style: none; }
.journey-rhythm-step { position: relative; display: flex; flex-direction: column; gap: .15rem; padding-right: 1.9rem; }
.journey-rhythm-time { font-size: .68rem; letter-spacing: .06em; color: var(--color-gold); }
.journey-rhythm-label { font-family: var(--font-display); font-size: 1.05rem; line-height: 1.1; }
.journey-rhythm-note { font-size: .68rem; color: rgba(245, 241, 232, .62); }
.journey-rhythm-arrow { position: absolute; top: .55rem; right: .45rem; color: rgba(118, 196, 207, .7); font-size: .9rem; }
.journey-rhythm-foot { margin-top: 1.1rem; padding-top: .9rem; border-top: 1px solid rgba(245, 241, 232, .16); font-size: .78rem; color: rgba(245, 241, 232, .72); }

/* Weekend — broken off in teal */
.journey-weekend { margin-top: 1.25rem; }
.journey-weekend-label { margin-bottom: .75rem; color: var(--color-stone); font-size: .68rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.journey-weekend-cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.journey-weekend-card {
  padding: 1.25rem 1.35rem 1.4rem; border-radius: 10px;
  background: linear-gradient(150deg, #1c5a66, #0c3540); color: var(--color-cream);
  border: 1px solid rgba(118, 196, 207, .35);
}
.journey-weekend-top { display: flex; align-items: baseline; justify-content: space-between; gap: .5rem; }
.journey-weekend-card .journey-weekday-day { color: var(--color-gold); }
.journey-weekend-card .journey-weekday-num { color: rgba(245, 241, 232, .65); }
.journey-weekend-title { margin-top: .55rem; font-family: var(--font-display); font-size: 1.4rem; line-height: 1.05; color: var(--color-cream); }
.journey-weekend-place { margin-top: .3rem; font-size: .66rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--color-gold); }
.journey-weekend-note { margin-top: .65rem; font-size: .85rem; line-height: 1.45; color: rgba(245, 241, 232, .82); }
.journey-weekend-tag { margin-top: .9rem; font-size: .68rem; letter-spacing: .06em; color: rgba(245, 241, 232, .6); }

.weekend-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; max-width: var(--max-width); margin: 2rem auto 0; }
.weekend-card { position: relative; min-height: 560px; overflow: hidden; border-radius: 12px; background: var(--color-forest); color: var(--color-cream); }
.weekend-card .program-image-placeholder { min-height: 60%; }
.weekend-card-copy h3 { color: var(--color-cream); font-size: 2rem; }
.temple-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: .5rem; margin-top: 1rem; font-size: .8rem; }

.open-sessions-section { background: #eadfce; max-width: none; }
.session-note { transform: rotate(-1deg); border-style: dashed; background: #fffdf8; }
.session-note:nth-child(even) { transform: rotate(1deg); }
.busan-people-section { background: var(--color-forest); max-width: none; color: rgba(245,241,232,.74); }
.busan-people-section .section-title, .busan-people-section h3 { color: var(--color-cream); }
.voice-card { overflow: hidden; padding: 0; background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.15); }
.voice-copy { padding: 1.5rem; }
.voice-silhouette { height: 180px; background: radial-gradient(circle at 50% 42%, #7890a4 0 15%, transparent 16%), radial-gradient(ellipse at 50% 110%, #7890a4 0 45%, transparent 46%), linear-gradient(145deg,#163d61,#07172b); }
.voice-portrait { position: relative; height: 180px; overflow: hidden; background: linear-gradient(145deg,#163d61,#07172b); }
.voice-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; filter: grayscale(.25); }
.voice-number { position: absolute; bottom: .5rem; right: .75rem; font-size: .9rem; font-weight: 700; color: rgba(255,255,255,.85); text-shadow: 0 1px 4px rgba(0,0,0,.6); letter-spacing: .05em; }
.footer-note { margin: 1rem auto; font-size: .8rem; color: var(--color-stone); }

@media (max-width: 800px) {
  .program-proof-grid, .village-works-grid, .voices-grid, .session-board { grid-template-columns: repeat(2, 1fr); }
  .neighborhoods-layout { grid-template-columns: 1fr; }
  .neighborhood-map-shell { position: static; grid-row: 1; }
  #busan-neighborhood-map { height: 240px; min-height: 240px; }
  .featured-table, .weekend-grid { grid-template-columns: 1fr; }
  .featured-table img { min-height: 260px; }
  .pending-table-grid { grid-template-columns: 1fr; }
  .journey-weekdays,
  .journey-week:has(.journey-weekday:nth-child(5)) .journey-weekdays { grid-template-columns: 1fr; }
  .journey-weekday { border-top-width: 4px; }
  .journey-rhythm-flow { flex-direction: column; gap: .85rem; }
  .journey-rhythm-step { padding-right: 0; padding-bottom: .85rem; border-bottom: 1px solid rgba(245, 241, 232, .12); }
  .journey-rhythm-step:last-child { padding-bottom: 0; border-bottom: 0; }
  .journey-rhythm-arrow { display: none; }
  .journey-weekend-cards { grid-template-columns: 1fr; }
  .journey-week-range { margin-left: 0; width: 100%; }
  .weekend-card { min-height: 520px; }
}

@media (max-width: 440px) {
  .program-proof-grid, .village-works-grid, .voices-grid, .session-board { grid-template-columns: 1fr; }
  .temple-options { grid-template-columns: 1fr; }
}

/* Field journal refinement */
.village-works-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: 3rem;
  border-top: 1px solid rgba(7, 23, 43, 0.16);
}

.village-work-card {
  display: grid;
  grid-template-columns: 4rem minmax(0, 1fr);
  column-gap: 1.25rem;
  padding: 2rem 1.5rem 2rem 0;
  border: 0;
  border-bottom: 1px solid rgba(7, 23, 43, 0.16);
  border-radius: 0;
  background: transparent;
}

.village-work-card:nth-child(odd) {
  padding-right: 2.5rem;
  border-right: 1px solid rgba(7, 23, 43, 0.16);
}

.village-work-card:nth-child(even) { padding-left: 2.5rem; }
.village-work-index { grid-row: 1 / 5; color: var(--color-terracotta); font: 500 2.5rem/1 var(--font-display); }
.village-work-card h3 { margin: 0 0 .75rem; }
.village-work-lead { font-size: 1.08rem; }
.village-work-card ul { margin-top: 1.25rem; }
.village-work-card li { padding: .55rem 0; border-top: 1px solid rgba(7, 23, 43, 0.1); }

.village-works-container { max-width: 1200px; margin: 0 auto; }
.village-works-heading { max-width: 720px; }
.village-works-heading .section-title { text-align: left; margin-bottom: .75rem; }
.village-works-heading > p:last-child { max-width: 58ch; font-size: 1.08rem; }

.day-flow {
  display: grid;
  grid-template-columns: 105px minmax(360px, 1fr) 105px minmax(210px, .55fr);
  align-items: center;
  margin: 4rem 0 3rem;
}

.day-flow-time { position: relative; z-index: 2; }
.day-flow-time span {
  display: block;
  color: var(--color-terracotta);
  font: 500 2rem/1 var(--font-display);
}
.day-flow-time strong,
.day-flow-evening strong { display: block; margin-top: .4rem; font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; }
.day-flow-end { text-align: right; }

.day-flow-track {
  position: relative;
  height: 86px;
  margin: 0 1rem;
  border-top: 1px solid rgba(7, 23, 43, .2);
  border-bottom: 1px solid rgba(7, 23, 43, .2);
  background: repeating-linear-gradient(90deg, transparent 0 calc(14.285% - 1px), rgba(7, 23, 43, .08) calc(14.285% - 1px) 14.285%);
}

.day-flow-work {
  position: absolute;
  inset: 13px 0;
  display: flex;
  align-items: center;
  padding: 0 1.25rem;
  background: var(--color-forest);
  color: var(--color-cream);
}
.day-flow-work strong { color: var(--color-cream); font-family: var(--font-display); font-size: 1.3rem; font-weight: 500; }
.day-flow-work small { margin-left: auto; color: rgba(245, 241, 232, .68); }
.day-flow-lock { width: 9px; height: 9px; margin-right: .75rem; border-radius: 50%; background: var(--color-gold); box-shadow: 0 0 0 5px rgba(118, 196, 207, .16); }
.day-flow-optional { position: absolute; left: 42%; bottom: -1.55rem; color: var(--color-stone); font-size: .7rem; letter-spacing: .05em; text-transform: uppercase; }

.day-flow-evening {
  display: flex;
  gap: .9rem;
  align-items: center;
  padding-left: 1.25rem;
  color: var(--color-terracotta);
}
.day-flow-evening > span { font-size: 2rem; }
.day-flow-evening small { display: block; margin-top: .25rem; color: var(--color-stone); }

.village-principles {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(7, 23, 43, .16);
  border-bottom: 1px solid rgba(7, 23, 43, .16);
}

.village-principle {
  min-width: 0;
  padding: 1.5rem;
  border-right: 1px solid rgba(7, 23, 43, .16);
}
.village-principle:first-child { padding-left: 0; }
.village-principle:last-child { padding-right: 0; border-right: 0; }
.principle-visual { display: grid; place-items: center; height: 118px; margin-bottom: 1.4rem; background: rgba(7, 23, 43, .035); }
.principle-copy { display: grid; grid-template-columns: auto 1fr; column-gap: .75rem; }
.principle-copy .village-work-index { grid-row: 1 / 5; font-size: 1rem; }
.principle-label { color: var(--color-terracotta); font-size: .68rem; font-weight: 600; letter-spacing: .11em; text-transform: uppercase; }
.principle-copy h3 { margin: .35rem 0 .55rem; font-size: clamp(1.35rem, 2vw, 1.75rem); line-height: 1.05; }
.principle-copy > p:not(.village-work-index, .principle-label) { color: var(--color-ink-light); font-size: .9rem; line-height: 1.5; }
.principle-copy details { grid-column: 2; margin-top: 1rem; border-top: 1px solid rgba(7, 23, 43, .12); }
.principle-copy summary { min-height: 44px; display: flex; align-items: center; cursor: pointer; color: var(--color-stone); font-size: .72rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.principle-copy details p { padding-bottom: 1rem; font-size: .82rem; line-height: 1.5; }

.work-visual { display: flex; gap: 3px; width: 78%; height: 32px; }
.work-visual span { flex: 1; background: var(--color-forest); }
.work-visual span:first-child, .work-visual span:last-child { background: var(--color-gold); }

.place-visual { display: flex; align-items: center; width: 78%; }
.place-visual span { flex: 0 0 13px; height: 13px; border: 3px solid var(--color-terracotta); border-radius: 50%; background: var(--color-cream); }
.place-visual i { flex: 1; height: 1px; border-top: 1px dashed var(--color-forest); }

.table-visual { position: relative; width: 92px; height: 92px; }
.table-visual i { position: absolute; inset: 24px; border: 1px solid var(--color-terracotta); border-radius: 50%; background: rgba(201, 95, 61, .12); }
.table-visual span { position: absolute; left: 42px; top: 2px; width: 9px; height: 9px; border-radius: 50%; background: var(--color-forest); transform-origin: 4px 44px; }
.table-visual span:nth-child(2) { transform: rotate(60deg); }
.table-visual span:nth-child(3) { transform: rotate(120deg); }
.table-visual span:nth-child(4) { transform: rotate(180deg); }
.table-visual span:nth-child(5) { transform: rotate(240deg); }
.table-visual span:nth-child(6) { transform: rotate(300deg); }

.open-visual { display: grid; grid-template-columns: repeat(3, 34px); gap: 5px; }
.open-visual span, .open-visual i { display: grid; place-items: center; height: 45px; border: 1px solid rgba(7, 23, 43, .2); background: var(--color-cream); }
.open-visual i { grid-column: 2; border-style: dashed; color: var(--color-terracotta); font: 400 1.5rem/1 var(--font-display); }

.neighborhood-selector {
  display: flex;
  gap: .5rem;
  margin-bottom: 1rem;
  overflow-x: auto;
  scrollbar-width: thin;
}

.neighborhood-selector-button {
  flex: 0 0 auto;
  min-height: 44px;
  padding: .65rem .85rem;
  border: 1px solid rgba(7, 23, 43, 0.18);
  background: transparent;
  color: var(--color-forest);
  font: 500 .8rem/1.2 var(--font-body);
  text-align: left;
}

.neighborhood-selector-button span {
  display: block;
  margin-bottom: .2rem;
  color: var(--color-terracotta);
  font-size: .65rem;
  letter-spacing: .12em;
}

.neighborhood-selector-button.is-active {
  border-color: var(--color-terracotta);
  background: var(--color-terracotta);
  color: #fffdf8;
}

.neighborhood-selector-button.is-active span { color: #fffdf8; }

.journey-overview {
  display: flex;
  gap: .5rem;
  padding: .25rem 0 1rem;
  scroll-snap-type: x mandatory;
}

.journey-day {
  flex: 0 0 132px;
  min-height: 132px;
  scroll-snap-align: start;
  overflow-wrap: normal;
  word-break: normal;
}

.journey-day-title,
.journey-day-work { display: none !important; }

.journey-detail {
  display: grid;
  grid-template-columns: minmax(180px, .65fr) minmax(0, 1.35fr);
  gap: 2rem;
}

.journey-detail-media {
  min-height: 280px;
  display: grid;
  place-items: end start;
  padding: 1.25rem;
  background:
    linear-gradient(150deg, rgba(118, 196, 207, .72), rgba(18, 57, 95, .92)),
    var(--color-forest);
  color: #fffdf8;
}

.journey-detail.is-local-table .journey-detail-media {
  background: linear-gradient(150deg, #e5a086, var(--color-terracotta));
}

.journey-detail.is-weekend .journey-detail-media {
  background: linear-gradient(150deg, #b8e5e7, #397c96);
}

.journey-detail-controls {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  max-width: 900px;
  margin: 1rem auto 0;
}

.journey-navigation {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  max-width: 900px;
  margin: 1rem auto 0;
}

.journey-direction,
.journey-previous,
.journey-next {
  min-height: 44px;
  padding: .7rem 1rem;
  border: 1px solid rgba(7, 23, 43, .2);
  background: transparent;
  color: var(--color-forest);
  font: 600 .8rem/1 var(--font-body);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.pending-table-grid {
  display: block;
  border-top: 1px solid rgba(245, 241, 232, .2);
}

.pending-table-card {
  display: grid;
  grid-template-columns: 9rem minmax(180px, .45fr) 1fr;
  gap: 1.25rem;
  align-items: baseline;
  padding: 1.1rem 0;
  border: 0;
  border-bottom: 1px solid rgba(245, 241, 232, .16);
  border-radius: 0;
}

.pending-table-card h3 { font-size: 1.25rem; }

.voices-grid {
  display: block;
  border-top: 1px solid rgba(245, 241, 232, .18);
}

.voice-card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  border: 0;
  border-bottom: 1px solid rgba(245, 241, 232, .16);
  border-radius: 0;
  background: transparent;
}

.voice-silhouette { height: auto; min-height: 190px; }
.voice-portrait { height: auto; min-height: 190px; }
.voice-copy { display: grid; grid-template-columns: minmax(180px, .45fr) 1fr; gap: .5rem 2rem; align-content: center; }
.voice-copy .status-badge { grid-column: 1 / -1; justify-self: start; }
.voice-copy h3 { grid-row: span 2; }

.journey-fallback { max-width: 900px; margin: 2rem auto 0; }
.journey-fallback summary { min-height: 44px; cursor: pointer; font-weight: 600; }
.journey-fallback-list { margin-top: 1rem; }
.journey-fallback-list li { padding: 1rem 0; border-top: 1px solid rgba(7, 23, 43, .16); }

.open-role-list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(245, 241, 232, .22);
}

.open-role-row {
  display: grid;
  grid-template-columns: 4rem minmax(180px, .45fr) 1fr;
  gap: 1.25rem;
  align-items: baseline;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(245, 241, 232, .16);
}

.open-role-row h4 { color: var(--color-cream); font-family: var(--font-display); font-size: 1.5rem; }
.open-role-row p { color: rgba(245, 241, 232, .66); }

button:focus-visible,
a:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--color-gold);
  outline-offset: 3px;
}

@media (max-width: 800px) {
  .village-works-grid { grid-template-columns: 1fr; }
  .village-work-card,
  .village-work-card:nth-child(odd),
  .village-work-card:nth-child(even) {
    padding: 1.5rem 0;
    border-right: 0;
  }

  .neighborhood-selector { margin-top: .25rem; }
  .neighborhood-card img { aspect-ratio: 16 / 8; }
  .neighborhood-card-details { grid-template-columns: 1fr; }
  .neighborhood-question {
    padding-right: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(7, 23, 43, .18);
  }
  .neighborhood-rhythm { padding-left: 0; }
  .neighborhood-question p { max-width: 28ch; }
  .journey-overview {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
  }
  .journey-day { width: auto; flex-basis: 124px; }
  .journey-detail { grid-template-columns: 1fr; padding: 1.25rem; }
  .journey-detail-media { min-height: 160px; }
  .open-role-row { grid-template-columns: 3rem 1fr; }
  .open-role-row p:last-child { grid-column: 2; }
  .pending-table-card { grid-template-columns: 1fr; gap: .35rem; }
  .voice-card { grid-template-columns: 110px minmax(0, 1fr); }
  .voice-copy { grid-template-columns: 1fr; padding: 1rem; }
  .voice-copy h3 { grid-row: auto; }
  .day-flow { grid-template-columns: 72px minmax(0, 1fr) 72px; margin-top: 3rem; }
  .day-flow-evening { grid-column: 1 / -1; margin-top: 2.5rem; padding: 1rem 0 0; border-top: 1px solid rgba(7, 23, 43, .16); }
  .day-flow-work small { display: none; }
  .village-principles { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .village-principle:nth-child(2) { border-right: 0; }
  .village-principle:nth-child(-n+2) { border-bottom: 1px solid rgba(7, 23, 43, .16); }
  .village-principle:nth-child(3) { padding-left: 0; }
}

@media (max-width: 440px) {
  .village-work-card { grid-template-columns: 3rem minmax(0, 1fr); }
  .neighborhoods-section,
  .journey-section,
  .local-tables-section,
  .weekend-section,
  .open-sessions-section,
  .busan-people-section { padding-left: 20px; padding-right: 20px; }
  .day-flow { grid-template-columns: 58px minmax(0, 1fr) 58px; }
  .neighborhood-card { border-top-width: 3px; }
  .neighborhood-card img { aspect-ratio: 4 / 3; }
  .neighborhood-image figcaption { right: 1rem; bottom: .8rem; left: 1rem; }
  .neighborhood-card-content { padding-top: 1.25rem; }
  .neighborhood-card-heading { gap: 1rem; }
  .neighborhood-card-heading h3 { font-size: 2.15rem; }
  .neighborhood-days { padding: .45rem .55rem; font-size: .62rem; }
  .neighborhood-context { font-size: .86rem; }
  .neighborhood-question,
  .neighborhood-rhythm { padding: 1.15rem 0 1.25rem; }
  .neighborhood-question p { font-size: 1.55rem; }
  .neighborhood-rhythm li { grid-template-columns: 1.75rem minmax(0, 1fr); }
  .day-flow-time span { font-size: 1.45rem; }
  .day-flow-time strong { font-size: .62rem; }
  .day-flow-track { height: 70px; margin: 0 .5rem; }
  .day-flow-work { inset: 11px 0; justify-content: center; padding: 0 .5rem; text-align: center; }
  .day-flow-work strong { font-size: 1rem; }
  .day-flow-lock { display: none; }
  .day-flow-optional { left: 8%; white-space: nowrap; }
  .village-principles { grid-template-columns: 1fr; }
  .village-principle,
  .village-principle:first-child,
  .village-principle:last-child,
  .village-principle:nth-child(3) { padding: 1.5rem 0; border-right: 0; border-bottom: 1px solid rgba(7, 23, 43, .16); }
  .village-principle:last-child { border-bottom: 0; }
  .principle-visual { height: 105px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* Local Tables + Weekend Experiences · compact program index */
.featured-table {
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  align-items: stretch;
  border-top: 1px solid rgba(245, 241, 232, .22);
  border-bottom: 1px solid rgba(245, 241, 232, .22);
}

.featured-table .program-feature-image {
  min-height: 0;
  height: 100%;
  max-height: 430px;
}

.featured-table-copy {
  display: grid;
  align-content: center;
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.featured-table-copy h3 {
  max-width: 16ch;
  margin: .4rem 0 .8rem;
  color: var(--color-cream);
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  line-height: 1;
}

.featured-table-copy > p:not(.status-badge, .program-index, .program-condition) {
  max-width: 58ch;
  font-size: .92rem;
  line-height: 1.55;
}

.featured-table-copy .program-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1.25rem;
  margin-top: 1rem;
}

.featured-table-copy .program-steps li {
  padding: .5rem 0;
  border-top: 1px solid rgba(245, 241, 232, .14);
  font-size: .78rem;
  line-height: 1.4;
}

.featured-table-copy .program-condition {
  margin-top: 1rem;
  color: rgba(245, 241, 232, .62);
  font-size: .7rem;
  line-height: 1.45;
}

.featured-table-copy .program-condition strong {
  color: rgba(245, 241, 232, .82);
}

.pending-table-card h3 { color: var(--color-cream); }

.weekend-grid {
  gap: 1.25rem;
}

.weekend-card {
  display: grid;
  grid-template-columns: minmax(150px, .72fr) minmax(0, 1.28fr);
  min-height: 0;
  border-radius: 0;
  border-top: 3px solid var(--color-gold);
}

.weekend-card .program-feature-image {
  min-height: 0;
  height: 100%;
  max-height: 390px;
}

.weekend-card-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 1.5rem;
}

.weekend-card-copy h3 {
  margin: .45rem 0 .65rem;
  font-size: clamp(1.7rem, 2.5vw, 2.35rem);
  line-height: 1;
}

.weekend-card-copy > p:not(.program-meta, .status-badge, .program-condition) {
  font-size: .84rem;
  line-height: 1.5;
}

.weekend-card-copy .program-lead {
  margin-bottom: .45rem;
  color: var(--color-cream);
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.15;
}

.temple-options {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-top: .8rem;
}

.temple-options li {
  padding: .38rem .55rem;
  border: 1px solid rgba(245, 241, 232, .22);
  color: rgba(245, 241, 232, .82);
  font-size: .68rem;
  line-height: 1.2;
}

.temple-options strong { color: inherit; }
.temple-options img { display: none; }

.weekend-card .program-condition {
  color: rgba(245, 241, 232, .7);
  font-size: .74rem;
  line-height: 1.4;
}

@media (max-width: 800px) {
  .featured-table {
    grid-template-columns: minmax(180px, .65fr) minmax(0, 1.35fr);
  }
  .featured-table .program-feature-image { max-height: 380px; }
  .featured-table-copy .program-steps { grid-template-columns: 1fr; }

  .weekend-grid { grid-template-columns: 1fr; }
  .weekend-card {
    grid-template-columns: minmax(180px, .7fr) minmax(0, 1.3fr);
  }
  .weekend-card .program-feature-image { max-height: 320px; }
}

@media (max-width: 560px) {
  .featured-table,
  .weekend-card {
    grid-template-columns: 1fr;
  }
  .featured-table .program-feature-image {
    height: 190px;
    max-height: none;
  }
  .weekend-card .program-feature-image {
    height: 175px;
    max-height: none;
  }
  .featured-table-copy,
  .weekend-card-copy { padding: 1.25rem; }
  .featured-table-copy .program-condition { font-size: .66rem; }
}

/* Open Village Sessions · participant-made proposal board */
.open-sessions-section {
  position: relative;
  overflow: hidden;
  max-width: none;
  background:
    linear-gradient(135deg, rgba(118, 196, 207, .07), transparent 38%),
    var(--color-forest);
  color: var(--color-cream);
}

.open-sessions-section::before {
  content: '';
  position: absolute;
  top: -16rem;
  right: -12rem;
  width: 34rem;
  height: 34rem;
  border: 1px solid rgba(118, 196, 207, .15);
  border-radius: 50%;
  box-shadow:
    0 0 0 5rem rgba(118, 196, 207, .025),
    0 0 0 10rem rgba(118, 196, 207, .018);
  pointer-events: none;
}

.open-sessions-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  gap: clamp(3rem, 7vw, 7rem);
  width: min(100%, 1320px);
  margin: 0 auto;
}

.open-sessions-intro {
  align-self: start;
  padding-top: .5rem;
}

.open-sessions-intro .section-kicker {
  color: var(--color-gold);
}

.open-sessions-intro .section-title {
  max-width: 9ch;
  margin: 1.25rem 0 1.5rem;
  color: var(--color-cream);
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: .88;
  text-align: left;
}

.open-sessions-intro .section-title em {
  color: var(--color-gold);
  font-weight: 400;
}

.open-sessions-lead {
  max-width: 46ch;
  color: rgba(245, 241, 232, .76);
  font-size: 1rem;
  line-height: 1.7;
}

.open-session-steps {
  margin-top: 3rem;
  border-top: 1px solid rgba(245, 241, 232, .2);
  list-style: none;
}

.open-session-steps li {
  display: grid;
  grid-template-columns: 2.5rem minmax(0, 1fr);
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(245, 241, 232, .16);
}

.open-session-steps li > span {
  color: var(--color-gold);
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.open-session-steps strong {
  color: var(--color-cream);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.open-session-steps p {
  margin-top: .25rem;
  color: rgba(245, 241, 232, .62);
  font-size: .82rem;
  line-height: 1.45;
}

.open-session-board-panel {
  min-width: 0;
  padding: clamp(1rem, 2vw, 1.5rem);
  border: 1px solid rgba(245, 241, 232, .22);
  background:
    linear-gradient(rgba(7, 23, 43, .018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 23, 43, .018) 1px, transparent 1px),
    #e9dfce;
  background-size: 24px 24px;
  color: var(--color-forest);
  box-shadow: 18px 18px 0 rgba(0, 0, 0, .12);
}

.open-session-board-heading {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: .25rem .25rem .85rem;
  border-bottom: 1px solid rgba(7, 23, 43, .22);
  color: var(--color-stone);
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.open-session-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .75rem;
}

.open-session-card {
  position: relative;
  display: flex;
  min-height: 220px;
  flex-direction: column;
  padding: 1.25rem;
  border: 1px solid rgba(7, 23, 43, .16);
  background: #fffdf8;
  box-shadow: 0 5px 12px rgba(7, 23, 43, .07);
}

.open-session-card::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-terracotta);
  box-shadow: 0 1px 3px rgba(7, 23, 43, .38);
  transform: translateX(-50%);
}

.open-session-card:nth-child(2),
.open-session-card:nth-child(4) {
  background: #f4ede1;
}

.open-session-card-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: .5rem;
  color: var(--color-terracotta);
  font-size: .64rem;
  font-weight: 600;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.open-session-card h3 {
  max-width: 15ch;
  margin: auto 0;
  color: var(--color-forest);
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.02;
}

.open-session-card-owner {
  padding-top: .75rem;
  border-top: 1px solid rgba(7, 23, 43, .12);
  color: var(--color-stone);
  font-size: .68rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.open-session-card-invitation {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 5rem minmax(0, 1fr);
  gap: 1.25rem;
  min-height: 0;
  align-items: center;
  border: 1px dashed var(--color-terracotta);
  background: rgba(201, 95, 61, .08);
  box-shadow: none;
}

.open-session-card-invitation::before {
  display: none;
}

.open-session-plus {
  display: grid;
  width: 4.25rem;
  height: 4.25rem;
  place-items: center;
  border: 1px solid var(--color-terracotta);
  border-radius: 50%;
  color: var(--color-terracotta);
  font: 400 2.5rem/1 var(--font-display);
}

.open-session-card-invitation h3 {
  max-width: 24ch;
  margin: .35rem 0 .55rem;
  font-size: clamp(1.5rem, 2.5vw, 2.15rem);
}

.open-session-invitation-label {
  color: var(--color-terracotta);
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.open-session-card-invitation div > p:last-child {
  color: var(--color-stone);
  font-size: .75rem;
  letter-spacing: .03em;
}

.open-session-condition {
  max-width: 70ch;
  margin: 1.25rem .25rem .25rem;
  color: var(--color-stone);
  font-size: .7rem;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .open-sessions-shell {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .open-sessions-intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(240px, .7fr);
    gap: 0 2rem;
  }

  .open-sessions-intro .section-kicker,
  .open-sessions-intro .section-title {
    grid-column: 1;
  }

  .open-sessions-lead {
    grid-column: 1;
  }

  .open-session-steps {
    grid-column: 2;
    grid-row: 1 / 5;
    margin-top: 0;
  }
}

@media (max-width: 620px) {
  .open-sessions-intro {
    display: block;
  }

  .open-sessions-intro .section-title {
    max-width: 8ch;
    font-size: clamp(3rem, 16vw, 4.5rem);
  }

  .open-session-steps {
    margin-top: 2.25rem;
  }

  .open-session-board {
    grid-template-columns: 1fr;
  }

  .open-session-card {
    min-height: 190px;
  }

  .open-session-card-invitation {
    grid-column: auto;
    grid-template-columns: 3.5rem minmax(0, 1fr);
  }

  .open-session-plus {
    width: 3.25rem;
    height: 3.25rem;
    font-size: 2rem;
  }

  .open-session-board-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: .35rem;
  }
}

/* How the Village Works · editorial day plate */
.village-works-heading { max-width: 760px; }

.workday-plate {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, .62fr);
  gap: clamp(3rem, 7vw, 7rem);
  margin-top: clamp(3.5rem, 7vw, 6.5rem);
  padding-top: 2rem;
  border-top: 1px solid rgba(7, 23, 43, .2);
}

.workday-location {
  position: absolute;
  top: -1.8rem;
  left: 0;
  display: flex;
  gap: 1.25rem;
  align-items: center;
  color: var(--color-stone);
  font-size: .66rem;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.workday-location strong {
  color: var(--color-forest);
  font-weight: 600;
}

.workday-sequence {
  position: relative;
  padding-left: clamp(5rem, 10vw, 8.5rem);
}

.workday-sequence::before {
  content: '';
  position: absolute;
  top: 1.1rem;
  bottom: 1.5rem;
  left: clamp(3.5rem, 7vw, 6rem);
  border-left: 1px solid rgba(7, 23, 43, .22);
}

.workday-layer {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem 2rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid rgba(7, 23, 43, .14);
}

.workday-layer time,
.workday-time {
  position: absolute;
  right: calc(100% + clamp(1rem, 3vw, 2.25rem));
  top: 1.7rem;
  width: clamp(4rem, 8vw, 6rem);
  color: var(--color-terracotta);
  font: 500 clamp(1.35rem, 2.5vw, 2.15rem)/1 var(--font-display);
  text-align: right;
}

.workday-layer-copy { max-width: 560px; }
.workday-status {
  margin-bottom: .45rem;
  color: var(--color-terracotta);
  font-size: .67rem;
  font-weight: 600;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.workday-layer h3 {
  margin: 0 0 .45rem;
  color: var(--color-forest);
  font: 500 clamp(1.65rem, 3vw, 2.4rem)/1.05 var(--font-display);
}
.workday-layer-copy > p:last-child { max-width: 48ch; color: var(--color-ink-light); }

.workday-layer-primary {
  min-height: 210px;
  align-content: center;
  padding: 2.2rem;
  border: 0;
  background: var(--color-forest);
}
.workday-layer-primary h3 { color: var(--color-cream); font-size: clamp(2.4rem, 5vw, 4.5rem); }
.workday-layer-primary .workday-layer-copy > p:last-child { color: rgba(245, 241, 232, .72); }
.workday-layer-primary .workday-status { color: var(--color-gold); }
.workday-annotation {
  align-self: end;
  max-width: 150px;
  color: rgba(245, 241, 232, .56);
  font-size: .72rem;
  line-height: 1.4;
  text-align: right;
}

.workday-layer-lunch,
.workday-layer-open {
  margin-left: clamp(2rem, 7vw, 6rem);
  padding-left: 1.5rem;
  border-left: 1px dashed var(--color-gold);
}
.workday-layer-lunch h3,
.workday-layer-open h3 { font-size: clamp(1.45rem, 2.5vw, 2rem); }
.workday-layer-lunch .workday-time,
.workday-layer-open .workday-time {
  color: var(--color-stone);
  font-family: var(--font-body);
  font-size: .67rem;
  font-weight: 600;
  letter-spacing: .08em;
  line-height: 1.3;
  text-transform: uppercase;
}
.workday-branch {
  position: absolute;
  top: -1px;
  left: -1px;
  width: 2rem;
  border-top: 1px dashed var(--color-gold);
}
.workday-layer-evening { padding-top: 2.4rem; }

.workday-notes {
  align-self: start;
  border-top: 1px solid rgba(7, 23, 43, .18);
}
.workday-notes > div {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: .25rem .75rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(7, 23, 43, .14);
}
.workday-notes span {
  grid-row: 1 / 3;
  color: var(--color-terracotta);
  font: 500 1rem/1 var(--font-display);
}
.workday-notes strong {
  color: var(--color-forest);
  font-size: .76rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.workday-notes p { color: var(--color-stone); font-size: .82rem; line-height: 1.5; }

@media (max-width: 800px) {
  .workday-plate { grid-template-columns: 1fr; gap: 3rem; }
  .workday-notes { display: grid; grid-template-columns: 1fr 1fr; }
  .workday-notes > div:nth-child(odd) { padding-right: 1rem; border-right: 1px solid rgba(7, 23, 43, .14); }
  .workday-notes > div:nth-child(even) { padding-left: 1rem; }
}

@media (max-width: 440px) {
  .workday-location span { display: none; }
  .workday-sequence { padding-left: 3.8rem; }
  .workday-sequence::before { left: 2.8rem; }
  .workday-layer { grid-template-columns: 1fr; }
  .workday-layer time,
  .workday-time {
    right: calc(100% + .8rem);
    width: 3rem;
    font-size: 1.25rem;
  }
  .workday-layer-primary { min-height: 230px; padding: 1.5rem; }
  .workday-annotation { align-self: auto; text-align: left; }
  .workday-layer-lunch,
  .workday-layer-open { margin-left: 1rem; padding-left: 1rem; }
  .workday-layer-lunch .workday-time,
  .workday-layer-open .workday-time { font-size: .58rem; }
  .workday-notes { grid-template-columns: 1fr; }
  .workday-notes > div:nth-child(odd),
  .workday-notes > div:nth-child(even) { padding: 1.1rem 0; border-right: 0; }
}
