/* ==========================================================================
   FinoviaBrief — Global Stylesheet
   Premium editorial identity for financial education & coaching
   Palette: Deep Forest Green · Warm Bronze · Ivory White · Light Sand · Espresso
   ========================================================================== */

:root {
  /* Core palette */
  --forest: #1f3d2b;        /* Deep forest green */
  --forest-deep: #16301f;   /* Darker forest */
  --forest-soft: #2f5a3f;   /* Lighter forest */
  --bronze: #b07d3c;        /* Warm bronze accent */
  --bronze-light: #c99a5b;
  --bronze-dark: #8f6329;
  --ivory: #fbf8f1;         /* Ivory white */
  --sand: #efe7d6;          /* Light sand */
  --sand-deep: #e2d5bd;
  --espresso: #2b211a;      /* Dark espresso brown */
  --ink: #22201c;           /* Primary text */
  --muted: #5c564d;         /* Muted text */
  --line: #e4dccb;          /* Hairlines */
  --white: #ffffff;

  /* Type */
  --serif: "Playfair Display", "Georgia", "Times New Roman", serif;
  --sans: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

  /* Layout */
  --wrap: 1200px;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow-sm: 0 4px 14px rgba(31, 61, 43, 0.08);
  --shadow-md: 0 18px 44px rgba(31, 61, 43, 0.14);
  --shadow-lg: 0 30px 70px rgba(22, 48, 31, 0.22);
  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --------------------------------------------------------------- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.7;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--bronze-dark); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--bronze); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.15;
  color: var(--forest);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.3rem, 5.4vw, 4rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
h3 { font-size: clamp(1.25rem, 2.4vw, 1.6rem); }
p { color: var(--muted); }

ul { list-style: none; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

section { position: relative; }

/* Section spacing */
.section { padding: 88px 0; }
.section-tight { padding: 64px 0; }

/* Eyebrow label */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze-dark);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 30px; height: 2px;
  background: var(--bronze);
  display: inline-block;
}
.eyebrow.center { justify-content: center; }

.section-head { max-width: 720px; margin: 0 auto 54px; text-align: center; }
.section-head p { margin-top: 16px; font-size: 1.08rem; }
.section-head.left { margin-left: 0; text-align: left; }

.lead { font-size: 1.15rem; color: var(--muted); }

/* --------------------------------------------------------------- Buttons -- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 15px 30px;
  border-radius: 50px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-align: center;
}
.btn-primary {
  background: var(--bronze);
  color: var(--white);
  box-shadow: 0 10px 26px rgba(176, 125, 60, 0.32);
}
.btn-primary:hover { background: var(--bronze-dark); color: var(--white); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--forest);
  border-color: var(--forest);
}
.btn-outline:hover { background: var(--forest); color: var(--ivory); transform: translateY(-2px); }
.btn-light {
  background: var(--ivory);
  color: var(--forest);
}
.btn-light:hover { background: var(--white); color: var(--forest-deep); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--ivory);
  border-color: rgba(251, 248, 241, 0.5);
}
.btn-ghost:hover { background: rgba(251, 248, 241, 0.12); color: var(--white); border-color: var(--ivory); }

/* --------------------------------------------------------------- Header --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(251, 248, 241, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--forest);
}
.brand:hover { color: var(--forest-deep); }
.brand .logo-mark { width: 40px; height: 40px; flex-shrink: 0; }
.brand b { color: var(--bronze-dark); font-weight: 700; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.98rem;
  color: var(--ink);
  padding: 10px 16px;
  border-radius: 8px;
  position: relative;
}
.nav-links a:hover { color: var(--forest); background: var(--sand); }
.nav-links a.active { color: var(--forest); font-weight: 600; }
.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: 2px; left: 16px; right: 16px;
  height: 2px;
  background: var(--bronze);
  border-radius: 2px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 26px; height: 2.5px;
  background: var(--forest);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* --------------------------------------------------------------- Hero ----- */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  color: var(--ivory);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(22, 48, 31, 0.92) 0%, rgba(31, 61, 43, 0.78) 45%, rgba(31, 61, 43, 0.35) 100%);
  z-index: 1;
}
.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-inner { position: relative; z-index: 2; padding: 96px 0; max-width: 720px; }
.hero h1 { color: var(--ivory); }
.hero .eyebrow { color: var(--bronze-light); }
.hero .eyebrow::before { background: var(--bronze-light); }
.hero p { color: rgba(251, 248, 241, 0.9); font-size: 1.2rem; margin: 22px 0 34px; max-width: 600px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }

