:root {
  --cream: #FBF7F0;
  --cream-2: #F4EEE2;
  --gold: #C9954C;
  --gold-soft: #d6a866;
  --green: #3D5A47;
  --green-deep: #2e4536;
  --brown: #8B6F47;
  --brown-soft: #a98768;
  --charcoal: #2C2C2C;
  --ink: #1d1d1d;
  --ink-soft: #44423e;
  --rule: rgba(201, 149, 76, 0.4);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: 'Lato', -apple-system, system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ---------- ACCESSIBILITY ---------- */
/* Visible focus ring for keyboard users.
   We do NOT blanket-suppress :focus so older / non-:focus-visible browsers
   still show the default focus ring. Modern browsers will use the stronger
   :focus-visible style below for keyboard focus only. */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}
/* On dark hero/cta surfaces use a light ring so it stays visible. */
.hero :focus-visible,
.btn-outline:focus-visible,
.strip :focus-visible,
.prayer-banner :focus-visible,
.site-footer :focus-visible {
  outline-color: var(--cream);
}
/* Skip-to-content link — visible only when focused. */
.skip-link {
  position: absolute;
  left: 12px;
  top: -100px;
  z-index: 100;
  background: var(--ink);
  color: var(--cream);
  padding: 10px 16px;
  text-decoration: none;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: top 200ms ease;
}
.skip-link:focus { top: 12px; }

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

/* ---------- NAV ---------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 247, 240, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(44, 44, 44, 0.07);
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.2px;
  text-decoration: none;
  color: var(--ink);
  white-space: nowrap;
  flex: 1;
}
.brand-just { color: var(--ink-soft); font-style: italic; font-weight: 400; }
.brand-jesus { color: var(--green); }
.brand-info { color: var(--gold); font-weight: 600; }
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  font-family: 'Lato', sans-serif;
  text-decoration: none;
  font-size: 14.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  position: relative;
  padding: 6px 0;
  transition: color 200ms ease;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a.is-active { color: var(--green); }
.nav-links a.is-active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--gold);
}
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--ink);
  margin: 5px 0;
  transition: transform 280ms ease, opacity 280ms ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

[hidden] { display: none !important; }
.mobile-menu {
  border-top: 1px solid rgba(44, 44, 44, 0.08);
  padding: 14px 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: var(--cream);
  animation: menuIn 280ms ease;
}
@keyframes menuIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.mobile-menu a {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  text-decoration: none;
  color: var(--ink);
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.mobile-menu a:last-child { border-bottom: 0; }

@media (max-width: 820px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 80px 28px;
  text-align: center;
}
.hero-home { background: linear-gradient(160deg, #3D5A47 0%, #2C2C2C 100%); }
.hero-warm { background: linear-gradient(160deg, #8B6F47 0%, #C9954C 75%, #b88440 100%); min-height: 64vh; }
.hero-deep { background: linear-gradient(160deg, #2C2C2C 0%, #3D5A47 100%); min-height: 56vh; }
.hero-portrait { min-height: 78vh; }

.hero-inner {
  max-width: 980px;
  position: relative;
  z-index: 2;
}
.hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(201,149,76,0.18) 0%, transparent 55%);
  pointer-events: none;
}
.eyebrow {
  font-family: 'Lato', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 12px;
  color: var(--gold);
  margin-bottom: 26px;
}
.eyebrow-dark { color: var(--brown); }

.display {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
  font-size: clamp(40px, 6.4vw, 76px);
  margin: 0 0 28px;
}
.hero-em {
  display: block;
  font-style: italic;
  font-weight: 400;
  color: var(--gold-soft);
  font-size: 0.78em;
  margin-top: 10px;
}
.hero-sub {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(17px, 1.8vw, 22px);
  color: rgba(251, 247, 240, 0.78);
  margin: 0 auto 38px;
  max-width: 620px;
}
.cta-row {
  display: inline-flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ---------- CARD WITH IMAGE ---------- */
.card.card-with-img { padding-top: 0; overflow: hidden; }
.card-img {
  display: block;
  width: calc(100% + 64px);
  margin: 0 -32px 28px;
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
  transition: transform 600ms ease;
}
.card-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(44,44,44,0.25) 100%);
}
.card-with-img:hover .card-img { transform: scale(1.04); }

