:root {
  --parchment: #faf5f7;
  --ivory: #fffcfe;
  --ink: #4a3540;
  --ink-muted: #8a6d7d;
  --gold: #c9a0dc;
  --gold-soft: #f0e0f0;
  --wine: #9a7a8a;
  --wine-hover: #7d6270;
  --sage: #7a8f7a;
  --mary: #7a8fa8;
  --shadow: rgba(61, 52, 41, 0.08);
  --shadow-deep: rgba(61, 52, 41, 0.12);
  --border: #e8dcc8;
  --radius: 14px;
  --radius-sm: 10px;
  --content: 720px;
  --content-wide: 1480px;
  --layout-max: 1480px;
  --sidebar-min: 280px;
  --sidebar-max: 380px;
  --sidebar-photo-h: 180px;
  --page-pad: clamp(16px, 2.5vw, 36px);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Source Sans 3", "Segoe UI", Tahoma, sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  background: var(--parchment);
  color: var(--ink);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* —— Hero (full-bleed) —— */

.hero {
  position: relative;
  width: 100%;
  min-height: clamp(280px, 42vh, 420px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(48px, 8vh, 96px) var(--page-pad);
  background:
    radial-gradient(ellipse 90% 70% at 50% 0%, rgba(184, 149, 106, 0.14), transparent 65%),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(122, 143, 168, 0.08), transparent 55%),
    linear-gradient(180deg, #f3e8ee 0%, var(--parchment) 100%);
  border-bottom: 1px solid var(--gold-soft);
}

.hero--photo {
  background:
    linear-gradient(180deg, rgba(248, 244, 237, 0.92) 0%, rgba(248, 244, 237, 0.82) 45%, rgba(248, 244, 237, 0.94) 100%),
    var(--hero-image) center 35% / cover no-repeat;
}

.hero--photo .hero__title,
.hero--photo .hero__subtitle {
  text-shadow: 0 1px 18px rgba(255, 253, 249, 0.85);
}

.hero--photo .verse-card {
  background: rgba(255, 253, 249, 0.9);
  box-shadow: 0 6px 24px var(--shadow);
}

.hero__ornament {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.hero__ornament svg {
  width: 100%;
  height: 100%;
  opacity: 0.08;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: min(960px, 92vw);
  margin-inline: auto;
}

.hero__title {
  margin: 0 0 20px;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 6.5vw, 4rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.15;
  color: var(--ink);
}

.hero__title-accent {
  color: var(--gold);
  font-weight: 400;
}

.hero__subtitle {
  margin: 0 auto;
  max-width: 580px;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--ink-muted);
  font-weight: 400;
  line-height: 1.75;
}

.hero__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 32px auto 0;
  max-width: 320px;
}

.hero__divider::before,
.hero__divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
}

.hero__divider span {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
}

/* —— Steps bar (full-width band) —— */

.steps-bar {
  width: 100%;
  background: var(--ivory);
  border-bottom: 1px solid var(--border);
  padding: 18px var(--page-pad);
}

.steps-bar__inner {
  max-width: var(--layout-max);
  margin-inline: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.steps__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.steps__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--wine);
  font-size: 0.8rem;
  font-weight: 700;
}

.steps__arrow {
  color: var(--gold);
  opacity: 0.5;
  margin: 0 8px;
  font-size: 0.75rem;
}

@media (max-width: 480px) {
  .steps__arrow {
    display: none;
  }

  .steps-bar__inner {
    gap: 14px;
  }
}

/* —— Homepage three-column layout —— */

.home-layout {
  display: grid;
  grid-template-columns:
    minmax(var(--sidebar-min), 1.05fr)
    minmax(520px, 1.55fr)
    minmax(var(--sidebar-min), 1.05fr);
  grid-template-areas: "left main right";
  gap: clamp(16px, 2vw, 28px);
  width: min(100%, var(--layout-max));
  max-width: var(--layout-max);
  margin-inline: auto;
  padding: clamp(28px, 4vh, 44px) var(--page-pad) clamp(40px, 5vh, 56px);
  align-items: start;
}

