:root {
  --bg: #f4efe6;
  --bg-soft: rgba(255, 251, 244, 0.7);
  --ink: #1f1a17;
  --muted: #5b504a;
  --line: rgba(61, 44, 35, 0.15);
  --accent: #8a4b2a;
  --accent-2: #31493c;
  --card: rgba(255, 252, 247, 0.76);
  --shadow: 0 24px 70px rgba(52, 35, 27, 0.12);
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --sans: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: var(--sans);
  background:
    radial-gradient(circle at top left, rgba(169, 113, 72, 0.12), transparent 30%),
    radial-gradient(circle at 80% 20%, rgba(49, 73, 60, 0.12), transparent 25%),
    linear-gradient(180deg, #f9f4ea 0%, #f2ebdf 48%, #ece1d0 100%);
}

body::before {
  position: fixed;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.24) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.22) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.28), transparent 75%);
}

.page-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0 80px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 0 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.1rem;
  letter-spacing: 0.18em;
  background: rgba(255, 250, 243, 0.7);
  box-shadow: var(--shadow);
}

.brand-text,
.site-nav a,
.button,
.eyebrow {
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-text {
  font-size: 0.78rem;
  color: var(--muted);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.75rem;
}

.hero,
.section {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.9fr);
  gap: 28px;
  align-items: stretch;
  padding: 34px 0 56px;
}

.hero-copy,
.hero-panel,
.section {
  border: 1px solid var(--line);
  background: var(--card);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.about-page {
  margin-top: 8px;
  padding: 0;
}

.about-card {
  margin-top: 0;
  overflow: hidden;
}

.hero-copy {
  padding: 48px;
  border-radius: 36px;
}

.hero-subtitle {
  margin: 14px 0 0;
  max-width: 48rem;
  color: rgb(255, 255, 255) !important;
  opacity: 1;
  font-size: 1.02rem;
  font-weight: 380;
  line-height: 1.7;
  text-shadow: 0 3px 22px rgba(8, 5, 4, 0.5);
}

.about-image {
  position: relative;
  margin: -40px -40px 34px;
  aspect-ratio: 1.82 / 1;
  overflow: hidden;
  border-radius: 30px 30px 0 0;
  border-bottom: 1px solid var(--line);
}

.about-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(18, 12, 9, 0.84) 0%, rgba(18, 12, 9, 0.58) 36%, rgba(18, 12, 9, 0.2) 62%, rgba(18, 12, 9, 0.04) 100%),
    linear-gradient(180deg, rgba(20, 14, 10, 0.08) 0%, rgba(20, 14, 10, 0.2) 42%, rgba(20, 14, 10, 0.5) 100%);
}

.about-image img {
  transform: scale(1.04);
  filter: blur(4px) saturate(0.94) brightness(0.97);
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 58%;
  transition:
    transform 1800ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 1800ms ease;
  will-change: transform, filter;
}

.about-card .hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: end;
  padding: 56px;
}

.about-kicker {
  position: absolute;
  top: 42px;
  left: 56px;
  margin: 0;
  z-index: 2;
}

.about-card.is-visible .about-image img {
  transform: scale(1);
  filter: blur(4px) saturate(0.94) brightness(0.97);
}

.hero h1,
.section h2,
.gathering-card h3,
.note h3,
.connect-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.05;
  margin: 0;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5.8rem);
  max-width: 11ch;
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 0.72rem;
  color: var(--accent-2);
}

.eyebrow.about-kicker {
  color: #ffffff;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.22);
}

.hero-text,
.section p,
.note p,
.connect-card p,
.panel-list li {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1rem;
}

.hero-text {
  max-width: 54ch;
  margin: 26px 0 0;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.76rem;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.button-primary {
  color: var(--accent);
  background: rgba(138, 75, 42, 0.12);
  border: 1px solid rgba(138, 75, 42, 0.22);
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 248, 239, 0.9);
  border: 1px solid var(--line);
}

