/* ========================================================================
   Rosa's Bible Goods — design tokens & base
   Warm, premium, editorial. Cream + parchment + deep rose + olive + soft gold.
   ======================================================================== */

:root {
  /* Color */
  --cream:        #faf3e7;   /* main bg */
  --parchment:    #f3e7cb;   /* subtle warm fill */
  --parchment-2:  #ece0c0;   /* deeper parchment */
  --rose-900:     #5a1f2a;   /* deep wine rose */
  --rose-800:     #7a2e3a;   /* primary brand rose */
  --rose-600:     #a14856;   /* mid rose */
  --rose-100:     #f4dadf;   /* soft rose tint */
  --olive-900:    #4a5732;
  --olive-700:    #6b7a3a;   /* secondary brand olive */
  --olive-500:    #8a9656;
  --gold:         #c9a14a;   /* soft gold */
  --gold-light:   #e9c873;   /* gilded gold */
  --gold-deep:    #a87e30;
  --ink:          #2a1c14;   /* warm near-black */
  --ink-soft:     #4a3a2e;
  --muted:        #7a6a58;
  --line:         #d9c9a8;   /* hairline parchment */
  --white:        #fffaf0;

  /* Type */
  --font-serif:   "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
  --font-sans:    "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Spacing */
  --sp-1: .25rem; --sp-2: .5rem; --sp-3: .75rem; --sp-4: 1rem;
  --sp-5: 1.25rem; --sp-6: 1.5rem; --sp-8: 2rem; --sp-10: 2.5rem;
  --sp-12: 3rem; --sp-16: 4rem; --sp-20: 5rem; --sp-24: 6rem; --sp-32: 8rem;

  /* Radius / shadow */
  --r-sm: 6px; --r-md: 10px; --r-lg: 18px; --r-xl: 28px;
  --shadow-sm: 0 1px 2px rgba(58, 30, 18, .08);
  --shadow-md: 0 8px 24px rgba(58, 30, 18, .10);
  --shadow-lg: 0 20px 50px rgba(58, 30, 18, .15);

  /* Container */
  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}
.narrow { max-width: 760px; }

.sr-only {
  position:absolute; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; border:0;
}

/* ============ Typography ============ */
.display {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2.6rem, 6.2vw, 5rem);
  line-height: 1.02;
  letter-spacing: -.01em;
  color: var(--ink);
  margin: 0 0 var(--sp-6);
}
.display em { font-style: italic; color: var(--rose-800); font-weight: 500; }

.section__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  line-height: 1.1;
  letter-spacing: -.005em;
  color: var(--ink);
  margin: var(--sp-3) 0 var(--sp-4);
}
.section__title em { font-style: italic; color: var(--rose-800); font-weight: 500; }
.section__title--sm { font-size: clamp(1.5rem, 2.6vw, 2rem); }
.section__title--light { color: var(--cream); }
.section__title--light em { color: var(--gold-light); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--rose-800);
  margin-bottom: var(--sp-3);
}
.eyebrow--light { color: var(--gold-light); }

.lede {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  line-height: 1.45;
  color: var(--ink-soft);
  margin: 0 0 var(--sp-6);
  max-width: 52ch;
  font-style: italic;
}

p { margin: 0 0 var(--sp-4); }

