/* =====================================================================
   FinoviaRo — Premium Editorial Business Website
   Palette: Burnt Orange · Amber · Warm Ivory · Soft Cream · Dark Charcoal
   ===================================================================== */

:root {
  /* Core palette */
  --burnt-orange: #c1440e;
  --burnt-orange-dk: #9c340a;
  --amber: #e88b1a;
  --amber-lt: #f4a83b;
  --warm-ivory: #fdf8f0;
  --soft-cream: #f6ead9;
  --cream-2: #efe0cb;
  --charcoal: #221f1d;
  --charcoal-2: #322d29;
  --ink: #3a352f;
  --muted: #6c6359;
  --line: #e6d7c3;
  --white: #ffffff;

  /* Semantic */
  --bg: var(--warm-ivory);
  --accent: var(--burnt-orange);
  --accent-2: var(--amber);

  /* Typography */
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Layout */
  --maxw: 1200px;
  --radius: 22px;
  --radius-sm: 14px;
  --radius-lg: 34px;
  --shadow-sm: 0 6px 20px rgba(60, 40, 20, 0.07);
  --shadow: 0 20px 50px rgba(70, 45, 20, 0.12);
  --shadow-lg: 0 34px 80px rgba(70, 40, 15, 0.18);
  --transition: 0.35s 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%;
}

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

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

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.1;
  color: var(--charcoal);
  letter-spacing: -0.015em;
}

::selection { background: var(--amber); color: var(--charcoal); }

/* -------- Layout helpers -------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 44px);
}

.section { padding-block: clamp(64px, 9vw, 120px); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--burnt-orange);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--amber);
  border-radius: 2px;
}

.section-head { max-width: 640px; margin-bottom: 52px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }

h2.display {
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  margin-bottom: 18px;
}
.lead {
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
  color: var(--muted);
  line-height: 1.75;
}

/* -------- 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: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: var(--burnt-orange-dk);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(156, 52, 10, 0.30);
}
.btn-primary:hover,
.btn-primary:focus-visible {
  background: #7f2907;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(156, 52, 10, 0.40);
}
.btn-primary svg { stroke: #ffffff; }
.btn-ghost {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--line);
}
.btn-ghost:hover {
  border-color: var(--burnt-orange);
  color: var(--burnt-orange);
  transform: translateY(-3px);
}
.btn-light {
  background: var(--warm-ivory);
  color: var(--charcoal);
}
.btn-light:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

/* =====================================================================
   HEADER
   ===================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 248, 240, 0.82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px rgba(70, 45, 20, 0.06);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 78px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--charcoal);
  letter-spacing: -0.02em;
}
.brand .brand-mark { width: 40px; height: 40px; flex: none; }
.brand b { color: var(--burnt-orange); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  position: relative;
  font-weight: 500;
  font-size: 0.98rem;
  padding: 10px 16px;
  border-radius: 10px;
  color: var(--ink);
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover { color: var(--burnt-orange); }
.nav-links a.active {
  color: var(--burnt-orange);
  font-weight: 600;
}
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 4px;
  height: 2px;
  background: var(--amber);
  border-radius: 2px;
}
.nav-cta { margin-left: 8px; }
/* The CTA is an <a> inside .nav-links, so `.nav-links a` (0,1,1) would beat
   `.btn-primary` (0,1,0) and force dark text onto the button. Re-assert white
   with a more specific selector so the header CTA text is always readable. */
