/*
Theme Name: Zanzibar Property
Theme URI: https://zanzibarproperty.co.tz
Author: Zanziholics Digital Agency
Author URI: https://zanziholics.com
Description: Custom theme for Real Estate in Zanzibar with Augustine. Navy and gold investment property brand.
Version: 1.0
License: Private
Text Domain: zanzibar-property
*/

/* ── CSS Variables ─────────────────────────────────────────────────────── */
:root {
  --white:    #FFFFFF;
  --bg:       #F8F5F0;
  --bg-warm:  #EDE9E2;
  --ink:      #1A1A1A;
  --body:     #4A4A4A;
  --muted:    #8A8A8A;
  --border:   #E0DAD2;
  --navy:     #0B1A28;
  --navy-mid: #0F2A40;
  --gold:     #C9A84C;
  --gold-lt:  #D4B86A;
}

/* ── Reset ─────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  color: var(--body);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-lt); }

/* ── Typography ────────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.15;
}
h1 { font-size: clamp(36px, 5vw, 56px); }
h2 { font-size: clamp(28px, 4vw, 44px); }
h3 { font-size: clamp(22px, 3vw, 32px); }
h4 { font-size: 20px; }
p { margin-bottom: 1.5rem; font-size: 16px; line-height: 1.85; color: var(--body); font-weight: 300; }
p:last-child { margin-bottom: 0; }

/* ── Layout ────────────────────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.container-narrow {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ── Buttons ───────────────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 14px 28px;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.25s ease;
  cursor: pointer;
  text-decoration: none;
  border: none;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
}
.btn-gold:hover {
  background: var(--gold-lt);
  color: var(--navy);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201,168,76,0.3);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.35);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--border);
}
.btn-outline-dark:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ── Navigation ────────────────────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.site-nav.scrolled {
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.nav-brand-logo {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}
.nav-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.3px;
}
.nav-brand-dot { color: var(--gold); margin: 0 2px; }
.nav-brand-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  font-weight: 400;
  letter-spacing: 0.3px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a.active { color: var(--gold); }
.nav-links .nav-roi {
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.4);
  padding: 7px 16px;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.2s;
}
.nav-links .nav-roi:hover {
  background: rgba(201,168,76,0.1);
  border-color: var(--gold);
  color: var(--gold);
}
.nav-links .nav-cta {
  background: var(--gold);
  color: var(--navy);
  padding: 9px 20px;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: all 0.2s;
}
.nav-links .nav-cta:hover {
  background: var(--gold-lt);
  color: var(--navy);
  transform: translateY(-1px);
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}
.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--navy);
  padding: 20px 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 12px 0;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  text-decoration: none;
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile .nav-cta-mobile {
  margin-top: 16px;
  text-align: center;
  background: var(--gold);
  color: var(--navy);
  padding: 12px;
  border-radius: 2px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* ── Blog Hero ─────────────────────────────────────────────────────────── */
.blog-hero {
  background: var(--navy);
  padding: 140px 0 72px;
  position: relative;
  overflow: hidden;
}
.blog-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 30%, rgba(201,168,76,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.blog-hero-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}
.blog-hero h1 {
  color: var(--white);
  margin-bottom: 16px;
}
.blog-hero h1 em {
  color: var(--gold);
  font-style: italic;
}
.blog-hero p {
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  font-size: 16px;
  font-weight: 300;
}

/* ── Article Hero ──────────────────────────────────────────────────────── */
.article-hero {
  background: var(--navy);
  padding: 140px 0 64px;
  position: relative;
  overflow: hidden;
}
.article-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 70% at 75% 30%, rgba(201,168,76,0.06) 0%, transparent 55%);
  pointer-events: none;
}
.article-hero-inner { position: relative; z-index: 1; }
.article-breadcrumb {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}
.article-breadcrumb a { color: var(--gold); }
.article-breadcrumb span { margin: 0 8px; opacity: 0.4; }
.article-category {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}
.article-hero h1 {
  color: var(--white);
  max-width: 780px;
  margin-bottom: 20px;
  line-height: 1.1;
}
.article-hero-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.article-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.article-author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  overflow: hidden;
  background: var(--navy-mid);
  flex-shrink: 0;
}
.article-author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.article-author-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}
.article-author-title {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}
.article-meta-item {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ── Blog Grid ─────────────────────────────────────────────────────────── */
.blog-section { padding: 80px 0; background: var(--bg); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.blog-card-img {
  position: relative;
  overflow: hidden;
  height: 200px;
  background: var(--navy);
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-card-img-placeholder span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 700;
  color: rgba(201,168,76,0.2);
  letter-spacing: -2px;
}
.blog-card-category {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--navy);
  padding: 4px 10px;
  border-radius: 2px;
}
.blog-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 12px;
  transition: color 0.2s;
}
.blog-card:hover .blog-card-title { color: var(--gold); }
.blog-card-excerpt {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 20px;
  flex: 1;
}
.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--bg-warm);
}
.blog-card-date {
  font-size: 12px;
  color: var(--muted);
}
.blog-card-read-more {
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ── Article Body ──────────────────────────────────────────────────────── */
.article-layout {
  padding: 72px 0;
  background: var(--white);
}
.article-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: start;
}
.article-body { min-width: 0; }
.article-body h2 {
  font-size: 28px;
  color: var(--ink);
  margin: 48px 0 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.article-body h3 {
  font-size: 22px;
  color: var(--ink);
  margin: 36px 0 16px;
}
.article-body p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--body);
  margin-bottom: 24px;
  font-weight: 300;
}
.article-body ul, .article-body ol {
  margin: 0 0 24px 24px;
  color: var(--body);
}
.article-body li {
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 10px;
  font-weight: 300;
}
.article-body strong { font-weight: 600; color: var(--ink); }
.article-body em { font-style: italic; color: var(--ink); }
.article-body blockquote {
  border-left: 4px solid var(--gold);
  padding: 20px 28px;
  margin: 32px 0;
  background: var(--bg);
  border-radius: 0 3px 3px 0;
}
.article-body blockquote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-style: italic;
  color: var(--ink);
  margin: 0;
  font-weight: 400;
  line-height: 1.6;
}
.article-body a {
  color: var(--gold);
  border-bottom: 1px solid rgba(201,168,76,0.3);
  transition: border-color 0.2s;
}
.article-body a:hover { border-color: var(--gold); }
.article-body img {
  border-radius: 3px;
  margin: 32px 0;
  width: 100%;
}
.article-body .wp-block-table table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  font-size: 14px;
}
.article-body .wp-block-table td,
.article-body .wp-block-table th {
  padding: 12px 16px;
  border: 1px solid var(--border);
  text-align: left;
}
.article-body .wp-block-table th {
  background: var(--navy);
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.3px;
}
.article-body .wp-block-table tr:nth-child(even) td {
  background: var(--bg);
}