/* ============ Buttons ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem;
  padding: .85rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .01em;
  border: 1.5px solid transparent;
  transition: transform .15s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn--sm { padding: .55rem 1rem; font-size: 13px; }
.btn--primary {
  background: var(--rose-800); color: var(--cream);
  box-shadow: 0 2px 0 var(--rose-900);
}
.btn--primary:hover { background: var(--rose-900); transform: translateY(-1px); box-shadow: 0 6px 16px rgba(122,46,58,.3); }
.btn--outline {
  background: transparent; color: var(--ink);
  border-color: var(--ink);
}
.btn--outline:hover { background: var(--ink); color: var(--cream); }
.btn--ghost {
  background: transparent; color: var(--ink);
}
.btn--ghost:hover { color: var(--rose-800); }
.btn--gold {
  background: var(--gold); color: var(--ink);
  box-shadow: 0 2px 0 var(--gold-deep);
}
.btn--gold:hover { background: var(--gold-light); transform: translateY(-1px); }

.link {
  color: var(--rose-800); font-weight: 600; font-size: 14px;
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease;
}
.link:hover { border-bottom-color: var(--rose-800); }
.link--lg { font-size: 15px; }

/* ============ Announcement bar ============ */
.announce {
  background: var(--ink);
  color: var(--cream);
  font-size: 13px;
}
.announce__inner {
  display: flex; align-items: center; justify-content: center;
  gap: var(--sp-4); padding: var(--sp-3) 0;
  flex-wrap: wrap;
}
.announce__pill {
  background: var(--gold); color: var(--ink);
  padding: 2px 10px; border-radius: 999px;
  font-weight: 700; font-size: 11px; letter-spacing: .08em;
  text-transform: uppercase;
}
.announce__text { opacity: .9; }

/* ============ Header ============ */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 243, 231, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s ease, background .25s ease;
}
.header--scrolled { box-shadow: 0 2px 16px rgba(58,30,18,.08); background: rgba(250, 243, 231, .98); }
.header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--sp-6);
  padding: var(--sp-4) 0;
}
.brand {
  display: inline-flex; align-items: center; gap: .65rem;
  color: var(--rose-800);
}
.brand__mark { width: 38px; height: 38px; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--font-serif); font-weight: 600; font-style: italic;
  font-size: 22px; color: var(--ink); letter-spacing: -.01em;
}
.brand__sub {
  font-family: var(--font-sans); font-size: 10.5px; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase; color: var(--rose-800);
  margin-top: 4px;
}
.brand--footer { color: var(--cream); }
.brand--footer .brand__name { color: var(--cream); }
.brand--footer .brand__sub { color: var(--gold-light); }

.nav {
  display: flex; justify-content: center; gap: var(--sp-6);
  font-size: 14px;
}
.nav a {
  color: var(--ink-soft); font-weight: 500;
  padding: 6px 2px;
  border-bottom: 1.5px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}
.nav a:hover { color: var(--rose-800); border-bottom-color: var(--rose-800); }

.header__actions { display: flex; gap: var(--sp-2); }

@media (max-width: 880px) {
  .nav { display: none; }
  .header__inner { grid-template-columns: auto 1fr; }
  .header__actions .btn--ghost { display: none; }
}

/* ============ Hero ============ */
.hero {
  position: relative;
  padding: clamp(2rem, 5vw, 4rem) 0 0;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 70% at 80% 20%, rgba(201,161,74,.18), transparent 70%),
    radial-gradient(50% 60% at 10% 80%, rgba(107,122,58,.12), transparent 70%),
    linear-gradient(180deg, var(--cream) 0%, #f6ead0 100%);
  z-index: -1;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(2rem, 6vw, 5rem) 0 clamp(2rem, 5vw, 4rem);
}
.hero__copy { max-width: 580px; }
.hero__cta {
  display: flex; gap: var(--sp-3); flex-wrap: wrap;
  margin-bottom: var(--sp-8);
}
.hero__proof {
  display: flex; gap: var(--sp-6);
  list-style: none; padding: 0; margin: 0;
  font-size: 13px; color: var(--muted);
  flex-wrap: wrap;
}
.hero__proof li { display: inline-flex; align-items: center; gap: .35rem; }
.hero__proof span { color: var(--gold-deep); font-weight: 700; }

.hero__art {
  margin: 0;
  position: relative;
}
.hero__art svg { width: 100%; height: auto; }

@media (max-width: 860px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__art { max-width: 460px; margin: 0 auto; }
}

/* trust strip */
.trust-strip {
  background: var(--parchment);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
  padding: var(--sp-5) 0;
}
.trust-item {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  font-size: 13px; color: var(--ink-soft);
  gap: 2px;
}
.trust-item strong {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  color: var(--rose-800);
  font-weight: 600;
}
@media (max-width: 720px) {
  .trust-strip__inner { grid-template-columns: repeat(2, 1fr); }
}

