:root {
  --green-950: #0B2418;
  --green-900: #123524;
  --green-800: #1F6B45;
  --green-700: #2E8B57;
  --green-600: #3D9B68;
  --green-100: #E8F3EC;
  --green-50: #F4F9F5;
  --cream: #FAFBF8;
  --ink: #102018;
  --ink-soft: #24382C;
  --mute: #3E5447;
  --line: rgba(18, 53, 36, 0.12);
  --line-strong: rgba(18, 53, 36, 0.22);
  --white: #FFFFFF;
  --shadow: 0 12px 40px rgba(11, 36, 24, 0.08);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

body {
  background: var(--cream);
  color: var(--ink);
  font-family: "Sora", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* height:auto keeps width/height attributes as aspect hints only —
   without it, attribute heights override CSS aspect-ratio and zoom crops. */
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--green-800);
  color: var(--white);
  padding: 0.75rem 1rem;
  z-index: 100;
  font-weight: 600;
}
.skip:focus { left: 1rem; top: 1rem; }

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

a:focus:not(:focus-visible),
button:focus:not(:focus-visible),
input:focus:not(:focus-visible),
select:focus:not(:focus-visible),
textarea:focus:not(:focus-visible) {
  outline: none;
}

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

/* Header */
.top {
  position: absolute;
  inset: 0 0 auto;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: calc(1.1rem + env(safe-area-inset-top, 0px))
    calc(clamp(1.1rem, 3.5vw, 2.75rem) + env(safe-area-inset-right, 0px))
    1.1rem
    calc(clamp(1.1rem, 3.5vw, 2.75rem) + env(safe-area-inset-left, 0px));
}

.top.is-solid {
  position: sticky;
  top: 0;
  background: transparent;
  border-bottom: 1px solid var(--line);
}

/*
 * Blur lives on a pseudo, not on .top itself. backdrop-filter / filter on
 * .top makes it a containing block for position:fixed descendants, which
 * clipped the mobile Menu drawer to the header height (~108px).
 */
.top.is-solid::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: rgba(250, 251, 248, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Hero pages: keep overlay header fixed when solidified so content does not jump */
.top[data-overlay].is-solid {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  flex: 0 0 auto;
  min-width: 0;
}

.brand-lockup img {
  height: 42px;
  width: auto;
  max-width: min(220px, 48vw);
  object-fit: contain;
  object-position: left center;
}

.brand-lockup .mark {
  width: 40px;
  height: 40px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 0.95rem;
  list-style: none;
  min-width: 0;
}

.nav a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}

.top:not(.is-solid) .nav a { color: rgba(255,255,255,0.88); }
.top:not(.is-solid) .nav a:hover,
.top:not(.is-solid) .nav a[aria-current="page"] { color: #fff; }

.nav a:hover,
.nav a[aria-current="page"] { color: var(--green-800); }

.top.is-solid .nav a { color: var(--ink-soft); }
.top.is-solid .nav a:hover,
.top.is-solid .nav a[aria-current="page"] { color: var(--green-900); }

.nav .cta {
  background: var(--green-800);
  color: #fff !important;
  padding: 0.6rem 0.95rem;
  border-radius: 2px;
}

.nav .cta:hover { background: var(--green-700); color: #fff !important; }


/* Layout */
.wrap {
  width: min(1120px, calc(100% - 2.2rem));
  margin-inline: auto;
}

.section { padding: clamp(3.75rem, 8vw, 6rem) 0; }

.eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: 0.75rem;
}

h1, h2, .display {
  font-family: "Instrument Serif", "Iowan Old Style", Palatino, Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.08;
  color: var(--green-950);
}

h1 { font-size: clamp(2.5rem, 6.5vw, 4.4rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.55rem); margin-bottom: 0.8rem; }

.lede {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 34rem;
  line-height: 1.7;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--green-800);
  color: #fff;
  padding: 0.95rem 1.35rem;
  border: 1px solid var(--green-800);
  border-radius: 2px;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover { background: var(--green-700); border-color: var(--green-700); }

.btn-line {
  background: transparent;
  color: var(--green-900);
  border-color: var(--line-strong);
}

.btn-line:hover {
  border-color: var(--green-800);
  color: var(--green-800);
  background: var(--green-50);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: 0 clamp(1.1rem, 3.5vw, 2.75rem) clamp(2.6rem, 7vh, 4.2rem);
  overflow: hidden;
  background: var(--green-900);
}

.hero-cinematic { min-height: 100svh; }

.hero-photo { position: absolute; inset: 0; }

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  transform: scale(1.08);
  animation: heroDrift 28s ease-out forwards;
}

@keyframes heroDrift {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(8,22,18,0.18) 0%, rgba(8,22,18,0.22) 38%, rgba(8,22,18,0.9) 100%),
    linear-gradient(105deg, rgba(8,22,18,0.7) 0%, rgba(8,22,18,0.18) 48%, transparent 72%);
}

.hero-cinematic .hero-photo::after {
  background:
    linear-gradient(90deg, rgba(8, 22, 16, 0.9) 0%, rgba(8, 22, 16, 0.66) 38%, rgba(8, 22, 16, 0.28) 66%, rgba(8, 22, 16, 0.16) 100%),
    linear-gradient(180deg, rgba(8, 22, 16, 0.42) 0%, rgba(8, 22, 16, 0.14) 42%, rgba(8, 22, 16, 0.72) 100%);
}

.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.13;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 40rem;
  color: #fff;
}

.brand-mark-line {
  display: block;
  margin: 0 0 1.25rem;
  font-size: clamp(0.7rem, 1vw, 0.8rem);
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(247, 243, 234, 0.78);
}

.hero-copy .eyebrow { color: #B7E0C5; }
.hero-copy h1 {
  color: #fff;
  margin-bottom: 0.9rem;
  font-size: clamp(2.55rem, 6.8vw, 4.6rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 14ch;
}
.hero-copy h1 em,
.hero-copy h1 span {
  display: inline;
  font-style: italic;
  font-weight: 400;
  color: #F0EBE0;
}
.hero-copy .lede {
  color: rgba(255,255,255,0.88);
  margin-bottom: 1.6rem;
  max-width: 28rem;
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  line-height: 1.65;
}

.hero-actions,
.btn-row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0.75rem;
  margin-top: 1rem;
}

.hero-actions { margin-top: 0; }

.btn-row .btn,
.hero-actions .btn {
  margin-left: 0 !important;
}

.hero .btn-line {
  color: #fff;
  border-color: rgba(255,255,255,0.45);
}

.hero .btn-line:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-color: #fff;
}

/* Reveals stay visible by default (public reliability). Only after JS marks
   in-view nodes `.is-in` and then adds `html.reveal-on` do below-fold nodes
   animate in — never flash-hide content already on screen. */
