:root {
  --bg: #f2f1ed;
  --surface: #f7f6f2;
  --panel: #f9f9f7;
  --white: #ffffff;
  --text: #17181b;
  --muted: #98917f;
  --line: #e4e1d8;
  --line-strong: #d9d5ca;
  --accent: #67614d;
  --burnt-orange: #b65b30;
  --burnt-orange-soft: #cc8d6b;
  --drawer-dark: #16181c;
  --radius-lg: 26px;
  --radius-md: 14px;
  --shadow-card: 0 14px 34px rgba(25, 24, 22, 0.08);
  --shadow-card-strong: 0 22px 44px rgba(25, 24, 22, 0.14);
  --shadow-float: 0 10px 20px rgba(34, 28, 22, 0.16);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid #ba6f49;
  outline-offset: 2px;
}

.container {
  width: min(1080px, calc(100vw - 46px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(250, 250, 248, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(7px);
}

.header-inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #191b1f;
  color: #f9f8f5;
}

.selah-mark-icon {
  width: 24px;
  height: 24px;
  display: block;
}

.selah-mark-icon .mark-stroke {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.selah-mark-icon .mark-accent {
  fill: var(--burnt-orange-soft);
  opacity: 0.94;
}

.brand-name {
  font-family: "Playfair Display", "Bodoni MT", "Bodoni 72", "Times New Roman", serif;
  font-size: 2.2rem;
  line-height: 1;
}

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  border: 0;
  background: transparent;
  color: var(--muted);
  border-radius: 999px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 600;
  font-size: 0.69rem;
  min-height: 44px;
  padding: 9px 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.nav-icon {
  width: 13px;
  height: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-icon svg {
  width: 13px;
  height: 13px;
  display: block;
}

.nav-link.active {
  color: var(--burnt-orange);
}

.nav-link:hover {
  color: #7d4a2f;
  background: rgba(182, 91, 48, 0.12);
  box-shadow: inset 0 0 0 1px rgba(182, 91, 48, 0.2);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 999px;
  color: #3e3e3e;
  min-height: 44px;
  padding: 7px 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.66rem;
  font-weight: 600;
}

.give-banner {
  position: sticky;
  top: 92px;
  z-index: 24;
  border-bottom: 1px solid #ddd2c0;
  background: #ece4d5;
}

.give-banner-inner {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
}

.give-banner p {
  margin: 0;
  color: #756c5d;
  font-size: 0.83rem;
  line-height: 1.4;
}

.give-banner-link {
  color: #7d4a2f;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 140ms ease, border-color 140ms ease;
}

.give-banner-link:hover {
  color: #684130;
  border-color: #c8a58a;
}

.give-banner-close {
  border: 0;
  background: transparent;
  color: #948a77;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  transition: background-color 140ms ease, color 140ms ease;
}

.give-banner-close:hover {
  background: rgba(125, 74, 47, 0.1);
  color: #6d4a35;
}

.page {
  display: none;
}

.page.active {
  display: block;
}

.page-hero {
  text-align: center;
  padding: clamp(62px, 10vw, 108px) 22px clamp(56px, 8vw, 86px);
  border-bottom: 1px solid var(--line);
}

.page-hero h1,
.page-hero h2,
.page-hero h3 {
  margin: 0;
  font-family: "Playfair Display", "Bodoni MT", "Bodoni 72", "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
  text-wrap: balance;
}

.page-hero h1 {
  font-size: clamp(3.8rem, 9vw, 6.2rem);
}

.page-hero h2 {
  font-size: clamp(3.8rem, 10vw, 7.4rem);
}

.eyebrow {
  margin: 10px 0 0;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-weight: 600;
  font-size: 0.66rem;
  color: var(--burnt-orange-soft);
}

.hero-subtitle {
  margin: 42px auto 0;
  width: min(640px, 92%);
  color: #8e8778;
  font-size: 1.14rem;
  line-height: 1.38;
}

#page-home .page-hero {
  min-height: min(640px, calc(100vh - 94px));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: clamp(74px, 10vw, 126px);
  padding-bottom: clamp(68px, 11vw, 142px);
  background-image:
    radial-gradient(circle at 24% 20%, rgba(182, 91, 48, 0.16), rgba(182, 91, 48, 0) 42%),
    linear-gradient(180deg, rgba(246, 243, 236, 0.92), rgba(242, 241, 237, 0.98));
  background-size: auto, auto;
  background-position: center, center;
  background-repeat: no-repeat;
}

.home-daily-wrap {
  padding: clamp(44px, 7vw, 82px) 0 clamp(28px, 5vw, 52px);
}

.home-daily-verse {
  margin: 0 auto;
  width: min(880px, 100%);
  background: linear-gradient(180deg, rgba(251, 249, 244, 0.95), rgba(247, 244, 237, 0.98));
  border: 1px solid #ebe4d7;
  border-radius: calc(var(--radius-lg) + 2px);
  padding: clamp(26px, 4.8vw, 52px) clamp(20px, 4.6vw, 58px);
  box-shadow: var(--shadow-card);
  text-align: center;
  transition: transform 170ms ease, box-shadow 170ms ease, border-color 170ms ease;
}

.home-daily-verse:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card-strong);
  border-color: #decfbb;
}

.home-daily-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--burnt-orange-soft);
}

.home-daily-verse blockquote {
  margin: 14px 0 0;
  font-family: "Playfair Display", "Bodoni MT", "Bodoni 72", "Times New Roman", serif;
  font-size: clamp(2.3rem, 4.8vw, 4.15rem);
  line-height: 1.07;
  letter-spacing: -0.008em;
  font-weight: 600;
  color: #1c1d1f;
}

.home-daily-reference {
  margin: 14px 0 0;
  color: #988d75;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 700;
  font-size: 0.7rem;
}

.home-daily-reflection {
  margin: 18px auto 0;
  width: min(640px, 100%);
  color: #585246;
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  line-height: 1.64;
}

.section-block {
  padding: 42px 0 34px;
}

.feeling-form {
  margin-top: 34px;
}