/* ---------- BOOK PROMO ---------- */
.book-promo {
  background: var(--cream-2);
  padding: 110px 28px;
}
.book-promo-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: center;
}
.book-cover-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-width: 0;
}
.book-promo-text {
  min-width: 0;
}
.book-cover {
  display: block;
  max-width: 320px;
  width: 100%;
  height: auto;
  box-shadow:
    0 30px 60px -20px rgba(44, 44, 44, 0.45),
    0 18px 36px -18px rgba(139, 111, 71, 0.35);
  border-radius: 2px;
  transition: transform 500ms ease;
}
.book-cover:hover { transform: translateY(-4px) rotate(-0.5deg); }
.book-promo-text .section-title { margin-top: 6px; }
.book-promo-text p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--ink-soft);
  margin: 20px 0 28px;
  max-width: 520px;
}
@media (max-width: 760px) {
  .book-promo-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .book-promo-text p {
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    overflow-wrap: break-word;
  }
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 2px;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 220ms ease, background 220ms ease, color 220ms ease, border-color 220ms ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: #fff;
}
.btn-primary:hover { background: var(--gold-soft); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--cream);
  border-color: rgba(251, 247, 240, 0.5);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-ghost {
  background: transparent;
  color: var(--green);
  padding: 10px 0;
  letter-spacing: 0.22em;
  border-bottom: 1px solid var(--rule);
  border-radius: 0;
}
.btn-ghost:hover { color: var(--gold); border-color: var(--gold); }
.btn-ghost-dark {
  background: transparent;
  color: var(--ink);
  padding: 10px 0;
  letter-spacing: 0.22em;
  border-bottom: 1px solid var(--rule);
  border-radius: 0;
}
.btn-ghost-dark:hover { color: var(--gold); border-color: var(--gold); }

/* ---------- PULL QUOTE ---------- */
.pull {
  background: var(--cream);
  padding: 110px 28px;
  text-align: center;
}
.pull p {
  max-width: 880px;
  margin: 0 auto;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(24px, 3.4vw, 40px);
  line-height: 1.35;
  color: var(--ink);
}
.pull cite {
  display: block;
  margin-top: 22px;
  font-style: normal;
  font-family: 'Lato', sans-serif;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--brown);
}
.pull-tight { padding: 70px 28px 50px; }