.nav-links a.btn-primary,
.nav-links a.btn-primary:hover,
.nav-links a.btn-primary:focus-visible { color: #ffffff; padding: 15px 30px; }
.nav-links a.btn-primary.active { color: #ffffff; }
.nav-links a.btn-primary.active::after { display: none; }

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
  position: relative;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: var(--transition);
}
.nav-toggle span::before { transform: translate(-50%, -8px); }
.nav-toggle span::after { transform: translate(-50%, 6px); }
.nav-toggle.open span { background: transparent; }
.nav-toggle.open span::before { transform: translate(-50%, 0) rotate(45deg); }
.nav-toggle.open span::after { transform: translate(-50%, 0) rotate(-45deg); }

/* =====================================================================
   HERO
   ===================================================================== */
.hero {
  position: relative;
  padding-block: clamp(48px, 7vw, 92px) clamp(60px, 8vw, 110px);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 480px at 88% -8%, rgba(232, 139, 26, 0.20), transparent 60%),
    radial-gradient(700px 460px at -6% 22%, rgba(193, 68, 14, 0.09), transparent 58%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 68px);
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 8px 16px 8px 10px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  box-shadow: var(--shadow-sm);
  margin-bottom: 26px;
}
.hero-badge i {
  display: inline-flex;
  width: 24px; height: 24px;
  align-items: center; justify-content: center;
  background: var(--soft-cream);
  border-radius: 50%;
  color: var(--burnt-orange);
  font-style: normal;
}
.hero h1 {
  font-size: clamp(2.5rem, 5.6vw, 4.35rem);
  line-height: 1.02;
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: italic;
  color: var(--burnt-orange);
}
.hero p.lead { max-width: 520px; margin-bottom: 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.hero-stats {
  display: flex;
  gap: 30px;
  margin-top: 44px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.hero-stats .num {
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--charcoal);
}
.hero-stats .lbl { font-size: 0.82rem; color: var(--muted); }

/* Hero visual */
.hero-visual { position: relative; }
.hero-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
}
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-float {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 13px;
}
.hero-float .ic {
  width: 42px; height: 42px; flex: none;
  border-radius: 12px;
  display: grid; place-items: center;
  color: var(--white);
}
.hero-float .t { font-family: var(--serif); font-weight: 600; font-size: 1.15rem; color: var(--charcoal); line-height: 1.1; }
.hero-float .s { font-size: 0.76rem; color: var(--muted); }
.hero-float.f1 { top: 24px; left: -26px; }
.hero-float.f1 .ic { background: linear-gradient(135deg, var(--amber), var(--amber-lt)); }
.hero-float.f2 { bottom: 30px; right: -24px; }
.hero-float.f2 .ic { background: linear-gradient(135deg, var(--burnt-orange), #d95a1e); }

/* =====================================================================
   MARQUEE / TRUST STRIP
   ===================================================================== */
.strip {
  background: var(--charcoal);
  color: var(--soft-cream);
  padding-block: 26px;
  overflow: hidden;
}
.strip-track {
  display: flex;
  gap: 56px;
  white-space: nowrap;
  animation: marquee 32s linear infinite;
  width: max-content;
}
.strip-track span {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
  opacity: 0.82;
  display: inline-flex;
  align-items: center;
  gap: 56px;
}
.strip-track span::after {
  content: "✦";
  color: var(--amber);
  font-style: normal;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .strip-track { animation: none; }
}

/* =====================================================================
   CARDS — "De ce FinoviaRo"
   ===================================================================== */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.card .num-tag {
  position: absolute;
  top: 18px; right: 24px;
  font-family: var(--serif);
  font-size: 3rem;
  color: var(--cream-2);
  font-weight: 600;
  line-height: 1;
}
.card .card-ic {
  width: 58px; height: 58px;
  border-radius: 16px;
  display: grid; place-items: center;
  background: var(--soft-cream);
  color: var(--burnt-orange);
  margin-bottom: 22px;
}
.card .card-ic svg { width: 28px; height: 28px; }
.card h3 { font-size: 1.32rem; margin-bottom: 12px; }
.card p { color: var(--muted); font-size: 0.98rem; }
.card .card-list { margin-top: 16px; }
.card .card-list li {
  position: relative;
  padding-left: 24px;
  font-size: 0.92rem;
  color: var(--ink);
  margin-bottom: 7px;
}
.card .card-list li::before {
  content: "";
  position: absolute; left: 0; top: 9px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 4px rgba(232,139,26,0.16);
}

/* Feature card variant with top accent bar */
.card.accent-top::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: linear-gradient(90deg, var(--burnt-orange), var(--amber));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.card.accent-top:hover::before { transform: scaleX(1); }

/* =====================================================================
   SPLIT / ALTERNATING SECTIONS
   ===================================================================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
}
.split.reverse .split-media { order: 2; }
.split-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 5 / 4;
}
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-media.tall { aspect-ratio: 4 / 5; }

.check-list li {
  position: relative;
  padding-left: 40px;
  margin-bottom: 20px;
  font-size: 1.02rem;
}
.check-list li strong { color: var(--charcoal); font-family: var(--serif); }
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 2px;
  width: 26px; height: 26px;
  border-radius: 8px;
  background: var(--burnt-orange);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center / 15px no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center / 15px no-repeat;
}

.media-badge {
  position: absolute;
  left: 20px; bottom: 20px;
  background: rgba(34, 31, 29, 0.86);
  color: var(--warm-ivory);
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  backdrop-filter: blur(6px);
  max-width: 80%;
}
.media-badge .t { font-family: var(--serif); font-size: 1.4rem; color: var(--amber-lt); }
.media-badge .s { font-size: 0.8rem; opacity: 0.85; }

/* =====================================================================
   STATISTICS
   ===================================================================== */
.stats-band {
  background: var(--charcoal);
  color: var(--warm-ivory);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 68px);
  position: relative;
  overflow: hidden;
}
.stats-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 300px at 90% 10%, rgba(232,139,26,0.22), transparent 60%);
}
.stats-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.stat .n {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  font-weight: 600;
  color: var(--amber-lt);
  line-height: 1;
}
.stat .l { font-size: 0.9rem; opacity: 0.82; margin-top: 8px; }
.stat + .stat {}