/* ============ Section base ============ */
.section { padding: clamp(3rem, 7vw, 6rem) 0; }
.section--cream { background: var(--parchment); }
.section--rose { background: var(--rose-800); color: var(--cream); }
.section--rose .section__title { color: var(--cream); }

.section__head { margin-bottom: var(--sp-10); max-width: 720px; }
.section__head--center { text-align: center; margin-inline: auto; }
.section__head--row {
  display: flex; align-items: end; justify-content: space-between;
  max-width: none; gap: var(--sp-6); flex-wrap: wrap;
}
.section__sub {
  font-family: var(--font-serif); font-size: 1.15rem; color: var(--ink-soft);
  font-style: italic; margin: 0;
}

/* ============ Category grid ============ */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--sp-5);
}
/* layout: row1: lg(3) + sm(3); row2: sm(2)+sm(2)+sm(2); row3: lg(6) wide bundle */
.cat-card:nth-child(2) { grid-column: span 3; }
.cat-card:last-child { grid-column: span 6; flex-direction: row; }
.cat-card:last-child .cat-card__art { flex: 1; aspect-ratio: auto; }
.cat-card:last-child .cat-card__body { flex: 1.2; justify-content: center; padding: var(--sp-8); }
.cat-card {
  grid-column: span 2;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.cat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.cat-card--lg { grid-column: span 3; }
.cat-card__art {
  aspect-ratio: 16/10;
  background: var(--parchment);
  display: flex; align-items: center; justify-content: center;
  padding: var(--sp-6);
}
.cat-art--bible { background: linear-gradient(135deg, #f3e0c6 0%, #e8d09c 100%); }
.cat-art--journal { background: linear-gradient(135deg, #efe2c4 0%, #d9c9a8 100%); }
.cat-art--devo { background: linear-gradient(135deg, #e8e2cf 0%, #cdd1ad 100%); }
.cat-art--cover { background: linear-gradient(135deg, #dde0c8 0%, #c2c9a5 100%); }
.cat-art--gift { background: linear-gradient(135deg, #f6e2c1 0%, #ecd089 100%); }
.cat-art--bundle { background: linear-gradient(135deg, #f0dcb9 0%, #d6c08c 100%); }
.cat-card__art svg { width: 60%; height: auto; filter: drop-shadow(0 6px 12px rgba(58,30,18,.18)); }
.cat-card__body {
  padding: var(--sp-5) var(--sp-6) var(--sp-6);
  display: flex; flex-direction: column; gap: var(--sp-2);
  flex: 1;
}
.cat-card__body h3 {
  font-family: var(--font-serif); font-size: 1.4rem; font-weight: 600;
  margin: 0; color: var(--ink);
}
.cat-card__body p { color: var(--muted); margin: 0 0 var(--sp-2); font-size: 14px; }
.cat-card__body .link { margin-top: auto; }

@media (max-width: 980px) {
  .cat-grid { grid-template-columns: repeat(4, 1fr); }
  .cat-card, .cat-card--lg, .cat-card:nth-child(2) { grid-column: span 2; }
  .cat-card:last-child { grid-column: span 4; flex-direction: row; }
}
@media (max-width: 560px) {
  .cat-grid { grid-template-columns: 1fr; }
  .cat-card, .cat-card--lg, .cat-card:nth-child(2), .cat-card:last-child { grid-column: span 1; flex-direction: column; }
  .cat-card:last-child .cat-card__art { aspect-ratio: 16/10; }
  .cat-card:last-child .cat-card__body { padding: var(--sp-5) var(--sp-6) var(--sp-6); }
}

/* ============ Two-column feature ============ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.two-col--reverse .two-col__media { order: 2; }
.two-col__copy h2 { margin-top: 0; }
.feature-art, .story-art { max-width: 460px; margin: 0 auto; filter: drop-shadow(0 20px 40px rgba(58,30,18,.18)); }
.check-list { list-style: none; padding: 0; margin: var(--sp-6) 0; display: grid; gap: var(--sp-3); }
.check-list li {
  position: relative;
  padding-left: 1.75rem;
  color: var(--ink-soft);
}
.check-list li::before {
  content: "";
  position: absolute; left: 0; top: .55rem;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: inset 0 0 0 3px var(--cream);
}
.cta-row { display: flex; gap: var(--sp-3); flex-wrap: wrap; }

@media (max-width: 880px) {
  .two-col { grid-template-columns: 1fr; }
  .two-col--reverse .two-col__media { order: 0; }
}

/* ============ Product grid ============ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}
.product {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.product:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.product__media {
  aspect-ratio: 1/1;
  background: linear-gradient(135deg, var(--parchment) 0%, var(--parchment-2) 100%);
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.product__media svg { width: 70%; filter: drop-shadow(0 8px 16px rgba(58,30,18,.18)); }
.badge {
  position: absolute; top: var(--sp-3); left: var(--sp-3);
  background: var(--rose-800); color: var(--cream);
  font-size: 10px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 9px; border-radius: 999px;
}
.badge--olive { background: var(--olive-700); }
.badge--rose { background: var(--gold); color: var(--ink); }

.product__body {
  padding: var(--sp-5);
  display: flex; flex-direction: column; gap: var(--sp-2);
  flex: 1;
}
.product__body h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem; font-weight: 600;
  margin: 0; color: var(--ink); line-height: 1.2;
}
.product__meta { font-size: 12.5px; color: var(--muted); margin: 0; }
.product__row {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-top: var(--sp-2);
  gap: var(--sp-3);
}
.price {
  font-family: var(--font-serif); font-size: 1.4rem; font-weight: 600;
  color: var(--rose-800);
}
.price--lg { font-size: 1.8rem; }
.price .strike, .strike {
  color: var(--muted); text-decoration: line-through; font-size: .9rem;
  margin-left: .35rem; font-weight: 400;
}
.rating { color: var(--gold-deep); font-size: 13px; }
.rating small { color: var(--muted); margin-left: 4px; }
.product__body .btn { align-self: stretch; margin-top: auto; }

@media (max-width: 880px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .product-grid { grid-template-columns: 1fr; } }

/* ============ Occasions ============ */
.occasion-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}
.occasion {
  padding: var(--sp-6);
  border: 1px solid rgba(233, 200, 115, .3);
  border-radius: var(--r-lg);
  background: rgba(0,0,0,.07);
  transition: background .2s ease, border-color .2s ease;
}
.occasion:hover { background: rgba(0,0,0,.12); border-color: var(--gold-light); }
.occasion__num {
  font-family: var(--font-serif); font-style: italic;
  font-size: 2.2rem; color: var(--gold-light);
  margin-bottom: var(--sp-3); line-height: 1;
}
.occasion h3 {
  font-family: var(--font-serif); font-weight: 500;
  font-size: 1.35rem; margin: 0 0 var(--sp-2); color: var(--cream);
}
.occasion p { color: rgba(250,243,231,.78); margin: 0; font-size: 14.5px; }
@media (max-width: 820px) { .occasion-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .occasion-grid { grid-template-columns: 1fr; } }

/* ============ Bundle card ============ */
.bundle-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  box-shadow: var(--shadow-md);
  max-width: 460px;
  margin: 0 auto;
}
.bundle-card__head { margin-bottom: var(--sp-5); }
.bundle-card__tag {
  display: inline-block;
  background: var(--olive-700); color: var(--cream);
  font-size: 11px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase;
  padding: 3px 10px; border-radius: 999px;
  margin-bottom: var(--sp-3);
}
.bundle-card__head h3 {
  font-family: var(--font-serif); font-weight: 500;
  font-size: 1.7rem; margin: 0; line-height: 1.15;
}
.bundle-card__list {
  list-style: none; padding: 0; margin: 0 0 var(--sp-6);
  display: grid; gap: var(--sp-3);
  border-top: 1px solid var(--line);
  padding-top: var(--sp-5);
}
.bundle-card__list li {
  display: flex; gap: .6rem; font-size: 14.5px; color: var(--ink-soft);
}
.bundle-card__list li span {
  font-family: var(--font-serif); font-weight: 600;
  color: var(--rose-800); min-width: 28px;
}
.bundle-card__foot {
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid var(--line);
  padding-top: var(--sp-5);
  gap: var(--sp-4);
}

/* ============ Pull quote ============ */
.pull-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.35rem;
  line-height: 1.4;
  color: var(--rose-800);
  border-left: 3px solid var(--gold);
  padding: var(--sp-2) 0 var(--sp-2) var(--sp-5);
  margin: var(--sp-6) 0 0;
  max-width: 38ch;
}
.pull-quote cite {
  display: block;
  margin-top: var(--sp-3);
  font-style: normal;
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: .08em;
  color: var(--muted);
  font-weight: 600;
}

/* ============ Testimonials ============ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  margin-bottom: var(--sp-10);
}
.testi {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
}
.testi__stars { color: var(--gold-deep); font-size: 16px; margin-bottom: var(--sp-3); }
.testi blockquote {
  font-family: var(--font-serif);
  font-size: 1.1rem; line-height: 1.5;
  font-style: italic; color: var(--ink);
  margin: 0 0 var(--sp-4);
}
.testi figcaption { font-size: 13px; color: var(--muted); }
.testi figcaption strong { display:block; color: var(--ink); font-family: var(--font-sans); font-weight: 600; margin-bottom: 2px; font-size: 14px; }
@media (max-width: 880px) { .testi-grid { grid-template-columns: 1fr; } }

.logo-row {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: var(--sp-8);
  padding-top: var(--sp-8);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  letter-spacing: .04em;
}
.logo-row__name {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--ink-soft);
}

/* ============ SEO block ============ */
.seo-block p {
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.7;
}
.seo-block strong { color: var(--rose-800); font-weight: 600; }

/* ============ Newsletter ============ */
.newsletter {
  background:
    radial-gradient(60% 80% at 50% 0%, rgba(201,161,74,.16), transparent 70%),
    var(--rose-900);
  color: var(--cream);
  text-align: center;
}
.newsletter .eyebrow { color: var(--gold-light); }
.news__sub { color: rgba(250,243,231,.85); max-width: 46ch; margin: 0 auto var(--sp-6); }
.news-form {
  display: flex; gap: var(--sp-2);
  max-width: 460px; margin: 0 auto;
  padding: 6px;
  background: rgba(250,243,231,.08);
  border: 1px solid rgba(250,243,231,.2);
  border-radius: 999px;
}
.news-form input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--cream);
  padding: .6rem 1rem;
  font-size: 14.5px;
  font-family: var(--font-sans);
  outline: none;
}
.news-form input::placeholder { color: rgba(250,243,231,.5); }
.news__fine { font-size: 12px; color: rgba(250,243,231,.55); margin-top: var(--sp-4); }
@media (max-width: 520px) {
  .news-form { flex-direction: column; border-radius: var(--r-md); }
  .news-form .btn { border-radius: 999px; }
}

/* ============ Footer ============ */
.footer {
  background: var(--ink);
  color: rgba(250,243,231,.78);
  padding: var(--sp-16) 0 var(--sp-8);
}
.footer a { color: rgba(250,243,231,.78); transition: color .2s ease; }
.footer a:hover { color: var(--gold-light); }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--sp-10);
  padding-bottom: var(--sp-10);
  border-bottom: 1px solid rgba(250,243,231,.1);
}
.footer__tag {
  font-family: var(--font-serif); font-style: italic;
  color: var(--gold-light);
  margin-top: var(--sp-4); font-size: 1.1rem;
  max-width: 26ch;
}
.footer__h {
  font-family: var(--font-sans);
  font-size: 12px; letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cream);
  margin: 0 0 var(--sp-4);
}
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--sp-2); font-size: 14px; }
.footer__bottom {
  display: flex; justify-content: space-between;
  padding-top: var(--sp-6);
  font-size: 12.5px;
  color: rgba(250,243,231,.5);
  flex-wrap: wrap;
  gap: var(--sp-3);
}
@media (max-width: 880px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .footer__grid { grid-template-columns: 1fr; }
}

/* ============ Motion: respect reduced motion ============ */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}

/* ========================================================================
   Modern teal / white / lavender refresh for SpiritualGiftsInTheBible.com
   ======================================================================== */
:root {
  --cream: #f8fdff;
  --parchment: #eefcff;
  --parchment-2: #e7e0ff;
  --rose-900: #073642;
  --rose-800: #0aa6b8;
  --rose-600: #34d1df;
  --rose-100: #dcfbff;
  --olive-900: #33266a;
  --olive-700: #7c6dff;
  --olive-500: #a88bff;
  --gold: #c8b6ff;
  --gold-light: #f1edff;
  --gold-deep: #7c6dff;
  --ink: #071c25;
  --ink-soft: #274551;
  --muted: #607784;
  --line: #d7edf3;
  --white: #ffffff;
  --font-serif: "Sora", "Inter", system-ui, sans-serif;
  --shadow-sm: 0 1px 2px rgba(12, 56, 70, .08);
  --shadow-md: 0 14px 34px rgba(16, 182, 200, .14);
  --shadow-lg: 0 30px 70px rgba(124, 109, 255, .18);
}

body {
  background:
    radial-gradient(900px 520px at 82% 8%, rgba(200, 182, 255, .30), transparent 60%),
    radial-gradient(760px 460px at 8% 18%, rgba(52, 209, 223, .22), transparent 62%),
    var(--cream);
}

.display,
.section__title,
.brand__name,
.lede {
  font-family: var(--font-serif);
  font-style: normal;
}

.display {
  font-weight: 800;
  letter-spacing: -.055em;
  text-wrap: balance;
}

.display em,
.section__title em {
  font-style: normal;
  background: linear-gradient(100deg, #0798aa, #7c6dff 62%, #b089ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lede {
  font-weight: 500;
  color: var(--ink-soft);
}

.announce {
  background: linear-gradient(90deg, #071c25, #123f52 45%, #40358a);
}

.announce__pill {
  background: #dffcff;
  color: #073642;
}

.announce__text a {
  color: #fff;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.header {
  background: rgba(248, 253, 255, .78);
  border-bottom: 1px solid rgba(10, 166, 184, .18);
  box-shadow: 0 1px 0 rgba(255,255,255,.7) inset;
}

.header--scrolled {
  background: rgba(248, 253, 255, .94);
  box-shadow: 0 18px 40px rgba(9, 63, 79, .08);
}

.brand,
.brand__sub,
.nav a:hover,
.link {
  color: var(--rose-800);
}

.brand__sub {
  letter-spacing: .18em;
}

.btn--primary {
  background: linear-gradient(135deg, #05a9bb, #7c6dff);
  color: #ffffff;
  border: 0;
  box-shadow: 0 14px 28px rgba(16, 182, 200, .26), 0 2px 0 rgba(7, 54, 66, .18);
}

.btn--primary:hover {
  background: linear-gradient(135deg, #038c9c, #6758f0);
  box-shadow: 0 18px 38px rgba(124, 109, 255, .28);
}

.btn--outline {
  border-color: rgba(7, 54, 66, .22);
  background: rgba(255, 255, 255, .48);
  backdrop-filter: blur(14px);
}

.btn--outline:hover {
  background: #071c25;
  color: #ffffff;
}

.btn--gold {
  background: #ffffff;
  color: #073642;
  box-shadow: 0 14px 30px rgba(124, 109, 255, .18);
}

.hero {
  padding-top: clamp(2.5rem, 6vw, 5.5rem);
}

.hero__bg {
  background:
    radial-gradient(540px 380px at 78% 38%, rgba(124, 109, 255, .30), transparent 70%),
    radial-gradient(620px 420px at 20% 22%, rgba(52, 209, 223, .28), transparent 72%),
    linear-gradient(180deg, #ffffff 0%, #edfaff 52%, #f6f2ff 100%);
}

.hero__art {
  transform: perspective(900px) rotateY(-7deg) rotateX(2deg);
  filter: drop-shadow(0 30px 48px rgba(12, 56, 70, .18));
}

.hero__proof li {
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(10,166,184,.16);
  border-radius: 999px;
  padding: .35rem .7rem;
  box-shadow: 0 12px 26px rgba(16,182,200,.08);
}

.trust-strip {
  background: rgba(255,255,255,.66);
  backdrop-filter: blur(18px);
  border-top: 1px solid rgba(10,166,184,.16);
  border-bottom: 1px solid rgba(124,109,255,.15);
}

.trust-item strong {
  color: var(--rose-800);
}

.section--cream,
.cat-card,
.product,
.bundle-card,
.testimonial,
.seo-block,
.newsletter {
  background: rgba(255, 255, 255, .64);
  backdrop-filter: blur(18px);
}

.cat-card,
.product,
.bundle-card,
.testimonial,
.path-card {
  border: 1px solid rgba(10, 166, 184, .18);
  box-shadow: 0 22px 55px rgba(9, 63, 79, .08);
}

.cat-card:hover,
.product:hover,
.path-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 34px 70px rgba(124, 109, 255, .16);
}

.cat-card__art {
  background:
    radial-gradient(circle at 34% 22%, rgba(255,255,255,.85), transparent 34%),
    linear-gradient(135deg, rgba(16,182,200,.13), rgba(200,182,255,.26));
  border-radius: 24px;
}

.section--rose {
  background:
    radial-gradient(520px 320px at 20% 10%, rgba(52,209,223,.30), transparent 65%),
    linear-gradient(135deg, #062532, #40358a 100%);
}

.path-section {
  background:
    linear-gradient(180deg, rgba(255,255,255,.72), rgba(238,252,255,.88)),
    radial-gradient(520px 280px at 72% 6%, rgba(200,182,255,.28), transparent 68%);
}

.path-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.5vw, 1.5rem);
}

.path-card {
  position: relative;
  overflow: hidden;
  padding: clamp(1.35rem, 3vw, 2rem);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.90), rgba(239,252,255,.66)),
    radial-gradient(300px 180px at 90% 10%, rgba(200,182,255,.35), transparent 64%);
}

.path-card::after {
  content: "";
  position: absolute;
  right: -48px;
  top: -48px;
  width: 140px;
  height: 140px;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(16,182,200,.16), rgba(124,109,255,.20));
  transform: rotate(22deg);
}

.path-card__icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #dffcff, #eee8ff);
  color: #078b9a;
  font-weight: 800;
}

.path-card h3 {
  margin: 0 0 .6rem;
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
  letter-spacing: -.03em;
}

.path-card p {
  color: var(--ink-soft);
}

.path-card--prayer {
  background:
    linear-gradient(145deg, rgba(7, 54, 66, .96), rgba(64, 53, 138, .92)),
    radial-gradient(360px 180px at 10% 0%, rgba(52,209,223,.28), transparent 70%);
  color: #ffffff;
}

.path-card--prayer h3,
.path-card--prayer p {
  color: #ffffff;
}

.path-card--prayer .path-card__icon {
  background: rgba(255,255,255,.16);
  color: #ffffff;
}

.disclaimer {
  margin: 1rem 0 0;
  padding: .85rem;
  border-radius: 16px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.16);
  font-size: .88rem;
  line-height: 1.45;
}

.footer {
  background:
    radial-gradient(480px 260px at 85% 0%, rgba(124,109,255,.28), transparent 65%),
    linear-gradient(135deg, #061b24, #0c3441 52%, #30276e);
}

@media (max-width: 880px) {
  .path-grid {
    grid-template-columns: 1fr;
  }
}
