/* ============================================================
   FinoviaReview — Design System
   Palette: Royal Purple · Rose Gold · Pearl White · Light Gray · Anthracite
   ============================================================ */

:root {
  /* Core palette */
  --royal: #5b2a9d;
  --royal-deep: #3d1a70;
  --royal-soft: #7c4dd1;
  --rose-gold: #b76e79;
  --rose-gold-soft: #d9a7ad;
  --rose-gold-tint: #f3e3e4;
  --pearl: #fbf8f6;
  --pearl-2: #f5f0ef;
  --light-gray: #e9e6ee;
  --anthracite: #23222b;
  --anthracite-2: #34333f;
  --ink: #2c2b34;
  --muted: #6b6976;

  /* Gradients */
  --grad-royal: linear-gradient(135deg, #5b2a9d 0%, #7c4dd1 100%);
  --grad-rose: linear-gradient(135deg, #b76e79 0%, #d9a7ad 100%);
  --grad-hero: linear-gradient(120deg, rgba(35,34,43,0.92) 0%, rgba(61,26,112,0.82) 55%, rgba(91,42,157,0.72) 100%);
  --grad-deep: linear-gradient(160deg, #2b1b52 0%, #3d1a70 60%, #5b2a9d 100%);

  /* Typography */
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Metrics */
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --shadow-sm: 0 4px 16px rgba(35, 34, 43, 0.06);
  --shadow: 0 18px 44px rgba(61, 26, 112, 0.10);
  --shadow-lg: 0 30px 70px rgba(35, 34, 43, 0.16);
  --ring: 0 0 0 1px rgba(91, 42, 157, 0.08);
  --container: 1200px;
  --gutter: clamp(1.1rem, 4vw, 2.4rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; width: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--pearl);
  line-height: 1.7;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.14; color: var(--anthracite); letter-spacing: -0.01em; }
h1 { font-size: clamp(2.4rem, 5.4vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.8vw, 2.9rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }
h4 { font-size: 1.12rem; }
p { color: var(--ink); }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.28rem); color: var(--muted); line-height: 1.75; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container-wide { max-width: 1360px; }
.section { padding-block: clamp(3.6rem, 8vw, 7rem); }
.section-tight { padding-block: clamp(2.6rem, 5vw, 4.2rem); }
.center { text-align: center; }
.grid { display: grid; gap: clamp(1.2rem, 2.6vw, 2rem); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--font-body); font-weight: 600; font-size: 0.78rem;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--royal);
  margin-bottom: 1rem;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--grad-rose); border-radius: 2px; }
.eyebrow.on-dark { color: var(--rose-gold-soft); }
.section-head { max-width: 760px; margin-bottom: clamp(2rem, 4vw, 3.2rem); }
.section-head.center { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-weight: 600; font-size: 0.97rem; letter-spacing: 0.01em;
  padding: 0.95rem 1.9rem; border-radius: 999px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.3s;
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--grad-royal); color: #fff; box-shadow: 0 14px 30px rgba(91, 42, 157, 0.32); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 20px 40px rgba(91, 42, 157, 0.42); }
.btn-ghost { background: transparent; color: var(--anthracite); border: 1.5px solid rgba(35,34,43,0.16); }
.btn-ghost:hover { border-color: var(--royal); color: var(--royal); transform: translateY(-3px); }
.btn-light { background: rgba(255,255,255,0.12); color: #fff; border: 1.5px solid rgba(255,255,255,0.3); backdrop-filter: blur(6px); }
.btn-light:hover { background: rgba(255,255,255,0.22); transform: translateY(-3px); }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 248, 246, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s, border-color 0.3s, background 0.3s;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); border-color: var(--light-gray); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 78px; }
.brand { display: flex; align-items: center; gap: 0.7rem; font-family: var(--font-display); font-weight: 700; font-size: 1.35rem; color: var(--anthracite); }
.brand .logo-mark { width: 40px; height: 40px; flex: none; }
.brand b { color: var(--royal); font-weight: 700; }
.nav-links { display: flex; align-items: center; gap: 0.4rem; }
.nav-links a {
  position: relative; font-weight: 500; font-size: 0.98rem; color: var(--ink);
  padding: 0.55rem 0.95rem; border-radius: 999px; transition: color 0.25s, background 0.25s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 50%; bottom: 6px; width: 0; height: 2px;
  background: var(--grad-rose); border-radius: 2px; transform: translateX(-50%); transition: width 0.3s var(--ease);
}
.nav-links a:hover { color: var(--royal); }
.nav-links a.active { color: var(--royal); }
.nav-links a.active::after { width: 22px; }
.nav-cta { display: flex; align-items: center; gap: 0.9rem; }
.nav-toggle { display: none; width: 46px; height: 46px; border-radius: 12px; background: var(--pearl-2); align-items: center; justify-content: center; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--anthracite); position: relative; transition: 0.3s; }
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; width: 22px; height: 2px; background: var(--anthracite); transition: 0.3s; }
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }
body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
body.nav-open .nav-toggle span::after { top: 0; transform: rotate(-45deg); }

