/* =============================================================================
   Imladris — site stylesheet
   File: /css/style_imladris.css
   Linked from includes/header.php

   How to read this file
   ---------------------
   1. Tokens and reset
   2. First-pass chrome (legacy GoDaddy-clone classes; safe to ignore on the
      current dark site: .site-header, .dream, .support, .prose, .signup, .until)
   3. Dark header and dropdown nav
   4. Shared type: kickers, rules, quotes, selah, scripture, footnotes
   5. Home (hero, essay, banners, rooms, donate, mail)
   6. The Dream (.fnd, splits, wisdom)
   7. Vision / Principles / Goals (.vision-hero, .prin, .now)
   8. House / Table / Road hero variants
   9. Contact / the gate
  10. Phone (max-width: 800px)

   Cropping paintings
   ------------------
   .banner is the window (width + locked height + object-fit: cover).
   .banner--porter, --tree, --cove, --pinkcastle only set object-position.
   Do not put object-position on .banner itself.
   A split-column banner needs a locked height in rem, not height: 100%.

   Type scale
   ----------
   html is 16px. rem follows that. .selah is the shout (1.5rem, gold).
   .scripture is the plate (1.25rem, parchment, drop cap).
   .quote-letter is a display pull-quote with a gold rule.
   ========================================================================== */

:root {
  --green: #547251;
  --gold: #d4a017;
  --peach: #f0d5b0;
  --parchment: #cbb896;
  --parchment-dark: #b8a47c;
  --black: #1a1a1a;
  --black-2: #111;
  --text: #d4d0c8;
  --text-dim: #a8a49c;
  --white: #f7f4ef;
  --max: 1120px;
}

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

html { font-size: 16px; }

body {
  margin: 0;
  font-family: "Merriweather", Georgia, serif;
  line-height: 1.65;
  color: var(--text);
  background: var(--black);
}

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

