/* ── Sunday Drop — Landing Page ────────────────────────────────────────
   Neo-brutalist theme · Fraunces + DM Sans · Yellow/Coral/Sky/Green/Purple
   Document previews use Barlow Condensed + Merriweather for that real-doc feel
─────────────────────────────────────────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,wght@0,400;0,700;0,900;1,400;1,700;1,900&family=DM+Sans:wght@400;500;600;700&family=Barlow+Condensed:wght@400;600;700;800;900&family=Barlow:ital,wght@0,300;0,400;0,500;0,600;1,400&family=Merriweather:ital,wght@0,300;0,400;0,700;1,300;1,400&display=swap');

:root {
  --yellow:     #FFE03D;
  --coral:      #FF5C3A;
  --ink:        #1A1412;
  --cream:      #FFF8EE;
  --sky:        #C8F0FF;
  --green:      #B8F5C8;
  --purple:     #E8D5FF;
  --peach:      #FFD6C8;
  /* kept for sdoc compatibility */
  --red:        #FF5C3A;
  --red-deep:   #E04A2A;
  --red-light:  #FFF0EE;
  --teal:       #3EA8AA;
  --teal-deep:  #2D8C8E;
  --teal-light: #E8F8F8;
  --navy:       #1A1A2E;
  --charcoal:   #232323;
  --text:       #1A1412;
  --text-mid:   #6B5B4E;
  --text-light: #9C8C7E;
  --border:     #1A1412;
  --bg:         var(--cream);
  --bg-card:    #FFFFFF;
  --paper:      #FDFCF9;
  --paper-warm: #FAF8F4;
}

/* ═══════════════════════════════════════════════════ SITE CHROME */

.landing-body {
  background: var(--cream);
  display: block;
  min-height: 100vh;
  font-family: 'DM Sans', system-ui, sans-serif;
  color: var(--ink);
  overflow-x: hidden;
}

/* ── NAV ─────────────────────────────────────────── */
.land-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 48px;
  border-bottom: 2px solid var(--ink);
  position: sticky; top: 0;
  background: var(--cream);
  z-index: 200;
}
.land-logo {
  text-decoration: none; display: flex; align-items: center;
}
.land-logo-img { height: 38px; width: auto; display: block; }
.land-logo-text  { display: flex; flex-direction: column; line-height: 1.15; }
.land-logo-name {
  font-family: 'Fraunces', serif; font-weight: 900;
  font-size: 20px; color: var(--ink); letter-spacing: -.02em;
}
.land-logo-sub {
  font-family: 'DM Sans', sans-serif; font-weight: 400;
  font-size: 10px; color: var(--text-mid); letter-spacing: .04em;
}
.land-nav-links { display: flex; align-items: center; gap: 8px; }
.land-nav-link {
  color: var(--ink); text-decoration: none; font-size: 14px;
  font-weight: 500; padding: 8px 14px; transition: opacity .2s;
}
.land-nav-link:hover { opacity: .6; }
.land-nav-cta {
  background: var(--ink); color: var(--yellow) !important; text-decoration: none;
  font-size: 14px; font-weight: 600; padding: 10px 22px; border-radius: 100px;
  border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 var(--coral);
  transition: transform .15s, box-shadow .15s;
}
.land-nav-cta:hover {
  transform: translate(-2px, -2px); box-shadow: 5px 5px 0 var(--coral);
}

/* ── HERO ────────────────────────────────────────── */
.land-hero {
  background: var(--cream);
  border-bottom: 2px solid var(--ink);
}
.land-hero-inner {
  max-width: 1200px; margin: 0 auto; padding: 80px 48px 64px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
}
.land-hero-left { }
.land-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; color: var(--ink);
  background: var(--yellow); border: 2px solid var(--ink);
  border-radius: 100px; padding: 6px 16px; margin-bottom: 24px;
  letter-spacing: .05em; text-transform: uppercase;
}
.land-hero-h1 {
  font-family: 'Fraunces', serif; font-weight: 900;
  font-size: clamp(42px, 5vw, 68px); line-height: 1.05;
  color: var(--ink); margin-bottom: 24px; letter-spacing: -.02em;
}
.land-hero-accent { font-style: italic; color: var(--coral); }
.land-hero-sub {
  font-size: 18px; line-height: 1.65; color: #4A3F3A;
  max-width: 480px; margin-bottom: 36px; font-weight: 400;
}
.land-hero-actions {
  display: flex; align-items: center;
  gap: 16px; flex-wrap: wrap;
}
.land-btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--coral); color: #fff; text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600; font-size: 16px; padding: 15px 30px; border-radius: 100px;
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform .15s, box-shadow .15s;
}
.land-btn-primary:hover {
  transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink);
}
.land-btn-ghost {
  color: var(--ink); text-decoration: none; font-size: 15px;
  font-weight: 500; text-decoration: underline; text-underline-offset: 3px;
  transition: opacity .2s;
}
.land-btn-ghost:hover { opacity: .6; }