/* Page banner (interior heroes) */
.page-banner {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  color: var(--ivory);
  overflow: hidden;
}
.page-banner::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(22, 48, 31, 0.93), rgba(31, 61, 43, 0.6));
  z-index: 1;
}
.page-banner-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.page-banner-inner { position: relative; z-index: 2; padding: 92px 0; max-width: 760px; }
.page-banner h1 { color: var(--ivory); }
.page-banner .eyebrow { color: var(--bronze-light); }
.page-banner .eyebrow::before { background: var(--bronze-light); }
.page-banner p { color: rgba(251, 248, 241, 0.9); font-size: 1.15rem; margin-top: 20px; max-width: 620px; }

.breadcrumbs { font-size: 0.85rem; color: rgba(251,248,241,0.7); margin-bottom: 20px; }
.breadcrumbs a { color: var(--bronze-light); }
.breadcrumbs span { margin: 0 8px; }

/* --------------------------------------------------------------- Cards ---- */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--sand-deep); }
.card .icon {
  width: 58px; height: 58px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--forest), var(--forest-soft));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.card .icon svg { width: 28px; height: 28px; stroke: var(--bronze-light); }
.card h3 { margin-bottom: 12px; }
.card p { font-size: 1rem; }

.card-num {
  font-family: var(--serif);
  font-size: 2.4rem;
  color: var(--bronze);
  line-height: 1;
  margin-bottom: 14px;
  display: block;
}

/* Feature/media split */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split.reverse .split-media { order: 2; }
.split-media img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.split-body h2 { margin-bottom: 18px; }
.split-body p + p { margin-top: 16px; }

.check-list { margin-top: 24px; display: grid; gap: 14px; }
.check-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: var(--ink);
  font-size: 1.02rem;
}
.check-list li svg { width: 22px; height: 22px; flex-shrink: 0; margin-top: 3px; stroke: var(--bronze); }
.check-list li b { color: var(--forest); font-family: var(--sans); font-weight: 700; }

/* --------------------------------------------------------------- Stats ---- */
.stats-band {
  background: var(--forest);
  color: var(--ivory);
  background-image: radial-gradient(circle at 15% 20%, rgba(176,125,60,0.18), transparent 40%),
                    radial-gradient(circle at 85% 80%, rgba(176,125,60,0.14), transparent 42%);
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stat .num {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  color: var(--bronze-light);
  line-height: 1;
}
.stat .label { margin-top: 10px; color: rgba(251, 248, 241, 0.82); font-size: 0.98rem; }

/* --------------------------------------------------------------- Editorial - */
.bg-sand { background: var(--sand); }
.bg-ivory { background: var(--ivory); }
.bg-white { background: var(--white); }
.bg-forest { background: var(--forest); color: var(--ivory); }
.bg-forest h2, .bg-forest h3 { color: var(--ivory); }
.bg-forest p { color: rgba(251, 248, 241, 0.85); }
.bg-forest .eyebrow { color: var(--bronze-light); }
.bg-forest .eyebrow::before { background: var(--bronze-light); }

/* Info tiles (2-col editorial blocks) */
.info-tiles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.info-tile {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px;
  border-left: 4px solid var(--bronze);
  box-shadow: var(--shadow-sm);
}
.info-tile h3 { margin-bottom: 12px; font-size: 1.35rem; }
.info-tile p { font-size: 1rem; }

/* Pillars strip */
.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.pillar {
  text-align: center;
  padding: 30px 20px;
}
.pillar .p-icon {
  width: 64px; height: 64px; margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--sand);
  display: flex; align-items: center; justify-content: center;
}
.pillar .p-icon svg { width: 30px; height: 30px; stroke: var(--forest); }
.pillar h3 { font-size: 1.2rem; margin-bottom: 10px; }
.pillar p { font-size: 0.96rem; }

/* --------------------------------------------------------------- Timeline - */
.timeline { max-width: 820px; margin: 0 auto; position: relative; }
.timeline::before {
  content: "";
  position: absolute;
  left: 27px; top: 8px; bottom: 8px;
  width: 2px;
  background: var(--sand-deep);
}
.tl-item { position: relative; padding: 0 0 40px 76px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-dot {
  position: absolute; left: 0; top: 0;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--bronze-light);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 1.3rem; font-weight: 700;
  border: 4px solid var(--ivory);
  box-shadow: var(--shadow-sm);
}
.tl-item h3 { margin-bottom: 8px; }

/* --------------------------------------------------------------- Team ----- */
.team-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.team-card img { width: 100%; aspect-ratio: 3 / 3.4; object-fit: cover; }
.team-card .body { padding: 24px; }
.team-card h3 { font-size: 1.3rem; margin-bottom: 4px; }
.team-card .role { color: var(--bronze-dark); font-weight: 600; font-size: 0.92rem; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 12px; }
.team-card p { font-size: 0.96rem; }