/* =====================================================================
   GROWTH CHART / INFOGRAPHIC
   ===================================================================== */
.chart-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--shadow-sm);
}
.chart-head { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; align-items: flex-end; margin-bottom: 30px; }
.chart-legend { display: flex; gap: 20px; flex-wrap: wrap; }
.chart-legend span { display: inline-flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--muted); }
.chart-legend i { width: 14px; height: 14px; border-radius: 4px; display: inline-block; }

.bars {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(10px, 2.4vw, 26px);
  align-items: end;
  height: 300px;
  padding-top: 10px;
  border-bottom: 2px solid var(--line);
}
.bar-col { display: flex; flex-direction: column; align-items: center; gap: 10px; height: 100%; justify-content: flex-end; }
.bar-stack { width: 100%; max-width: 62px; display: flex; flex-direction: column; justify-content: flex-end; gap: 5px; height: 100%; }
.bar {
  width: 100%;
  border-radius: 8px 8px 4px 4px;
  transform-origin: bottom;
  animation: growBar 1.1s cubic-bezier(0.22,1,0.36,1) both;
}
.bar.b1 { background: linear-gradient(180deg, var(--amber-lt), var(--amber)); }
.bar.b2 { background: linear-gradient(180deg, #d95a1e, var(--burnt-orange)); }
.bar-col .yr { font-size: 0.82rem; font-weight: 600; color: var(--muted); }
@keyframes growBar { from { transform: scaleY(0); } to { transform: scaleY(1); } }
@media (prefers-reduced-motion: reduce) { .bar { animation: none; } }

.chart-foot { display: flex; gap: 26px; flex-wrap: wrap; margin-top: 26px; }
.chart-foot .kpi { flex: 1; min-width: 160px; }
.chart-foot .kpi .k { font-family: var(--serif); font-size: 1.6rem; color: var(--burnt-orange); font-weight: 600; }
.chart-foot .kpi .kl { font-size: 0.84rem; color: var(--muted); }

/* Donut / progress ring row */
.rings { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.ring-card { text-align: center; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 20px; }
.ring { width: 130px; height: 130px; margin: 0 auto 16px; position: relative; }
.ring svg { transform: rotate(-90deg); width: 100%; height: 100%; }
.ring .track { fill: none; stroke: var(--soft-cream); stroke-width: 12; }
.ring .prog { fill: none; stroke-width: 12; stroke-linecap: round; stroke: url(#ringGrad); }
.ring .val { position: absolute; inset: 0; display: grid; place-items: center; font-family: var(--serif); font-size: 1.7rem; font-weight: 600; color: var(--charcoal); }
.ring .val svg { width: 46px; height: 46px; color: var(--burnt-orange); }
.ring-card h4 { font-size: 1.05rem; margin-bottom: 6px; }
.ring-card p { font-size: 0.88rem; color: var(--muted); }

/* =====================================================================
   TIMELINE
   ===================================================================== */
.timeline { position: relative; margin-top: 20px; }
.timeline::before {
  content: "";
  position: absolute;
  left: 27px; top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(var(--amber), var(--burnt-orange), transparent);
}
.tl-item { position: relative; padding-left: 78px; padding-bottom: 44px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-dot {
  position: absolute; left: 0; top: 0;
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  font-family: var(--serif);
  font-weight: 600;
  color: var(--burnt-orange);
  box-shadow: var(--shadow-sm);
  z-index: 1;
}
.tl-item h3 { font-size: 1.24rem; margin-bottom: 8px; }
.tl-item p { color: var(--muted); font-size: 0.98rem; }
.tl-phase { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--amber); margin-bottom: 5px; display: block; }

/* =====================================================================
   TEAM
   ===================================================================== */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.team-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.team-photo { aspect-ratio: 1 / 1; overflow: hidden; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.team-card:hover .team-photo img { transform: scale(1.06); }
.team-body { padding: 24px 26px 28px; }
.team-body h3 { font-size: 1.2rem; margin-bottom: 3px; }
.team-body .role { color: var(--burnt-orange); font-weight: 600; font-size: 0.88rem; margin-bottom: 12px; }
.team-body p { font-size: 0.92rem; color: var(--muted); }

/* =====================================================================
   ARTICLE / ANALIZE
   ===================================================================== */
.article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 46px;
  scroll-margin-top: 100px;
}
.article-hero { position: relative; aspect-ratio: 21 / 8; overflow: hidden; }
.article-hero img { width: 100%; height: 100%; object-fit: cover; }
.article-hero .tag {
  position: absolute; top: 20px; left: 20px;
  background: var(--burnt-orange);
  color: var(--warm-ivory);
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.article-body { padding: clamp(26px, 4vw, 52px); }
.article-body h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); margin-bottom: 16px; }
.article-body h3 { font-size: 1.3rem; margin: 30px 0 12px; }
.article-body p { color: var(--ink); margin-bottom: 16px; }
.article-body p.intro { font-size: 1.12rem; color: var(--muted); }
.article-meta { display: flex; gap: 22px; flex-wrap: wrap; color: var(--muted); font-size: 0.85rem; margin-bottom: 24px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.article-meta span { display: inline-flex; align-items: center; gap: 7px; }
.article-meta svg { width: 16px; height: 16px; color: var(--burnt-orange); }

.example-box {
  background: var(--soft-cream);
  border-left: 4px solid var(--amber);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 22px 26px;
  margin: 24px 0;
}
.example-box .lbl { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--burnt-orange); margin-bottom: 8px; }
.example-box p { margin: 0; color: var(--ink); }

.tips-list { margin: 18px 0; }
.tips-list li { position: relative; padding-left: 34px; margin-bottom: 12px; }
.tips-list li::before {
  content: "→";
  position: absolute; left: 0; top: 0;
  color: var(--burnt-orange);
  font-weight: 700;
}

.takeaways {
  background: var(--charcoal);
  color: var(--warm-ivory);
  border-radius: var(--radius);
  padding: 30px 34px;
  margin-top: 30px;
}
.takeaways h4 { color: var(--amber-lt); font-size: 1.2rem; margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.takeaways ul { display: grid; gap: 12px; }
.takeaways li { position: relative; padding-left: 30px; font-size: 0.98rem; opacity: 0.94; }
.takeaways li::before {
  content: "";
  position: absolute; left: 0; top: 7px;
  width: 16px; height: 16px; border-radius: 5px;
  background: var(--amber);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/11px no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/11px no-repeat;
}

/* Article nav pills */
.topic-nav { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 44px; }
.topic-nav a {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 11px 20px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}
.topic-nav a:hover { background: var(--burnt-orange); color: var(--warm-ivory); border-color: transparent; transform: translateY(-2px); }

/* =====================================================================
   VALUES GRID
   ===================================================================== */
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.value {
  display: flex; gap: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 28px;
  transition: var(--transition);
}
.value:hover { box-shadow: var(--shadow-sm); transform: translateY(-4px); }
.value .v-ic {
  width: 50px; height: 50px; flex: none;
  border-radius: 14px;
  background: var(--soft-cream);
  color: var(--burnt-orange);
  display: grid; place-items: center;
}
.value .v-ic svg { width: 24px; height: 24px; }
.value h3 { font-size: 1.14rem; margin-bottom: 6px; }
.value p { font-size: 0.94rem; color: var(--muted); }

/* Mission-vision */
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.mv-card {
  border-radius: var(--radius-lg);
  padding: 40px 38px;
  position: relative;
  overflow: hidden;
}
.mv-card.mission { background: var(--soft-cream); }
.mv-card.vision { background: var(--charcoal); color: var(--warm-ivory); }
.mv-card.vision h3, .mv-card.vision .mv-ic { color: var(--amber-lt); }
.mv-card .mv-ic {
  width: 60px; height: 60px; border-radius: 16px;
  display: grid; place-items: center;
  background: rgba(193,68,14,0.12);
  color: var(--burnt-orange);
  margin-bottom: 20px;
}
.mv-card.vision .mv-ic { background: rgba(244,168,59,0.16); }
.mv-card h3 { font-size: 1.6rem; margin-bottom: 14px; }
.mv-card p { font-size: 1.02rem; }
.mv-card.vision p { opacity: 0.9; }

/* =====================================================================
   CONTACT
   ===================================================================== */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(30px, 5vw, 60px); align-items: start; }
.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 32px;
  margin-bottom: 20px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: var(--transition);
}
.contact-card:hover { box-shadow: var(--shadow-sm); transform: translateY(-4px); }
.contact-card .c-ic {
  width: 54px; height: 54px; flex: none;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--burnt-orange), var(--amber));
  color: var(--white);
  display: grid; place-items: center;
}
.contact-card .c-ic svg { width: 24px; height: 24px; }
.contact-card h3 { font-size: 1.16rem; margin-bottom: 5px; }
.contact-card p, .contact-card a { color: var(--muted); font-size: 0.96rem; word-break: break-word; }
.contact-card a.mail { color: var(--burnt-orange); font-weight: 600; }
.contact-card a.mail:hover { text-decoration: underline; }

.contact-aside {
  background: var(--charcoal);
  color: var(--warm-ivory);
  border-radius: var(--radius-lg);
  padding: 40px 38px;
  position: relative;
  overflow: hidden;
}
.contact-aside::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(500px 260px at 90% 0%, rgba(232,139,26,0.24), transparent 60%);
}
.contact-aside > * { position: relative; }
.contact-aside h3 { color: var(--warm-ivory); font-size: 1.5rem; margin-bottom: 14px; }
.contact-aside p { opacity: 0.86; margin-bottom: 22px; }
.contact-aside .hours { display: grid; gap: 12px; }
.contact-aside .hours div { display: flex; justify-content: space-between; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.12); font-size: 0.92rem; }
.contact-aside .hours span:last-child { color: var(--amber-lt); }

