/* ============================================================
   RESULTY — Shared Pages CSS
   Editoriálny dizajn — beige + dark + purple accent
   Pre všetky podstránky (sluzby/, projekty/, o-nas, faq, atď.)
   ============================================================ */

:root {
  --bg: #F5F0EA;
  --bg-soft: #EDE8E1;
  --ink: #1D1B18;
  --ink-soft: rgba(29,27,24,0.65);
  --purple: #6B46C1;
  --purple-deep: #4C2E99;
  --muted: rgba(29,27,24,0.45);
  --line: rgba(29,27,24,0.1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Bricolage Grotesque', system-ui, -apple-system, sans-serif;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* ── NAVBAR ───────────────────────────────────────────── */
.r-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(245,240,234,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(29,27,24,0.08);
}
.r-nav-inner {
  max-width: 1400px; margin: 0 auto;
  padding: 24px 40px;
  display: flex; align-items: center; justify-content: space-between;
}
.r-nav-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 20px;
  letter-spacing: -0.04em; color: var(--ink);
  text-decoration: none; text-transform: uppercase;
}
.r-nav-logo .dot {
  display: inline-block; width: 6px; height: 6px;
  background: var(--purple); border-radius: 50%;
  vertical-align: baseline; margin: 0 1px 2px 1px;
}
.r-nav-links { display: flex; align-items: center; gap: 36px; }
.r-nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--ink); text-decoration: none;
  opacity: 0.5; transition: opacity 0.2s;
}
.r-nav-links a:hover, .r-nav-links a.active { opacity: 1; }
.r-nav-cta {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--purple); text-decoration: none;
  transition: opacity 0.2s;
}
.r-nav-cta:hover { opacity: 0.7; }

/* Dropdown menu */
.r-dropdown { position: relative; padding-bottom: 16px; margin-bottom: -16px; }
/* Invisible bridge — prevents hover gap between toggle and menu */
.r-dropdown::after {
  content: ''; position: absolute; top: 100%; left: 0; right: 0;
  height: 24px; background: transparent;
}
.r-dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--bg); border: 1px solid var(--line);
  box-shadow: 0 12px 48px rgba(29,27,24,0.12);
  min-width: 260px; padding: 12px 0;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.2s, transform 0.2s, visibility 0s linear 0.2s;
  z-index: 200;
}
.r-dropdown:hover .r-dropdown-menu,
.r-dropdown:focus-within .r-dropdown-menu,
.r-dropdown-menu:hover {
  opacity: 1; visibility: visible; pointer-events: all;
  transform: translateX(-50%) translateY(0);
  transition: opacity 0.2s, transform 0.2s, visibility 0s;
}
.r-dropdown-menu a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 11px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--muted); text-decoration: none;
  transition: color 0.15s, background 0.15s, padding-left 0.15s;
}
.r-dropdown-menu a:hover {
  color: var(--purple); background: rgba(107,70,193,0.04);
  padding-left: 24px;
}
.r-dropdown-menu .sep {
  border: none; border-top: 1px solid rgba(29,27,24,0.08);
  margin: 8px 0;
}
.r-dropdown-toggle {
  display: flex !important; align-items: center; gap: 4px;
}
.r-dropdown-toggle .chevron {
  width: 10px; height: 6px; opacity: 0.5;
  transition: transform 0.2s;
}
.r-dropdown:hover .r-dropdown-toggle .chevron { transform: rotate(180deg); }

/* Mobile nav button */
.r-mobile-btn {
  display: none; cursor: pointer;
  width: 28px; height: 28px;
  flex-direction: column; justify-content: center; gap: 5px;
}
.r-mobile-btn span {
  width: 24px; height: 1.5px; background: var(--ink);
  transition: all 0.3s;
}
.r-mobile-btn.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.r-mobile-btn.open span:nth-child(2) { opacity: 0; }
.r-mobile-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu overlay */
.r-mobile-menu {
  position: fixed; inset: 0; z-index: 90;
  background: var(--bg);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 28px;
  padding: 80px 24px 40px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s, visibility 0s linear 0.3s;
}
.r-mobile-menu.open {
  opacity: 1; visibility: visible;
  transition: opacity 0.3s;
}
.r-mobile-menu a {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700; font-size: 2rem;
  letter-spacing: -0.03em; color: var(--ink);
  text-decoration: none; text-transform: uppercase;
}
.r-mobile-menu a.cta { color: var(--purple); margin-top: 16px; }

