/*!
  Sinais do Reino — style.css
  Design system: cinematográfico, dourado sobre fundo escuro. Acabamento premium.
  Replica fielmente o sistema de design de referência (Cormorant Garamond + Outfit,
  paleta oklch, cartões com anel dourado, botões com brilho varrendo).
  CSS puro, sem frameworks. Mobile-first.
*/

/* ============ 1. RESET & BASE ============ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}
body { min-height: 100vh; }
img, svg, picture { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, select, textarea { font: inherit; color: inherit; background: none; border: none; }
button { cursor: pointer; }
table { border-collapse: collapse; width: 100%; }

/* ============ 2. TOKENS ============ */
:root {
  --radius: 0.75rem;
  --r-sm: 0.5rem;
  --r-md: 0.65rem;
  --r-lg: 0.75rem;
  --r-xl: 1.05rem;
  --r-2xl: 1.4rem;
  --r-full: 999px;

  --ink: oklch(0.95 0.008 80);          /* texto principal (claro sobre fundo escuro) */
  --ink-soft: oklch(0.82 0.014 78);
  --ink-faint: oklch(0.72 0.018 76);    /* = --muted-foreground */

  --background: oklch(0.16 0.012 60);
  --parchment: oklch(0.16 0.012 60);    /* alias — mantém nomes usados em templates.py */
  --parchment-deep: oklch(0.135 0.012 60);
  --white: oklch(0.95 0.008 80);
  --card: oklch(0.205 0.014 62);
  --surface: oklch(0.2 0.014 62);
  --surface-2: oklch(0.24 0.016 64);

  --gold: oklch(0.79 0.125 85);
  --gold-dark: oklch(0.62 0.11 76);     /* = gold-deep */
  --gold-darker: oklch(0.5 0.095 72);
  --gold-light: oklch(0.9 0.075 90);    /* = gold-soft */
  --gold-50: oklch(0.82 0.13 86 / 0.07);
  --gold-100: oklch(0.82 0.13 86 / 0.16);

  --wine: oklch(0.5 0.14 24);
  --wine-dark: oklch(0.4 0.13 22);
  --sage: oklch(0.55 0.09 152);
  --sage-dark: oklch(0.42 0.08 152);
  --slate: oklch(0.55 0.03 250);
  --plum: oklch(0.5 0.09 320);

  --border: oklch(0.32 0.022 68);
  --border-soft: oklch(0.28 0.02 66);
  --hairline: oklch(1 0 0 / 0.09);

  --success-bg: oklch(0.3 0.06 152 / 0.25);
  --focus-ring: var(--gold);

  --gradient-gold: linear-gradient(135deg, oklch(0.72 0.11 78), oklch(0.92 0.09 92) 45%, oklch(0.7 0.12 74));
  --gradient-surface: linear-gradient(160deg, oklch(0.235 0.017 64), oklch(0.175 0.012 60));
  --gradient-veil: linear-gradient(to top, oklch(0.13 0.012 60 / 0.97), oklch(0.13 0.012 60 / 0.55) 45%, transparent);

  --shadow-xs: 0 1px 1px oklch(0 0 0 / 0.25);
  --shadow-sm: 0 2px 8px -2px oklch(0 0 0 / 0.35);
  --shadow-card: 0 1px 1px oklch(0 0 0 / 0.2);
  --shadow-md: 0 10px 26px -10px oklch(0 0 0 / 0.55);
  --shadow-lg: 0 20px 46px -16px oklch(0 0 0 / 0.6);
  --shadow-premium: 0 24px 60px -24px oklch(0 0 0 / 0.85), 0 2px 0 0 oklch(1 0 0 / 0.04) inset;
  --shadow-gold: 0 18px 44px -18px oklch(0.75 0.13 84 / 0.55);
  --shadow-inset-hi: inset 0 1px 0 0 oklch(1 0 0 / 0.35);

  --sp-1: .25rem; --sp-2: .5rem; --sp-3: .75rem; --sp-4: 1rem;
  --sp-5: 1.5rem; --sp-6: 2rem; --sp-7: 2.5rem; --sp-8: 3rem;
  --sp-10: 4rem; --sp-12: 6rem; --sp-14: 8rem;

  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --text-xs: .75rem; --text-sm: .875rem; --text-base: 1rem; --text-lg: 1.125rem;
  --text-xl: 1.25rem; --text-2xl: 1.6rem; --text-3xl: 2.1rem; --text-4xl: 2.75rem; --text-5xl: 3.6rem;

  --container: 1200px;
  --header-h: 116px;
}

/* ============ 3. TIPOGRAFIA ============ */
body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--ink);
  background: var(--background);
  -webkit-font-smoothing: antialiased;
  position: relative;
  background-image:
    radial-gradient(900px 500px at 12% -8%, oklch(0.8 0.12 85 / 0.09), transparent 60%),
    radial-gradient(700px 420px at 92% 4%, oklch(0.7 0.1 60 / 0.08), transparent 60%);
  background-attachment: fixed;
}
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 999; pointer-events: none;
  opacity: .05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  color: var(--ink);
  letter-spacing: -0.01em;
}
h1 { font-size: var(--text-5xl); }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); font-family: var(--font-sans); font-weight: 700; }
p { color: var(--ink-faint); }
.lede { font-size: var(--text-lg); color: var(--ink-faint); }
strong { color: var(--ink); font-weight: 700; }
a.inline-link { color: var(--gold); text-decoration: underline; text-decoration-color: oklch(0.79 0.125 85 / 0.4); text-underline-offset: 3px; }
a.inline-link:hover { color: var(--gold-light); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .6em;
  font-size: var(--text-xs); font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold);
}
.eyebrow::before { content: ''; width: 2rem; height: 1px; background: linear-gradient(90deg, transparent, var(--gold)); display: inline-block; }