.button-primary:hover {
  color: #6c3820;
  background: rgba(138, 75, 42, 0.18);
  border-color: rgba(138, 75, 42, 0.3);
  transform: translateY(-1px);
}

.button-secondary:hover {
  background: rgba(255, 246, 235, 1);
  border-color: rgba(61, 44, 35, 0.22);
  transform: translateY(-1px);
}

.hero-panel {
  padding: 28px;
  border-radius: 28px;
  align-self: end;
}

.panel-kicker {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: 1.25rem;
}

.panel-list {
  margin: 0;
  padding-left: 18px;
}

.panel-list li + li {
  margin-top: 12px;
}

.hero-meta {
  display: grid;
  gap: 14px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.hero-meta div {
  display: grid;
  gap: 2px;
}

.meta-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-2);
}

.section {
  margin-top: 24px;
  padding: 40px;
  border-radius: 30px;
}

.about-card .hero {
  padding-top: 0;
  grid-template-columns: 1fr;
  gap: 0;
}

.about-card .hero-copy,
.about-card .hero-panel {
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  padding: 0;
  max-width: min(100%, 1040px);
}

.about-card .hero-panel {
  align-self: stretch;
}

.about-card .hero-copy {
  border-radius: 0;
  display: grid;
  justify-items: start;
  align-content: start;
}

.about-card .hero-copy .eyebrow,
.about-card .hero-copy .section-lead {
  color: #fffaf2;
}

.about-card .hero-copy .button-secondary {
  color: #fffaf2;
  background: rgba(255, 250, 242, 0.1);
  border-color: rgba(255, 250, 242, 0.3);
}

.about-card .hero-copy .button-secondary:hover {
  background: rgba(255, 250, 242, 0.18);
}

.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.section-intro {
  width: min(100%, 62ch);
  margin: 0;
}

.section-lead {
  width: min(100%, 980px);
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 3.5vw, 3.8rem);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.02em;
  text-align: left;
  text-wrap: balance;
}

.section h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  max-width: 12ch;
}

h1.section-lead,
h2.section-lead {
  width: min(100%, 980px);
  max-width: none;
  font-size: clamp(2.2rem, 3.5vw, 3.8rem);
  line-height: 1.06;
}

.about-card .section-lead {
  width: auto;
  max-width: 20ch;
  font-size: clamp(1.82rem, 2.7vw, 2.92rem);
  line-height: 1.04;
  text-wrap: pretty;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.about-card .hero-actions {
  margin-top: 24px;
}

.statement-grid,
.evolution-layout {
  display: grid;
  gap: 24px;
}

.about-summary {
  max-width: none;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.3vw, 2rem);
  line-height: 1.45;
  color: var(--ink);
}

.about-subhead {
  margin-bottom: 16px;
}

.about-section {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  margin-top: 26px;
  padding-left: 34px;
}

.about-section::before {
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 8px;
  width: 1px;
  content: "";
  background: linear-gradient(
    180deg,
    rgba(61, 44, 35, 0.14) 0%,
    rgba(61, 44, 35, 0.24) 18%,
    rgba(61, 44, 35, 0.14) 100%
  );
}

.about-block {
  position: relative;
  min-width: 0;
}

.about-block.statement {
  width: min(100%, 760px);
}

.about-block.audience {
  width: min(100%, 760px);
}

.about-block.home {
  width: min(100%, 840px);
}

.about-block.evolution {
  width: min(100%, 840px);
}

.why-aic-list {
  display: grid;
  gap: 16px;
  margin-top: 2px;
  padding-left: 0;
}

.why-aic-item {
  position: relative;
  display: grid;
  gap: 4px;
  padding-left: 30px;
}

.why-aic-item::before {
  position: absolute;
  top: 0.42rem;
  left: -30px;
  width: 9px;
  height: 9px;
  border: 1px solid rgba(61, 44, 35, 0.14);
  border-radius: 50%;
  content: "";
  background: rgba(255, 252, 247, 0.96);
  box-shadow: 0 0 0 4px rgba(244, 239, 230, 0.58);
}

