/* ═══════════════════════════════════════════════════════
   FENICE TR — BLOG STYLES
   Extends style.css design tokens
═══════════════════════════════════════════════════════ */

:root {
  --green-deep: #0d2b1a;
  --green-dark: #143d26;
  --green-mid: #1e5c38;
  --green-bright: #072f17;
  --green-accent: #3aaa6b;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --cream: #f5f0e8;
  --cream-dark: #ede5d4;
  --white: #ffffff;
  --text-light: rgba(255, 255, 255, 0.82);
  --text-muted: rgba(255, 255, 255, 0.48);

  /* Blog-specific */
  --card-bg: rgba(20, 61, 38, 0.55);
  --card-border: rgba(58, 170, 107, 0.18);
  --score-high: #3aaa6b;
  --score-mid: #c9a84c;
  --score-low: #e07a5f;
  --tag-bg: rgba(201, 168, 76, 0.12);
  --tag-color: #e8c97a;
  --sidebar-bg: rgba(20, 61, 38, 0.4);
}

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

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--green-deep);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--green-deep); }
::-webkit-scrollbar-thumb { background: var(--green-accent); border-radius: 3px; }

/* ─── NAV ─── */
nav#main-nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 3rem;
  background: rgba(13, 43, 26, 0.92);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 2px solid rgb(29, 236, 181);
  box-shadow: #ede5d4 0px 1px 3px, rgba(255,255,255,0.1) 0px 1px 2px;
  transition: padding 0.4s;
}
nav#main-nav.scrolled { padding: 0.7rem 3rem; }

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  display: flex; align-items: center; gap: 0.6rem;
}
.nav-logo span { color: var(--white); font-weight: 300; }

.nav-tagline {
  font-size: 0.52rem !important; font-weight: 600 !important;
  letter-spacing: 0.25em !important; text-transform: uppercase !important;
  color: var(--gold) !important; margin-left: 2.8rem !important;
  margin-top: -0.2em !important; opacity: 0.8 !important; display: block !important;
}

.nav-links { display: flex; gap: 1.75rem; list-style: none; }
.nav-links a {
  font-size: 0.85rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-light);
  transition: color 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--green-accent); }

.nav-cta {
  background: transparent; border: 1px solid var(--gold);
  color: var(--gold-light); font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; padding: 0.55rem 1.4rem;
  cursor: pointer; transition: all 0.3s; text-decoration: none;
}
.nav-cta:hover { background: var(--gold); color: var(--green-deep); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 2px; background: var(--gold-light); transition: all 0.3s; }

/* ─── FADE ANIMATION ─── */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: none; }

/* ─── BLOG HERO ─── */
.blog-hero {
  min-height: 52vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 10rem 3rem 6rem;
  position: relative; overflow: hidden;
  background: radial-gradient(ellipse at 60% 50%, #1a4a2e 0%, var(--green-deep) 65%);
}
.blog-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(58,170,107,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(58,170,107,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.blog-hero-eyebrow {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1.5rem; justify-content: center; position: relative; z-index: 1;
}
.blog-hero-eyebrow::before, .blog-hero-eyebrow::after {
  content: ''; width: 32px; height: 1px; background: var(--gold);
}
.blog-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300; line-height: 1.1;
  margin-bottom: 1.2rem; position: relative; z-index: 1;
}
.blog-hero-title em { font-style: italic; color: var(--gold-light); }
.blog-hero-subtitle {
  font-size: 0.9rem; font-weight: 300; color: var(--text-light);
  max-width: 560px; line-height: 1.75; position: relative; z-index: 1;
}

/* ─── BLOG FILTERS ─── */
.blog-filters {
  background: var(--green-dark);
  border-bottom: 1px solid var(--card-border);
  padding: 1.2rem 3rem;
  display: flex; gap: 0.6rem; flex-wrap: wrap;
  align-items: center; justify-content: center;
  position: sticky; top: 72px; z-index: 50;
  backdrop-filter: blur(8px);
}
.filter-btn {
  background: transparent;
  border: 1px solid rgba(58,170,107,0.3);
  color: var(--text-light);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.4rem 1.1rem; cursor: pointer;
  transition: all 0.25s; border-radius: 2px;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--gold); border-color: var(--gold);
  color: var(--green-deep); font-weight: 700;
}

/* ─── BLOG LAYOUT ─── */
.blog-layout {
  max-width: 1340px; margin: 0 auto;
  padding: 5rem 3rem;
  display: grid; grid-template-columns: 1fr 340px; gap: 5rem;
}

/* ─── FEATURED POST ─── */
.featured-label {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 2rem;
}
.featured-label::before {
  content: ''; width: 28px; height: 1px; background: var(--gold);
}

.featured-post {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  display: grid; grid-template-columns: 1fr 1fr;
  overflow: hidden; margin-bottom: 4rem;
  transition: border-color 0.3s, transform 0.3s;
}
.featured-post:hover {
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-4px);
}
.featured-post-img {
  position: relative; overflow: hidden;
  background: var(--green-dark);
  min-height: 400px;
}
.featured-post-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
  filter: saturate(0.85) contrast(1.05);
}
.featured-post:hover .featured-post-img img { transform: scale(1.04); }

