@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600&family=DM+Sans:wght@400;500&display=swap');

:root {
  --terracotta: #C4623A;
  --terra-light: #E07A50;
  --terra-hover: #D4724A;
  --sage: #7A9E7E;
  --sage-light: #A3C5A7;
  --sand: #F5E6D3;
  --sand-light: #FBF4EB;
  --espresso: #2C2418;
  --espresso-light: #4A3E30;
  --gold: #E8C56D;
  --gold-dark: #C9A84E;
  --text-body: #3A3026;
  --text-muted: #7A6E62;
  --border-light: rgba(44,36,24,0.08);
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-width: 1120px;
  --nav-height: 72px;
}

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

html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--sand-light);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--terracotta); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--terra-light); }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 2rem; }

.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-body); font-size: 0.95rem; font-weight: 500;
  padding: 0.85rem 1.8rem; border-radius: 2rem; border: none;
  cursor: pointer; transition: all 0.25s ease; text-decoration: none;
}
.btn-primary { background: var(--terracotta); color: #fff; }
.btn-primary:hover { background: var(--terra-hover); color: #fff; transform: translateY(-1px); }
.btn-secondary {
  background: transparent; color: var(--sand);
  border: 1.5px solid rgba(245,230,211,0.5);
}
.btn-secondary:hover { border-color: var(--sand); color: #fff; }
.btn-outline {
  background: transparent; color: var(--terracotta);
  border: 1.5px solid var(--terracotta);
}
.btn-outline:hover { background: var(--terracotta); color: #fff; }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-height);
  background: rgba(245,230,211,0.92);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 2px 24px rgba(44,36,24,0.08); }
.nav .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%;
}
.nav-brand { display: flex; align-items: flex-end; gap: 0.6rem; text-decoration: none; }
.nav-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--terracotta); flex-shrink: 0;
  margin-bottom: 0.15rem;
}
.nav-name {
  font-family: var(--font-display); font-size: 1.2rem;
  color: var(--espresso); font-weight: 400; line-height: 1;
}
.nav-descriptor {
  font-size: 0.6rem; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--terracotta); margin-left: 0.3rem; font-weight: 500;
  line-height: 1; margin-bottom: -0.04rem;
}
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  font-size: 0.9rem; color: var(--espresso-light);
  text-decoration: none; font-weight: 400;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--terracotta); }
.nav-cta .btn { padding: 0.6rem 1.4rem; font-size: 0.85rem; }
.lang-switch {
  display: flex; gap: 0.25rem; margin-left: 0.5rem;
}
.lang-switch button {
  background: none; border: none; font-family: var(--font-body);
  font-size: 0.75rem; color: var(--text-muted); cursor: pointer;
  padding: 0.2rem 0.4rem; border-radius: 4px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.5px; transition: all 0.2s;
}
.lang-switch button.active {
  color: var(--terracotta); background: rgba(196,98,58,0.08);
}
.lang-switch button:hover { color: var(--terracotta); }

.nav-mobile-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 28px; height: 20px; position: relative; flex-shrink: 0;
}
.nav-mobile-toggle span {
  display: block; width: 100%; height: 2px; background: var(--espresso);
  position: absolute; left: 0; transition: all 0.3s;
}
.nav-mobile-toggle span:nth-child(1) { top: 0; }
.nav-mobile-toggle span:nth-child(2) { top: 9px; }
.nav-mobile-toggle span:nth-child(3) { top: 18px; }

/* ===== HERO ===== */
.hero {
  background: var(--espresso);
  padding: 10rem 0 5rem;
  position: relative; overflow: hidden;
  min-height: 85vh; display: flex; align-items: center;
}
.hero::after {
  content: ''; position: absolute; top: 0; right: -10%; bottom: 0;
  width: 60%; background: linear-gradient(135deg, transparent 30%, rgba(196,98,58,0.06) 100%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero-content { max-width: 600px; }
.hero-eyebrow {
  font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--terracotta); font-weight: 500; margin-bottom: 1rem;
  opacity: 0.9;
}
.hero h1 {
  font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 3.4rem);
  color: var(--sand); font-weight: 400; line-height: 1.2;
  margin-bottom: 1.2rem; text-wrap: balance;
}
.hero p {
  font-size: 1.05rem; color: rgba(245,230,211,0.75);
  line-height: 1.7; margin-bottom: 2rem; max-width: 480px;
}
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-subline {
  font-size: 0.9rem; color: var(--terracotta); letter-spacing: 0.5px;
  font-weight: 500; margin-bottom: 2rem; opacity: 0.9;
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--sand); padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-light);
}
.trust-bar .container {
  display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap;
}
.trust-item { text-align: center; }
.trust-number {
  font-family: var(--font-display); font-size: 1.8rem;
  color: var(--terracotta); font-weight: 500; line-height: 1;
}
.trust-label {
  font-size: 0.82rem; color: var(--text-muted); margin-top: 0.3rem;
}