.why-aic-item h3 {
  margin: 0;
  font-family: var(--sans);
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.01em;
  color: var(--ink);
}

.why-aic-item p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.who-aic-copy {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.founder-note-strip {
  display: flex;
  align-items: center;
  gap: 18px;
  width: min(100%, 760px);
  padding: 16px 18px;
  border-radius: 24px;
  background: rgba(255, 250, 242, 0.78);
  border: 1px solid rgba(61, 44, 35, 0.08);
}

.founder-summary {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.1rem;
  line-height: 1.45;
}

.about-location {
  margin: -10px 0 2px;
  color: rgba(61, 44, 35, 0.56);
  font-size: 0.65rem;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.founder-portrait {
  flex: 0 0 auto;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(61, 44, 35, 0.1);
  box-shadow: 0 10px 26px rgba(61, 44, 35, 0.08);
}

.founder-portrait img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.home-note-strip {
  align-items: flex-start;
}

.home-portrait {
  background: #9f1608;
}

.founder-note-copy {
  display: grid;
  gap: 14px;
  flex: 1 1 auto;
}

.founder-link {
  font-size: 0.92rem;
}

.about-block::before {
  position: absolute;
  top: 0.45rem;
  left: -34px;
  width: 17px;
  height: 17px;
  border: 1px solid rgba(61, 44, 35, 0.16);
  border-radius: 50%;
  content: "";
  background: rgba(255, 252, 247, 0.95);
  box-shadow: 0 0 0 6px rgba(244, 239, 230, 0.72);
}

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

.evolution-layout {
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.95fr);
  align-items: start;
}

.evolution-lead {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.8vw, 2.35rem);
  line-height: 1.35;
  color: var(--ink);
}

.evolution-notes {
  display: grid;
  gap: 16px;
}

.note,
.connect-card {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 250, 242, 0.85);
  border: 1px solid rgba(61, 44, 35, 0.1);
}

.gatherings-grid,
.host-layout,
.connect-layout,
.connect-stack {
  display: grid;
  gap: 18px;
}

.gatherings-spotlight,
.upcoming-card,
.upcoming-actions,
.gatherings-archive {
  display: grid;
  gap: 18px;
}

.gatherings-intro {
  max-width: 68ch;
  margin: 0;
  text-align: left;
}

.gatherings-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 14px;
  width: min(100%, 980px);
  margin: 0 0 34px;
  text-align: left;
}

.gatherings-header .eyebrow {
  margin: 0;
}

.gatherings-header h2 {
  margin: 0;
  max-width: none;
}

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

.gatherings-spotlight,
.gatherings-archive {
  width: min(100%, 980px);
  margin: 0 auto;
}

.gatherings-spotlight {
  grid-template-columns: 1fr;
  margin-bottom: 0;
}

.gatherings-next {
  margin-bottom: 26px;
}

.next-gathering-note {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  padding: 20px 24px;
  border-radius: 22px;
  background: rgba(255, 250, 242, 0.72);
  border: 1px solid rgba(61, 44, 35, 0.1);
}

.next-gathering-copy {
  display: grid;
  gap: 6px;
  max-width: 42rem;
}

.next-gathering-copy h3,
.next-gathering-copy p {
  margin: 0;
}

.next-gathering-copy h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.15;
}

.next-gathering-copy p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

.next-gathering-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 0 0 auto;
}

.upcoming-media {
  flex: 0 0 42%;
  min-height: 320px;
  overflow: hidden;
  border-radius: 18px;
}

.upcoming-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 18px;
}

.upcoming-meta,
.gatherings-archive-intro {
  margin: 0;
}

.upcoming-title {
  margin: 10px 0 0;
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.04;
}

.upcoming-title {
  font-size: clamp(2rem, 3.6vw, 3rem);
  max-width: 14ch;
}

.upcoming-body {
  flex: 0 0 58%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 6px 0;
}