.text-gold-gradient, .accent {
  background: var(--gradient-gold);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

@media (min-width: 780px) {
  h1 { font-size: 4.2rem; }
}
@media (max-width: 640px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 1.7rem; }
  h3 { font-size: 1.4rem; }
}

/* ============ 4. LAYOUT ============ */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--sp-5); }
.section { padding-block: var(--sp-10); }
.section--tight { padding-block: var(--sp-8); }
.section--shade { background: var(--parchment-deep); border-block: 1px solid var(--hairline); }
.grid { display: grid; gap: var(--sp-5); }

/* ============ 5. ACESSIBILIDADE ============ */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--gold); color: var(--parchment-deep); padding: .8rem 1.2rem; border-radius: 0 0 var(--r-md) 0; font-weight: 700;
}
.skip-link:focus { left: 0; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
::selection { background: oklch(0.82 0.13 86 / 0.28); color: var(--ink); }

/* ============ 6. HEADER & NAV ============ */
.site-header { position: sticky; top: 0; z-index: 60; }
.site-header__utility {
  display: none; border-bottom: 1px solid var(--hairline); background: oklch(0.14 0.012 60);
}
.site-header__utility-inner {
  max-width: var(--container); margin-inline: auto; padding: .55rem var(--sp-5);
  display: flex; align-items: center; justify-content: space-between;
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-faint);
}
.site-header__utility-inner span:last-child { color: var(--gold); }
@media (min-width: 780px) { .site-header__utility { display: block; } }

.site-header__main {
  border-bottom: 1px solid var(--hairline);
  background: oklch(0.16 0.012 60 / 0.88);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
}
.site-header__inner { max-width: var(--container); margin-inline: auto; padding: .8rem var(--sp-5); display: flex; align-items: center; gap: var(--sp-4); }

.brand { display: inline-flex; align-items: center; gap: .75rem; flex-shrink: 0; }
.brand__mark {
  width: 44px; height: 44px; border-radius: var(--r-xl); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid oklch(0.82 0.13 86 / 0.35); background: oklch(0.82 0.13 86 / 0.08);
}
.brand__mark svg { width: 24px; height: 24px; }
.brand__word { line-height: 1.1; }
.brand__word b { display: block; font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; }
.brand__word b .accent-word { background: var(--gradient-gold); -webkit-background-clip: text; background-clip: text; color: transparent; }
.brand__tagline { display: block; margin-top: 2px; font-size: 10px; letter-spacing: .28em; text-transform: uppercase; color: var(--ink-faint); }

.nav-main { display: none; margin-left: auto; }
.nav-main__list { display: flex; align-items: center; gap: .2rem; }
.nav-main__link {
  font-weight: 500; font-size: .92rem; color: var(--ink-faint);
  padding: .55rem .75rem; border-radius: var(--r-sm); position: relative; white-space: nowrap;
  transition: color .2s ease;
}
.nav-main__link:hover, .nav-main__link[aria-current="page"] { color: var(--gold); }
.nav-more { position: relative; }
.nav-more__btn { display: inline-flex; align-items: center; gap: .3rem; font-weight: 500; font-size: .92rem; color: var(--ink-faint); padding: .55rem .75rem; }
.nav-more__btn:hover { color: var(--gold); }
.nav-more__panel {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%);
  background: var(--gradient-surface); border: 1px solid var(--hairline); border-radius: var(--r-lg);
  box-shadow: var(--shadow-premium); padding: var(--sp-3); min-width: 280px;
  display: none; grid-template-columns: 1fr; gap: 2px;
}
.nav-more:hover .nav-more__panel, .nav-more:focus-within .nav-more__panel { display: grid; }
.nav-more__link { display: block; padding: .7rem .85rem; border-radius: var(--r-sm); font-weight: 500; font-size: .92rem; color: var(--ink-faint); transition: background .15s ease, color .15s ease; }
.nav-more__link:hover { background: oklch(1 0 0 / 0.04); color: var(--gold-light); }
.nav-more__link small { display: block; font-weight: 400; color: var(--ink-faint); opacity: .7; font-size: .78rem; margin-top: 2px; }

.header-actions { display: flex; align-items: center; gap: var(--sp-3); margin-left: auto; }
.header-cta { display: none; margin-left: var(--sp-4); }
@media (min-width: 1020px) { .header-cta { display: inline-flex; } }
.icon-btn {
  width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--r-md); color: var(--ink-faint); border: 1px solid var(--hairline);
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.icon-btn:hover { background: oklch(1 0 0 / 0.04); color: var(--gold); border-color: oklch(0.82 0.13 86 / 0.3); }
.icon-btn svg { width: 19px; height: 19px; }
.nav-toggle { display: inline-flex; }

.mobile-nav {
  position: fixed; inset: 0; z-index: 90; background: var(--parchment-deep);
  transform: translateX(100%); transition: transform .3s ease;
  overflow-y: auto;
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav__top { display: flex; justify-content: space-between; align-items: center; height: 76px; padding-inline: var(--sp-5); border-bottom: 1px solid var(--hairline); }
.mobile-nav__list { padding: var(--sp-5); display: flex; flex-direction: column; }
.mobile-nav__link { display: flex; align-items: center; justify-content: space-between; padding: 1rem .25rem; font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; border-bottom: 1px solid var(--hairline); color: var(--ink); }
.mobile-nav__sub { padding-left: var(--sp-3); display: flex; flex-direction: column; }
.mobile-nav__sub a { padding: .7rem .25rem; font-weight: 500; color: var(--ink-faint); font-size: 1rem; border-bottom: 1px solid var(--hairline); }
.mobile-nav__group-label { padding: 1.4rem .25rem .4rem; font-size: var(--text-xs); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); }