@media (max-width: 900px) {
  .r-nav-links { display: none; }
  .r-mobile-btn { display: flex; }
  .r-nav-inner { padding: 20px 24px; }
}

/* ── BREADCRUMB ─────────────────────────────────────── */
.r-breadcrumb {
  max-width: 1400px; margin: 0 auto;
  padding: 120px 40px 0;
}
.r-breadcrumb a, .r-breadcrumb span {
  font-family: 'Inter', sans-serif;
  font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--muted);
  text-decoration: none;
}
.r-breadcrumb a:hover { color: var(--purple); }
.r-breadcrumb .sep { margin: 0 8px; }
.r-breadcrumb .current { color: var(--ink); opacity: 0.8; }
@media (max-width: 768px) { .r-breadcrumb { padding: 100px 24px 0; } }

/* ── HERO ───────────────────────────────────────────── */
.r-hero {
  max-width: 1400px; margin: 0 auto;
  padding: 48px 40px 80px;
}
.r-hero-tag {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 32px; display: block;
}
.r-hero-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 900;
  font-size: clamp(3rem, 9vw, 8.5rem);
  line-height: 0.88; letter-spacing: -0.04em;
  text-transform: uppercase;
}
.r-hero-title em {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-style: italic; font-weight: 400;
  color: var(--purple);
}
.r-hero-sub {
  margin-top: 48px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: end;
}
.r-hero-desc {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.6; color: var(--ink-soft);
  max-width: 560px;
}
@media (max-width: 768px) {
  .r-hero { padding: 40px 24px 60px; }
  .r-hero-sub { grid-template-columns: 1fr; gap: 32px; }
}

/* ── BUTTONS ────────────────────────────────────────── */
.r-btn-dark, .r-btn-light, .r-btn-purple {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase;
  padding: 20px 40px; text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  border: none; cursor: pointer;
}
.r-btn-dark { background: var(--ink); color: var(--bg); }
.r-btn-dark:hover { background: var(--purple); }
.r-btn-light { background: var(--bg); color: var(--ink); border: 1px solid var(--ink); }
.r-btn-light:hover { background: var(--ink); color: var(--bg); }
.r-btn-purple { background: var(--purple); color: #fff; }
.r-btn-purple:hover { background: var(--purple-deep); }

/* ── DIVIDERS & SECTIONS ────────────────────────────── */
.r-divider {
  border: none;
  border-top: 1px solid var(--line);
  margin: 0;
}
.r-section {
  max-width: 1400px; margin: 0 auto;
  padding: 80px 40px;
}
.r-section-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 48px;
}
.r-section-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 900;
  font-size: clamp(2.5rem, 6vw, 5rem);
  letter-spacing: -0.04em; line-height: 0.95;
  text-transform: uppercase;
}
.r-section-title em {
  font-style: italic; font-weight: 400; color: var(--purple);
}
@media (max-width: 768px) { .r-section { padding: 60px 24px; } }

/* ── INCLUDES GRID (numbered list 2-col) ────────────── */
.r-includes { display: grid; grid-template-columns: repeat(2, 1fr); }
.r-include-item {
  padding: 40px 0;
  border-top: 1px solid var(--line);
  display: grid; grid-template-columns: 80px 1fr;
  gap: 24px; align-items: start;
}
.r-include-item:nth-child(odd) { padding-right: 60px; }
.r-include-item:nth-child(even) {
  padding-left: 60px;
  border-left: 1px solid var(--line);
}
.r-include-num {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; color: var(--purple);
}
.r-include-title {
  font-weight: 700; font-size: 1.1rem;
  margin-bottom: 8px;
}
.r-include-desc {
  font-size: 0.9rem; line-height: 1.65;
  color: var(--ink-soft);
}
@media (max-width: 768px) {
  .r-includes { grid-template-columns: 1fr; }
  .r-include-item:nth-child(odd) { padding-right: 0; }
  .r-include-item:nth-child(even) {
    padding-left: 0; border-left: none;
  }
}