.social-row { display: flex; gap: 12px; margin-top: 26px; }
.social-row a {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  display: grid; place-items: center;
  transition: var(--transition);
}
.social-row a:hover { background: var(--burnt-orange); transform: translateY(-3px); }
.social-row a svg { width: 20px; height: 20px; color: var(--warm-ivory); }

/* =====================================================================
   PAGE BANNER (inner pages)
   ===================================================================== */
.page-banner {
  position: relative;
  padding-block: clamp(56px, 8vw, 96px);
  overflow: hidden;
  background: var(--soft-cream);
}
.page-banner::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(700px 400px at 85% 0%, rgba(232,139,26,0.18), transparent 60%);
}
.page-banner .inner { position: relative; max-width: 720px; }
.page-banner h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); margin-bottom: 18px; }
.page-banner p { font-size: clamp(1rem, 1.7vw, 1.2rem); color: var(--muted); }
.breadcrumb { display: flex; gap: 8px; font-size: 0.84rem; color: var(--muted); margin-bottom: 20px; }
.breadcrumb a:hover { color: var(--burnt-orange); }
.breadcrumb span { color: var(--burnt-orange); }

/* =====================================================================
   CTA BAND
   ===================================================================== */
.cta-band {
  background: linear-gradient(135deg, var(--burnt-orange), #d95a1e 60%, var(--amber));
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 72px);
  text-align: center;
  color: var(--warm-ivory);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(400px 300px at 15% 120%, rgba(255,255,255,0.16), transparent 60%);
}
.cta-band > * { position: relative; }
.cta-band h2 { color: var(--warm-ivory); font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: 16px; max-width: 720px; margin-inline: auto; }
.cta-band p { opacity: 0.94; max-width: 560px; margin: 0 auto 30px; font-size: 1.08rem; }

