/* ════════════════════════════════════════════════
   KCVP GROUP WORDPRESS THEME — MAIN STYLESHEET
   Version: 1.0.0
════════════════════════════════════════════════ */

:root {
  --green:       #228B22;
  --green-dark:  #1a6e1a;
  --green-light: #e8f5e8;
  --gold:        #FFD700;
  --gold-dark:   #c9a800;
  --charcoal:    #1a1a1a;
  --mid:         #555555;
  --light:       #f0f0ec;
  --off-white:   #f8f7f4;
  --white:       #ffffff;
  --border:      #e0e0da;
  --nav-h:       70px;
  --top-h:       36px;
  --sidebar-w:   300px;
  --content-max: 1180px;
  --radius:      2px;
  --shadow:      0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg:   0 12px 48px rgba(0,0,0,0.12);
  --transition:  0.25s ease;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--green-dark); }
ul { list-style: none; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--charcoal);
}
h1 { font-size: clamp(36px, 5vw, 56px); }
h2 { font-size: clamp(28px, 3.5vw, 40px); }
h3 { font-size: clamp(20px, 2.5vw, 28px); }
h4 { font-size: 18px; font-family: 'DM Sans', sans-serif; }
p { margin-bottom: 1.2em; }
p:last-child { margin-bottom: 0; }

/* ── UTILITIES ── */
.section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 8px;
  display: block;
}
.wrap {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 60px 24px;
  display: grid;
  grid-template-columns: 1fr var(--sidebar-w);
  gap: 60px;
  align-items: start;
}

/* ── TOP BAR ── */
.top-bar {
  background: var(--charcoal);
  height: var(--top-h);
  font-size: 12px;
}
.top-bar-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.top-bar-left { display: flex; gap: 20px; align-items: center; }
.top-bar-left span,
.top-bar-left a,
.top-bar-right a {
  color: rgba(255,255,255,0.6);
  font-size: 11px;
  letter-spacing: 0.5px;
}
.top-bar-left a:hover,
.top-bar-right a:hover { color: var(--gold); }

/* ── SITE HEADER ── */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.header-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 24px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Logo */
.site-branding { flex-shrink: 0; }
.site-logo-text {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-main {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px;
  color: var(--charcoal);
  letter-spacing: 3px;
  line-height: 1;
  background: var(--green);
  color: var(--white);
  padding: 4px 10px;
}
.logo-sub {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  color: var(--charcoal);
  letter-spacing: 2px;
  line-height: 1;
}
.logo-sub small {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--gold-dark);
  text-transform: uppercase;
  margin-top: 1px;
}
.custom-logo { height: 44px; width: auto; }

/* Nav */
.main-navigation { flex: 1; }
.main-navigation ul {
  display: flex;
  gap: 4px;
  align-items: center;
  list-style: none;
}
.main-navigation ul li a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--mid);
  padding: 8px 14px;
  border-bottom: 2px solid transparent;
  transition: all var(--transition);
  display: block;
}
.main-navigation ul li a:hover,
.main-navigation ul li.current-menu-item > a {
  color: var(--green);
  border-bottom-color: var(--green);
}

/* Header actions */
.header-actions { display: flex; gap: 12px; align-items: center; margin-left: auto; }
.search-toggle {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--mid);
  padding: 8px;
  transition: color var(--transition);
}
.search-toggle:hover { color: var(--green); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  transition: all 0.3s;
}

/* Header search */
.header-search {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  padding: 16px 24px;
}
.header-search[hidden] { display: none; }
.search-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  display: flex;
  gap: 12px;
  align-items: center;
}
.search-inner .search-form { flex: 1; display: flex; gap: 0; }
.search-inner .search-field {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-right: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  outline: none;
  background: var(--white);
}
.search-inner .search-field:focus { border-color: var(--green); }
.search-inner .search-submit {
  background: var(--green);
  color: var(--white);
  border: none;
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition);
}
.search-inner .search-submit:hover { background: var(--green-dark); }
.search-close {
  background: none;
  border: none;
  font-size: 18px;
  color: var(--mid);
  cursor: pointer;
  padding: 8px;
}