.reveal { opacity: 1; transform: none; }
html.reveal-on .reveal:not(.is-in) {
  opacity: 0;
  transform: translateY(0.65rem);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  animation: revealFailsafe 0.01s linear 1.2s forwards;
}
html.reveal-on .reveal.is-in {
  opacity: 1;
  transform: none;
  animation: none;
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes revealFailsafe {
  to { opacity: 1; transform: none; }
}
html.reveal-on .reveal-delay-1 { transition-delay: 0.1s; }
html.reveal-on .reveal-delay-2 { transition-delay: 0.18s; }
html.reveal-on .reveal-delay-3 { transition-delay: 0.26s; }

/* Bands */
.band-green {
  background: var(--green-50);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.band-deep {
  background: var(--green-900);
  color: #E8F3EC;
}

.band-deep h2,
.band-deep .eyebrow { color: #E8F3EC; }
.band-deep .eyebrow { color: #B7E0C5; }
.band-deep .lede,
.band-deep p,
.band-deep li { color: rgba(244, 249, 245, 0.92); }
.band-deep .cities { color: rgba(244, 249, 245, 0.92); }
.band-deep .cities span { color: #D7F0E0; }
.band-deep .benefits strong,
.band-deep strong { color: #FFFFFF; }
.band-deep a:not(.btn):not(.btn-line):not(.cta) {
  color: #D7F0E0;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.band-deep a:not(.btn):not(.btn-line):not(.cta):hover {
  color: #FFFFFF;
}
.band-deep .btn-line {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}
.band-deep .btn-line:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: #fff;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: start;
}

.prose p {
  color: var(--ink-soft);
  margin-bottom: 1rem;
  max-width: 38rem;
}

.prose p strong { color: var(--ink); font-weight: 600; }

.list {
  list-style: none;
  border-top: 1px solid var(--line);
}

.list li {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
}

.list a {
  color: var(--green-800);
  text-decoration: underline;
  text-underline-offset: 0.12em;
}
.list a:hover {
  color: var(--green-900);
}

.media-block { margin-top: 2.75rem; }

.media-block img {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  border-radius: 2px;
}

.media-block figcaption {
  margin-top: 0.7rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.25rem;
}

.pillar {
  background: transparent;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  padding: 1.35rem 0;
  box-shadow: none;
}

.pillar h3 {
  font-family: "Instrument Serif", "Iowan Old Style", Palatino, Georgia, serif;
  font-size: 1.4rem;
  color: var(--green-900);
  margin-bottom: 0.5rem;
}

.pillar p {
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.65;
}

.cities {
  margin: 1.4rem 0 1.75rem;
  color: var(--ink);
  font-weight: 500;
}

.cities span { color: var(--green-700); }

.benefits {
  list-style: none;
  max-width: 36rem;
}

.benefits li {
  padding: 0.8rem 0;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
}

.benefits li:last-child { border-bottom: 1px solid var(--line); }
.benefits strong { color: var(--ink); font-weight: 600; }

.quote {
  text-align: center;
  padding: clamp(3.5rem, 8vw, 5.5rem) 1.2rem;
  background:
    linear-gradient(180deg, rgba(232, 243, 236, 0.65), rgba(250, 251, 248, 1)),
    var(--cream);
}

.quote blockquote {
  font-family: "Instrument Serif", "Iowan Old Style", Palatino, Georgia, serif;
  font-size: clamp(1.2rem, 2.4vw, 1.65rem);
  font-style: italic;
  color: var(--green-900);
  max-width: 32rem;
  margin: 0 auto 0.65rem;
  line-height: 1.4;
}

.quote.quote-large blockquote {
  font-size: clamp(1.85rem, 4vw, 2.85rem);
  max-width: 18ch;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.quote cite {
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* Shop teaser + grid */
.shop-teaser {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 1.5rem;
  align-items: center;
}

.shop-teaser-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.shop-teaser-visual img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 2.25rem) clamp(1.15rem, 2.4vw, 1.75rem);
  margin-top: 0.35rem;
}

.product {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: none;
}

.product-media {
  aspect-ratio: 1;
  background: #eef2ef;
  overflow: hidden;
  position: relative;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  padding: 5%;
  background: #eef2ef;
}

.product-body {
  padding: 1.15rem 1.2rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}

.product-brand {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-800);
  line-height: 1.4;
  max-width: 28ch;
}

.product h3 {
  font-family: "Instrument Serif", "Iowan Old Style", Palatino, Georgia, serif;
  font-size: 1.28rem;
  color: var(--green-950);
  letter-spacing: -0.02em;
  margin: 0.1rem 0 0;
  line-height: 1.2;
}

.product-meta {
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--ink-soft);
  margin: 0.15rem 0 0;
}

.product-price {
  font-weight: 600;
  color: var(--green-900);
  margin-top: 0.35rem;
  font-size: 1.02rem;
  letter-spacing: 0.01em;
}

.product-actions {
  margin-top: auto;
  padding-top: 1rem;
  display: grid;
  gap: 0.6rem;
}

.product select {
  width: 100%;
  border: 1px solid var(--line-strong);
  background: var(--cream);
  border-radius: 4px;
  padding: 0.7rem 0.8rem;
  font: inherit;
  color: var(--ink);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0;
}

.chip {
  border: 1px solid var(--line-strong);
  background: var(--white);
  color: var(--ink-soft);
  border-radius: 2px;
  padding: 0.5rem 0.9rem;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
}

.chip.is-active,
.chip:hover {
  background: var(--green-800);
  border-color: var(--green-800);
  color: #fff;
}

.cart-bar {
  position: sticky;
  bottom: 0;
  z-index: 40;
  background: var(--green-900);
  color: #fff;
  padding: 0.9rem clamp(1.1rem, 3.5vw, 2.75rem);
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cart-bar.show { display: flex; }

.cart-bar strong { font-weight: 700; }

.cart-bar .btn {
  background: #fff;
  color: var(--green-900);
  border-color: #fff;
}

/* Form */
.apply-box { width: min(540px, calc(100% - 2.2rem)); margin: 0 auto; }
.apply-box .lede { margin-bottom: 1.75rem; }

.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 3vw, 1.75rem);
  margin-top: 2rem;
}

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

.tier {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.6rem 1.5rem 1.5rem;
  border-top: 3px solid var(--green-800);
  background:
    linear-gradient(180deg, rgba(31, 107, 69, 0.06), transparent 40%),
    var(--cream);
}

.tier-featured {
  border-top-color: var(--green-600);
  background:
    linear-gradient(180deg, rgba(61, 155, 104, 0.12), transparent 45%),
    var(--white);
}

/* Ownership tier: the elevated Founding Sponsor seat. */
.tier-sponsor {
  border-top-color: var(--green-950);
  background:
    linear-gradient(180deg, rgba(18, 53, 36, 0.1), transparent 45%),
    var(--white);
}

/* Four-across tier lineup (three dues paths + Founding Sponsor). */
.tier-grid-four { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1024px) {
  .tier-grid-four { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .tier-grid-four { grid-template-columns: 1fr; }
}

.tier-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-700);
}

.tier h3 {
  font-family: "Instrument Serif", "Iowan Old Style", Palatino, Georgia, serif;
  font-size: 2rem;
  color: var(--green-950);
  line-height: 1.1;
}

.tier-price {
  font-family: "Instrument Serif", "Iowan Old Style", Palatino, Georgia, serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--green-900);
  line-height: 1;
}

.tier-price span {
  font-family: "Sora", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--mute);
}

.tier-copy {
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.55;
}

.tier-list {
  list-style: none;
  margin: 0.25rem 0 0.5rem;
  padding: 0;
  flex: 1;
}

.tier-list li {
  position: relative;
  padding: 0.4rem 0 0.4rem 1.1rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
  border-top: 1px solid var(--line);
}

.tier-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 1px;
  background: var(--green-700);
}

.tier .btn { align-self: flex-start; margin-top: 0.35rem; }

form { border-top: 1px solid var(--line); padding-top: 1.4rem; }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: 0.95rem; }

label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.35rem;
}

/* Text/select/textarea only — never strip native checkbox/radio chrome. */
input:not([type="checkbox"]):not([type="radio"]):not([type="file"]):not([type="range"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="reset"]):not([type="hidden"]),
select,
textarea {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  color: var(--ink);
  font: inherit;
  /* 16px minimum: iOS Safari zooms the page on focus below this size */
  font-size: 1rem;
  padding: 0.75rem 0.85rem;
  outline: none;
  appearance: none;
}

input:not([type="checkbox"]):not([type="radio"]):not([type="file"]):not([type="range"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="reset"]):not([type="hidden"]):focus,
select:focus,
textarea:focus {
  border-color: var(--green-700);
  box-shadow: 0 0 0 3px rgba(31, 107, 69, 0.12);
}

input[type="checkbox"],
input[type="radio"] {
  width: 1.15rem;
  height: 1.15rem;
  margin: 0;
  padding: 0;
  accent-color: var(--green-800);
  cursor: pointer;
  flex-shrink: 0;
  appearance: auto;
  -webkit-appearance: auto;
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

textarea { min-height: 6.5rem; resize: vertical; }
.hp { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.turnstile-wrap {
  display: flex;
  justify-content: center;
  margin: 1rem 0 0.35rem;
  min-height: 0;
}

.turnstile-wrap:empty,
.turnstile-wrap[hidden] {
  display: none;
  margin: 0;
  min-height: 0;
}

button.submit {
  width: 100%;
  margin-top: 0.6rem;
  border: 1px solid var(--green-800);
  background: var(--green-800);
  color: #fff;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.95rem;
  border-radius: 999px;
  cursor: pointer;
}

button.submit:hover:not(:disabled) { background: var(--green-700); }
button.submit:disabled { opacity: 0.85; cursor: default; }

.note {
  margin-top: 0.9rem;
  text-align: center;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.received { display: none; border-top: 1px solid var(--line); padding-top: 1.4rem; }
.received.show { display: block; }
form.hide { display: none; }
.received h3 {
  font-family: "Instrument Serif", "Iowan Old Style", Palatino, Georgia, serif;
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  color: var(--green-900);
}
.received p { color: var(--ink-soft); }

/* Founder */
.page-hero {
  padding: 7.5rem 0 2.75rem;
  background:
    radial-gradient(ellipse 70% 80% at 100% 0%, rgba(61, 155, 104, 0.18), transparent 55%),
    var(--green-50);
  border-bottom: 1px solid var(--line);
}

.page-hero .meta {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-700);
  margin-top: 0.85rem;
}

.breadcrumbs {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  margin: 0 0 1.1rem;
  padding: 0;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--mute);
}
.breadcrumbs li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.breadcrumbs li:not(:last-child)::after {
  content: "/";
  color: var(--line-strong);
  font-weight: 400;
}
.breadcrumbs a {
  color: var(--green-800);
  text-decoration: none;
}
.breadcrumbs a:hover {
  text-decoration: underline;
}
.breadcrumbs [aria-current="page"] {
  color: var(--ink-soft);
}

.founder-hero {
  padding: 6.5rem 0 1.75rem;
  background:
    linear-gradient(180deg, var(--green-50) 0%, var(--cream) 100%);
}

.founder-hero-inner {
  max-width: 40rem;
  animation: founderIn 0.7s ease both;
}

.founder-hero h1 {
  font-family: "Instrument Serif", "Iowan Old Style", Palatino, Georgia, serif;
  font-size: clamp(2.6rem, 6vw, 4rem);
  font-weight: 600;
  line-height: 1.05;
  color: var(--green-950);
  letter-spacing: -0.02em;
}

.founder-hero .lede {
  margin-top: 1rem;
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 34rem;
  line-height: 1.65;
}

/* Full-bleed founder hero */
.founder-bleed {
  position: relative;
  min-height: min(92vh, 920px);
  display: grid;
  align-items: end;
  color: #f7f3e8;
  overflow: hidden;
}

.founder-bleed-photo {
  position: absolute;
  inset: 0;
}

.founder-bleed-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
  transform: scale(1.04);
  animation: founderKen 12s ease-out both;
}

.founder-bleed-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 22, 16, 0.35) 0%, rgba(10, 22, 16, 0.2) 35%, rgba(10, 22, 16, 0.82) 100%),
    linear-gradient(90deg, rgba(10, 22, 16, 0.55) 0%, rgba(10, 22, 16, 0.1) 55%, rgba(10, 22, 16, 0.35) 100%);
}

.founder-bleed-copy {
  position: relative;
  z-index: 2;
  padding: clamp(6.5rem, 12vh, 8rem) clamp(1.1rem, 3.5vw, 2.75rem) clamp(2.5rem, 6vh, 3.75rem);
  max-width: 42rem;
  animation: founderIn 0.85s ease both;
}

.founder-brand {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 1rem;
}

.founder-bleed h1 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.8rem, 7vw, 4.6rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: #fff;
}