/* =====================================================================
   DISCLAIMER STRIP
   ===================================================================== */
.disclaimer {
  background: var(--soft-cream);
  border: 1px dashed var(--amber);
  border-radius: var(--radius);
  padding: 26px 30px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.disclaimer .d-ic {
  width: 44px; height: 44px; flex: none;
  border-radius: 12px;
  background: var(--white);
  color: var(--burnt-orange);
  display: grid; place-items: center;
}
.disclaimer p { font-size: 0.92rem; color: var(--ink); margin: 0; }
.disclaimer strong { color: var(--burnt-orange); }

/* =====================================================================
   LEGAL PAGES
   ===================================================================== */
.legal-wrap { display: grid; grid-template-columns: 260px 1fr; gap: 50px; align-items: start; }
.legal-toc {
  position: sticky; top: 100px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 22px;
}
.legal-toc h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); margin-bottom: 14px; }
.legal-toc a { display: block; font-size: 0.9rem; padding: 7px 0; color: var(--ink); border-bottom: 1px solid var(--line); transition: var(--transition); }
.legal-toc a:last-child { border-bottom: none; }
.legal-toc a:hover { color: var(--burnt-orange); padding-left: 6px; }

.legal-content h2 { font-size: 1.5rem; margin: 40px 0 14px; scroll-margin-top: 100px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { font-size: 1.15rem; margin: 24px 0 10px; }
.legal-content p { margin-bottom: 14px; color: var(--ink); }
.legal-content ul { margin: 0 0 16px 0; }
.legal-content ul li { position: relative; padding-left: 26px; margin-bottom: 9px; }
.legal-content ul li::before {
  content: ""; position: absolute; left: 4px; top: 10px;
  width: 7px; height: 7px; border-radius: 50%; background: var(--amber);
}
.legal-content .updated { font-size: 0.88rem; color: var(--muted); background: var(--soft-cream); display: inline-block; padding: 8px 16px; border-radius: 999px; margin-bottom: 30px; }

/* =====================================================================
   FOOTER
   ===================================================================== */
.site-footer {
  background: var(--charcoal);
  color: var(--soft-cream);
  padding-top: clamp(56px, 7vw, 84px);
}
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 44px; }
.footer-brand .brand { color: var(--warm-ivory); margin-bottom: 18px; }
.footer-brand .brand b { color: var(--amber-lt); }
.footer-brand p { font-size: 0.94rem; opacity: 0.78; max-width: 320px; margin-bottom: 22px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 42px; height: 42px; border-radius: 11px;
  background: rgba(255,255,255,0.07);
  display: grid; place-items: center;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--burnt-orange); transform: translateY(-3px); }