@media (min-width: 1020px) {
  .nav-main { display: block; }
  .nav-toggle { display: none; }
  .mobile-nav { display: none; }
}

/* ============ 7. BOTÕES & BADGES ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-weight: 600; font-size: .875rem; padding: 0 1.4rem; height: 2.75rem; border-radius: .6rem;
  border: 1px solid transparent; transition: transform .2s ease, filter .2s ease, background .2s ease, border-color .2s ease;
  white-space: nowrap; letter-spacing: .01em;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn--primary {
  position: relative; overflow: hidden;
  background: var(--gradient-gold); color: oklch(0.17 0.02 60);
  box-shadow: var(--shadow-gold), var(--shadow-inset-hi);
}
.btn--primary::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 35%, oklch(1 0 0 / 0.55) 50%, transparent 65%);
  transform: translateX(-120%); transition: transform .7s ease;
}
.btn--primary:hover { transform: translateY(-2px); filter: brightness(1.05); }
.btn--primary:hover::after { transform: translateX(120%); }
.btn--outline, .btn--ghost-gold {
  color: var(--gold-light); border-color: oklch(0.82 0.13 86 / 0.35); background: oklch(0.82 0.13 86 / 0.05);
  transition: background .3s ease, border-color .3s ease, transform .2s ease;
}
.btn--outline:hover, .btn--ghost-gold:hover { background: oklch(0.82 0.13 86 / 0.12); border-color: oklch(0.82 0.13 86 / 0.6); transform: translateY(-2px); }
.btn--ghost { color: var(--ink-faint); }
.btn--ghost:hover { color: var(--gold); }
.btn--wine { background: var(--wine); color: var(--white); box-shadow: var(--shadow-md); }
.btn--wine:hover { background: var(--wine-dark); }
.btn--block { width: 100%; }
.btn--sm { height: 2.3rem; padding: 0 1rem; font-size: .82rem; }
.btn--lg { height: 3.1rem; padding: 0 1.9rem; font-size: .98rem; }

.badge {
  display: inline-flex; align-items: center; gap: .375rem;
  padding: .3rem .7rem; border-radius: var(--r-full);
  font-size: .6875rem; font-weight: 600; letter-spacing: .09em; text-transform: uppercase;
  color: oklch(0.17 0.02 60); background: var(--gradient-gold);
  box-shadow: 0 6px 18px -8px oklch(0.75 0.13 84 / 0.9);
}
.badge--outline {
  color: var(--gold-light); background: oklch(0.14 0.012 60 / 0.7); backdrop-filter: blur(6px);
  border: 1px solid oklch(0.82 0.13 86 / 0.32); box-shadow: none; font-weight: 500;
}
/* compat: variantes antigas de cor por papel viram o badge premium único (fiel à referência) */
.badge--pastor, .badge--pastora, .badge--presbitero, .badge--diacono, .badge--obreiro, .badge--profeta, .badge--wine {
  background: var(--gradient-gold); color: oklch(0.17 0.02 60);
}

.tag {
  display: inline-block; font-size: .76rem; font-weight: 500; color: var(--ink-faint);
  background: oklch(1 0 0 / 0.03); border: 1px solid var(--hairline); padding: .32rem .75rem; border-radius: var(--r-full);
  transition: border-color .15s ease, color .15s ease;
}

/* ============ 8. HERO ============ */
.hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--hairline); }
.hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .45; }
.hero__veil {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, oklch(0.16 0.012 60 / 0.97) 10%, oklch(0.16 0.012 60 / 0.7) 55%, oklch(0.16 0.012 60 / 0.9));
}
.hero__inner { position: relative; max-width: var(--container); margin-inline: auto; padding: var(--sp-12) var(--sp-5); }
.hero__content { max-width: 640px; }
.hero__title { margin-top: var(--sp-5); }
.hero__subtitle { margin-top: var(--sp-5); max-width: 40em; font-size: var(--text-lg); color: var(--ink-faint); }
.hero__actions { margin-top: var(--sp-7); display: flex; flex-wrap: wrap; gap: var(--sp-3); }
.hero__stats { margin-top: var(--sp-10); display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-5); max-width: 30rem; border-top: 1px solid var(--hairline); padding-top: var(--sp-6); }
.hero__stat b { display: block; font-family: var(--font-display); font-size: 1.9rem; font-weight: 600; background: var(--gradient-gold); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__stat span { font-size: .78rem; color: var(--ink-faint); }
.hero__art { display: none; }

/* ============ 9. DIVISOR ============ */
.rule-gold, .sign-divider {
  height: 1px; width: 100%;
  background: linear-gradient(90deg, transparent, oklch(0.82 0.13 86 / 0.55), transparent);
  border: none; margin-block: var(--sp-6);
}
.sign-divider__mark { display: none; }
.sign-divider--section { margin-block: 0; }

/* ============ 10. CATEGORIAS PRINCIPAIS ============ */
.category-grid { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 640px) { .category-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1020px) { .category-grid { grid-template-columns: repeat(5, 1fr); } }
.category-card {
  position: relative; background: var(--gradient-surface); border: 1px solid var(--hairline); border-radius: var(--r-xl);
  padding: var(--sp-6) var(--sp-5); text-align: center; box-shadow: var(--shadow-premium); overflow: hidden;
  transition: transform .45s cubic-bezier(.2,.8,.2,1), box-shadow .45s ease;
}
.category-card::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: linear-gradient(140deg, oklch(0.85 0.11 88 / 0.55), transparent 35%, transparent 65%, oklch(0.72 0.1 78 / 0.35));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; opacity: .7; transition: opacity .45s ease;
}
.category-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-premium), var(--shadow-gold); }
.category-card:hover::before { opacity: 1; }
.category-card__icon {
  width: 56px; height: 56px; margin: 0 auto var(--sp-4); border-radius: var(--r-full);
  background: oklch(0.82 0.13 86 / 0.1); border: 1px solid oklch(0.82 0.13 86 / 0.28);
  display: flex; align-items: center; justify-content: center; color: var(--gold);
}
.category-card__icon svg { width: 26px; height: 26px; }
.category-card__title { font-size: 1.1rem; }
.category-card__desc { margin-top: var(--sp-2); font-size: .87rem; color: var(--ink-faint); }