/* ── Sidebar ───────────────────────────────────────────────────────────── */
.article-sidebar { position: sticky; top: 96px; }
.sidebar-widget {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 28px;
  margin-bottom: 24px;
}
.sidebar-widget-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.sidebar-cta {
  background: var(--navy);
  border: none;
  padding: 28px;
  border-radius: 3px;
  border-left: 4px solid var(--gold);
  margin-bottom: 24px;
}
.sidebar-cta-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}
.sidebar-cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.25;
}
.sidebar-cta p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin-bottom: 18px;
  font-weight: 300;
}
.sidebar-cta .btn { width: 100%; text-align: center; display: block; }
.sidebar-roi {
  background: var(--navy);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 28px;
  border-radius: 3px;
  margin-bottom: 24px;
  text-align: center;
}
.sidebar-roi-icon {
  font-size: 32px;
  margin-bottom: 12px;
}
.sidebar-roi-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}
.sidebar-roi p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  margin-bottom: 16px;
  font-weight: 300;
}
.sidebar-area-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--bg-warm);
  font-size: 14px;
  color: var(--body);
  text-decoration: none;
  transition: color 0.2s;
}
.sidebar-area-links a:last-child { border-bottom: none; }
.sidebar-area-links a:hover { color: var(--gold); }
.sidebar-area-links .area-yield {
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
}
.sidebar-recent-posts a {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid var(--bg-warm);
  font-size: 14px;
  color: var(--body);
  text-decoration: none;
  line-height: 1.4;
  transition: color 0.2s;
}
.sidebar-recent-posts a:last-child { border-bottom: none; }
.sidebar-recent-posts a:hover { color: var(--gold); }

/* ── Article Tags ──────────────────────────────────────────────────────── */
.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 48px 0 0;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.article-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
  background: var(--bg);
  color: var(--muted);
  border: 1px solid var(--border);
  text-decoration: none;
  transition: all 0.2s;
}
.article-tag:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ── Author Box ────────────────────────────────────────────────────────── */
.author-box {
  background: var(--navy);
  border-radius: 3px;
  padding: 36px;
  margin: 48px 0 0;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  align-items: start;
  border-left: 4px solid var(--gold);
}
.author-box-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gold);
  background: var(--navy-mid);
  flex-shrink: 0;
}
.author-box-avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-box-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.author-box-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}
.author-box p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 16px;
}
.author-box-links { display: flex; gap: 12px; flex-wrap: wrap; }
.author-box-links a {
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid rgba(201,168,76,0.3);
  padding: 6px 14px;
  border-radius: 2px;
  transition: all 0.2s;
}
.author-box-links a:hover {
  background: rgba(201,168,76,0.1);
  border-color: var(--gold);
}

/* ── Related Posts ─────────────────────────────────────────────────────── */
.related-posts {
  padding: 72px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.related-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}
.related-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 40px;
}
.related-title em { color: var(--gold); font-style: italic; }
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ── CTA Band ──────────────────────────────────────────────────────────── */
.cta-band {
  background: var(--navy);
  padding: 80px 0;
  border-top: 3px solid var(--gold);
}
.cta-band-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
}
.cta-band-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.15;
}
.cta-band-title em { color: var(--gold); font-style: italic; }
.cta-band p {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  max-width: 520px;
  font-weight: 300;
  line-height: 1.75;
}
.cta-band-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 220px;
}

/* ── Footer ────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  padding: 64px 0 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.footer-brand .footer-tagline {
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  font-weight: 300;
}
.footer-col h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}
.footer-powered a { color: rgba(255,255,255,0.35); }
.footer-powered a:hover { color: var(--gold); }

/* ── WhatsApp Float ────────────────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: white;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
  color: white;
}

/* ── Pagination ────────────────────────────────────────────────────────── */
.blog-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 64px;
}
.blog-pagination a,
.blog-pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 2px;
  font-size: 14px;
  color: var(--body);
  text-decoration: none;
  transition: all 0.2s;
}
.blog-pagination a:hover,
.blog-pagination span.current {
  border-color: var(--gold);
  color: var(--gold);
}

/* ── Utility ───────────────────────────────────────────────────────────── */
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 0;
}
.section-title em { color: var(--gold); font-style: italic; }
.section-title-white { color: var(--white); }

/* ── Responsive ────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .article-grid { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .related-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .blog-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .cta-band-inner { grid-template-columns: 1fr; gap: 32px; }
  .cta-band-buttons { flex-direction: row; flex-wrap: wrap; }
  .author-box { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .container { padding: 0 20px; }
  .container-narrow { padding: 0 20px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}
