/* Inspire Faith — design tokens + shared styles.
   Deliberately its own visual identity (DM Serif Display + Inter, deep
   teal/gold/sage/rose palette), distinct from the main site's Fraunces/
   Jakarta navy-gold system — same pattern Mentorship's warm-charcoal
   system uses relative to the rest of inspirevision.org. Extracted from
   the approved Inspire_Faith_Landing_Responsive.html build (2026-09)
   into its own stylesheet now, since more Faith pages (Bible Study,
   Prayer, Community, etc.) are coming and will share this file rather
   than each re-embedding the same rules.
*/
:root{
  --ink:#102d38;
  --ink-2:#153944;
  --teal:#0b4a51;
  --teal-deep:#083941;
  --gold:#c79122;
  --gold-2:#d8a432;
  --sage:#66856f;
  --rose:#be6d63;
  --slate:#445775;
  --paper:#fbfaf7;
  --cream:#f8f4ec;
  --line:#e5e2dc;
  --muted:#65757b;
  --white:#fff;
  --shadow:0 10px 30px rgba(16,45,56,.10);
  --serif:"DM Serif Display", Georgia, "Times New Roman", serif;
  --sans:"Inter", Arial, sans-serif;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;background:var(--paper);color:var(--ink);font-family:var(--sans);-webkit-font-smoothing:antialiased}
img{display:block;max-width:100%}
a{color:inherit}
button,input{font:inherit}
.wrap{width:min(1180px,calc(100% - 40px));margin-inline:auto}