a { color: #e8dcc4; }
a:hover { color: var(--gold); }

h1, h2, h3 { font-weight: 400; color: var(--white); margin: 0 0 0.8em; }

p { margin: 0 0 1em; }

strong {font-size: 1.15rem; color: #c4a35a;}

/* Spoken stress — italic plus warm gold, not just a lean.
   Titles of works use cite. */
em {
  font-style: italic;
  color: #d7c9a3;
}
cite {
  font-style: italic;
  color: #c4b896;
}

/* --- 2. First-pass chrome (unused on the live dark rebuild) --- */

.site-header {
  background: linear-gradient(#d4c4a4, #c4b18a);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.65rem 1.25rem;
}

.nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list a {
  color: #3d382e;
  text-decoration: none;
  font-size: 0.92rem;
}

.nav-list a:hover,
.nav-list a[aria-current="page"] {
  text-decoration: underline;
  color: #1c1a16;
}

.nav-user { color: #3d382e; opacity: 0.7; }

/* --- 5. Home: parchment logo hero --- */

.hero {
  background: #cbb896;
  background-image:
    radial-gradient(ellipse at center, rgba(255,248,230,0.35), transparent 60%);
  text-align: center;
  padding: 2.5rem 1rem 2rem;
}

/* Short Home: city council behind the mark */
.hero--council {
  min-height: 420px;
  padding: 3.5rem 1rem 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse at center, rgba(20,16,10,0.15), rgba(8,6,4,0.55) 70%),
    url("/assets/derived/city-council-1600.jpg") center 40% / cover no-repeat;
  background-color: #1a1610;
}

.hero--council .logo {
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.55));
}

.logo {
  width: min(340px, 58vw);
  margin: 0 auto;
}

/* First-pass Home dream split (superseded by .fnd-split) */

.dream {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(280px, 1.1fr);
  gap: 2.5rem 3rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 3.25rem 1.5rem;
  align-items: start;
}

.dream-copy h1 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.dream-copy p {
  font-size: 0.95rem;
  color: var(--text);
}

/* Support split: painting | white panel */

.support {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
  background: #fff;
}

.support-media {
  background: #111 center / cover no-repeat;
  min-height: 380px;
}

.support-copy {
  background: #fff;
  color: #222;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 2.5rem;
  text-align: center;
}

.support-copy h2 {
  color: #111;
  font-size: 1.85rem;
  font-weight: 700;
  line-height: 1.25;
  margin: 0.35em 0 0.8em;
}

.support-kicker {
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  color: #555;
  margin: 0;
}

.support-copy p { color: #333; }

.support-copy .hollywood {
  font-weight: 700;
}

.btn-outline {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.55rem 1.4rem;
  border: 1px solid #333;
  border-radius: 20px;
  color: #222 !important;
  text-decoration: none;
  background: transparent;
}

.btn-outline:hover { background: #f3eee6; }

/* Dark article sections */

.prose {
  max-width: 820px;
  margin: 0 auto;
  padding: 2.75rem 1.5rem 1.5rem;
}

.prose h2 {
  font-size: 1.15rem;
  padding-bottom: 0.45rem;
  margin-bottom: 1.1rem;
  border-bottom: 1px solid #5a5a5a;
}

.prose p,
.prose li { font-size: 0.95rem; }

.prose ul {
  padding-left: 1.2rem;
}

.prose li { margin-bottom: 0.45rem; }

.quote {
  font-style: italic;
}

/* Email signup */

.signup {
  max-width: 820px;
  margin: 0 auto;
  padding: 1rem 1.5rem 3rem;
}

.signup h2 {
  font-size: 1.05rem;
  border-bottom: 1px solid #5a5a5a;
  padding-bottom: 0.45rem;
}

.signup-form {
  display: grid;
  gap: 0.65rem;
  max-width: 280px;
}

.signup-form label {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.signup-form input {
  width: 100%;
  padding: 0.4rem 0.5rem;
  border: 1px solid #ccc;
  background: #fff;
  color: #111;
  font: inherit;
}

.btn-subscribe {
  width: fit-content;
  padding: 0.35rem 0.9rem;
  background: #7a8f3a;
  color: #fff;
  border: 0;
  font: inherit;
  cursor: pointer;
}

/* Until Next Time band */

.until {
  background: linear-gradient(#c4ae78, #a89058);
  color: #fff;
  text-align: center;
  padding: 2.4rem 1.25rem;
}

.until h2 {
  font-size: 1.7rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.until p { margin: 0; color: #f3efe4; }

/* Footer / contact */

.site-footer {
  background: #0d0d0d;
  color: #cfcbc4;
  padding: 2.5rem 1.5rem 2rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  max-width: var(--max);
  margin: 0 auto 2.5rem;
}

.contact-form-wrap h2 {
  border-bottom: 1px solid #444;
  padding-bottom: 0.4rem;
  font-size: 1.2rem;
}

.contact-form-wrap h3,
.contact-aside h3 {
  font-size: 1rem;
  margin: 1rem 0 0.5rem;
}

.contact-form {
  display: grid;
  gap: 0.55rem;
  max-width: 360px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.45rem 0.55rem;
  border: 1px solid #777;
  background: transparent;
  color: #eee;
  font: inherit;
}

.btn-send {
  width: 100%;
  max-width: 360px;
  padding: 0.55rem;
  border: 0;
  border-radius: 20px;
  background: #cfc8b8;
  color: #222;
  font: inherit;
  cursor: pointer;
}

.fineprint {
  font-size: 0.7rem;
  color: #888;
  margin-top: 0.6rem;
}

.credits {
  text-align: center;
  font-size: 0.78rem;
  color: #8a8680;
  border-top: 1px solid #2a2a2a;
  padding-top: 1.25rem;
}

.credits a { color: #a8a49c; }
.footer-nav { margin-top: 0.6rem; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
}

@media (max-width: 800px) {
  .dream,
  .support,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .support-media { min-height: 280px; }

  .nav { flex-direction: column; align-items: flex-start; }
}

/* --- 3. Dark header + dropdown  /  6. The Dream (.fnd) --- */

.theme-dark { background: #0b0b0b; color: #ddd6c8; }

.dark-header {
  background: #000;
  border-bottom: 1px solid #1c1c1c;
}

.dark-header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0.7rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
}

.dark-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.dark-nav a {
  color: #ece7dc;
  text-decoration: none;
  font-size: 0.92rem;
}

.dark-nav a:hover,
.dark-nav a[aria-current="page"] {
  color: #fff;
  text-decoration: underline;
}

.dark-nav .has-sub {
  position: relative;
}

.dark-nav .subnav {
  display: block;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: calc(100% - 2px);
  left: 0;
  z-index: 20;
  min-width: 11.5rem;
  margin: 0;
  padding: 0.55rem 0 0.45rem;
  list-style: none;
  background: #141414;
  border: 1px solid #2a2a2a;
  transition: opacity 0.12s ease 0.45s, visibility 0s linear 0.45s;
}

.dark-nav .subnav a {
  display: block;
  padding: 0.35rem 0.85rem;
  font-size: 0.86rem;
  white-space: nowrap;
  text-decoration: none;
}

.dark-nav .nav-gloss {
  padding: 0.15rem 0.85rem 0.45rem;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  color: #8a9a6a;
  list-style: none;
  pointer-events: none;
}

.dark-nav .has-sub:hover > .subnav,
.dark-nav .has-sub:focus-within > .subnav {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition-delay: 0s;
}

.fnd {
  max-width: 1180px;
  margin: 0 auto;
  padding: 2.75rem 1.5rem 3rem;
}

.kicker {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c4a35a;
  margin: 0 0 0.85rem;
}

.fnd-title {
  font-size: 2.4rem;
  color: #7f9a78;
  margin: 0 0 0.35rem;
}

.rule {
  width: 4.5rem;
  height: 2px;
  background: #c4a35a;
  border: 0;
  margin: 0 0 1.6rem;
}

.fnd-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem 3rem;
  align-items: stretch;
}

.fnd-split img {
  width: 100%;
  border-radius: 8px;
}

/* A .banner inside a split is a window. Do not use height: 100% —
   the row is sized by the image, so 100% cannot crop. Lock a height. */
.fnd-split img.banner {
  width: 100%;
  height: 26rem;
  object-fit: cover;
}

.fnd-copy p { color: #ddd6c8; }

.donate-band {
  background: #f6f3ee;
  color: #2b2b2b;
  padding: 3.5rem 1.5rem;
}

.donate-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem 3rem;
  align-items: center;
}

.donate-copy { max-width: 28rem; }

.donate-copy .kicker { color: #8a9a6a; }

.donate-copy h2 {
  color: #6f8a68;
  font-size: 2rem;
  margin: 0 0 0.35rem;
}

.donate-copy .rule { background: #c4a35a; }

.donate-copy p { color: #444; }
.donate-copy a {
  color: #5d6f3a;
  text-decoration: underline;
}
.donate-copy a:hover { color: #3d4a24; }

.btn-donate {
  display: inline-block;
  margin-top: 0.6rem;
  padding: 0.55rem 1.35rem;
  background: #5d6f3a;
  color: #fff !important;
  text-decoration: none;
  border-radius: 20px;
}

.btn-donate:hover { background: #4c5c30; }

.donate-inner img {
  width: 100%;
  max-width: 550px;
  margin-left: auto;
  border-radius: 6px;
}

.fnd-block { padding: 3rem 1.5rem; }

.fnd-block h2 {
  color: #7f9a78;
  font-size: 1.85rem;
  margin: 0 0 0.35rem;
}

.fnd-wide {
  max-width: 1180px;
  margin: 1.5rem auto 0;
}

.wisdom {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1rem 1.5rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem 3rem;
  align-items: start;
}

.qlist { list-style: none; padding: 0; }
.qlist li { padding-left: 1rem; text-indent: -0.7rem; margin-bottom: 0.4rem; }
.qlist li::before { content: "– "; }

.simple-footer {
  background: #14332c;
  color: #c9c4b8;
  text-align: center;
  padding: 2.25rem 1.25rem;
}

.simple-footer img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  margin: 0 auto 0.85rem;
}

.simple-footer p { margin: 0.35rem 0; font-size: 0.85rem; }
.simple-footer a { color: #ece7dc; text-decoration: none; }
.simple-footer .copy { opacity: 0.7; font-size: 0.78rem; margin-top: 0.8rem; }

@media (max-width: 800px) {
  .fnd-split,
  .donate-inner,
  .wisdom { grid-template-columns: 1fr; }

  .fnd-title { font-size: 1.7rem; }
}

/* --- 5. Home: rooms, banners, cards --- */

.intro,
.programs,
.who,
.industry {
  max-width: 920px;
  margin: 0 auto;
  padding: 3.25rem 1.5rem;
  text-align: center;
}

.intro h1,
.programs h2,
.who h2,
.industry h2,
.step h2 {
  color: #7f9a78;
  font-size: 2rem;
  margin: 0 0 0.35rem;
}

.intro .rule,
.programs .rule,
.who .rule,
.industry .rule,
.step .rule {
  margin-left: auto;
  margin-right: auto;
}

.intro p,
.programs .lede,
.who p,
.industry p,
.step p {
  color: #ddd6c8;
}

.programs {
  max-width: 1180px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 2.25rem;
  text-align: left;
}

.card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 0.85rem;
}

.card h3 {
  color: #ece7dc;
  font-size: 1.15rem;
  margin: 0 0 0.45rem;
}

.card p { font-size: 0.92rem; color: #cfc8bc; }

.btn,
button.btn {
  display: inline-block;
  margin-top: 0.35rem;
  padding: 0.5rem 1.2rem;
  background: #5d6f3a;
  color: #fff !important;
  text-decoration: none;
  border-radius: 20px;
  font-size: 0.9rem;
  font-family: "Merriweather", Georgia, serif;
  font-weight: 400;
  border: 0;
  cursor: pointer;
}

.btn:hover { background: #4c5c30; }

.who { text-align: left; max-width: 920px; }
.who h2, .who .kicker, .who .rule { text-align: left; margin-left: 0; }
.who h3 { color: #ece7dc; margin: 1.75rem 0 0.4rem; font-size: 1.2rem; }

.industry { max-width: 1180px; }
.industry .banner,
.essay .banner {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 6px;
  margin: 0.5rem 0 1.25rem;
}

/* Banner aim classes. 50% 50% is center. Lower % = more sky. Higher % = more ground. */
.banner.banner--cove { object-position: 58% 42%; }
.banner.banner--porter { object-position: center 65%; }
.banner.banner--tree { object-position: center 70%; }
.banner.banner--pinkcastle { object-position: center 25%; }

.step {
  max-width: 1180px;
  margin: 0 auto;
  padding: 3rem 1.5rem 3.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.step img {
  width: 100%;
  border-radius: 6px;
}

.step .fine { font-size: 0.85rem; color: #9a958c; }

@media (max-width: 800px) {
  .cards,
  .step { grid-template-columns: 1fr; }
  .card img, .industry .banner { height: 220px; }
}

/* --- 7. Vision / Principles / Goals --- */

.vision-hero {
  min-height: 420px;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.25), transparent 45%),
    url("/assets/ancient-arch.png") center / cover no-repeat;
  display: flex;
  align-items: center;
  padding: 3rem 1.5rem;
}

.vision-card {
  background: #f7f4ef;
  color: #333;
  max-width: 340px;
  padding: 1.75rem 1.5rem 2rem;
  margin-left: clamp(1rem, 8vw, 6rem);
}

.vision-card .kicker { color: #c4a35a; }
.vision-card h1 {
  color: #c4a35a;
  font-size: 1.55rem;
  margin: 0 0 0.75rem;
}
.vision-card h1.fnd-title,
.vision-card .fnd-title {
  color: #7f9a78;
  font-size: 1.85rem;
}
.vision-card p { color: #444; font-size: 0.92rem; }

.prin {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 1.5rem 1rem;
}

/* Space between stacked House/Road bands so a kicker belongs to its heading, not the last line above. */
.prin > section + section {
  margin-top: 3.75rem;
}

.prin h2 {
  color: #7f9a78;
  font-size: 1.7rem;
  margin: 2rem 0 0.75rem;
}

.principles-list {
  padding-left: 1.25rem;
}

.prin-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.25rem 2.5rem;
  align-items: start;
  margin: 2rem 0;
}

.prin-split img {
  width: 100%;
  border-radius: 6px;
}

.prin-split h2:first-child {
  margin-top: 0;
}

.now {
  background: #f7f4ef;
  color: #333;
  text-align: center;
  padding: 3.25rem 1.5rem 3.5rem;
}

.now h2 {
  color: #c4a35a;
  font-size: 1.8rem;
  margin: 0 0 0.35rem;
}

.now .rule { margin-left: auto; margin-right: auto; background: #c4a35a; }

.now p {
  max-width: 1040px;
  margin: 0 auto 1rem;
  color: #444;
}

.now a { color: #5d6f3a; }

@media (max-width: 800px) {
  .prin-split { grid-template-columns: 1fr; }
  .vision-card { margin-left: 0; }
}

.vision-hero--goals {
  background-image:
    linear-gradient(90deg, rgba(0,0,0,0.28), transparent 50%),
    url("/assets/jbs-vista.png");
}

/* --- 9. Contact / the gate --- */

.gate-hero {
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.72) 100%),
    url("/assets/pool-of-siloam.png") center 60% / cover no-repeat;
  padding: 3.5rem 1.5rem 2.5rem;
}

.gate-hero-inner { max-width: 720px; margin: 0 auto; width: 100%; }
.gate-hero h1 { color: #f7f4ef; font-size: 2.6rem; margin: 0 0 0.6rem; }
.gate-hero .lede { color: #e8e0d4; max-width: 38rem; }

.gate { max-width: 1100px; margin: 0 auto; padding: 2.75rem 1.5rem 3.5rem; }

.gate-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: start;
}

.letter {
  background: #f7f4ef;
  color: #2c2a26;
  padding: 2rem 1.75rem 2.25rem;
}

.letter h2 { color: #547251; margin-bottom: 0.4rem; }
.letter-intro { color: #5a564e; }
.letter-ok { background: #e6eedc; padding: 1rem; }
.letter-err { background: #f3e0d4; padding: 0.75rem 1rem; }

.letter-form label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7a6a3c;
  margin-bottom: 0.3rem;
}

.letter-form input,
.letter-form select,
.letter-form textarea {
  width: 100%;
  font: inherit;
  color: #2c2a26;
  background: #fff;
  border: 1px solid #d4c8b4;
  padding: 0.55rem 0.7rem;
  margin-bottom: 0.85rem;
}

.letter-form textarea { resize: vertical; min-height: 9rem; }

.doors { list-style: none; margin: 0 0 1.75rem; padding: 0; }
.doors li { margin: 0 0 1.5rem; }
.doors strong { display: block; color: #ece7dc; margin-bottom: 0.25rem; }
.doors p { color: #cfc8bc; font-size: 0.95rem; }

.hall {
  font-style: normal;
  color: #ece7dc;
  margin: 0 0 0.6rem;
}
.hours { color: #9a958c; font-size: 0.92rem; }

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

/* --- 5. Home argument (.essay) + shared quote display --- */

.essay {
  max-width: 760px;
  margin: 0 auto;
  padding: 3.25rem 1.5rem 1.5rem;
}

.essay--wide { max-width: 1100px; }

.essay h1,
.essay h2,
.numbers h2 {
  color: #7f9a78;
  font-size: 2rem;
  margin: 0 0 0.35rem;
}

.essay h1 { font-size: 2.15rem; }

.essay .rule,
.numbers .rule { margin: 0 0 1.4rem; }

.essay .banner {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 6px;
  margin: 0.25rem 0 1.4rem;
}

.essay .quote {
  color: #e8dcc4;
  font-style: italic;
}

.essay .quote-letter,
.fnd .quote-letter,
.wisdom .quote-letter,
.prin .quote-letter {
  color: #e8dcc4;
  font-size: 1.55rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1.35;
  margin: 1.4rem 0;
  padding-left: 0.9rem;
  border-left: 3px solid #c4a35a;
}

.numbers {
  max-width: 760px;
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
}

.numbers ol {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0;
}

.numbers li {
  display: flex;
  gap: 0.85rem;
  align-items: baseline;
  padding: 0.35rem 0;
  border-bottom: 1px solid #222;
  color: #ddd6c8;
}

.numbers li strong {
  color: #c4a35a;
  font-size: 1.35rem;
  min-width: 4.5rem;
}

.vision-hero--retreats {
  background-image:
    linear-gradient(90deg, rgba(0,0,0,0.35), transparent 55%),
    url("/assets/dreaming-of-knights.png");
  background-position: center 40%;
}

.vision-hero--practicum {
  background-image:
    linear-gradient(90deg, rgba(0,0,0,0.4), rgba(0,0,0,0.12) 55%),
    url("/assets/jeremy/ja-forest-thaw.jpg");
  background-position: center 50%;
}

.vision-hero--intern {
  background-image:
    linear-gradient(90deg, rgba(0,0,0,0.45), rgba(0,0,0,0.15) 50%),
    url("/assets/corrie/five-windows.png");
  background-position: center center;
}

.vision-hero--apprentice {
  background-image:
    linear-gradient(90deg, rgba(0,0,0,0.4), rgba(0,0,0,0.12) 55%),
    url("/assets/jeremy/ja-lonely-house-sky.jpg");
  background-position: center 75%;
}

.prin-split img.glass-panel {
  object-fit: contain;
  max-height: 640px;
  width: auto;
  margin: 0 auto;
}

.dream-halls { margin: 2.5rem 0 1rem; }
.dream-cards { margin-top: 1.5rem; text-align: left; }
.dream-cards .card {
  background: #141414;
  padding: 1.25rem 1.2rem 1.4rem;
}
.dream-cards h3 { color: #c4a35a; }

.simple-footer .credit { font-size: 0.8rem; opacity: 0.85; }
.simple-footer .credit a { text-decoration: underline; }

.next-step {
  max-width: 760px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 3rem;
  text-align: center;
  border-top: 1px solid #222;
}
.next-here { color: #9a958c; font-size: 0.95rem; margin-bottom: 0.25rem; }
.next-then { color: #ece7dc; font-size: 1.15rem; margin-bottom: 0.75rem; }


.vision-hero--epiphany,
.vision-hero--tempus {
  background-image:
    linear-gradient(90deg, rgba(0,0,0,0.4), rgba(0,0,0,0.12) 55%),
    url("/assets/hall-of-epiphany-hero.jpg");
  background-position: center 40%;
}

.vision-hero--prayer {
  background-image:
    linear-gradient(90deg, rgba(0,0,0,0.45), rgba(0,0,0,0.15) 50%),
    url("/assets/hall-of-prayer-hero.jpg");
  background-position: center 40%;
}

.vision-hero--guide {
  background-image:
    linear-gradient(90deg, rgba(0,0,0,0.45), rgba(0,0,0,0.15) 50%),
    url("/assets/corrie/five-windows.png");
  background-position: center 33%;
}


.vision-hero--counsel,
.vision-hero--lectures {
  background-image:
    linear-gradient(90deg, rgba(0,0,0,0.4), rgba(0,0,0,0.15) 50%),
    url("/assets/lecture-series.jpg");
  background-position: center 33%;
}


.vision-hero--house {
  background-image:
    linear-gradient(90deg, rgba(0,0,0,0.45), rgba(0,0,0,0.15) 50%),
    url("/assets/corrie/kingdom-rose.png");
  background-position: center 33%;
}

.vision-hero--table {
  background-image:
    linear-gradient(90deg, rgba(0,0,0,0.4), rgba(0,0,0,0.15) 50%),
    url("/assets/jeremy/ja-hobbit-hearth.jpg");
  background-position: center center;
}

.vision-hero--road {
  background-image:
    linear-gradient(90deg, rgba(0,0,0,0.35), rgba(0,0,0,0.12) 50%),
    url("/assets/jeremy/ja-forest-gold-path.jpg");
  background-position: center 67%;
}

.vision-hero--exile {
  background-image:
    linear-gradient(90deg, rgba(0,0,0,0.4), rgba(0,0,0,0.14) 55%),
    url("/assets/jeremy/ja-forest-ship.jpg");
  background-position: center 45%;
}


.tale-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.5rem 0 0.75rem;
}
.tale-pair figure { margin: 0; }
.tale-pair img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}
.tale-pair figcaption {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c4a35a;
  margin-top: 0.4rem;
  text-align: center;
}
@media (max-width: 800px) {
  .tale-pair { grid-template-columns: 1fr; }
}


/* --- 10. Phone --- */

.nav-check {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
  appearance: none;
  pointer-events: none;
}

.nav-toggle {
  display: none;
  cursor: pointer;
  color: #ece7dc;
  font-size: 0.92rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.7rem 0.2rem;
}

img { max-width: 100%; height: auto; }

@media (max-width: 800px) {
  .nav-toggle {
    display: inline-block;
    margin-left: auto;
  }

  .dark-header-inner {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .dark-header-inner nav {
    flex-basis: 100%;
    width: 100%;
  }

  .dark-nav {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 0;
    padding: 0.5rem 0 0.85rem;
  }

  .nav-check:checked ~ nav .dark-nav {
    display: flex;
  }

  .dark-nav > li {
    border-top: 1px solid #222;
  }

  .dark-nav a {
    display: block;
    padding: 0.7rem 0.15rem;
    font-size: 1rem;
  }

  .dark-nav .subnav {
    display: block;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    position: static;
    min-width: 0;
    margin: 0;
    padding: 0 0 0.4rem 0.9rem;
    background: transparent;
    border: 0;
    transition: none;
  }

  .dark-nav .subnav a {
    font-size: 0.9rem;
    padding: 0.35rem 0.15rem;
    color: #b8b2a6;
  }

  .essay {
    padding: 2rem 1.15rem 1.1rem;
  }

  .essay h1 { font-size: 1.65rem; }
  .essay h2 { font-size: 1.35rem; }

  .hero { padding: 2rem 1rem 1rem; }
  .hero .logo { width: 220px; height: 220px; }

  .vision-hero {
    min-height: 260px;
    background-position: center center;
  }

  .vision-card {
    margin: 2rem 1rem;
    padding: 1.25rem 1.15rem;
  }

  .prin, .fnd {
    padding-left: 1.15rem;
    padding-right: 1.15rem;
  }

  .numbers ol { padding-left: 1.2rem; }

  .programs, .donate-band, .step, .next-step {
    padding-left: 1.15rem;
    padding-right: 1.15rem;
  }

  .simple-footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.35rem 0.7rem;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 16px; /* stop iOS zoom */
  }
}


.selah {
  font-size: 1.5rem;
  text-align: center;
  font-style: italic;
  color: #c4a35a;
  letter-spacing: 0.12em;
}

.fn {
  font-size: 0.7em;
  vertical-align: super;
  text-decoration: none;
  color: #c4a35a;
}

.notes {
  max-width: 760px;
  margin: 0 auto 3rem;
  padding: 0 1.5rem;
  color: #9a958c;
  font-size: 0.82rem;
}
.notes ol { padding-left: 1.2rem; }
.notes li { margin: 0.4rem 0; }

.mail-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1rem 0 1.25rem;
}
.mail-form input[type="email"],
.mail-form input[type="text"] {
  flex: 1 1 12rem;
  background: #141414;
  border: 1px solid #3a3a3a;
  color: #ece7dc;
  font-family: Merriweather, Georgia, serif;
  font-size: 1rem;
  padding: 0.7rem 0.8rem;
}
.mail-form .btn { flex: 0 0 auto; }
.mail-honeypot {
  position: absolute;
  left: -5000px;
}

.btn-quiet {
  background: transparent;
  border: 1px solid #6b7a4a;
  color: #ece7dc;
}
.btn-quiet:hover {
  background: #4c5c30;
  color: #fff;
}

.mail-form.is-done .mail-fields { display: none; }
.mail-note {
  margin: 0.75rem 0 0;
  max-width: 28rem;
  line-height: 1.45;
}
.mail-note--ok { color: #8fb56a; }
.mail-note--err { color: #d4a017; }

#principles, #goals { scroll-margin-top: 5.5rem; }

.scripture {
  font-size: 1.25rem;
  line-height: 1.7;
  text-align: left;
  font-style: italic;
  color: #d7c9a3;
  letter-spacing: 0.01em;
  max-width: 38rem;
  margin: 1.5rem auto;
  padding: 0.85rem 0.25rem 1rem;
  border-top: 1px solid #c4a35a;
  border-bottom: 1px solid #c4a35a;
}

/* First character is usually the opening quote. That is the drop. */
.scripture::first-letter {
  float: left;
  font-size: 3.4rem;
  line-height: 0.72;
  font-style: normal;
  font-weight: 700;
  color: #c4a35a;
  padding: 0.12em 0.18em 0 0;
}

/* Quieter than .selah or .quote-letter. A seal at the end of a principle. */
.belief {
  font-size: 1.08rem;
  font-style: italic;
  color: #e8dcc4;
  line-height: 1.55;
  margin: 1.15rem 0 0;
  padding: 0.15rem 0 0.15rem 0.9rem;
  border-left: 2px solid #c4a35a;
}

/* --- Support: open chairs --- */
.chairs { margin-top: 0.5rem; }
.chair-label {
  color: #c4a35a;
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 2rem 0 0.85rem;
}
.chair-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.chair {
  background: #141414;
  padding: 1.15rem 1.15rem 1.3rem;
}
.chair--serve {
  background: #293526;
  border: 1px solid #50624c;
}
.chair--paid {
  background: #3a321f;
  border: 1px solid #695a38;
}
.chair--fund {
  background: #293f34;
  border: 1px solid #335c48;
}
.chair h4 {
  color: #ece7dc;
  font-size: 1.15rem;
  margin: 0 0 0.4rem;
}
.chair-status {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 0.45rem;
}
.chair--serve .chair-status { color: #8fb56a; }
.chair--paid .chair-status { color: #c4a35a; }
.chair--fund .chair-status { color: #7f9a78; }
.chair--filled .chair-status { color: #9a958c; }
.chair-need { color: #e8dcc4; }
.chair p { color: #cfc8bc; font-size: 0.92rem; }
@media (max-width: 800px) {
  .chair-grid { grid-template-columns: 1fr; }
}

/* Stained-glass hover: idle at rest, action on rollover.
   Both GIFs load. Panel 4 is ~5.4MB. Do not copy this pattern site-wide. */
.glass-hover {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

/* Support opener: half the right-hand column. Tweak max-width. */
.fnd-split .glass-hover,
.fnd-split .glass-still {
  max-width: 50%;
  justify-self: end;
  align-self: start;
}
.glass-still img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}
.glass-hover img {
  width: 100%;
  height: auto;
  display: block;
}
.glass-hover .glass-action {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.glass-hover:hover .glass-action,
.glass-hover:focus-within .glass-action {
  opacity: 1;
}

/* Time / Talent marks. Gold lozenge — not a clipart bullet. */
.ask > p:not(.kicker) {
  position: relative;
  padding-left: 1.25rem;
}
.ask > p:not(.kicker)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.55rem;
  height: 0.55rem;
  background: #c4a35a;
  transform: rotate(45deg);
}

.letter .mail-form { display: grid; gap: 0.65rem; }
.letter .mail-form input[type="email"],
.letter .mail-form input[type="text"] {
  background: #fff;
  border: 1px solid #d4c8b4;
  color: #2c2a26;
  flex: 1 1 auto;
  width: 100%;
}
.letter .mail-note--ok { color: #3d4a24; }
.letter .mail-note--err { color: #8a4a2a; }

.mail-quest {
  display: block;
  margin-top: 0.85rem;
  color: #ece7dc;
  font-style: normal;
  letter-spacing: 0;
}
.mail-quest a { color: #c4a35a; }
.mail-form.is-done + .join-aside { display: none; }

/* Next-step path bands.
   Default (not Home): outdoor road stones.
   House: indoor glass-and-candle stones.
   Table: the actual board. */
.next-step--path {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 4.5rem 1.5rem 4.75rem;
  border-top: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  text-shadow: 0 1px 8px rgba(0,0,0,0.55);
}
body:not(.section-home) .next-step {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 4.5rem 1.5rem 4.75rem;
  border-top: 0;
  background-image:
    linear-gradient(180deg, rgba(0,0,0,0.28), rgba(0,0,0,0.42)),
    url("/assets/road-bg.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  text-shadow: 0 1px 8px rgba(0,0,0,0.55);
}
body.section-house .next-step {
  background-image:
    linear-gradient(180deg, rgba(0,0,0,0.32), rgba(0,0,0,0.5)),
    url("/assets/house-bg.jpg");
}
body.section-table .next-step {
  background-image:
    linear-gradient(180deg, rgba(0,0,0,0.48), rgba(0,0,0,0.62)),
    url("/assets/table-bg.jpg");
  background-position: center 40%;
}
body:not(.section-home) .next-step .kicker,
body:not(.section-home) .next-step .next-here,
body:not(.section-home) .next-step .next-then {
  color: #f4efe4;
}

/* Widows / runts. pretty = body. balance = short display lines. */
p, li, .letter-intro, .lede {
  text-wrap: pretty;
}
h1, h2, h3, .selah, .quote-letter, .fnd-title, .next-then {
  text-wrap: balance;
}


.guide-span {
  margin: 0.5rem 0 2.5rem;
}
.guide-span img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 6px;
}


/* --- Accessibility (14 Sep 2026 punch list) --- */

.skip-link {
  position: absolute;
  left: 0.75rem;
  top: -4rem;
  z-index: 1000;
  background: #f7f4ef;
  color: #111;
  padding: 0.45rem 0.8rem;
  font-size: 0.9rem;
}
.skip-link:focus {
  top: 0.75rem;
  color: #111;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
.nav-toggle:focus-visible {
  outline: 2px solid #d4a017;
  outline-offset: 3px;
}

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


/* This-season strip — Home (and later wherever the include is called) */
.season {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.5rem 1.5rem 2.75rem;
}
.season > .kicker { margin-bottom: 0.85rem; }
.season-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem 2rem;
  padding-top: 0.35rem;
  border-top: 1px solid #3a3428;
}
.season-row article { min-width: 0; }
.season-when {
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #c4a35a;
}
.season-row h3 {
  margin: 0 0 0.45rem;
  font-size: 1.15rem;
  color: var(--white);
}
.season-row p { margin: 0 0 0.55rem; color: var(--text); font-size: 0.95rem; }
.season-row a { color: #c4a35a; }
@media (max-width: 800px) {
  .season-row { grid-template-columns: 1fr; gap: 1.35rem; }
}