/* ---------- SECTIONS ---------- */
.section { padding: 110px 28px; }
.section-cream { background: var(--cream-2); }
.section-inner { max-width: 1180px; margin: 0 auto; }
.section-head { margin-bottom: 56px; }
.section-head.center { text-align: center; }
.section-title {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: clamp(30px, 4vw, 46px);
  margin: 6px 0 0;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.section-cta { text-align: center; margin-top: 56px; }

/* ---------- CARDS ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.card-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 880px) { .card-grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .card-grid-3 { grid-template-columns: 1fr; } }

.card {
  background: var(--cream);
  padding: 40px 32px 32px;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 2px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 320ms ease, box-shadow 320ms ease, border-color 320ms ease;
  min-height: 320px;
}
.card-rich {
  background: linear-gradient(180deg, var(--cream) 0%, #f6efe1 100%);
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 20px 50px -30px rgba(61, 90, 71, 0.45);
}
.card-heb {
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 18px;
  font-weight: 700;
}
.card-num {
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 12px;
}
.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 600;
  margin: 0 0 16px;
  color: var(--ink);
  line-height: 1.2;
}
.card-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.55;
  margin: 0 0 28px;
  flex: 1;
}

/* ---------- STRIP ---------- */
.strip {
  background: linear-gradient(135deg, #2C2C2C 0%, #3D2f23 100%);
  color: var(--cream);
  padding: 90px 28px;
}
.strip-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.strip-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.4;
  margin: 0;
  max-width: 720px;
}
.strip-quote em { color: var(--gold); font-style: italic; }

/* ---------- PRAYER BANNER ---------- */
.prayer-banner {
  background: linear-gradient(160deg, #C9954C 0%, #8B6F47 100%);
  color: var(--cream);
  text-align: center;
  padding: 110px 28px;
}
.banner-inner { max-width: 720px; margin: 0 auto; }
.banner-title {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: clamp(30px, 4vw, 46px);
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}
.banner-sub {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 19px;
  color: rgba(251, 247, 240, 0.88);
  margin: 0 0 36px;
}

/* ---------- ARTICLE ---------- */
.article {
  max-width: 720px;
  margin: 0 auto;
  padding: 110px 28px;
}
.article p {
  font-family: 'Lato', sans-serif;
  font-size: 19px;
  line-height: 1.92;
  color: var(--ink);
  margin: 0 0 1.6em;
}
.article p:first-of-type::first-letter {
  font-family: 'Playfair Display', serif;
  font-size: 4.6em;
  float: left;
  line-height: 0.9;
  padding: 6px 14px 0 0;
  color: var(--gold);
  font-weight: 700;
}

/* ---------- HERO PORTRAIT ---------- */
.hero-portrait-inner {
  max-width: 880px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.hebrew-mark {
  font-family: 'Playfair Display', serif;
  font-size: clamp(120px, 18vw, 220px);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 24px;
  text-shadow: 0 6px 40px rgba(0,0,0,0.35);
  font-weight: 700;
}
.portrait-title { margin-bottom: 28px; }
.key-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(18px, 2vw, 24px);
  color: rgba(251, 247, 240, 0.88);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ---------- THOUGHTS TO CONSIDER ---------- */
.thoughts {
  max-width: 760px;
  margin: 20px auto 90px;
  padding: 0 28px;
  text-align: center;
}
.rule {
  width: 80px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto;
  position: relative;
}
.rule::before, .rule::after {
  content: '';
  position: absolute;
  top: -2.5px;
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
}
.rule::before { left: -8px; }
.rule::after { right: -8px; }
.thoughts-title {
  font-family: 'Lato', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 12px;
  color: var(--brown);
  font-weight: 700;
  margin: 32px 0 22px;
}
.thoughts-body {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.5;
  color: var(--ink);
  margin: 0 0 32px;
}

/* ---------- CLOSING ---------- */
.closing {
  text-align: center;
  padding: 50px 28px 110px;
}
.closing-line {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(34px, 5vw, 56px);
  color: var(--gold);
  letter-spacing: 0.06em;
  margin: 0;
}

/* ---------- PAGE NAV ---------- */
.page-nav {
  max-width: 1080px;
  margin: 0 auto;
  padding: 60px 28px 110px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: center;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.page-nav-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--ink);
  transition: color 200ms ease;
}
.page-nav-link:hover { color: var(--gold); }
.page-nav-link .dir {
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--brown);
  margin-bottom: 8px;
}
.page-nav-link .np-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
}
.page-nav-link.align-right { text-align: right; align-items: flex-end; }
.page-nav-link.center-link {
  text-align: center;
  align-items: center;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.page-nav-link.center-link .np-title {
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  letter-spacing: 0.28em;
  color: var(--brown);
  font-weight: 700;
}
.page-nav-spacer { display: block; }

@media (max-width: 720px) {
  .page-nav { grid-template-columns: 1fr; gap: 30px; padding-bottom: 70px; }
  .page-nav-link.align-right { text-align: left; align-items: flex-start; }
}

/* ---------- TEAM ---------- */
.team { display: flex; justify-content: center; }
.team-card {
  max-width: 580px;
  text-align: center;
  background: var(--cream);
  padding: 48px 40px;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 2px;
}
.avatar {
  width: 140px; height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--brown) 100%);
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 600;
  margin: 0 auto 22px;
  letter-spacing: 0.04em;
  overflow: hidden;
}
.avatar-photo {
  display: block;
  object-fit: cover;
  object-position: center 18%;
  border: 3px solid var(--gold);
  box-shadow: 0 18px 36px -18px rgba(44, 44, 44, 0.45);
}
.team-name {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  margin: 0 0 16px;
  color: var(--ink);
}
.team-bio {
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin: 0;
}

/* ---------- PRAYER FORM ---------- */
.prayer-section {
  padding: 110px 28px;
  background: var(--cream);
}
.prayer-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.prayer-lead {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 26px);
  color: var(--ink);
  margin: 0 0 56px;
}
.prayer-form {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field-label {
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brown);
  font-weight: 700;
}
.field input,
.field textarea {
  font-family: 'Lato', sans-serif;
  font-size: 17px;
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid rgba(0,0,0,0.18);
  background: transparent;
  color: var(--ink);
  resize: vertical;
  outline: none;
  transition: border-color 220ms ease;
}
.field input:focus,
.field textarea:focus { border-color: var(--gold); }
.form-actions { margin-top: 16px; text-align: center; }
.prayer-error {
  margin: 18px 0 0;
  padding: 14px 16px;
  background: rgba(201, 149, 76, 0.12);
  border-left: 3px solid var(--gold);
  font-size: 15px;
  color: var(--ink);
  text-align: center;
}