.founder-bleed .lede {
  margin-top: 1.1rem;
  font-size: 1.12rem;
  line-height: 1.65;
  color: rgba(247, 243, 232, 0.88);
  max-width: 34rem;
}

.founder-bleed-actions {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.founder-glance {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.25rem 1.5rem;
  padding: 0.25rem 0;
}

.founder-glance .glance-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 0.35rem;
}

.founder-glance strong {
  display: block;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--green-950);
  line-height: 1.35;
}

.founder-glance a {
  color: var(--green-800);
}

.founder-letter-wrap {
  max-width: 44rem;
}

.founder-letter {
  margin-top: 1.25rem;
  padding: 1.75rem 0 0;
  border-top: 1px solid rgba(18, 53, 36, 0.15);
}

.founder-letter p {
  font-size: 1.12rem;
  line-height: 1.8;
  color: var(--ink-soft);
  margin-bottom: 1.2rem;
}

.founder-signoff {
  margin-top: 2rem !important;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.35rem !important;
  color: var(--green-950) !important;
  line-height: 1.35 !important;
}

.founder-signoff span {
  display: block;
  margin-top: 0.25rem;
  font-family: "Sora", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mute);
}

.founder-media {
  padding: 0.5rem 0 2.5rem;
}

.founder-feature {
  margin: 0;
  border-radius: 4px;
  overflow: hidden;
  background:
    linear-gradient(135deg, var(--green-100), var(--cream));
  animation: founderIn 0.85s ease 0.08s both;
}

.founder-feature img {
  width: 100%;
  height: auto;
  max-height: min(82vh, 920px);
  object-fit: contain;
  object-position: center top;
  display: block;
  margin: 0 auto;
}

.founder-caption {
  margin-top: 0.85rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  animation: founderIn 0.7s ease 0.18s both;
}

.founder-story-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(1.5rem, 3.5vw, 2.75rem);
  align-items: start;
}

.founder-meta {
  position: sticky;
  top: 5.5rem;
  padding-top: 0.25rem;
  animation: founderIn 0.7s ease 0.22s both;
}

.founder-meta .name {
  font-family: "Instrument Serif", "Iowan Old Style", Palatino, Georgia, serif;
  font-size: 1.45rem;
  color: var(--green-950);
  margin-bottom: 0.35rem;
}

.founder-meta p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin-bottom: 0.45rem;
}

.founder-meta-note {
  margin-top: 1.1rem !important;
  margin-bottom: 1.25rem !important;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
  color: var(--ink-soft) !important;
  font-size: 0.95rem !important;
  line-height: 1.55;
}

.founder-story p {
  color: var(--ink-soft);
  margin-bottom: 1.15rem;
  max-width: 40rem;
  font-size: 1.05rem;
  line-height: 1.75;
}

.founder-story h2 { margin-top: 2.25rem; }

.founder-pull {
  margin: 2.25rem 0 0;
  padding: 1.35rem 0 0;
  border-top: 1px solid var(--line);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.35rem, 2.5vw, 1.7rem);
  font-style: italic;
  line-height: 1.4;
  color: var(--green-900);
  max-width: 28rem;
}

.founder-pull cite {
  display: block;
  margin-top: 0.75rem;
  font-family: "Sora", sans-serif;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mute);
}

.founder-build-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem 1.75rem;
  margin-top: 1.75rem;
}

.founder-build-grid h3 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 0.45rem;
}

.founder-build-grid p {
  color: rgba(244, 249, 245, 0.82);
  font-size: 0.98rem;
  line-height: 1.6;
}

.founder-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 1.75rem;
}

.founder-timeline .when {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: 0.55rem;
}

.founder-timeline h3 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.25rem;
  color: var(--green-950);
  margin-bottom: 0.45rem;
}

.founder-timeline p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.55;
}

.founder-note-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.founder-secondary {
  margin: 0;
  overflow: hidden;
  border-radius: 2px;
}

.founder-secondary img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
}

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

.founder-glance > div {
  min-width: 0;
  padding-right: 0.5rem;
  border-right: 1px solid var(--line);
}

.founder-glance > div:last-child {
  border-right: none;
  padding-right: 0;
}

.founder-build-grid article,
.founder-timeline article {
  min-width: 0;
}

.btn-on-photo {
  background: #fff;
  color: var(--green-900);
  border-color: #fff;
}

.btn-on-photo:hover {
  background: var(--cream);
  border-color: var(--cream);
  color: var(--green-950);
}

.btn-line-on-photo {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-line-on-photo:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  color: #fff;
}

@keyframes founderIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes founderKen {
  from { transform: scale(1.08); }
  to { transform: scale(1.04); }
}

.monogram {
  width: 100%;
  aspect-ratio: 4 / 5;
  display: grid;
  place-items: center;
  background:
    linear-gradient(160deg, rgba(11,36,24,0.28), rgba(11,36,24,0.62)),
    url("/assets/hero-fairway.jpg") center/cover;
  border-radius: 18px;
  margin-bottom: 1rem;
  border: 1px solid var(--line);
}

.monogram span {
  font-family: "Instrument Serif", "Iowan Old Style", Palatino, Georgia, serif;
  font-size: clamp(3rem, 8vw, 4.4rem);
  font-style: italic;
  color: #E8F3EC;
}

/* Footer */
.foot {
  border-top: 1px solid var(--line);
  padding: 1.6rem clamp(1.1rem, 3.5vw, 2.75rem);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  align-items: center;
  color: var(--mute);
  font-size: 0.9rem;
  background: var(--green-50);
}

.foot .brand-mini,
.foot-wide .brand-mini {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--green-900);
  font-weight: 700;
}

.foot .brand-mini img,
.foot-wide .brand-mini img { width: 28px; height: 28px; }

.partner-note {
  margin-top: 1rem;
  padding: 1rem 1.15rem;
  background: var(--green-50);
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.partner-note strong { color: var(--green-900); }

.shop-hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(1.75rem, 4.5vw, 3.25rem);
  align-items: center;
}

.shop-hero-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 2px;
  background: #eef2ef;
  border: none;
}

.shop-hero-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.shop-hero-photo.is-product img {
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
  background: #eef2ef;
  padding: 6%;
}

.shop-hero .partner-note {
  margin-top: 1.25rem;
  max-width: 38rem;
}

.shop-hero .btn-row {
  margin-top: 1.35rem;
}

/* Depth pages */
/* Shared interior hero rhythm: eyebrow → H1 → lede → switch/CTA */
.page-hero.compact {
  padding: 7.25rem 0 2.4rem;
}
.page-hero.compact .eyebrow {
  margin: 0 0 0.55rem;
}
.page-hero.compact h1 {
  margin: 0 0 0.7rem;
  max-width: 16ch;
}
.page-hero.compact .lede {
  margin: 0;
  max-width: 38rem;
}
.page-hero.compact .page-switch {
  margin-top: 1.5rem;
  padding-top: 1.1rem;
}
.page-hero.compact .hero-actions,
.page-hero.compact .btn-row {
  margin-top: 1.35rem;
}

.page-hero h1 { margin-bottom: 0.65rem; }

.page-hero .lede { margin-top: 0.35rem; }

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2.25rem;
  counter-reset: step;
}

@media (max-width: 1100px) {
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.step {
  border-top: 2px solid var(--green-800);
  padding-top: 1.1rem;
}

.step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--green-700);
  margin-bottom: 0.55rem;
}

.step h3 {
  font-family: "Instrument Serif", "Iowan Old Style", Palatino, Georgia, serif;
  font-size: 1.35rem;
  color: var(--green-950);
  margin-bottom: 0.45rem;
}

.step p {
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.65;
}

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

.chapter {
  padding: 1.35rem 0 1.1rem;
  border-top: 1px solid var(--line-strong);
}

.chapter h3 {
  font-family: "Instrument Serif", "Iowan Old Style", Palatino, Georgia, serif;
  font-size: 1.45rem;
  color: var(--green-950);
  margin-bottom: 0.4rem;
}

.chapter h3 a {
  color: inherit;
  text-decoration: none;
}
.chapter h3 a:hover {
  color: var(--green-800);
  text-decoration: underline;
}

.chapter .region {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: 0.65rem;
}

.chapter p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.65;
}

.chapter.is-live {
  border-top-color: var(--green-800);
}

.status-live {
  display: inline;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-800);
}

/* Leadership portrait slot: graceful without a photo file yet */
.leadership-portrait {
  margin: 0 0 1.15rem;
  width: min(100%, 11.5rem);
  aspect-ratio: 4 / 5;
  border-radius: 2px;
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(31, 107, 69, 0.14), rgba(18, 53, 36, 0.08)),
    var(--green-50);
  border: 1px solid var(--line);
}

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

.leadership-portrait-fallback {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  font-family: "Instrument Serif", "Iowan Old Style", Palatino, Georgia, serif;
  font-size: 2.25rem;
  letter-spacing: 0.08em;
  color: var(--green-800);
  user-select: none;
}

.leadership-portrait:has(img:not([hidden])) .leadership-portrait-fallback {
  display: none;
}

.date-status {
  display: inline-block;
  margin-top: 0.35rem;
  font-family: "Sora", system-ui, sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mute);
}

.date-status.is-planned {
  color: var(--mute);
}

.date-status.is-confirmed {
  color: var(--green-800);
}

.chapter-date-card .date-status {
  margin-top: 0;
}

.band-deep .date-status.is-confirmed {
  color: var(--green-100);
}