/* ============ 11. SERVOS EM DESTAQUE (premium, com foto) ============ */
.servant-grid { grid-template-columns: repeat(1, 1fr); }
@media (min-width: 620px) { .servant-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1020px) { .servant-grid { grid-template-columns: repeat(4, 1fr); } }

.servant-card {
  position: relative; background: var(--gradient-surface); border-radius: var(--r-xl);
  border: 1px solid var(--hairline); box-shadow: var(--shadow-premium);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .45s cubic-bezier(.2,.8,.2,1), box-shadow .45s ease;
}
.servant-card::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 1px; z-index: 5;
  background: linear-gradient(140deg, oklch(0.85 0.11 88 / 0.55), transparent 35%, transparent 65%, oklch(0.72 0.1 78 / 0.35));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; opacity: .7; transition: opacity .45s ease;
}
.servant-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-premium), var(--shadow-gold); }
.servant-card:hover::before { opacity: 1; }
.servant-card:hover .servant-card__photo img { transform: scale(1.06); }
.servant-card__photo {
  position: relative; aspect-ratio: 4/5; overflow: hidden; background: var(--surface-2);
}
.servant-card__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; will-change: transform; }
.servant-card__photo::after { content: ''; position: absolute; inset: 0; background: var(--gradient-veil); pointer-events: none; }
.servant-card__initials {
  position: absolute; inset: 0; z-index: 0; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 600; font-size: 3rem; color: var(--gold-light);
  background: var(--gradient-surface);
}
.servant-card__badge { position: absolute; top: var(--sp-3); left: var(--sp-3); z-index: 2; }
.servant-card__years { position: absolute; top: var(--sp-3); right: var(--sp-3); z-index: 2; }
.servant-card__overlay { position: absolute; inset-inline: 0; bottom: 0; z-index: 2; padding: var(--sp-4); }
.servant-card__name-overlay { font-family: var(--font-display); font-size: 1.5rem; line-height: 1.15; font-weight: 600; color: var(--ink); }
.servant-card__location { display: flex; align-items: center; gap: .35rem; margin-top: .3rem; font-size: .76rem; color: var(--ink-faint); }
.servant-card__location svg { width: 13px; height: 13px; color: var(--gold); }

.servant-card__body { padding: var(--sp-5); display: flex; flex-direction: column; gap: var(--sp-2); flex: 1; }
.servant-card__role { font-size: .69rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); }
.servant-card__desc { font-size: .87rem; line-height: 1.6; color: var(--ink-faint); flex: 1; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.servant-card__tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: var(--sp-1); }
.servant-card__cta {
  margin-top: auto; padding-top: var(--sp-5);
}
.servant-card__cta .rule-gold { margin-block: 0 var(--sp-4); }

/* ============ 12. FILTRO (Pastores) ============ */
.filter-bar { display: flex; flex-wrap: wrap; gap: var(--sp-3); align-items: center; margin-bottom: var(--sp-7); }
.filter-tabs { display: flex; flex-wrap: wrap; gap: .5rem; }
.filter-btn {
  padding: .6rem 1.1rem; border-radius: var(--r-full); border: 1px solid var(--hairline);
  background: oklch(1 0 0 / 0.03); font-weight: 600; font-size: .83rem; color: var(--ink-faint);
  transition: all .2s ease;
}
.filter-btn:hover { border-color: oklch(0.82 0.13 86 / 0.4); color: var(--gold-light); }
.filter-btn.is-active { background: var(--gradient-gold); color: oklch(0.17 0.02 60); border-color: transparent; box-shadow: var(--shadow-gold); }
.filter-selects { display: flex; gap: .6rem; margin-left: auto; }
.filter-select {
  padding: .6rem 2.2rem .6rem 1rem; border-radius: var(--r-full); border: 1px solid var(--hairline); background: oklch(1 0 0 / 0.03);
  font-weight: 500; font-size: .83rem; color: var(--ink-faint);
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23c9bfa8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center;
}
.filter-select:hover { border-color: oklch(0.82 0.13 86 / 0.4); }
.filter-count { font-size: .85rem; color: var(--ink-faint); margin-bottom: var(--sp-5); font-weight: 500; }
@media (max-width: 640px) { .filter-selects { margin-left: 0; width: 100%; } .filter-select { flex: 1; } }

/* ============ 13. VERSÍCULO DO DIA ============ */
.verse-band {
  position: relative; overflow: hidden;
  background: var(--gradient-surface); border: 1px solid var(--hairline); border-radius: var(--r-xl);
  padding: var(--sp-8) var(--sp-6); box-shadow: var(--shadow-premium); color: var(--ink);
}
.verse-band::before { content: ''; position: absolute; inset: 0; opacity: .35; background-image: radial-gradient(oklch(1 0 0 / 0.06) 1px, transparent 1px); background-size: 3px 3px; pointer-events: none; }
.verse-band__inner { position: relative; max-width: 780px; margin-inline: auto; text-align: center; }
.verse-band .eyebrow { justify-content: center; }
.verse-band__text { font-family: var(--font-display); font-size: var(--text-2xl); line-height: 1.5; margin-top: var(--sp-4); }
.verse-band__ref { margin-top: var(--sp-4); font-weight: 600; color: var(--gold); font-size: .85rem; letter-spacing: .1em; text-transform: uppercase; }
.verse-band__actions { margin-top: var(--sp-6); display: flex; gap: var(--sp-3); justify-content: center; flex-wrap: wrap; }