/* ============================================================
   Hero
   ============================================================ */
.hero { position: relative; overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after { content: ""; position: absolute; inset: 0; background: var(--grad-hero); }
.hero-inner { padding-block: clamp(4.5rem, 12vw, 9rem); color: #fff; }
.hero-inner .eyebrow { color: var(--rose-gold-soft); }
.hero h1 { color: #fff; max-width: 16ch; }
.hero h1 em { font-style: italic; color: var(--rose-gold-soft); }
.hero .lead { color: rgba(255,255,255,0.86); max-width: 54ch; margin-top: 1.4rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 2rem; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.18); }
.hero-badge b { display: block; font-family: var(--font-display); font-size: 1.9rem; color: #fff; line-height: 1; }
.hero-badge span { font-size: 0.85rem; color: rgba(255,255,255,0.72); }

/* Page hero (secondary pages) */
.page-hero { position: relative; overflow: hidden; }
.page-hero-media { position: absolute; inset: 0; z-index: -2; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-media::after { content: ""; position: absolute; inset: 0; background: var(--grad-hero); }
.page-hero-inner { padding-block: clamp(3.6rem, 9vw, 6.5rem); color: #fff; max-width: 720px; }
.page-hero-inner .eyebrow { color: var(--rose-gold-soft); }
.page-hero h1 { color: #fff; }
.page-hero .lead { color: rgba(255,255,255,0.86); margin-top: 1.1rem; }
.breadcrumb { font-size: 0.85rem; color: rgba(255,255,255,0.7); margin-bottom: 1.4rem; }
.breadcrumb a:hover { color: #fff; }

/* ============================================================
   Cards / feature blocks
   ============================================================ */
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.cards-2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: #fff; border-radius: var(--radius-lg); padding: 2.2rem;
  box-shadow: var(--shadow-sm); border: 1px solid var(--light-gray);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.card-icon {
  width: 60px; height: 60px; border-radius: 16px; display: grid; place-items: center;
  background: var(--rose-gold-tint); color: var(--royal); margin-bottom: 1.4rem;
}
.card-icon svg { width: 28px; height: 28px; }
.card h3 { margin-bottom: 0.6rem; }
.card p { color: var(--muted); font-size: 0.98rem; }
.card .card-num { font-family: var(--font-display); font-size: 1.05rem; color: var(--rose-gold); font-weight: 700; }

.card-feature { position: relative; overflow: hidden; }
.card-feature::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--grad-royal); transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease);
}
.card-feature:hover::before { transform: scaleX(1); }

/* ============================================================
   Split sections (alternating)
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.split-media .media-badge {
  position: absolute; background: #fff; border-radius: var(--radius); padding: 1.1rem 1.4rem;
  box-shadow: var(--shadow); display: flex; align-items: center; gap: 0.9rem; max-width: 260px;
}
.media-badge.bottom-left { bottom: -22px; left: -22px; }
.media-badge.top-right { top: -22px; right: -22px; }
.media-badge .mb-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--grad-royal); display: grid; place-items: center; color: #fff; flex: none; }
.media-badge .mb-icon svg { width: 22px; height: 22px; }
.media-badge b { display: block; font-family: var(--font-display); font-size: 1.15rem; color: var(--anthracite); }
.media-badge span { font-size: 0.8rem; color: var(--muted); }
.split-body h2 { margin-bottom: 1rem; }
.split-body .lead { margin-bottom: 1.4rem; }
.check-list { display: grid; gap: 0.9rem; margin-top: 1.5rem; }
.check-list li { display: flex; gap: 0.85rem; align-items: flex-start; font-size: 0.98rem; }
.check-list .ck { width: 26px; height: 26px; border-radius: 8px; background: var(--rose-gold-tint); color: var(--royal); display: grid; place-items: center; flex: none; margin-top: 2px; }
.check-list .ck svg { width: 15px; height: 15px; }
.check-list b { color: var(--anthracite); }

/* ============================================================
   Statistics
   ============================================================ */
.stats-band { background: var(--grad-deep); color: #fff; position: relative; overflow: hidden; }
.stats-band::before, .stats-band::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(10px); opacity: 0.5;
}
.stats-band::before { width: 340px; height: 340px; background: radial-gradient(circle, rgba(183,110,121,0.5), transparent 70%); top: -120px; right: -60px; }
.stats-band::after { width: 300px; height: 300px; background: radial-gradient(circle, rgba(124,77,209,0.5), transparent 70%); bottom: -140px; left: -60px; }
.stats-grid { grid-template-columns: repeat(4, 1fr); position: relative; z-index: 1; }
.stat { text-align: center; padding: 1rem; }
.stat b { display: block; font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 3.4rem); line-height: 1; color: #fff; }
.stat b .plus { color: var(--rose-gold-soft); }
.stat span { display: block; margin-top: 0.6rem; font-size: 0.92rem; color: rgba(255,255,255,0.75); letter-spacing: 0.02em; }
.stat + .stat { border-left: 1px solid rgba(255,255,255,0.12); }

/* ============================================================
   Timeline
   ============================================================ */
.timeline { position: relative; max-width: 860px; margin-inline: auto; }
.timeline::before { content: ""; position: absolute; left: 27px; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(var(--royal-soft), var(--rose-gold)); }
.tl-item { position: relative; padding-left: 78px; padding-bottom: 2.6rem; }
.tl-item:last-child { padding-bottom: 0; }
.tl-dot { position: absolute; left: 0; top: 0; width: 56px; height: 56px; border-radius: 16px; background: #fff; box-shadow: var(--shadow-sm); border: 1px solid var(--light-gray); display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; color: var(--royal); font-size: 1.15rem; }
.tl-item h3 { margin-bottom: 0.5rem; }
.tl-item p { color: var(--muted); font-size: 0.98rem; }

/* ============================================================
   Values / icon grid
   ============================================================ */
.value-grid { grid-template-columns: repeat(3, 1fr); }
.value {
  background: #fff; border-radius: var(--radius); padding: 1.8rem;
  border: 1px solid var(--light-gray); transition: 0.35s var(--ease);
  display: flex; gap: 1.1rem; align-items: flex-start;
}
.value:hover { border-color: var(--rose-gold-soft); transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.value .v-icon { width: 46px; height: 46px; border-radius: 12px; background: var(--grad-rose); color: #fff; display: grid; place-items: center; flex: none; }
.value .v-icon svg { width: 22px; height: 22px; }
.value h4 { margin-bottom: 0.35rem; }
.value p { font-size: 0.92rem; color: var(--muted); }

/* ============================================================
   Team
   ============================================================ */
.team-grid { grid-template-columns: repeat(3, 1fr); }
.team-card { background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--light-gray); transition: 0.4s var(--ease); }
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.team-photo { aspect-ratio: 4/4.4; overflow: hidden; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.team-card:hover .team-photo img { transform: scale(1.05); }
.team-info { padding: 1.5rem 1.6rem 1.8rem; }
.team-info h4 { font-size: 1.2rem; margin-bottom: 0.2rem; }
.team-role { color: var(--rose-gold); font-weight: 600; font-size: 0.88rem; letter-spacing: 0.03em; }
.team-info p { color: var(--muted); font-size: 0.92rem; margin-top: 0.7rem; }

/* ============================================================
   Analize (articles)
   ============================================================ */
.topic-index { grid-template-columns: repeat(3, 1fr); }
.topic-teaser { background: #fff; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--light-gray); box-shadow: var(--shadow-sm); transition: 0.4s var(--ease); display: flex; flex-direction: column; }
.topic-teaser:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.topic-teaser .tt-img { aspect-ratio: 16/10; overflow: hidden; }
.topic-teaser .tt-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.topic-teaser:hover .tt-img img { transform: scale(1.06); }
.topic-teaser .tt-body { padding: 1.6rem; flex: 1; display: flex; flex-direction: column; }
.tt-tag { display: inline-block; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--royal); background: var(--rose-gold-tint); padding: 0.3rem 0.8rem; border-radius: 999px; margin-bottom: 0.9rem; align-self: flex-start; }
.topic-teaser h3 { font-size: 1.3rem; margin-bottom: 0.6rem; }
.topic-teaser p { color: var(--muted); font-size: 0.95rem; }
.tt-link { margin-top: auto; padding-top: 1.1rem; color: var(--royal); font-weight: 600; font-size: 0.92rem; display: inline-flex; align-items: center; gap: 0.4rem; }
.tt-link svg { width: 16px; height: 16px; flex: none; }
.topic-teaser:hover .tt-link { gap: 0.7rem; }

/* Article body */
.article { max-width: 820px; margin-inline: auto; }
.article + .article { margin-top: clamp(3rem, 7vw, 5.5rem); padding-top: clamp(3rem, 7vw, 5.5rem); border-top: 1px solid var(--light-gray); }
.article-head { margin-bottom: 2rem; }
.article-cover { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 2.2rem; box-shadow: var(--shadow); }
.article-cover img { width: 100%; aspect-ratio: 16/8; object-fit: cover; }
.article h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-bottom: 0.8rem; }
.article-meta { display: flex; flex-wrap: wrap; gap: 1.2rem; font-size: 0.85rem; color: var(--muted); margin-bottom: 0.4rem; }
.article-meta span { display: inline-flex; align-items: center; gap: 0.4rem; }
.article-body h3 { margin-top: 2.2rem; margin-bottom: 0.8rem; }
.article-body p { margin-bottom: 1.1rem; }
.article-body p + h3 { margin-top: 2rem; }
.article-body strong { color: var(--anthracite); }
.article-body ul.dotted { margin: 0.6rem 0 1.4rem; display: grid; gap: 0.7rem; }
.article-body ul.dotted li { position: relative; padding-left: 1.7rem; color: var(--ink); }
.article-body ul.dotted li::before { content: ""; position: absolute; left: 0; top: 0.6rem; width: 9px; height: 9px; border-radius: 50%; background: var(--grad-rose); }
.callout { background: var(--pearl-2); border-left: 4px solid var(--royal); border-radius: var(--radius-sm); padding: 1.4rem 1.6rem; margin: 1.8rem 0; }
.callout p:last-child { margin-bottom: 0; }
.example-box { background: #fff; border: 1px solid var(--light-gray); border-radius: var(--radius); padding: 1.6rem 1.8rem; margin: 1.6rem 0; box-shadow: var(--shadow-sm); }
.example-box .eb-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--rose-gold); margin-bottom: 0.6rem; }
.takeaways { background: var(--grad-deep); color: #fff; border-radius: var(--radius-lg); padding: 2rem 2.2rem; margin-top: 2rem; }
.takeaways h4 { color: #fff; font-family: var(--font-body); font-weight: 700; letter-spacing: 0.02em; margin-bottom: 1rem; display: flex; align-items: center; gap: 0.6rem; }
.takeaways ul { display: grid; gap: 0.8rem; }
.takeaways li { position: relative; padding-left: 2rem; color: rgba(255,255,255,0.9); font-size: 0.98rem; }
.takeaways li::before { content: ""; position: absolute; left: 0; top: 3px; width: 20px; height: 20px; border-radius: 6px; background: rgba(255,255,255,0.14); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d9a7ad' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; background-size: 13px; }

/* Mini table for budgeting example */
.mini-table { width: 100%; table-layout: fixed; border-collapse: collapse; margin: 1.4rem 0; font-size: 0.95rem; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.mini-table th, .mini-table td { text-align: left; padding: 0.85rem 1.1rem; border-bottom: 1px solid var(--light-gray); overflow-wrap: anywhere; }
.mini-table thead th { background: var(--pearl-2); font-family: var(--font-body); font-weight: 700; color: var(--anthracite); font-size: 0.82rem; letter-spacing: 0.05em; text-transform: uppercase; }
.mini-table tbody tr:last-child td { border-bottom: none; }
.mini-table td:last-child, .mini-table th:last-child { text-align: right; font-weight: 600; }

/* ============================================================
   CTA band
   ============================================================ */
.cta-band { position: relative; overflow: hidden; background: var(--grad-royal); color: #fff; border-radius: var(--radius-xl); padding: clamp(2.6rem, 6vw, 4.6rem); text-align: center; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.14), transparent 40%), radial-gradient(circle at 80% 80%, rgba(183,110,121,0.4), transparent 45%); }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; max-width: 20ch; margin-inline: auto; }
.cta-band p { color: rgba(255,255,255,0.86); max-width: 56ch; margin: 1rem auto 2rem; }

/* ============================================================
   Contact
   ============================================================ */
.contact-grid { grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contact-card { background: #fff; border-radius: var(--radius-lg); padding: 2.2rem; border: 1px solid var(--light-gray); box-shadow: var(--shadow-sm); }
.contact-line { display: flex; gap: 1rem; align-items: flex-start; padding: 1.1rem 0; border-bottom: 1px solid var(--light-gray); }
.contact-line:last-child { border-bottom: none; }
.contact-line .cl-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--rose-gold-tint); color: var(--royal); display: grid; place-items: center; flex: none; }
.contact-line .cl-icon svg { width: 22px; height: 22px; }
.contact-line b { display: block; color: var(--anthracite); font-size: 1rem; }
.contact-line a, .contact-line span { color: var(--muted); font-size: 0.95rem; word-break: break-word; }
.contact-line a:hover { color: var(--royal); }
.hours-list { display: grid; gap: 0.7rem; margin-top: 0.5rem; }
.hours-list li { display: flex; justify-content: space-between; font-size: 0.95rem; padding: 0.5rem 0; border-bottom: 1px dashed var(--light-gray); }
.hours-list li span:last-child { color: var(--royal); font-weight: 600; }
.social-row { display: flex; gap: 0.8rem; margin-top: 1.4rem; }
.social-row a { width: 46px; height: 46px; border-radius: 12px; background: var(--pearl-2); display: grid; place-items: center; color: var(--anthracite); transition: 0.3s var(--ease); }
.social-row a:hover { background: var(--grad-royal); color: #fff; transform: translateY(-4px); }
.social-row svg { width: 20px; height: 20px; }
.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--light-gray); margin-top: 2rem; }
.map-embed iframe { width: 100%; height: 320px; border: 0; display: block; }

/* ============================================================
   Legal pages
   ============================================================ */
.legal { max-width: 840px; margin-inline: auto; }
.legal h2 { font-size: 1.5rem; margin-top: 2.4rem; margin-bottom: 0.8rem; }
.legal h3 { font-size: 1.2rem; margin-top: 1.6rem; margin-bottom: 0.5rem; }
.legal p { margin-bottom: 1rem; color: var(--ink); }
.legal ul.dotted { margin: 0.4rem 0 1.4rem; display: grid; gap: 0.6rem; }
.legal ul.dotted li { position: relative; padding-left: 1.7rem; }
.legal ul.dotted li::before { content: ""; position: absolute; left: 0; top: 0.6rem; width: 9px; height: 9px; border-radius: 50%; background: var(--grad-rose); }
.legal .updated { color: var(--muted); font-size: 0.9rem; margin-bottom: 2rem; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--anthracite); color: rgba(255,255,255,0.72); padding-block: clamp(3rem, 6vw, 4.6rem) 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2.4rem; padding-bottom: 2.6rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-grid > * { min-width: 0; }
.footer-brand .brand { color: #fff; margin-bottom: 1.1rem; }
.footer-brand .brand b { color: var(--rose-gold-soft); }
.footer-brand p { font-size: 0.94rem; color: rgba(255,255,255,0.6); max-width: 34ch; }
.footer-col h5 { color: #fff; font-family: var(--font-body); font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer-col ul { display: grid; gap: 0.7rem; }
.footer-col a { font-size: 0.94rem; color: rgba(255,255,255,0.66); transition: color 0.25s, padding 0.25s; overflow-wrap: anywhere; }
.footer-col a:hover { color: var(--rose-gold-soft); padding-left: 4px; }
.footer-social { display: flex; gap: 0.7rem; margin-top: 0.4rem; }
.footer-social a { width: 42px; height: 42px; border-radius: 11px; background: rgba(255,255,255,0.08); display: grid; place-items: center; color: #fff; transition: 0.3s var(--ease); }
.footer-social a:hover { background: var(--grad-royal); transform: translateY(-3px); }
.footer-social svg { width: 19px; height: 19px; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; padding-top: 1.8rem; font-size: 0.86rem; color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--rose-gold-soft); }

/* ============================================================
   Cookie consent
   ============================================================ */
.cookie-banner {
  position: fixed; left: 50%; bottom: 22px; transform: translateX(-50%) translateY(140%);
  width: min(960px, calc(100% - 2.4rem)); z-index: 200;
  background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  border: 1px solid var(--light-gray);
  padding: 1.5rem 1.7rem; display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap;
  transition: transform 0.5s var(--ease); opacity: 0;
}
.cookie-banner.show { transform: translateX(-50%) translateY(0); opacity: 1; }
.cookie-icon { width: 52px; height: 52px; border-radius: 14px; background: var(--rose-gold-tint); color: var(--royal); display: grid; place-items: center; flex: none; }
.cookie-icon svg { width: 26px; height: 26px; }
.cookie-text { flex: 1; min-width: 240px; }
.cookie-text b { color: var(--anthracite); font-family: var(--font-display); font-size: 1.1rem; }
.cookie-text p { font-size: 0.9rem; color: var(--muted); margin-top: 0.2rem; }
.cookie-text a { color: var(--royal); font-weight: 600; text-decoration: underline; }
.cookie-actions { display: flex; gap: 0.7rem; flex-wrap: wrap; }
.cookie-actions .btn { padding: 0.7rem 1.4rem; font-size: 0.9rem; }

/* ============================================================
   Reveal animations
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   Section tints
   ============================================================ */
.bg-pearl { background: var(--pearl); }
.bg-pearl-2 { background: var(--pearl-2); }
.bg-white { background: #fff; }
.decor-top { border-top: 1px solid var(--light-gray); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 960px) {
  .cards-3, .value-grid, .team-grid, .topic-index { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .stat:nth-child(3) { border-left: none; }
  .stat + .stat { border-left: none; }
  .split { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .split-media img { aspect-ratio: 16/10; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 760px) {
  .nav-links {
    position: fixed; inset: 78px 0 auto 0; flex-direction: column; align-items: stretch;
    background: var(--pearl); padding: 1rem var(--gutter) 1.6rem; gap: 0.2rem;
    box-shadow: var(--shadow); transform: translateY(-140%); transition: transform 0.4s var(--ease);
    border-bottom: 1px solid var(--light-gray);
  }
  body.nav-open .nav-links { transform: translateY(0); }
  .nav-links a { padding: 0.85rem 0.6rem; border-radius: 10px; }
  .nav-links a.active { background: var(--rose-gold-tint); }
  .nav-links a::after { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta .btn:not(.nav-toggle) { display: none; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .cards-3, .cards-2, .value-grid, .team-grid, .topic-index { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .media-badge { position: static !important; margin-top: 1rem; max-width: 100%; }
  .hero-badges { gap: 1.4rem; }
  .cookie-banner { padding: 1.2rem; }
  .cookie-actions { width: 100%; }
  .cookie-actions .btn { flex: 1; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .footer-bottom { flex-direction: column; }
  .mini-table th, .mini-table td { padding: 0.6rem 0.65rem; font-size: 0.84rem; }
  .example-box, .callout, .takeaways { padding-left: 1.1rem; padding-right: 1.1rem; }
}