/* Meet the team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}

.team-card {
  display: grid;
  gap: 1.35rem;
}

.team-card-photo {
  margin: 0;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 2px;
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(31, 107, 69, 0.14), rgba(18, 53, 36, 0.08)),
    var(--green-50);
  border: 1px solid var(--line);
}

.team-card-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card-photo.leadership-portrait {
  width: 100%;
  margin: 0;
}

.team-card-photo .leadership-portrait-fallback {
  font-size: clamp(2.75rem, 6vw, 3.75rem);
}

.team-card-body h2 {
  margin: 0.2rem 0 0.65rem;
  font-size: clamp(1.85rem, 3.2vw, 2.35rem);
}

.team-card-role {
  margin: -0.35rem 0 0.85rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.team-card-body p + p {
  margin-top: 0.85rem;
}

@media (max-width: 820px) {
  .team-grid {
    grid-template-columns: 1fr;
    gap: 2.75rem;
  }
}

.chapter-calendar {
  margin-top: 1.75rem;
}

.chapter-calendar .calendar-note {
  max-width: 40rem;
  margin-bottom: 1.5rem;
  text-align: left;
}

.calendar-list {
  display: grid;
  gap: 0;
}

.calendar-item {
  display: grid;
  grid-template-columns: minmax(9rem, 12rem) 1fr;
  gap: 1.25rem 1.75rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--line);
}

.calendar-item:first-child {
  border-top: 0;
  padding-top: 0;
}

.calendar-when {
  display: grid;
  gap: 0.25rem;
  align-content: start;
}

.calendar-when strong {
  font-family: "Sora", system-ui, sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
}

.calendar-when span {
  font-size: 0.82rem;
  color: var(--mute);
}

.calendar-body .eyebrow {
  margin-bottom: 0.35rem;
}

.calendar-body h3 {
  font-family: "Instrument Serif", "Iowan Old Style", Palatino, Georgia, serif;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 400;
  color: var(--green-950);
  margin: 0 0 0.4rem;
}

.calendar-body p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
  max-width: 38rem;
}

.band-deep .calendar-when strong,
.band-deep .calendar-body h3 {
  color: var(--cream);
}

.band-deep .calendar-when span,
.band-deep .calendar-body p,
.band-deep .calendar-note {
  color: rgba(250, 251, 248, 0.78);
}

.band-deep .calendar-item {
  border-top-color: rgba(250, 251, 248, 0.18);
}

.band-deep .status-live,
.band-deep .calendar-body .eyebrow {
  color: var(--green-100);
}

@media (max-width: 640px) {
  .calendar-item {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  .rhythm-list li {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .leadership-portrait {
    width: min(100%, 9.5rem);
  }
}

.rhythm-list {
  list-style: none;
  margin-top: 1.75rem;
  max-width: 40rem;
}

.rhythm-list li {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}

.rhythm-list li:last-child { border-bottom: 1px solid var(--line); }

.rhythm-list strong {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-800);
  padding-top: 0.15rem;
}

.rhythm-list span {
  color: var(--ink-soft);
  line-height: 1.6;
}

.faq-list {
  margin-top: 1.75rem;
  max-width: 44rem;
}

.faq-item {
  border-top: 1px solid var(--line);
}

.faq-item:last-child { border-bottom: 1px solid var(--line); }

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.1rem 1.75rem 1.1rem 0;
  font-family: "Instrument Serif", "Iowan Old Style", Palatino, Georgia, serif;
  font-size: 1.2rem;
  color: var(--green-950);
  position: relative;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 1.05rem;
  font-family: "Sora", sans-serif;
  font-size: 1.2rem;
  color: var(--green-700);
}

.faq-item[open] summary::after { content: "−"; }

.faq-item p {
  padding: 0 0 1.2rem;
  color: var(--ink-soft);
  max-width: 40rem;
  line-height: 1.7;
}

.legal {
  max-width: 42rem;
}

.legal h2 {
  margin-top: 2.4rem;
  font-size: 1.45rem;
}

.legal p,
.legal li {
  color: var(--ink-soft);
  margin-bottom: 0.9rem;
  line-height: 1.7;
}

.legal ul {
  margin: 0 0 1.1rem 1.2rem;
}

.legal .updated {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
}

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

.deep-link {
  display: block;
  padding: 1.35rem 0 0.25rem;
  border-top: 2px solid var(--green-800);
}

.deep-link h3 {
  font-family: "Instrument Serif", "Iowan Old Style", Palatino, Georgia, serif;
  font-size: 1.3rem;
  color: var(--green-950);
  margin-bottom: 0.4rem;
}

.deep-link p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0.85rem;
}

.deep-link .link {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-800);
}

.deep-link:hover .link { color: var(--green-700); }

.standards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2.5rem;
  margin-top: 2rem;
}

.standard h3 {
  font-family: "Instrument Serif", "Iowan Old Style", Palatino, Georgia, serif;
  font-size: 1.25rem;
  color: var(--green-950);
  margin-bottom: 0.45rem;
}

.standard p {
  color: var(--ink-soft);
  line-height: 1.65;
  font-size: 0.98rem;
}

.foot-wide {
  display: grid;
  gap: 1.5rem;
  padding: 2.4rem
    calc(clamp(1.1rem, 3.5vw, 2.75rem) + env(safe-area-inset-right, 0px))
    calc(1.6rem + env(safe-area-inset-bottom, 0px))
    calc(clamp(1.1rem, 3.5vw, 2.75rem) + env(safe-area-inset-left, 0px));
  border-top: 1px solid var(--line);
  background: var(--green-50);
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 1.5rem 2rem;
}

.foot-col h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-800);
  margin-bottom: 0.75rem;
}

.foot-col a {
  display: block;
  color: var(--ink-soft);
  font-size: 0.92rem;
  margin-bottom: 0.45rem;
}

.foot-col a:hover { color: var(--green-800); }

.foot-col p {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.55;
  max-width: 18rem;
}

.foot-scripture {
  padding-top: 1.35rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 0.85rem;
}

.foot-scripture p {
  font-family: "Instrument Serif", "Iowan Old Style", Palatino, Georgia, serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--green-900);
  line-height: 1.5;
  margin: 0;
}

.foot-scripture cite {
  font-style: normal;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-800);
  white-space: nowrap;
}

.foot-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.25rem;
  margin-top: 1.35rem;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.9rem;
}

/* Mission page */
.mission-statement {
  max-width: 46rem;
}

.mission-statement .lead-line {
  font-family: "Instrument Serif", "Iowan Old Style", Palatino, Georgia, serif;
  font-size: clamp(1.5rem, 3.2vw, 2.15rem);
  font-weight: 500;
  line-height: 1.3;
  color: var(--green-950);
  letter-spacing: -0.02em;
  margin-bottom: 1.35rem;
}

.mission-statement .lead-line em {
  font-style: italic;
  color: var(--green-700);
}

.mission-statement p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1.1rem;
  max-width: 42rem;
}

.verse {
  border-left: 3px solid var(--green-700);
  padding: 0.35rem 0 0.35rem 1.25rem;
  margin: 1.75rem 0;
  max-width: 40rem;
}

.verse blockquote {
  font-family: "Instrument Serif", "Iowan Old Style", Palatino, Georgia, serif;
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--green-900);
  margin: 0 0 0.5rem;
}

.verse cite {
  font-style: normal;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-800);
}

.band-deep .verse { border-left-color: #8FCBAA; }
.band-deep .verse blockquote { color: #EAF6EF; }
.band-deep .verse cite { color: #8FCBAA; }

/* Scholarly / thesis section */
.scholar {
  max-width: 44rem;
}

.scholar .kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-700);
  margin: 2.25rem 0 0.6rem;
}

.scholar p {
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.78;
  margin-bottom: 1.1rem;
}

.scholar p strong { color: var(--ink); font-weight: 600; }

.scholar h3 {
  font-family: "Instrument Serif", "Iowan Old Style", Palatino, Georgia, serif;
  font-size: 1.5rem;
  color: var(--green-950);
  letter-spacing: -0.01em;
  margin: 2.4rem 0 0.7rem;
}

.scholar .abstract {
  padding: 1.35rem 1.5rem;
  background: var(--green-50);
  border: 1px solid var(--line);
  border-radius: 16px;
  margin-bottom: 1.9rem;
}

.scholar .abstract p {
  margin-bottom: 0;
  font-size: 1.05rem;
  color: var(--ink);
}

.scholar .abstract .abstract-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: 0.55rem;
}

.footnotes {
  margin-top: 2.5rem;
  padding-top: 1.35rem;
  border-top: 1px solid var(--line);
  max-width: 44rem;
}

.footnotes h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-800);
  margin-bottom: 0.85rem;
}

.footnotes ol {
  margin: 0 0 0 1.15rem;
  padding: 0;
}

.footnotes li {
  color: var(--mute);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 0.55rem;
}

.footnotes .footnote-back {
  margin-left: 0.35em;
  font-size: 0.78em;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--green-800);
}

.footnotes .footnote-back:hover,
.footnotes .footnote-back:focus-visible {
  text-decoration: underline;
}

.nav-more { display: none; }

.nav-menu {
  position: relative;
  list-style: none;
}

.nav-menu-btn {
  appearance: none;
  border: 1px solid transparent;
  background: transparent;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: inherit;
  cursor: pointer;
  padding: 0.35rem 0.15rem;
}

.top:not(.is-solid) .nav-menu-btn { color: rgba(255,255,255,0.88); }
.top.is-solid .nav-menu-btn { color: var(--ink-soft); }
.nav-menu-btn:hover,
.nav-menu-btn[aria-expanded="true"] { color: var(--green-800); }
.top:not(.is-solid) .nav-menu-btn:hover,
.top:not(.is-solid) .nav-menu-btn[aria-expanded="true"] { color: #fff; }

.nav-menu-panel {
  position: absolute;
  top: calc(100% + 0.65rem);
  right: 0;
  z-index: 60;
  width: min(42rem, calc(100vw - 1.5rem));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 1.35rem;
  row-gap: 0.95rem;
  padding: 1.15rem 1.25rem 1.25rem;
  background: var(--cream);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
}

.nav-menu-group {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.nav-menu-backdrop {
  display: none;
}

.nav-menu-panel[hidden] { display: none !important; }

.nav-menu-label {
  margin: 0 0 0.25rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-800);
}

.nav-menu-panel a {
  display: block;
  padding: 0.32rem 0.05rem;
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink-soft) !important;
}