/* ============ 14. CARDS SECUNDÁRIOS ============ */
.secondary-grid { grid-template-columns: repeat(1,1fr); }
@media (min-width: 620px) { .secondary-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1020px) { .secondary-grid { grid-template-columns: repeat(3,1fr); } }
.secondary-card {
  position: relative; display: flex; gap: var(--sp-4); background: var(--gradient-surface); border: 1px solid var(--hairline);
  border-radius: var(--r-xl); padding: var(--sp-5); box-shadow: var(--shadow-premium); overflow: hidden;
  transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s ease;
}
.secondary-card::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: linear-gradient(140deg, oklch(0.85 0.11 88 / 0.5), transparent 35%, transparent 65%, oklch(0.72 0.1 78 / 0.3));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; opacity: .6; transition: opacity .4s ease;
}
.secondary-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-premium), var(--shadow-gold); }
.secondary-card:hover::before { opacity: 1; }
.secondary-card__icon {
  width: 48px; height: 48px; border-radius: var(--r-md); flex-shrink: 0;
  background: oklch(0.82 0.13 86 / 0.1); border: 1px solid oklch(0.82 0.13 86 / 0.28);
  display: flex; align-items: center; justify-content: center; color: var(--gold);
}
.secondary-card__icon svg { width: 23px; height: 23px; }
.secondary-card__title { font-size: 1.02rem; font-family: var(--font-sans); font-weight: 600; color: var(--ink); }
.secondary-card__desc { font-size: .85rem; color: var(--ink-faint); margin-top: var(--sp-1); }
.secondary-card__link { display: inline-flex; align-items: center; gap: .3rem; margin-top: var(--sp-2); font-size: .8rem; font-weight: 600; color: var(--gold); }
.secondary-card__link svg { width: 13px; height: 13px; transition: transform .18s ease; }
.secondary-card:hover .secondary-card__link svg { transform: translateX(3px); }

/* ============ 15. FAQ (painel único numerado) ============ */
.faq {
  max-width: 780px; margin-inline: auto;
  background: var(--gradient-surface); border: 1px solid var(--hairline); border-radius: var(--r-xl);
  box-shadow: var(--shadow-premium); overflow: hidden;
}
.faq__item { border-top: 1px solid var(--hairline); counter-increment: faq-item; }
.faq__item:first-child { border-top: none; }
.faq { counter-reset: faq-item; }
.faq__q {
  width: 100%; display: flex; align-items: center; gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-6); text-align: left; font-family: var(--font-sans); font-weight: 500; font-size: 1.05rem;
  transition: background .2s ease;
}
.faq__q:hover { background: oklch(1 0 0 / 0.02); }
.faq__q::before {
  content: counter(faq-item, decimal-leading-zero);
  flex-shrink: 0; width: 2rem; height: 2rem; display: grid; place-items: center; border-radius: var(--r-full);
  border: 1px solid oklch(0.82 0.13 86 / 0.35); font-size: .72rem; font-weight: 600; color: var(--gold); font-family: var(--font-sans);
}
.faq__q-text { flex: 1; font-family: var(--font-display); }
.faq__icon { flex-shrink: 0; width: 20px; height: 20px; color: var(--gold); transition: transform .3s ease; }
.faq__q[aria-expanded="true"] .faq__icon { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq__a-inner { padding: 0 var(--sp-6) var(--sp-6) calc(2rem + var(--sp-4) + var(--sp-6)); color: var(--ink-faint); font-size: .92rem; line-height: 1.7; }
@media (max-width: 640px) { .faq__a-inner { padding-left: var(--sp-6); } }

/* ============ 16. BREADCRUMBS ============ */
.breadcrumbs { padding-block: var(--sp-4); font-size: .82rem; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; align-items: center; gap: .4rem; color: var(--ink-faint); }
.breadcrumbs a { color: var(--ink-faint); font-weight: 500; }
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs li:not(:last-child)::after { content: '/'; margin-left: .4rem; color: var(--border); }
.breadcrumbs li[aria-current] { color: var(--ink-soft); font-weight: 500; }

/* ============ 17. ARTIGO / PÁGINA DE CONTEÚDO ============ */
.page-header { padding-block: var(--sp-6) var(--sp-7); border-bottom: 1px solid var(--hairline); }
.page-header__title { margin-top: var(--sp-2); }
.page-header__desc { margin-top: var(--sp-3); font-size: var(--text-lg); color: var(--ink-faint); max-width: 70ch; }
.page-header__meta { margin-top: var(--sp-4); display: flex; gap: var(--sp-4); flex-wrap: wrap; font-size: .82rem; color: var(--ink-faint); }
.page-header__meta strong { color: var(--ink-soft); }

.content-layout { display: grid; gap: var(--sp-8); grid-template-columns: 1fr; align-items: start; }
@media (min-width: 960px) { .content-layout { grid-template-columns: minmax(0,1fr) 340px; } }

.article { max-width: 74ch; }
.article > * + * { margin-top: var(--sp-5); }
.article h2 { margin-top: var(--sp-8); position: relative; padding-bottom: var(--sp-3); }
.article h2::after { content: ''; position: absolute; left: 0; bottom: 0; width: 46px; height: 2px; background: var(--gradient-gold); border-radius: 2px; }
.article h3 { margin-top: var(--sp-6); }
.article p { font-size: 1.04rem; }
.article ul, .article ol { padding-left: 0; color: var(--ink-faint); list-style: none; }
.article ul li { position: relative; padding-left: 1.6rem; }
.article ul li::before {
  content: ''; position: absolute; left: 0; top: .55em; width: 7px; height: 7px; border-radius: 50%;
  background: var(--gradient-gold); box-shadow: 0 0 8px oklch(0.79 0.125 85 / .5);
}
.article ol { counter-reset: article-ol; padding-left: 0; }
.article ol li { position: relative; padding-left: 2.1rem; counter-increment: article-ol; }
.article ol li::before {
  content: counter(article-ol); position: absolute; left: 0; top: -.05em; width: 1.5rem; height: 1.5rem;
  display: flex; align-items: center; justify-content: center; border-radius: 50%;
  border: 1px solid oklch(0.82 0.13 86 / 0.35); color: var(--gold); font-size: .72rem; font-weight: 700;
}
.article li + li { margin-top: .55rem; }
.article blockquote {
  border-left: 2px solid var(--gold); padding: var(--sp-4) var(--sp-5); background: oklch(0.82 0.13 86 / 0.06);
  border-radius: 0 var(--r-md) var(--r-md) 0; font-family: var(--font-display); font-size: 1.25rem; color: var(--ink);
}
.article .prayer-box {
  position: relative; background: var(--gradient-surface); border: 1px solid var(--hairline);
  border-radius: var(--r-xl); padding: var(--sp-6); box-shadow: var(--shadow-premium);
}
.article .prayer-box::before { content: ''; position: absolute; left: var(--sp-6); top: 0; width: 34px; height: 2px; background: var(--gradient-gold); border-radius: 0 0 3px 3px; }
.article .prayer-box p { font-family: var(--font-display); font-size: 1.2rem; line-height: 1.8; color: var(--ink); font-style: italic; }
.copy-btn {
  display: inline-flex; align-items: center; gap: .4rem; font-size: .82rem; font-weight: 600;
  color: var(--gold-light); margin-top: var(--sp-4); border: 1px solid oklch(0.82 0.13 86 / 0.35); padding: .5rem .9rem; border-radius: var(--r-full);
  background: oklch(0.82 0.13 86 / 0.05); transition: background .2s ease, transform .2s ease;
}
.copy-btn:hover { background: oklch(0.82 0.13 86 / 0.12); transform: translateY(-1px); }
.copy-btn svg { width: 15px; height: 15px; }

.byline { display: flex; align-items: center; gap: var(--sp-3); padding: var(--sp-5) 0; border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); margin-top: var(--sp-7) !important; }
.byline__avatar { width: 44px; height: 44px; border-radius: var(--r-full); background: oklch(0.82 0.13 86 / 0.12); color: var(--gold); display: flex; align-items: center; justify-content: center; font-weight: 600; font-family: var(--font-display); flex-shrink: 0; border: 1px solid oklch(0.82 0.13 86 / 0.3); }
.byline__name { font-weight: 600; font-size: .92rem; color: var(--ink); }
.byline__role { font-size: .78rem; color: var(--ink-faint); }

