:root {
  --bg: #f7f4ef;
  --bg-soft: #efeae2;
  --card: #ffffff;
  --text: #1c2430;
  --muted: #5a6573;
  --gold: #b8872f;
  --gold-soft: #9a6f22;
  --line: rgba(184, 135, 47, 0.28);
  --max: 1080px;
  --narrow: 720px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Source Sans 3", system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(184,135,47,0.12), transparent 60%),
    radial-gradient(900px 500px at 100% 0%, rgba(120,160,210,0.10), transparent 55%),
    var(--bg);
  line-height: 1.65;
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold);
  color: #111;
  padding: 0.5rem 1rem;
  z-index: 100;
}
.skip:focus { left: 1rem; top: 1rem; }

.wrap {
  width: min(var(--max), calc(100% - 2.5rem));
  margin-inline: auto;
}
.narrow { width: min(var(--narrow), calc(100% - 2.5rem)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(247, 244, 239, 0.92);
  border-bottom: 1px solid rgba(28,36,48,0.08);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4rem;
  gap: 1rem;
}
.logo {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text);
  text-decoration: none;
}
.logo span { color: var(--gold); margin: 0 0.15em; }
.nav nav {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
}
.nav a:hover { color: var(--gold-soft); }

.hero {
  padding: 5.5rem 0 4.5rem;
}
.hero-inner { text-align: center; max-width: 820px; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 700;
  margin: 0 0 1rem;
}
.hero h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.8rem, 8vw, 4.6rem);
  line-height: 1.05;
  margin: 0 0 1.25rem;
  font-weight: 700;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-soft);
  font-weight: 400;
}
.lead {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 40rem;
  margin: 0 auto 2rem;
}
.hero-verse {
  margin: 0 auto 2.25rem;
  padding: 1.5rem 1.75rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.85);
  max-width: 36rem;
}
.hero-verse p {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
  font-style: italic;
  margin: 0 0 0.75rem;
  line-height: 1.4;
}
.hero-verse cite {
  color: var(--gold);
  font-style: normal;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.btn {
  display: inline-block;
  background: linear-gradient(135deg, #e0b45a, #c4922f);
  color: #151515;
  text-decoration: none;
  font-weight: 700;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(212,168,75,0.25);
}
.btn:hover { filter: brightness(1.05); }

.gospel {
  padding: 3.5rem 0 4rem;
  border-top: 1px solid rgba(28,36,48,0.08);
  text-align: center;
}
.gospel h2, .section-head h2, .pray h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin: 0 0 1rem;
  line-height: 1.15;
}
.gospel p { color: var(--muted); font-size: 1.08rem; }
.gospel strong { color: var(--gold-soft); }

.verses {
  padding: 2rem 0 5rem;
  background: linear-gradient(180deg, transparent, rgba(184,135,47,0.06));
}
.section-head {
  text-align: center;
  margin-bottom: 2.5rem;
  max-width: 40rem;
  margin-inline: auto;
}
.section-head p { color: var(--muted); margin: 0; }

.verse-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
  counter-reset: verse;
}
.verse-list li {
  counter-increment: verse;
  background: var(--card);
  border: 1px solid rgba(28,36,48,0.08);
  border-radius: 16px;
  padding: 1.35rem 1.4rem 1.35rem 4.1rem;
  position: relative;
}
.verse-list li::before {
  content: counter(verse);
  position: absolute;
  left: 1.15rem;
  top: 1.35rem;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: #1a1408;
  background: var(--gold);
}
.verse-list h3 {
  margin: 0 0 0.45rem;
  color: var(--gold-soft);
  font-size: 1rem;
  letter-spacing: 0.03em;
}
.verse-list p {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.28rem;
  line-height: 1.45;
  font-style: italic;
}

.pray {
  padding: 4rem 0 5rem;
  text-align: center;
  border-top: 1px solid rgba(28,36,48,0.08);
}
.pray p { color: var(--muted); }
.prayer {
  margin: 1.75rem auto;
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fffaf3;
  text-align: left;
}
.prayer p {
  color: var(--text);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.3rem;
  font-style: italic;
  margin: 0;
  line-height: 1.5;
}
.note { font-size: 0.95rem; }

.site-footer {
  padding: 2.5rem 0 3rem;
  border-top: 1px solid rgba(28,36,48,0.08);
  text-align: center;
  color: var(--muted);
  font-size: 0.92rem;
}
.site-footer .brand {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.4rem;
  color: var(--text);
  margin: 0 0 0.4rem;
  font-weight: 700;
}
.fine { opacity: 0.75; font-size: 0.82rem; }

@media (max-width: 640px) {
  .nav nav { gap: 0.85rem; }
  .verse-list li { padding-left: 1.25rem; padding-top: 3.4rem; }
  .verse-list li::before { top: 1.1rem; left: 1.15rem; }
}