.nav-menu-panel a:hover,
.nav-menu-panel a[aria-current="page"] {
  color: var(--green-900) !important;
}

.nav-menu-panel a[href="/apply.html"] {
  margin-top: 0.35rem;
  padding-top: 0.55rem;
  border-top: 1px solid var(--line);
  font-weight: 700;
  color: var(--green-800) !important;
}

body.nav-menu-open { overflow: hidden; }

.scripture-credit {
  margin: 1rem auto 0;
  max-width: 36rem;
  font-size: 0.72rem;
  line-height: 1.5;
  color: var(--mute);
  text-align: center;
}

/* Application wizard */
.apply-shell {
  width: min(720px, calc(100% - 2.2rem));
  margin: 0 auto;
}

.apply-progress {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.45rem;
  margin: 0 0 1.75rem;
}

.apply-progress .pip {
  height: 4px;
  border-radius: 999px;
  background: var(--line-strong);
}

.apply-progress .pip.is-done,
.apply-progress .pip.is-current {
  background: var(--green-800);
}

.apply-progress .pip.is-current {
  box-shadow: 0 0 0 3px rgba(31, 107, 69, 0.15);
}

.apply-step-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: 0.55rem;
}

.apply-panel { display: none; }
.apply-panel.is-active { display: block; }

.apply-panel h2 {
  font-size: clamp(1.55rem, 3vw, 2rem);
  margin-bottom: 0.55rem;
}

.apply-panel .panel-lede {
  color: var(--ink-soft);
  margin-bottom: 1.4rem;
  line-height: 1.65;
}

.field .hint {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.86rem;
  color: var(--ink-soft);
}

.field textarea.long { min-height: 8.5rem; }

.check-list {
  display: grid;
  gap: 0.85rem;
  margin: 1rem 0 1.25rem;
}

.check-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  padding: 0.9rem 0;
  border-top: 1px solid var(--line);
  cursor: pointer;
}

.check-item:last-child { border-bottom: 1px solid var(--line); }

.check-item input {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.2rem;
  accent-color: var(--green-800);
  cursor: pointer;
}

.check-item label {
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-soft);
  line-height: 1.55;
  cursor: pointer;
  margin-bottom: 0;
}

.wizard-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.wizard-nav .btn,
.wizard-nav .submit {
  min-width: 9rem;
}

.gate-note {
  margin: 1.25rem 0 0;
  padding: 1rem 1.15rem;
  border-left: 3px solid var(--green-800);
  background: var(--green-50);
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.6;
}

.invite-box {
  width: min(480px, calc(100% - 2.2rem));
  margin: 0 auto;
}

@media (max-width: 640px) {
  .apply-progress { grid-template-columns: repeat(5, 1fr); }
  .wizard-nav { flex-direction: column; }
  .wizard-nav .btn,
  .wizard-nav .submit { width: 100%; }
}

.compare {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
  font-size: 0.95rem;
}

.compare th,
.compare td {
  text-align: left;
  padding: 0.9rem 0.85rem;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  vertical-align: top;
}

.compare th {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-800);
  border-top: none;
  border-bottom: 2px solid var(--green-800);
}

.compare td:first-child {
  font-weight: 600;
  color: var(--ink);
  width: 28%;
}

.compare .yes { color: var(--green-800); font-weight: 600; }

.agenda {
  margin-top: 1.75rem;
  max-width: 40rem;
}

.agenda-item {
  display: grid;
  grid-template-columns: 6.5rem 1fr;
  gap: 1rem;
  padding: 0.95rem 0;
  border-top: 1px solid var(--line);
}

.agenda-item:last-child { border-bottom: 1px solid var(--line); }

.agenda-item .when {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-800);
  padding-top: 0.15rem;
}

.agenda-item h3 {
  font-family: "Instrument Serif", "Iowan Old Style", Palatino, Georgia, serif;
  font-size: 1.15rem;
  color: var(--green-950);
  margin-bottom: 0.25rem;
}

.agenda-item p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.6;
}

.banner-media {
  margin: 0 0 2rem;
  border-radius: 4px;
  overflow: hidden;
  background: var(--green-100);
}

.banner-media img {
  width: 100%;
  height: min(48vh, 420px);
  object-fit: cover;
  display: block;
}

.callout-strip {
  margin-top: 2rem;
  padding: 1.35rem 0 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.callout-strip strong {
  display: block;
  font-family: "Instrument Serif", "Iowan Old Style", Palatino, Georgia, serif;
  font-size: 1.2rem;
  color: var(--green-950);
  margin-bottom: 0.35rem;
  font-weight: 600;
}

.callout-strip p {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.6;
}

@media (max-width: 1100px) {
  .nav .hide-lg { display: none; }
  .nav-more { display: list-item; }
}

@media (max-width: 720px) {
  .top {
    gap: 0.75rem;
    padding: calc(0.95rem + env(safe-area-inset-top, 0px))
      calc(1.15rem + env(safe-area-inset-right, 0px))
      0.95rem
      calc(1.15rem + env(safe-area-inset-left, 0px));
  }

  .wrap,
  .apply-shell,
  .invite-box {
    width: min(1120px, calc(100% - 2.5rem));
  }

  .nav { gap: 0.85rem; }
  .nav a { font-size: 0.74rem; }
  .nav .cta { padding: 0.55rem 0.8rem; font-size: 0.72rem; }
  .nav-menu-btn { padding: 0.35rem 0.15rem; }

  /* Mark-only lockup: clip the wordmark SVG to the crest */
  .brand-lockup {
    width: 38px;
    height: 38px;
    overflow: hidden;
    flex: 0 0 38px;
  }

  .brand-lockup img.wordmark {
    height: 38px;
    width: auto;
    max-width: none;
    object-fit: contain;
    object-position: left center;
  }

  .page-hero {
    padding: 5.75rem 0 2rem;
  }

  .page-hero.compact {
    padding: 5.35rem 0 1.65rem;
  }
  .page-hero.compact h1 { max-width: none; }

  .section { padding: clamp(2.75rem, 8vw, 4.5rem) 0; }

  .hero-copy h1 {
    font-size: clamp(2.2rem, 9.5vw, 3.1rem);
    line-height: 1.08;
    max-width: none;
  }

  .hero-actions,
  .btn-row {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn,
  .btn-row .btn {
    width: 100%;
  }

  .nav-menu-panel {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(20rem, calc(100vw - 1.25rem));
    height: 100vh;
    height: 100dvh;
    max-height: none;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    padding:
      calc(5rem + env(safe-area-inset-top, 0px))
      1.35rem
      calc(1.75rem + env(safe-area-inset-bottom, 0px));
    border: 0;
    border-left: 1px solid var(--line-strong);
    box-shadow: -18px 0 40px rgba(11, 36, 24, 0.16);
    grid-template-columns: 1fr;
    row-gap: 1.15rem;
  }

  .nav-menu-panel a { padding: 0.45rem 0.05rem; font-size: 0.95rem; }

  body.nav-menu-open .top { z-index: 80; }

  body.nav-menu-open::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 70;
    background: rgba(11, 36, 24, 0.4);
  }
}

@media (max-width: 900px) {
  .split,
  .pillars,
  .shop-teaser,
  .founder-story-layout,
  .product-grid,
  .tier-grid,
  .steps,
  .chapter-grid,
  .deep-links,
  .standards-grid,
  .foot-grid,
  .callout-strip,
  .founder-build-grid,
  .founder-timeline { grid-template-columns: 1fr 1fr; }
  .founder-glance { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .founder-glance > div:nth-child(3) { border-right: none; }
  .founder-meta { position: static; }
  .founder-note-split { grid-template-columns: 1fr; }
  .nav .hide-md { display: none; }
}

@media (max-width: 820px) {
  .founder-story-layout { grid-template-columns: 1fr; }
  .founder-feature img { max-height: none; }
  .shop-hero-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .product-grid,
  .pillars,
  .shop-teaser-visual,
  .tier-grid,
  .steps,
  .chapter-grid,
  .deep-links,
  .standards-grid,
  .foot-grid,
  .callout-strip,
  .rhythm-list li,
  .agenda-item,
  .founder-glance,
  .founder-build-grid,
  .founder-timeline { grid-template-columns: 1fr; }
  .founder-glance > div {
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding: 0 0 0.85rem;
  }
  .founder-glance > div:last-child { border-bottom: none; padding-bottom: 0; }
  .shop-teaser { grid-template-columns: 1fr; }
  .row2 { grid-template-columns: 1fr; }
  .foot,
  .foot-scripture,
  .foot-bottom { flex-direction: column; align-items: flex-start; }
  .rhythm-list strong { margin-bottom: 0.2rem; }
  .compare { display: block; overflow-x: auto; }
  .founder-bleed { min-height: min(88vh, 760px); }
  .founder-bleed-copy { max-width: none; }
  .partner-note { border-radius: 4px; }
  .tier { padding: 1.35rem 1.15rem; }
}

.turnstile-slot {
  margin: 1rem 0;
  min-height: 1.5rem;
}
.turnstile-slot[hidden] {
  display: none !important;
}

.shop-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem 1.5rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 0.15rem;
}
.shop-toolbar #catalog-count {
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: var(--mute);
}
.shop-catalog-head {
  padding-bottom: 0.75rem;
}
.shop-catalog {
  padding-top: 1.25rem;
}
.shop-kit-note {
  max-width: 42rem;
}
.product-badge {
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  z-index: 1;
  padding: 0.28rem 0.5rem;
  border-radius: 2px;
  background: var(--green-900, #123524);
  color: #fff;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.product-badge-house { background: var(--green-900, #123524); }
.product-badge-premium { background: #3a3a3a; }
.product-lead {
  margin: 0.2rem 0 0;
  font-size: 0.78rem;
  line-height: 1.4;
  color: var(--mute);
}

/* Dual-mark / crest photo slots: honest placeholders until real product photos land */
.mark-slot {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 1.5rem 1.25rem;
  text-align: center;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(31, 107, 69, 0.16), transparent 62%),
    linear-gradient(160deg, var(--green-50) 0%, var(--cream) 55%, #e7efe9 100%);
}
.mark-slot > img {
  width: 3.35rem;
  height: 3.35rem;
  border-radius: 2px;
  display: block;
  object-fit: contain;
}
.mark-slot-rule {
  display: block;
  width: 2.25rem;
  height: 1px;
  background: var(--line-strong);
}
.mark-slot-brand {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  line-height: 1.15;
  color: var(--green-900);
  max-width: 12ch;
}
.mark-slot-note {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mute);
  max-width: 18ch;
}
.drawer-media {
  position: relative;
  min-height: 16rem;
  background: #eef2ef;
  display: grid;
  place-items: center;
}
.drawer-media .mark-slot {
  position: relative;
  min-height: 18rem;
}
.drawer-media .product-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1;
}


/* ——— Editorial home craft ——— */
.wrap.narrow { width: min(720px, calc(100% - 2.2rem)); }

.statement {
  padding-block: clamp(4.5rem, 10vw, 7.25rem);
  background:
    radial-gradient(ellipse 70% 55% at 8% 0%, rgba(31, 107, 69, 0.08), transparent 55%),
    var(--cream);
}
.statement-kicker {
  margin: 0 0 1.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-700);
}
.statement-display {
  margin: 0;
  max-width: 14ch;
  font-family: "Instrument Serif", "Iowan Old Style", Palatino, Georgia, serif;
  font-size: clamp(2.5rem, 5.8vw, 3.9rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--green-950);
}
.statement-body {
  margin: 1.6rem 0 0;
  max-width: 36rem;
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

.band-ink {
  background: var(--green-950);
  color: #E8F3EC;
  padding-block: clamp(4rem, 8vw, 6rem);
}
.band-ink h2,
.band-ink h3 { color: #E8F3EC; }
.band-ink .lede,
.band-ink p { color: rgba(232, 243, 236, 0.78); }

.pillar-rail {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(232, 243, 236, 0.16);
}
.pillar-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.45rem;
  padding: 1.7rem 0;
  border-bottom: 1px solid rgba(232, 243, 236, 0.14);
}
.pillar-line h3 {
  margin: 0;
  font-family: "Instrument Serif", "Iowan Old Style", Palatino, Georgia, serif;
  font-size: clamp(1.55rem, 2.6vw, 2rem);
  font-weight: 400;
  color: #fff;
}
.pillar-line p {
  margin: 0;
  max-width: 40rem;
  line-height: 1.65;
  color: rgba(232, 243, 236, 0.72);
}

.start-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 2rem;
  border-top: 1px solid var(--line-strong);
}
.start-rail a {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.35rem 1.1rem 1.35rem 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: color 220ms ease, transform 280ms ease;
}
.start-rail a + a {
  padding-left: 1.1rem;
  border-left: 1px solid var(--line);
}
.start-rail span {
  font-family: "Instrument Serif", "Iowan Old Style", Palatino, Georgia, serif;
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  font-weight: 400;
  color: var(--green-900);
}
.start-rail em {
  font-style: normal;
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--mute);
}
.start-rail a:hover span { color: var(--green-800); }
@media (prefers-reduced-motion: no-preference) {
  .start-rail a:hover { transform: translateY(-2px); }
}