.share-row { display: flex; gap: var(--sp-2); align-items: center; margin-top: var(--sp-6) !important; }
.share-row span { font-size: .82rem; font-weight: 600; color: var(--ink-faint); margin-right: .3rem; }

.sidebar { display: flex; flex-direction: column; gap: var(--sp-6); }
.sidebar__box {
  position: relative; background: var(--gradient-surface); border: 1px solid var(--hairline);
  border-radius: var(--r-xl); padding: var(--sp-5); box-shadow: var(--shadow-premium); overflow: hidden;
}
.sidebar__title { font-size: .74rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: var(--sp-4); }
.sidebar__list { display: flex; flex-direction: column; gap: var(--sp-4); }
.sidebar__item { padding-bottom: var(--sp-4); border-bottom: 1px solid var(--hairline); }
.sidebar__item:last-child { padding-bottom: 0; border-bottom: none; }
.sidebar__item a { font-weight: 600; font-size: .93rem; color: var(--ink); transition: color .15s ease; }
.sidebar__item a:hover { color: var(--gold); }
.sidebar__item p { font-size: .8rem; color: var(--ink-faint); margin-top: .2rem; }
.sidebar__box--cta .btn { white-space: normal; text-align: center; line-height: 1.3; }

.related-grid { grid-template-columns: repeat(1,1fr); margin-top: var(--sp-6); }
@media (min-width: 700px) { .related-grid { grid-template-columns: repeat(3,1fr); } }
.related-card { background: var(--gradient-surface); border: 1px solid var(--hairline); border-radius: var(--r-md); padding: var(--sp-4); box-shadow: var(--shadow-card); }
.related-card span.eyebrow { font-size: .68rem; }
.related-card a { font-weight: 600; font-size: .95rem; display: block; margin-top: .4rem; color: var(--ink); }
.related-card a:hover { color: var(--gold); }