/* ── PROCESS / DARK SECTION ─────────────────────────── */
.r-dark {
  background: var(--ink); color: var(--bg);
  padding: 100px 40px;
}
.r-dark-inner { max-width: 1400px; margin: 0 auto; }
.r-dark-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.4em; text-transform: uppercase;
  color: rgba(245,240,234,0.3); margin-bottom: 64px;
}
.r-dark-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 900;
  font-size: clamp(2.5rem, 6vw, 5rem);
  letter-spacing: -0.04em; line-height: 0.95;
  text-transform: uppercase; margin-bottom: 80px;
}
.r-dark-title em { font-style: italic; font-weight: 400; color: var(--purple); }
.r-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  border-top: 1px solid rgba(245,240,234,0.1);
  padding-top: 48px;
}
.r-step-num {
  font-family: 'Inter', sans-serif;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900; color: rgba(245,240,234,0.08);
  letter-spacing: -0.05em; line-height: 1;
  margin-bottom: 24px;
}
.r-step-title {
  font-weight: 700; font-size: 1rem;
  color: var(--bg); margin-bottom: 12px;
  text-transform: uppercase; letter-spacing: -0.01em;
}
.r-step-desc {
  font-size: 0.875rem; line-height: 1.7;
  color: rgba(245,240,234,0.45);
}
@media (max-width: 768px) {
  .r-dark { padding: 60px 24px; }
  .r-steps { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 480px) {
  .r-steps { grid-template-columns: 1fr; }
}

/* ── FAQ ─────────────────────────────────────────────── */
.r-faq {
  background: var(--bg-soft); padding: 80px 40px;
}
.r-faq-inner { max-width: 1400px; margin: 0 auto; }
.r-faq-header {
  display: grid; grid-template-columns: 1fr 2fr;
  gap: 80px; margin-bottom: 48px;
}
.r-faq-item {
  border-top: 1px solid rgba(29,27,24,0.12);
}
.r-faq-q {
  width: 100%; background: none; border: none;
  cursor: pointer; padding: 28px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700; font-size: 1.05rem;
  color: var(--ink); text-align: left;
}
.r-faq-q .icon {
  font-size: 22px; color: var(--purple);
  transition: transform 0.3s; flex-shrink: 0;
  margin-left: 24px;
}
.r-faq-q.open .icon { transform: rotate(45deg); }
.r-faq-a {
  display: none; padding: 0 0 28px;
  font-size: 0.95rem; line-height: 1.75;
  color: rgba(29,27,24,0.6); max-width: 800px;
}
@media (max-width: 768px) {
  .r-faq { padding: 60px 24px; }
  .r-faq-header { grid-template-columns: 1fr; gap: 24px; }
}

/* ── PURPLE CTA SECTION ─────────────────────────────── */
.r-cta {
  background: var(--purple); padding: 100px 40px;
  text-align: center;
}
.r-cta-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.4em; text-transform: uppercase;
  color: rgba(245,240,234,0.55); margin-bottom: 32px;
}
.r-cta-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 900;
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  letter-spacing: -0.04em; line-height: 0.9;
  color: #fff; text-transform: uppercase;
  margin-bottom: 48px;
}
.r-cta-btn {
  display: inline-block; background: #fff;
  color: var(--purple);
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase;
  padding: 22px 56px; text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.r-cta-btn:hover { background: var(--ink); color: #fff; }
@media (max-width: 768px) { .r-cta { padding: 60px 24px; } }

/* ── FOOTER ─────────────────────────────────────────── */
.r-footer {
  background: var(--ink); color: rgba(245,240,234,0.65);
  padding: 80px 40px 40px;
}
.r-footer-inner {
  max-width: 1400px; margin: 0 auto;
}
.r-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  border-bottom: 1px solid rgba(245,240,234,0.1);
  padding-bottom: 48px; margin-bottom: 32px;
}
.r-footer-brand {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 24px;
  letter-spacing: -0.04em; color: var(--bg);
  text-transform: uppercase; margin-bottom: 16px;
  display: inline-block; text-decoration: none;
}
.r-footer-brand .dot {
  display: inline-block; width: 8px; height: 8px;
  background: var(--purple); border-radius: 50%;
  vertical-align: baseline; margin: 0 2px 3px 2px;
}
.r-footer-tagline {
  font-size: 0.875rem; line-height: 1.6;
  color: rgba(245,240,234,0.5); max-width: 320px;
}
.r-footer h4 {
  font-family: 'Inter', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(245,240,234,0.4); margin-bottom: 20px;
}
.r-footer ul { list-style: none; }
.r-footer ul li { margin-bottom: 10px; }
.r-footer ul a {
  font-size: 0.875rem; color: rgba(245,240,234,0.7);
  text-decoration: none; transition: color 0.2s;
}
.r-footer ul a:hover { color: var(--purple); }
.r-footer-bottom {
  display: flex; justify-content: space-between;
  align-items: center; gap: 24px;
  font-size: 0.75rem; color: rgba(245,240,234,0.35);
  flex-wrap: wrap;
}
.r-footer-bottom a {
  color: rgba(245,240,234,0.5); text-decoration: none;
  font-size: 0.75rem;
}
.r-footer-bottom a:hover { color: var(--bg); }
.r-footer-social { display: flex; gap: 20px; }
@media (max-width: 768px) {
  .r-footer { padding: 60px 24px 24px; }
  .r-footer-grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 32px; }
  .r-footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ── BEFORE/AFTER SLIDER ────────────────────────────── */
.r-compare {
  position: relative; width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden; user-select: none;
  background: var(--bg-soft);
  border-radius: 4px;
}
.r-compare-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; pointer-events: none;
}
.r-compare-after {
  clip-path: inset(0 0 0 50%);
}
.r-compare-handle {
  position: absolute; top: 0; bottom: 0;
  left: 50%; width: 4px;
  background: #fff; cursor: ew-resize;
  z-index: 10;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.05), 0 4px 24px rgba(0,0,0,0.2);
  transform: translateX(-50%);
}
.r-compare-handle::before,
.r-compare-handle::after {
  content: ''; position: absolute; top: 50%;
  width: 0; height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  transform: translateY(-50%);
}
.r-compare-handle::before {
  right: 100%; margin-right: 8px;
  border-right: 10px solid #fff;
}
.r-compare-handle::after {
  left: 100%; margin-left: 8px;
  border-left: 10px solid #fff;
}
.r-compare-handle .knob {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 48px; height: 48px;
  background: var(--purple); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 18px; font-weight: 900;
  box-shadow: 0 4px 24px rgba(107,70,193,0.4);
  pointer-events: none;
}
.r-compare-label {
  position: absolute; top: 24px;
  padding: 8px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: #fff; z-index: 5;
  border-radius: 999px;
}
.r-compare-label.before { left: 24px; background: rgba(29,27,24,0.85); }
.r-compare-label.after { right: 24px; background: var(--purple); }