.prayer-thanks {
  text-align: center;
  padding: 40px 0;
  animation: fadeIn 600ms ease;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.thanks-rule {
  width: 60px; height: 1px;
  background: var(--gold);
  margin: 0 auto 28px;
}
.prayer-thanks p {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 2.6vw, 30px);
  color: var(--ink);
  margin: 0 0 12px;
}
.thanks-sub {
  font-style: italic;
  color: var(--brown);
  font-size: 18px !important;
}

/* ---------- PRAYER PAGE EXTENDED ---------- */
.prayer-section-title {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: clamp(26px, 3vw, 36px);
  color: var(--ink);
  margin: 0 0 32px;
  line-height: 1.2;
  text-align: left;
}
.prayer-copy {
  font-size: 17px;
  line-height: 1.8;
  color: var(--ink-soft);
  margin: 0 0 16px;
  text-align: left;
}
.prayer-copy:last-of-type { margin-bottom: 48px; }
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 600px) {
  .form-row-2 { grid-template-columns: 1fr; }
}
.field-optional {
  color: var(--brown-soft);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: none;
  margin-left: 4px;
  opacity: 0.75;
}
.field-check {
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
}
.field-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  accent-color: var(--green);
  cursor: pointer;
  margin-top: 3px;
}
.field-check .field-label {
  text-transform: none;
  letter-spacing: 0;
  font-size: 15px;
  color: var(--ink-soft);
  font-weight: 400;
  cursor: pointer;
  line-height: 1.5;
}
.trust-note {
  margin-top: 48px;
  padding: 20px 24px;
  border: 1px solid var(--rule);
  border-radius: 2px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-soft);
  font-style: italic;
  text-align: center;
}
.prayer-section-alt {
  padding: 100px 28px;
  background: var(--cream-2);
}
.quiet-section {
  padding: 90px 28px;
  background: var(--cream);
  text-align: center;
  border-top: 1px solid var(--rule);
}
.quiet-section-inner {
  max-width: 640px;
  margin: 0 auto;
}
.quiet-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 2.8vw, 34px);
  font-style: italic;
  color: var(--green);
  margin: 0 0 22px;
  font-weight: 400;
}
.quiet-section p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--ink-soft);
}

/* Prayer list */
.prayer-list {
  text-align: left;
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}
.prayer-list li {
  font-size: 17px;
  line-height: 1.8;
  color: var(--ink-soft);
  padding: 5px 0 5px 26px;
  position: relative;
}
.prayer-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.55;
}

/* "Someone will pray" note */
.prayer-someone {
  margin-top: 14px;
  text-align: center;
  font-size: 14px;
  font-style: italic;
  color: var(--brown);
  opacity: 0.8;
}

/* Scripture section */
.scripture-section {
  padding: 90px 28px;
  background: var(--cream-2);
  border-top: 1px solid var(--rule);
  text-align: center;
}
.scripture-inner {
  max-width: 560px;
  margin: 0 auto;
}
.prayer-scripture {
  margin: 0;
  padding: 0;
  border: 0;
}
.prayer-scripture p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 27px);
  color: var(--ink);
  line-height: 1.65;
  margin: 0 0 22px;
}
.prayer-scripture cite {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brown);
  font-style: normal;
}