.home-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.home-sidebar--left {
  grid-area: left;
}

.home-sidebar--right {
  grid-area: right;
}

.sidebar-tile {
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 20px var(--shadow);
  overflow: hidden;
}

.sidebar-tile--candle,
.sidebar-tile--candle .candle-widget__inner {
  background: transparent;
  border: none;
  box-shadow: none;
}

.sidebar-tile--candle .candle-widget__inner {
  padding: 20px 18px;
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 20px var(--shadow);
}

.sidebar-tile--today,
.sidebar-tile--archive,
.sidebar-tile--links {
  padding: 18px 20px;
  border-top: 3px solid var(--gold-soft);
}

.sidebar-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sidebar-links li {
  margin-bottom: 8px;
}

.sidebar-links li:last-child {
  margin-bottom: 0;
}

.sidebar-links a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--wine);
  text-decoration: none;
  border-bottom: 1px solid var(--gold-soft);
}

.sidebar-links a:hover {
  color: var(--gold);
}

.archive-list--sidebar a {
  padding: 8px 10px;
}

.archive-all--sidebar {
  margin-top: 12px;
  font-size: 0.85rem;
}

.sidebar-tile__heading {
  margin: 0 0 8px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
}

.sidebar-tile__title {
  margin: 0 0 6px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--wine);
  line-height: 1.45;
}

.sidebar-tile__verse-ref {
  margin: 0 0 10px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--gold);
}

.sidebar-tile__link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--wine);
  text-decoration: none;
  border-bottom: 1px solid var(--gold-soft);
}

.sidebar-tile__link:hover {
  color: var(--gold);
}

.sidebar-tile--ad {
  background: transparent;
  border: none;
  box-shadow: none;
}

.sidebar-tile--ad .ad-frame {
  margin-bottom: 0;
}

.sidebar-tile--stories,
.sidebar-tile--resources {
  padding: 18px 20px;
  border-top: 3px solid var(--gold-soft);
}

.sidebar-tile--photo {
  padding: 0;
  overflow: hidden;
  border-top: 3px solid var(--gold-soft);
}

.photo-tile {
  margin: 0;
  display: flex;
  flex-direction: column;
}

.photo-tile__img {
  display: block;
  width: 100%;
  height: var(--sidebar-photo-h);
  max-height: var(--sidebar-photo-h);
  object-fit: cover;
  object-position: center;
  flex-shrink: 0;
}

.photo-tile__caption {
  margin: 0;
  padding: 10px 14px 12px;
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--ink-muted);
  font-style: italic;
  background: var(--ivory);
}

.home-main {
  grid-area: main;
  width: 100%;
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px var(--shadow-deep);
  overflow: hidden;
}

.home-main__section {
  padding: clamp(24px, 3.5vh, 36px) clamp(22px, 3vw, 32px);
}

.home-main__section--tell {
  background: var(--ivory);
}

.home-main__section--intention {
  background: var(--parchment);
  border-top: 1px solid var(--gold-soft);
  border-bottom: 1px solid var(--gold-soft);
}

.home-main__section--intention textarea {
  min-height: 160px;
}

.home-main__section--cta {
  background: var(--ivory);
  padding-bottom: clamp(28px, 4vh, 40px);
}

.home-main .section-lead {
  margin-bottom: 20px;
}

.home-main .btn {
  margin-top: 4px;
}

.page-main__section {
  padding: clamp(24px, 3.5vh, 36px) clamp(22px, 3vw, 32px);
}

.page-main__section--muted {
  background: var(--parchment);
  border-top: 1px solid var(--gold-soft);
}

.page-main__section--thankyou {
  text-align: center;
}

.featured-photo {
  margin: 0 0 24px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 4px 18px var(--shadow);
}

.featured-photo__img {
  display: block;
  width: 100%;
  height: clamp(180px, 28vw, 260px);
  max-height: 260px;
  object-fit: cover;
  object-position: center;
}

.featured-photo__caption {
  margin: 0;
  padding: 12px 16px;
  font-size: 0.88rem;
  color: var(--ink-muted);
  font-style: italic;
  background: var(--parchment);
}