/* Mobile menu */
.mobile-menu {
  background: var(--charcoal);
  padding: 24px;
  border-top: 3px solid var(--gold);
}
.mobile-menu[hidden] { display: none; }
.mobile-menu ul { list-style: none; }
.mobile-menu ul li { border-bottom: 1px solid rgba(255,255,255,0.06); }
.mobile-menu ul li a {
  display: block;
  padding: 14px 0;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
}
.mobile-menu ul li a:hover { color: var(--gold); }
.mobile-menu-footer {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mobile-menu-footer a { font-size: 13px; color: rgba(255,255,255,0.5); }

/* ── HERO ── */
.blog-hero {
  background: var(--charcoal);
  min-height: 420px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  margin: 0 0 0 0;
  grid-column: 1 / -1;
}
.blog-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 80% 50%, rgba(34,139,34,0.2) 0%, transparent 70%),
              linear-gradient(135deg, #0d1a0d, #1a1a1a);
}
.blog-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(34,139,34,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34,139,34,0.06) 1px, transparent 1px);
  background-size: 48px 48px;
}
.blog-hero-inner {
  position: relative;
  z-index: 2;
  padding: 60px 24px;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  width: 100%;
}
.hero-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.blog-hero-inner h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 20px;
}
.blog-hero-inner h1 span { color: var(--gold); font-style: italic; }
.blog-hero-inner p { font-size: 17px; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 32px; }
.blog-hero-inner .search-form { display: flex; max-width: 480px; margin: 0 auto; }
.blog-hero-inner .search-field {
  flex: 1;
  padding: 14px 18px;
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  outline: none;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
}
.blog-hero-inner .search-field::placeholder { color: rgba(255,255,255,0.4); }
.blog-hero-inner .search-submit {
  background: var(--gold);
  color: var(--charcoal);
  border: none;
  padding: 14px 24px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition);
}
.blog-hero-inner .search-submit:hover { background: var(--gold-dark); }

/* Archive hero */
.archive-hero {
  background: var(--charcoal);
  padding: 60px 24px;
  margin: -60px -24px 40px;
  grid-column: 1 / -1;
  border-bottom: 3px solid var(--gold);
}
.archive-hero-inner { max-width: 720px; }
.archive-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.archive-title span { color: var(--gold); font-style: italic; }
.archive-desc { font-size: 16px; color: rgba(255,255,255,0.65); max-width: 560px; }

/* ── POST META ── */
.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  font-size: 12px;
  margin-bottom: 12px;
}
.post-cat {
  background: var(--green);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 3px 10px;
}
.post-cat:hover { background: var(--green-dark); color: var(--white); }
.post-date, .post-author { color: var(--mid); }
.post-read {
  color: var(--gold-dark);
  font-weight: 600;
  font-size: 11px;
}
.post-meta > *::before { content: ''; }
.post-date::before { content: '· '; color: var(--border); margin-right: 4px; }

/* ── FEATURED POST ── */
.post-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--white);
  margin-bottom: 48px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--green);
}
.featured-img { overflow: hidden; aspect-ratio: 16/10; display: block; }
.featured-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.featured-img:hover img { transform: scale(1.03); }
.featured-img-placeholder {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  color: rgba(255,255,255,0.2);
}
.featured-body {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.featured-title {
  font-size: clamp(22px, 3vw, 32px);
  margin-bottom: 16px;
  line-height: 1.15;
}
.featured-title a { color: var(--charcoal); }
.featured-title a:hover { color: var(--green); }
.featured-excerpt { font-size: 15px; color: var(--mid); line-height: 1.7; margin-bottom: 24px; }
.btn-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  border-bottom: 2px solid var(--green);
  padding-bottom: 2px;
  transition: all var(--transition);
  align-self: flex-start;
}
.btn-read-more:hover { color: var(--charcoal); border-color: var(--gold); }

/* ── CATEGORY FILTER ── */
.posts-grid-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 16px;
}
.posts-grid-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--charcoal);
}
.cat-filter { display: flex; flex-wrap: wrap; gap: 8px; }
.cat-pill {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border: 1px solid var(--border);
  color: var(--mid);
  transition: all var(--transition);
}
.cat-pill:hover, .cat-pill.active {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

/* ── POSTS GRID ── */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.post-card {
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  border-top: 3px solid transparent;
}
.post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--green);
}
.post-card-img {
  display: block;
  overflow: hidden;
  aspect-ratio: 16/9;
  position: relative;
}
.post-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.post-card:hover .post-card-img img { transform: scale(1.04); }
.post-card-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  color: rgba(255,255,255,0.25);
  aspect-ratio: 16/9;
}
.post-card-cat {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: var(--green);
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 3px 10px;
  z-index: 1;
}
.post-card-body { padding: 24px; }
.post-card-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}
.post-card-title a { color: var(--charcoal); }
.post-card-title a:hover { color: var(--green); }
.post-card-excerpt { font-size: 13px; color: var(--mid); line-height: 1.6; margin-bottom: 16px; }
.post-card-link {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  border-bottom: 1px solid var(--green);
  padding-bottom: 1px;
  transition: all var(--transition);
}
.post-card-link:hover { color: var(--gold-dark); border-color: var(--gold-dark); }