/* ===== SECTION BASICS ===== */
.section { padding: 5rem 0; }
.section-sand { background: var(--sand); }
.section-sandlight { background: var(--sand-light); }
.section-espresso { background: var(--espresso); color: var(--sand); }
.section-header {
  text-align: center; max-width: 720px; margin: 0 auto 3rem;
}
.section-header h2 {
  font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 400; line-height: 1.25; margin-bottom: 0.8rem;
  text-wrap: balance;
  text-wrap: balance;
}
.section-header p {
  font-size: 1rem; color: var(--text-muted); line-height: 1.7;
}
.section-espresso .section-header p { color: rgba(245,230,211,0.7); }
.section-espresso .section-header { max-width: 800px; }
.cta-subtitle {
  font-family: var(--font-display); font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 400; color: rgba(245,230,211,0.8); margin-bottom: 1.2rem;
  line-height: 1.35;
}

/* ===== YOUTUBE SECTION ===== */
.video-wrapper {
  max-width: 720px; margin: 0 auto;
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 8px 40px rgba(44,36,24,0.12);
  aspect-ratio: 16/9; background: var(--espresso);
  display: flex; align-items: center; justify-content: center;
}
.video-placeholder {
  text-align: center; padding: 2rem; color: var(--sand);
}
.video-placeholder .play-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--terracotta); display: flex;
  align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.video-placeholder .play-icon::after {
  content: ''; width: 0; height: 0;
  border-left: 18px solid #fff; border-top: 11px solid transparent;
  border-bottom: 11px solid transparent; margin-left: 4px;
}