/* ── TESTIMONIAL CARDS ──────────────────────────────── */
.r-testimonials {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px; margin-top: 48px;
}
.r-testimonial {
  padding: 40px 32px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.4);
}
.r-testimonial-quote {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.05rem; line-height: 1.6;
  color: var(--ink); margin-bottom: 24px;
}
.r-testimonial-author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.r-testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--purple); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px;
}
.r-testimonial-name {
  font-weight: 700; font-size: 0.9rem;
}
.r-testimonial-role {
  font-size: 0.75rem; color: var(--muted);
  margin-top: 2px;
}
@media (max-width: 768px) {
  .r-testimonials { grid-template-columns: 1fr; }
}

/* ── STATS / METRICS ────────────────────────────────── */
.r-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(245,240,234,0.1);
  border-bottom: 1px solid rgba(245,240,234,0.1);
}
.r-stat {
  padding: 48px 32px;
  border-right: 1px solid rgba(245,240,234,0.1);
}
.r-stat:last-child { border-right: none; }
.r-stat-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -0.04em; line-height: 1;
  color: var(--purple); margin-bottom: 12px;
}
.r-stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(245,240,234,0.4);
}
@media (max-width: 768px) {
  .r-stats { grid-template-columns: 1fr 1fr; }
  .r-stat:nth-child(2) { border-right: none; }
  .r-stat:nth-child(1), .r-stat:nth-child(2) { border-bottom: 1px solid rgba(245,240,234,0.1); }
}