/* --------------------------------------------------------------- Analize -- */
.analysis {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 56px;
}
.analysis-media { position: relative; }
.analysis-media img { width: 100%; aspect-ratio: 21 / 8; object-fit: cover; }
.analysis-media .tag {
  position: absolute; top: 20px; left: 20px;
  background: var(--bronze);
  color: var(--white);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 7px 16px; border-radius: 50px;
}
.analysis-body { padding: 44px clamp(24px, 4vw, 56px); }
.analysis-body h2 { margin-bottom: 18px; }
.analysis-body h3 { margin: 30px 0 12px; color: var(--forest-soft); }
.analysis-body p { margin-bottom: 16px; }
.analysis-body ul.dot-list { margin: 8px 0 20px; display: grid; gap: 12px; }
.analysis-body ul.dot-list li {
  position: relative; padding-left: 30px; color: var(--ink);
}
.analysis-body ul.dot-list li::before {
  content: ""; position: absolute; left: 4px; top: 10px;
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--bronze);
}

.example-box {
  background: var(--sand);
  border-radius: var(--radius-sm);
  padding: 26px 30px;
  margin: 24px 0;
  border-left: 4px solid var(--forest-soft);
}
.example-box .ex-label {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--forest-soft); margin-bottom: 8px; display: block;
}
.example-box p { margin-bottom: 0; color: var(--ink); }

.takeaway {
  background: var(--forest);
  color: var(--ivory);
  border-radius: var(--radius-sm);
  padding: 28px 32px;
  margin-top: 30px;
}
.takeaway h3 { color: var(--bronze-light); margin: 0 0 14px; font-size: 1.15rem; }
.takeaway ul { display: grid; gap: 10px; }
.takeaway ul li { position: relative; padding-left: 28px; color: rgba(251,248,241,0.92); }
.takeaway ul li::before {
  content: "✓"; position: absolute; left: 0; top: 0; color: var(--bronze-light); font-weight: 700;
}

.tip-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin: 22px 0; }
.tip {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 20px 22px;
}
.tip .t-head { display: flex; align-items: center; gap: 10px; font-family: var(--serif); font-weight: 700; color: var(--forest); margin-bottom: 6px; }
.tip .t-head svg { width: 20px; height: 20px; stroke: var(--bronze); }
.tip p { font-size: 0.95rem; margin: 0; }

/* Jump nav for Analize */
.jump-nav { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 30px; }
.jump-nav a {
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--forest);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.92rem;
  font-weight: 500;
}
.jump-nav a:hover { background: var(--forest); color: var(--ivory); border-color: var(--forest); }

/* --------------------------------------------------------------- Contact -- */
.contact-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); gap: 48px; align-items: start; }
.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.contact-item { display: flex; gap: 18px; align-items: flex-start; padding: 20px 0; border-bottom: 1px solid var(--line); }
.contact-item:last-child { border-bottom: none; }
.contact-item > div { min-width: 0; }
.contact-card, .contact-aside { overflow-wrap: anywhere; }
a[href^="mailto:"] { overflow-wrap: anywhere; word-break: break-word; }
.contact-item .ci-icon {
  width: 50px; height: 50px; flex-shrink: 0;
  border-radius: 12px; background: var(--sand);
  display: flex; align-items: center; justify-content: center;
}
.contact-item .ci-icon svg { width: 24px; height: 24px; stroke: var(--forest); }
.contact-item h3 { font-size: 1.15rem; margin-bottom: 4px; }
.contact-item a { font-weight: 600; }