/* ── PAGINATION ── */
.pagination-wrap { margin-top: 48px; }
.pagination-wrap .nav-links { display: flex; gap: 8px; flex-wrap: wrap; }
.pagination-wrap .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid var(--border);
  color: var(--mid);
  background: var(--white);
  transition: all var(--transition);
}
.pagination-wrap .page-numbers.current,
.pagination-wrap .page-numbers:hover {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.pagination-wrap .prev, .pagination-wrap .next {
  width: auto;
  padding: 0 16px;
  font-size: 12px;
  letter-spacing: 1px;
}

/* ── SINGLE POST ── */
.single-main { grid-column: 1; }
.article-hero {
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.article-title {
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.1;
  margin: 16px 0;
}
.article-standfirst {
  font-size: 18px;
  color: var(--mid);
  line-height: 1.7;
  font-style: italic;
  border-left: 3px solid var(--gold);
  padding-left: 16px;
}
.article-featured-img {
  margin-bottom: 40px;
  border-radius: var(--radius);
  overflow: hidden;
}
.article-featured-img img { width: 100%; }
.article-featured-img figcaption {
  font-size: 12px;
  color: var(--mid);
  padding: 8px 0;
  font-style: italic;
}
.article-layout { display: grid; grid-template-columns: 1fr; }

/* Entry content styles */
.entry-content { font-size: 16px; line-height: 1.85; color: #333; }
.entry-content h2 { font-size: clamp(22px, 3vw, 32px); margin: 40px 0 16px; padding-top: 20px; border-top: 1px solid var(--border); }
.entry-content h3 { font-size: clamp(18px, 2.5vw, 24px); margin: 32px 0 12px; }
.entry-content h4 { font-size: 18px; margin: 24px 0 10px; font-family: 'DM Sans', sans-serif; font-weight: 700; }
.entry-content p { margin-bottom: 1.4em; }
.entry-content ul, .entry-content ol { margin: 1.2em 0 1.2em 2em; }
.entry-content li { margin-bottom: 0.5em; }
.entry-content ul { list-style: none; padding: 0; margin-left: 0; }
.entry-content ul li { padding-left: 20px; position: relative; }
.entry-content ul li::before { content: '▸'; position: absolute; left: 0; color: var(--green); font-size: 12px; top: 4px; }
.entry-content ol { counter-reset: ol-counter; list-style: none; margin-left: 0; }
.entry-content ol li { counter-increment: ol-counter; padding-left: 32px; position: relative; }
.entry-content ol li::before { content: counter(ol-counter); position: absolute; left: 0; background: var(--green); color: var(--white); font-size: 11px; font-weight: 700; width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; top: 3px; }
.entry-content blockquote {
  border-left: 4px solid var(--gold);
  background: var(--green-light);
  padding: 20px 24px;
  margin: 32px 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-style: italic;
  color: var(--green-dark);
  line-height: 1.5;
}
.entry-content a { color: var(--green); border-bottom: 1px solid rgba(34,139,34,0.3); transition: all var(--transition); }
.entry-content a:hover { color: var(--green-dark); border-color: var(--green-dark); }
.entry-content img { margin: 28px 0; border-radius: var(--radius); box-shadow: var(--shadow); }
.entry-content code {
  background: var(--light);
  padding: 2px 6px;
  font-family: monospace;
  font-size: 14px;
  color: var(--green-dark);
  border-radius: 2px;
}
.entry-content pre {
  background: var(--charcoal);
  color: #e0e0e0;
  padding: 20px 24px;
  overflow-x: auto;
  font-size: 13px;
  line-height: 1.6;
  margin: 24px 0;
}
.entry-content table { width: 100%; border-collapse: collapse; margin: 24px 0; }
.entry-content th { background: var(--green); color: var(--white); padding: 10px 14px; text-align: left; font-size: 13px; }
.entry-content td { padding: 10px 14px; border-bottom: 1px solid var(--border); font-size: 14px; }
.entry-content tr:nth-child(even) td { background: var(--light); }
.entry-content .wp-block-image { margin: 32px 0; }

/* Tags */
.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.article-tags span { font-size: 12px; color: var(--mid); }
.tag-pill {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border: 1px solid var(--border);
  color: var(--mid);
  transition: all var(--transition);
}
.tag-pill:hover { background: var(--green); color: var(--white); border-color: var(--green); }

/* Share buttons */
.article-share {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 28px;
  padding: 20px 24px;
  background: var(--light);
  border-left: 3px solid var(--green);
}
.article-share > span { font-size: 12px; font-weight: 600; color: var(--mid); margin-right: 4px; }
.share-btn {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 7px 14px;
  transition: all var(--transition);
  border: 1px solid var(--border);
  color: var(--mid);
  background: var(--white);
}
.share-btn:hover { background: var(--charcoal); color: var(--white); border-color: var(--charcoal); }
.share-wa:hover { background: #25D366; border-color: #25D366; color: var(--white); }

/* Author box */
.author-box {
  display: flex;
  gap: 24px;
  background: var(--white);
  padding: 28px;
  margin-top: 40px;
  border-top: 4px solid var(--green);
  box-shadow: var(--shadow);
}
.author-avatar img { border-radius: 50%; width: 72px; height: 72px; flex-shrink: 0; }
.author-label { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 4px; }
.author-name { font-size: 18px; margin-bottom: 8px; }
.author-bio { font-size: 13px; color: var(--mid); line-height: 1.6; margin-bottom: 12px; }
.author-link { font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--green); }

/* Post navigation */
.post-navigation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
}
.nav-prev, .nav-next { background: var(--white); padding: 20px; border: 1px solid var(--border); transition: border-color var(--transition); }
.nav-prev:hover, .nav-next:hover { border-color: var(--green); }
.nav-next { text-align: right; }
.post-navigation a { font-size: 14px; font-weight: 600; color: var(--charcoal); transition: color var(--transition); }
.post-navigation a:hover { color: var(--green); }

/* Breadcrumbs */
.breadcrumbs { font-size: 12px; color: var(--mid); margin-bottom: 16px; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 6px; list-style: none; }
.breadcrumbs li { display: flex; align-items: center; gap: 6px; }
.breadcrumbs li:not(:last-child)::after { content: '›'; color: var(--border); }
.breadcrumbs a { color: var(--mid); }
.breadcrumbs a:hover { color: var(--green); }

/* Related posts */
.related-posts { margin-top: 60px; grid-column: 1 / -1; }
.related-header { display: flex; align-items: flex-end; gap: 16px; margin-bottom: 28px; }
.related-header h2 { font-size: 28px; line-height: 1; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* ── SIDEBAR ── */
.widget-area { position: sticky; top: calc(var(--nav-h) + var(--top-h) + 20px); }
.widget { margin-bottom: 32px; }
.widget-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--green);
}

/* About widget */
.widget-about {
  background: var(--charcoal);
  padding: 24px;
  border-top: 4px solid var(--gold);
  color: rgba(255,255,255,0.65);
  font-size: 13px;
  line-height: 1.6;
}
.about-widget-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--white);
  background: var(--green);
  display: inline-block;
  padding: 4px 12px;
  margin-bottom: 14px;
  letter-spacing: 3px;
}
.about-widget-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