.featured-post-body {
  padding: 3rem;
  display: flex; flex-direction: column; justify-content: center; gap: 1.2rem;
}
.featured-post-cat {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--green-accent);
}
.featured-post-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 400; line-height: 1.25;
  color: var(--white);
}
.featured-post-title em { font-style: italic; color: var(--gold-light); }
.featured-post-excerpt {
  font-size: 0.85rem; color: var(--text-light); line-height: 1.75;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.featured-post-meta {
  display: flex; align-items: center; gap: 1.5rem;
  font-size: 0.72rem; color: var(--text-muted); letter-spacing: 0.06em;
}
.featured-post-meta .score-badge { margin-left: auto; }

.read-more {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold);
  transition: gap 0.25s, color 0.25s;
  margin-top: 0.4rem;
}
.read-more::after { content: '→'; font-size: 1rem; }
.read-more:hover { color: var(--gold-light); gap: 1rem; }

/* ─── SCORE BADGE ─── */
.score-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(0,0,0,0.3); border: 1px solid rgba(201,168,76,0.25);
  padding: 0.3rem 0.7rem; flex-shrink: 0;
}
.score-label {
  font-size: 0.6rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--text-muted);
}
.score-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 700; line-height: 1;
}
.score-value.high { color: var(--score-high); }
.score-value.mid { color: var(--score-mid); }
.score-value.low { color: var(--score-low); }
.score-stars {
  display: flex; gap: 2px;
}
.score-stars span {
  font-size: 0.65rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.score-stars span.filled { color: var(--gold); }

.score-bar-wrap {
  width: 48px; height: 3px; background: rgba(255,255,255,0.1); border-radius: 2px; overflow: hidden;
}
.score-bar {
  height: 100%; border-radius: 2px;
  background: linear-gradient(90deg, var(--score-high), var(--gold));
}

/* ─── ARTICLE GRID ─── */
.articles-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 400;
  letter-spacing: 0.06em; color: var(--text-muted);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--card-border);
  display: flex; align-items: center; justify-content: space-between;
}
.articles-count {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.14em; color: var(--green-accent);
}

.articles-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.8rem;
}

.article-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.3s, transform 0.3s;
  display: flex; flex-direction: column;
}
.article-card:hover {
  border-color: rgba(201,168,76,0.35);
  transform: translateY(-4px);
}

.article-card-img {
  position: relative; overflow: hidden;
  background: var(--green-dark);
  aspect-ratio: 16/9;
}
.article-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
  filter: saturate(0.85);
}
.article-card:hover .article-card-img img { transform: scale(1.05); }

.article-card-score-overlay {
  position: absolute; top: 0.9rem; right: 0.9rem;
  z-index: 2;
}

.article-card-body {
  padding: 1.6rem;
  flex: 1; display: flex; flex-direction: column; gap: 0.8rem;
}
.article-card-cat {
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--green-accent);
}
.article-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 400; line-height: 1.3;
  color: var(--white); transition: color 0.25s;
}
.article-card:hover .article-card-title { color: var(--gold-light); }
.article-card-title em { font-style: italic; color: var(--gold-light); }