.social-links { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 8px; }
.social-links a {
  width: 50px; height: 50px;
  border-radius: 12px;
  background: var(--forest);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.social-links a:hover { background: var(--bronze); transform: translateY(-3px); }
.social-links a svg { width: 24px; height: 24px; fill: var(--ivory); }

.contact-aside {
  background: var(--forest);
  color: var(--ivory);
  border-radius: var(--radius);
  padding: 40px;
  background-image: radial-gradient(circle at 80% 15%, rgba(176,125,60,0.22), transparent 45%);
}
.contact-aside h2 { color: var(--ivory); }
.contact-aside p { color: rgba(251,248,241,0.85); }
.contact-aside .hours { margin-top: 24px; display: grid; gap: 10px; }
.contact-aside .hours div { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid rgba(251,248,241,0.15); font-size: 0.96rem; }

/* --------------------------------------------------------------- CTA band - */
.cta-band {
  color: var(--ivory);
  text-align: center;
  background-color: var(--forest-deep);
  background-image: radial-gradient(circle at 20% 30%, rgba(176,125,60,0.2), transparent 45%),
                    radial-gradient(circle at 80% 70%, rgba(176,125,60,0.16), transparent 45%),
                    linear-gradient(120deg, var(--forest-deep), var(--forest-soft));
}
.cta-band h2 { color: var(--ivory); max-width: 720px; margin: 0 auto 18px; }
.cta-band p { color: rgba(251,248,241,0.88); max-width: 620px; margin: 0 auto 30px; font-size: 1.1rem; }

/* --------------------------------------------------------------- Legal ---- */
.legal { max-width: 860px; margin: 0 auto; }
.legal h2 { font-size: 1.7rem; margin: 40px 0 14px; }
.legal h3 { font-size: 1.25rem; margin: 26px 0 10px; }
.legal p { margin-bottom: 14px; }
.legal ul { margin: 0 0 16px 0; display: grid; gap: 8px; }
.legal ul li { position: relative; padding-left: 26px; color: var(--muted); }
.legal ul li::before { content: ""; position: absolute; left: 4px; top: 11px; width: 8px; height: 8px; border-radius: 50%; background: var(--bronze); }
.legal .updated { color: var(--bronze-dark); font-weight: 600; font-size: 0.92rem; }

/* --------------------------------------------------------------- Footer --- */
.site-footer {
  background: var(--espresso);
  color: rgba(251, 248, 241, 0.72);
  padding: 72px 0 30px;
  border-top: 4px solid var(--bronze);
  box-shadow: inset 0 14px 30px rgba(0, 0, 0, 0.22);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand .brand { color: var(--ivory); margin-bottom: 18px; }
.footer-brand .brand b { color: var(--bronze-light); }
.footer-brand p { color: rgba(251, 248, 241, 0.6); font-size: 0.96rem; max-width: 320px; }
.footer-col h4 { font-family: var(--sans); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--bronze-light); margin-bottom: 18px; }
.footer-col ul { display: grid; gap: 11px; }
.footer-col ul li a { color: rgba(251, 248, 241, 0.72); font-size: 0.96rem; }
.footer-col ul li a:hover { color: var(--ivory); }
.footer-social { display: flex; gap: 12px; margin-top: 6px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(251, 248, 241, 0.08);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--bronze); transform: translateY(-3px); }
.footer-social a svg { width: 20px; height: 20px; fill: var(--ivory); }
.footer-bottom {
  margin-top: 48px; padding-top: 26px;
  border-top: 1px solid rgba(251, 248, 241, 0.12);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px;
  font-size: 0.9rem; color: rgba(251, 248, 241, 0.55);
}
.footer-bottom a { color: rgba(251, 248, 241, 0.7); }
.footer-bottom a:hover { color: var(--ivory); }

/* --------------------------------------------------------------- Cookies -- */
.cookie-banner {
  position: fixed;
  left: 20px; right: 20px; bottom: 20px;
  z-index: 2000;
  max-width: 1000px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 24px;
  transform: translateY(150%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner .ck-icon { width: 44px; height: 44px; flex-shrink: 0; }
.cookie-banner p { font-size: 0.95rem; margin: 0; flex: 1; }
.cookie-banner p a { font-weight: 600; }
.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-actions .btn { padding: 12px 24px; font-size: 0.92rem; }

/* --------------------------------------------------------------- Reveal --- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* --------------------------------------------------------------- Utility -- */
.mt-0 { margin-top: 0; }
.center { text-align: center; }
.mono-accent { color: var(--bronze-dark); font-weight: 700; }

/* --------------------------------------------------------------- Responsive */
@media (max-width: 980px) {
  .nav-links {
    position: fixed;
    top: 76px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--ivory);
    border-bottom: 1px solid var(--line);
    padding: 16px 24px 28px;
    gap: 4px;
    box-shadow: var(--shadow-md);
    transform: translateY(-140%);
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
    max-height: calc(100vh - 76px);
    overflow-y: auto;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 14px 16px; border-radius: 8px; }
  .nav-links a.active::after { display: none; }
  .nav-links .btn { margin-top: 10px; justify-content: center; }
  .nav-toggle { display: flex; }

  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 34px; }
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .section { padding: 62px 0; }
  .split { grid-template-columns: 1fr; gap: 34px; }
  .split.reverse .split-media { order: 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .info-tiles { grid-template-columns: 1fr; }
  .tip-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .hero { min-height: 560px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .cookie-banner { flex-direction: column; text-align: center; padding: 22px; }
  .cookie-actions { width: 100%; }
  .cookie-actions .btn { flex: 1; justify-content: center; }
  .analysis-body { padding: 32px 24px; }
  .contact-card, .contact-aside { padding: 30px 22px; }
}

@media (max-width: 460px) {
  .stats-grid { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .wrap { padding: 0 18px; }
}