/* Sidebar variants */

.testimonials--sidebar .testimonials__heading,
.resources--sidebar .resources__heading {
  margin-bottom: 14px;
  font-size: 1.05rem;
  text-align: left;
}

.testimonials--sidebar .testimonials__grid {
  grid-template-columns: 1fr;
  gap: 12px;
}

.testimonials--sidebar .testimonial {
  padding: 14px 16px;
}

.testimonials--sidebar .testimonial p {
  font-size: 0.88rem;
  margin-bottom: 8px;
}

.testimonials--sidebar .testimonials__more {
  margin-top: 12px;
  text-align: left;
  font-size: 0.85rem;
}

.resources--sidebar {
  margin-top: 0;
}

.resources--sidebar .resources__grid {
  grid-template-columns: 1fr;
  gap: 12px;
}

.resources--sidebar .promo {
  padding: 14px 16px;
  box-shadow: none;
}

.resources--sidebar .promo h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.resources--sidebar .promo p {
  font-size: 0.84rem;
  margin-bottom: 8px;
  line-height: 1.5;
}

.resources--sidebar .promo a {
  font-size: 0.82rem;
}

.resources__more {
  margin: 12px 0 0;
  font-size: 0.82rem;
  color: var(--ink-muted);
  line-height: 1.5;
}

.resources__more a {
  color: var(--wine);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--gold-soft);
}

.candle-widget__form {
  flex-direction: column;
}

.home-sidebar .candle-widget__form select {
  width: 100%;
  min-width: 0;
}

.home-sidebar .candle-widget__lead {
  font-size: 0.85rem;
}

.home-sidebar .candle-widget__count {
  font-size: 0.95rem;
}

@media (max-width: 1100px) {
  .home-layout {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "main main"
      "left right";
    gap: 20px;
  }

  .home-main {
    grid-area: main;
  }

  .home-sidebar--left {
    grid-area: left;
  }

  .home-sidebar--right {
    grid-area: right;
  }

  .photo-tile__img {
    height: clamp(120px, 22vw, var(--sidebar-photo-h));
    max-height: var(--sidebar-photo-h);
  }
}

@media (max-width: 720px) {
  .home-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "main"
      "left"
      "right";
    gap: 24px;
  }

  .home-main__section--intention textarea {
    min-height: 140px;
  }
}

/* —— Page sections (full-bleed vertical flow) —— */

.page-section {
  width: 100%;
  padding: clamp(40px, 6vh, 72px) var(--page-pad);
}

.page-section--ivory {
  background: var(--ivory);
}

.page-section--parchment {
  background: var(--parchment);
  border-top: 1px solid var(--gold-soft);
  border-bottom: 1px solid var(--gold-soft);
}

.page-section--cta {
  padding-bottom: clamp(56px, 8vh, 88px);
}

.page-section--resources {
  background: linear-gradient(180deg, var(--parchment) 0%, #f0e8dc 100%);
  padding-top: clamp(32px, 5vh, 56px);
  padding-bottom: clamp(32px, 5vh, 56px);
}

.page-section--thankyou {
  flex: 1;
  display: flex;
  align-items: center;
  padding: clamp(56px, 10vh, 96px) var(--page-pad);
}

.page-section__inner {
  max-width: var(--content);
  margin-inline: auto;
}

.page-section__inner--wide {
  max-width: var(--content-wide);
}

/* —— Section typography —— */

.section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 600;
  color: var(--ink);
}

.section-title__icon {
  color: var(--gold);
  font-size: 0.85rem;
}

.section-lead {
  margin: 0 0 28px;
  font-size: 1.02rem;
  color: var(--ink-muted);
  line-height: 1.7;
}

/* —— Form fields —— */

.prayer-form {
  flex: 1;
}

.field {
  margin-bottom: 0;
}

label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
  color: var(--ink);
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: 1.05rem;
  color: var(--ink);
  background: var(--parchment);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