.article-card-excerpt {
  font-size: 0.8rem; color: var(--text-light); line-height: 1.7;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  flex: 1;
}
.article-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 0.9rem; margin-top: auto;
  border-top: 1px solid rgba(58,170,107,0.12);
  font-size: 0.7rem; color: var(--text-muted); letter-spacing: 0.05em;
}
.article-card-tags { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.article-tag {
  background: var(--tag-bg); color: var(--tag-color);
  font-size: 0.58rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 0.2rem 0.55rem;
}
.article-read-more {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 0.4rem;
  transition: color 0.25s, gap 0.25s; flex-shrink: 0;
}
.article-read-more::after { content: '→'; }
.article-card:hover .article-read-more { color: var(--gold-light); gap: 0.7rem; }

/* ─── SIDEBAR ─── */
.blog-sidebar { display: flex; flex-direction: column; gap: 2.5rem; }

.sidebar-widget {
  background: var(--sidebar-bg);
  border: 1px solid var(--card-border);
  padding: 1.8rem;
}
.sidebar-widget-title {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.4rem; padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(201,168,76,0.2);
  display: flex; align-items: center; gap: 0.6rem;
}
.sidebar-widget-title::before { content: ''; width: 20px; height: 1px; background: var(--gold); }

.sidebar-cats { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.sidebar-cats li a {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.8rem; color: var(--text-light); padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.25s;
}
.sidebar-cats li a:hover { color: var(--gold-light); }
.sidebar-cats .cat-count {
  font-size: 0.65rem; color: var(--text-muted);
  background: rgba(58,170,107,0.12); padding: 0.15rem 0.45rem;
}

.sidebar-top-posts { list-style: none; display: flex; flex-direction: column; gap: 1.2rem; }
.sidebar-top-posts li a {
  display: flex; gap: 0.9rem; align-items: flex-start;
  transition: opacity 0.25s;
}
.sidebar-top-posts li a:hover { opacity: 0.8; }
.sidebar-top-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; font-weight: 700; line-height: 1;
  color: rgba(201,168,76,0.25); flex-shrink: 0; width: 28px;
}
.sidebar-top-text { display: flex; flex-direction: column; gap: 0.3rem; }
.sidebar-top-title { font-size: 0.78rem; color: var(--text-light); line-height: 1.4; }
.sidebar-top-meta { font-size: 0.65rem; color: var(--text-muted); }

.sidebar-tag-cloud { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.sidebar-tag {
  background: rgba(58,170,107,0.1); border: 1px solid rgba(58,170,107,0.2);
  color: var(--text-light); font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.08em; padding: 0.3rem 0.75rem;
  transition: all 0.25s; cursor: pointer;
}
.sidebar-tag:hover { background: var(--gold); border-color: var(--gold); color: var(--green-deep); }

.sidebar-cta {
  background: linear-gradient(135deg, var(--green-mid) 0%, var(--green-dark) 100%);
  border: 1px solid rgba(201,168,76,0.3); padding: 2rem;
  text-align: center; display: flex; flex-direction: column; gap: 1rem;
  align-items: center;
}
.sidebar-cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; line-height: 1.2;
}
.sidebar-cta-title em { font-style: italic; color: var(--gold-light); }
.sidebar-cta-body { font-size: 0.78rem; color: var(--text-light); line-height: 1.65; }
.sidebar-cta-btn {
  display: inline-block;
  background: var(--gold); color: var(--green-deep);
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; padding: 0.75rem 1.8rem;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
  transition: background 0.25s;
}
.sidebar-cta-btn:hover { background: var(--gold-light); }

/* ─── PAGINATION ─── */
.pagination {
  display: flex; align-items: center; justify-content: center;
  gap: 0.5rem; margin-top: 3rem; padding-top: 2.5rem;
  border-top: 1px solid var(--card-border);
}
.page-btn {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(58,170,107,0.25); background: transparent;
  color: var(--text-light); font-size: 0.78rem; font-weight: 500;
  cursor: pointer; transition: all 0.25s;
}
.page-btn:hover, .page-btn.active {
  background: var(--gold); border-color: var(--gold); color: var(--green-deep); font-weight: 700;
}
.page-btn.disabled { opacity: 0.3; pointer-events: none; }
.page-dots { color: var(--text-muted); font-size: 0.8rem; padding: 0 0.3rem; }

/* ─── SINGLE POST ─── */
.post-hero {
  padding: 10rem 3rem 5rem;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  position: relative; overflow: hidden;
  background: radial-gradient(ellipse at 50% 60%, #1a4a2e 0%, var(--green-deep) 60%);
}
.post-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(58,170,107,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(58,170,107,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.post-hero-inner { position: relative; z-index: 1; max-width: 780px; }
.post-breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.68rem; color: var(--text-muted); letter-spacing: 0.12em;
  text-transform: uppercase; margin-bottom: 1.5rem; justify-content: center;
}
.post-breadcrumb a { color: var(--gold); transition: opacity 0.2s; }
.post-breadcrumb a:hover { opacity: 0.8; }
.post-breadcrumb .sep { opacity: 0.4; }

.post-category {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--green-accent);
  margin-bottom: 1.2rem;
  display: flex; align-items: center; gap: 0.7rem; justify-content: center;
}
.post-category::before, .post-category::after { content: '✦'; font-size: 0.5rem; }

.post-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 300; line-height: 1.15; margin-bottom: 1.5rem;
}
.post-title em { font-style: italic; color: var(--gold-light); }

.post-meta-bar {
  display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
  justify-content: center;
  font-size: 0.72rem; color: var(--text-muted); letter-spacing: 0.08em;
  margin-top: 1.5rem;
}
.post-meta-bar .divider { width: 4px; height: 4px; border-radius: 50%; background: var(--text-muted); }
.post-meta-bar .score-badge { background: rgba(0,0,0,0.4); }

/* ─── POST COVER IMAGE ─── */
.post-cover {
  max-width: 920px; margin: 0 auto;
  padding: 0 3rem;
  position: relative; margin-top: -2rem;
}
.post-cover img {
  width: 100%; height: 480px; object-fit: cover;
  border: 1px solid var(--card-border);
  filter: saturate(0.85) contrast(1.05);
}
.post-cover-caption {
  font-size: 0.7rem; color: var(--text-muted); text-align: center;
  margin-top: 0.7rem; font-style: italic; letter-spacing: 0.06em;
}

/* ─── POST BODY LAYOUT ─── */
.post-layout {
  max-width: 1200px; margin: 0 auto;
  padding: 4rem 3rem 6rem;
  display: grid; grid-template-columns: 1fr 300px; gap: 5rem;
}

/* ─── POST CONTENT ─── */
.post-content { max-width: 720px; }

.post-content .lead {
  font-size: 1.05rem; font-weight: 300; line-height: 1.85;
  color: var(--text-light); margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--card-border);
}
.post-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem; font-weight: 400; line-height: 1.25;
  margin: 2.5rem 0 1rem; color: var(--white);
}
.post-content h2 em { font-style: italic; color: var(--gold-light); }
.post-content h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.92rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--green-accent);
  margin: 2rem 0 0.8rem;
}
.post-content p {
  font-size: 0.9rem; line-height: 1.85; color: var(--text-light);
  margin-bottom: 1.4rem;
}
.post-content ul, .post-content ol {
  padding-left: 1.5rem; margin-bottom: 1.5rem;
}
.post-content li {
  font-size: 0.88rem; line-height: 1.8; color: var(--text-light);
  margin-bottom: 0.5rem;
}
.post-content ul li::marker { color: var(--gold); }
.post-content ol li::marker { color: var(--gold); font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; }

