/* ============================================================
       DESIGN TOKENS – KAVE EARTHY PALETTE
       ============================================================ */
    :root {
      --beige-50: hsl(36, 30%, 98%);
      --beige-100: hsl(36, 24%, 94%);
      --beige-200: hsl(36, 18%, 88%);
      --beige-300: hsl(36, 12%, 80%);
      --green-900: hsl(88, 38%, 21%);
      --green-800: hsl(88, 38%, 26%);
      --green-700: hsl(88, 38%, 32%);
      --green-100: hsl(88, 20%, 90%);
      --charcoal: hsl(0, 0%, 11%);
      --grey-500: hsl(0, 0%, 45%);
      --grey-200: hsl(0, 0%, 85%);
      --white: #ffffff;
      --bg: var(--beige-100);
      --bg-secondary: var(--beige-50);
      --surface: var(--white);
      --text: var(--charcoal);
      --text-muted: var(--grey-500);
      --primary: var(--green-900);
      --primary-hover: var(--green-700);
      --border: var(--beige-200);
      --radius-sm: 8px;
      --radius-md: 16px;
      --radius-lg: 24px;
      --radius-full: 9999px;
      --transition: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    }

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

    body {
      font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
      background-color: var(--bg);
      color: var(--text);
      line-height: 1.7;
      font-size: 16px;
      overflow-x: hidden;
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: 'Playfair Display', Georgia, serif;
      font-weight: 600;
      color: var(--charcoal);
      line-height: 1.25;
    }

    a { text-decoration: none; color: inherit; transition: var(--transition); }
    img { max-width: 100%; height: auto; }

    /* ============================================================
       TOP BAR
       ============================================================ */
    .topbar {
      background: var(--green-900);
      color: var(--beige-50);
      font-size: 0.78rem;
      padding: 0.5rem 0;
      letter-spacing: 0.03em;
    }
    .topbar a { color: var(--beige-100); }
    .topbar a:hover { color: var(--white); }
    .topbar .social-icons a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 26px; height: 26px;
      border-radius: 50%;
      background: rgba(255,255,255,0.1);
      margin-left: 6px;
      font-size: 0.72rem;
    }
    .topbar .social-icons a:hover { background: var(--green-700); }

    /* ============================================================
       HEADER / NAVBAR
       ============================================================ */
    .main-header {
      background: var(--surface);
      border-bottom: 1px solid var(--border);
      padding: 0.75rem 0;
    }
    .navbar-brand img { height: 52px; width: auto; max-width: 100%; }

    .navbar-nav .nav-link {
      font-weight: 500;
      font-size: 0.9rem;
      color: var(--charcoal);
      padding: 0.5rem 0.9rem !important;
      position: relative;
    }
    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active { color: var(--green-900); }
    .navbar-nav .nav-link.active::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0.9rem; right: 0.9rem;
      height: 2px;
      background: var(--green-900);
      border-radius: 2px;
    }

    .btn-primary-custom {
      background: var(--green-900);
      color: var(--white);
      border: none;
      border-radius: var(--radius-full);
      padding: 0.65rem 1.5rem;
      font-weight: 600;
      font-size: 0.83rem;
      transition: var(--transition);
    }
    .btn-primary-custom:hover {
      background: var(--green-700);
      color: var(--white);
      transform: translateY(-1px);
      box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    }
    .btn-outline-custom {
      border: 1.5px solid var(--green-900);
      color: var(--green-900);
      background: transparent;
      border-radius: var(--radius-full);
      padding: 0.65rem 1.5rem;
      font-weight: 600;
      font-size: 0.83rem;
      transition: var(--transition);
    }
    .btn-outline-custom:hover { background: var(--green-900); color: var(--white); }

    .btn-whatsapp-outline {
      border: 1.5px solid #25D366;
      color: #1aa34a;
      background: transparent;
      border-radius: var(--radius-full);
      padding: 0.65rem 1.5rem;
      font-weight: 600;
      font-size: 0.83rem;
      transition: var(--transition);
    }
    .btn-whatsapp-outline:hover { background: #25D366; color: var(--white); }

    /* ============================================================
       HERO SECTION
       ============================================================ */
    .hero {
      padding: 4.5rem 0 4rem;
      background: linear-gradient(135deg, var(--beige-50) 0%, var(--beige-100) 100%);
      position: relative;
      overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute;
      top: -100px; right: -100px;
      width: 420px; height: 420px;
      background: var(--green-100);
      border-radius: 50%;
      opacity: 0.5;
    }
    .hero .hero-label {
      display: inline-block;
      background: var(--green-100);
      color: var(--green-900);
      font-weight: 600;
      font-size: 0.72rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 0.4rem 1rem;
      border-radius: var(--radius-full);
      margin-bottom: 1.2rem;
    }
    .hero h1 {
      font-size: 2.8rem;
      font-weight: 700;
      margin-bottom: 1rem;
    }
    .hero h1 span { color: var(--green-900); }
    .hero .subheadline {
      font-size: 1.05rem;
      font-weight: 600;
      color: var(--green-800);
      margin-bottom: 1.2rem;
    }
    .hero p.lead {
      font-size: 0.98rem;
      color: var(--text-muted);
      max-width: 620px;
      margin-bottom: 1.8rem;
    }
    .hero-image-wrap {
      position: relative;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: 0 24px 60px rgba(0,0,0,0.10);
    }
    .hero-image-wrap img { width: 100%; height: 460px; object-fit: cover; }
    .hero-image-badge {
      position: absolute;
      bottom: 20px; left: 20px;
      background: rgba(255,255,255,0.95);
      padding: 0.8rem 1.2rem;
      border-radius: var(--radius-md);
      font-size: 0.78rem;
      font-weight: 600;
      color: var(--green-900);
      backdrop-filter: blur(8px);
    }

    /* ============================================================
       SECTION LABELS
       ============================================================ */
    .section-label {
      display: inline-block;
      color: var(--green-900);
      font-weight: 600;
      font-size: 0.72rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      margin-bottom: 0.6rem;
    }
    .section-title { font-size: 2.1rem; margin-bottom: 1rem; }
    .section-subtitle { color: var(--text-muted); max-width: 620px; margin: 0 auto; }

    /* ============================================================
       QUICK FACTS TABLE
       ============================================================ */
    .quick-facts { background: var(--surface); padding: 3.5rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
    .facts-table-wrap {
      background: var(--surface);
      border-radius: var(--radius-md);
      overflow: hidden;
      border: 1px solid var(--border);
      box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    }
    .facts-table { margin: 0; }
    .facts-table thead {
      background: var(--green-900);
      color: var(--white);
    }
    .facts-table thead th {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 600;
      font-size: 0.78rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      padding: 1rem 1.2rem;
      border: none;
    }
    .facts-table tbody td {
      padding: 1rem 1.2rem;
      font-size: 0.88rem;
      vertical-align: middle;
      border-color: var(--border);
    }
    .facts-table tbody tr:hover { background: var(--beige-50); }
    .facts-table .fact-key {
      font-weight: 700;
      color: var(--green-900);
      font-size: 0.82rem;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }
    .facts-table .fact-spec { font-weight: 600; color: var(--charcoal); }

    /* ============================================================
       DIRECT ANSWER BLOCK (AEO)
       ============================================================ */
    .aeo-block {
      background: var(--green-900);
      color: var(--beige-50);
      border-radius: var(--radius-lg);
      padding: 2.5rem;
      position: relative;
      overflow: hidden;
    }
    .aeo-block::before {
      content: 'AEO';
      position: absolute;
      top: -20px; right: 20px;
      font-family: 'Playfair Display', serif;
      font-size: 6rem;
      font-weight: 900;
      color: rgba(255,255,255,0.04);
    }
    .aeo-block .q {
      font-family: 'Playfair Display', serif;
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 1rem;
    }
    .aeo-block .a { font-size: 0.95rem; color: var(--beige-200); margin: 0; }
    .aeo-block .q::before {
      content: 'Q';
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 28px; height: 28px;
      background: var(--green-700);
      color: var(--white);
      border-radius: 50%;
      font-size: 0.85rem;
      margin-right: 0.6rem;
      font-family: 'Plus Jakarta Sans', sans-serif;
    }
    .aeo-block .a::before {
      content: 'A';
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 28px; height: 28px;
      background: var(--white);
      color: var(--green-900);
      border-radius: 50%;
      font-size: 0.85rem;
      margin-right: 0.6rem;
      font-weight: 700;
      font-family: 'Plus Jakarta Sans', sans-serif;
    }

    /* ============================================================
       PRODUCT CATEGORY / ACCORDION
       ============================================================ */
    .cat-block {
      background: var(--surface);
      border-radius: var(--radius-md);
      border: 1px solid var(--border);
      margin-bottom: 1.2rem;
      overflow: hidden;
      transition: var(--transition);
    }
    .cat-block:hover { box-shadow: 0 12px 32px rgba(0,0,0,0.06); }
    .cat-header {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 1.4rem 1.6rem;
      cursor: pointer;
      background: var(--surface);
    }
    .cat-header .cat-num {
      width: 46px; height: 46px;
      border-radius: 50%;
      background: var(--green-100);
      color: var(--green-900);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem;
      flex-shrink: 0;
    }
    .cat-header h4 {
      font-size: 1.15rem;
      margin: 0;
      flex-grow: 1;
    }
    .cat-header .cat-count {
      font-size: 0.72rem;
      color: var(--text-muted);
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }
    .cat-header .cat-chevron {
      color: var(--green-900);
      font-size: 0.9rem;
      transition: var(--transition);
    }
    .cat-block.open .cat-chevron { transform: rotate(180deg); }
    .cat-body { padding: 0 1.6rem 1.6rem; display: none; }
    .cat-block.open .cat-body { display: block; }

    .sub-card {
      background: var(--beige-50);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      overflow: hidden;
      height: 100%;
      transition: var(--transition);
      display: flex;
      flex-direction: column;
    }
    .sub-card:hover { transform: translateY(-4px); box-shadow: 0 14px 32px rgba(0,0,0,0.07); }
    .sub-card .sub-img {
      height: 180px;
      overflow: hidden;
      background: var(--beige-200);
    }
    .sub-card .sub-img img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: var(--transition);
    }
    .sub-card:hover .sub-img img { transform: scale(1.05); }
    .sub-card .sub-body { padding: 1.1rem 1.2rem 1.3rem; flex-grow: 1; display: flex; flex-direction: column; }
    .sub-card h6 {
      font-size: 0.95rem;
      margin-bottom: 0.5rem;
      color: var(--green-900);
    }
    .sub-card p {
      font-size: 0.82rem;
      color: var(--text-muted);
      margin-bottom: 0.9rem;
      flex-grow: 1;
    }
    .sub-card .btn-inquire {
      font-size: 0.78rem;
      font-weight: 600;
      color: var(--green-900);
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      align-self: flex-start;
    }
    .sub-card .btn-inquire:hover { gap: 0.7rem; }

    /* ============================================================
       WHY CHOOSE US
       ============================================================ */
    .why-section { background: var(--bg-secondary); }
    .pillar-card {
      background: var(--surface);
      border-radius: var(--radius-md);
      padding: 1.8rem 1.4rem;
      border: 1px solid var(--border);
      transition: var(--transition);
      height: 100%;
    }
    .pillar-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.07); }
    .pillar-card .pillar-num {
      font-family: 'Playfair Display', serif;
      font-size: 2.2rem;
      font-weight: 700;
      color: var(--green-100);
      line-height: 1;
      margin-bottom: 0.5rem;
    }
    .pillar-card h5 { font-size: 1rem; margin-bottom: 0.6rem; }
    .pillar-card p { font-size: 0.84rem; color: var(--text-muted); margin: 0; }

    /* ============================================================
       ABOUT
       ============================================================ */
    .about-section { padding: 5rem 0; }
    .about-image {
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: 0 20px 50px rgba(0,0,0,0.08);
      margin-bottom: 1rem;
    }
    .about-image img { width: 100%; height: 280px; object-fit: cover; }
    .about-block h3 {
      font-size: 1.35rem;
      margin: 1.5rem 0 0.6rem;
      color: var(--green-900);
    }
    .about-block p { font-size: 0.92rem; color: var(--text-muted); margin-bottom: 0.8rem; }

    /* ============================================================
       TECHNICAL SPECS TABLE
       ============================================================ */
    .specs-section { background: var(--bg-secondary); padding: 5rem 0; }
    .specs-table {
      background: var(--surface);
      border-radius: var(--radius-md);
      overflow: hidden;
      border: 1px solid var(--border);
      margin: 0;
    }
    .specs-table thead { background: var(--green-900); color: var(--white); }
    .specs-table thead th {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 600;
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      padding: 1rem 1.2rem;
      border: none;
    }
    .specs-table tbody td {
      padding: 1rem 1.2rem;
      font-size: 0.84rem;
      vertical-align: top;
      border-color: var(--border);
    }
    .specs-table tbody tr:hover { background: var(--beige-50); }
    .specs-table tbody td:first-child { font-weight: 700; color: var(--green-900); }

    /* ============================================================
       BLOG
       ============================================================ */
    .blog-card {
      background: var(--surface);
      border-radius: var(--radius-md);
      overflow: hidden;
      border: 1px solid var(--border);
      transition: var(--transition);
      height: 100%;
    }
    .blog-card:hover { transform: translateY(-5px); box-shadow: 0 18px 44px rgba(0,0,0,0.07); }
    .blog-card .blog-img { height: 200px; overflow: hidden; }
    .blog-card .blog-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
    .blog-card:hover .blog-img img { transform: scale(1.04); }
    .blog-card-link { display: block; height: 100%; }
    .blog-card .blog-body { padding: 1.3rem; }
    .blog-card .blog-meta {
      font-size: 0.72rem;
      color: var(--green-900);
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 0.5rem;
    }
    .blog-card h5 { font-size: 1rem; margin-bottom: 0.5rem; }
    .blog-card p { font-size: 0.83rem; color: var(--text-muted); margin: 0; }

    /* ============================================================
       CONTACT
       ============================================================ */
    .contact-section { background: var(--green-900); color: var(--beige-50); padding: 5rem 0; }
    .contact-section h2 { color: var(--white); font-size: 2.1rem; }
    .contact-section .section-label { color: var(--beige-300); }
    .contact-section p { color: var(--beige-300); }

    .contact-info-item {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      margin-bottom: 1.3rem;
    }
    .contact-info-item .ci-icon {
      width: 42px; height: 42px;
      border-radius: 50%;
      background: rgba(255,255,255,0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.95rem;
      flex-shrink: 0;
      color: var(--beige-100);
    }
    .contact-info-item h6 {
      color: var(--white);
      font-size: 0.82rem;
      margin-bottom: 0.15rem;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }
    .contact-info-item p { font-size: 0.84rem; margin: 0; color: var(--beige-300); }
    .contact-info-item a { color: var(--beige-100); }
    .contact-info-item a:hover { color: var(--white); }

    .inquiry-form {
      background: var(--surface);
      border-radius: var(--radius-md);
      padding: 2rem;
    }
    .inquiry-form h4 { color: var(--charcoal); margin-bottom: 1.2rem; }
    .inquiry-form .form-control {
      border: 1px solid var(--border);
      border-radius: var(--radius-sm);
      padding: 0.72rem 1rem;
      font-size: 0.88rem;
      background: var(--beige-50);
      transition: var(--transition);
    }
    .inquiry-form .form-control:focus {
      border-color: var(--green-900);
      box-shadow: 0 0 0 3px rgba(88, 38, 21, 0.08);
      background: var(--white);
    }
    .inquiry-form textarea.form-control { min-height: 110px; }
    .inquiry-form .form-label {
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--charcoal);
      margin-bottom: 0.3rem;
    }

    /* ============================================================
       WHATSAPP FLOAT
       ============================================================ */
    .whatsapp-float {
      position: fixed;
      bottom: 28px; right: 28px;
      width: 58px; height: 58px;
      background: #25D366;
      color: var(--white);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.6rem;
      z-index: 9999;
      box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
      transition: var(--transition);
    }
    .whatsapp-float:hover { transform: scale(1.1); color: var(--white); box-shadow: 0 8px 32px rgba(37, 211, 102, 0.6); }

    /* ============================================================
       FOOTER
       ============================================================ */
    .footer { background: var(--charcoal); color: var(--grey-200); padding: 3.5rem 0 1.5rem; font-size: 0.85rem; }
    .footer h6 {
      color: var(--white);
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 700;
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 1.2rem;
    }
    .footer a { color: var(--grey-200); }
    .footer a:hover { color: var(--white); }
    .footer .footer-logo img { height: 44px; margin-bottom: 1rem; max-width: 100%; }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.08);
      padding-top: 1.5rem;
      margin-top: 2rem;
      font-size: 0.78rem;
      color: var(--grey-500);
    }
    .footer .social-icons a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 34px; height: 34px;
      border-radius: 50%;
      background: rgba(255,255,255,0.08);
      margin-right: 8px;
      font-size: 0.82rem;
      transition: var(--transition);
    }
    .footer .social-icons a:hover { background: var(--green-700); }

    /* ============================================================
       RESPONSIVE
       ============================================================ */
    @media (max-width: 991px) {
      .hero h1 { font-size: 2.2rem; }
      .hero-image-wrap img { height: 340px; }
      .section-title { font-size: 1.75rem; }
      .navbar-brand img { height: 42px; }
    }
    @media (max-width: 767px) {
      .hero { padding: 3rem 0 2.5rem; }
      .hero h1 { font-size: 1.85rem; }
      .hero p.lead { font-size: 0.92rem; }
      .hero-image-wrap img { height: 250px; }
      .section-title { font-size: 1.5rem; }
      .contact-section h2 { font-size: 1.65rem; }
      .inquiry-form { padding: 1.4rem; }
      .aeo-block { padding: 1.6rem; }
      .aeo-block .q { font-size: 1.05rem; }
      .cat-header { padding: 1.1rem 1.2rem; }
      .cat-body { padding: 0 1.2rem 1.2rem; }
    }

    /* ============================================================
       BLOG LISTING & ARTICLE PAGES
       ============================================================ */
    .page-hero {
      padding: 3rem 0 2.5rem;
      background: linear-gradient(135deg, var(--beige-50) 0%, var(--beige-100) 100%);
      position: relative;
      overflow: hidden;
    }
    .page-hero::before {
      content: '';
      position: absolute;
      top: -100px; right: -100px;
      width: 380px; height: 380px;
      background: var(--green-100);
      border-radius: 50%;
      opacity: 0.5;
    }
    .page-hero .container { position: relative; }
    .breadcrumb-nav {
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--text-muted);
      margin-bottom: 0.8rem;
    }
    .breadcrumb-nav a { color: var(--green-900); }
    .breadcrumb-nav a:hover { color: var(--green-700); }
    .breadcrumb-nav i { font-size: 0.65rem; margin: 0 0.5rem; color: var(--grey-500); }
    .page-hero h1 { font-size: 2.3rem; margin-bottom: 0.6rem; }
    .page-hero p.lead { font-size: 1rem; color: var(--text-muted); max-width: 680px; margin: 0; }

    /* Blog listing filter pills */
    .blog-filters {
      display: flex;
      flex-wrap: wrap;
      gap: 0.6rem;
      margin-bottom: 2.5rem;
    }
    .blog-filter-btn {
      display: inline-block;
      background: var(--surface);
      border: 1.5px solid var(--border);
      color: var(--charcoal);
      font-weight: 600;
      font-size: 0.82rem;
      padding: 0.5rem 1.2rem;
      border-radius: var(--radius-full);
      transition: var(--transition);
      cursor: pointer;
    }
    .blog-filter-btn:hover { border-color: var(--green-900); color: var(--green-900); }
    .blog-filter-btn.active { background: var(--green-900); border-color: var(--green-900); color: var(--white); }

    .blog-card-link { display: block; height: 100%; }

    /* Article page */
    .article-section { padding: 3.5rem 0 5rem; }
    .article-hero-img {
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: 0 20px 50px rgba(0,0,0,0.10);
      margin-bottom: 2rem;
    }
    .article-hero-img img { width: 100%; height: 420px; object-fit: cover; }
    .article-meta-row {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 1.2rem;
      margin-bottom: 1.2rem;
      font-size: 0.82rem;
      color: var(--text-muted);
      font-weight: 600;
    }
    .article-meta-row .meta-item { display: inline-flex; align-items: center; gap: 0.4rem; }
    .article-meta-row .meta-item i { color: var(--green-900); }
    .article-tag {
      display: inline-block;
      background: var(--green-100);
      color: var(--green-900);
      font-weight: 600;
      font-size: 0.72rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 0.35rem 0.9rem;
      border-radius: var(--radius-full);
      margin-bottom: 1rem;
    }
    .article-body { max-width: 780px; margin: 0 auto; }
    .article-body h2 {
      font-size: 1.5rem;
      margin: 2.4rem 0 1rem;
      color: var(--green-900);
    }
    .article-body h3 {
      font-size: 1.15rem;
      margin: 1.8rem 0 0.8rem;
      color: var(--charcoal);
    }
    .article-body p {
      font-size: 0.97rem;
      color: var(--text-muted);
      margin-bottom: 1.1rem;
    }
    .article-body ul, .article-body ol {
      color: var(--text-muted);
      font-size: 0.95rem;
      margin-bottom: 1.2rem;
      padding-left: 1.4rem;
    }
    .article-body li { margin-bottom: 0.5rem; }
    .article-body li strong { color: var(--charcoal); }
    .article-body strong { color: var(--charcoal); }
    .article-body .inline-img {
      border-radius: var(--radius-md);
      overflow: hidden;
      box-shadow: 0 14px 36px rgba(0,0,0,0.08);
      margin: 1.8rem 0;
    }
    .article-body .inline-img img { width: 100%; height: 320px; object-fit: cover; display: block; }
    .article-body .inline-img figcaption {
      font-size: 0.78rem;
      color: var(--text-muted);
      text-align: center;
      padding: 0.6rem 0.4rem 0;
      font-style: italic;
    }
    .article-callout {
      background: var(--green-900);
      color: var(--beige-50);
      border-radius: var(--radius-lg);
      padding: 1.8rem 2rem;
      margin: 2rem 0;
    }
    .article-callout h4 {
      color: var(--white);
      font-size: 1.05rem;
      margin-bottom: 0.6rem;
    }
    .article-callout p { color: var(--beige-200); font-size: 0.9rem; margin: 0; }
    .article-divider {
      border: none;
      border-top: 1px solid var(--border);
      margin: 2.5rem 0;
    }
    .article-cta {
      background: var(--bg-secondary);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 2rem;
      text-align: center;
      margin-top: 2.5rem;
    }
    .article-cta h4 { margin-bottom: 0.6rem; }
    .article-cta p { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 1.2rem; }
    .article-share {
      display: flex;
      align-items: center;
      gap: 0.8rem;
      margin: 2.5rem 0;
      padding-top: 1.5rem;
      border-top: 1px solid var(--border);
    }
    .article-share span { font-size: 0.8rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; }
    .article-share a {
      width: 38px; height: 38px;
      border-radius: 50%;
      background: var(--beige-100);
      color: var(--green-900);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 0.9rem;
      transition: var(--transition);
    }
    .article-share a:hover { background: var(--green-900); color: var(--white); }
    .related-posts-title { font-size: 1.4rem; margin-bottom: 1.8rem; text-align: center; }

    @media (max-width: 767px) {
      .page-hero { padding: 2.2rem 0 1.8rem; }
      .page-hero h1 { font-size: 1.7rem; }
      .article-hero-img img { height: 220px; }
      .article-body h2 { font-size: 1.25rem; }
      .article-callout, .article-cta { padding: 1.4rem; }
    }