/* ===== PILLARS ===== */
.pillars-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem;
}
.pillar-card {
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem 2.5rem 2rem;
  border: 1px solid rgba(44,36,24,0.05);
  border-top: 3px solid var(--terracotta);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.35s;
  display: flex; flex-direction: column;
  position: relative;
  box-shadow: 0 2px 12px rgba(44,36,24,0.04);
}
.pillar-card:nth-child(1) { border-top-color: var(--terracotta); }
.pillar-card:nth-child(2) { border-top-color: var(--sage); }
.pillar-card:nth-child(3) { border-top-color: var(--espresso-light); }
.pillar-card:nth-child(4) { border-top-color: var(--gold-dark); }
.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(44,36,24,0.1), 0 4px 12px rgba(44,36,24,0.04);
}
.pillar-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
}
.pillar-icon svg { width: 26px; height: 26px; }
.pillar-icon-terra { background: rgba(196,98,58,0.08); color: var(--terracotta); }
.pillar-icon-sage { background: rgba(122,158,126,0.08); color: var(--sage); }
.pillar-icon-gold { background: rgba(232,197,109,0.12); color: var(--gold-dark); }
.pillar-icon-espresso { background: rgba(44,36,24,0.05); color: var(--espresso-light); }
.pillar-card h3 {
  font-family: var(--font-display); font-size: 1.35rem;
  font-weight: 500; margin-bottom: 0.8rem; color: var(--espresso);
  text-wrap: balance;
  line-height: 1.3;
}
.pillar-card p {
  font-size: 0.92rem; color: var(--text-muted); line-height: 1.75; flex: 1;
}
.pillar-card .btn {
  margin-top: 1.8rem; align-self: flex-start;
  background: none; border: none; border-radius: 0;
  color: var(--terracotta); padding: 0;
  font-size: 0.88rem; font-weight: 500;
  letter-spacing: 0.2px;
  transition: color 0.2s, gap 0.2s;
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.pillar-card .btn::after {
  content: '→'; transition: transform 0.25s;
}
.pillar-card .btn:hover {
  color: var(--terra-hover); background: none; transform: none;
}
.pillar-card .btn:hover::after {
  transform: translateX(3px);
}
.pillar-card:nth-child(1) .btn { color: var(--terracotta); }
.pillar-card:nth-child(1) .btn:hover { color: var(--terra-hover); }
.pillar-card:nth-child(2) .btn { color: var(--sage); }
.pillar-card:nth-child(2) .btn:hover { color: #5E8562; }
.pillar-card:nth-child(3) .btn { color: var(--espresso-light); }
.pillar-card:nth-child(3) .btn:hover { color: var(--espresso); }
.pillar-card:nth-child(4) .btn { color: var(--gold-dark); }
.pillar-card:nth-child(4) .btn:hover { color: #A8862E; }

/* ===== WHY PARAGUAY ===== */
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.why-card {
  background: rgba(245,230,211,0.06);
  border: 1px solid rgba(245,230,211,0.08);
  border-radius: 16px;
  padding: 2.2rem 2rem 2rem;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), background 0.35s, border-color 0.35s;
  display: flex; flex-direction: column;
}
.why-card:hover {
  transform: translateY(-4px);
  background: rgba(245,230,211,0.1);
  border-color: rgba(245,230,211,0.15);
}
.why-number {
  font-family: var(--font-display); font-size: 2rem;
  color: var(--terracotta); font-weight: 400;
  line-height: 1; margin-bottom: 1.2rem;
  opacity: 0.7;
}
.why-card h3 {
  font-family: var(--font-display); font-size: 1.2rem;
  font-weight: 500; color: var(--sand);
  line-height: 1.3; margin-bottom: 0.7rem;
  text-wrap: balance;
}
.why-card p {
  font-size: 0.88rem; color: rgba(245,230,211,0.6);
  line-height: 1.75; flex: 1;
}
.why-strip {
  margin-top: 2.5rem;
  border: 1px solid rgba(245,230,211,0.12);
  border-radius: 12px;
  padding: 2rem 2.5rem;
  text-align: center;
  background: rgba(196,98,58,0.06);
}
.why-strip-headline {
  font-family: var(--font-display); font-size: 1.15rem;
  color: var(--sand); font-weight: 400;
  margin-bottom: 0.5rem; text-wrap: balance;
}
.why-strip-text {
  font-size: 0.9rem; color: rgba(245,230,211,0.6);
  line-height: 1.7; max-width: 640px; margin: 0 auto;
}

/* ===== LEAD MAGNET ===== */
.lead-magnet {
  background: var(--espresso); border-radius: 16px;
  padding: 3.5rem; text-align: center;
  position: relative; overflow: hidden;
}
.lead-magnet::before {
  content: ''; position: absolute; top: -40%; right: -20%;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(196,98,58,0.06); pointer-events: none;
}
.lead-magnet h2 {
  font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2rem);
  color: var(--sand); font-weight: 400; margin-bottom: 0.6rem;
  position: relative;
}
.lead-magnet p {
  color: rgba(245,230,211,0.7); font-size: 0.95rem;
  margin-bottom: 1.8rem; position: relative;
}
.lead-form {
  display: flex; gap: 0.75rem; max-width: 480px;
  margin: 0 auto; position: relative;
}
.lead-form input {
  flex: 1; padding: 0.85rem 1.2rem; border-radius: 2rem;
  border: 1.5px solid rgba(245,230,211,0.2);
  background: rgba(245,230,211,0.08); color: var(--sand);
  font-family: var(--font-body); font-size: 0.9rem;
  outline: none; transition: border-color 0.2s;
}
.lead-form input::placeholder { color: rgba(245,230,211,0.4); }
.lead-form input:focus { border-color: var(--terracotta); }
.lead-form .btn { flex-shrink: 0; }

.lead-success {
  display: flex; flex-direction: column; align-items: center;
  gap: 0.3rem; padding: 0.5rem 0;
}
.lead-success svg { opacity: 0.9; margin-bottom: 0.3rem; }
.lead-magnet .lead-success-line1 {
  font-family: var(--font-display); font-size: 1.6rem;
  color: var(--sand); font-weight: 600;
  margin-bottom: 0.4rem;
}
.lead-magnet .lead-success-line2 {
  font-size: 0.95rem; color: var(--terracotta);
  text-align: center; line-height: 1.5;
  margin-bottom: 0;
}
.lead-magnet .lead-success-line3 {
  font-size: 0.88rem; color: var(--terracotta);
  text-align: center; line-height: 1.5;
  font-style: italic; opacity: 0.8;
  margin-bottom: 0;
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: center;
}
.about-image {
  border-radius: 12px; overflow: hidden;
  aspect-ratio: 4/5; position: relative;
  background: linear-gradient(145deg, #8BA4A0 0%, #6B8E7B 40%, #C4A882 100%);
}
.about-image-label {
  position: absolute; bottom: 1.5rem; left: 1.5rem;
  background: rgba(44,36,24,0.7); backdrop-filter: blur(6px);
  color: var(--sand); font-size: 0.75rem; padding: 0.4rem 0.8rem;
  border-radius: 6px; letter-spacing: 0.5px;
}
.about-text h2 {
  font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400; margin-bottom: 0.4rem; color: var(--espresso);
}
.about-subtitle {
  font-family: var(--font-body); font-size: 1.05rem;
  font-weight: 400; color: var(--text-muted); margin-bottom: 1.2rem;
  font-style: italic;
}
.about-text p {
  font-size: 0.95rem; color: var(--text-muted); margin-bottom: 1rem;
}
.about-stats {
  display: flex; gap: 2rem; margin-top: 1.5rem; padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
}
.about-stat-number {
  font-family: var(--font-display); font-size: 1.5rem;
  color: var(--terracotta); font-weight: 500;
}
.about-stat-label { font-size: 0.8rem; color: var(--text-muted); }

/* ===== FOOTER ===== */
.footer {
  background: var(--espresso); padding: 3rem 0 1.5rem;
}
.footer-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  flex-wrap: wrap; gap: 2rem; padding-bottom: 2rem;
  border-bottom: 1px solid rgba(245,230,211,0.08);
}
.footer-brand .nav-dot { background: var(--terracotta); }
.footer-brand .nav-name { color: var(--sand); }
.footer-brand .nav-descriptor { color: var(--terracotta); }
.footer-desc {
  font-size: 0.85rem; color: rgba(245,230,211,0.5);
  max-width: 280px; margin-top: 0.6rem; line-height: 1.6;
}
.footer-links h4 {
  font-family: var(--font-body); font-size: 0.75rem;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: rgba(245,230,211,0.4); margin-bottom: 0.8rem; font-weight: 500;
}
.footer-links a {
  display: block; font-size: 0.9rem; color: rgba(245,230,211,0.65);
  margin-bottom: 0.5rem; transition: color 0.2s;
}
.footer-links a:hover { color: var(--terracotta); }
.footer-bottom {
  padding-top: 1.5rem; text-align: center;
  font-size: 0.78rem; color: rgba(245,230,211,0.3);
}
.footer-social { display: flex; gap: 1rem; margin-top: 0.5rem; }
.footer-social a {
  color: rgba(245,230,211,0.4); font-size: 0.85rem;
}
.footer-social a:hover { color: var(--terracotta); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-mobile-toggle { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: var(--nav-height); left: 0; right: 0;
    background: var(--sand); padding: 1.2rem 2rem;
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 12px 24px rgba(44,36,24,0.08);
    gap: 0;
  }
  .nav-links.open a { padding: 0.45rem 0; font-size: 1rem; }
  .nav-links.open .lang-switch { order: -1; margin-left: 0; margin-bottom: 0.5rem; padding-bottom: 0.6rem; border-bottom: 1px solid var(--border-light); border-top: none; margin-top: 0; padding-top: 0; }
  .nav-links.open .nav-mobile-cta { display: inline-flex !important; margin-top: 0.75rem; text-align: center; justify-content: center; align-self: center; padding-left: 2.5rem; padding-right: 2.5rem; }
}
@media (max-width: 768px) {
  .hero { padding: 8rem 0 3rem; min-height: auto; }
  .hero h1 { font-size: 2rem; }
  .trust-bar .container { gap: 1.5rem; }
  .pillars-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .why-strip { padding: 1.5rem; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image { max-height: 360px; }
  .lead-form { flex-direction: column; }
  .lead-magnet { padding: 2rem; }
  .footer-top { flex-direction: column; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { text-align: center; justify-content: center; }
}
@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .trust-bar .container { flex-direction: column; gap: 1rem; }
  .about-stats { flex-direction: column; gap: 1rem; }
}

/* ===== BLOG PAGE ===== */
.blog-hero {
  background: var(--espresso);
  padding: 9rem 0 3.5rem;
  position: relative; overflow: hidden;
}
.blog-hero::after {
  content: ''; position: absolute; top: 0; right: -10%; bottom: 0;
  width: 60%; background: linear-gradient(135deg, transparent 30%, rgba(196,98,58,0.06) 100%);
  pointer-events: none;
}
.blog-hero .container { position: relative; z-index: 1; }
.blog-hero-eyebrow {
  font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--terracotta); font-weight: 500; margin-bottom: 0.8rem;
  opacity: 0.9;
}
.blog-hero h1 {
  font-family: var(--font-display); font-size: clamp(2.6rem, 5vw, 3.6rem);
  color: var(--sand); font-weight: 400; line-height: 1.15;
  margin-bottom: 1rem;
}
.blog-hero-sub {
  font-size: 1.05rem; color: rgba(245,230,211,0.6);
  line-height: 1.7; max-width: 540px;
}

.blog-filter {
  background: var(--sand); padding: 1.5rem 0;
  border-bottom: 1px solid var(--border-light);
  position: sticky; top: var(--nav-height); z-index: 50;
}
.filter-tabs {
  display: flex; gap: 0.5rem; flex-wrap: wrap;
}
.filter-tab {
  background: none; border: 1.5px solid var(--border-light);
  font-family: var(--font-body); font-size: 0.85rem; font-weight: 500;
  color: var(--text-muted); padding: 0.5rem 1.2rem;
  border-radius: 2rem; cursor: pointer; transition: all 0.2s;
}
.filter-tab:hover {
  border-color: var(--terracotta); color: var(--terracotta);
}
.filter-tab.active {
  background: var(--terracotta); border-color: var(--terracotta);
  color: #fff;
}

.blog-grid-section {
  background: var(--sand-light); padding: 3rem 0 4rem;
  min-height: 50vh;
}
.blog-grid {
  display: flex; flex-direction: column; gap: 0;
}
.blog-card {
  display: flex; text-decoration: none;
  padding: 2rem 0; border-bottom: 1px solid var(--border-light);
  transition: background 0.2s;
}
.blog-card:first-child { padding-top: 0; }
.blog-card:last-child { border-bottom: none; }
.blog-card:hover { background: rgba(196,98,58,0.02); }
.blog-card:hover .blog-card-read { color: var(--terracotta); }
.blog-card:hover .blog-card-read::after { transform: translateX(3px); }
.blog-card-content { flex: 1; }
.blog-card-meta {
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 0.7rem;
}
.blog-card-badge {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.5px;
  padding: 0.25rem 0.65rem; border-radius: 1rem;
  text-transform: uppercase;
}
.blog-badge-soon {
  background: rgba(232,197,109,0.15); color: var(--gold-dark);
}
.blog-badge-new {
  background: rgba(122,158,126,0.15); color: var(--sage);
}
.blog-card-cat {
  font-size: 0.78rem; color: var(--text-muted); font-weight: 400;
}
.blog-card h3 {
  font-family: var(--font-display); font-size: 1.3rem;
  font-weight: 500; color: var(--espresso);
  line-height: 1.35; margin-bottom: 0.5rem;
}
.blog-card p {
  font-size: 0.92rem; color: var(--text-muted);
  line-height: 1.7; max-width: 640px;
}
.blog-card-read {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.88rem; font-weight: 500;
  color: var(--espresso-light); margin-top: 0.8rem;
  transition: color 0.2s;
}
.blog-card-read::after {
  content: '→'; transition: transform 0.25s;
}
.blog-card-soon {
  opacity: 0.7; pointer-events: none;
}

.blog-empty {
  text-align: center; padding: 3rem 0;
  color: var(--text-muted); font-size: 0.95rem;
}

.nav-active { color: var(--terracotta) !important; }

/* ===== BLOG RESPONSIVE ===== */
@media (max-width: 768px) {
  .blog-hero { padding: 7.5rem 0 2.5rem; }
  .blog-hero h1 { font-size: 2.2rem; }
  .filter-tabs { gap: 0.4rem; }
  .filter-tab { padding: 0.4rem 0.9rem; font-size: 0.8rem; }
  .blog-card h3 { font-size: 1.15rem; }
}

/* ===== FOOTER LEGAL ===== */
.footer-legal { display: inline-flex; gap: 1rem; margin-left: 1rem; }
.footer-legal a { color: rgba(245,230,211,0.4); text-decoration: none; font-size: 0.8rem; }
.footer-legal a:hover { color: var(--terracotta); }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: var(--espresso); border-top: 2px solid var(--terracotta);
  padding: 1.25rem 1.5rem; display: none;
}
.cookie-banner.visible { display: block; }
.cookie-inner { max-width: 960px; margin: 0 auto; display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.cookie-text { flex: 1; min-width: 280px; font-size: 0.85rem; color: rgba(245,230,211,0.75); line-height: 1.5; }
.cookie-actions { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.cookie-btn {
  border: none; cursor: pointer; font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem; font-weight: 600; padding: 0.55rem 1.25rem;
  border-radius: 2rem; transition: opacity 0.15s;
}
.cookie-btn:hover { opacity: 0.85; }
.cookie-accept { background: var(--terracotta); color: #fff; }
.cookie-decline { background: transparent; color: rgba(245,230,211,0.6); border: 1px solid rgba(245,230,211,0.2); }
.cookie-link { color: var(--terracotta); font-size: 0.8rem; text-decoration: none; white-space: nowrap; }
.cookie-link:hover { text-decoration: underline; }

@media (max-width: 768px) {
  .cookie-inner { flex-direction: column; text-align: center; }
  .cookie-actions { justify-content: center; }
  .footer-legal { display: flex; margin-left: 0; margin-top: 0.5rem; justify-content: center; }
}