.post-content strong { color: var(--white); font-weight: 600; }
.post-content em { color: var(--gold-light); font-style: italic; }

/* Callout / info box */
.callout {
  background: rgba(58,170,107,0.07);
  border-left: 3px solid var(--green-accent);
  padding: 1.2rem 1.5rem; margin: 2rem 0;
}
.callout-title {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--green-accent); margin-bottom: 0.5rem;
}
.callout p { margin: 0; font-size: 0.85rem; }

.callout-gold {
  background: rgba(201,168,76,0.07);
  border-left-color: var(--gold);
}
.callout-gold .callout-title { color: var(--gold); }

/* Pull quote */
.pull-quote {
  border-left: 3px solid var(--gold);
  padding: 1rem 2rem; margin: 2.5rem 0;
  background: rgba(201,168,76,0.04);
}
.pull-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 300; font-style: italic;
  color: var(--gold-light); line-height: 1.5; margin: 0;
}

/* Comparison table */
.compare-table {
  width: 100%; border-collapse: collapse; margin: 2rem 0;
  font-size: 0.82rem;
}
.compare-table th {
  background: var(--green-dark); color: var(--gold-light);
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; padding: 0.9rem 1rem; text-align: left;
  border-bottom: 2px solid rgba(201,168,76,0.3);
}
.compare-table td {
  padding: 0.75rem 1rem; color: var(--text-light);
  border-bottom: 1px solid rgba(58,170,107,0.1);
}
.compare-table tr:hover td { background: rgba(58,170,107,0.04); }
.compare-table .check { color: var(--score-high); font-weight: 700; }
.compare-table .partial { color: var(--score-mid); }
.compare-table .none { color: rgba(255,255,255,0.25); }