/* Hero visual card */
.land-hero-visual { position: relative; }
.land-hero-card {
  background: #fff; border: 2px solid var(--ink);
  border-radius: 20px; padding: 28px;
  box-shadow: 8px 8px 0 var(--ink);
  position: relative;
}
.land-hero-card-label {
  font-size: 11px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: #888; margin-bottom: 6px;
}
.land-hero-card-title {
  font-family: 'Fraunces', serif; font-size: 18px; font-weight: 700;
  margin-bottom: 18px; line-height: 1.3;
}
.land-hero-doc-list { display: flex; flex-direction: column; gap: 8px; }
.land-hero-doc-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: 10px;
  font-size: 13.5px; font-weight: 500;
  border: 1.5px solid var(--ink);
}
.land-hero-doc-item:nth-child(1) { background: var(--yellow); }
.land-hero-doc-item:nth-child(2) { background: var(--sky); }
.land-hero-doc-item:nth-child(3) { background: var(--green); }
.land-hero-doc-item:nth-child(4) { background: var(--purple); }
.land-hero-doc-item:nth-child(5) { background: var(--peach); }
.land-hero-doc-item:nth-child(6) { background: var(--yellow); }
.land-hero-doc-item:nth-child(7) { background: var(--sky); }
.land-hero-doc-item:nth-child(8) { background: var(--green); }

/* Marquee */
.land-marquee {
  background: var(--coral); border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink); padding: 14px 0; overflow: hidden;
  white-space: nowrap;
}
.land-marquee-track {
  display: inline-flex;
  animation: marqueeScroll 22s linear infinite;
}
.land-marquee-item {
  font-family: 'Fraunces', serif; font-size: 17px; font-weight: 700;
  font-style: italic; color: #fff; padding: 0 28px;
}
.land-marquee-dot { color: var(--yellow); }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Stats strip */
.land-stats-strip {
  background: var(--ink); border-bottom: 2px solid var(--ink);
  padding: 28px 48px;
  display: flex; justify-content: center; gap: 64px; flex-wrap: wrap;
}
.land-stat { text-align: center; }
.land-stat-num {
  font-family: 'Fraunces', serif; font-size: 42px; font-weight: 900;
  color: var(--yellow); line-height: 1;
}
.land-stat-label {
  font-size: 13px; color: rgba(255,224,61,.65); margin-top: 4px; font-weight: 500;
}

/* legacy hero stats row (hidden now) */
.land-hero-stats { display: none; }
.land-stat-dot   { display: none; }
.land-stat-item  { display: none; }

