/* =====================================================================
   Oncle Libom — Bilingual Ministry Website
   Design system: emerald + gold + warm earth neutrals
   Light & dark mode, mobile-first, accessible
   ===================================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* Brand palette */
  --emerald-900: #0b3d2e;
  --emerald-800: #114b39;
  --emerald-700: #16624a;
  --emerald-600: #1c7a5c;
  --emerald-500: #2a9375;
  --gold-500:   #c8a04a;
  --gold-400:   #d8b968;
  --cocoa-900:  #2b211a;
  --cocoa-700:  #4a3c30;

  /* Light theme surfaces */
  --bg:            #f7f4ee;
  --bg-alt:        #efe9df;
  --surface:       #ffffff;
  --surface-2:     #faf7f1;
  --border:        #e2d9c9;
  --text:          #2b211a;
  --text-muted:    #6c5f52;
  --heading:       #0b3d2e;
  --accent:        var(--emerald-700);
  --accent-hover:  var(--emerald-800);
  --gold:          #a9822f;
  --gold-soft:     #f3ead2;
  --shadow:        0 1px 2px rgba(43,33,26,.06), 0 8px 24px rgba(43,33,26,.08);
  --shadow-lg:     0 12px 40px rgba(11,61,46,.16);

  /* Type */
  --font-serif: "Cormorant Garamond", "Playfair Display", Georgia, "Times New Roman", serif;
  --font-sans:  "Inter", "Segoe UI", system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;

  --radius:   14px;
  --radius-sm: 9px;
  --radius-lg: 22px;
  --maxw: 1180px;
  --space: clamp(3.5rem, 8vw, 7rem);
}