/* Header */
.site-header{
  height:72px;background:#fff;display:flex;align-items:center;gap:28px;
  padding:0 24px;position:sticky;top:0;z-index:50;border-bottom:1px solid rgba(16,45,56,.05)
}
.brand{display:flex;align-items:center;gap:10px;text-decoration:none;white-space:nowrap}
.brand-mark{width:34px;height:42px;position:relative;display:grid;place-items:center}
.brand-mark svg{width:34px;height:42px}
.brand-copy strong{display:block;font:400 23px/1 var(--serif);letter-spacing:-.01em}
.brand-copy small{display:block;margin-top:4px;font:italic 10px/1.1 Georgia,serif;color:#46616a}
.nav{display:flex;justify-content:center;gap:22px;flex:1}
.nav a{text-decoration:none;font-size:12px;font-weight:500;padding:27px 0 11px}
.nav a.active{border-bottom:2px solid var(--gold)}
.header-actions{display:flex;align-items:center;gap:10px}
.search-btn,.menu-btn{border:0;background:transparent;color:var(--ink);width:38px;height:38px;display:grid;place-items:center;cursor:pointer}
.search-btn svg,.menu-btn svg{width:21px;height:21px}
.menu-btn{display:none}
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:9px;
  min-height:40px;padding:10px 19px;border-radius:999px;border:1px solid transparent;
  text-decoration:none;font-size:13px;font-weight:600;white-space:nowrap;transition:.2s ease
}
.btn:hover{transform:translateY(-1px)}
.btn-gold{background:linear-gradient(180deg,var(--gold-2),var(--gold));color:#fff;box-shadow:0 5px 14px rgba(199,145,34,.18)}
.btn-outline{border-color:#b88c37;background:#fff}
.btn-ghost{border-color:rgba(255,255,255,.88);color:#fff;background:rgba(12,39,47,.08);backdrop-filter:blur(2px)}
.btn-light{background:#fff;color:var(--ink)}
.btn-outline-gold{border-color:var(--gold);background:#fff;color:var(--ink)}
.mobile-nav{display:none;background:#fff;border-top:1px solid var(--line);padding:8px 20px 16px}
.mobile-nav a{display:block;padding:11px 0;text-decoration:none;font-size:14px;border-bottom:1px solid #f0eee9}

/* Hero */
.hero{
  min-height:385px;position:relative;display:flex;align-items:center;
  background:url('/assets/images/faith/01-hero-mountain-sunrise.png') center 49%/cover no-repeat;overflow:hidden
}
.hero:before{
  content:"";position:absolute;inset:0;
  background:linear-gradient(90deg,rgba(250,246,237,.86) 0%,rgba(250,246,237,.59) 35%,rgba(246,236,215,.13) 61%,rgba(6,38,48,.25) 100%)
}
.hero-content{position:relative;display:flex;align-items:center;justify-content:space-between;gap:50px;padding:42px 0 74px}
.hero-copy{max-width:660px}
.hero h1{margin:0;color:#0c2b37;font:400 clamp(54px,6vw,86px)/.93 var(--serif);letter-spacing:-.025em}
.hero-kicker{margin:13px 0 11px;font:italic 400 clamp(25px,2.4vw,33px)/1.1 var(--serif)}
.hero-copy .intro{font-size:16px;line-height:1.45;color:#1c343d;margin:0}
.cta-row{display:flex;gap:15px;flex-wrap:wrap;margin-top:24px}
.cta-row .btn{min-height:42px;padding-inline:22px}
.hero-quote{max-width:345px;text-align:center;color:#fff;text-shadow:0 2px 12px rgba(0,0,0,.28);margin-right:26px}
.hero-quote blockquote{margin:0;font:italic 400 28px/1.33 var(--serif)}
.hero-quote .rule{width:34px;height:2px;background:rgba(255,255,255,.84);margin:22px auto}
.hero-quote .motto{font-size:12px;letter-spacing:.08em;font-weight:600;white-space:nowrap}

/* Gateway cards */
.gateway{
  display:grid;grid-template-columns:repeat(8,1fr);gap:8px;
  position:relative;z-index:4;margin-top:-55px
}
.gateway-card{
  background:#fff;border:1px solid #eeeae2;border-radius:8px;box-shadow:var(--shadow);
  min-height:157px;padding:16px 9px 13px;text-align:center;text-decoration:none;
  display:flex;flex-direction:column;align-items:center;transition:.18s ease
}
.gateway-card:hover{transform:translateY(-3px);box-shadow:0 14px 34px rgba(16,45,56,.13)}
.icon-round{
  width:52px;height:52px;border-radius:50%;display:grid;place-items:center;margin-bottom:10px;
  background:#dbe7e4;color:#1a5b64
}
.icon-round svg{width:25px;height:25px;stroke:currentColor}
.gateway-card:nth-child(2) .icon-round,.gateway-card:nth-child(5) .icon-round{background:#dfe9df;color:#56755e}
.gateway-card:nth-child(3) .icon-round{background:#f4e5b8;color:#b57b10}
.gateway-card:nth-child(4) .icon-round,.gateway-card:nth-child(6) .icon-round{background:#efd4cf;color:#b55f57}
.gateway-card:nth-child(7) .icon-round{background:#d9dfeb;color:#405476}
.gateway-card h3{font:400 15px/1.1 var(--serif);margin:0 0 5px}
.gateway-card p{font-size:10.4px;line-height:1.28;margin:0;color:#40545b}

/* Feature cards */
.feature-grid{display:grid;grid-template-columns:2fr .95fr 1.06fr;gap:16px;margin-top:16px}
.feature-card{
  min-height:168px;border:1px solid #eeeae4;border-radius:8px;background:#fff;
  box-shadow:0 3px 12px rgba(16,45,56,.06);overflow:hidden
}
.feature-card h2,.section-heading h2,.initiatives h2{font:400 21px/1.05 var(--serif);margin:0;color:var(--ink)}
.inspiration{display:grid;grid-template-columns:46% 54%}
.inspiration .image{background:url('/assets/images/faith/02-todays-inspiration-bible.png') center/cover no-repeat;min-height:168px}
.inspiration .copy{padding:18px 18px 15px}
.inspiration blockquote{font:italic 400 19px/1.35 var(--serif);margin:12px 0 0}
.inspiration .verse-ref{font:400 14px/1.3 var(--serif);margin:3px 0 14px}
.next-step{padding:20px 20px 16px;display:flex;gap:14px;align-items:flex-start}
.next-step .badge{
  flex:0 0 54px;width:54px;height:54px;border-radius:50%;
  background:#f5ead4;display:grid;place-items:center;color:var(--gold)
}
.next-step .badge svg{width:30px;height:30px;fill:currentColor}
.next-step .badge svg.cross-icon{fill:none;stroke:currentColor;stroke-width:1.8}
.next-step-kicker{margin:0;font:italic 400 12px/1 var(--serif);color:#68777d}
.next-step-title{font:400 26px/1.05 var(--serif);margin:2px 0 8px;color:var(--ink)}
.next-step p{font-size:13px;line-height:1.35;margin:9px 0 14px;color:#43565c}
.community-card{background:linear-gradient(135deg,#0b535a,#0a4148);color:#fff;border:0;padding:20px;display:flex;gap:14px}
.community-card h2{color:#fff}
.community-card .community-icon{flex:0 0 52px}
.community-card svg{width:50px;height:50px;stroke:#f7e3b0}
.community-card p{font-size:12.5px;line-height:1.4;margin:10px 0 14px}

/* Pathways */
.pathways{padding:18px 0 30px}
.section-heading{display:flex;justify-content:space-between;align-items:end}
.section-heading p{font-size:12px;color:#687b82;margin:5px 0 0}
.section-heading>a{font-size:12px;text-decoration:none}
.pathway-layout{display:grid;grid-template-columns:1fr 285px;gap:14px;margin-top:11px}
.pathway-cards{display:grid;grid-template-columns:repeat(5,1fr);gap:10px}
.pathway-card{border-radius:7px;border:1px solid #ece8e1;background:#fff;overflow:hidden;box-shadow:0 2px 9px rgba(16,45,56,.05);text-decoration:none}
.pathway-card img{width:100%;height:106px;object-fit:cover}
.pathway-card .text{padding:8px 9px 10px}
.pathway-card h3{font:400 14px/1.12 var(--serif);margin:0 0 5px}
.pathway-card p{font-size:10px;line-height:1.25;color:#68777d;margin:0}
.initiatives{border:1px solid #ece8e1;border-radius:8px;background:#fff;padding:13px 14px;box-shadow:0 2px 9px rgba(16,45,56,.05)}
.initiatives h2{font-size:17px;margin-bottom:8px}
.initiatives ul{list-style:none;margin:0;padding:0}
.initiatives li{display:grid;grid-template-columns:28px 1fr;gap:8px;padding:5px 0}
.initiative-icon{
  width:24px;height:24px;border-radius:50%;background:#f7eed6;color:var(--gold);
  display:grid;place-items:center;font-size:12px;font-weight:700
}
.initiatives strong{display:block;font-size:11.5px;line-height:1.15}
.initiatives span{display:block;font-size:9.5px;line-height:1.25;color:#6c7b81;margin-top:2px}

/* Faith banner */
.faith-banner{
  position:relative;color:#fff;background:url('/assets/images/faith/01-hero-mountain-sunrise.png') center 72%/cover no-repeat
}
.faith-banner:before{content:"";position:absolute;inset:0;background:linear-gradient(90deg,rgba(4,51,58,.90),rgba(6,57,64,.82))}
.faith-banner-content{position:relative;min-height:142px;display:flex;align-items:center;justify-content:space-between;gap:35px;padding:24px 0}
.faith-banner h2{font:400 30px/1 var(--serif);margin:0 0 6px}
.faith-banner p{font:400 14px/1.4 var(--serif);margin:0 0 15px}
.banner-values{display:grid;grid-template-columns:repeat(4,1fr);min-width:430px}
.value-item{text-align:center;padding:0 17px;border-left:1px solid rgba(255,255,255,.48)}
.value-item:first-child{border-left:0}
.value-item svg{width:29px;height:29px;stroke:#fff;fill:none;margin:0 auto 5px}
.value-item b{display:block;font:400 13px/1.15 var(--serif)}

/* Footer */
.footer{background:#fff}
.footer-main{
  min-height:110px;display:grid;grid-template-columns:1.05fr 1.1fr 1.4fr .75fr;gap:24px;align-items:center;padding:18px 0
}
.footer .brand-copy strong{font-size:20px}
.footer .brand-mark svg{width:30px}
.footer-links{display:flex;gap:16px;flex-wrap:wrap}
.footer-links a{text-decoration:none;font-size:10px;color:#50636a}
.social{display:flex;gap:10px;margin-top:12px}
.social span{width:18px;height:18px;border-radius:50%;background:#315b68;color:#fff;display:grid;place-items:center;font-size:9px}
.subscribe label{display:block;font-size:10px;font-weight:700;margin-bottom:2px}
.subscribe small{display:block;font-size:9px;color:#64757c;margin-bottom:5px}
.subscribe-row{display:flex}
.subscribe input{flex:1;min-width:0;height:35px;border:1px solid #cfd7d9;border-radius:5px 0 0 5px;padding:0 10px;font-size:10px}
.subscribe button{height:35px;border:0;border-radius:0 5px 5px 0;padding:0 18px;background:var(--gold);color:#fff;font-size:10px;font-weight:700}
.footer-note{text-align:right;font:italic 13px/1.2 Georgia,serif;color:#607883}
.footer-note strong{font-weight:400}
.copyright{font-size:9px;color:#6d7b80;padding:0 0 9px}

/* Subpage hero — a shorter variant of .hero for interior pages
   (Bible Study, Prayer, etc.), reusing the same overlay/typography
   language rather than inventing a second visual system. */
.page-hero{
  position:relative;min-height:220px;display:flex;align-items:center;color:#fff;background-size:cover;background-position:center;overflow:hidden
}
.page-hero:before{content:"";position:absolute;inset:0;background:linear-gradient(90deg,rgba(4,51,58,.88),rgba(6,57,64,.72))}
.page-hero-content{position:relative;padding:36px 0}
.breadcrumb{font-size:11px;letter-spacing:.04em;text-transform:uppercase;opacity:.85;margin:0 0 10px}
.breadcrumb a{text-decoration:none;color:#fff;opacity:.85}
.breadcrumb a:hover{opacity:1;text-decoration:underline}
.page-hero h1{margin:0 0 8px;font:400 clamp(34px,4vw,52px)/1.02 var(--serif)}
.page-hero p{margin:0;max-width:560px;font-size:15px;line-height:1.5;color:rgba(255,255,255,.92)}
.page-hero .cta-row{margin-top:18px}

/* Verse block — full-width devotional callout, distinct from the
   landing page's smaller .inspiration card (this is the whole point
   of the page, not one tile among several). */
.verse-block{background:#fff;border:1px solid #eeeae4;border-radius:10px;box-shadow:0 3px 12px rgba(16,45,56,.06);padding:28px 30px;text-align:center;margin-top:-40px;position:relative;z-index:3}
.verse-block .eyebrow{font-size:11px;font-weight:700;letter-spacing:.08em;text-transform:uppercase;color:var(--gold);margin:0 0 12px}
.verse-block blockquote{margin:0;font:italic 400 26px/1.4 var(--serif);color:var(--ink);max-width:680px;margin-inline:auto}
.verse-block .verse-ref{margin:10px 0 18px;font:400 15px/1.3 var(--serif);color:#5a6d73}

/* Section shell — reusable heading + intro used by every content
   section on interior pages. */
.content-section{padding:34px 0}
.content-section .section-heading{margin-bottom:16px}

/* Plan / tool cards — a plainer, denser cousin of .pathway-card for
   grids that don't need a hero image per item. */
.plan-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.plan-card{border:1px solid #ece8e1;border-radius:8px;background:#fff;padding:20px 20px 18px;box-shadow:0 2px 9px rgba(16,45,56,.05);display:flex;flex-direction:column}
.plan-card .plan-icon{width:42px;height:42px;border-radius:50%;background:#f5ead4;color:var(--gold);display:grid;place-items:center;margin-bottom:12px}
.plan-icon svg{width:22px;height:22px;stroke:currentColor;fill:none}
.plan-card h3{font:400 18px/1.2 var(--serif);margin:0 0 6px}
.plan-card p{font-size:12.5px;line-height:1.5;color:#5a6d73;margin:0 0 16px;flex:1}
.plan-card .btn{align-self:flex-start}

.tool-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.tool-card{border:1px solid #ece8e1;border-radius:8px;background:var(--cream);padding:18px;text-align:center}
.tool-card .plan-icon{margin-inline:auto}
.tool-card h3{font:400 15px/1.2 var(--serif);margin:8px 0 4px}
.tool-card p{font-size:11.5px;line-height:1.4;color:#68777d;margin:0 0 12px}

@media(max-width:850px){
  .plan-grid,.tool-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:620px){
  .plan-grid,.tool-grid{grid-template-columns:1fr}
  .verse-block{padding:22px 18px}
  .verse-block blockquote{font-size:21px}
}

/* Books / Sermons / Podcasts — the library rendered from
   vision.books/sermons/podcasts (admin/faith-admin.html writes these;
   faith/resources.html reads them). Books get the most prominent
   treatment since a featured study guide is meant to read as a
   highlight, not one tile in a row. */
.book-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.book-card{position:relative;border:1px solid #ece8e1;border-radius:10px;background:#fff;overflow:hidden;box-shadow:0 4px 16px rgba(16,45,56,.08);display:flex;flex-direction:column}
.book-card .cover{aspect-ratio:3/4;background:var(--cream) center/cover no-repeat;display:flex;align-items:center;justify-content:center;color:#b9c6c2}
.book-card .cover svg{width:44px;height:44px;stroke:currentColor;fill:none}
.book-card .body{padding:18px 18px 20px;display:flex;flex-direction:column;flex:1}
.book-card .edition{display:inline-block;align-self:flex-start;font-size:10px;font-weight:700;letter-spacing:.05em;text-transform:uppercase;color:var(--gold);background:#f7eed6;border-radius:999px;padding:3px 10px;margin-bottom:8px}
.book-card h3{font:400 19px/1.2 var(--serif);margin:0 0 8px}
.book-card p{font-size:12.5px;line-height:1.55;color:#5a6d73;margin:0 0 16px;flex:1}

/* Save (bookmark) button — appears on any book/sermon/podcast/study
   card once faith/js/faith-auth.js resolves the viewer's session; it
   fetches an existing session-bound Set of saved resource_urls and
   flips buttons matching one to the saved state. Signed-out visitors
   get sent to sign in instead of a silent no-op. */
.save-btn{border:1px solid #d7d2c8;background:#fff;border-radius:50%;width:32px;height:32px;flex:0 0 auto;display:grid;place-items:center;cursor:pointer;color:#8a9a9f;transition:.15s ease}
.save-btn svg{width:16px;height:16px;stroke:currentColor;fill:none;stroke-width:1.8}
.save-btn.saved{border-color:var(--gold);color:var(--gold)}
.save-btn.saved svg{fill:var(--gold)}
.book-card .save-btn{position:absolute;top:14px;right:14px;background:#fff;box-shadow:0 2px 8px rgba(16,45,56,.12)}
.media-row .row-actions{display:flex;align-items:center;gap:10px}
.creed-card .card-actions{display:flex;align-items:center;gap:10px}

.media-list{display:flex;flex-direction:column;gap:12px}
.media-row{display:grid;grid-template-columns:120px 1fr auto;gap:16px;align-items:center;border:1px solid #ece8e1;border-radius:8px;background:#fff;padding:12px;box-shadow:0 2px 9px rgba(16,45,56,.05)}
.media-row .thumb{width:120px;height:76px;border-radius:6px;background:var(--cream) center/cover no-repeat;display:flex;align-items:center;justify-content:center;color:#b9c6c2}
.media-row .thumb svg{width:26px;height:26px;stroke:currentColor;fill:none}
.media-row h3{font:400 16px/1.25 var(--serif);margin:0 0 4px}
.media-row .meta{font-size:11.5px;color:#68777d;margin:0}
.media-row audio{height:32px;width:220px}
.empty-shelf{grid-column:1/-1;text-align:center;padding:32px 20px;color:#8a9a9f;font-size:13px;border:1px dashed #dcd7cd;border-radius:8px}

@media(max-width:850px){
  .book-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:620px){
  .book-grid{grid-template-columns:1fr}
  .media-row{grid-template-columns:1fr;text-align:center}
  .media-row .thumb{width:100%;height:140px;margin:0 auto}
  .media-row audio{width:100%}
}

/* Solid-gradient hero — a photo-free variant of .page-hero for a page
   meant to read as its own special "studies" destination rather than
   another photographed subpage. Reuses .page-hero's layout, just
   without the darkening overlay a photo needs. */
.creed-hero{background:linear-gradient(135deg,var(--teal-deep),var(--teal))}
.creed-hero:before{content:none}

/* Apostles' Creed study cards — each document gets its own accent
   colour lifted from its actual PDF cover (teal/purple/navy), so the
   three feel like distinct, real works rather than generic list items. */
.creed-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.creed-card{border-radius:12px;overflow:hidden;background:#fff;box-shadow:0 6px 24px rgba(16,45,56,.10);display:flex;flex-direction:column}
.creed-card .accent{height:7px}
.creed-card.teal .accent{background:linear-gradient(90deg,#0b4a51,#1a7a84)}
.creed-card.purple .accent{background:linear-gradient(90deg,#7b2d6e,#a8478f)}
.creed-card.navy .accent{background:linear-gradient(90deg,#0c2b37,#1c4a5c)}
.creed-card .body{padding:26px 24px 24px;display:flex;flex-direction:column;flex:1}
.creed-card .icon{width:50px;height:50px;border-radius:50%;display:grid;place-items:center;margin-bottom:16px}
.creed-card .icon svg{width:24px;height:24px;fill:none;stroke:currentColor;stroke-width:1.6}
.creed-card.teal .icon{background:#dbe7e4;color:#1a5b64}
.creed-card.purple .icon{background:#f0dced;color:#7b2d6e}
.creed-card.navy .icon{background:#dde5ea;color:#0c2b37}
.creed-card .edition-tag{display:block;font-size:11px;font-weight:700;letter-spacing:.05em;text-transform:uppercase;margin-bottom:6px}
.creed-card.teal .edition-tag{color:#1a7a84}
.creed-card.purple .edition-tag{color:#a8478f}
.creed-card.navy .edition-tag{color:#1c4a5c}
.creed-card h3{font:400 22px/1.2 var(--serif);margin:0 0 10px}
.creed-card p{font-size:13px;line-height:1.6;color:#5a6d73;margin:0 0 20px;flex:1}
.creed-card .btn{align-self:flex-start}

@media(max-width:850px){
  .creed-grid{grid-template-columns:1fr}
}

/* Member header state — swapped in by faith/js/faith-auth.js once a
   session check resolves, replacing the Sign In / Join the Journey
   pills for a signed-in visitor. Hidden by default so a not-yet-loaded
   session never flashes the wrong state. */
.member-chip{display:none;align-items:center;gap:10px;text-decoration:none;padding:5px 14px 5px 5px;border-radius:999px;border:1px solid var(--line);background:#fff}
.member-chip .avatar{width:28px;height:28px;border-radius:50%;background:var(--teal);color:#fff;display:grid;place-items:center;font:600 12px/1 var(--sans)}
.member-chip span{font-size:13px;font-weight:600;color:var(--ink)}
.signout-btn{display:none;border:0;background:transparent;color:#68777d;font-size:12px;font-weight:600;cursor:pointer;padding:8px 2px}
.mobile-nav .member-row{display:none;align-items:center;gap:10px;padding:12px 0;border-bottom:1px solid #f0eee9}
.mobile-nav .member-row .avatar{width:32px;height:32px;border-radius:50%;background:var(--teal);color:#fff;display:grid;place-items:center;font:600 13px/1 var(--sans);flex:0 0 auto}
.mobile-nav .member-row div{flex:1}
.mobile-nav .member-row strong{display:block;font-size:13px}
.mobile-nav .member-row button{border:0;background:transparent;color:var(--rose);font-size:11px;font-weight:700;padding:0;cursor:pointer}

/* Auth pages — join.html / login.html. Its own quiet moment rather than
   a page-hero: a signup/signin form is a task, not a destination, so it
   gets a calm centered card instead of the marketing-page treatment. */
.auth-shell{min-height:calc(100vh - 72px);display:flex;align-items:center;justify-content:center;padding:48px 20px;background:linear-gradient(180deg,var(--cream),var(--paper))}
.auth-card{width:100%;max-width:420px;background:#fff;border:1px solid var(--line);border-radius:14px;box-shadow:var(--shadow);padding:36px 34px 32px}
.auth-card .eyebrow{font-size:11px;font-weight:700;letter-spacing:.08em;text-transform:uppercase;color:var(--gold);margin:0 0 10px}
.auth-card h1{font:400 30px/1.1 var(--serif);margin:0 0 8px;color:var(--ink)}
.auth-card .sub{font-size:13.5px;line-height:1.5;color:#5a6d73;margin:0 0 24px}
.field{margin-bottom:16px}
.field label{display:block;font-size:12px;font-weight:600;color:var(--ink);margin-bottom:6px}
.field input,.field textarea{width:100%;border:1px solid #d7d2c8;border-radius:8px;padding:11px 13px;font-size:14px;font-family:var(--sans);background:#fff}
.field input:focus,.field textarea:focus{outline:none;border-color:var(--gold)}
.field textarea{resize:vertical;min-height:90px}
.auth-submit{width:100%;border:0;border-radius:999px;min-height:44px;background:linear-gradient(180deg,var(--gold-2),var(--gold));color:#fff;font-size:14px;font-weight:700;cursor:pointer;margin-top:4px}
.auth-submit:disabled{opacity:.65;cursor:default}
.auth-msg{display:none;font-size:12.5px;line-height:1.5;padding:10px 13px;border-radius:8px;margin-bottom:16px}
.auth-msg.show.error{display:block;background:#fbe9e7;color:#9b3a2f}
.auth-msg.show.success{display:block;background:#e7f1e4;color:#33622e}
.auth-switch{margin-top:22px;text-align:center;font-size:13px;color:#5a6d73}
.auth-switch a{color:var(--teal);font-weight:600;text-decoration:none}
.auth-switch a:hover{text-decoration:underline}

/* Member dashboard — My Faith */
.dash-hero{background:linear-gradient(135deg,var(--teal-deep),var(--teal));color:#fff;padding:44px 0}
.dash-hero .wrap p.eyebrow{color:#f3d896;font-size:11px;font-weight:700;letter-spacing:.08em;text-transform:uppercase;margin:0 0 8px}
.dash-hero h1{margin:0 0 6px;font:400 clamp(28px,3.4vw,40px)/1.05 var(--serif)}
.dash-hero p{margin:0;max-width:520px;font-size:14px;line-height:1.5;color:rgba(255,255,255,.88)}
.dash-grid{display:grid;grid-template-columns:1.3fr 1fr;gap:22px;align-items:start}
.dash-panel{border:1px solid #ece8e1;border-radius:10px;background:#fff;box-shadow:0 3px 12px rgba(16,45,56,.06);padding:24px 24px 22px}
.dash-panel h2{font:400 20px/1.1 var(--serif);margin:0 0 4px}
.dash-panel .panel-sub{font-size:12.5px;color:#68777d;margin:0 0 18px}
.prayer-list{display:flex;flex-direction:column;gap:12px}
.prayer-item{border:1px solid #ece8e1;border-radius:8px;padding:14px 16px;background:var(--cream)}
.prayer-item p{margin:0 0 10px;font-size:13.5px;line-height:1.55;color:var(--ink)}
.prayer-item .meta{display:flex;align-items:center;justify-content:space-between;gap:10px}
.prayer-item time{font-size:11px;color:#7a8a8f}
.pill{display:inline-flex;align-items:center;gap:5px;font-size:11px;font-weight:700;letter-spacing:.03em;text-transform:uppercase;border-radius:999px;padding:3px 10px}
.pill-waiting{background:#f7eed6;color:var(--gold)}
.pill-answered{background:#e2ede0;color:#3f6b3a}
.prayer-item .actions{display:flex;gap:14px}
.prayer-item .actions button{border:0;background:transparent;font-size:11.5px;font-weight:700;cursor:pointer;padding:0}
.prayer-item .actions .mark-answered{color:#3f6b3a}
.prayer-item .actions .remove{color:#a34b40}
.quick-link-card{border:1px solid #ece8e1;border-radius:10px;background:#fff;box-shadow:0 3px 12px rgba(16,45,56,.06);padding:22px;display:flex;flex-direction:column;gap:10px}
.quick-link-card h3{font:400 17px/1.2 var(--serif);margin:0}
.quick-link-card p{font-size:12.5px;line-height:1.5;color:#5a6d73;margin:0}

@media(max-width:850px){
  .dash-grid{grid-template-columns:1fr}
}

/* Accessibility */
:focus-visible{outline:3px solid rgba(199,145,34,.55);outline-offset:3px}

/* Tablet */
@media(max-width:1120px){
  .nav{display:none}
  .menu-btn{display:grid}
  .gateway{grid-template-columns:repeat(4,1fr)}
  .gateway-card{min-height:145px}
  .pathway-layout{grid-template-columns:1fr}
  .initiatives{display:none}
  .hero-quote{margin-right:0}
  .footer-main{grid-template-columns:1fr 1fr}
}
@media(max-width:850px){
  .site-header{height:66px;padding-inline:14px}
  .header-actions .signin{display:none}
  .hero{min-height:525px;background-position:58% center}
  .hero:before{background:linear-gradient(180deg,rgba(250,246,237,.92) 0%,rgba(250,246,237,.76) 46%,rgba(7,45,54,.26) 100%)}
  .hero-content{padding:48px 0 90px;flex-direction:column;align-items:flex-start}
  .hero-copy{max-width:620px}
  .hero-quote{max-width:530px;text-align:left}
  .hero-quote .rule{margin-left:0}
  .feature-grid{grid-template-columns:1fr 1fr}
  .inspiration{grid-column:1/-1}
  .pathway-cards{overflow-x:auto;display:flex;padding-bottom:8px;scroll-snap-type:x proximity}
  .pathway-card{min-width:220px;scroll-snap-align:start}
  .faith-banner-content{flex-direction:column;align-items:flex-start}
  .banner-values{width:100%;min-width:0}
}
@media(max-width:620px){
  .wrap{width:min(100% - 24px,1180px)}
  .site-header .join{display:none}
  .site-header .member-chip,.site-header .signout-btn{display:none!important}
  .brand-copy strong{font-size:20px}
  .hero{min-height:570px;background-position:65% center}
  .hero-content{padding-top:40px}
  .hero h1{font-size:56px}
  .hero-kicker{font-size:25px}
  .hero-copy .intro{font-size:14px}
  .hero-quote blockquote{font-size:23px}
  .hero-quote .motto{font-size:10px;white-space:normal}
  .gateway{grid-template-columns:repeat(2,1fr);margin-top:-58px}
  .gateway-card{min-height:140px}
  .feature-grid{grid-template-columns:1fr}
  .inspiration{grid-template-columns:1fr}
  .inspiration .image{min-height:210px}
  .next-step,.community-card{min-height:150px}
  .banner-values{grid-template-columns:repeat(2,1fr);gap:22px 0}
  .value-item:nth-child(3){border-left:0}
  .footer-main{grid-template-columns:1fr}
  .footer-note{text-align:left}
}
@media(max-width:390px){
  .hero h1{font-size:49px}
  .hero-kicker{font-size:22px}
  .gateway-card h3{font-size:14px}
  .cta-row{width:100%}
  .cta-row .btn{flex:1}
}