.footer-social a svg { width: 18px; height: 18px; }
.footer-col h4 { color: var(--warm-ivory); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 11px; }
.footer-col a { font-size: 0.94rem; opacity: 0.78; transition: var(--transition); }
.footer-col a:hover { opacity: 1; color: var(--amber-lt); padding-left: 4px; }

.footer-disclaimer {
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  font-size: 0.84rem;
  opacity: 0.72;
  line-height: 1.7;
}
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 14px;
  padding: 26px 0;
  font-size: 0.86rem;
  opacity: 0.72;
}
.footer-bottom .legal-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-bottom a:hover { color: var(--amber-lt); }

/* =====================================================================
   COOKIE BANNER
   ===================================================================== */
.cookie {
  position: fixed;
  left: 20px; right: 20px; bottom: 20px;
  z-index: 200;
  max-width: 940px;
  margin-inline: auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 24px 28px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1), opacity 0.5s ease;
}
.cookie.show { transform: translateY(0); opacity: 1; }
.cookie .cookie-txt { display: flex; gap: 16px; align-items: flex-start; }
.cookie .cookie-ic {
  width: 46px; height: 46px; flex: none;
  border-radius: 12px;
  background: var(--soft-cream);
  color: var(--burnt-orange);
  display: grid; place-items: center;
}
.cookie h4 { font-size: 1.05rem; margin-bottom: 4px; }
.cookie p { font-size: 0.88rem; color: var(--muted); margin: 0; }
.cookie p a { color: var(--burnt-orange); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-actions .btn { padding: 12px 24px; font-size: 0.9rem; }

/* =====================================================================
   REVEAL ANIMATION
   ===================================================================== */
/* Reveal only hides when JS is available (.js added to <html> before paint).
   Without JS — or if the observer never fires — content stays fully visible,
   so text always loads (fixes hidden content on tall pages / mobile). */
.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22,1,0.36,1);
}
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
}