/* Faces of Jesus invite */
.faces-invite-section {
  padding: 72px 28px 96px;
  background: var(--cream);
  text-align: center;
  border-top: 1px solid var(--rule);
}
.faces-invite-inner {
  max-width: 480px;
  margin: 0 auto;
}
.faces-invite-copy {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin: 0 0 26px;
}
.faces-invite-link {
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  text-decoration: none;
  border-bottom: 1px solid rgba(92, 122, 92, 0.3);
  padding-bottom: 2px;
  transition: border-color 220ms ease, color 220ms ease;
}
.faces-invite-link:hover {
  color: var(--ink);
  border-color: var(--gold);
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--charcoal);
  color: rgba(251, 247, 240, 0.78);
  padding: 80px 28px 40px;
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 2fr 1fr;
  gap: 48px;
  align-items: start;
}
.footer-brand .brand { color: var(--cream); }
.footer-brand .brand-just { color: rgba(251,247,240,0.6); }
.footer-brand .brand-jesus { color: var(--cream); }
.footer-brand .brand-info { color: var(--gold); }
.footer-tag {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  margin-top: 14px;
  color: rgba(251,247,240,0.6);
  font-size: 15px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
}
.footer-links a {
  color: rgba(251, 247, 240, 0.78);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 200ms ease;
}
.footer-links a:hover { color: var(--gold); }
.social { display: flex; gap: 16px; justify-content: flex-end; }
.social a {
  color: rgba(251,247,240,0.78);
  width: 40px; height: 40px;
  border: 1px solid rgba(251,247,240,0.18);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 200ms ease, border-color 200ms ease, background 200ms ease;
}
.social a:hover { color: var(--gold); border-color: var(--gold); }
.copyright {
  grid-column: 1 / -1;
  text-align: center;
  margin: 50px 0 0;
  padding-top: 30px;
  border-top: 1px solid rgba(251,247,240,0.08);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(251,247,240,0.45);
}
@media (max-width: 820px) {
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .social { justify-content: flex-start; }
}

/* ---------- LANGUAGE SWITCHER ---------- */
.lang-switcher {
  position: relative;
  margin-left: 8px;
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(44,44,44,0.10);
  border-radius: 999px;
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  cursor: pointer;
  transition: background 200ms ease, border-color 200ms ease, color 200ms ease;
}
.lang-btn:hover { background: #fff; border-color: var(--gold); color: var(--green); }
.lang-btn .flag {
  width: 20px;
  height: 14px;
  border-radius: 2px;
  object-fit: cover;
  display: block;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.06);
}
.lang-btn .caret { font-size: 10px; opacity: 0.6; }
.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 180px;
  margin: 0;
  padding: 6px;
  list-style: none;
  background: #fff;
  border: 1px solid rgba(44,44,44,0.08);
  border-radius: 12px;
  box-shadow: 0 12px 36px rgba(0,0,0,0.14);
  z-index: 60;
}
.lang-menu li { margin: 0; }
.lang-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--ink);
  font-family: 'Lato', sans-serif;
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: background 150ms ease, color 150ms ease;
}
.lang-item:hover { background: var(--cream); color: var(--green); }
.lang-item.is-active {
  background: var(--cream-2);
  color: var(--green);
  font-weight: 700;
}
.lang-item .flag {
  width: 22px;
  height: 16px;
  border-radius: 2px;
  object-fit: cover;
  display: block;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.06);
}

/* Translation-in-progress notice on portrait pages */
.translation-notice {
  background: rgba(201, 149, 76, 0.08);
  border-left: 3px solid var(--gold);
  padding: 14px 18px;
  margin: 0 0 28px;
  font-size: 14.5px;
  color: var(--ink-soft);
  border-radius: 0 6px 6px 0;
}

/* Hide nav-links on mobile, show switcher beside burger */
@media (max-width: 820px) {
  .nav-links { display: none; }
  .lang-btn { padding: 6px 10px; font-size: 12px; }
  .lang-btn .caret { display: none; }
  .lang-menu { right: 0; min-width: 170px; }
}

/* "Read in English" CTA inside translation-notice */
.translation-notice .notice-cta {
  display: inline-block;
  margin-left: 6px;
  font-style: normal;
  font-weight: 700;
  color: var(--green);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 1px;
  transition: color 200ms ease, border-color 200ms ease;
}
.translation-notice .notice-cta:hover { color: var(--gold); border-color: var(--green); }

/* Japanese typography: never break Japanese words/particles mid-character.
   Browser will wrap at the space between Latin and CJK runs instead. */
body[data-lang="jp"] .display,
body[data-lang="jp"] .portrait-title,
body[data-lang="jp"] .section-title,
body[data-lang="jp"] .banner-title,
body[data-lang="jp"] .card-title,
body[data-lang="jp"] .thoughts-title {
  /* Prefer not to break Japanese particles, but ALLOW per-character breaks
     when the text would otherwise overflow (which happens for long pure-CJK
     strings with no spaces). */
  word-break: keep-all;
  overflow-wrap: anywhere;
}