@media (max-width: 900px) {
  .start-rail { grid-template-columns: 1fr 1fr; }
  .start-rail a + a { padding-left: 0; border-left: 0; }
  .start-rail a:nth-child(even) { padding-left: 1.1rem; border-left: 1px solid var(--line); }
}
@media (max-width: 560px) {
  .start-rail { grid-template-columns: 1fr; }
  .start-rail a,
  .start-rail a:nth-child(even) {
    padding-left: 0;
    border-left: 0;
  }
}

/* Must beat `.home .section` specificity or the photo band gets ~6rem empty padding. */
.photo-break,
.home .section.photo-break,
.home .photo-break {
  padding: 0;
  margin: 0;
}
.bleed-photo {
  position: relative;
  margin: 0;
  min-height: min(52vh, 520px);
  max-height: min(62vh, 640px);
  overflow: hidden;
}
.bleed-photo img {
  width: 100%;
  height: 100%;
  min-height: min(52vh, 520px);
  max-height: min(62vh, 640px);
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

.split-asymmetric {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
.soft-em {
  font-family: "Instrument Serif", "Iowan Old Style", Palatino, Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--green-900);
}
.text-link {
  display: inline-block;
  margin-top: 0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-900);
  border-bottom: 1px solid rgba(31, 107, 69, 0.45);
  padding-bottom: 0.12rem;
}
.text-link:hover { border-color: var(--green-800); color: var(--green-800); }

.quiet-list h3 {
  margin: 0 0 0.85rem;
  font-family: "Instrument Serif", "Iowan Old Style", Palatino, Georgia, serif;
  font-size: 1.55rem;
  font-weight: 400;
}
.quiet-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.quiet-list li {
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  line-height: 1.55;
}

.city-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.25rem;
  margin: 1.5rem 0 0;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: rgba(232, 243, 236, 0.88);
}
.city-line span,
.city-line a {
  color: #D7F0E0;
  text-decoration: none;
}
.city-line a:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}
.founding-note {
  margin: 1.5rem 0 0;
  max-width: 38ch;
  font-family: "Instrument Serif", "Iowan Old Style", Palatino, Georgia, serif;
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.45;
  color: #fff;
}

.tier-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 2.5rem;
  border-top: 1px solid var(--line);
}
.tier-plain {
  padding: 2rem clamp(1rem, 2vw, 1.75rem);
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
}
.tier-plain:last-child { border-right: 0; }
.tier-plain:first-child { padding-left: 0; }
.tier-plain:last-child { padding-right: 0; }
.tier-plain h3 {
  margin: 0;
  font-family: "Instrument Serif", "Iowan Old Style", Palatino, Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 400;
}
.tier-plain .tier-price {
  margin: 0.7rem 0 0;
  font-size: 1.35rem;
  font-weight: 500;
}
.tier-plain .tier-price span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--mute);
}
.tier-plain p { margin: 1rem 0 0; color: var(--ink-soft); max-width: 30rem; line-height: 1.65; }
.tier-plain .text-link { margin-top: 1.25rem; }

.shop-strip .lede { margin-top: 0.75rem; }
.shop-strip-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 2px;
}
.shop-strip-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  transition: transform 1.15s cubic-bezier(0.22, 1, 0.36, 1);
}
.shop-strip-photo:hover img { transform: scale(1.03); }

/* Member Kit — full-bleed stage + inventory (not a cramped product card) */
.member-kit {
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
}
.member-kit-intro {
  max-width: 40rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}
.member-kit-intro .lede {
  margin-top: 0.75rem;
}
.member-kit-stage {
  margin: 0;
  width: 100%;
  overflow: hidden;
  background: var(--green-950);
}
.member-kit-stage img {
  width: 100%;
  max-height: min(72vh, 640px);
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center 58%;
  display: block;
  transform: scale(1.01);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.member-kit-stage:hover img {
  transform: scale(1.035);
}
.member-kit-inventory {
  list-style: none;
  margin: clamp(1.75rem, 3.5vw, 2.5rem) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}
.member-kit-inventory li {
  margin: 0;
  padding: 1.15rem 1rem 1.15rem 0;
  font-family: "Instrument Serif", "Iowan Old Style", Palatino, Georgia, serif;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.35;
  color: var(--ink);
  border-right: 1px solid var(--line);
}
.member-kit-inventory li:last-child {
  border-right: 0;
  padding-right: 0;
}
.member-kit-note {
  margin-top: 1.25rem;
  max-width: 40rem;
  color: var(--ink-soft);
  line-height: 1.65;
}
.member-kit-note .text-link {
  margin-top: 0;
  display: inline;
}

@media (max-width: 900px) {
  .member-kit-inventory {
    grid-template-columns: 1fr;
  }
  .member-kit-inventory li {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 0.95rem 0;
  }
  .member-kit-inventory li:last-child {
    border-bottom: 0;
  }
  .member-kit-stage img {
    max-height: min(52vh, 420px);
    aspect-ratio: 4 / 3;
  }
}

@media (prefers-reduced-motion: reduce) {
  .member-kit-stage img,
  .member-kit-stage:hover img {
    transition: none;
    transform: none;
  }
}

.index-strip {
  padding-block: 2.75rem 3.5rem;
  border-top: 1px solid var(--line);
  background: var(--cream);
}
.index-title {
  margin: 0 0 1.15rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-700);
  font-family: "Sora", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.index-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.4rem;
  align-items: baseline;
}
.index-nav a {
  font-family: "Instrument Serif", "Iowan Old Style", Palatino, Georgia, serif;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 400;
  color: var(--ink);
  border-bottom: 1px solid transparent;
}
.index-nav a:hover {
  color: var(--green-800);
  border-color: rgba(31, 107, 69, 0.45);
}

.home .section { padding-block: clamp(3.25rem, 7vw, 5.25rem); }
.home .section.photo-break { padding-block: 0; }
.home .section.statement { padding-block: clamp(3.5rem, 7vw, 5rem); }
.home .section.band-ink { padding-block: clamp(3.25rem, 6.5vw, 4.75rem); }
.home .section.shop-strip,
.home .section#founder-teaser {
  padding-block: clamp(3.25rem, 6.5vw, 5rem);
}
.home .quote-large { padding-block: clamp(2.75rem, 5.5vw, 3.75rem); }
.home .index-strip { padding-block: 2.25rem 3rem; }