.bondage {
  padding: 3.5rem 0 4.5rem;
  border-top: 1px solid rgba(28,36,48,0.08);
}
.bondage-sub {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.75rem;
  margin: 2.5rem 0 0.5rem;
  text-align: center;
}
.bondage-intro {
  text-align: center;
  color: var(--muted);
  max-width: 40rem;
  margin: 0 auto 1.75rem;
}
.purpose-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.75rem 1.6rem;
  max-width: 48rem;
  margin: 0 auto 1rem;
}
.purpose-card h3 {
  margin: 0 0 0.75rem;
  color: var(--gold-soft);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.6rem;
}
.purpose-lead {
  color: var(--muted);
  margin: 0 0 1rem;
}
.purpose-verses {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--text);
}
.purpose-verses li {
  margin-bottom: 0.65rem;
  line-height: 1.45;
}
.purpose-verses strong { color: var(--gold); }
.sin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}
.sin-card {
  background: var(--card);
  border: 1px solid rgba(28,36,48,0.08);
  border-radius: 14px;
  padding: 1.2rem 1.25rem;
}
.sin-card h4 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  color: var(--text);
}
.sin-card .ref {
  margin: 0 0 0.55rem;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.sin-card p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}
.freedom-close {
  text-align: center;
  margin-top: 2.5rem;
  max-width: 36rem;
  margin-inline: auto;
}
.freedom-close p {
  color: var(--muted);
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}
.freedom-close em { color: var(--gold-soft); font-style: italic; }

/* Series A fear landing pages */
.page-hero {
  padding: 3.5rem 0 1.75rem;
}
.page-hero .wrap { text-align: left; }
.page-hero h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.2rem, 6vw, 3.4rem);
  line-height: 1.1;
  margin: 0 0 0.85rem;
  font-weight: 700;
}
.fear-body { padding: 0 0 4.5rem; }
.fear-body .lead-copy {
  color: var(--muted);
  font-size: 1.08rem;
  margin: 0 0 1.1rem;
}
.verse-stack {
  display: grid;
  gap: 1rem;
  margin: 1.6rem 0 1.75rem;
}
.verse-card {
  margin: 0;
  padding: 1.4rem 1.6rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.85);
}
.verse-card p {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.32rem;
  font-style: italic;
  margin: 0 0 0.7rem;
  line-height: 1.4;
  color: var(--text);
}
.verse-card cite {
  color: var(--gold);
  font-style: normal;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  display: block;
}
.fear-invite {
  margin: 0 0 1.5rem;
  color: var(--muted);
  font-size: 1.08rem;
}
.fear-invite a { color: var(--gold-soft); }
.related-fears {
  margin-top: 2.25rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(28,36,48,0.08);
}
.related-fears .label {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 0.8rem;
}
.related-fears ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.15rem;
}
.related-fears a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
}
.related-fears a:hover { color: var(--gold-soft); }
.related-fears a[aria-current="page"] { color: var(--gold-soft); }

.nav-drop { position: relative; }
.nav-drop > summary {
  list-style: none;
  cursor: pointer;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}
.nav-drop > summary::-webkit-details-marker { display: none; }
.nav-drop > summary::marker { content: ""; }
.nav-drop > summary::after {
  content: " ▾";
  font-size: 0.72em;
  color: var(--gold);
}
.nav-drop[open] > summary { color: var(--gold-soft); }
.nav-drop-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 0.65rem);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.4rem 0;
  min-width: 16rem;
  max-height: 70vh;
  overflow-y: auto;
  z-index: 30;
  box-shadow: 0 12px 40px rgba(28,36,48,0.12);
}
.nav-drop-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0.5rem 0.85rem 0.2rem;
  font-weight: 700;
  margin: 0;
}
.nav-drop-panel > .nav-drop-label:first-child {
  padding-top: 0.15rem;
}
.sin-card h4 a {
  color: inherit;
  text-decoration: none;
}
.sin-card h4 a:hover {
  color: var(--gold-soft);
}
.nav-drop-panel a {
  display: block;
  padding: 0.48rem 1rem;
  font-size: 0.9rem;
}
.nav-drop-panel a[aria-current="page"] { color: var(--gold-soft); }
@media (max-width: 640px) {
  .nav-drop-panel { right: auto; left: 0; }
}

.watch-follow {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem 1.1rem;
  margin: 0.85rem 0 0.35rem;
  padding: 0;
  list-style: none;
}
.watch-follow a {
  color: var(--gold-soft);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
}
.watch-follow a:hover { color: var(--gold); }

/* Watch this Short strip (Series B landing pages) */
.watch-short {
  margin: 2.35rem 0 0;
  padding: 1.85rem 1.15rem 1.5rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #f3efe8;
  text-align: center;
}
.watch-short h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.55rem, 3.4vw, 2rem);
  margin: 0 0 0.4rem;
  color: var(--gold-soft);
  font-weight: 700;
  line-height: 1.2;
}
.watch-short-line {
  color: var(--muted);
  margin: 0 auto 1.2rem;
  max-width: 28rem;
  font-size: 1.05rem;
}
.watch-short-frame {
  position: relative;
  width: min(360px, 100%);
  margin: 0 auto 1.1rem;
  aspect-ratio: 9 / 16;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.28);
}
.watch-short-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.watch-short-links {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.7;
}
.watch-short-links a {
  color: var(--gold-soft);
  text-decoration: none;
}
.watch-short-links a:hover { color: var(--gold); }
.watch-short-sep {
  color: var(--muted);
  margin: 0 0.45rem;
  font-weight: 400;
}