/* Search widget */
.widget-search .search-form { display: flex; }
.widget-search .search-field {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-right: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  outline: none;
  background: var(--white);
}
.widget-search .search-field:focus { border-color: var(--green); }
.widget-search .search-submit {
  background: var(--green);
  color: var(--white);
  border: none;
  padding: 10px 16px;
  font-size: 12px;
  cursor: pointer;
}

/* Recent posts */
.recent-posts-list { list-style: none; }
.recent-posts-list li {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.recent-posts-list li:last-child { border-bottom: none; }
.recent-thumb { width: 60px; height: 60px; flex-shrink: 0; overflow: hidden; display: block; }
.recent-thumb img { width: 100%; height: 100%; object-fit: cover; }
.recent-info { flex: 1; }
.recent-title { font-size: 13px; font-weight: 600; color: var(--charcoal); line-height: 1.4; display: block; margin-bottom: 4px; }
.recent-title:hover { color: var(--green); }
.recent-date { font-size: 11px; color: var(--mid); }

/* Categories */
.cats-list { list-style: none; }
.cats-list li { border-bottom: 1px solid var(--border); }
.cats-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-size: 13px;
  color: var(--charcoal);
  transition: color var(--transition);
}
.cats-list a:hover { color: var(--green); }
.cats-list span {
  background: var(--light);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  color: var(--mid);
  min-width: 28px;
  text-align: center;
}

/* CTA widget */
.widget-cta {
  background: var(--green);
  padding: 24px;
  color: var(--white);
}
.cta-widget-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.widget-cta h3 { font-family: 'Cormorant Garamond', serif; font-size: 22px; color: var(--white); margin-bottom: 10px; }
.widget-cta p { font-size: 13px; color: rgba(255,255,255,0.75); line-height: 1.6; margin-bottom: 16px; }
.cta-widget-btn {
  display: inline-block;
  background: var(--gold);
  color: var(--charcoal);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 20px;
  transition: background var(--transition);
}
.cta-widget-btn:hover { background: var(--gold-dark); color: var(--white); }