/* =====================================================================
   FAQ / ACCORDION (about + contact)
   ===================================================================== */
.faq { max-width: 780px; margin-inline: auto; }
.faq-item { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 14px; overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 22px 26px; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-family: var(--serif); font-size: 1.1rem; font-weight: 600; color: var(--charcoal); }
.faq-q .plus { flex: none; width: 26px; height: 26px; position: relative; }
.faq-q .plus::before, .faq-q .plus::after { content: ""; position: absolute; background: var(--burnt-orange); border-radius: 2px; transition: var(--transition); }
.faq-q .plus::before { left: 50%; top: 4px; bottom: 4px; width: 2px; transform: translateX(-50%); }
.faq-q .plus::after { top: 50%; left: 4px; right: 4px; height: 2px; transform: translateY(-50%); }
.faq-item.open .plus::before { transform: translateX(-50%) scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-a p { padding: 0 26px 22px; color: var(--muted); font-size: 0.96rem; margin: 0; }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 34px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 34px; }
  .legal-wrap { grid-template-columns: 1fr; }
  .legal-toc { position: static; }
}

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; }
  /* Full-height opaque overlay so no page content bleeds through the menu.
     Absolute (not fixed) because .site-header uses backdrop-filter, which
     would otherwise become the containing block for a fixed child. */
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 78px; left: 0; right: 0;
    min-height: calc(100vh - 78px);
    min-height: calc(100dvh - 78px);
    max-height: calc(100vh - 78px);
    max-height: calc(100dvh - 78px);
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    background: var(--warm-ivory);
    border-bottom: none;
    padding: 18px 20px calc(28px + env(safe-area-inset-bottom));
    gap: 10px;
    box-shadow: 0 24px 40px rgba(70, 45, 20, 0.14);
  }
  .nav-links.open li { list-style: none; }
  .nav-links.open li:not(.nav-cta) + li:not(.nav-cta) {
    border-top: 1px solid var(--line);
    padding-top: 10px;
  }
  .nav-links.open a {
    display: flex;
    align-items: center;
    min-height: 56px;
    padding: 16px 18px;
    border-radius: 14px;
    font-size: 1.12rem;
    font-weight: 500;
    color: var(--charcoal);
  }
  .nav-links.open a.active::after { display: none; }
  .nav-links.open a.active { background: var(--soft-cream); color: var(--burnt-orange); font-weight: 600; }
  .nav-links.open .nav-cta { display: block; margin-top: auto; padding-top: 18px; }
  .nav-links.open .nav-cta .btn {
    display: flex;
    width: 100%;
    min-height: 56px;
    justify-content: center;
    color: #ffffff;
  }

  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 460px; margin-inline: auto; order: -1; }
  .hero-float.f1 { left: 0; }
  .hero-float.f2 { right: 0; }

  .grid-3, .team-grid, .rings { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .split-media { max-width: 560px; }
  .mv-grid, .values-grid, .contact-grid, .grid-2 { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .grid-3, .team-grid, .rings, .bars { }
  .grid-3, .team-grid, .rings { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .hero-stats { gap: 20px; }
  .cookie { grid-template-columns: 1fr; }
  .cookie-actions .btn { flex: 1; justify-content: center; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .topic-nav a { flex: 1; text-align: center; }
  .bars { height: 220px; gap: 8px; }
  .article-hero { aspect-ratio: 3 / 2; }
  .hero-float { padding: 12px 14px; }
  .hero-float .t { font-size: 1rem; }
}