/* Score summary box */
.score-summary {
  background: var(--card-bg);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 2rem; margin: 2.5rem 0;
  display: flex; gap: 2rem; align-items: center; flex-wrap: wrap;
}
.score-summary-num {
  text-align: center; flex-shrink: 0;
}
.score-summary-num .big-score {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem; font-weight: 700; line-height: 1; color: var(--gold);
}
.score-summary-num .big-score-max {
  font-size: 1rem; color: var(--text-muted); font-family: 'Cormorant Garamond', serif;
}
.score-summary-num .score-label {
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--text-muted); margin-top: 0.4rem;
}
.score-criteria { flex: 1; display: flex; flex-direction: column; gap: 0.8rem; }
.score-row { display: flex; align-items: center; gap: 1rem; }
.score-row-label {
  font-size: 0.72rem; letter-spacing: 0.06em; color: var(--text-light);
  width: 160px; flex-shrink: 0;
}
.score-row-bar {
  flex: 1; height: 4px; background: rgba(255,255,255,0.08); border-radius: 2px; overflow: hidden;
}
.score-row-fill { height: 100%; border-radius: 2px; background: linear-gradient(90deg, var(--green-accent), var(--gold)); }
.score-row-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 700; color: var(--gold-light);
  width: 28px; text-align: right; flex-shrink: 0;
}

/* ─── POST TAGS / SHARE ─── */
.post-footer {
  margin-top: 3rem; padding-top: 2rem;
  border-top: 1px solid var(--card-border);
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
}
.post-tags-list { display: flex; flex-wrap: wrap; gap: 0.5rem; }

/* ─── RELATED POSTS ─── */
.related-posts {
  max-width: 1200px; margin: 0 auto; padding: 0 3rem 6rem;
}
.related-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; font-weight: 300; margin-bottom: 2.5rem;
  padding-bottom: 1rem; border-bottom: 1px solid var(--card-border);
}
.related-title em { font-style: italic; color: var(--gold-light); }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

/* ─── FOOTER ─── */
footer {
  background: var(--green-bright);
  border-top: 1px solid rgba(58,170,107,0.2);
  padding: 5rem 3rem 2rem;
}
.footer-grid {
  max-width: 1340px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
  padding-bottom: 3rem; border-bottom: 1px solid rgba(58,170,107,0.2);
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 600; letter-spacing: 0.08em;
  color: var(--gold-light); margin-bottom: 0.3rem;
}
.footer-tagline {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--green-accent);
  margin-bottom: 1rem;
}
.footer-desc { font-size: 0.8rem; color: var(--text-muted); line-height: 1.7; }
.footer-col h5 {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col a { font-size: 0.8rem; color: var(--text-muted); transition: color 0.25s; }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  max-width: 1340px; margin: 2rem auto 0;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  font-size: 0.72rem; color: var(--text-muted);
}
.footer-agency a { color: var(--gold); text-decoration: none; }
.footer-flags { letter-spacing: 0.06em; }

/* ─── WHATSAPP FLOAT ─── */
.whatsapp-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 999;
  width: 52px; height: 52px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: transform 0.3s, box-shadow 0.3s;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,0.5); }
.whatsapp-tooltip {
  position: absolute; right: calc(100% + 12px);
  background: rgba(0,0,0,0.8); color: #fff;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em;
  padding: 0.35rem 0.75rem; white-space: nowrap; opacity: 0;
  pointer-events: none; transition: opacity 0.25s;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .blog-layout { grid-template-columns: 1fr; gap: 4rem; }
  .blog-sidebar { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .post-layout { grid-template-columns: 1fr; gap: 3rem; }
  .post-content { max-width: 100%; }
}

@media (max-width: 900px) {
  .featured-post { grid-template-columns: 1fr; }
  .featured-post-img { min-height: 280px; }
  .articles-grid { grid-template-columns: 1fr; }
  .blog-sidebar { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  nav#main-nav { padding: 1rem 1.5rem; }
  nav#main-nav.scrolled { padding: 0.7rem 1.5rem; }
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(13,43,26,0.98); flex-direction: column; padding: 1.5rem;
    border-bottom: 1px solid var(--card-border); gap: 1rem; }
  .nav-links.mobile-open { display: flex; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }

  .blog-hero { padding: 8rem 1.5rem 4rem; }
  .blog-filters { padding: 1rem 1.5rem; top: 62px; }
  .blog-layout { padding: 3rem 1.5rem; }
  .featured-post-body { padding: 1.8rem; }
  .related-grid { grid-template-columns: 1fr; }
  .post-hero { padding: 8rem 1.5rem 4rem; }
  .post-cover { padding: 0 1.5rem; }
  .post-cover img { height: 260px; }
  .post-layout { padding: 3rem 1.5rem 4rem; }
  .related-posts { padding: 0 1.5rem 4rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .score-summary { flex-direction: column; gap: 1.5rem; }
  .score-row-label { width: 120px; }
}