.feeling-shell {
  width: min(730px, 100%);
  margin: 0 auto;
  border: 1px solid #e6dbcb;
  border-radius: 999px;
  background: #f9f8f6;
  padding: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.feeling-shell input {
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  color: var(--text);
  padding: 0 18px;
  min-width: 0;
}

.feeling-shell input::placeholder {
  color: #d4cec1;
}

.feeling-shell button {
  border: 0;
  border-radius: 999px;
  background: var(--burnt-orange);
  color: #f4f2ec;
  text-transform: uppercase;
  letter-spacing: 0.17em;
  font-size: 0.74rem;
  font-weight: 700;
  min-height: 58px;
  min-width: 196px;
  padding: 0 22px;
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.feeling-shell button:hover {
  background: #9d4d29;
  transform: translateY(-1px);
  box-shadow: var(--shadow-float);
}

.chip-row {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.chip-row button {
  border: 1px solid #efede7;
  background: #f8f7f4;
  color: #998f79;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.66rem;
  font-weight: 600;
  padding: 9px 14px;
  cursor: pointer;
  transition: border-color 140ms ease, color 140ms ease, background 140ms ease, box-shadow 140ms ease, transform 140ms ease;
}

.chip-row button:hover {
  border-color: #e2c2ad;
  color: #8f4928;
  background: #fbfaf7;
  box-shadow: 0 8px 16px rgba(76, 56, 37, 0.11);
  transform: translateY(-1px);
}

.guided-start-trigger {
  margin: 20px auto 0;
  border: 1px solid #e6ddd0;
  background: rgba(250, 248, 242, 0.92);
  color: #8f846f;
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 0.83rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: border-color 160ms ease, color 160ms ease, box-shadow 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.guided-start-trigger span {
  color: #a37a60;
}

.guided-start-trigger:hover {
  border-color: #d6b8a2;
  color: #785d4b;
  background: #fbf8f2;
  box-shadow: 0 8px 16px rgba(58, 45, 33, 0.12);
  transform: translateY(-1px);
}

.guided-start-trigger:focus-visible {
  outline: 2px solid #d6a48a;
  outline-offset: 2px;
}

.continue-panel {
  margin: 22px auto 0;
  width: min(760px, 100%);
  border: 1px solid #e7dece;
  border-radius: 18px;
  background: rgba(250, 248, 243, 0.9);
  padding: 13px 14px 10px;
}

.continue-kicker {
  margin: 0;
  color: #8e836d;
  text-transform: uppercase;
  letter-spacing: 0.17em;
  font-size: 0.62rem;
  font-weight: 700;
}

.continue-actions {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.continue-btn {
  border: 1px solid #e5dccf;
  background: #f8f7f3;
  color: #6f6657;
  border-radius: 999px;
  min-height: 34px;
  padding: 0 12px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 140ms ease, background-color 140ms ease, color 140ms ease, transform 140ms ease, box-shadow 140ms ease;
}

.continue-btn:hover {
  border-color: #d5b49e;
  background: #fcfaf5;
  color: #6b4938;
  transform: translateY(-1px);
  box-shadow: var(--shadow-float);
}

.feeling-shell:focus-within {
  border-color: #d6a48a;
  box-shadow: 0 0 0 3px rgba(182, 91, 48, 0.18);
}

.inline-note {
  margin: 18px auto 0;
  text-align: center;
  color: #756d5f;
  font-size: 0.88rem;
  min-height: 1.2em;
}

.inline-note.error {
  color: #8e4234;
}

.bible-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 12px;
}

.bible-status-row {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.bible-connection-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid #ddd4c5;
  background: #f7f4ef;
  color: #776e5f;
  border-radius: 999px;
  padding: 4px 10px;
  min-height: 28px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  font-size: 0.58rem;
}

.bible-connection-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #6b9a71;
}

.bible-connection-badge.offline {
  border-color: #d4c7b5;
  background: #f3eee4;
  color: #866d56;
}

.bible-connection-badge.offline::before {
  background: #b98a57;
}

.control-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

select,
input {
  border: 1px solid var(--line-strong);
  background: #f7f6f3;
  color: #2d2d2e;
  border-radius: 10px;
  height: 42px;
  padding: 0 13px;
  font-size: 0.95rem;
}

#book-select {
  width: clamp(150px, 20vw, 196px);
}

#chapter-input {
  width: clamp(74px, 8.5vw, 90px);
}

#translation-select {
  width: clamp(200px, 24vw, 248px);
}

.search-form {
  position: relative;
  display: flex;
  align-items: center;
  width: min(340px, 100%);
}

.search-form input {
  padding-left: 34px;
  width: 100%;
  min-width: 0;
}

.search-form button {
  position: absolute;
  left: 11px;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: #8d836f;
  width: auto;
  height: auto;
  padding: 0;
  cursor: pointer;
  font-size: 0.95rem;
}

.chapter-card {
  background: var(--panel);
  border: 1px solid #ece8df;
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 52px);
  box-shadow: var(--shadow-card);
  transition: box-shadow 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.chapter-card:hover {
  box-shadow: var(--shadow-card-strong);
  transform: translateY(-2px);
  border-color: #ddd5c8;
}

.chapter-heading {
  text-align: center;
}

.chapter-heading h3 {
  margin: 0;
  font-family: "Playfair Display", "Bodoni MT", "Bodoni 72", "Times New Roman", serif;
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  line-height: 1;
  font-weight: 600;
}

.chapter-heading p {
  margin: 4px 0 0;
  color: #aba18c;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.68rem;
  font-weight: 700;
}

.verses {
  margin-top: 30px;
  display: grid;
  gap: 18px;
}

.verse-item {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 14px;
}

.verse-num {
  color: #d0cabd;
  font-family: "Playfair Display", "Bodoni MT", "Bodoni 72", "Times New Roman", serif;
  font-size: 1.1rem;
  margin-top: 2px;
}

.verse-item div:last-child {
  font-size: 1.02rem;
  line-height: 1.65;
  color: #353535;
}

.chapter-actions {
  margin-top: 26px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
}

.text-btn {
  border: 0;
  background: transparent;
  color: #7d7361;
  letter-spacing: 0.02em;
  font-size: 0.95rem;
  min-height: 40px;
  padding: 8px 0;
  cursor: pointer;
  transition: color 150ms ease, transform 150ms ease;
}

.text-btn:hover:not(:disabled) {
  color: #7d4a2f;
  transform: translateY(-1px);
}

.text-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.topics-toolbar {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 14px;
}