/* Homepage bondage oval strip (under sticky nav) */
.bondage-strip {
  position: relative;
  background: #f3efe8;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 0.4rem 0 0.3rem;
}
.bondage-strip::after {
  content: "";
  position: absolute;
  right: 0;
  top: 1.6rem;
  bottom: 0;
  width: 2.2rem;
  background: linear-gradient(to right, rgba(243,239,232,0), #f3efe8 80%);
  pointer-events: none;
  z-index: 2;
}
.bondage-strip-inner {
  width: 100%;
  max-width: 1080px;
  margin-inline: auto;
}
.bondage-strip-kicker {
  margin: 0 0 0.28rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.58rem;
  font-weight: 700;
  color: var(--gold);
}
.strip-scroll-hint {
  letter-spacing: 0.1em;
  color: var(--gold-soft);
  opacity: 0.75;
  font-weight: 600;
}
.bondage-strip-row {
  display: block;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  padding: 0.15rem 2rem 0.5rem 0.85rem;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) #0c1116;
  font-size: 0;
}
.bondage-strip-row::-webkit-scrollbar { height: 5px; }
.bondage-strip-row::-webkit-scrollbar-track { background: #efeae2; }
.bondage-strip-row::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 99px;
}
.strip-oval {
  display: inline-block;
  vertical-align: top;
  width: 148px;
  min-width: 148px;
  max-width: 148px;
  margin-right: 0.55rem;
  text-decoration: none;
  color: var(--gold);
  white-space: normal;
  font-size: 0.72rem;
  text-align: center;
}
.strip-oval img {
  display: block;
  width: 148px;
  max-width: 148px;
  height: auto;
  filter: drop-shadow(0 4px 10px rgba(28,36,48,0.12));
}
.strip-oval span {
  display: block;
  margin-top: 0.18rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
}
.hero { padding-top: 3rem; }

@media (max-width: 720px) {
  .bondage-strip-row {
    padding: 0.1rem 1.8rem 0.45rem 0.7rem;
  }
  .strip-oval {
    width: 128px;
    min-width: 128px;
    max-width: 128px;
    margin-right: 0.45rem;
    font-size: 0.68rem;
  }
  .strip-oval img {
    width: 128px;
    max-width: 128px;
  }
  .strip-oval span { font-size: 0.68rem; }
  .hero { padding-top: 2.2rem; }
}


/* Simple home: hero details + Want more CTAs */
.hero-verse-details {
  margin: 0;
  border-radius: 10px;
  border: 1px solid rgba(28,36,48,0.08);
  background: #faf7f2;
  overflow: hidden;
}
.hero-verse-details > summary {
  cursor: pointer;
  list-style: none;
  padding: 0.75rem 1rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--gold-soft);
  letter-spacing: 0.01em;
}
.hero-verse-details > summary::-webkit-details-marker { display: none; }
.hero-verse-details > summary::marker { content: ""; }
.hero-verse-details > summary::before {
  content: "▸ ";
  color: var(--gold);
}
.hero-verse-details[open] > summary::before { content: "▾ "; }
.hero-verse-details[open] > summary {
  border-bottom: 1px solid rgba(28,36,48,0.06);
}
.hero-verse-details blockquote {
  margin: 0;
  padding: 0.9rem 1rem 1rem;
  border-left: 3px solid rgba(184,135,47,0.65);
  background: #f3efe8;
  border-radius: 0;
}
.hero-verse-details p {
  margin: 0 0 0.4rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.4;
  color: var(--text);
}
.hero-verse-details cite {
  display: block;
  font-style: normal;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--gold-soft);
}

.want-more {
  padding: 3.25rem 0 2.75rem;
  background: var(--bg-soft);
  border-top: 1px solid rgba(28,36,48,0.06);
  border-bottom: 1px solid rgba(28,36,48,0.06);
  text-align: center;
}
.want-more h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.35rem);
  margin: 0 0 0.55rem;
}
.want-more-lead {
  margin: 0 auto 1.5rem;
  max-width: 34rem;
  color: var(--muted);
}
.home-cta-row {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  max-width: 720px;
  margin-inline: auto;
}
.home-cta {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  text-align: left;
  text-decoration: none;
  padding: 1.15rem 1.25rem;
  border-radius: 14px;
  background: var(--card);
  border: 1px solid rgba(184,135,47,0.28);
  box-shadow: 0 8px 24px rgba(28,36,48,0.05);
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}
.home-cta:hover {
  border-color: rgba(184,135,47,0.55);
  box-shadow: 0 12px 28px rgba(28,36,48,0.08);
  transform: translateY(-1px);
}
.home-cta strong {
  color: var(--text);
  font-size: 1.05rem;
}
.home-cta span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.4;
}

.page-back {
  margin: 2rem 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
}
.page-back a {
  color: var(--gold-soft);
  font-weight: 700;
  text-decoration: none;
}
.page-back a:hover { text-decoration: underline; }