input[type="text"]::placeholder,
input[type="email"]::placeholder,
textarea::placeholder {
  color: #9a8f82;
  font-style: italic;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--ivory);
  box-shadow: 0 0 0 3px rgba(184, 149, 106, 0.25);
}

textarea {
  min-height: 200px;
  resize: vertical;
  line-height: 1.65;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

@media (max-width: 600px) {
  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .field-row .field:first-child {
    margin-bottom: 20px;
  }
}

/* —— Offering panel —— */

.offering {
  margin: 0 0 28px;
  padding: 20px 24px;
  background: linear-gradient(135deg, rgba(232, 220, 200, 0.4), rgba(248, 244, 237, 0.7));
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.offering__text {
  margin: 0;
  font-size: 1rem;
  color: var(--ink-muted);
  line-height: 1.65;
}

.offering__amount {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--wine);
}

/* —— Button —— */

.btn {
  display: block;
  width: 100%;
  max-width: 420px;
  margin-inline: auto;
  padding: 17px 32px;
  background: var(--wine);
  color: #fffdf9;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, border-color 0.2s, transform 0.15s;
  text-align: center;
}

.btn:hover {
  background: var(--wine-hover);
  box-shadow: 0 6px 28px var(--shadow-deep);
  border-color: var(--gold);
  transform: translateY(-1px);
}

.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(184, 149, 106, 0.45);
}

/* —— Test mode —— */

.test-box {
  margin: 0 0 24px;
  padding: 14px 18px;
  background: rgba(232, 220, 200, 0.3);
  border: 1px dashed var(--gold);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  color: var(--ink-muted);
}

.test-box label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 500;
  margin-bottom: 0;
  cursor: pointer;
}

.test-box input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--wine);
}

.test-box p {
  margin: 10px 0 0 26px;
  font-size: 0.85rem;
}

/* —— Resources & promos (horizontal grid) —— */

.resources {
  margin-top: 8px;
}

.resources__heading {
  margin: 0 0 24px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ink);
  text-align: center;
  letter-spacing: 0.02em;
}

.resources__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.promo {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 22px 24px;
  background: var(--ivory);
  box-shadow: 0 4px 20px var(--shadow);
  border-top: 3px solid var(--gold-soft);
}

.promo h3 {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
}

.promo p {
  margin: 0 0 14px;
  font-size: 0.92rem;
  color: var(--ink-muted);
  line-height: 1.6;
}

.promo a {
  color: var(--wine);
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  border-bottom: 1px solid var(--gold-soft);
  transition: color 0.2s, border-color 0.2s;
}

.promo a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* —— Ad frames —— */

.ad-frame {
  min-height: 72px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(255, 253, 249, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  overflow: hidden;
}

.ad-frame__label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  opacity: 0.65;
  margin-bottom: 8px;
}

.ad-frame[data-live="true"] {
  min-height: 100px;
  background: transparent;
}

.ad-frame[data-live="true"] .ad-frame__label {
  align-self: flex-start;
  padding: 8px 12px 0;
  margin-bottom: 0;
}

.ad-frame__demo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px 20px 16px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s;
}

.ad-frame__demo:hover {
  background: rgba(232, 220, 200, 0.35);
}

.ad-frame__demo-brand {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
}

.ad-frame__demo-text {
  font-size: 0.88rem;
  color: var(--ink-muted);
  line-height: 1.5;
  max-width: 36em;
}

/* —— Footer (full-bleed) —— */

.site-footer {
  width: 100%;
  margin-top: auto;
  padding: 36px var(--page-pad) 48px;
  background: var(--ivory);
  border-top: 1px solid var(--gold-soft);
}

.site-footer__inner {
  max-width: var(--layout-max);
  margin-inline: auto;
  text-align: center;
}

.site-footer p {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 0.95rem;
  font-style: italic;
  color: var(--ink-muted);
  line-height: 1.65;
}

.site-footer p:last-child {
  margin-bottom: 0;
  font-family: "Source Sans 3", sans-serif;
  font-style: normal;
  font-size: 0.82rem;
}

/* —— Blessing card (thank-you) —— */