/* Founder editorial hero + gallery */
.founder-hero-split {
  padding: 5.75rem 0 1.5rem;
  background:
    radial-gradient(ellipse 55% 70% at 100% 0%, rgba(31, 107, 69, 0.12), transparent 55%),
    var(--cream);
}
.founder-hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: clamp(1.5rem, 3.5vw, 2.75rem);
  align-items: end;
}
.founder-media {
  padding-top: 0.75rem;
  padding-bottom: 0.5rem;
}
.founder-hero-copy h1 {
  font-size: clamp(2.8rem, 6vw, 4.4rem);
  font-weight: 400;
}
.founder-hero-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 2px;
  background: var(--green-100);
}
.founder-hero-photo img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 18%;
  display: block;
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.founder-hero-photo:hover img { transform: scale(1.03); }

/* Two-frame studio gallery: natural aspect ratios, no face-zoom crops */
.founder-gallery-duo {
  grid-template-columns: 1fr 1fr;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  align-items: stretch;
}
.founder-gallery-duo .founder-shot-square img {
  aspect-ratio: 1 / 1;
  height: auto;
  min-height: 0;
  object-position: center 30%;
}

.founder-gallery {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0.75rem;
}
.founder-gallery figure {
  margin: 0;
  overflow: hidden;
  background: var(--green-100);
  border-radius: 2px;
}
.founder-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}
.founder-gallery figure:hover img {
  transform: scale(1.025);
}
.founder-gallery .founder-shot-main {
  grid-row: span 2;
  min-height: min(78vh, 820px);
}
.founder-gallery .founder-shot-main img {
  min-height: min(78vh, 820px);
  object-position: center 18%;
}
.founder-gallery .founder-shot-side {
  min-height: min(38vh, 400px);
}
.founder-gallery .founder-shot-side img {
  min-height: min(38vh, 400px);
  object-position: center 40%;
}
.founder-gallery .founder-shot-wide {
  grid-column: 1 / -1;
  min-height: min(42vh, 480px);
}
.founder-gallery .founder-shot-wide img {
  min-height: min(42vh, 480px);
  object-position: center 40%;
  aspect-ratio: 16 / 9;
}

@media (max-width: 900px) {
  .split,
  .split-asymmetric,
  .tier-row,
  .founder-gallery,
  .founder-hero-grid { grid-template-columns: 1fr; }
  .tier-plain { padding-left: 0; padding-right: 0; border-right: 0; }
  .founder-hero-split { padding-top: 5.5rem; }
  .founder-hero-grid { align-items: start; }
  /* Studio headshots keep their natural framing on phones — no forced tall
     crops that zoom into the face. */
  .founder-gallery-duo .founder-shot-square img {
    aspect-ratio: 1 / 1;
    min-height: 0;
  }
  .founder-gallery:not(.founder-gallery-duo) .founder-shot-main,
  .founder-gallery:not(.founder-gallery-duo) .founder-shot-main img,
  .founder-gallery:not(.founder-gallery-duo) .founder-shot-side,
  .founder-gallery:not(.founder-gallery-duo) .founder-shot-side img {
    min-height: 52vh;
  }
  .bleed-photo,
  .bleed-photo img { min-height: 48vh; }
  .founder-gallery figure:hover img { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-photo img { animation: none; transform: scale(1.02); }
  html.reveal-on .reveal:not(.is-in),
  .reveal { opacity: 1; transform: none; transition: none; animation: none; }
  .shop-strip-photo img { transition: none; }
}

/* ============================================================
   Dynamic interactions (motion is reduced-motion aware)
   ============================================================ */

/* Animated nav underline (top bar only; exclude Menu panel links) */
.nav > li > a:not(.cta) { position: relative; }
.nav > li > a:not(.cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 1.5px;
  background: currentColor;
  opacity: 0.75;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav > li > a:not(.cta):hover::after,
.nav > li > a:not(.cta)[aria-current="page"]::after { transform: scaleX(1); }

/* Button hover lift */
.btn {
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease,
    transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s ease;
}

/* Footer links: stacked column + subtle slide */
.foot-col a {
  display: block;
  width: fit-content;
  transition: color 0.2s ease, transform 0.2s ease;
}

/* Card hover lift */
.pillar-line, .deep-link, .tier, .product, .chapter, .standard {
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.32s ease,
    border-color 0.32s ease;
}

/* Scroll progress indicator */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  z-index: 60;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--green-700), var(--green-600));
  pointer-events: none;
  will-change: transform;
}

/* Back-to-top control */
.to-top {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--green-800);
  color: #fff;
  border: 1px solid var(--green-800);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  cursor: pointer;
  z-index: 55;
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease;
}
.to-top.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.to-top:hover { background: var(--green-700); }
.to-top svg { width: 18px; height: 18px; display: block; }

@media (prefers-reduced-motion: no-preference) {
  .btn:hover { transform: translateY(-1px); }
  .foot-col a:hover { transform: translateX(2px); }
  .pillar-line:hover, .deep-link:hover, .tier:hover,
  .product:hover, .chapter:hover, .standard:hover { transform: translateY(-2px); }
}

@media (max-width: 720px) {
  .btn:hover,
  .pillar-line:hover, .deep-link:hover, .tier:hover,
  .product:hover, .chapter:hover, .standard:hover {
    transform: none;
    box-shadow: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-progress { display: none; }
  .to-top { transition: opacity 0.2s ease; transform: none; }
  .nav > li > a:not(.cta)::after { transition: none; }
  .product-drawer, .drawer-backdrop, .product-drawer-panel { transition: none; }
  .product-media img.is-swapping { animation: none; }
}

/* Sibling page switch — one umbrella, two quiet pages (Membership/Chapters, Events/Sponsors). */
.page-switch {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.15rem 1.35rem;
  margin-top: 1.35rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.page-switch a {
  font-family: Sora, system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--mute);
  position: relative;
  padding: 0.15rem 0;
  transition: color 0.25s ease;
}
.page-switch a:hover { color: var(--green-800); }
.page-switch a[aria-current="page"] { color: var(--green-900); }
.page-switch a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.35rem;
  height: 1px;
  background: var(--green-800);
  transform-origin: left center;
  animation: pageSwitchIn 0.45s ease both;
}
@keyframes pageSwitchIn {
  from { transform: scaleX(0); opacity: 0; }
  to { transform: scaleX(1); opacity: 1; }
}

/* Page enter — soft fade so navigation feels continuous.
   Opacity only: a filled transform animation on body would become the
   containing block for position:fixed children (drawer, cart bar, to-top)
   and pin them to the document instead of the viewport. */
.page-enter body {
  animation: pageEnter 0.55s ease-out both;
}
@keyframes pageEnter {
  from { opacity: 0.001; }
  to { opacity: 1; }
}

/* Native same-origin view transitions (Chrome/Edge; graceful no-op elsewhere). */
@supports (view-transition-name: none) {
  ::view-transition-old(root),
  ::view-transition-new(root) {
    animation-duration: 0.35s;
    animation-timing-function: ease;
  }
  main {
    view-transition-name: covenant-main;
  }
  ::view-transition-old(covenant-main) {
    animation: vtMainOut 0.3s ease both;
  }
  ::view-transition-new(covenant-main) {
    animation: vtMainIn 0.4s ease both;
  }
  @keyframes vtMainOut {
    from { opacity: 1; transform: translateY(0); }
    to { opacity: 0; transform: translateY(-6px); }
  }
  @keyframes vtMainIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-enter body { animation: none; }
  .page-switch a[aria-current="page"]::after { animation: none; }
  ::view-transition-old(root),
  ::view-transition-new(root),
  ::view-transition-old(covenant-main),
  ::view-transition-new(covenant-main) {
    animation: none !important;
  }
}