/* ── PROJECT CARD GRID ──────────────────────────────── */
.r-projects { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.r-project-card {
  display: block; text-decoration: none;
  color: inherit; cursor: pointer;
  transition: transform 0.3s;
}
.r-project-card:hover { transform: translateY(-6px); }
.r-project-img {
  position: relative; width: 100%;
  aspect-ratio: 16/10; overflow: hidden;
  background: var(--bg-soft);
}
.r-project-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s;
}
.r-project-card:hover .r-project-img img { transform: scale(1.04); }
.r-project-tag {
  position: absolute; top: 16px; left: 16px;
  padding: 6px 12px;
  background: rgba(29,27,24,0.85); color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase;
  border-radius: 999px;
}
.r-project-info {
  padding: 24px 0 0;
  display: flex; justify-content: space-between; align-items: start; gap: 24px;
}
.r-project-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700; font-size: 1.5rem;
  letter-spacing: -0.02em;
}
.r-project-desc {
  font-size: 0.9rem; color: var(--ink-soft);
  margin-top: 6px;
}
.r-project-arrow {
  font-size: 1.5rem; color: var(--purple);
  transition: transform 0.2s;
}
.r-project-card:hover .r-project-arrow { transform: translate(4px, -4px); }
@media (max-width: 768px) {
  .r-projects { grid-template-columns: 1fr; gap: 32px; }
}

/* ── PROSE (article content) ────────────────────────── */
.r-prose {
  max-width: 760px; margin: 0 auto;
  padding: 0 40px;
  font-size: 1.1rem; line-height: 1.75;
  color: rgba(29,27,24,0.78);
}
.r-prose h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 900; font-size: 2.25rem;
  line-height: 1.1; letter-spacing: -0.03em;
  color: var(--ink); margin: 56px 0 24px;
}
.r-prose h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700; font-size: 1.5rem;
  color: var(--ink); margin: 40px 0 16px;
}
.r-prose p { margin-bottom: 24px; }
.r-prose ul, .r-prose ol { margin: 16px 0 24px 20px; }
.r-prose li { margin-bottom: 8px; }
.r-prose strong { color: var(--ink); }
.r-prose a { color: var(--purple); text-decoration: underline; }
.r-prose blockquote {
  border-left: 3px solid var(--purple);
  padding: 8px 24px; margin: 32px 0;
  font-style: italic; color: var(--ink);
  background: var(--bg-soft);
}
@media (max-width: 768px) { .r-prose { padding: 0 24px; font-size: 1rem; } }

/* ── ANIMATIONS ─────────────────────────────────────── */
@keyframes r-fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.r-animate { animation: r-fadeUp 0.6s ease-out backwards; }

/* ── UTILITIES ──────────────────────────────────────── */
.r-text-purple { color: var(--purple); }
.r-text-muted { color: var(--muted); }
.r-mt-0 { margin-top: 0 !important; }
.r-mb-0 { margin-bottom: 0 !important; }