.upcoming-body .eyebrow,
.gatherings-archive-header .eyebrow {
  margin-bottom: 10px;
}

.upcoming-meta {
  margin-top: 8px;
  color: var(--accent-2);
  font-size: 0.9rem;
}

.upcoming-actions {
  grid-template-columns: repeat(2, max-content);
  align-items: center;
  margin-top: 10px;
}

.gatherings-archive {
  gap: 20px;
}

.gatherings-archive-header {
  display: grid;
  gap: 8px;
}

.gatherings-archive-intro {
  color: var(--muted);
}

.gathering-card {
  display: flex;
  width: min(100%, 980px);
  margin: 0 auto;
  gap: 22px;
  align-items: center;
  min-height: 320px;
  overflow: hidden;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 250, 242, 0.85);
  border: 1px solid rgba(61, 44, 35, 0.1);
}

.card-index {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
}

.gathering-media {
  flex: 0 0 42%;
  aspect-ratio: 1.08 / 1;
  overflow: hidden;
  border-radius: 18px;
}

.gathering-media img,
.gathering-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 18px;
}

.gathering-body {
  flex: 0 0 28%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 6px 0;
}

.gathering-title {
  margin-top: 2px;
  max-width: none;
  line-height: 1.1;
  text-wrap: balance;
  font-size: 1.55rem;
}

.gathering-meta,
.gathering-tag {
  margin: 8px 0 0;
  font-size: 0.9rem;
}

.gathering-meta {
  color: var(--ink);
}

.gathering-tag {
  color: var(--accent-2);
}

.gathering-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
}

.gathering-links-stack {
  display: grid;
  justify-items: start;
  gap: 10px;
}

.gathering-links-secondary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.text-link {
  color: var(--accent);
  text-decoration: none;
  font-size: 0.9rem;
}

.link-divider {
  color: rgba(61, 44, 35, 0.34);
  font-size: 0.84rem;
}

.gathering-gallery {
  flex: 0 0 22%;
  display: grid;
  gap: 12px;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  align-self: stretch;
  min-width: 0;
}

.gathering-gallery img {
  aspect-ratio: 1 / 1;
}

.connect-layout {
  grid-template-columns: 1fr;
  align-items: start;
  width: 100%;
}

.connect .eyebrow {
  width: min(100%, 980px);
  margin: 0 auto 24px;
}

.connect-stack {
  grid-template-columns: minmax(0, 1.16fr) minmax(280px, 0.84fr);
  width: min(100%, 980px);
  margin: 0 auto;
  align-items: stretch;
}

.connect-card {
  width: 100%;
  margin: 0;
  position: relative;
  overflow: hidden;
  background: rgba(255, 249, 242, 0.94);
  border-color: rgba(61, 44, 35, 0.1);
}

.connect-card h3 {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
}

.connect-kicker {
  margin: 0 0 14px;
  color: var(--accent-2);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.connect-card-primary {
  background: rgba(255, 249, 242, 0.94);
  border-color: rgba(61, 44, 35, 0.1);
}

.connect-card-secondary {
  display: grid;
  align-content: start;
  background: rgba(255, 249, 242, 0.94);
  border-color: rgba(61, 44, 35, 0.1);
}

.connect-subhead {
  margin: 20px 0 10px;
  color: var(--accent-2);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.connect-card .button {
  margin-top: 20px;
}

.connect-note {
  margin: 14px 0 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.journal-list {
  display: grid;
  gap: 16px;
}

.journal-entry-preview {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(160px, 0.7fr);
  gap: 24px;
  padding: 28px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.78), rgba(255, 250, 242, 0.96)),
    radial-gradient(circle at top right, rgba(138, 75, 42, 0.1), transparent 34%);
  border: 1px solid rgba(61, 44, 35, 0.08);
  align-items: start;
}

.journal-entry-main,
.journal-entry-side {
  display: grid;
}

.journal-entry-main {
  gap: 14px;
}

.journal-entry-side {
  gap: 10px;
  justify-items: end;
  align-content: start;
}

.journal-entry-kicker,
.journal-entry-author {
  margin: 0;
  font-size: 0.88rem;
  color: var(--accent-2);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.journal-entry-preview h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 2.75rem);
  line-height: 1.04;
  max-width: 14ch;
}