/* --- Shop: clickable colorways + product drawer --- */
.product-open,
.product-title-btn {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}
.product-title-btn {
  font-family: "Instrument Serif", "Iowan Old Style", Palatino, Georgia, serif;
  font-size: inherit;
  letter-spacing: inherit;
}
.product-title-btn:hover { color: var(--green-800); }
.product-colors-label {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.color-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.15rem 0 0.25rem;
}
.color-swatch {
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 999px;
  border: 1.5px solid rgba(11, 36, 24, 0.22);
  background: var(--swatch, #1F6B45);
  padding: 0;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.color-swatch.is-light { border-color: rgba(11, 36, 24, 0.35); }
.color-swatch:hover { transform: scale(1.12); }
.color-swatch.is-selected {
  box-shadow: 0 0 0 2px #fff, 0 0 0 3.5px var(--green-800, #123524);
  border-color: transparent;
}
.product-media img.is-swapping,
.drawer-media img.is-swapping {
  animation: mediaFade 0.45s ease both;
}
@keyframes mediaFade {
  from { opacity: 0.35; transform: scale(1.02); }
  to { opacity: 1; transform: none; }
}

body.drawer-open { overflow: hidden; }

.product-drawer {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: end center;
  pointer-events: none;
}
.product-drawer.is-open { pointer-events: auto; }
.drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 12, 9, 0.55);
  opacity: 0;
  transition: opacity 0.28s ease;
}
.product-drawer.is-open .drawer-backdrop { opacity: 1; }
.product-drawer-panel {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
  max-height: min(92vh, 900px);
  overflow: auto;
  background: var(--cream, #f7f3ea);
  color: var(--ink);
  border-radius: 14px 14px 0 0;
  box-shadow: 0 -18px 50px rgba(6, 12, 9, 0.28);
  transform: translateY(108%);
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 0;
}
.product-drawer.is-open .product-drawer-panel { transform: none; }
.drawer-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 2;
  border: 1px solid var(--line-strong, #cfc6b4);
  background: rgba(255, 255, 255, 0.9);
  color: var(--green-900);
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
}
.drawer-media {
  background: #eef2ef;
  min-height: 280px;
}
.drawer-media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: contain;
  object-position: center;
  display: block;
  padding: 8%;
  background: #eef2ef;
}
.drawer-body {
  padding: clamp(1.5rem, 3.2vw, 2.35rem);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.drawer-body .product-brand {
  margin: 0;
}
.drawer-body h2 {
  margin: 0;
  font-family: "Instrument Serif", "Iowan Old Style", Palatino, Georgia, serif;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  letter-spacing: -0.02em;
  color: var(--green-950);
}
.drawer-color-label {
  margin: 0.2rem 0 0;
  font-size: 0.85rem;
  color: var(--ink-soft);
}
.drawer-actions { margin-top: 0.75rem; }

@media (max-width: 820px) {
  .product-drawer { place-items: end stretch; }
  .product-drawer-panel {
    grid-template-columns: 1fr;
    width: 100%;
    max-height: 94vh;
  }
  .drawer-media img { min-height: 42vh; }
}

/* Members portal */
.members-shell { max-width: 980px; }
.members-banner {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line-strong);
  background: var(--green-50);
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.members-banner.is-error {
  background: #F8ECEC;
  border-color: rgba(120, 40, 40, 0.25);
  color: #5C1F1F;
}
.members-form {
  display: grid;
  gap: 0.55rem;
  margin-top: 1.1rem;
}
.members-form label {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-800);
  font-weight: 600;
}
.members-form input {
  width: 100%;
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--line-strong);
  background: var(--white);
  color: var(--ink);
  font: inherit;
}
.members-form .btn { justify-self: start; margin-top: 0.35rem; }
.members-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}
.members-toolbar-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.members-who-line { margin: 0; font-size: 1.05rem; }
.members-who-meta {
  margin: 0.25rem 0 0;
  color: var(--mute);
  font-size: 0.92rem;
}
.members-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 1.5rem;
}
.members-panel h2 {
  margin: 0.2rem 0 0.85rem;
  font-family: "Instrument Serif", "Iowan Old Style", Palatino, Georgia, serif;
  font-size: clamp(1.55rem, 2.6vw, 2rem);
  letter-spacing: -0.02em;
  color: var(--green-950);
  font-weight: 400;
}
.members-list {
  display: grid;
  gap: 0.9rem;
}
.members-card {
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}
.members-card:first-child { border-top: 0; padding-top: 0; }
.members-card h3 {
  margin: 0 0 0.35rem;
  font-family: "Instrument Serif", "Iowan Old Style", Palatino, Georgia, serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--green-950);
}
.members-card-meta {
  margin-top: 0.35rem;
  color: var(--mute);
  font-size: 0.92rem;
}
.members-pill {
  display: inline-block;
  margin-left: 0.35rem;
  padding: 0.1rem 0.45rem;
  border: 1px solid var(--line-strong);
  color: var(--green-800);
  font-family: "Sora", sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  vertical-align: middle;
}
.members-rsvp {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.85rem;
}
.members-rsvp-state {
  color: var(--mute);
  font-size: 0.9rem;
}
.note.is-error { color: #5C1F1F; }

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

/* Members portal tabs */
.members-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0 0 1.5rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--line);
}
.members-tab {
  appearance: none;
  border: 1px solid transparent;
  background: transparent;
  color: var(--mute);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.55rem 0.8rem;
  cursor: pointer;
}
.members-tab:hover { color: var(--green-900); }
.members-tab.is-active {
  color: var(--green-900);
  border-color: var(--line-strong);
  background: var(--white);
}
.members-tab-panel[hidden] { display: none !important; }
.members-quicklinks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.25rem;
}
.members-filter-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
}
.members-filter-row label {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-800);
  font-weight: 600;
}
.members-filter-row select,
.members-form select {
  min-width: 12rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--line-strong);
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

.members-form .members-check {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-top: 0.35rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
  cursor: pointer;
}

.members-form .members-check input {
  width: auto;
  margin-top: 0.2rem;
}

.chapter-dates {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.75rem;
}

.chapter-date-card {
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.chapter-date-card:first-child {
  border-top: 0;
  padding-top: 0;
}

.chapter-date-card h3 {
  font-family: var(--font-display, "Instrument Serif", Georgia, serif);
  font-weight: 400;
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  margin: 0.35rem 0 0.4rem;
}

/* ————————————————————————————————————————————————
   Covenant Assistant (chat widget)
   ———————————————————————————————————————————————— */
.cgs-chat-launch {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 46;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.05rem 0.7rem 0.9rem;
  border: 1px solid var(--green-800);
  border-radius: 999px;
  background: var(--green-800);
  color: #fff;
  box-shadow: var(--shadow);
  cursor: pointer;
  font-family: "Sora", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.cgs-chat-launch:hover { background: var(--green-700); border-color: var(--green-700); }
.cgs-chat-launch svg { width: 22px; height: 22px; }
.cgs-chat-launch-label { line-height: 1; }
.cgs-chat-open .cgs-chat-launch { opacity: 0; pointer-events: none; }

/* Keep the back-to-top control clear of the launcher. */
body.has-chat .to-top { bottom: calc(clamp(1rem, 3vw, 2rem) + 62px); }
/* Lift the launcher above the shop cart bar when it is showing. */
body:has(.cart-bar.show) .cgs-chat-launch { bottom: calc(clamp(1rem, 3vw, 2rem) + 60px); }

.cgs-chat-panel {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 47;
  width: min(370px, calc(100vw - 2rem));
  height: min(72vh, 620px);
  max-height: min(72vh, 620px);
  display: flex;
  flex-direction: column;
  background: var(--cream);
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(11, 36, 24, 0.28);
  overflow: hidden;
  opacity: 0;
  transform: translateY(14px) scale(0.98);
  transform-origin: bottom right;
  transition: opacity 0.2s ease, transform 0.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.cgs-chat-panel.is-open { opacity: 1; transform: none; }
.cgs-chat-panel[hidden] { display: none !important; }

.cgs-chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  background: var(--green-900);
  color: #EAF6EF;
}
.cgs-chat-title {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: "Instrument Serif", "Iowan Old Style", Palatino, Georgia, serif;
  font-size: 1.15rem;
}
.cgs-chat-mark {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--green-600);
  box-shadow: 0 0 0 3px rgba(61, 155, 104, 0.25);
}
.cgs-chat-close {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #EAF6EF;
  cursor: pointer;
}
.cgs-chat-close:hover { background: rgba(255, 255, 255, 0.12); }

.cgs-chat-log {
  /* min-height:0 so the log shrinks inside max-height and Turnstile stays visible */
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  -webkit-overflow-scrolling: touch;
}
.cgs-chat-msg { display: flex; }
.cgs-chat-user { justify-content: flex-end; }
.cgs-chat-assistant { justify-content: flex-start; }
.cgs-chat-bubble {
  max-width: 85%;
  padding: 0.6rem 0.8rem;
  border-radius: 12px;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  word-wrap: break-word;
  overflow-wrap: anywhere;
}
.cgs-chat-user .cgs-chat-bubble {
  background: var(--green-800);
  border-color: var(--green-800);
  color: #fff;
  border-bottom-right-radius: 4px;
}
.cgs-chat-assistant .cgs-chat-bubble { border-bottom-left-radius: 4px; }
.cgs-chat-bubble a { color: var(--green-800); font-weight: 600; }
.cgs-chat-user .cgs-chat-bubble a { color: #fff; text-decoration: underline; }

.cgs-chat-dots { display: inline-flex; gap: 4px; align-items: center; }
.cgs-chat-dots i {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--mute);
  display: block;
  animation: cgsDot 1s infinite ease-in-out;
}
.cgs-chat-dots i:nth-child(2) { animation-delay: 0.15s; }
.cgs-chat-dots i:nth-child(3) { animation-delay: 0.3s; }
@keyframes cgsDot {
  0%, 80%, 100% { opacity: 0.3; transform: translateY(0); }
  40% { opacity: 1; transform: translateY(-3px); }
}

.cgs-chat-form {
  flex: 0 0 auto;
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  padding: 0.65rem 0.75rem 0.35rem;
  border-top: 1px solid var(--line);
  background: var(--white);
}
.cgs-chat-input {
  flex: 1;
  resize: none;
  max-height: 120px;
  padding: 0.6rem 0.7rem;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  font: inherit;
  font-size: 0.92rem;
  line-height: 1.4;
  color: var(--ink);
  background: var(--white);
}
.cgs-chat-input:focus { outline: 2px solid var(--green-700); outline-offset: 1px; }
.cgs-chat-send {
  flex: none;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--green-800);
  border-radius: 10px;
  background: var(--green-800);
  color: #fff;
  cursor: pointer;
}
.cgs-chat-send:hover { background: var(--green-700); }
.cgs-chat-send:disabled { opacity: 0.5; cursor: default; }
.cgs-chat-turnstile {
  flex: 0 0 auto;
  padding: 0.35rem 0.75rem 0.35rem;
  background: var(--white);
  display: flex;
  justify-content: center;
  min-height: 70px;
}
.cgs-chat-turnstile[hidden] {
  display: none;
  min-height: 0;
  padding: 0;
}
.cgs-chat-note {
  flex: 0 0 auto;
  margin: 0;
  padding: 0.15rem 0.85rem 0.7rem;
  background: var(--white);
  color: var(--mute);
  font-size: 0.72rem;
  line-height: 1.4;
  text-align: center;
}

@media (max-width: 640px) {
  .cgs-chat-panel {
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: min(82vh, 720px);
    max-height: 82vh;
    border-radius: 14px 14px 0 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cgs-chat-panel { transition: opacity 0.2s ease; transform: none; }
  .cgs-chat-dots i { animation: none; }
}