/* Glossário (Sonhos / Nomes / Promessas) */
.glossary { display: grid; gap: var(--sp-4); grid-template-columns: 1fr; }
@media (min-width: 700px) { .glossary { grid-template-columns: repeat(2,1fr); } }
.glossary__item { background: var(--gradient-surface); border: 1px solid var(--hairline); border-radius: var(--r-md); padding: var(--sp-5); box-shadow: var(--shadow-card); transition: transform .2s ease, box-shadow .2s ease; }
.glossary__item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.glossary__term { font-family: var(--font-display); font-size: 1.2rem; color: var(--ink); }
.glossary__meaning { font-size: .8rem; font-weight: 600; color: var(--gold); margin-top: .15rem; text-transform: uppercase; letter-spacing: .05em; }
.glossary__desc { margin-top: var(--sp-2); font-size: .92rem; color: var(--ink-faint); }
.glossary-nav { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: var(--sp-7); }
.glossary-nav a { padding: .5rem 1rem; border-radius: var(--r-full); border: 1px solid var(--hairline); font-weight: 500; font-size: .85rem; color: var(--ink-faint); background: oklch(1 0 0 / 0.03); transition: all .2s ease; }
.glossary-nav a:hover { border-color: oklch(0.82 0.13 86 / 0.4); color: var(--gold-light); }

/* Índice (Bíblia / Salmos) */
.index-groups { display: grid; gap: var(--sp-8); }
.index-group__title { display: flex; align-items: center; gap: var(--sp-3); margin-bottom: var(--sp-4); }
.index-group__title .badge { position: static; }
.book-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: .5rem; }
@media (min-width: 640px) { .book-grid { grid-template-columns: repeat(3,1fr); } }
@media (min-width: 960px) { .book-grid { grid-template-columns: repeat(4,1fr); } }
.book-pill {
  display: flex; align-items: center; justify-content: space-between; gap: .5rem;
  padding: .7rem 1rem; border-radius: var(--r-md); background: oklch(1 0 0 / 0.03); border: 1px solid var(--hairline);
  font-weight: 500; font-size: .88rem; color: var(--ink-faint); transition: all .2s ease;
}
.book-pill--live { color: var(--ink); }
.book-pill--live:hover { border-color: oklch(0.82 0.13 86 / 0.4); color: var(--gold-light); background: oklch(0.82 0.13 86 / 0.06); }
.book-pill--soon { opacity: .45; cursor: default; }
.book-pill small { font-size: .7rem; color: var(--ink-faint); font-weight: 600; }

.cal-table td { padding: .75rem .5rem; border-bottom: 1px solid var(--hairline); vertical-align: top; }
.cal-table tbody tr:last-child td { border-bottom: none; }
.psalm-index { display: flex; flex-wrap: wrap; gap: .5rem; }
.psalm-pill {
  width: 46px; height: 46px; display: flex; align-items: center; justify-content: center;
  border-radius: var(--r-full); border: 1px solid var(--hairline); background: oklch(1 0 0 / 0.03);
  font-weight: 600; font-size: .85rem; color: var(--ink-faint); transition: all .2s ease;
}
.psalm-pill--live { color: oklch(0.17 0.02 60); background: var(--gradient-gold); border-color: transparent; box-shadow: var(--shadow-gold); }
.psalm-pill--live:hover { transform: translateY(-3px) scale(1.05); }

/* ============ 18. FORMULÁRIOS & MODAL ============ */
.form__row { margin-top: var(--sp-4); }
.form__row:first-child { margin-top: 0; }
.form__label { display: block; font-size: .82rem; font-weight: 600; color: var(--ink-soft); margin-bottom: .4rem; }
.form__input {
  width: 100%; padding: .8rem 1rem; border-radius: var(--r-md); border: 1px solid var(--hairline);
  background: oklch(1 0 0 / 0.03); color: var(--ink); font-size: .95rem; transition: border-color .2s ease;
}
.form__input:focus { border-color: var(--gold); }
textarea.form__input { min-height: 120px; resize: vertical; }
.form__note { font-size: .78rem; color: var(--ink-faint); }
.form-note { font-size: .78rem; color: var(--ink-faint); }

.modal-overlay {
  position: fixed; inset: 0; z-index: 100; background: oklch(0.1 0.01 60 / 0.75); backdrop-filter: blur(4px);
  display: none; align-items: center; justify-content: center; padding: var(--sp-5);
}
.modal-overlay.is-open { display: flex; }
.modal {
  position: relative; width: 100%; max-width: 480px; max-height: 90vh; overflow-y: auto;
  background: var(--gradient-surface); border: 1px solid var(--hairline); border-radius: var(--r-xl);
  box-shadow: var(--shadow-premium); padding: var(--sp-7);
}
.modal__close { position: absolute; top: var(--sp-4); right: var(--sp-4); width: 36px; height: 36px; border-radius: var(--r-full); display: flex; align-items: center; justify-content: center; color: var(--ink-faint); border: 1px solid var(--hairline); }
.modal__close:hover { color: var(--gold); background: oklch(1 0 0 / 0.04); }
.modal__close svg { width: 16px; height: 16px; }
.modal__eyebrow { margin-bottom: var(--sp-3); }
.modal__title { margin-top: var(--sp-2); }
.modal__desc { margin-top: var(--sp-3); font-size: .92rem; color: var(--ink-faint); line-height: 1.6; }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field label { font-size: .82rem; font-weight: 600; color: var(--ink-soft); }
.field input, .field textarea {
  padding: .8rem 1rem; border-radius: var(--r-md); border: 1px solid var(--hairline);
  background: oklch(1 0 0 / 0.03); color: var(--ink); font-size: .95rem;
}
.field input:focus, .field textarea:focus { border-color: var(--gold); }
.field textarea { min-height: 100px; resize: vertical; }
.form-grid { display: flex; flex-direction: column; gap: var(--sp-4); }