.journal-entry-link {
  color: var(--ink);
  text-decoration: none;
  background-image: linear-gradient(rgba(138, 75, 42, 0.32), rgba(138, 75, 42, 0.32));
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 1px;
  transition:
    color 180ms ease,
    background-size 180ms ease;
}

.journal-entry-link:hover {
  color: var(--accent);
  background-size: 100% 1px;
}

.journal-entry-link:focus-visible {
  outline: 2px solid rgba(138, 75, 42, 0.32);
  outline-offset: 2px;
}

.journal-entry-hook {
  width: min(100%, 58ch);
  margin: 0;
}

.essay-page {
  margin-top: 8px;
}

.gathering-detail-page {
  margin-top: 8px;
}

.gathering-detail {
  width: min(100%, 980px);
  margin: 0 auto;
  padding: 40px;
}

.gathering-detail-header {
  display: grid;
  gap: 12px;
  margin-bottom: 34px;
}

.gathering-detail-header h1,
.gathering-detail-title {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.04;
}

.gathering-detail-header h1 {
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  max-width: 12ch;
}

.gathering-detail-title {
  font-size: clamp(1.55rem, 2.8vw, 2.2rem);
  max-width: 20ch;
}

.gathering-detail-meta,
.gathering-detail-tag,
.gathering-detail-intro {
  margin: 0;
}

.gathering-detail-meta {
  color: var(--ink);
  font-size: 0.96rem;
}

.gathering-detail-tag {
  color: var(--accent-2);
  font-size: 0.92rem;
}

.gathering-detail-intro {
  width: min(100%, 64ch);
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.gathering-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.gathering-detail-section + .gathering-detail-section {
  margin-top: 34px;
}

.gathering-detail-heading {
  margin-bottom: 22px;
}

.detail-photo-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr 0.82fr;
  gap: 16px;
}

.detail-photo-card {
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  background: rgba(255, 250, 242, 0.95);
  border: 1px solid rgba(61, 44, 35, 0.08);
}

.detail-photo-card img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  display: block;
  object-fit: cover;
}

.detail-photo-card-wide img {
  min-height: 380px;
}

.related-reading-card {
  display: grid;
  gap: 12px;
  padding: 24px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.82), rgba(255, 250, 242, 0.96)),
    radial-gradient(circle at top right, rgba(138, 75, 42, 0.08), transparent 32%);
  border: 1px solid rgba(61, 44, 35, 0.08);
}

.related-reading-card p:last-of-type {
  margin: 0;
}

.essay-article {
  width: min(100%, 900px);
  margin: 0 auto;
  padding: 40px;
}

.essay-back {
  display: inline-flex;
  margin-bottom: 28px;
}

.essay-header {
  display: grid;
  gap: 0;
  margin-bottom: 30px;
}

.essay-header h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  font-weight: 500;
  line-height: 1.02;
  max-width: 12ch;
}

.essay-content {
  display: grid;
  gap: 18px;
}

.essay-figures {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(100%, 760px);
  margin: 10px 0 6px;
}

.essay-figure {
  margin: 0;
  display: grid;
  gap: 10px;
}

.essay-figure-single {
  width: min(100%, 760px);
  margin: 10px 0 6px;
}

.essay-figure-image {
  width: 100%;
  display: block;
  border-radius: 20px;
  border: 1px solid rgba(61, 44, 35, 0.08);
  box-shadow: var(--shadow);
}

.essay-figure figcaption {
  width: min(100%, 46ch);
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.essay-content p {
  width: min(100%, 68ch);
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.08rem;
  line-height: 1.9;
}

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

.gallery-card {
  display: grid;
  gap: 12px;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 250, 242, 0.95);
  border: 1px solid rgba(61, 44, 35, 0.08);
  align-content: start;
}