/* ── COMMENTS ── */
.comments-area { margin-top: 48px; padding-top: 40px; border-top: 1px solid var(--border); }
.comments-title { font-size: 24px; margin-bottom: 32px; }
.comment-list { list-style: none; }
.comment { padding: 20px 0; border-bottom: 1px solid var(--border); }
.comment-author .avatar { border-radius: 50%; float: left; margin-right: 14px; }
.comment-meta { font-size: 12px; color: var(--mid); margin-bottom: 8px; }
.comment-content p { font-size: 14px; clear: both; }
.reply a { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--green); }
.comment-form label { display: block; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--mid); margin-bottom: 6px; margin-top: 16px; }
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color var(--transition);
}
.comment-form input:focus, .comment-form textarea:focus { border-color: var(--green); }
.comment-form textarea { height: 120px; resize: vertical; }
.comment-form .submit {
  background: var(--green);
  color: var(--white);
  border: none;
  padding: 12px 28px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 16px;
  transition: background var(--transition);
}
.comment-form .submit:hover { background: var(--green-dark); }

/* ── FOOTER CTA ── */
.footer-cta {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  padding: 70px 24px;
  text-align: center;
}
.footer-cta-inner { max-width: 600px; margin: 0 auto; }
.footer-cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 44px);
  color: var(--white);
  margin-bottom: 12px;
}
.footer-cta p { font-size: 16px; color: rgba(255,255,255,0.8); margin-bottom: 28px; }
.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--charcoal);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 32px;
  transition: all var(--transition);
}
.btn-gold:hover { background: var(--gold-dark); color: var(--white); transform: translateY(-2px); }

/* ── SITE FOOTER ── */
.site-footer { background: var(--charcoal); color: rgba(255,255,255,0.55); }
.footer-top {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 60px 24px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
}
.footer-logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  color: var(--white);
  letter-spacing: 3px;
  margin-bottom: 12px;
}
.footer-logo-text span { background: var(--green); padding: 2px 8px; margin-right: 4px; }
.footer-logo-text small { display: block; font-family: 'DM Sans', sans-serif; font-size: 9px; letter-spacing: 3px; color: var(--gold); font-weight: 500; text-transform: uppercase; margin-top: 2px; }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.4); font-style: italic; margin-bottom: 10px; }
.footer-desc { font-size: 12.5px; color: rgba(255,255,255,0.45); line-height: 1.6; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; margin-top: 20px; }
.footer-socials a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: all var(--transition);
}
.footer-socials a:hover { background: var(--green); border-color: var(--green); color: var(--white); }
.footer-widgets { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.footer-widget-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,215,0,0.3);
}
.footer-widget-col ul { list-style: none; }
.footer-widget-col li { margin-bottom: 8px; }
.footer-widget-col a { font-size: 13px; color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-widget-col a:hover { color: var(--gold); }
.footer-widget-col .widget-title { color: var(--white); border-bottom-color: rgba(255,215,0,0.3); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
}
.footer-bottom a { color: var(--gold); }
.footer-nav ul { display: flex; flex-wrap: wrap; gap: 20px; list-style: none; }
.footer-nav a { font-size: 12px; color: rgba(255,255,255,0.4); }
.footer-nav a:hover { color: var(--gold); }

/* ── 404 ── */
.error-404 {
  text-align: center;
  padding: 80px 24px;
  grid-column: 1 / -1;
}
.error-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 140px;
  color: var(--green);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: -20px;
}
.error-404 h1 { margin-bottom: 16px; }
.error-404 p { color: var(--mid); margin-bottom: 32px; }

/* ── NO POSTS ── */
.no-posts {
  text-align: center;
  padding: 60px 24px;
  grid-column: 1 / -1;
}
.no-posts h2 { margin-bottom: 12px; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  :root { --sidebar-w: 260px; }
  .post-featured { grid-template-columns: 1fr; }
  .featured-img { aspect-ratio: 16/7; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .wrap { grid-template-columns: 1fr; gap: 40px; }
  .main-navigation { display: none; }
  .hamburger { display: flex; }
  .posts-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr 1fr; }
  .post-navigation { grid-template-columns: 1fr; }
  .footer-widgets { grid-template-columns: 1fr 1fr; }
  .top-bar-right { display: none; }
  .widget-area { position: static; }
  .author-box { flex-direction: column; }
}

@media (max-width: 480px) {
  .related-grid { grid-template-columns: 1fr; }
  .footer-widgets { grid-template-columns: 1fr; }
  .posts-grid-header { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