[data-theme="dark"] {
  --bg:            #10231c;
  --bg-alt:        #0c1c16;
  --surface:       #163026;
  --surface-2:     #1b3a2e;
  --border:        #244a3b;
  --text:          #e9e3d6;
  --text-muted:    #a9bcae;
  --heading:       #f1ead9;
  --accent:        #3aa984;
  --accent-hover:  #4bbf98;
  --gold:          #e0c072;
  --gold-soft:     #24382b;
  --shadow:        0 1px 2px rgba(0,0,0,.3), 0 10px 30px rgba(0,0,0,.35);
  --shadow-lg:     0 16px 48px rgba(0,0,0,.5);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background .35s ease, color .35s ease;
}
img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }
h1, h2, h3, h4 { font-family: var(--font-serif); color: var(--heading); line-height: 1.12; font-weight: 600; letter-spacing: .2px; }
h1 { font-size: clamp(2.4rem, 6vw, 4.1rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); }
p { color: var(--text); }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(1.1rem, 4vw, 2.4rem); }
.section { padding: var(--space) 0; }
.section--alt { background: var(--bg-alt); }
.eyebrow {
  font-family: var(--font-sans); font-size: .8rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; color: var(--gold);
  margin-bottom: .9rem; display: inline-block;
}
.section-head { max-width: 720px; margin-bottom: 2.6rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.lead { font-size: 1.16rem; color: var(--text-muted); }
.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--emerald-800); color: #fff;
  padding: .7rem 1.1rem; z-index: 200; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-sans); font-weight: 600; font-size: .98rem;
  padding: .82rem 1.5rem; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: all .2s ease; text-align: center; line-height: 1.2;
}
.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: var(--accent-hover); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--ghost { background: transparent; color: var(--heading); border-color: var(--border); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn--gold { background: var(--gold); color: #2b211a; }
.btn--gold:hover { filter: brightness(1.06); transform: translateY(-2px); box-shadow: var(--shadow); color: #2b211a; }
.btn--wa { background: #25d366; color: #06331c; }
.btn--wa:hover { background: #1eb257; color: #06331c; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--sm { padding: .55rem 1rem; font-size: .86rem; }
.btn--block { width: 100%; justify-content: center; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: 74px; }
.brand { display: flex; align-items: center; gap: .65rem; font-family: var(--font-serif); font-weight: 700; font-size: 1.3rem; color: var(--heading); }
.brand:hover { color: var(--heading); }
.brand svg { width: 40px; height: 40px; flex: none; }
.brand small { display: block; font-family: var(--font-sans); font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); font-weight: 700; }

.nav { display: flex; align-items: center; gap: .3rem; }
.nav a {
  color: var(--text); font-weight: 500; font-size: .93rem; padding: .5rem .7rem;
  border-radius: 8px; position: relative; white-space: nowrap;
}
.nav a:hover { color: var(--accent); background: var(--surface-2); }
.nav a.active { color: var(--accent); }
.nav a.active::after {
  content: ""; position: absolute; left: .7rem; right: .7rem; bottom: .2rem; height: 2px;
  background: var(--gold); border-radius: 2px;
}

.header-tools { display: flex; align-items: center; gap: .55rem; }

/* Language switch */
.lang-switch { display: inline-flex; background: var(--surface-2); border: 1px solid var(--border); border-radius: 999px; padding: 3px; }
.lang-switch button {
  border: none; background: transparent; cursor: pointer; font-family: var(--font-sans);
  font-weight: 700; font-size: .82rem; padding: .34rem .72rem; border-radius: 999px;
  color: var(--text-muted); transition: all .18s ease;
}
.lang-switch button.active { background: var(--accent); color: #fff; box-shadow: 0 1px 4px rgba(0,0,0,.15); }

/* Theme toggle */
.icon-btn {
  width: 40px; height: 40px; border-radius: 999px; border: 1px solid var(--border);
  background: var(--surface-2); color: var(--heading); cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; transition: all .2s ease;
}
.icon-btn:hover { border-color: var(--accent); color: var(--accent); }
.icon-btn svg { width: 19px; height: 19px; }
[data-theme="dark"] .theme-toggle .sun { display: block; }
[data-theme="dark"] .theme-toggle .moon { display: none; }
.theme-toggle .sun { display: none; }
.theme-toggle .moon { display: block; }

.menu-btn { display: none; }

/* ---------- Mobile nav ---------- */
@media (max-width: 940px) {
  .menu-btn { display: inline-flex; }
  .nav {
    position: fixed; inset: 74px 0 auto 0; flex-direction: column; align-items: stretch;
    background: var(--bg); border-bottom: 1px solid var(--border); padding: 1rem clamp(1.1rem,4vw,2.4rem) 1.6rem;
    gap: .15rem; transform: translateY(-140%); transition: transform .3s ease; box-shadow: var(--shadow-lg);
    max-height: calc(100vh - 74px); overflow-y: auto;
  }
  .nav.open { transform: translateY(0); }
  .nav a { padding: .8rem .6rem; font-size: 1rem; border-bottom: 1px solid var(--border); border-radius: 0; }
  .nav a.active::after { display: none; }
}

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--emerald-900); color: #f4efe4; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(1200px 500px at 78% -10%, rgba(200,160,74,.28), transparent 60%),
    radial-gradient(900px 600px at 8% 110%, rgba(42,147,117,.4), transparent 60%),
    linear-gradient(160deg, #0b3d2e 0%, #0e4a37 55%, #123f31 100%);
}
.hero-pattern { position: absolute; inset: 0; opacity: .1; background-size: 46px 46px;
  background-image: linear-gradient(var(--gold-400) 1px, transparent 1px), linear-gradient(90deg, var(--gold-400) 1px, transparent 1px); }
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.15fr .85fr; gap: 3rem; align-items: center;
  padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.hero h1 { color: #fefbf3; margin-bottom: 1.2rem; }
.hero .eyebrow { color: var(--gold-400); }
.hero p.lead { color: #dcd3c0; margin-bottom: 2rem; max-width: 46ch; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: .8rem; }
.hero-verse {
  margin-top: 2.4rem; padding-left: 1.2rem; border-left: 3px solid var(--gold-400);
  font-family: var(--font-serif); font-size: 1.25rem; font-style: italic; color: #efe7d3;
}
.hero-card {
  position: relative; z-index: 2; background: rgba(255,255,255,.07); border: 1px solid rgba(216,185,104,.35);
  border-radius: var(--radius-lg); padding: 1.8rem; backdrop-filter: blur(6px); box-shadow: var(--shadow-lg);
}
.hero-card .badge { color: var(--gold-400); font-weight: 700; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; }
.hero-card h3 { color: #fefbf3; margin: .5rem 0 .3rem; }
.hero-card .ref { color: var(--gold-400); font-weight: 600; font-size: .92rem; margin-bottom: .7rem; }
.hero-card p { color: #dcd3c0; font-size: .98rem; margin-bottom: 1.2rem; }
@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
}

/* ---------- Grid + cards ---------- */
.grid { display: grid; gap: 1.4rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.6rem; box-shadow: var(--shadow); transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: color-mix(in srgb, var(--accent) 40%, var(--border)); }
.card h3 { margin-bottom: .5rem; }
.card p { color: var(--text-muted); font-size: .97rem; }
.card .ref { color: var(--gold); font-weight: 600; font-size: .9rem; }

/* Pathway cards */
.pathway { position: relative; padding-top: 1.8rem; }
.pathway .ico {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: var(--gold-soft); color: var(--accent); margin-bottom: 1rem;
}
.pathway .ico svg { width: 26px; height: 26px; }
.pathway .step { position: absolute; top: 1.2rem; right: 1.4rem; font-family: var(--font-serif); font-size: 2.4rem; color: var(--border); font-weight: 700; }
.pathway a.more { margin-top: auto; padding-top: 1rem; font-weight: 600; font-size: .92rem; display: inline-flex; align-items: center; gap: .3rem; }

/* Media / video cards */
.media-card { padding: 0; overflow: hidden; }
.media-thumb {
  position: relative; aspect-ratio: 16/9; background:
    linear-gradient(135deg, var(--emerald-700), var(--emerald-900));
  display: grid; place-items: center; color: #fff;
}
.media-thumb .play { width: 58px; height: 58px; border-radius: 999px; background: rgba(255,255,255,.9); color: var(--emerald-800); display: grid; place-items: center; box-shadow: var(--shadow); transition: transform .2s; }
.media-card:hover .media-thumb .play { transform: scale(1.08); }
.media-thumb .tag { position: absolute; top: .8rem; left: .8rem; background: rgba(0,0,0,.45); color: #fff; font-size: .72rem; font-weight: 600; padding: .25rem .6rem; border-radius: 999px; letter-spacing: .04em; }
.media-body { padding: 1.15rem 1.3rem 1.4rem; }
.media-body h3 { font-size: 1.15rem; margin-bottom: .3rem; }
.media-body .meta { color: var(--text-muted); font-size: .85rem; }

/* Audio row */
.audio-row { display: flex; align-items: center; gap: 1rem; }
.audio-play { width: 46px; height: 46px; border-radius: 999px; background: var(--accent); color: #fff; display: grid; place-items: center; flex: none; }
.audio-bar { flex: 1; height: 5px; background: var(--border); border-radius: 999px; position: relative; overflow: hidden; }
.audio-bar::after { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 32%; background: var(--gold); border-radius: 999px; }

/* Devotional block */
.dev-tabs { display: inline-flex; gap: .3rem; background: var(--surface-2); border: 1px solid var(--border); border-radius: 999px; padding: 4px; margin-bottom: 1rem; }
.dev-tabs button { border: none; background: transparent; cursor: pointer; font-weight: 600; font-size: .84rem; padding: .35rem .9rem; border-radius: 999px; color: var(--text-muted); }
.dev-tabs button.active { background: var(--surface); color: var(--accent); box-shadow: var(--shadow); }
.dev-feature { display: grid; grid-template-columns: 1.1fr .9fr; gap: 2.2rem; align-items: stretch; }
@media (max-width: 820px) { .dev-feature { grid-template-columns: 1fr; } }
.dev-scripture {
  background: var(--emerald-900); color: #f2ecdc; border-radius: var(--radius-lg); padding: 2.2rem;
  display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden;
}
.dev-scripture::before { content: "\201C"; position: absolute; top: -.3rem; left: 1rem; font-family: var(--font-serif); font-size: 8rem; color: rgba(216,185,104,.25); }
.dev-scripture blockquote { font-family: var(--font-serif); font-size: 1.5rem; font-style: italic; line-height: 1.35; position: relative; z-index: 1; }
.dev-scripture cite { display: block; margin-top: 1rem; color: var(--gold-400); font-style: normal; font-weight: 600; }

/* Identity / feature split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.split.reverse .split-media { order: 2; }
@media (max-width: 820px) { .split { grid-template-columns: 1fr; gap: 2rem; } .split.reverse .split-media { order: 0; } }
.figure {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--border);
  aspect-ratio: 4/3; position: relative;
}
.figure .ph-label { position: absolute; bottom: .8rem; left: .8rem; background: rgba(0,0,0,.5); color: #fff; font-size: .72rem; padding: .3rem .6rem; border-radius: 6px; }

/* Image placeholder look */
.ph {
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,.04) 0 12px, transparent 12px 24px),
    linear-gradient(135deg, var(--emerald-700), var(--emerald-900) 70%);
  color: #eadfae; display: grid; place-items: center; text-align: center; padding: 1rem;
}
.ph.gold { background: linear-gradient(135deg, #b78b34, #7c5a1c); color: #fff6e0; }
.ph .ph-ico { width: 44px; height: 44px; opacity: .85; margin-bottom: .5rem; }
.ph span { font-size: .8rem; letter-spacing: .04em; opacity: .9; }

/* Leader block */
.leader { display: grid; grid-template-columns: .8fr 1.2fr; gap: 2.6rem; align-items: center; }
@media (max-width: 820px) { .leader { grid-template-columns: 1fr; } }
.leader .portrait { aspect-ratio: 3/4; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 2px solid var(--gold-soft); }
.signature { font-family: var(--font-serif); font-size: 1.6rem; font-style: italic; color: var(--accent); margin-top: 1rem; }
.roles { list-style: none; padding: 0; margin: 1.2rem 0 0; display: grid; gap: .5rem; }
.roles li { display: flex; gap: .6rem; align-items: flex-start; color: var(--text-muted); font-size: .96rem; }
.roles li svg { width: 18px; height: 18px; color: var(--gold); flex: none; margin-top: .28rem; }

/* WhatsApp band */
.wa-band { background: linear-gradient(135deg, #0d3f2f, #12513c); color: #f2ecdc; border-radius: var(--radius-lg); padding: clamp(2rem,5vw,3.4rem); position: relative; overflow: hidden; }
.wa-band h2 { color: #fefbf3; }
.wa-band p { color: #d6cdba; }
.wa-icon { width: 62px; height: 62px; border-radius: 16px; background: #25d366; color: #06331c; display: grid; place-items: center; margin-bottom: 1rem; }
.wa-icon svg { width: 34px; height: 34px; }

/* Steps list */
.steps { counter-reset: s; list-style: none; padding: 0; display: grid; gap: 1rem; }
.steps li { position: relative; padding-left: 3.4rem; }
.steps li::before {
  counter-increment: s; content: counter(s); position: absolute; left: 0; top: -.1rem;
  width: 38px; height: 38px; border-radius: 999px; background: var(--gold-soft); color: var(--accent);
  font-family: var(--font-serif); font-weight: 700; font-size: 1.15rem; display: grid; place-items: center;
}
.steps li strong { color: var(--heading); }

/* Forms */
.form { display: grid; gap: 1.1rem; }
.form-row { display: grid; gap: 1.1rem; grid-template-columns: 1fr 1fr; }
@media (max-width: 620px) { .form-row { grid-template-columns: 1fr; } }
.field label { display: block; font-weight: 600; font-size: .88rem; margin-bottom: .35rem; color: var(--heading); }
.field input, .field select, .field textarea {
  width: 100%; padding: .8rem 1rem; border-radius: var(--radius-sm); border: 1.5px solid var(--border);
  background: var(--surface); color: var(--text); font-family: inherit; font-size: 1rem; transition: border-color .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--accent); outline: none; }
.field textarea { min-height: 140px; resize: vertical; }
.note { font-size: .84rem; color: var(--text-muted); }
.placeholder-tag {
  display: inline-block; background: var(--gold-soft); color: var(--gold); border: 1px dashed var(--gold);
  font-size: .74rem; font-weight: 700; padding: .2rem .55rem; border-radius: 6px; letter-spacing: .03em;
}

/* Page hero (inner) */
.page-hero { background: var(--emerald-900); color: #f3ecdc; position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0;
  background: radial-gradient(800px 400px at 85% -20%, rgba(200,160,74,.25), transparent 60%), linear-gradient(160deg, #0b3d2e, #123f31); }
.page-hero-inner { position: relative; z-index: 2; padding: clamp(3rem,7vw,5rem) 0 clamp(2.6rem,6vw,4rem); max-width: 760px; }
.page-hero h1 { color: #fefbf3; margin-bottom: .9rem; }
.page-hero p { color: #d9d0bd; font-size: 1.12rem; }
.breadcrumb { font-size: .82rem; color: var(--gold-400); margin-bottom: 1rem; letter-spacing: .04em; }
.breadcrumb a { color: var(--gold-400); }

/* Prose */
.prose { max-width: 760px; }
.prose p { margin-bottom: 1.2rem; color: var(--text); }
.prose h2 { margin: 2.4rem 0 1rem; }
.prose h3 { margin: 1.8rem 0 .7rem; }
.prose ul { margin: 0 0 1.2rem 1.1rem; color: var(--text); }
.prose li { margin-bottom: .5rem; }

/* Callout */
.callout { background: var(--surface-2); border: 1px solid var(--border); border-left: 4px solid var(--gold); border-radius: var(--radius); padding: 1.4rem 1.6rem; }

/* Stat / values */
.stat { text-align: center; }
.stat .num { font-family: var(--font-serif); font-size: 2.8rem; color: var(--accent); font-weight: 700; line-height: 1; }
.stat .lbl { color: var(--text-muted); font-size: .9rem; margin-top: .4rem; }

/* Tag pills */
.pills { display: flex; flex-wrap: wrap; gap: .5rem; }
.pill { background: var(--surface-2); border: 1px solid var(--border); border-radius: 999px; padding: .35rem .85rem; font-size: .82rem; font-weight: 600; color: var(--text-muted); cursor: pointer; }
.pill:hover, .pill.active { background: var(--accent); color: #fff; border-color: var(--accent); }

/* CTA band */
.cta-band { background: linear-gradient(135deg, var(--emerald-800), var(--emerald-900)); color: #f3ecdc; border-radius: var(--radius-lg); padding: clamp(2.4rem,6vw,4rem); text-align: center; }
.cta-band h2 { color: #fefbf3; margin-bottom: .8rem; }
.cta-band p { color: #d6cdba; max-width: 560px; margin: 0 auto 1.8rem; }
.cta-band .hero-ctas { justify-content: center; }

/* Share buttons */
.share { display: inline-flex; gap: .4rem; align-items: center; flex-wrap: wrap; }
.share span { font-size: .82rem; color: var(--text-muted); font-weight: 600; }
.share button { width: 36px; height: 36px; border-radius: 999px; border: 1px solid var(--border); background: var(--surface-2); color: var(--text-muted); display: grid; place-items: center; cursor: pointer; transition: all .2s; }
.share button:hover { color: var(--accent); border-color: var(--accent); transform: translateY(-2px); }
.share button svg { width: 16px; height: 16px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--emerald-900); color: #cfc6b3; padding: 3.4rem 0 1.8rem; margin-top: 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2rem; }
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.8rem; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { color: #f1ead9; font-size: 1rem; margin-bottom: 1rem; font-family: var(--font-sans); font-weight: 700; letter-spacing: .02em; }
.site-footer a { color: #cfc6b3; font-size: .92rem; display: block; padding: .28rem 0; }
.site-footer a:hover { color: var(--gold-400); }
.footer-brand p { color: #b7ad99; font-size: .94rem; margin: 1rem 0; max-width: 34ch; }
.footer-brand .brand { color: #f1ead9; }
.footer-brand .brand small { color: var(--gold-400); }
.socials { display: flex; gap: .6rem; margin-top: 1rem; }
.socials a { width: 38px; height: 38px; border-radius: 999px; border: 1px solid rgba(255,255,255,.16); display: grid; place-items: center; }
.socials a:hover { background: rgba(216,185,104,.16); border-color: var(--gold-400); }
.socials svg { width: 18px; height: 18px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 2.4rem; padding-top: 1.4rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .84rem; color: #a99f8b; }

/* Bilingual visibility (JS-driven) */
[data-en], [data-fr] { }

/* Utilities */
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mb-0 { margin-bottom: 0; }
.text-center { text-align: center; }
.muted { color: var(--text-muted); }
.hide { display: none !important; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { * { scroll-behavior: auto !important; } .reveal { opacity: 1; transform: none; transition: none; } }