/* ── SHARED SECTION STYLES ───────────────────────── */
.land-section-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 48px;
}
.land-section-label {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: .1em;
  color: var(--ink); text-transform: uppercase; margin-bottom: 16px;
  background: var(--yellow); border: 2px solid var(--ink);
  border-radius: 100px; padding: 4px 14px;
}
.land-section-h2 {
  font-family: 'Fraunces', serif; font-weight: 900;
  font-size: clamp(28px, 3.5vw, 46px); color: var(--ink);
  margin-bottom: 12px; letter-spacing: -.02em; line-height: 1.12;
}
.land-section-h2-light { color: #fff; }
.land-section-label-light { background: var(--yellow); color: var(--ink); }
.land-section-sub {
  font-size: 16px; color: var(--text-mid); line-height: 1.7; margin-bottom: 44px;
}

/* ── WHAT YOU GET ────────────────────────────────── */
.land-what {
  padding: 96px 0;
  background: var(--ink);
  border-bottom: 2px solid var(--ink);
}
.land-what .land-section-h2 { color: #fff; }
.land-what .land-section-sub { color: rgba(255,255,255,.55); }
.land-docs-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px; margin-top: 40px;
}
.land-doc-card {
  border: 2px solid rgba(255,255,255,.15);
  border-radius: 14px; padding: 22px 20px;
  cursor: default;
  transition: transform .2s, border-color .2s;
}
.land-doc-card:nth-child(1) { background: #2A2018; }
.land-doc-card:nth-child(2) { background: #18222A; }
.land-doc-card:nth-child(3) { background: #1A2318; }
.land-doc-card:nth-child(4) { background: #22182A; }
.land-doc-card:nth-child(5) { background: #2A2018; }
.land-doc-card:nth-child(6) { background: #18222A; }
.land-doc-card:nth-child(7) { background: #1A2318; }
.land-doc-card:nth-child(8) { background: #22182A; }
.land-doc-card:hover { transform: translateY(-4px); border-color: var(--yellow); }
.land-doc-icon {
  font-size: 26px; margin-bottom: 12px; display: block;
}
.land-doc-name {
  font-family: 'Fraunces', serif; font-weight: 700;
  font-size: 16px; color: #fff; margin-bottom: 6px; line-height: 1.25;
}
.land-doc-desc { font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.6; }

/* ── HOW IT WORKS ────────────────────────────────── */
.land-how {
  background: var(--cream);
  border-bottom: 2px solid var(--ink);
  padding: 96px 0;
}
.land-steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 52px;
}
.land-step {
  background: #fff; border: 2px solid var(--ink);
  border-radius: 16px; padding: 32px;
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform .2s, box-shadow .2s;
  text-align: left;
}
.land-step:hover {
  transform: translate(-3px, -3px); box-shadow: 8px 8px 0 var(--ink);
}
.land-step:nth-child(1) { background: var(--sky); }
.land-step:nth-child(2) { background: var(--green); }
.land-step:nth-child(3) { background: var(--yellow); }
.land-step-icon  { display: none; }
.land-step-arrow { display: none; }
.land-step-num {
  font-family: 'Fraunces', serif; font-size: 56px; font-weight: 900;
  color: rgba(0,0,0,.1); line-height: 1; margin-bottom: 14px;
}
.land-step h3 {
  font-family: 'Fraunces', serif; font-weight: 700;
  font-size: 21px; color: var(--ink); margin-bottom: 10px; line-height: 1.25;
}
.land-step p { color: #3A3A3A; font-size: 14.5px; line-height: 1.7; }

/* ── DOCUMENT SHOWCASE ───────────────────────────── */
.showcase-section {
  background: var(--cream);
  padding: 96px 0 80px;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}
.showcase-head { text-align: center; margin-bottom: 40px; }
.showcase-sub {
  font-size: 13px; color: var(--text-mid); font-style: italic;
  margin-top: 10px; display: block;
}

/* Doc type selector */
.doc-selector {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; flex-wrap: wrap; padding: 0 48px; margin-bottom: 28px;
}
.doc-sel-btn {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 600;
  padding: 8px 16px; border-radius: 100px;
  background: #fff; border: 2px solid var(--ink);
  color: var(--ink); cursor: pointer;
  box-shadow: 2px 2px 0 var(--ink);
  transition: transform .15s, box-shadow .15s;
}
.doc-sel-btn:hover {
  transform: translate(-1px, -1px); box-shadow: 3px 3px 0 var(--ink);
}
.doc-sel-btn.active {
  background: var(--coral); color: #fff;
  box-shadow: 3px 3px 0 var(--ink);
}
.doc-sel-icon { display: flex; align-items: center; flex-shrink: 0; }

/* Document viewer */
.doc-viewer-wrap {
  position: relative; max-width: 760px; margin: 0 auto; padding: 0 32px;
}
.doc-viewer {
  position: relative; z-index: 1;
  height: 640px; overflow-y: auto; overflow-x: hidden;
  border-radius: 12px;
  border: 2px solid var(--ink);
  box-shadow: 8px 8px 0 var(--ink);
  scrollbar-width: thin; scrollbar-color: rgba(0,0,0,.14) transparent;
}
.doc-viewer::-webkit-scrollbar { width: 5px; }
.doc-viewer::-webkit-scrollbar-track { background: transparent; }
.doc-viewer::-webkit-scrollbar-thumb { background: rgba(0,0,0,.13); border-radius: 10px; }

.doc-viewer-fade {
  position: absolute; bottom: 0; left: 32px; right: 32px; height: 110px;
  background: linear-gradient(to bottom, transparent, var(--cream));
  pointer-events: none; z-index: 2; border-radius: 0 0 10px 10px;
}

/* Showcase bottom strip */
.showcase-bottom-strip {
  display: flex; align-items: center; justify-content: center;
  gap: 28px; flex-wrap: wrap;
  margin-top: 40px; padding: 0 48px;
}
.showcase-bottom-note {
  font-size: 13.5px; color: var(--text-mid); font-weight: 500;
  display: flex; align-items: center; gap: 6px;
}

/* ═══════════════════════════════════════════════════ DOCUMENT PANELS (sdoc) */

.sdoc { display: none; background: var(--paper); min-height: 100%; }
.sdoc-active { display: block; }

/* Document header */
.sdoc-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 28px; gap: 16px;
}
.sdoc-header-red      { background: linear-gradient(135deg, #C23D2A 0%, #D94F3A 60%, #E05A44 100%); }
.sdoc-header-teal     { background: linear-gradient(135deg, #3D7A7C 0%, #5B9EA0 60%, #6AACAE 100%); }
.sdoc-header-navy     { background: linear-gradient(135deg, #0F0F20 0%, #1A1A2E 60%, #222240 100%); }
.sdoc-header-charcoal { background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%); }

.sdoc-header-left { display: flex; align-items: center; gap: 14px; }
.sdoc-logo-mark   { flex-shrink: 0; opacity: .9; }
.sdoc-church-name {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  font-size: 10px; letter-spacing: .2em; color: rgba(255,255,255,.9); margin-bottom: 3px;
}
.sdoc-church-meta {
  font-family: 'Barlow', sans-serif; font-weight: 400;
  font-size: 10.5px; color: rgba(255,255,255,.55);
}
.sdoc-doc-title-block { text-align: right; flex-shrink: 0; }
.sdoc-doc-label {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
  font-size: 21px; color: #fff; letter-spacing: .01em; line-height: 1.1;
}
.sdoc-doc-label-sub {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 600;
  font-size: 10px; letter-spacing: .12em; color: rgba(255,255,255,.6); margin-top: 3px;
}

/* Series bar */
.sdoc-series-bar {
  display: flex; align-items: center; gap: 10px;
  background: #1E0F0A; padding: 9px 28px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: .16em;
  color: rgba(217,79,58,.8); text-transform: uppercase;
}
.sdoc-series-bar-teal     { background: #0A1718; color: rgba(91,158,160,.8); }
.sdoc-series-bar-navy     { background: #0A0A14; color: rgba(120,120,180,.8); }
.sdoc-series-bar-charcoal { background: #161616; color: rgba(180,180,180,.6); }
.sdoc-series-dot { opacity: .4; }

/* Document body */
.sdoc-body-area { padding: 28px 36px 24px; }

/* Day block */
.sdoc-day-block { position: relative; }
.sdoc-day-num-bg {
  position: absolute; top: -8px; right: -8px;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
  font-size: 90px; line-height: 1; color: rgba(217,79,58,.06);
  pointer-events: none; user-select: none; letter-spacing: -.04em;
}
.sdoc-day-num-navy { color: rgba(26,26,46,.15); }
.sdoc-day-meta {
  font-family: 'Barlow Condensed', sans-serif; font-size: 10px;
  font-weight: 800; letter-spacing: .2em; color: var(--red);
  margin-bottom: 6px; text-transform: uppercase;
}
.sdoc-day-meta-teal { color: var(--teal); }
.sdoc-day-meta-navy { color: #6666AA; }
.sdoc-day-title {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
  font-size: 30px; color: #111; line-height: 1.1; letter-spacing: -.01em;
  margin-bottom: 16px;
}

/* Scripture card */
.sdoc-scripture-card {
  background: #F7F2EC; border-left: 3.5px solid var(--red);
  border-radius: 0 5px 5px 0; padding: 14px 18px; margin-bottom: 18px;
}
.sdoc-scripture-teal { background: #EFF7F7; border-left-color: var(--teal); }
.sdoc-scripture-navy { background: #EFEFF7; border-left-color: #6666AA; }
.sdoc-scripture-ref {
  font-family: 'Barlow Condensed', sans-serif; font-size: 9px;
  font-weight: 800; letter-spacing: .2em; color: #AAA; margin-bottom: 8px;
  text-transform: uppercase;
}
.sdoc-scripture-text {
  font-family: 'Merriweather', serif; font-size: 13px; font-style: italic;
  line-height: 1.8; color: #333; margin: 0;
}

/* Body reading text */
.sdoc-reading {
  font-family: 'Merriweather', serif; font-size: 13px; font-weight: 300;
  line-height: 1.9; color: #444;
}
.sdoc-reading p { margin: 0 0 14px; }
.sdoc-reading p:last-child { margin-bottom: 0; }
.sdoc-reading em { font-style: italic; color: #222; }
.sdoc-reading strong { font-weight: 700; color: #111; }

/* Section rules */
.sdoc-section-rule {
  display: flex; align-items: center; gap: 12px;
  margin: 20px 0 12px; border-top: 1px solid #E8E4DC; padding-top: 16px;
}
.sdoc-section-rule span {
  font-family: 'Barlow Condensed', sans-serif; font-size: 9px;
  font-weight: 800; letter-spacing: .22em; color: #B0A898; text-transform: uppercase;
  white-space: nowrap;
}
.sdoc-section-rule-teal span { color: var(--teal-deep); }
.sdoc-section-rule-navy span { color: #6666AA; }

/* Numbered questions */
.sdoc-q-list { list-style: none; padding: 0; margin: 0; counter-reset: q-counter; }
.sdoc-q-list li {
  counter-increment: q-counter;
  display: flex; align-items: flex-start; gap: 12px;
  font-family: 'Merriweather', serif; font-size: 12.5px; font-weight: 300;
  line-height: 1.75; color: #444; padding: 8px 0;
  border-bottom: 1px solid #F0EDE8;
}
.sdoc-q-list li:last-child { border-bottom: none; }
.sdoc-q-list li::before {
  content: counter(q-counter);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; width: 22px; height: 22px;
  background: var(--red); color: #fff;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 11px;
  border-radius: 50%; margin-top: 1px;
}

/* Prayer box */
.sdoc-prayer {
  background: #F9F6F1; border: 1px solid #E8E2D8; border-radius: 6px;
  padding: 16px 20px;
}
.sdoc-prayer-teal { background: #F2F9F9; border-color: #C8E4E4; }
.sdoc-prayer p {
  font-family: 'Merriweather', serif; font-size: 12.5px; font-style: italic;
  line-height: 1.85; color: #555; margin: 0;
}
.sdoc-prayer em { font-style: normal; font-weight: 700; color: #333; }

/* Activity box */
.sdoc-activity-box {
  display: flex; align-items: flex-start; gap: 12px;
  background: #EFF8F7; border: 1px solid #C4E0DF; border-radius: 6px;
  padding: 14px 16px; font-size: 13px; color: #2D7070; line-height: 1.7;
  font-weight: 500;
}
.sdoc-activity-icon { font-size: 20px; flex-shrink: 0; margin-top: -2px; }

/* Leader box */
.sdoc-leader-box {
  background: #FFF7ED; border: 1px solid #F0D5A8; border-radius: 6px;
  padding: 14px 18px;
}
.sdoc-leader-box-label {
  font-family: 'Barlow Condensed', sans-serif; font-size: 9px; font-weight: 800;
  letter-spacing: .2em; color: #C4882A; margin-bottom: 8px; text-transform: uppercase;
}
.sdoc-leader-box p {
  font-family: 'Merriweather', serif; font-size: 12.5px; font-style: italic;
  line-height: 1.8; color: #6B4F1A; margin: 0;
}

/* Theme list (Staff Recap) */
.sdoc-theme-list { display: flex; flex-direction: column; gap: 12px; margin: 4px 0; }
.sdoc-theme-item {
  display: flex; align-items: flex-start; gap: 14px;
  font-family: 'Merriweather', serif; font-size: 12.5px; font-weight: 300;
  line-height: 1.7; color: #444;
}
.sdoc-theme-num {
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; width: 28px; height: 28px;
  background: #F0EDE8; border: 1px solid #DDD8D0;
  border-radius: 4px; color: #888;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 13px;
  margin-top: 2px;
}

/* Email specifics */
.sdoc-email-body { padding-top: 0 !important; }
.sdoc-email-meta {
  background: #F8F6F2; border-bottom: 1px solid #E8E4DC; padding: 16px 36px;
}
.sdoc-email-row {
  display: flex; align-items: baseline; gap: 10px;
  padding: 6px 0; border-bottom: 1px solid #F0EDE8; font-size: 13px; color: #444;
}
.sdoc-email-row:last-child { border-bottom: none; }
.sdoc-email-label {
  font-family: 'Barlow Condensed', sans-serif; font-size: 9px; font-weight: 800;
  letter-spacing: .18em; color: #AAA; text-transform: uppercase;
  width: 48px; flex-shrink: 0;
}
.sdoc-email-subj   { font-weight: 600; color: #111; font-size: 14px; }
.sdoc-email-reading { margin-top: 20px; }
.sdoc-action-list  { list-style: none; padding: 0; margin: 0; }
.sdoc-action-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-family: 'Merriweather', serif; font-size: 12.5px; font-weight: 300;
  line-height: 1.7; color: #444; padding: 8px 0;
  border-bottom: 1px solid #F0EDE8;
}
.sdoc-action-list li:before {
  content: '→'; color: var(--red); font-size: 12px;
  font-family: 'Barlow', sans-serif; flex-shrink: 0; margin-top: 2px;
}
.sdoc-action-list li:last-child { border-bottom: none; }

/* Social/Digital */
.sdoc-social-card {
  margin-bottom: 14px; background: #F8F6F2; border: 1px solid #E8E4DC;
  border-radius: 6px; overflow: hidden;
}
.sdoc-social-day-badge {
  background: var(--navy); color: rgba(255,255,255,.7);
  font-family: 'Barlow Condensed', sans-serif; font-size: 9px;
  font-weight: 800; letter-spacing: .2em; padding: 6px 14px;
}
.sdoc-social-badge-teal { background: var(--teal-deep); }
.sdoc-social-caption {
  padding: 12px 14px; font-size: 12.5px; line-height: 1.75; color: #444;
  font-family: 'Barlow', sans-serif; font-weight: 400;
}
.sdoc-hashtags {
  font-family: 'Barlow Condensed', sans-serif; font-size: 12px; color: #9999BB;
  letter-spacing: .02em; line-height: 1.8;
  background: #F0EFF8; border-radius: 4px; padding: 10px 14px;
}

/* Mon–Fri week strip */
.sdoc-week-strip { display: flex; gap: 6px; margin-bottom: 20px; }
.sdoc-week-day {
  flex: 1; text-align: center;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  padding: 6px 0; border-radius: 4px;
  background: #F2EEE8; color: #B0A898; border: 1px solid #E4DDD4;
}
.sdoc-week-day-active       { background: var(--red); color: #fff; border-color: var(--red); }
.sdoc-week-day-active-teal  { background: var(--teal); border-color: var(--teal); }

.sdoc-days-note {
  text-align: center; margin-top: 24px; padding: 16px 0 8px;
  border-top: 1px dashed #E0DCD4;
  font-family: 'Barlow Condensed', sans-serif; font-size: 11px;
  font-style: italic; color: #C0BAB0; letter-spacing: .04em;
}

/* Document footer */
.sdoc-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 28px; border-top: 1px solid #EAE7E0;
  background: #F8F6F2;
  font-family: 'Barlow Condensed', sans-serif; font-size: 10px;
  font-weight: 600; letter-spacing: .08em; color: #B8B0A4;
  gap: 16px;
}
.sdoc-footer-teal     { background: #F2F9F9; border-top-color: #D0E8E8; color: #7AAAA8; }
.sdoc-footer-navy     { background: #F0F0F8; border-top-color: #D0D0E8; color: #8888AA; }
.sdoc-footer-charcoal { background: #F5F5F5; border-top-color: #E0E0E0; color: #A0A0A0; }

/* ═══════════════════════════════════════════════════ FEATURES / CTA / FOOTER */

/* FEATURES */
.land-features {
  background: var(--cream);
  border-bottom: 2px solid var(--ink);
  padding: 96px 0;
}
.land-features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 48px; text-align: left;
}
.land-feature-card {
  background: #FFFFFF; border: 2px solid var(--ink);
  border-radius: 16px; padding: 28px 24px;
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform .2s, box-shadow .2s;
}
.land-feature-card:hover {
  transform: translate(-3px, -3px); box-shadow: 7px 7px 0 var(--ink);
}
.land-feature-icon { font-size: 30px; margin-bottom: 16px; }
.land-feature-card h3 {
  font-family: 'Fraunces', serif; font-size: 20px; font-weight: 700;
  color: var(--ink); margin-bottom: 10px; line-height: 1.2;
}
.land-feature-card p { color: #4A3F3A; font-size: 14.5px; line-height: 1.7; }

/* BOTTOM CTA */
.land-cta-section {
  padding: 96px 48px;
  background: var(--cream);
  border-bottom: 2px solid var(--ink);
}
.land-cta-inner {
  max-width: 800px; margin: 0 auto;
  background: var(--ink); border-radius: 24px;
  padding: 64px 56px; text-align: center;
  border: 2px solid var(--ink);
  box-shadow: 8px 8px 0 var(--coral);
  position: relative; overflow: hidden;
}
.land-cta-inner::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 180px; height: 180px; background: var(--coral);
  border-radius: 50%; opacity: .18;
}
.land-cta-inner::after {
  content: ''; position: absolute; bottom: -40px; left: -40px;
  width: 140px; height: 140px; background: var(--yellow);
  border-radius: 50%; opacity: .14;
}
.land-cta-icon   { font-size: 44px; margin-bottom: 20px; position: relative; z-index: 1; }
.land-cta-h2 {
  font-family: 'Fraunces', serif; font-weight: 900;
  font-size: clamp(26px, 3.5vw, 44px); color: #fff;
  margin-bottom: 14px; letter-spacing: -.02em; line-height: 1.1;
  position: relative; z-index: 1;
}
.land-cta-h2 em { font-style: italic; color: var(--yellow); }
.land-cta-sub {
  font-size: 16px; color: rgba(255,255,255,.65); line-height: 1.7;
  margin-bottom: 36px; position: relative; z-index: 1;
}
.land-cta-inner .land-btn-primary {
  background: var(--yellow); color: var(--ink);
  box-shadow: 4px 4px 0 rgba(255,255,255,.3);
  position: relative; z-index: 1;
}
.land-cta-inner .land-btn-primary:hover {
  box-shadow: 6px 6px 0 rgba(255,255,255,.3);
}
.land-cta-signin {
  margin-top: 22px; color: rgba(255,255,255,.45); font-size: 14px;
  position: relative; z-index: 1;
}
.land-cta-signin a { color: rgba(255,255,255,.75); text-decoration: underline; font-weight: 600; }
.land-cta-signin a:hover { color: #fff; }

/* FOOTER */
.land-footer {
  padding: 28px 48px;
  background: var(--ink);
  border-top: 2px solid rgba(255,255,255,.08);
}
.land-footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px; max-width: 1200px; margin: 0 auto;
}
.land-footer-logo  { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.land-footer-logo-img { height: 30px; width: auto; display: block; opacity: 0.85; }
.land-footer-cross {
  font-family: 'Fraunces', serif; font-size: 20px; font-weight: 900; color: var(--yellow);
}
.land-footer-name  {
  font-family: 'Fraunces', serif; font-weight: 900; font-size: 18px; color: var(--yellow);
}
.land-footer-links { display: flex; gap: 24px; }
.land-footer-links a {
  color: rgba(255,255,255,.5); text-decoration: none; font-size: 14px;
  font-weight: 500; transition: color .2s;
}
.land-footer-links a:hover { color: #fff; }
.land-footer-copy { color: rgba(255,255,255,.3); font-size: 12px; }

/* ═══════════════════════════════════════════════════ RESPONSIVE */
@media (max-width: 1024px) {
  .land-docs-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .land-nav { padding: 14px 20px; }
  .land-hero-inner { grid-template-columns: 1fr; padding: 56px 24px; text-align: center; }
  .land-hero-visual { display: none; }
  .land-hero-actions { justify-content: center; }
  .land-section-inner { padding: 0 20px; }
  .land-steps { grid-template-columns: 1fr; }
  .land-features-grid { grid-template-columns: 1fr; }
  .doc-selector { gap: 5px; }
  .doc-sel-btn { font-size: 12px; padding: 7px 12px; }
  .sdoc-day-title { font-size: 24px; }
  .land-footer-inner { flex-direction: column; text-align: center; gap: 12px; }
  .land-cta-section { padding: 56px 24px; }
  .land-cta-inner { padding: 40px 28px; }
  .land-stats-strip { gap: 32px; padding: 20px 24px; }
}
@media (max-width: 600px) {
  .land-hero-h1 { font-size: 36px; }
  .showcase-bottom-strip { flex-direction: column; gap: 16px; }
  .land-docs-grid { grid-template-columns: 1fr; }
  .land-what { padding: 60px 0; }
  .land-how  { padding: 60px 0; }
}

/* ── TESTIMONIAL ───────────────────────────────────── */
.land-testimonial {
  padding: 80px 0;
  background: var(--yellow);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}
.land-testimonial-card {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 0 24px;
}
.land-testimonial-quote-mark {
  font-family: 'Fraunces', serif;
  font-size: 96px;
  font-weight: 900;
  color: var(--ink);
  line-height: .7;
  margin-bottom: 20px;
}
.land-testimonial-text {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--ink);
  margin: 0 0 28px;
}
.land-testimonial-attr {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; font-family: 'DM Sans', sans-serif;
  font-size: 15px; font-weight: 500;
}
.land-testimonial-name { font-weight: 700; color: var(--ink); }
.land-testimonial-divider { color: var(--text-mid); }
.land-testimonial-church { color: var(--text-mid); }

/* ── PRICING ───────────────────────────────────────── */
.land-pricing {
  padding: 96px 0;
  background: var(--cream);
}
.land-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.land-pricing-card {
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 6px;
  box-shadow: 4px 4px 0 var(--ink);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .15s, box-shadow .15s;
}
.land-pricing-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--ink);
}
.land-pricing-card-featured {
  background: var(--ink);
  color: var(--cream);
  box-shadow: 4px 4px 0 var(--coral);
}
.land-pricing-card-featured:hover {
  box-shadow: 6px 6px 0 var(--coral);
}
.land-pricing-badge {
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 4px 14px;
  white-space: nowrap;
}
.land-pricing-name {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 12px;
}
.land-pricing-card-featured .land-pricing-name { color: var(--yellow); }
.land-pricing-price {
  display: flex; align-items: baseline; gap: 4px;
  margin-bottom: 16px;
}
.land-pricing-amount {
  font-family: 'Fraunces', serif;
  font-size: 44px;
  font-weight: 900;
  line-height: 1;
}
.land-pricing-per {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 500;
  opacity: .6;
}
.land-pricing-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 24px;
  opacity: .8;
  flex-shrink: 0;
}
.land-pricing-features {
  list-style: none;
  padding: 0; margin: 0 0 32px;
  display: flex; flex-direction: column; gap: 10px;
  flex: 1;
}
.land-pricing-features li {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  padding-left: 20px;
  position: relative;
  opacity: .9;
}
.land-pricing-features li::before {
  content: '✦';
  position: absolute; left: 0;
  font-size: 10px;
  color: var(--coral);
  top: 2px;
}
.land-pricing-card-featured .land-pricing-features li::before { color: var(--yellow); }
.land-pricing-btn {
  display: block; text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px; font-weight: 700;
  padding: 14px 24px;
  border-radius: 4px;
  border: 2px solid var(--ink);
  text-decoration: none;
  transition: transform .15s, box-shadow .15s;
}
.land-pricing-btn-outline {
  background: var(--cream);
  color: var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
}
.land-pricing-btn-outline:hover {
  transform: translate(-1px, -1px);
  box-shadow: 4px 4px 0 var(--ink);
}
.land-pricing-btn-primary {
  background: var(--yellow);
  color: var(--ink);
  border-color: var(--yellow);
  box-shadow: 3px 3px 0 var(--coral);
}
.land-pricing-btn-primary:hover {
  transform: translate(-1px, -1px);
  box-shadow: 4px 4px 0 var(--coral);
}
@media (max-width: 860px) {
  .land-pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .land-testimonial-text { font-size: 20px; }
}

/* ── OUTLINE BUTTON (ink border) ───────────────────── */
.land-btn-outline-ink {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px; font-weight: 700;
  padding: 14px 28px;
  border: 2px solid var(--ink);
  border-radius: 4px;
  background: transparent;
  color: var(--ink);
  text-decoration: none;
  box-shadow: 3px 3px 0 var(--ink);
  transition: transform .15s, box-shadow .15s;
}
.land-btn-outline-ink:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--ink);
}

/* ── HOW IT WORKS TEASER (landing page) ────────────── */
.land-hiw-teaser {
  padding: 88px 0;
  background: var(--ink);
}
.land-hiw-teaser .land-section-label { color: var(--yellow); border-color: var(--yellow); background: transparent; }
.land-hiw-teaser .land-section-h2 { color: var(--cream); }
.land-hiw-teaser-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.land-hiw-teaser-text p { color: rgba(255,248,238,.7); }
.land-hiw-teaser-text .land-btn-outline-ink {
  border-color: var(--yellow);
  color: var(--yellow);
  box-shadow: 3px 3px 0 var(--yellow);
}
.land-hiw-teaser-text .land-btn-outline-ink:hover {
  box-shadow: 5px 5px 0 var(--yellow);
}
.land-hiw-teaser-steps {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.land-hiw-teaser-step {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  border: 2px solid rgba(255,248,238,.15);
  border-radius: 6px;
  width: 100%;
  background: rgba(255,248,238,.04);
}
.land-hiw-teaser-num {
  font-family: 'Fraunces', serif;
  font-size: 32px;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
  flex-shrink: 0;
}
.land-hiw-teaser-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--cream);
}
.land-hiw-teaser-arrow {
  font-size: 20px;
  color: rgba(255,248,238,.3);
  padding: 4px 24px;
  align-self: flex-start;
}

/* ── SHOWCASE TEASER (landing page) ────────────────── */
.land-showcase-teaser {
  padding: 80px 0;
  background: var(--peach);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}
.land-showcase-teaser-inner { max-width: 600px; }

/* ── HOW IT WORKS PAGE ──────────────────────────────── */
.hiw-hero {
  padding: 80px 0 64px;
  border-bottom: 2px solid var(--ink);
  background: var(--cream);
}
.hiw-hero-h1 {
  font-family: 'Fraunces', serif;
  font-size: 52px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--ink);
  margin: 16px 0 20px;
  max-width: 700px;
}
.hiw-hero-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-mid);
  max-width: 580px;
}
.hiw-steps-section { padding: 80px 0; }
.land-steps-detailed { gap: 32px; }
.hiw-step { border: 2px solid var(--ink); border-radius: 6px; padding: 36px; box-shadow: 4px 4px 0 var(--ink); background: #fff; }
.hiw-step-detail {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(26,20,18,.12);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hiw-step-detail-item {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text-mid);
}

@media (max-width: 860px) {
  .land-hiw-teaser-inner { grid-template-columns: 1fr; gap: 40px; }
  .hiw-hero-h1 { font-size: 36px; }
  .land-pricing-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════
   LANDING MOBILE ADDITIONS  (≤ 600px)
════════════════════════════════════════════════════════ */
@media (max-width: 600px) {
  .land-nav { padding: 12px 14px; }
  .land-logo-img { height: 32px; }

  /* hide text nav links, keep only CTAs */
  .land-nav-links .land-nav-link { display: none; }
  .land-nav-cta { padding: 8px 16px; font-size: 13px; }

  /* hero */
  .land-hero-h1 { font-size: 32px; }
  .land-hero-inner { padding: 40px 16px; }

  /* pricing: single column */
  .land-pricing-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }
  .land-pricing-card { padding: 24px 20px; }

  /* stats strip — wrap */
  .land-stats-strip {
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px 16px;
  }

  /* steps / features */
  .land-section-inner { padding: 0 14px; }
  .land-cta-inner { padding: 32px 18px; }

}
