/* extracted from blog.html */
:root {
      --green-deep:   #1a2e1a;
      --green-mid:    #2d4a2d;
      --green-light:  #4a7c4a;
      --gold:         #c9a84c;
      --gold-light:   #e8c97a;
      --cream:        #faf7f0;
      --cream-dark:   #f0ead8;
      --text-dark:    #1a1a14;
      --text-mid:     #4a4a3a;
      --text-light:   #7a7a6a;
      --white:        #ffffff;
    }

    body {
      font-family: 'Jost', sans-serif;
      background: var(--cream);
      color: var(--text-dark);
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* ─── NAV ─────────────────────────────────────────────── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 18px 60px;
      background: rgba(26,46,26,0.97);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(201,168,76,0.2);
    }
    .nav-logo {
      display: flex; align-items: center; gap: 10px;
      text-decoration: none;
    }
    .nav-logo img { height: 36px; }
    .nav-logo span {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.15rem; font-weight: 500; letter-spacing: 0.04em;
      color: var(--cream);
    }
    .nav-links {
      display: flex; align-items: center; gap: 32px;
      list-style: none;
    }
    .nav-links a {
      text-decoration: none; color: rgba(250,247,240,0.75);
      font-size: 0.8rem; font-weight: 500; letter-spacing: 0.12em;
      text-transform: uppercase; transition: color 0.2s;
    }
    .nav-links a:hover, .nav-links a.active { color: var(--gold); }
    .nav-cta {
      background: var(--gold); color: var(--green-deep) !important;
      padding: 9px 22px; border-radius: 2px; font-weight: 600 !important;
      transition: background 0.2s !important;
    }
    .nav-cta:hover { background: var(--gold-light) !important; }

    /* ─── HERO ────────────────────────────────────────────── */
    .hero {
      min-height: 54vh;
      background: linear-gradient(160deg, var(--green-deep) 0%, #243d24 55%, #1e3820 100%);
      display: flex; align-items: center; justify-content: center;
      text-align: center;
      padding: 130px 40px 80px;
      position: relative; overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute; inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
      opacity: 0.6;
    }
    .hero-tag {
      display: inline-block; margin-bottom: 20px;
      font-size: 0.7rem; font-weight: 600; letter-spacing: 0.25em;
      text-transform: uppercase; color: var(--gold);
      border: 1px solid rgba(201,168,76,0.4);
      padding: 5px 16px; border-radius: 2px;
    }
    .hero h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.8rem, 6vw, 5rem);
      font-weight: 300; line-height: 1.1; color: var(--cream);
      margin-bottom: 20px;
    }
    .hero h1 em { font-style: italic; color: var(--gold-light); }
    .hero p {
      max-width: 560px; margin: 0 auto;
      font-size: 1rem; font-weight: 300; color: rgba(250,247,240,0.7);
      letter-spacing: 0.02em;
    }

    /* ─── FILTER BAR ──────────────────────────────────────── */
    .filter-bar {
      background: var(--white);
      border-bottom: 1px solid rgba(0,0,0,0.07);
      padding: 0 60px;
      position: sticky; top: 73px; z-index: 50;
    }
    .filter-inner {
      display: flex; align-items: center; gap: 0;
      overflow-x: auto; scrollbar-width: none;
    }
    .filter-inner::-webkit-scrollbar { display: none; }
    .filter-btn {
      flex-shrink: 0;
      background: none; border: none; cursor: pointer;
      font-family: 'Jost', sans-serif;
      font-size: 0.75rem; font-weight: 500; letter-spacing: 0.12em;
      text-transform: uppercase; color: var(--text-light);
      padding: 18px 20px; border-bottom: 2px solid transparent;
      transition: all 0.2s;
    }
    .filter-btn:hover { color: var(--green-mid); }
    .filter-btn.active {
      color: var(--green-deep); border-bottom-color: var(--gold);
    }

    /* ─── FEATURED POST ───────────────────────────────────── */
    .section { padding: 80px 60px; }
    .section-label {
      font-size: 0.7rem; font-weight: 600; letter-spacing: 0.25em;
      text-transform: uppercase; color: var(--gold);
      margin-bottom: 14px;
    }

    .featured-grid {
      display: grid; grid-template-columns: 1fr 420px; gap: 0;
      border-radius: 4px; overflow: hidden;
      box-shadow: 0 20px 60px rgba(26,46,26,0.12);
    }
    .featured-img {
      position: relative; min-height: 480px;
      background: linear-gradient(135deg, var(--green-mid) 0%, var(--green-deep) 100%);
      overflow: hidden;
    }
    .featured-img img {
      width: 100%; height: 100%; object-fit: cover;
      display: block; transition: transform 0.6s ease;
    }
    .featured-img:hover img { transform: scale(1.04); }
    .featured-img-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to right, transparent 60%, rgba(26,46,26,0.3));
    }
    .featured-badge {
      position: absolute; top: 24px; left: 24px;
      background: var(--gold); color: var(--green-deep);
      font-size: 0.65rem; font-weight: 700; letter-spacing: 0.18em;
      text-transform: uppercase; padding: 5px 14px; border-radius: 2px;
    }
    .featured-content {
      background: var(--green-deep);
      padding: 52px 48px;
      display: flex; flex-direction: column; justify-content: center;
    }
    .featured-cat {
      font-size: 0.68rem; font-weight: 600; letter-spacing: 0.2em;
      text-transform: uppercase; color: var(--gold);
      margin-bottom: 16px;
    }
    .featured-content h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2rem; font-weight: 400; line-height: 1.25;
      color: var(--cream); margin-bottom: 18px;
    }
    .featured-content h2 em { font-style: italic; color: var(--gold-light); }
    .featured-content p {
      font-size: 0.9rem; font-weight: 300; line-height: 1.75;
      color: rgba(250,247,240,0.65); margin-bottom: 32px;
    }
    .featured-meta {
      display: flex; align-items: center; gap: 16px;
      margin-bottom: 32px; padding-top: 20px;
      border-top: 1px solid rgba(201,168,76,0.2);
    }
    .featured-meta .avatar {
      width: 38px; height: 38px; border-radius: 50%;
      background: var(--green-light);
      display: flex; align-items: center; justify-content: center;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem; color: var(--cream);
    }
    .featured-meta .meta-text { font-size: 0.78rem; color: rgba(250,247,240,0.55); }
    .featured-meta .meta-text strong { color: rgba(250,247,240,0.85); display: block; }
    .btn-outline {
      display: inline-flex; align-items: center; gap: 8px;
      border: 1px solid var(--gold); color: var(--gold);
      font-family: 'Jost', sans-serif;
      font-size: 0.75rem; font-weight: 600; letter-spacing: 0.14em;
      text-transform: uppercase; text-decoration: none;
      padding: 12px 26px; border-radius: 2px;
      transition: all 0.25s; width: fit-content;
    }
    .btn-outline:hover {
      background: var(--gold); color: var(--green-deep);
    }
    .btn-outline svg { transition: transform 0.2s; }
    .btn-outline:hover svg { transform: translateX(4px); }

    /* ─── GRID POSTS ──────────────────────────────────────── */
    .posts-header {
      display: flex; align-items: flex-end; justify-content: space-between;
      margin-bottom: 40px;
    }
    .posts-header h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.2rem; font-weight: 400; line-height: 1.1;
      color: var(--text-dark);
    }
    .posts-header h2 em { font-style: italic; color: var(--green-light); }
    .see-all {
      font-size: 0.72rem; font-weight: 600; letter-spacing: 0.16em;
      text-transform: uppercase; color: var(--green-mid);
      text-decoration: none; border-bottom: 1px solid transparent;
      transition: border-color 0.2s; padding-bottom: 2px;
    }
    .see-all:hover { border-color: var(--green-mid); }

    .posts-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }

    .post-card {
      background: var(--white); border-radius: 3px;
      overflow: hidden; transition: transform 0.3s, box-shadow 0.3s;
      text-decoration: none; color: inherit;
      display: flex; flex-direction: column;
      box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    }
    .post-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 48px rgba(26,46,26,0.13);
    }
    .post-card-img {
      height: 220px; overflow: hidden; position: relative;
      background: linear-gradient(135deg, var(--green-light), var(--green-deep));
    }
    .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.06); }
    .post-card-cat {
      position: absolute; bottom: 14px; left: 14px;
      background: var(--gold); color: var(--green-deep);
      font-size: 0.62rem; font-weight: 700; letter-spacing: 0.18em;
      text-transform: uppercase; padding: 4px 10px; border-radius: 2px;
    }
    .post-card-body { padding: 28px 26px 30px; flex: 1; display: flex; flex-direction: column; }
    .post-card-date {
      font-size: 0.7rem; font-weight: 500; letter-spacing: 0.1em;
      text-transform: uppercase; color: var(--text-light);
      margin-bottom: 10px;
    }
    .post-card h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem; font-weight: 500; line-height: 1.3;
      color: var(--text-dark); margin-bottom: 12px;
    }
    .post-card p {
      font-size: 0.85rem; font-weight: 300; line-height: 1.7;
      color: var(--text-mid); flex: 1; margin-bottom: 20px;
    }
    .post-card-footer {
      display: flex; align-items: center; justify-content: space-between;
      padding-top: 16px; border-top: 1px solid var(--cream-dark);
    }
    .post-card-author {
      font-size: 0.75rem; font-weight: 500; color: var(--text-light);
    }
    .read-more {
      font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em;
      text-transform: uppercase; color: var(--green-mid);
      display: flex; align-items: center; gap: 4px;
    }

    /* ─── CATEGORY STRIP ──────────────────────────────────── */
    .cat-strip {
      background: var(--green-deep);
      padding: 60px;
    }
    .cat-strip .section-label { color: var(--gold); margin-bottom: 30px; }
    .cat-strip h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2rem; font-weight: 300; color: var(--cream);
      margin-bottom: 40px;
    }
    .cat-strip h2 em { font-style: italic; color: var(--gold-light); }
    .cat-cards {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
    }
    .cat-card {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(201,168,76,0.15);
      border-radius: 3px; padding: 28px 24px;
      cursor: pointer; transition: all 0.25s; text-decoration: none;
      display: block;
    }
    .cat-card:hover {
      background: rgba(201,168,76,0.1);
      border-color: rgba(201,168,76,0.4);
      transform: translateY(-3px);
    }
    .cat-icon { font-size: 1.8rem; margin-bottom: 14px; }
    .cat-card h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.15rem; font-weight: 500; color: var(--cream);
      margin-bottom: 6px;
    }
    .cat-card p { font-size: 0.78rem; color: rgba(250,247,240,0.5); }
    .cat-count {
      margin-top: 16px; font-size: 0.68rem; font-weight: 600;
      letter-spacing: 0.15em; text-transform: uppercase;
      color: var(--gold);
    }

    /* ─── NEWSLETTER ──────────────────────────────────────── */
    .newsletter {
      background: var(--cream-dark);
      padding: 80px 60px; text-align: center;
      border-top: 1px solid rgba(0,0,0,0.06);
    }
    .newsletter .section-label { display: block; margin-bottom: 14px; }
    .newsletter h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.4rem; font-weight: 300; line-height: 1.2;
      color: var(--text-dark); margin-bottom: 14px;
    }
    .newsletter h2 em { font-style: italic; color: var(--green-light); }
    .newsletter p {
      font-size: 0.9rem; font-weight: 300; color: var(--text-mid);
      max-width: 480px; margin: 0 auto 36px;
    }
    .newsletter-form {
      display: flex; align-items: center; gap: 0;
      max-width: 460px; margin: 0 auto;
      box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }
    .newsletter-form input {
      flex: 1; padding: 14px 20px;
      border: 1px solid rgba(0,0,0,0.12); border-right: none;
      border-radius: 2px 0 0 2px;
      font-family: 'Jost', sans-serif; font-size: 0.85rem;
      background: var(--white); color: var(--text-dark);
      outline: none;
    }
    .newsletter-form input::placeholder { color: var(--text-light); }
    .newsletter-form button {
      padding: 14px 28px;
      background: var(--green-deep); color: var(--cream);
      border: none; cursor: pointer;
      font-family: 'Jost', sans-serif;
      font-size: 0.75rem; font-weight: 600; letter-spacing: 0.14em;
      text-transform: uppercase; border-radius: 0 2px 2px 0;
      transition: background 0.2s;
    }
    .newsletter-form button:hover { background: var(--green-mid); }

    /* ─── SIDEBAR STRIP (Latest + Popular) ───────────────── */
    .two-col-section {
      display: grid; grid-template-columns: 1fr 340px;
      gap: 60px; align-items: start;
    }
    .sidebar-box {
      background: var(--white);
      border-radius: 3px; padding: 32px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    }
    .sidebar-box h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem; font-weight: 500; color: var(--text-dark);
      margin-bottom: 24px; padding-bottom: 16px;
      border-bottom: 1px solid var(--cream-dark);
    }
    .sidebar-post {
      display: flex; gap: 14px; padding: 14px 0;
      border-bottom: 1px solid var(--cream-dark);
      text-decoration: none; color: inherit;
      transition: opacity 0.2s;
    }
    .sidebar-post:last-child { border-bottom: none; }
    .sidebar-post:hover { opacity: 0.75; }
    .sp-img {
      width: 68px; height: 68px; flex-shrink: 0;
      border-radius: 2px; overflow: hidden;
      background: var(--green-light);
    }
    .sp-img img { width: 100%; height: 100%; object-fit: cover; }
    .sp-text {}
    .sp-cat {
      font-size: 0.62rem; font-weight: 600; letter-spacing: 0.15em;
      text-transform: uppercase; color: var(--gold);
      margin-bottom: 4px;
    }
    .sp-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 0.95rem; font-weight: 500; line-height: 1.35;
      color: var(--text-dark);
    }
    .sp-date { font-size: 0.7rem; color: var(--text-light); margin-top: 4px; }

    /* ─── FOOTER ──────────────────────────────────────────── */
    footer {
      background: var(--green-deep);
      padding: 60px; color: rgba(250,247,240,0.6);
    }
    .footer-top {
      display: grid; grid-template-columns: 260px 1fr 1fr 1fr;
      gap: 50px; margin-bottom: 48px;
    }
    .footer-brand img { height: 40px; margin-bottom: 16px; }
    .footer-brand p {
      font-size: 0.82rem; line-height: 1.75; font-weight: 300;
    }
    .footer-col h4 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1rem; font-weight: 500; color: var(--cream);
      margin-bottom: 16px;
    }
    .footer-col ul { list-style: none; }
    .footer-col li { margin-bottom: 8px; }
    .footer-col a {
      font-size: 0.82rem; color: rgba(250,247,240,0.55);
      text-decoration: none; transition: color 0.2s;
    }
    .footer-col a:hover { color: var(--gold); }
    .footer-bottom {
      display: flex; align-items: center; justify-content: space-between;
      padding-top: 24px; border-top: 1px solid rgba(201,168,76,0.15);
      font-size: 0.75rem;
    }
    .footer-bottom a { color: rgba(250,247,240,0.45); text-decoration: none; }
    .footer-bottom a:hover { color: var(--gold); }

    /* ─── SCROLL ANIMATION ────────────────────────────────── */
    .reveal {
      opacity: 0; transform: translateY(24px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .reveal.visible { opacity: 1; transform: none; }

    /* ─── RESPONSIVE ──────────────────────────────────────── */
    @media (max-width: 1100px) {
      nav { padding: 16px 30px; }
      .section, .cat-strip, .newsletter, footer { padding-left: 30px; padding-right: 30px; }
      .filter-bar { padding: 0 30px; }
      .posts-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
      .two-col-section { grid-template-columns: 1fr; }
      .cat-cards { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 768px) {
      .nav-links { display: none; }
      .featured-grid { grid-template-columns: 1fr; }
      .featured-img { min-height: 280px; }
      .featured-content { padding: 36px 28px; }
      .posts-grid { grid-template-columns: 1fr; }
      .cat-cards { grid-template-columns: repeat(2, 1fr); }
      .footer-top { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    }