.blessing-card {
  text-align: center;
  padding: clamp(40px, 6vw, 56px) clamp(24px, 4vw, 40px);
  background: linear-gradient(
    165deg,
    rgba(255, 253, 249, 1) 0%,
    rgba(232, 220, 200, 0.35) 50%,
    rgba(255, 253, 249, 1) 100%
  );
  border-radius: var(--radius);
  border: 1px solid var(--gold-soft);
  margin-bottom: 28px;
  box-shadow: 0 8px 32px var(--shadow);
}

.blessing-card__icon {
  color: var(--gold);
  font-size: 1.5rem;
  margin-bottom: 14px;
  letter-spacing: 0.3em;
}

.blessing-card__title {
  margin: 0 0 14px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.6rem, 4vw, 2rem);
  font-weight: 600;
  color: var(--ink);
}

.blessing-card__text {
  margin: 0;
  font-size: 1.05rem;
  color: var(--ink-muted);
  line-height: 1.75;
}

.blessing-card__peace {
  margin: 18px 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--sage);
}

.thank-you__help {
  text-align: center;
  font-size: 0.95rem;
  color: var(--ink-muted);
  line-height: 1.65;
}

.thank-you__link {
  display: block;
  text-align: center;
  margin-top: 24px;
  color: var(--wine);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
  width: fit-content;
  margin-inline: auto;
  transition: color 0.2s;
}

.thank-you__link:hover {
  color: var(--gold);
}

/* —— Navigation —— */

.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 249, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gold-soft);
}

.site-nav__inner {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding: 12px var(--page-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-nav__brand {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--wine);
  text-decoration: none;
  letter-spacing: 0.04em;
}

.site-nav__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 18px;
  font-size: 0.92rem;
}

.site-nav__links a {
  color: var(--ink-muted);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.site-nav__links a:hover,
.site-nav__links a[aria-current="page"] {
  color: var(--wine);
}

.site-nav__cta {
  padding: 6px 14px;
  border: 1px solid var(--gold);
  border-radius: var(--radius-sm);
  background: var(--ivory);
}

@media (max-width: 720px) {
  .site-nav__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav__links {
    gap: 8px 14px;
  }
}

/* —— Hero variants —— */

.hero--compact {
  min-height: clamp(220px, 32vh, 340px);
  padding-bottom: clamp(32px, 5vh, 56px);
}

.verse-card {
  max-width: 520px;
  margin: 0 auto 20px;
  padding: 18px 22px;
  background: rgba(255, 253, 249, 0.75);
  border: 1px solid var(--gold-soft);
  border-radius: var(--radius-sm);
}

.verse-card__ref {
  margin: 0 0 6px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
}

.verse-card__text {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.55;
}

.verse-card__link {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--wine);
  text-decoration: none;
  border-bottom: 1px solid var(--gold-soft);
}

.verse-card__link:hover {
  color: var(--gold);
}

/* —— Daily post —— */

.page-section__inner--narrow {
  max-width: 620px;
}

.daily-post__meta {
  margin: 0 0 20px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.daily-post__type {
  color: var(--gold);
}

.daily-post__verse {
  margin-bottom: 28px;
  padding: 20px 24px;
  background: linear-gradient(135deg, rgba(232, 220, 200, 0.35), rgba(255, 253, 249, 0.8));
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.daily-post__verse-ref {
  margin: 0 0 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
}

.daily-post__verse blockquote {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.6;
}

.daily-post__body p {
  margin: 0 0 18px;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink);
}

.daily-post__prompt {
  margin: 28px 0;
  padding: 18px 22px;
  background: var(--parchment);
  border: 1px dashed var(--gold);
  border-radius: var(--radius-sm);
}

.daily-post__prompt h3 {
  margin: 0 0 8px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.1rem;
  color: var(--wine);
}

.daily-post__prompt p {
  margin: 0;
  color: var(--ink-muted);
}

.daily-post__prayer-line {
  margin: 28px 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--sage);
  text-align: center;
}

.daily-post__cta {
  margin-top: 36px;
  text-align: center;
}

.archive-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.archive-list li {
  margin-bottom: 10px;
}

