/* ATOM design system, wishon design language (DM Sans + Merriweather), ministry wine+gold rebrand. */
:root {
  --bg: #faf7f2; --bg-soft: #f4ede2; --ink: #2a2320; --muted: #6f6459; --line: #ece2d3;
  --wine: #6d1a2e; --wine-dark: #4f1120; --gold: #c19a3e; --gold-soft: #dcc07f;
  --card: #ffffff; --card-line: #efe6d8;
  --accent: #6d1a2e; /* alias of --wine for older markup */
  --serif: 'Merriweather', Georgia, 'Times New Roman', serif;
  --sans: 'DM Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --radius: 16px; --shadow: 0 10px 30px rgba(58, 34, 20, 0.07); --shadow-hover: 0 18px 44px rgba(58, 34, 20, 0.13);
  --maxw: 1180px;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--ink); font-family: var(--sans); font-size: 18px; line-height: 1.7; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--wine); text-decoration: none; transition: color .18s ease; }
a:hover { color: var(--gold); }
h1, h2, h3, h4, h5 { font-family: var(--serif); color: var(--ink); line-height: 1.25; font-weight: 700; margin: 0 0 .5em; }
p { margin: 0 0 1.1em; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.reading { max-width: 760px; }
.kicker { text-transform: uppercase; letter-spacing: .17em; font-size: 12px; font-weight: 700; color: var(--gold); margin: 0 0 12px; }
.eyebrow-rule { display: inline-flex; align-items: center; gap: 10px; }
.eyebrow-rule::before { content: ''; width: 26px; height: 2px; background: var(--gold); }

/* buttons */
.btn { display: inline-flex; align-items: center; gap: 9px; background: var(--wine); color: #fff; padding: 13px 26px; border-radius: 999px; font-weight: 600; font-size: 15px; border: 1px solid var(--wine); transition: all .2s ease; cursor: pointer; }
.btn:hover { background: var(--wine-dark); color: #fff; box-shadow: 0 10px 24px rgba(109, 26, 46, .28); transform: translateY(-1px); }
.btn.ghost { background: transparent; color: var(--wine); }
.btn.ghost:hover { background: var(--wine); color: #fff; }
.btn.gold { background: var(--gold); border-color: var(--gold); color: #2a2320; }
.btn.gold:hover { background: #9c7430; color: #fff; }

/* sections */
.section { padding: 56px 0; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 28px; }
.section-head h2 { font-size: clamp(24px, 3.2vw, 33px); margin: 0; }
.section-head a { font-size: 15px; font-weight: 600; white-space: nowrap; }

/* hero */
.hero { text-align: center; padding: 74px 0 40px; position: relative; }
.hero h1 { font-size: clamp(32px, 5.4vw, 54px); margin: 6px 0 16px; letter-spacing: -0.01em; }
.hero .lead { color: var(--muted); font-size: 19px; max-width: 640px; margin: 0 auto 26px; }
.hero .cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* cards / grid */
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 22px; }
.card { background: var(--card); border: 1px solid var(--card-line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); transition: transform .2s ease, box-shadow .2s ease; display: flex; flex-direction: column; gap: 10px; height: 100%; }
a .card:hover, .card.link:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.card h3 { font-size: 21px; margin: 0; }
.card .meta, .meta { color: var(--muted); font-size: 13px; font-weight: 500; letter-spacing: .01em; }
.card p { margin: 0; color: #4c4239; font-size: 15.5px; }
.card .meta i { color: var(--gold); margin-right: 5px; }
.tag-dot { color: var(--gold); }

/* news/magazine blog card (image + date badge + overlapping body) */
.news-card { position: relative; }
.news-card__media { position: relative; display: block; }
.news-card__img { border-radius: 14px; overflow: hidden; aspect-ratio: 3 / 2; display: block; }
.news-card__img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .55s ease; }
.news-card:hover .news-card__img img { transform: scale(1.06); }
.news-card__date { position: absolute; right: 16px; bottom: -16px; z-index: 3; background: var(--wine); color: #fff; border-radius: 12px; padding: 9px 13px; text-align: center; line-height: 1.05; box-shadow: 0 8px 18px rgba(109,26,46,.28); }
.news-card__date strong { font-family: var(--serif); font-size: 19px; display: block; }
.news-card__date span { font-size: 10.5px; text-transform: uppercase; letter-spacing: .08em; }
.news-card__body { background: #fff; border: 1px solid var(--card-line); border-radius: 14px; margin: -30px 16px 0; position: relative; z-index: 2; padding: 22px; box-shadow: var(--shadow); }
.news-card__meta { display: flex; gap: 18px; flex-wrap: wrap; color: var(--muted); font-size: 13px; margin-bottom: 10px; }
.news-card__meta i { color: var(--gold); margin-right: 6px; }
.news-card__title { font-size: 20px; line-height: 1.3; margin: 0 0 14px; }
.news-card__title a { color: var(--ink); }
.news-card__title a:hover { color: var(--wine); }
.news-card__more { border-top: 1px solid var(--line); padding-top: 14px; font-weight: 600; font-size: 12.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--wine); display: inline-flex; align-items: center; gap: 8px; }
.news-card__more i { transition: transform .2s ease; }
.news-card:hover .news-card__more i { transform: translateX(4px); }

/* sliding devotional feed (wishon Events style: left head + dots, right slider, dotted bg) */
.dev-feed { background: var(--bg-soft); position: relative; overflow: hidden; }
.dev-feed::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(109,26,46,.12) 1.5px, transparent 1.5px); background-size: 24px 24px; opacity: .55; pointer-events: none; }
.dev-feed__inner { position: relative; z-index: 2; display: grid; grid-template-columns: .82fr 2.18fr; gap: 42px; align-items: center; }
.dev-feed__head .kicker { color: var(--gold); }
.dev-feed__head h2 { font-size: clamp(28px, 3.6vw, 42px); margin: 6px 0 12px; }
.dev-feed__head p { color: var(--muted); margin-bottom: 18px; }
.dev-feed__slider { overflow: hidden; min-width: 0; }
.dev-swiper .swiper-slide { height: auto; padding-bottom: 10px; }
.dev-swiper__dots { display: flex; gap: 8px; margin-top: 26px; }
.dev-swiper__dots .swiper-pagination-bullet { width: 10px; height: 10px; background: var(--wine); opacity: .28; border-radius: 50%; transition: all .2s; cursor: pointer; }
.dev-swiper__dots .swiper-pagination-bullet-active { opacity: 1; width: 26px; border-radius: 6px; }
@media (max-width: 860px) { .dev-feed__inner { grid-template-columns: 1fr; gap: 22px; } }

/* about / what-we-do (image + stat badge + feature blocks) */
.about-home { background: #fff; }
.about-home__inner { display: grid; grid-template-columns: 1fr 1.12fr; gap: 48px; align-items: center; }
.about-home__media { position: relative; }
.about-home__media img { border-radius: 20px; width: 100%; object-fit: cover; object-position: center top; aspect-ratio: 4 / 5; box-shadow: var(--shadow); }
.about-home__badge { position: absolute; left: -12px; bottom: 26px; background: var(--wine); color: #fff; border-radius: 16px; padding: 15px 20px; box-shadow: var(--shadow-hover); }
.about-home__badge strong { font-family: var(--serif); font-size: 19px; display: block; line-height: 1.15; }
.about-home__badge span { font-size: 11.5px; text-transform: uppercase; letter-spacing: .1em; color: var(--gold-soft); }
.about-home__text h2 { font-size: clamp(26px, 3.4vw, 38px); margin: 8px 0 12px; }
.about-home__feat { display: flex; flex-direction: column; gap: 18px; margin: 24px 0; }
.feat-item { display: flex; gap: 16px; align-items: flex-start; }
.feat-item__icon { width: 54px; height: 54px; flex: 0 0 auto; border-radius: 50%; background: var(--bg-soft); color: var(--wine); display: flex; align-items: center; justify-content: center; font-size: 21px; }
.feat-item h4 { margin: 3px 0 4px; font-size: 18px; }
.feat-item p { margin: 0; color: var(--muted); font-size: 15px; }
@media (max-width: 860px) { .about-home__inner { grid-template-columns: 1fr; gap: 30px; } .about-home__media img { aspect-ratio: 4 / 3; } }

/* partnership + forms */
.partner-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; align-items: start; }
.partner-form { display: flex; flex-direction: column; gap: 16px; margin-top: 18px; }
.partner-form label { display: flex; flex-direction: column; gap: 6px; font-size: 14px; font-weight: 600; color: var(--ink); }
.partner-form input, .partner-form select, .partner-form textarea { font: inherit; font-size: 15px; font-weight: 400; padding: 12px 14px; border: 1px solid var(--card-line); border-radius: 10px; background: #fff; color: var(--ink); }
.partner-form input:focus, .partner-form select:focus, .partner-form textarea:focus { outline: none; border-color: var(--wine); box-shadow: 0 0 0 3px rgba(109,26,46,.12); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.partner-form button { align-self: flex-start; margin-top: 6px; }
.partner-aside { display: flex; flex-direction: column; gap: 18px; }
.bank-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.bank-list li { display: flex; justify-content: space-between; gap: 12px; border-bottom: 1px solid var(--line); padding-bottom: 10px; }
.bank-list span { color: var(--muted); font-size: 14px; }
.bank-list strong { font-family: var(--serif); text-align: right; }
.form-ok { background: #e8f5e9; border: 1px solid #a5d6a7; color: #2e7d32; padding: 14px 16px; border-radius: 10px; margin: 16px 0; }
.form-err { background: #fdecea; border: 1px solid #f5c6c0; color: #b3261e; padding: 14px 16px; border-radius: 10px; margin: 16px 0; }
@media (max-width: 820px) { .partner-grid { grid-template-columns: 1fr; gap: 28px; } .field-row { grid-template-columns: 1fr; } }

/* overlay slide card (wishon Events style) for the home devotional slider */
.slide-card { position: relative; display: block; border-radius: 16px; overflow: hidden; aspect-ratio: 3 / 4; background: #241a15; }
.slide-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.slide-card:hover img { transform: scale(1.07); }
.slide-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(28,12,18,.92) 0%, rgba(28,12,18,.4) 46%, rgba(28,12,18,0) 72%); }
.slide-card__date { position: absolute; top: 14px; right: 14px; z-index: 2; background: var(--wine); color: #fff; border-radius: 10px; padding: 8px 11px; text-align: center; line-height: 1.05; box-shadow: 0 6px 14px rgba(0,0,0,.3); }
.slide-card__date strong { font-family: var(--serif); font-size: 18px; display: block; }
.slide-card__date span { font-size: 10px; text-transform: uppercase; letter-spacing: .06em; }
.slide-card__body { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 22px 20px; }
.slide-card__meta { font-size: 12.5px; color: var(--gold-soft); margin-bottom: 8px; display: flex; gap: 14px; }
.slide-card__meta i { margin-right: 5px; }
.slide-card__title { font-family: var(--serif); font-size: 19px; line-height: 1.32; margin: 0; color: #fff; transition: color .2s ease; }
.slide-card:hover .slide-card__title { color: var(--gold-soft); }

/* books */
.books-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 32px; }
.book-card { background: #fff; border: 1px solid var(--card-line); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column; transition: transform .2s ease, box-shadow .2s ease; }
.book-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.book-card__cover img { width: 100%; height: auto; display: block; }
.book-card__body { padding: 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.book-card__tag { font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--gold); font-weight: 700; }
.book-card__body h3 { margin: 0; font-size: 21px; }
.book-card__body p { margin: 0; color: var(--muted); font-size: 15px; flex: 1; }
.book-card__buy { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 6px; }
.book-card__buy .btn { padding: 10px 16px; font-size: 13px; }
@media (max-width: 520px) { .books-grid { grid-template-columns: 1fr; } }

/* testimonials */
.testi-sec { background: var(--bg-soft); position: relative; overflow: hidden; }
.testi-sec::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(109,26,46,.10) 1.5px, transparent 1.5px); background-size: 24px 24px; opacity: .5; pointer-events: none; }
.testi-sec .wrap { position: relative; z-index: 2; }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; margin-top: 26px; }
.testi { background: #fff; border: 1px solid var(--card-line); border-radius: 16px; padding: 26px; box-shadow: var(--shadow); }
.testi__quote { color: var(--gold); font-size: 40px; line-height: .8; font-family: var(--serif); height: 22px; }
.testi p { font-style: italic; color: #4c4239; margin: 10px 0 18px; font-size: 15.5px; }
.testi__who { display: flex; align-items: center; gap: 12px; }
.testi__avatar { width: 44px; height: 44px; flex: 0 0 auto; border-radius: 50%; background: var(--wine); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-weight: 700; font-size: 15px; }
.testi__who strong { font-family: var(--serif); font-size: 16px; }
.testi__who span { display: block; color: var(--muted); font-size: 13px; }

/* testimonial slider (speech bubble + avatar, auto-sliding) */
.testi-swiper { overflow: hidden; padding-bottom: 4px; }
.testi-swiper .swiper-slide { height: auto; }
.testi-card { padding: 8px 6px; }
.testi-card__bubble { background: #fff; border: 1px solid var(--card-line); border-radius: 18px; padding: 26px 28px; box-shadow: var(--shadow); position: relative; margin-bottom: 22px; }
.testi-card__bubble::after { content: ''; position: absolute; left: 40px; bottom: -11px; width: 20px; height: 20px; background: #fff; border-right: 1px solid var(--card-line); border-bottom: 1px solid var(--card-line); transform: rotate(45deg); }
.testi-card__quote { color: var(--gold); font-size: 24px; margin-bottom: 12px; display: block; }
.testi-card__bubble p { margin: 0; color: #4c4239; font-style: italic; font-size: 15.5px; line-height: 1.75; }
.testi-card__who { display: flex; align-items: center; gap: 14px; padding-left: 12px; }
.testi-card__avatar { width: 52px; height: 52px; flex: 0 0 auto; border-radius: 50%; background: var(--wine); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-weight: 700; font-size: 17px; box-shadow: var(--shadow); }
.testi-card__who strong { font-family: var(--serif); font-size: 16px; display: block; color: var(--ink); }
.testi-card__who span { color: var(--muted); font-size: 13px; }
.testi-swiper__dots { display: flex; justify-content: center; gap: 8px; margin-top: 22px; }
.testi-swiper__dots .swiper-pagination-bullet { width: 10px; height: 10px; background: var(--wine); opacity: .28; border-radius: 50%; transition: all .2s; cursor: pointer; }
.testi-swiper__dots .swiper-pagination-bullet-active { opacity: 1; width: 26px; border-radius: 6px; }

/* compass page: current-month feature + styled cover + year-filtered archive */
.compass-feature { display: grid; grid-template-columns: .8fr 1.2fr; gap: 44px; align-items: center; position: relative; }
.compass-feature::before { content: ''; position: absolute; inset: -20px 0; background-image: radial-gradient(rgba(109,26,46,.10) 1.4px, transparent 1.4px); background-size: 24px 24px; opacity: .4; pointer-events: none; }
.compass-feature__deco { position: absolute; right: 0; top: 50%; transform: translate(22%, -50%); font-size: 300px; line-height: 1; color: var(--wine); opacity: .05; pointer-events: none; z-index: 0; }
.compass-feature .compass-cover, .compass-feature .compass-feature__text { position: relative; z-index: 1; }
.compass-cover { aspect-ratio: 3 / 4; border-radius: 16px; background: linear-gradient(150deg, var(--wine), var(--wine-dark)); color: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; padding: 30px; box-shadow: var(--shadow-hover); position: relative; overflow: hidden; text-align: center; max-width: 320px; }
.compass-cover::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.5) 1px, transparent 1px); background-size: 18px 18px; opacity: .06; }
.compass-cover > * { position: relative; z-index: 1; }
.compass-cover__label { text-transform: uppercase; letter-spacing: .3em; font-size: 12px; color: var(--gold-soft); }
.compass-cover__icon { font-size: 52px; color: var(--gold-soft); margin: 12px 0; }
.compass-cover__month { font-family: var(--serif); font-size: 34px; line-height: 1; }
.compass-cover__year { font-family: var(--serif); font-size: 20px; color: var(--gold-soft); }
.compass-cover__tag { margin-top: 16px; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.72); border-top: 1px solid rgba(255,255,255,.2); padding-top: 12px; }
.compass-feature__text h2 { font-size: clamp(28px, 4vw, 44px); margin: 6px 0 12px; }
.subscribe-inline { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; max-width: 460px; }
.subscribe-inline input[type="email"] { flex: 1; min-width: 200px; padding: 12px 16px; border-radius: 999px; border: 1px solid var(--card-line); font: inherit; font-size: 15px; }
.compass-archive__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 22px; flex-wrap: wrap; }
.year-select { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--muted); }
.year-select select { font: inherit; font-size: 15px; font-weight: 600; color: var(--ink); padding: 10px 14px; border: 1px solid var(--card-line); border-radius: 10px; background: #fff; cursor: pointer; }
.compass-issues { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 14px; }
.compass-issue { display: flex; align-items: center; gap: 12px; background: #fff; border: 1px solid var(--card-line); border-radius: 12px; padding: 13px 16px; box-shadow: var(--shadow); color: inherit; transition: transform .18s ease, box-shadow .18s ease; }
.compass-issue:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); color: inherit; }
.compass-issue__icon { width: 40px; height: 40px; flex: 0 0 auto; border-radius: 10px; background: var(--bg-soft); color: var(--wine); display: flex; align-items: center; justify-content: center; font-size: 17px; }
.compass-issue__meta { flex: 1; display: flex; flex-direction: column; line-height: 1.15; }
.compass-issue__meta strong { font-family: var(--serif); font-size: 15px; }
.compass-issue__meta span { color: var(--muted); font-size: 12px; }
.compass-issue__dl { color: var(--gold); font-size: 13px; }
@media (max-width: 820px) {
  .compass-feature { grid-template-columns: 1fr; gap: 26px; }
  .compass-cover { max-width: none; width: 100%; aspect-ratio: auto; min-height: 200px; padding: 30px 24px; }
  .compass-cover__icon { font-size: 40px; margin: 6px 0; }
}

/* ATOM 11 training-school section (home) */
.atom11-sec__inner { display: grid; grid-template-columns: .8fr 1.2fr; gap: 44px; align-items: center; }
.atom11-panel { aspect-ratio: 3 / 4; border-radius: 16px; background: linear-gradient(150deg, var(--wine), var(--wine-dark)); color: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; padding: 30px; box-shadow: var(--shadow-hover); position: relative; overflow: hidden; text-align: center; max-width: 320px; }
.atom11-panel::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.5) 1px, transparent 1px); background-size: 18px 18px; opacity: .06; }
.atom11-panel > * { position: relative; z-index: 1; }
.atom11-panel__label { text-transform: uppercase; letter-spacing: .3em; font-size: 12px; color: var(--gold-soft); }
.atom11-panel__icon { font-size: 50px; color: var(--gold-soft); margin: 14px 0 6px; }
.atom11-panel__pillars { display: flex; flex-direction: column; gap: 4px; font-family: var(--serif); font-size: 22px; line-height: 1.15; }
.atom11-panel__tag { margin-top: 16px; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.72); border-top: 1px solid rgba(255,255,255,.2); padding-top: 12px; }
.atom11-sec__text h2 { font-size: clamp(26px, 3.6vw, 40px); margin: 6px 0 12px; }
.atom11-sec__list { list-style: none; margin: 18px 0 24px; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.atom11-sec__list li { display: flex; gap: 10px; align-items: flex-start; color: #4c4239; font-size: 15.5px; }
.atom11-sec__list i { color: var(--gold); margin-top: 4px; }
@media (max-width: 820px) { .atom11-sec__inner { grid-template-columns: 1fr; gap: 28px; } .atom11-panel { max-width: none; width: 100%; aspect-ratio: auto; min-height: 220px; } }

/* comments */
.post-comments { margin-top: 44px; border-top: 1px solid var(--line); padding-top: 32px; }
.post-comments > h2 { font-size: 24px; margin-bottom: 20px; }
.comment-list { display: flex; flex-direction: column; gap: 22px; margin-bottom: 34px; }
.comment { display: flex; gap: 14px; }
.comment--reply { margin-top: 18px; margin-left: 6px; }
.comment__avatar { width: 44px; height: 44px; flex: 0 0 auto; border-radius: 50%; background: var(--wine); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-weight: 700; font-size: 15px; }
.comment__main { flex: 1; min-width: 0; }
.comment__head { display: flex; align-items: baseline; gap: 12px; margin-bottom: 4px; }
.comment__head strong { font-family: var(--serif); font-size: 16px; }
.comment__head span { color: var(--muted); font-size: 12.5px; }
.comment__main p { margin: 0 0 6px; color: #4c4239; }
.comment__reply { background: none; border: 0; color: var(--wine); font-weight: 600; font-size: 13px; cursor: pointer; padding: 0; }
.comment__reply:hover { color: var(--gold); }
.comment-form-wrap { background: var(--bg-soft); border: 1px solid var(--card-line); border-radius: 16px; padding: 26px; }
.comment-form-wrap h3 { margin: 0 0 6px; font-size: 20px; }
.comment-form { display: flex; flex-direction: column; gap: 14px; margin-top: 12px; }
.comment-form input, .comment-form textarea { font: inherit; font-size: 15px; padding: 12px 14px; border: 1px solid var(--card-line); border-radius: 10px; background: #fff; }
.comment-form input:focus, .comment-form textarea:focus { outline: none; border-color: var(--wine); box-shadow: 0 0 0 3px rgba(109,26,46,.12); }
.comment-form .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.comment-form button { align-self: flex-start; }
.comment-form .hp { position: absolute; left: -9999px; width: 1px; height: 1px; }

/* what-we-offer strip (separates the two photo sections) */
.offer-strip { padding-top: 46px; padding-bottom: 24px; background: #fff; }
.offer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.offer-card { display: flex; flex-direction: column; gap: 8px; background: #f8eef0; border: 1px solid #eedce1; border-radius: 16px; padding: 24px; box-shadow: 0 8px 24px rgba(58,34,20,.05); color: inherit; transition: transform .2s ease, box-shadow .2s ease; }
.offer-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.offer-card__icon { width: 52px; height: 52px; border-radius: 14px; background: var(--wine); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 21px; margin-bottom: 6px; }
.offer-card h3 { font-size: 18px; margin: 0; }
.offer-card p { margin: 0; color: var(--muted); font-size: 14px; flex: 1; }
.offer-card__go { color: var(--wine); font-weight: 600; font-size: 13px; }
.about-home__quote { font-family: var(--serif); font-style: italic; font-size: 19px; color: var(--wine); border-left: 3px solid var(--gold); padding-left: 18px; margin: 20px 0; }

/* compass CTA band (home): full-bleed wine, wishon cta style */
.compass-cta { background: linear-gradient(120deg, var(--wine) 0%, var(--wine-dark) 80%); color: #fff; position: relative; overflow: hidden; }
.compass-cta::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.5) 1.1px, transparent 1.1px); background-size: 22px 22px; opacity: .06; }
.compass-cta::after { content: ''; position: absolute; right: -70px; bottom: -90px; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(199,154,62,.25), transparent 66%); pointer-events: none; }
.compass-cta__inner { position: relative; z-index: 2; display: flex; align-items: center; gap: 30px; }
.compass-cta__icon { width: 84px; height: 84px; flex: 0 0 auto; border-radius: 50%; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); color: var(--gold-soft); display: flex; align-items: center; justify-content: center; font-size: 36px; }
.compass-cta__text { flex: 1; }
.compass-cta__text .kicker { color: var(--gold-soft); margin-bottom: 6px; }
.compass-cta__text h2 { color: #fff; font-size: clamp(24px, 3.2vw, 34px); margin: 0 0 8px; }
.compass-cta__text p { color: rgba(255,255,255,.85); margin: 0; max-width: 62ch; }
.compass-cta__btn { flex: 0 0 auto; white-space: nowrap; }
@media (max-width: 820px) {
  .compass-cta__inner { flex-direction: column; text-align: center; gap: 18px; }
  .compass-cta__icon { width: 68px; height: 68px; font-size: 28px; }
}

/* feature card buttons keep natural width (grid children stretch by default) */
.feature .btn { justify-self: start; align-self: flex-start; width: auto; }

/* join the community band (WhatsApp + Telegram) */
.community-band { background: linear-gradient(135deg, var(--wine), var(--wine-dark)); color: #fff; position: relative; overflow: hidden; }
.community-band::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.5) 1.1px, transparent 1.1px); background-size: 22px 22px; opacity: .06; }
.community-band__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.5fr 1fr; gap: 34px; align-items: center; }
.community-band h2 { color: #fff; font-size: clamp(24px, 3.2vw, 34px); margin: 6px 0 10px; }
.community-band p { color: rgba(255,255,255,.85); margin: 0; }
.community-band__btns { display: flex; flex-direction: column; gap: 12px; }
.community-wa { background: #25D366; border-color: #25D366; color: #fff; justify-content: center; }
.community-wa:hover { background: #1ebe5a; border-color: #1ebe5a; color: #fff; }
.community-tg { background: #229ED9; border-color: #229ED9; color: #fff; justify-content: center; }
.community-tg:hover { background: #1b8bc0; border-color: #1b8bc0; color: #fff; }
@media (max-width: 760px) { .community-band__inner { grid-template-columns: 1fr; gap: 20px; } }
@media (max-width: 900px) { .offer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .offer-grid { grid-template-columns: 1fr; } }
.reply-notice { font-size: 14px; color: var(--muted); }
.reply-cancel { background: none; border: 0; color: var(--wine); cursor: pointer; font-weight: 600; }
@media (max-width: 560px) { .comment-form .field-row { grid-template-columns: 1fr; } }

/* featured devotional */
.feature { display: grid; grid-template-columns: 1fr; gap: 0; background: linear-gradient(135deg, var(--wine), var(--wine-dark)); color: #fff; border-radius: 20px; padding: 40px; position: relative; overflow: hidden; }
.feature::after { content: '\201D'; position: absolute; right: 24px; top: -10px; font-family: var(--serif); font-size: 190px; color: rgba(255,255,255,.07); line-height: 1; }
.feature .kicker { color: var(--gold-soft); }
.feature h2 { color: #fff; font-size: clamp(26px, 3.6vw, 38px); margin: 8px 0 12px; max-width: 18ch; }
.feature p { color: rgba(255,255,255,.85); max-width: 60ch; }
.feature .meta { color: var(--gold-soft); }

/* article */
article.post { padding-top: 26px; }
article.post .post-head { text-align: center; margin-bottom: 30px; }
article.post h1 { font-size: clamp(28px, 4.4vw, 44px); margin: 10px 0 12px; }
article.post .body { font-size: 19.5px; line-height: 1.85; }
article.post .body p { margin: 0 0 1.15em; }
article.post .body img { border-radius: 12px; margin: 1.4em auto; box-shadow: var(--shadow); }
article.post .body h2, article.post .body h3 { margin-top: 1.4em; }
article.post .body blockquote { border-left: 4px solid var(--gold); background: var(--bg-soft); margin: 1.4em 0; padding: 14px 22px; border-radius: 0 10px 10px 0; font-style: italic; }
article.post .body a { text-decoration: underline; text-decoration-color: var(--gold-soft); }

/* pager / prev-next */
.pager { display: flex; justify-content: space-between; gap: 14px; margin: 40px 0 8px; }
.pager .btn { max-width: 46%; }

.lead { color: var(--muted); font-size: 19px; }

/* post share + prev/next */
.share-row { display: flex; align-items: center; gap: 10px; margin: 32px 0; }
.share-btn { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: #fff; border: 1px solid var(--card-line); color: var(--wine); font-size: 15px; cursor: pointer; transition: all .18s ease; }
.share-btn:hover { background: var(--wine); color: #fff; transform: translateY(-2px); }
.share-btn.wa:hover { background: #25D366; border-color: #25D366; }
.share-btn.copied { background: var(--gold); color: #fff; border-color: var(--gold); }
.post-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 36px 0 8px; }
.post-nav__card { background: var(--card); border: 1px solid var(--card-line); border-radius: var(--radius); padding: 18px 20px; display: flex; flex-direction: column; gap: 6px; box-shadow: var(--shadow); transition: transform .2s ease, box-shadow .2s ease; }
.post-nav__card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.post-nav__card strong { font-family: var(--serif); font-size: 16px; color: var(--ink); line-height: 1.3; }
.post-nav__card.is-next { text-align: right; }
@media (max-width: 640px) { .post-nav { grid-template-columns: 1fr; } .post-nav__card.is-next { text-align: left; } }

/* archive controls (keeps the big archive tidy, not a wall) */
.archive-tools { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: space-between; margin-bottom: 26px; }
.search-box { display: flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--card-line); border-radius: 999px; padding: 8px 16px; box-shadow: var(--shadow); flex: 1; min-width: 240px; max-width: 420px; }
.search-box input { border: 0; outline: 0; font: inherit; font-size: 15px; width: 100%; background: transparent; color: var(--ink); }
.search-box i { color: var(--gold); }
.year-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { font-size: 13px; font-weight: 600; padding: 7px 14px; border-radius: 999px; border: 1px solid var(--line); color: var(--muted); background: #fff; }
.chip:hover, .chip.active { background: var(--wine); color: #fff; border-color: var(--wine); }

/* subscribe (used on the wine feature band) */
.subscribe { display: flex; gap: 10px; flex-wrap: wrap; }
.subscribe input[type="email"] { flex: 1; min-width: 220px; padding: 12px 18px; border-radius: 999px; border: 1px solid rgba(255,255,255,.28); background: rgba(255,255,255,.12); color: #fff; font: inherit; font-size: 15px; }
.subscribe input[type="email"]::placeholder { color: rgba(255,255,255,.62); }
.sub-note { margin-top: 10px; font-size: 14px; }

/* page intro (about/give/contact) */
.page-intro { text-align: center; padding: 64px 0 12px; }
.page-intro h1 { font-size: clamp(30px, 4.6vw, 46px); }
.prose { font-size: 19px; }
.prose p { margin: 0 0 1.2em; }

/* inner-page hero: bold wine banner + page title + breadcrumb + dotted texture */
.page-header { background: linear-gradient(135deg, var(--wine) 0%, var(--wine-dark) 75%); color: #fff; text-align: center; padding: 66px 0 58px; position: relative; overflow: hidden; }
.page-header::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.6) 1.1px, transparent 1.1px); background-size: 22px 22px; opacity: .07; }
.page-header::after { content: ''; position: absolute; right: -80px; top: -80px; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(199,154,62,.22), transparent 66%); pointer-events: none; }
.page-header__inner { position: relative; z-index: 2; }
.page-header h1 { color: #fff; font-size: clamp(30px, 4.6vw, 46px); margin: 0 0 12px; }
.page-header__crumb { color: var(--gold-soft); font-size: 14px; display: flex; gap: 10px; justify-content: center; align-items: center; }
.page-header__crumb a { color: #fff; }
.page-header__crumb a:hover { color: var(--gold-soft); }
.page-header p { color: rgba(255,255,255,.84); max-width: 620px; margin: 12px auto 0; }

/* ============ HEADER ============ */
.atom-topbar { background: var(--wine); color: rgba(255,255,255,.86); font-size: 13.5px; }
.atom-topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 42px; padding: 6px 0; }
.atom-topbar ul { display: flex; gap: 22px; margin: 0; padding: 0; list-style: none; flex-wrap: wrap; }
.atom-topbar a { color: rgba(255,255,255,.86); }
.atom-topbar a:hover { color: #fff; }
.atom-topbar i { color: var(--gold-soft); margin-right: 6px; }
.atom-topbar__social { display: flex; gap: 14px; }
.atom-topbar__right { display: flex; align-items: center; gap: 16px; }
.lang-switch { display: inline-flex; align-items: center; gap: 6px; color: rgba(255,255,255,.86); }
.lang-switch i { color: var(--gold-soft); }
.lang-switch select { background: transparent; border: 0; color: #fff; font: inherit; font-size: 13px; cursor: pointer; padding: 2px 2px; }
.lang-switch select option { color: #2a2320; }
/* neutralise Google Translate chrome */
.goog-te-banner-frame, .goog-te-gadget-icon, #goog-gt-tt, .goog-te-balloon-frame { display: none !important; }
.skiptranslate > iframe { display: none !important; }
body { top: 0 !important; }
.goog-text-highlight { background: none !important; box-shadow: none !important; }

.atom-header { position: sticky; top: 0; z-index: 40; }
.atom-nav { background: rgba(255,253,250,.96); backdrop-filter: saturate(1.4) blur(6px); border-bottom: 1px solid var(--line); transition: box-shadow .2s ease; }
.atom-header.scrolled .atom-nav { box-shadow: 0 8px 26px rgba(58,34,20,.09); }
.atom-nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 74px; }
.atom-logo { font-family: var(--serif); font-weight: 700; font-size: 24px; color: var(--wine); line-height: 1; letter-spacing: .5px; }
.atom-logo span { display: block; font-family: var(--sans); font-weight: 500; font-size: 10.5px; letter-spacing: .13em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }
.atom-nav__list { display: flex; gap: 30px; list-style: none; margin: 0; padding: 0; }
.atom-nav__list a { color: var(--ink); font-size: 15.5px; font-weight: 500; position: relative; padding: 6px 0; }
.atom-nav__list a::after { content: ''; position: absolute; left: 0; bottom: 0; height: 2px; width: 0; background: var(--gold); transition: width .2s ease; }
.atom-nav__list a:hover, .atom-nav__list a.is-active { color: var(--wine); }
.atom-nav__list a:hover::after, .atom-nav__list a.is-active::after { width: 100%; }
.atom-nav__actions { display: flex; align-items: center; gap: 14px; }
.atom-burger { display: none; background: transparent; border: 0; color: var(--wine); font-size: 22px; cursor: pointer; padding: 4px; }

/* mobile menu */
.atom-mobile { position: fixed; inset: 0; z-index: 60; visibility: hidden; }
.atom-mobile.open { visibility: visible; }
.atom-mobile__backdrop { position: absolute; inset: 0; background: rgba(20,12,8,.5); opacity: 0; transition: opacity .25s ease; }
.atom-mobile.open .atom-mobile__backdrop { opacity: 1; }
.atom-mobile__panel { position: absolute; top: 0; right: 0; height: 100%; width: min(82vw, 340px); background: var(--bg); box-shadow: -10px 0 40px rgba(0,0,0,.2); padding: 26px 26px; transform: translateX(100%); transition: transform .28s ease; display: flex; flex-direction: column; gap: 6px; }
.atom-mobile.open .atom-mobile__panel { transform: translateX(0); }
.atom-mobile__close { align-self: flex-end; background: transparent; border: 0; font-size: 24px; color: var(--wine); cursor: pointer; }
.atom-mobile__panel .atom-logo { margin: 4px 0 18px; }
.atom-mobile__panel ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.atom-mobile__panel li a { display: block; padding: 13px 4px; border-bottom: 1px solid var(--line); color: var(--ink); font-size: 17px; font-weight: 500; }
.atom-mobile__panel li a:hover { color: var(--wine); padding-left: 8px; }

/* ============ FOOTER ============ */
.atom-footer { background: #241a15; color: rgba(255,255,255,.7); margin-top: 60px; padding: 56px 0 28px; }
.atom-footer a { color: rgba(255,255,255,.7); }
.atom-footer a:hover { color: var(--gold-soft); }
.atom-footer__cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 34px; }
.atom-footer h4 { color: #fff; font-size: 18px; margin: 0 0 16px; }
.atom-footer .brand { font-family: var(--serif); font-size: 24px; color: #fff; }
.atom-footer .brand span { display: block; font-family: var(--sans); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-soft); margin-top: 5px; }
.atom-footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; font-size: 15px; }
.atom-footer__social { display: flex; gap: 14px; margin-top: 16px; font-size: 18px; }
.atom-footer__bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 40px; padding-top: 22px; font-size: 13.5px; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.atom-footer__verse { font-family: var(--serif); font-style: italic; color: var(--gold-soft); }

.staging-badge { position: fixed; bottom: 14px; left: 14px; background: #241a15; color: #fff; font-size: 11px; padding: 6px 12px; border-radius: 999px; opacity: .85; z-index: 70; letter-spacing: .05em; }

@media (max-width: 900px) {
  .atom-footer__cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 780px) {
  .atom-nav__list, .atom-topbar__left-extra { display: none; }
  .atom-burger { display: inline-block; }
  .atom-give { display: none; }
}
@media (max-width: 640px) {
  body { font-size: 17px; }
  .hero { padding: 48px 0 28px; }
  .section { padding: 40px 0; }
  .feature { padding: 28px; }
  .atom-footer__cols { grid-template-columns: 1fr; }
  .atom-topbar__inner { justify-content: center; }
}

/* ===== logos + full-bleed + image-led hero (navy+gold) ===== */
body { overflow-x: hidden; }
.full-bleed { width: 100vw; position: relative; left: 50%; right: 50%; margin-left: -50vw; margin-right: -50vw; }
.atom-logo img { height: 46px; width: auto; display: block; }
.atom-mobile__panel .atom-logo img { height: 40px; }
.atom-footer .brand img { height: 58px; width: auto; }

.btn.ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn.ghost-light:hover { background: #fff; color: var(--wine); border-color: #fff; }

.home-hero { background: #fff; color: var(--ink); position: relative; overflow: hidden; }
.home-hero__inner { display: grid; grid-template-columns: .92fr 1.08fr; gap: 34px; align-items: center; min-height: 520px; position: relative; z-index: 2; }
.home-hero__media { align-self: end; text-align: center; padding-top: 44px; }
.home-hero__media img { max-height: 500px; width: auto; margin: 0 auto; display: block; }
.home-hero__text { padding: 54px 0; }
.home-hero__text .kicker { color: var(--muted); letter-spacing: .24em; }
.home-hero__text h1 { color: var(--wine); font-size: clamp(25px, 3.2vw, 38px); line-height: 1.14; margin: 8px 0 16px; letter-spacing: -0.01em; }
.home-hero__text .lead { color: #4c4239; font-size: 16px; line-height: 1.6; max-width: 46ch; margin-bottom: 22px; }
@media (max-width: 860px) {
  .home-hero__inner { grid-template-columns: 1fr; text-align: center; align-items: center; min-height: 0; gap: 6px; }
  .home-hero__text { padding: 6px 0 44px; }
  .home-hero__text .lead { margin-left: auto; margin-right: auto; }
  .home-hero__media img { max-height: 380px; }
}