/* ============ 19. NEWSLETTER ============ */
.newsletter {
  position: relative; overflow: hidden;
  background: var(--gradient-surface); border: 1px solid var(--hairline);
  border-radius: var(--r-xl); padding: var(--sp-8) var(--sp-7); display: grid; gap: var(--sp-5); align-items: center; text-align: center;
  box-shadow: var(--shadow-premium);
}
.newsletter::before {
  content: ''; position: absolute; inset: -30% -10% auto auto; width: 45%; aspect-ratio: 1;
  background: radial-gradient(circle, oklch(0.79 0.125 85 / 0.18), transparent 65%); pointer-events: none;
}
.newsletter form { display: flex; gap: .6rem; max-width: 420px; margin-inline: auto; width: 100%; flex-wrap: wrap; position: relative; }
.newsletter input { flex: 1; min-width: 200px; border: 1px solid var(--hairline); border-radius: var(--r-full); padding: .85rem 1.3rem; background: oklch(1 0 0 / 0.04); color: var(--ink); transition: border-color .2s ease; }
.newsletter input:focus { border-color: var(--gold); }
.newsletter small { display: block; margin-top: var(--sp-3); color: var(--ink-faint); font-size: .76rem; position: relative; }

/* ============ 20. ANÚNCIOS ============ */
.ad-slot { display: none !important; }

/* ============ 21. FOOTER ============ */
.site-footer { background: oklch(0.14 0.012 60); margin-top: var(--sp-12); border-top: 1px solid var(--hairline); }
.footer-top { padding-block: var(--sp-10); }
.footer-grid { display: grid; gap: var(--sp-7); grid-template-columns: repeat(2,1fr); }
@media (min-width: 780px) { .footer-grid { grid-template-columns: 1.4fr repeat(4, 1fr); } }
.footer-brand .brand { color: var(--ink); }
.footer-brand p { margin-top: var(--sp-4); font-size: .87rem; line-height: 1.7; color: var(--ink-faint); max-width: 32ch; }
.footer-social { display: flex; gap: .6rem; margin-top: var(--sp-5); }
.footer-social a { width: 38px; height: 38px; border-radius: var(--r-full); border: 1px solid var(--hairline); display: flex; align-items: center; justify-content: center; color: var(--ink-faint); transition: all .2s ease; }
.footer-social a:hover { background: var(--gradient-gold); color: oklch(0.17 0.02 60); border-color: transparent; }
.footer-social svg { width: 17px; height: 17px; }
.footer-col__title { font-family: var(--font-sans); font-size: .72rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: var(--sp-4); }
.footer-col ul { display: flex; flex-direction: column; gap: .65rem; }
.footer-col a { font-size: .88rem; color: var(--ink-faint); transition: color .15s ease; }
.footer-col a:hover { color: var(--gold-light); }
.footer-verse { text-align: center; md-text-align: right; font-family: var(--font-display); font-style: italic; color: var(--ink-faint); }
.footer-bottom { border-top: 1px solid var(--hairline); padding-block: var(--sp-5); display: flex; flex-wrap: wrap; gap: var(--sp-4); align-items: center; justify-content: space-between; font-size: .8rem; color: var(--ink-faint); }
.footer-bottom a { color: var(--ink-faint); }
.footer-bottom a:hover { color: var(--gold-light); }
.footer-legal { display: flex; gap: var(--sp-4); flex-wrap: wrap; }

/* ============ 22. 404 ============ */
.error-page { min-height: 60vh; display: flex; align-items: center; }
.error-page__inner { width: 100%; }
.error-page__mark { width: 64px; height: 64px; color: var(--gold); margin: 0 auto var(--sp-4); display: block; }
.error-page__code { font-family: var(--font-display); font-size: 6rem; background: var(--gradient-gold); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1; }
.error-page__actions { margin-top: var(--sp-6); display: flex; gap: var(--sp-3); flex-wrap: wrap; justify-content: center; }
.search-hint { text-align: center; padding: var(--sp-10) 0; color: var(--ink-faint); }

/* ============ 23. UTILITÁRIOS ============ */
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.flow > * + * { margin-top: var(--sp-4); }
.max-w-prose { max-width: 68ch; }
.search-hero { background: var(--parchment-deep); padding-block: var(--sp-7); border-bottom: 1px solid var(--hairline); }
.search-box { display: flex; gap: .6rem; max-width: 620px; }
.search-box input { flex: 1; border: 1px solid var(--hairline); border-radius: var(--r-full); padding: .9rem 1.4rem; background: oklch(1 0 0 / 0.04); color: var(--ink); font-size: 1rem; }
.search-box input:focus { border-color: var(--gold); }
.search-box__btn { flex-shrink: 0; display: inline-flex; align-items: center; gap: .5rem; font-weight: 600; font-size: .95rem;
  padding: .85rem 1.5rem; border-radius: var(--r-full); border: none; cursor: pointer;
  background: var(--gradient-gold); color: oklch(0.17 0.02 60); box-shadow: var(--shadow-gold);
  transition: transform .2s ease, filter .2s ease; }
.search-box__btn:hover { transform: translateY(-2px); filter: brightness(1.05); }
.search-box__btn svg { width: 18px; height: 18px; }
.search-results { padding-block: var(--sp-8); display: flex; flex-direction: column; gap: var(--sp-4); }
.search-result { padding: var(--sp-5); border: 1px solid var(--hairline); border-radius: var(--r-md); background: var(--gradient-surface); }
.search-result a { font-family: var(--font-display); font-size: 1.15rem; color: var(--ink); }
.search-result a:hover { color: var(--gold); }
.search-result p { margin-top: var(--sp-2); font-size: .9rem; color: var(--ink-faint); }
.search-empty { text-align: center; padding: var(--sp-10) 0; color: var(--ink-faint); }

/* ============ 24. PRINT ============ */
@media print {
  .site-header, .mobile-nav, .ad-slot, .newsletter, .site-footer, .modal-overlay, .filter-bar, .nav-toggle { display: none !important; }
  body { background: #fff; color: #000; }
  a[href]::after { content: " (" attr(href) ")"; font-size: .75em; }
}