.archive-list a {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 14px;
  text-decoration: none;
  color: inherit;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: background 0.2s, border-color 0.2s;
}

.archive-list a:hover {
  background: var(--ivory);
  border-color: var(--border);
}

.archive-list__date {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
}

.archive-list__title {
  font-size: 0.95rem;
  color: var(--ink);
}

.archive-all {
  margin-top: 20px;
  font-size: 0.9rem;
}

.archive-all summary {
  cursor: pointer;
  color: var(--wine);
  font-weight: 600;
}

.archive-list--compact a {
  flex-direction: row;
  gap: 10px;
  font-size: 0.88rem;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}

@media (max-width: 768px) {
  .two-col {
    grid-template-columns: 1fr;
  }
}

/* —— Content cards —— */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.content-card {
  padding: 24px 26px;
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 18px var(--shadow);
  border-top: 3px solid var(--gold-soft);
}

.content-card--photo {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.content-card__media {
  overflow: hidden;
}

.content-card__media img {
  display: block;
  width: 100%;
  height: 160px;
  max-height: 160px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.35s ease;
}

.content-card--photo:hover .content-card__media img {
  transform: scale(1.03);
}

.content-card__body {
  padding: 20px 22px 22px;
}

.content-card__period {
  margin: 0 0 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
}

.content-card h2 {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 600;
}

.content-card h2 a {
  color: var(--ink);
  text-decoration: none;
}

.content-card h2 a:hover {
  color: var(--wine);
}

.content-card p {
  margin: 0 0 14px;
  font-size: 0.92rem;
  color: var(--ink-muted);
  line-height: 1.6;
}

.content-card__link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--wine);
  text-decoration: none;
  border-bottom: 1px solid var(--gold-soft);
}

.content-card__link:hover {
  color: var(--gold);
}

/* —— Article content —— */

.content-intro {
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--ink);
  margin: 0 0 28px;
}

.scripture-block {
  margin: 28px 0;
  padding: 20px 24px;
  background: var(--parchment);
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--mary);
}

.scripture-block__ref {
  margin: 0 0 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--mary);
}

.scripture-block blockquote {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--ink);
}

.prayer-block {
  margin: 32px 0;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.prayer-block h2 {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.2rem;
  color: var(--ink);
}

.prayer-block__text {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--ink-muted);
  font-style: italic;
}

.content-closing {
  margin-top: 36px;
  font-size: 1rem;
  color: var(--ink-muted);
}

.content-closing a {
  color: var(--wine);
  font-weight: 600;
}

.guide-section {
  margin-bottom: 32px;
}

.guide-section h2 {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem;
  color: var(--ink);
}

.guide-section p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--ink-muted);
}

.season-reading {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.season-reading h2 {
  margin: 0 0 14px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.15rem;
  color: var(--wine);
}

.season-reading p {
  margin: 14px 0 0;
  line-height: 1.7;
  color: var(--ink-muted);
}

.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.link-row a {
  color: var(--wine);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  border-bottom: 1px solid var(--gold-soft);
}

.link-row a:hover {
  color: var(--gold);
}

.cta-panel {
  text-align: center;
  padding: 28px 24px;
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.cta-panel h2 {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.3rem;
}

.cta-panel p {
  margin: 0 0 18px;
  color: var(--ink-muted);
}

.section-title--small {
  font-size: 1.25rem;
}

.btn--inline {
  display: inline-block;
  width: auto;
  max-width: none;
}

.btn--small {
  display: inline-block;
  width: auto;
  max-width: none;
  padding: 10px 20px;
  font-size: 0.92rem;
}

/* —— Candle widget —— */

.candle-widget {
  text-align: center;
}

.candle-widget__inner {
  padding: 28px 24px;
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 6px 24px var(--shadow);
}

.candle-widget__flame {
  font-size: 2rem;
  margin-bottom: 12px;
  filter: grayscale(0.3);
  transition: filter 0.3s;
}

.candle-widget__flame--lit {
  filter: none;
  animation: flicker 2s ease-in-out infinite;
}

@keyframes flicker {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.85; }
}

.candle-widget__count {
  margin: 0 0 10px;
  font-size: 1.05rem;
  color: var(--ink);
}

.candle-widget__lead {
  margin: 0 0 18px;
  font-size: 0.92rem;
  color: var(--ink-muted);
}

.candle-widget__thanks {
  margin: 0 0 6px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.2rem;
  color: var(--wine);
}

.candle-widget__message {
  margin: 0 0 14px;
  font-size: 0.92rem;
  color: var(--ink-muted);
}

.candle-widget__form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  align-items: center;
  margin-top: 16px;
}