.topic-sort-btn {
  border: 1px solid #e1d8cb;
  background: #f8f6f1;
  color: #7f705c;
  border-radius: 999px;
  min-height: 42px;
  padding: 0 14px 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.66rem;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 160ms ease, color 160ms ease, background-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.topic-sort-btn:hover {
  border-color: #d3b59d;
  color: #7d4a2f;
  background: #fbf8f3;
  box-shadow: var(--shadow-float);
  transform: translateY(-1px);
}

.topic-sort-btn.active {
  border-color: #b87049;
  background: #7d4a2f;
  color: #fbf8f1;
}

.topic-sort-icon {
  width: 15px;
  height: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.topic-sort-icon svg {
  width: 15px;
  height: 15px;
  display: block;
}

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

@media (min-width: 640px) {
  .topic-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .topic-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1400px) {
  .topic-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.topic-card {
  position: relative;
  min-height: 124px;
  border-radius: 16px;
  border: 1px solid var(--line-strong);
  background: #f8f8f5;
  color: #585042;
  box-shadow: var(--shadow-card);
  transition: box-shadow 170ms ease, transform 170ms ease, border-color 170ms ease, background-color 170ms ease, color 170ms ease;
}

.topic-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-strong);
  border-color: #d5ae98;
  background: #fbf8f4;
  color: #7d4a2f;
}

.topic-open-btn {
  width: 100%;
  min-height: 124px;
  border: 0;
  background: transparent;
  color: inherit;
  font-size: 1.04rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  padding: 24px 16px;
}

.topic-open-btn:focus-visible,
.topic-share-btn:focus-visible {
  outline: 2px solid #cd8f6d;
  outline-offset: 2px;
}

.topic-share-btn {
  position: absolute;
  top: 9px;
  right: 9px;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid #e7e1d5;
  background: #f7f5f0;
  color: #8e7f69;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(6px);
  transition: border-color 150ms ease, background-color 150ms ease, color 150ms ease, box-shadow 150ms ease, transform 180ms ease, opacity 180ms ease;
}

.topic-card:hover .topic-share-btn,
.topic-card:focus-within .topic-share-btn {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

@media (hover: none) {
  .topic-share-btn {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
}

.topic-share-btn svg {
  width: 15px;
  height: 15px;
  display: block;
}

.topic-share-btn:hover {
  border-color: #d2b498;
  background: #fbf6ee;
  color: #7d4a2f;
  box-shadow: var(--shadow-float);
  transform: translateY(-1px);
}

.topic-icon {
  font-size: 1.22rem;
  line-height: 1;
  color: #7c7361;
}

.topic-label {
  font-size: 1.05rem;
  line-height: 1;
  font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.topic-card.active {
  background: #7d4a2f;
  border-color: #7d4a2f;
  color: #fbf9f1;
}

.topic-card.active .topic-icon {
  color: #f5efe2;
}

.topic-card.active:hover .topic-share-btn,
.topic-card.active:focus-within .topic-share-btn {
  border-color: #946043;
  background: rgba(255, 246, 231, 0.16);
  color: #f8f2e8;
}

.topic-card.active:hover .topic-share-btn:hover,
.topic-card.active:focus-within .topic-share-btn:hover {
  border-color: #d3b398;
  background: rgba(255, 246, 231, 0.24);
}

.community-shell {
  display: grid;
  grid-template-columns: minmax(300px, 360px) 1fr;
  gap: 24px;
  align-items: start;
}

.community-submit-card,
.community-wall {
  background: #f8f7f4;
  border: 1px solid #ece8de;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.community-submit-card {
  padding: clamp(22px, 3.8vw, 34px);
}

.community-submit-card h3 {
  margin: 0;
  font-family: "Playfair Display", "Bodoni MT", "Bodoni 72", "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 2.7rem);
  line-height: 0.95;
  font-weight: 600;
}

.community-submit-copy {
  margin: 12px 0 0;
  color: #756d5f;
  font-size: 0.95rem;
}

.community-label {
  margin-top: 16px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.66rem;
  font-weight: 700;
  color: #8f846f;
}

.prayer-form textarea {
  margin-top: 8px;
  width: 100%;
  min-height: 114px;
  resize: vertical;
  border: 1px solid #ddd6c8;
  border-radius: 14px;
  background: #f4f2ed;
  color: #2e2f31;
  font-size: 1rem;
  line-height: 1.55;
  padding: 14px 15px;
  font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

.prayer-form textarea:focus-visible {
  outline: none;
  border-color: #cf9a7d;
  box-shadow: 0 0 0 3px rgba(182, 91, 48, 0.16);
}

.honeypot-label,
.honeypot-input {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.prayer-form-actions {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.prayer-form-actions .inline-note {
  margin: 0;
  min-height: 0;
  text-align: left;
  font-size: 0.82rem;
  color: #7b7262;
}

.prayer-form button,
.prayer-response-form button {
  border: 0;
  border-radius: 999px;
  background: var(--burnt-orange);
  color: #f9f4eb;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.66rem;
  font-weight: 700;
  min-height: 40px;
  padding: 0 18px;
  cursor: pointer;
  transition: background-color 150ms ease, transform 150ms ease, box-shadow 150ms ease;
}

.prayer-form button:hover,
.prayer-response-form button:hover {
  background: #9d4d29;
  transform: translateY(-1px);
  box-shadow: var(--shadow-float);
}

.prayer-subtle-btn {
  border: 1px solid #e2d7c7;
  border-radius: 999px;
  background: #f7f4ef;
  color: #857a66;
  min-height: 36px;
  padding: 0 12px;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 140ms ease, background-color 140ms ease, color 140ms ease, transform 140ms ease, box-shadow 140ms ease;
}

.prayer-subtle-btn:hover {
  border-color: #d7bea9;
  background: #fbf8f3;
  color: #674b3d;
  transform: translateY(-1px);
  box-shadow: var(--shadow-float);
}

.community-wall {
  padding: clamp(20px, 3vw, 30px);
}

.community-wall-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 12px;
}

.community-wall-head .eyebrow {
  margin: 0;
}

.community-count {
  margin: 0;
  color: #93856f;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.68rem;
  font-weight: 700;
}

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

.prayer-card {
  background: #f9f8f5;
  border: 1px solid #e8e2d7;
  border-radius: 18px;
  padding: clamp(16px, 2.4vw, 24px);
  box-shadow: 0 12px 26px rgba(30, 27, 22, 0.08);
  transition: box-shadow 160ms ease, transform 160ms ease, border-color 160ms ease;
}

.prayer-card:hover {
  border-color: #d7beab;
  box-shadow: 0 18px 32px rgba(30, 27, 22, 0.14);
  transform: translateY(-2px);
}

.prayer-card-empty {
  text-align: center;
  padding: 30px 20px;
}

.prayer-card-empty h3 {
  margin: 0;
  font-family: "Playfair Display", "Bodoni MT", "Bodoni 72", "Times New Roman", serif;
  font-size: 2.1rem;
  line-height: 0.96;
}

.prayer-card-empty p {
  margin: 12px auto 0;
  width: min(420px, 100%);
  color: #7d7361;
  font-size: 0.98rem;
  line-height: 1.55;
}

.prayer-text {
  margin: 0;
  font-size: 1.07rem;
  line-height: 1.62;
  color: #2f302f;
}

.prayer-meta {
  margin: 12px 0 0;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.64rem;
  font-weight: 700;
  color: #877b67;
}

.prayer-actions {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.prayer-action-btn,
.prayer-praying-btn {
  border: 1px solid #ddd3c2;
  background: #f6f4ef;
  color: #6f6653;
  border-radius: 999px;
  min-height: 40px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.84rem;
  cursor: pointer;
  transition: border-color 150ms ease, color 150ms ease, background-color 150ms ease, transform 150ms ease;
}

.prayer-action-btn:hover,
.prayer-praying-btn:hover {
  border-color: #d2b59d;
  color: #7d4a2f;
  background: #fbf7f1;
  transform: translateY(-1px);
}

.prayer-praying-btn {
  background: #f2eee7;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-weight: 700;
}

.prayer-suggestion {
  margin-top: 14px;
  border: 1px solid #e2dbce;
  border-radius: 14px;
  background: #f6f3ec;
  padding: 12px;
}

.prayer-suggestion-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.62rem;
  font-weight: 700;
  color: #93846f;
}

.prayer-suggestion-text {
  margin: 8px 0 0;
  font-family: "Playfair Display", "Bodoni MT", "Bodoni 72", "Times New Roman", serif;
  font-style: italic;
  font-size: 1.34rem;
  line-height: 1.18;
  color: #2a2b2d;
}

.prayer-suggestion-ref {
  margin: 6px 0 0;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.62rem;
  font-weight: 700;
  color: #a1947d;
}

.prayer-verse-btn {
  margin-top: 6px;
  color: #7d4a2f;
}

.prayer-response-list {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.prayer-response-item {
  border-left: 2px solid #e2d8c7;
  padding-left: 10px;
}

.prayer-response-item p {
  margin: 0;
  color: #3c3a35;
  font-size: 0.93rem;
  line-height: 1.55;
}

.prayer-response-meta {
  margin-top: 4px !important;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.58rem !important;
  font-weight: 700;
  color: #a59781 !important;
}

.prayer-response-empty {
  color: #7a705f;
  font-size: 0.84rem;
}

.prayer-response-form {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 8px;
  align-items: center;
}

.prayer-response-form input {
  width: 100%;
  min-width: 0;
}

.daily-card {
  width: min(760px, 100%);
  margin: 0 auto;
  background: #f8f7f4;
  border: 1px solid #ece8de;
  border-radius: calc(var(--radius-lg) + 4px);
  padding: clamp(30px, 4.4vw, 60px);
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: box-shadow 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.daily-card:hover {
  box-shadow: var(--shadow-card-strong);
  transform: translateY(-2px);
  border-color: #ddd5c8;
}

.notes-card {
  width: min(760px, 100%);
  margin: 18px auto 0;
  background: #f8f7f4;
  border: 1px solid #ece8de;
  border-radius: 20px;
  padding: clamp(18px, 3vw, 30px);
  box-shadow: var(--shadow-card);
}

.notes-card h3 {
  margin: 0;
  font-family: "Playfair Display", "Bodoni MT", "Bodoni 72", "Times New Roman", serif;
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  line-height: 0.95;
  font-weight: 600;
}

.notes-copy {
  margin: 10px 0 0;
  color: #8b816d;
  font-size: 0.93rem;
}

.notes-card textarea {
  margin-top: 12px;
  width: 100%;
  min-height: 120px;
  resize: vertical;
  border: 1px solid #ddd6c8;
  border-radius: 14px;
  background: #f4f2ed;
  color: #2e2f31;
  font-size: 1rem;
  line-height: 1.55;
  padding: 12px 14px;
  font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

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

.notes-actions button {
  border: 0;
  border-radius: 999px;
  background: var(--burnt-orange);
  color: #f9f4eb;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.64rem;
  font-weight: 700;
  min-height: 38px;
  padding: 0 14px;
  cursor: pointer;
  transition: background-color 150ms ease, transform 150ms ease, box-shadow 150ms ease;
}

.notes-actions button:hover {
  background: #9d4d29;
  transform: translateY(-1px);
  box-shadow: var(--shadow-float);
}

.notes-actions .notes-subtle-btn {
  border: 1px solid #ddcfbc;
  background: #f8f5ef;
  color: #776b59;
}

.notes-actions .notes-subtle-btn:hover {
  border-color: #ceb39e;
  color: #624a3c;
  background: #fbf8f2;
}

.daily-bookmark-wrap {
  display: flex;
  justify-content: flex-end;
}

.bookmark-btn {
  position: relative;
  border: 0;
  background: transparent;
  color: #cdc5b4;
  width: 24px;
  height: 26px;
  padding: 0;
  line-height: 1;
  cursor: pointer;
}

.bookmark-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #d4ccbc;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 78%, 0 100%);
  border-radius: 3px;
}

.bookmark-btn.active {
  color: #6f674f;
}

.bookmark-btn.active::before {
  background: #716953;
}

.daily-card blockquote {
  margin: 2px 0 0;
  font-family: "Playfair Display", "Bodoni MT", "Bodoni 72", "Times New Roman", serif;
  font-size: clamp(2.45rem, 6vw, 4.2rem);
  line-height: 1.08;
  font-style: italic;
}

.daily-ref {
  margin: 12px 0 0;
  color: #9d947f;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.72rem;
}

.daily-reflection {
  margin: 28px auto 0;
  width: min(560px, 100%);
  color: #5b5649;
  font-size: 1.04rem;
  line-height: 1.6;
}

.daily-reveal-item {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 860ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 860ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--daily-reveal-delay, 0s);
  will-change: opacity, transform;
}

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

.daily-actions {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: #f7f6f3;
  color: #9c917a;
  font-size: 1.05rem;
  cursor: pointer;
  transition: color 150ms ease, border-color 150ms ease, background-color 150ms ease, transform 150ms ease, box-shadow 150ms ease;
}

.icon-circle:hover {
  color: #7d4a2f;
  border-color: #d5ae98;
  background: #faf6f1;
  transform: translateY(-1px);
  box-shadow: var(--shadow-float);
}

.devotional-shell {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 30px;
  align-items: start;
}

.day-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.day-grid button {
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  border: 1px solid var(--line-strong);
  background: #f7f6f3;
  color: #9d937e;
  font-size: 0.85rem;
  cursor: pointer;
  transition: transform 150ms ease, box-shadow 150ms ease, border-color 150ms ease, background-color 150ms ease, color 150ms ease;
}

.day-grid button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-float);
  border-color: #d5ae98;
  color: #7d4a2f;
  background: #fbf8f4;
}

.day-grid button.active {
  background: #7d4a2f;
  border-color: #7d4a2f;
  color: #faf8f2;
}

.devotional-card {
  background: #f8f7f4;
  border: 1px solid #ece8de;
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 46px);
  box-shadow: var(--shadow-card);
  transition: box-shadow 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.devotional-card:hover {
  box-shadow: var(--shadow-card-strong);
  transform: translateY(-2px);
  border-color: #ddd5c8;
}

.devotional-card h3 {
  margin: 5px 0 0;
  font-family: "Playfair Display", "Bodoni MT", "Bodoni 72", "Times New Roman", serif;
  font-weight: 600;
  font-size: clamp(2.7rem, 5vw, 4rem);
  line-height: 0.98;
}

.devotional-card .detail-day {
  margin: 0;
  color: #a29680;
  text-transform: uppercase;
  letter-spacing: 0.23em;
  font-weight: 700;
  font-size: 0.66rem;
}

.devotional-card .detail-cycle {
  margin: 6px 0 0;
  color: #a99f89;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  font-size: 0.62rem;
}

.quote-box {
  margin: 22px 0 0;
  border-left: 4px solid #8f846c;
  padding-left: 16px;
}

.quote-box p {
  margin: 0;
  font-family: "Playfair Display", "Bodoni MT", "Bodoni 72", "Times New Roman", serif;
  font-style: italic;
  font-size: 2.2rem;
  line-height: 1.1;
}

.devotional-card .reflection {
  margin: 22px 0 0;
  color: #4d483f;
  font-size: 1.03rem;
  line-height: 1.64;
}

.prayer-box {
  margin-top: 24px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  background: #f6f4ef;
  padding: 17px 18px;
}

.prayer-box h4 {
  margin: 0;
  font-family: "Playfair Display", "Bodoni MT", "Bodoni 72", "Times New Roman", serif;
  font-weight: 600;
  font-size: 2rem;
  line-height: 1;
}

.prayer-box p {
  margin: 8px 0 0;
  color: #5b564c;
  font-style: italic;
  font-size: 0.96rem;
  line-height: 1.6;
}

.challenge-box {
  margin-top: 20px;
  border: 1px dashed #d9d2c4;
  border-radius: var(--radius-md);
  background: #f8f7f2;
  padding: 16px 18px;
}

.challenge-box .challenge-title {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  font-size: 0.65rem;
  color: #726955;
}

.challenge-box p {
  margin: 8px 0 0;
  font-size: 0.99rem;
  line-height: 1.58;
  color: #575147;
}

.devotional-guided-box {
  margin-top: 20px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  background: #f9f7f2;
  padding: 16px 18px;
}

.devotional-guided-box .guided-title {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  font-size: 0.65rem;
  color: #6f6653;
}

.devotional-guided-list {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.devotional-guided-list li {
  border: 1px solid #e5ddd0;
  border-radius: 12px;
  background: #fbf9f4;
  padding: 10px 12px;
  color: #4f4a40;
  font-size: 0.95rem;
  line-height: 1.5;
}

.give-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 26px;
}

.give-card {
  background: #f8f7f4;
  border: 1px solid #ece8de;
  border-radius: 18px;
  padding: clamp(18px, 2.6vw, 26px);
  box-shadow: var(--shadow-card);
  transition: box-shadow 170ms ease, transform 170ms ease, border-color 170ms ease;
}

.give-card:hover {
  box-shadow: var(--shadow-card-strong);
  transform: translateY(-2px);
  border-color: #ddd2c2;
}

.give-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid #e7e0d3;
  color: #8d7f69;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.give-icon svg {
  width: 18px;
  height: 18px;
  display: block;
}

.give-card h3 {
  margin: 12px 0 0;
  font-family: "Playfair Display", "Bodoni MT", "Bodoni 72", "Times New Roman", serif;
  font-size: 1.8rem;
  line-height: 1.05;
  font-weight: 600;
}

.give-card p {
  margin: 10px 0 0;
  color: #5a5448;
  font-size: 0.96rem;
  line-height: 1.58;
}

.give-donate {
  width: min(660px, 100%);
  margin: 0 auto;
  background: #f8f7f4;
  border: 1px solid #ece8de;
  border-radius: 22px;
  box-shadow: var(--shadow-card);
  padding: clamp(22px, 4vw, 36px);
  text-align: center;
}

.give-donate h3 {
  margin: 0;
  font-family: "Playfair Display", "Bodoni MT", "Bodoni 72", "Times New Roman", serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.05;
  font-weight: 600;
}

.give-amounts {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.give-amount-btn {
  border: 1px solid #e4dbcc;
  background: #f8f7f3;
  color: #726955;
  border-radius: 999px;
  min-height: 38px;
  min-width: 70px;
  padding: 0 16px;
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 150ms ease, color 150ms ease, background-color 150ms ease, transform 150ms ease, box-shadow 150ms ease;
}

.give-amount-btn:hover {
  border-color: #d1b299;
  color: #7d4a2f;
  background: #fbf7f1;
  transform: translateY(-1px);
  box-shadow: var(--shadow-float);
}

.give-amount-btn.active {
  border-color: #7d4a2f;
  background: #7d4a2f;
  color: #f8f5ef;
}

.give-custom-input {
  margin: 12px auto 0;
  width: min(260px, 100%);
  border: 1px solid #ddd3c2;
  border-radius: 999px;
  background: #f6f4ef;
  min-height: 42px;
  text-align: center;
  color: #413f39;
}

.give-cta {
  margin-top: 16px;
  width: min(320px, 100%);
  min-height: 52px;
  border: 0;
  border-radius: 999px;
  background: var(--burnt-orange);
  color: #f8f5ef;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.73rem;
  font-weight: 700;
  transition: background-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.give-cta:hover {
  background: #9d4d29;
  transform: translateY(-1px);
  box-shadow: var(--shadow-float);
}

.give-meta {
  margin: 14px 0 0;
  color: #9b907d;
  font-size: 0.76rem;
  line-height: 1.5;
}

.site-footer {
  margin-top: 28px;
  border-top: 1px solid var(--line);
  text-align: center;
  padding: 82px 18px 106px;
}

.footer-mark {
  margin: 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #191b1f;
  color: #f8f6f0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-mark .selah-mark-icon {
  width: 25px;
  height: 25px;
}

.footer-brand {
  margin: 14px 0 0;
  font-family: "Playfair Display", "Bodoni MT", "Bodoni 72", "Times New Roman", serif;
  font-size: 3.15rem;
  line-height: 1;
}

.footer-line {
  margin: 16px 0 0;
  color: #90745f;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-size: 0.68rem;
  font-weight: 700;
}

.footer-give-line {
  margin: 10px auto 0;
  width: min(640px, 100%);
  color: #9a907c;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  line-height: 1.5;
}

.footer-give-line a {
  color: #8a5b41;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 140ms ease, border-color 140ms ease;
}

.footer-give-line a:hover {
  color: #6e4733;
  border-color: #c7a38a;
}

.footer-links {
  margin: 14px 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.footer-links a {
  color: #988b74;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.62rem;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color 140ms ease, border-color 140ms ease;
}

.footer-links a:hover {
  color: #7a5c4a;
  border-color: #cfaa91;
}

.trust-main {
  min-height: calc(100vh - 92px);
  display: flex;
  align-items: center;
  padding: clamp(42px, 7vw, 90px) 0;
}

.trust-shell {
  width: min(860px, 100%);
  margin: 0 auto;
  background: #f8f7f3;
  border: 1px solid #ebe4d7;
  border-radius: 24px;
  box-shadow: var(--shadow-card);
  padding: clamp(24px, 4vw, 48px);
}

.trust-title {
  margin: 12px 0 0;
  font-family: "Playfair Display", "Bodoni MT", "Bodoni 72", "Times New Roman", serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 0.94;
  letter-spacing: -0.01em;
}

.trust-copy {
  margin: 16px 0 0;
  color: #534d41;
  font-size: 1.03rem;
  line-height: 1.62;
}

.trust-links-row {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-link {
  display: inline-flex;
  align-items: center;
  border: 0;
  border-radius: 999px;
  background: var(--burnt-orange);
  color: #f8f5ee;
  min-height: 40px;
  padding: 0 15px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.64rem;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 150ms ease, transform 150ms ease, box-shadow 150ms ease;
}

.trust-link:hover {
  background: #9d4d29;
  transform: translateY(-1px);
  box-shadow: var(--shadow-float);
}

.trust-link.subtle {
  border: 1px solid #ddcfbc;
  background: #f8f5ef;
  color: #776b59;
}

.trust-link.subtle:hover {
  border-color: #ceb39e;
  color: #624a3c;
  background: #fbf8f2;
}

.footer-copy {
  margin: 24px auto 0;
  width: min(480px, 100%);
  color: #8b7f6b;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  font-size: 0.68rem;
  line-height: 1.6;
}

.guided-overlay {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  padding: clamp(14px, 3vw, 28px);
  background: rgba(28, 24, 20, 0.34);
  backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.guided-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.guided-modal {
  position: relative;
  width: min(860px, 100%);
  max-height: min(92vh, 980px);
  overflow: auto;
  border: 1px solid #e6dece;
  border-radius: 30px;
  background:
    radial-gradient(circle at 14% 10%, rgba(182, 91, 48, 0.12), rgba(182, 91, 48, 0) 48%),
    linear-gradient(180deg, #fbf9f3, #f6f4ee);
  box-shadow: 0 30px 70px rgba(16, 13, 10, 0.34);
}

.guided-close {
  position: absolute;
  top: 14px;
  right: 14px;
  border: 1px solid #ddd3c3;
  background: rgba(249, 246, 240, 0.86);
  color: #8f846f;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color 140ms ease, color 140ms ease, transform 140ms ease, box-shadow 140ms ease;
}

.guided-close:hover {
  border-color: #cfb39f;
  color: #7e5f4d;
  transform: translateY(-1px);
  box-shadow: var(--shadow-float);
}

.guided-modal-inner {
  padding: clamp(34px, 5vw, 58px) clamp(20px, 5.2vw, 68px) clamp(28px, 4.5vw, 48px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.guided-modal-inner.is-transitioning {
  opacity: 0;
  transform: translateY(12px);
}

.guided-stage {
  animation: guided-enter 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

.guided-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.63rem;
  font-weight: 700;
  color: var(--burnt-orange-soft);
}

.guided-title {
  margin: 12px 0 0;
  font-family: "Playfair Display", "Bodoni MT", "Bodoni 72", "Times New Roman", serif;
  font-size: clamp(2.5rem, 6vw, 4.4rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.008em;
}

.guided-copy {
  margin: 16px 0 0;
  color: #6f6759;
  font-size: 1rem;
  line-height: 1.6;
}

.guided-option-list {
  margin-top: 24px;
  display: grid;
  gap: 12px;
}

.guided-option-btn {
  width: 100%;
  text-align: left;
  border: 1px solid #e4dccd;
  border-radius: 16px;
  background: rgba(249, 246, 240, 0.88);
  color: #4f493f;
  font-size: 1rem;
  line-height: 1.35;
  padding: 14px 16px;
  cursor: pointer;
  transition: border-color 160ms ease, background-color 160ms ease, color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.guided-option-btn:hover {
  border-color: #d2b09a;
  background: #fcfaf4;
  color: #3f342d;
  transform: translateY(-1px);
  box-shadow: var(--shadow-float);
}

.guided-result-block {
  margin-top: 18px;
  border: 1px solid #e5ddcf;
  border-radius: 16px;
  background: rgba(250, 248, 242, 0.92);
  padding: 14px 15px;
}

.guided-result-label {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.64rem;
  font-weight: 700;
  color: #8f8169;
}

.guided-verse-list {
  margin-top: 10px;
  display: grid;
  gap: 12px;
}

.guided-verse {
  border-left: 2px solid #d8cfbf;
  padding-left: 12px;
}

.guided-verse p {
  margin: 0;
  color: #2f2f31;
  font-style: italic;
  font-size: 1rem;
  line-height: 1.54;
}

.guided-verse-ref {
  margin-top: 7px !important;
  color: #9b927f !important;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-weight: 700;
  font-size: 0.67rem !important;
  font-style: normal !important;
}

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

.reflection-actions button {
  border: 1px solid #ddd2c0;
  background: #f8f4ed;
  color: #7a6e5a;
  border-radius: 999px;
  min-height: 36px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.64rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    border-color 160ms ease,
    background-color 160ms ease,
    color 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

.reflection-actions button:hover:not(:disabled) {
  border-color: #cfb59e;
  background: #fcf8f1;
  color: #5f4737;
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(40, 32, 24, 0.08);
}

.reflection-actions button:disabled {
  opacity: 0.42;
  cursor: not-allowed;
}

.reflection-actions [data-save-reading],
.reflection-actions [data-guided-save-reading] {
  border-color: #d2b79f;
  background: #f2e7da;
  color: #624430;
}

.reflection-actions [data-save-reading]:hover:not(:disabled),
.reflection-actions [data-guided-save-reading]:hover:not(:disabled) {
  border-color: #be9578;
  background: #f7ece0;
  color: #533725;
}

.drawer-body [data-reflection-note],
.guided-modal-inner [data-reflection-note] {
  margin-top: 10px;
  width: 100%;
  min-height: 94px;
  resize: vertical;
  border: 1px solid #ddd5c7;
  border-radius: 12px;
  background: #f4f2ec;
  color: #2f3134;
  padding: 11px 12px;
  font-size: 0.95rem;
  line-height: 1.5;
  font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

.saved-reading-meta {
  display: block;
  margin-top: 4px;
  color: #948a76;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.6rem;
}

.safety-support {
  border: 1px solid #e1d5c2;
  border-radius: 20px;
  background: #faf6ef;
  padding: clamp(18px, 4vw, 28px);
  box-shadow: var(--shadow-card);
}

.safety-kicker {
  margin: 0;
  color: #a07157;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.65rem;
  font-weight: 700;
}

.safety-support h4 {
  margin: 10px 0 0;
  font-family: "Playfair Display", "Bodoni MT", "Bodoni 72", "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 0.96;
  font-weight: 600;
}

.safety-copy {
  margin: 14px 0 0;
  color: #4a4439;
  font-size: 1rem;
  line-height: 1.58;
}

.safety-list {
  margin: 14px 0 0;
  padding-left: 18px;
  color: #3e392f;
  line-height: 1.52;
}

.safety-source {
  margin: 14px 0 0;
  color: #9b907d;
  font-size: 0.8rem;
  line-height: 1.5;
}

.guided-breathing {
  background: #f6f0e8;
  border-color: #deccb7;
}

.guided-plan-list {
  margin: 10px 0 0;
  padding-left: 18px;
  color: #4f493f;
  display: grid;
  gap: 6px;
}

.guided-actions {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.guided-action-btn {
  border: 0;
  border-radius: 999px;
  background: var(--burnt-orange);
  color: #f5f1e8;
  min-height: 44px;
  padding: 0 18px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.66rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 150ms ease, transform 150ms ease, box-shadow 150ms ease;
}

.guided-action-btn:hover {
  background: #9d4d29;
  transform: translateY(-1px);
  box-shadow: var(--shadow-float);
}

.guided-action-btn.subtle {
  border: 1px solid #dccfbc;
  background: #f8f5ef;
  color: #7c705d;
}

.guided-action-btn.subtle:hover {
  border-color: #ceb39e;
  color: #624a3c;
  background: #fbf8f2;
}

@keyframes guided-enter {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(25, 21, 17, 0.24);
  backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease;
  z-index: 45;
}

.drawer-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.drawer {
  position: fixed;
  right: 0;
  top: 0;
  height: 100vh;
  width: min(clamp(560px, 62vw, 840px), 100vw);
  background: #f8f7f3;
  border-left: 1px solid var(--line-strong);
  transform: translateX(100%);
  transition: transform 220ms ease;
  z-index: 50;
  display: flex;
  flex-direction: column;
}

.drawer.open {
  transform: translateX(0);
}

.drawer-head {
  padding: 24px 28px 18px;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.drawer-head h3 {
  margin: 0;
  font-family: "Playfair Display", "Bodoni MT", "Bodoni 72", "Times New Roman", serif;
  font-size: 3rem;
  line-height: 1;
  font-weight: 600;
}

.drawer-close {
  border: 0;
  background: transparent;
  color: #9f9581;
  font-size: 2rem;
  line-height: 1;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  cursor: pointer;
}

.drawer-close:hover {
  background: rgba(165, 149, 126, 0.15);
  color: #7f715f;
}

.drawer-body {
  padding: 22px 28px 32px;
  overflow-y: auto;
}

.drawer-verse {
  border-left: 2px solid var(--line-strong);
  padding-left: 14px;
  margin-bottom: 26px;
}

.drawer-verse p {
  margin: 0;
  font-size: 1.04rem;
  line-height: 1.6;
  color: #2f2f31;
  font-style: italic;
}

.drawer-ref {
  margin-top: 8px;
  color: #a79d88;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.69rem;
  font-weight: 700;
  font-style: normal;
}

.drawer-section {
  margin-top: 20px;
  color: #3c382f;
  font-size: 1.01rem;
  line-height: 1.68;
}

.drawer-highlight {
  margin-top: 20px;
  background: var(--drawer-dark);
  color: #efeae0;
  border-radius: 24px;
  padding: 26px;
  font-family: "Playfair Display", "Bodoni MT", "Bodoni 72", "Times New Roman", serif;
  font-style: italic;
  font-size: 2rem;
  line-height: 1.35;
}

.guided-wrap {
  margin-top: 26px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.guided-wrap h4 {
  margin: 0 0 12px;
  font-family: "Playfair Display", "Bodoni MT", "Bodoni 72", "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1;
  font-weight: 600;
}

.guided-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.guided-list li {
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: #f7f6f3;
  padding: 11px 12px;
  color: #454036;
  font-size: 0.95rem;
  line-height: 1.52;
}

.related-wrap {
  margin-top: 30px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.related-wrap h4 {
  margin: 0 0 12px;
  font-family: "Playfair Display", "Bodoni MT", "Bodoni 72", "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1;
  font-weight: 600;
}

.related-list {
  display: grid;
  gap: 10px;
}

.related-btn {
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background: #f7f6f3;
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  cursor: pointer;
  color: #2e2d2e;
  box-shadow: var(--shadow-card);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.related-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card-strong);
  border-color: #d5ae98;
  background: #fbf8f4;
}

.related-btn .related-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid #ebe7dc;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #8a806c;
  font-size: 1.06rem;
}

.utility-hidden {
  display: none !important;
}

.admin-body {
  min-height: 100vh;
}

.admin-main {
  min-height: calc(100vh - 92px);
}

.admin-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 4px;
}

.admin-nav .nav-link {
  text-decoration: none;
  position: static;
}

.admin-hero .hero-subtitle {
  width: min(700px, 94%);
}

.admin-shell {
  padding-top: 34px;
}

.admin-controls-card {
  display: grid;
  grid-template-columns: 1.6fr minmax(160px, 220px) auto;
  gap: 12px;
  align-items: end;
  border: 1px solid #e4ddd1;
  border-radius: 22px;
  background: #f8f7f4;
  box-shadow: var(--shadow-card);
  padding: clamp(14px, 3vw, 24px);
}

.admin-control-field {
  display: grid;
  gap: 7px;
}

.admin-control-field label {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  font-size: 0.63rem;
  color: #8d826f;
}

.admin-control-field input,
.admin-control-field select {
  width: 100%;
}

.admin-control-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-self: end;
}

.admin-control-actions button {
  border: 0;
  border-radius: 999px;
  min-height: 42px;
  padding: 0 15px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.66rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 150ms ease, color 150ms ease, border-color 150ms ease, box-shadow 150ms ease, transform 150ms ease;
}

#admin-dashboard-submit {
  background: var(--burnt-orange);
  color: #f8f5ee;
}

#admin-dashboard-submit:hover:not(:disabled) {
  background: #9d4d29;
  transform: translateY(-1px);
  box-shadow: var(--shadow-float);
}

#admin-dashboard-submit:disabled {
  opacity: 0.5;
  cursor: wait;
}

.admin-clear-btn {
  border: 1px solid #dbcdb9 !important;
  background: #f8f5ef;
  color: #776b59;
}

.admin-clear-btn:hover {
  border-color: #ceb39e !important;
  color: #624a3c;
  background: #fbf8f2;
  transform: translateY(-1px);
  box-shadow: var(--shadow-float);
}

.admin-note {
  margin-top: 14px;
}

.admin-results {
  margin-top: 20px;
  display: grid;
  gap: 20px;
}

.admin-metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.admin-metric-card {
  border: 1px solid #e7dfd1;
  border-radius: 18px;
  background: #f8f7f4;
  padding: 16px 16px 18px;
  box-shadow: var(--shadow-card);
}

.admin-metric-label {
  margin: 0;
  color: #8f846f;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.62rem;
  font-weight: 700;
}

.admin-metric-value {
  margin: 10px 0 0;
  font-family: "Playfair Display", "Bodoni MT", "Bodoni 72", "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 0.95;
  color: #1a1c1f;
}

.admin-panel {
  border: 1px solid #e7dfd1;
  border-radius: 22px;
  background: #f8f7f4;
  box-shadow: var(--shadow-card);
  padding: clamp(18px, 3vw, 26px);
}

.admin-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}

.admin-panel-head h2 {
  margin: 0;
  font-family: "Playfair Display", "Bodoni MT", "Bodoni 72", "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 2.9rem);
  line-height: 1;
  font-weight: 600;
}

.admin-panel-head p {
  margin: 0;
  color: #9a907d;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.62rem;
  font-weight: 700;
}

.admin-series {
  margin-top: 14px;
}

.admin-series-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(52px, 1fr));
  gap: 8px;
  align-items: end;
}

.admin-series-col {
  display: grid;
  gap: 6px;
  justify-items: center;
}

.admin-series-bar-wrap {
  width: 100%;
  height: 148px;
  border: 1px solid #e7dfd2;
  border-radius: 12px;
  background: linear-gradient(180deg, #f8f5ef, #f4f2ec);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 7px;
}

.admin-series-bar {
  width: 100%;
  border-radius: 8px;
  background: linear-gradient(180deg, #c57f55, #a95e36);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.admin-series-date {
  margin: 0;
  color: #7f7562;
  font-size: 0.63rem;
  line-height: 1.35;
  text-align: center;
}

.admin-series-count {
  margin: 0;
  color: #6a604f;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.56rem;
  font-weight: 700;
}

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

.admin-table-wrap {
  margin-top: 12px;
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 260px;
}

.admin-table th,
.admin-table td {
  text-align: left;
  padding: 10px 8px;
  border-bottom: 1px solid #ece6da;
  color: #3f3b33;
  font-size: 0.9rem;
}

.admin-table thead th {
  color: #8a806d;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.6rem;
  font-weight: 700;
}

.admin-table tbody th {
  font-weight: 600;
}

.admin-table td {
  color: #5a5346;
}

.admin-empty,
.admin-empty-cell {
  color: #8a806e !important;
  font-size: 0.88rem !important;
  text-align: center !important;
  padding: 18px 10px !important;
}

@media (max-width: 1080px) {
  .page-hero h1 {
    font-size: clamp(3.2rem, 9.4vw, 5.5rem);
  }

  .page-hero h2 {
    font-size: clamp(3.1rem, 9vw, 5.4rem);
  }

  .topic-label {
    font-size: 1rem;
  }

  .community-shell {
    grid-template-columns: 1fr;
  }

  .admin-controls-card {
    grid-template-columns: 1fr;
  }

  .admin-control-actions {
    justify-self: start;
    flex-wrap: wrap;
  }

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

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

@media (max-width: 1120px) {
  .header-inner {
    min-height: 82px;
  }

  .brand-name {
    font-size: 1.95rem;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .main-nav {
    display: none;
    position: absolute;
    left: 14px;
    right: 14px;
    top: calc(100% + 8px);
    background: #f8f7f4;
    border: 1px solid var(--line-strong);
    border-radius: 14px;
    padding: 8px;
    flex-direction: column;
    align-items: stretch;
    z-index: 31;
  }

  .main-nav.open {
    display: flex;
  }

  .nav-link {
    justify-content: center;
    border-radius: 10px;
    min-height: 44px;
  }

  .feeling-shell {
    width: min(680px, 100%);
  }

  .topic-grid {
    gap: 20px;
  }

  .give-banner {
    top: 82px;
  }

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

  .admin-nav {
    display: flex;
    position: static;
    left: auto;
    right: auto;
    top: auto;
    border: 0;
    padding: 0;
    background: transparent;
    flex-direction: row;
    align-items: center;
  }
}

@media (max-width: 920px) {
  .guided-modal {
    width: min(760px, 100%);
  }

  .guided-title {
    font-size: clamp(2.3rem, 8.2vw, 3.7rem);
  }

  .drawer {
    width: min(88vw, 640px);
  }

  .bible-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .bible-status-row {
    justify-content: flex-start;
  }

  .control-group {
    width: 100%;
    flex-wrap: wrap;
  }

  #book-select,
  #chapter-input,
  #translation-select {
    width: auto;
    flex: 1;
    min-width: 0;
  }

  #chapter-input {
    min-width: 90px;
  }

  #translation-select {
    min-width: 196px;
  }

  .search-form {
    width: 100%;
  }

  .search-form input {
    width: 100%;
  }

  .topics-toolbar {
    justify-content: flex-start;
  }

  .prayer-response-form {
    grid-template-columns: 1fr;
  }

  .devotional-shell {
    grid-template-columns: 1fr;
  }

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

  .give-donate {
    width: 100%;
  }

  .admin-series-grid {
    grid-template-columns: repeat(auto-fit, minmax(46px, 1fr));
  }
}

@media (max-width: 760px) {
  .control-group {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  #book-select,
  #chapter-input,
  #translation-select {
    width: 100%;
  }

  #chapter-input {
    min-width: 0;
  }

  .chapter-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .reflection-actions button {
    flex: 1 1 calc(50% - 4px);
    min-width: 132px;
  }

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

  .community-wall-head {
    flex-wrap: wrap;
    gap: 6px;
  }

  .prayer-praying-btn {
    width: 100%;
    justify-content: center;
  }

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

  .give-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .give-card h3 {
    font-size: 1.55rem;
  }

  .give-cta {
    width: 100%;
  }

  .admin-metric-grid {
    grid-template-columns: 1fr;
  }

  .admin-control-actions {
    width: 100%;
  }

  .admin-control-actions button {
    flex: 1;
    min-width: 0;
  }
}

@media (max-width: 680px) {
  .guided-overlay {
    padding: 8px;
  }

  .guided-modal {
    max-height: 100vh;
    border-radius: 22px;
  }

  .guided-modal-inner {
    padding: 42px 16px 22px;
  }

  .guided-title {
    font-size: clamp(2rem, 12vw, 2.9rem);
    line-height: 0.98;
  }

  .guided-copy {
    font-size: 0.95rem;
  }

  .guided-option-btn {
    padding: 13px 13px;
    font-size: 0.95rem;
  }

  .guided-action-btn {
    width: 100%;
  }

  .continue-panel {
    padding: 12px 10px 9px;
  }

  .continue-actions {
    justify-content: stretch;
  }

  .continue-btn {
    width: 100%;
    letter-spacing: 0.1em;
  }

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

  .trust-shell {
    border-radius: 18px;
    padding: 20px 16px;
  }

  .trust-links-row {
    flex-direction: column;
  }

  .trust-link {
    width: 100%;
    justify-content: center;
  }

  .drawer {
    width: 100vw;
  }

  .container {
    width: min(1080px, calc(100vw - 26px));
  }

  .page-hero {
    padding-left: 12px;
    padding-right: 12px;
    padding-top: 56px;
    padding-bottom: 50px;
  }

  .hero-subtitle {
    margin-top: 26px;
    font-size: 1.03rem;
    line-height: 1.45;
  }

  #page-home .page-hero {
    min-height: auto;
    padding-top: 62px;
    padding-bottom: 68px;
  }

  .home-daily-wrap {
    padding-top: 30px;
  }

  .home-daily-verse {
    border-radius: 22px;
    padding: 24px 18px 26px;
  }

  .home-daily-verse blockquote {
    font-size: clamp(2rem, 9.2vw, 2.85rem);
    line-height: 1.08;
  }

  .home-daily-reflection {
    font-size: 0.98rem;
    line-height: 1.58;
  }

  .feeling-shell {
    display: block;
    border-radius: 22px;
    padding: 10px;
  }

  .feeling-shell input {
    width: 100%;
    font-size: 1.35rem;
    min-height: 52px;
    padding: 0 10px;
  }

  .feeling-shell button {
    width: 100%;
    margin-top: 8px;
    min-height: 50px;
  }

  .prayer-form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .prayer-form-actions button {
    width: 100%;
  }

  .daily-card {
    padding: 28px 20px;
  }

  .footer-brand {
    font-size: 2.65rem;
  }

  .footer-copy {
    font-size: 0.64rem;
    letter-spacing: 0.12em;
  }

  .footer-give-line {
    font-size: 0.68rem;
    width: min(340px, 100%);
  }

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

  .drawer-head,
  .drawer-body {
    padding-left: 18px;
    padding-right: 18px;
  }

  .drawer-head h3 {
    font-size: clamp(2.1rem, 8vw, 2.6rem);
  }

  .give-banner-inner {
    align-items: flex-start;
    padding: 9px 0;
  }

  .give-banner p {
    font-size: 0.76rem;
  }
}

@media (min-width: 768px) {
  .topic-open-btn {
    padding: 32px 20px;
  }
}

@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;
  }

  .guided-stage {
    animation: none;
  }

  .guided-modal-inner {
    transition: none;
  }

  .daily-reveal-item {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