.gallery-card-text {
  padding: 24px;
  grid-template-rows: 1fr;
  background:
    linear-gradient(180deg, rgba(255, 249, 242, 0.98), rgba(248, 239, 228, 0.94));
}

.gallery-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  background: #e9dfcf;
  display: block;
}

.gallery-card figcaption {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.gallery-copy {
  display: grid;
  gap: 12px;
}

.gallery-copy h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.42rem;
  line-height: 1.16;
}

.gallery-copy p:last-child {
  margin: 0;
}

.gallery-label {
  display: block;
  margin-bottom: 6px;
  color: var(--accent);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
  padding: 8px 4px 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 1080px) {
  .hero,
  .statement-grid,
  .evolution-layout,
  .connect-layout,
  .connect-stack,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .upcoming-card,
  .upcoming-actions {
    grid-template-columns: 1fr;
  }

  .upcoming-card {
    display: grid;
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .gathering-card {
    display: grid;
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .next-gathering-note {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .founder-note-strip {
    flex-direction: column;
    align-items: flex-start;
  }

  .next-gathering-actions {
    justify-content: flex-start;
  }

  .upcoming-media {
    flex: none;
    min-height: 260px;
  }

  .gathering-media {
    flex: none;
    min-height: 260px;
    aspect-ratio: auto;
  }

  .gathering-body,
  .gathering-gallery,
  .upcoming-body {
    flex: none;
  }

  .gathering-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    align-self: auto;
  }

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

  .detail-photo-card img,
  .detail-photo-card-wide img {
    min-height: 260px;
  }

  .section h2,
  .hero h1 {
    max-width: none;
  }
}

@media (max-width: 720px) {
  body::before {
    background-size: 30px 30px;
    opacity: 0.48;
  }

  .page-shell {
    width: min(100% - 24px, 1180px);
    padding-top: 12px;
    padding-bottom: 56px;
  }

  .about-page {
    padding: 0;
  }

  .site-header {
    gap: 14px;
    padding-bottom: 18px;
  }

  .brand {
    gap: 12px;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
    font-size: 1rem;
  }

  .brand-text {
    font-size: 0.72rem;
  }

  .site-nav {
    width: 100%;
    gap: 10px;
  }

  .site-nav a {
    flex: 1 1 140px;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    border: 1px solid rgba(61, 44, 35, 0.1);
    border-radius: 999px;
    background: rgba(255, 250, 242, 0.65);
  }

  .about-image {
    margin: -26px -26px 26px;
    aspect-ratio: 0.92 / 1;
    border-radius: 24px 24px 0 0;
  }

  .about-image::after {
    background:
      linear-gradient(180deg, rgba(17, 11, 8, 0.12) 0%, rgba(17, 11, 8, 0.34) 42%, rgba(17, 11, 8, 0.78) 100%),
      linear-gradient(90deg, rgba(18, 12, 9, 0.82) 0%, rgba(18, 12, 9, 0.34) 58%, rgba(18, 12, 9, 0.08) 100%);
  }

  .about-section {
    gap: 24px;
    margin-top: 12px;
    padding-left: 0;
  }

  .about-section::before,
  .about-block::before {
    display: none;
  }

  .about-block.statement,
  .about-block.audience,
  .about-block.evolution {
    width: 100%;
  }

  .about-card .hero-overlay {
    display: grid;
    align-content: end;
    justify-items: start;
    padding: 22px 20px 18px;
  }

  .about-kicker {
    position: static;
    margin: 0 0 10px;
  }

  .about-card .hero-copy {
    max-width: min(100%, 22rem);
    gap: 12px;
  }

  .about-card .section-lead {
    max-width: 9.5ch;
    font-size: clamp(1.52rem, 7.4vw, 1.98rem);
    line-height: 1.08;
  }

  .hero-subtitle {
    max-width: 21rem;
    font-size: 0.9rem;
    line-height: 1.7;
  }

  .about-card .hero-actions {
    margin-top: 12px;
  }

  .about-summary {
    font-size: clamp(1.08rem, 4.9vw, 1.32rem);
    line-height: 1.58;
  }

  .site-header,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-copy,
  .section,
  .hero-panel {
    padding: 22px;
    border-radius: 22px;
  }

  .hero {
    padding-top: 10px;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 15vw, 4rem);
  }

  .gatherings-header {
    gap: 10px;
    margin-bottom: 24px;
  }

  .gatherings-intro {
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .gatherings-spotlight,
  .gatherings-archive {
    gap: 16px;
  }

  .upcoming-card {
    padding: 18px;
    border-radius: 20px;
  }

  .upcoming-media {
    min-height: 220px;
    border-radius: 16px;
  }

  .upcoming-media img {
    border-radius: 16px;
  }

  .upcoming-title {
    font-size: 1.8rem;
    max-width: 13ch;
  }

  .upcoming-actions .button {
    width: 100%;
  }

  .gathering-card {
    padding: 18px;
    gap: 16px;
    border-radius: 20px;
  }

  .gathering-media {
    min-height: 220px;
    border-radius: 16px;
  }

  .gathering-media img,
  .gathering-gallery img {
    border-radius: 16px;
  }

  .gathering-body {
    padding: 0;
  }

  .card-index {
    margin-bottom: 12px;
    font-size: 0.76rem;
  }

  .gathering-title {
    font-size: 1.32rem;
    line-height: 1.12;
  }

  .gathering-gallery {
    display: none;
  }

  .gathering-meta,
  .gathering-tag {
    font-size: 0.84rem;
  }

  .gathering-links {
    gap: 6px;
  }

  .gathering-links-stack,
  .gathering-links-secondary {
    gap: 6px;
  }

  .link-divider {
    display: none;
  }

  .connect .eyebrow {
    margin-bottom: 18px;
  }

  .connect-card {
    border-radius: 20px;
  }

  .journal-entry-preview,
  .essay-article,
  .gallery-card {
    border-radius: 20px;
  }

  .why-aic-list {
    gap: 14px;
  }

  .why-aic-item {
    padding-left: 24px;
  }

  .why-aic-item::before {
    left: -24px;
  }

  .who-aic-copy,
  .why-aic-item p {
    font-size: 0.96rem;
    line-height: 1.72;
  }

  .founder-note-strip {
    gap: 14px;
    padding: 14px;
    border-radius: 18px;
  }

  .founder-portrait {
    width: 72px;
    height: 72px;
  }

  .founder-summary {
    font-size: 0.98rem;
    line-height: 1.52;
  }

  .journal-entry-preview {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .journal-entry-side {
    justify-items: start;
  }

  .connect-kicker {
    margin-bottom: 12px;
  }

  .connect-card h3 {
    font-size: 1.35rem;
  }

  .connect-card .button {
    width: 100%;
  }

  .gallery-card img {
    height: 220px;
  }

  .essay-article {
    padding: 22px;
  }

  .gathering-detail {
    padding: 22px;
  }

  .essay-header h1 {
    max-width: 100%;
    font-size: clamp(2.05rem, 10vw, 2.8rem);
  }

  .gathering-detail-header h1 {
    max-width: 100%;
    font-size: clamp(2.05rem, 10vw, 2.8rem);
  }

  .gathering-detail-title {
    max-width: 100%;
    font-size: 1.45rem;
    line-height: 1.14;
  }

  .gathering-detail-intro {
    font-size: 0.98rem;
    line-height: 1.72;
  }

  .gathering-detail-actions .button {
    width: 100%;
  }

  .essay-content {
    gap: 16px;
  }

  .essay-figures {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .essay-content p {
    font-size: 1rem;
    line-height: 1.82;
  }

  .site-footer {
    gap: 8px;
    font-size: 0.82rem;
  }

  .hero,
  .section {
    transition: none;
    transform: none;
  }
}