.candle-widget__form select {
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: 0.92rem;
  background: var(--parchment);
  color: var(--ink);
  min-width: 200px;
}

.candle-widget__error {
  margin-top: 10px;
  color: var(--wine);
  font-size: 0.88rem;
}

/* —— Testimonials —— */

.testimonials__heading {
  margin: 0 0 24px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.4rem;
  text-align: center;
  color: var(--ink);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.testimonial {
  margin: 0;
  padding: 20px 22px;
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--sage);
}

.testimonial p {
  margin: 0 0 12px;
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.65;
  color: var(--ink);
}

.testimonial footer {
  font-size: 0.82rem;
  font-style: normal;
  color: var(--ink-muted);
}

.testimonial--full {
  margin-bottom: 22px;
}

.testimonials__more {
  display: block;
  text-align: center;
  margin-top: 20px;
  font-weight: 600;
  color: var(--wine);
  text-decoration: none;
}

.testimonials__more:hover {
  color: var(--gold);
}

.stories-list {
  margin-bottom: 28px;
}

.content-note {
  font-size: 0.9rem;
  color: var(--ink-muted);
  margin-bottom: 24px;
  line-height: 1.65;
}

/* —— Digest signup —— */

.digest-signup {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--gold-soft);
}

.digest-signup__heading {
  margin: 0 0 8px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem;
  color: var(--ink);
}

.digest-signup__lead {
  margin: 0 0 16px;
  font-size: 0.92rem;
  color: var(--ink-muted);
}

.digest-signup__form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  align-items: center;
}

.digest-signup__form input[type="email"] {
  width: min(280px, 100%);
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font: inherit;
  background: var(--parchment);
}

.digest-signup__message {
  margin: 12px 0 0;
  font-size: 0.9rem;
}

.digest-signup__message--ok {
  color: var(--sage);
}

.digest-signup__message--err {
  color: var(--wine);
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
  margin-bottom: 20px;
}

.site-footer__links a {
  font-family: "Source Sans 3", sans-serif;
  font-style: normal;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--wine);
  text-decoration: none;
}

.site-footer__links a:hover {
  color: var(--gold);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* —— Affirmation MVP layout —— */

.home-layout--single {
  grid-template-columns: minmax(0, 720px);
  grid-template-areas: "main";
  justify-content: center;
}

.daily-card {
  max-width: 520px;
  margin: 0 auto 28px;
  padding: 22px 24px;
  background: rgba(255, 252, 254, 0.92);
  border: 1px solid var(--gold-soft);
  border-radius: var(--radius-sm);
  box-shadow: 0 6px 24px var(--shadow);
}

.daily-card__label {
  margin: 0 0 12px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wine);
}

.daily-card__text {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  font-style: italic;
  line-height: 1.45;
  color: var(--ink);
}

.daily-card__tagline {
  margin: 14px 0 0;
  font-size: 0.95rem;
  color: var(--ink-muted);
}

.affirmation-form {
  width: 100%;
}

.hero--compact {
  min-height: clamp(240px, 36vh, 360px);
  padding-top: clamp(36px, 6vh, 72px);
  padding-bottom: clamp(28px, 4vh, 48px);
}

.hero {
  background:
    radial-gradient(ellipse 90% 70% at 50% 0%, rgba(212, 165, 200, 0.16), transparent 65%),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(201, 160, 220, 0.1), transparent 55%),
    linear-gradient(180deg, #f3e8ee 0%, var(--parchment) 100%);
}
