﻿*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --cream: #FAF6F0; --white: #FFFFFF; --forest: #1E4D2B; --sage: #4A7C59;
  --terra: #C4622D; --amber: #E8A838; --dark: #141414; --body: #3A3A3A;
  --muted: #7A7A7A; --border: #E8E0D5; --card-bg: #FFFFFF;
}
html { scroll-behavior: smooth; }
body { font-family: "Lora", Georgia, serif; background: var(--cream); color: var(--body); line-height: 1.7; font-size: 17px; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.tag { display: inline-block; font-family: "DM Sans", sans-serif; font-size: 11px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; background: var(--forest); color: #fff; padding: 4px 10px; border-radius: 2px; }
.tag.orange { background: var(--terra); }
.tag.amber  { background: var(--amber); color: var(--dark); }
img { max-width: 100%; display: block; }
nav { position: sticky; top: 0; z-index: 100; background: var(--forest); border-bottom: 3px solid var(--amber); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-icon { width: 36px; height: 36px; background: var(--amber); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 18px; }
.logo-text { font-family: "Playfair Display", serif; font-size: 22px; font-weight: 700; color: #fff; letter-spacing: -.01em; }
.logo-text span { color: var(--amber); }
.nav-links { display: flex; gap: 6px; list-style: none; }
.nav-links a { font-family: "DM Sans", sans-serif; font-size: 14px; font-weight: 500; color: rgba(255,255,255,.82); text-decoration: none; padding: 8px 14px; border-radius: 4px; transition: all .2s; }
.nav-links a:hover, .nav-links a.active { background: rgba(255,255,255,.12); color: #fff; }
.hero { background: linear-gradient(135deg, #1E4D2B 0%, #2D6B3F 55%, #3A7A50 100%); padding: 80px 0 60px; 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='%23ffffff' fill-opacity='0.03'%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"); }
.hero-content { position: relative; z-index: 1; max-width: 720px; }
.hero-eyebrow { font-family: "DM Sans", sans-serif; font-size: 12px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--amber); margin-bottom: 18px; }
.hero h1 { font-family: "Playfair Display", serif; font-size: clamp(36px, 5vw, 58px); font-weight: 700; color: #fff; line-height: 1.15; margin-bottom: 20px; }
.hero h1 em { color: var(--amber); font-style: italic; }
.hero p { font-size: 18px; color: rgba(255,255,255,.80); margin-bottom: 32px; max-width: 540px; }
.hero-cta { display: inline-flex; align-items: center; gap: 10px; background: var(--amber); color: var(--dark); font-family: "DM Sans", sans-serif; font-size: 15px; font-weight: 600; padding: 14px 28px; border-radius: 4px; text-decoration: none; transition: all .2s; border: none; cursor: pointer; }
.hero-cta:hover { background: #f5b840; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.25); }
.section-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 36px; padding-bottom: 16px; border-bottom: 2px solid var(--border); }
.section-head h2 { font-family: "Playfair Display", serif; font-size: 28px; font-weight: 700; color: var(--dark); }
.section-head a { font-family: "DM Sans", sans-serif; font-size: 14px; color: var(--terra); text-decoration: none; font-weight: 500; }
.section-head a:hover { text-decoration: underline; }
.featured-section { padding: 60px 0 20px; }
.featured-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.featured-main { position: relative; border-radius: 10px; overflow: hidden; background: var(--dark); transition: transform .3s; }
.featured-main:hover { transform: translateY(-4px); }
.featured-main-img { width: 100%; height: 380px; display: flex; align-items: center; justify-content: center; font-size: 100px; background: linear-gradient(160deg, #2D6B3F, #4A7C59, #1E4D2B); }
.featured-main-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(20,20,20,.95) 0%, rgba(20,20,20,.5) 60%, transparent 100%); padding: 28px 28px 32px; }
.featured-main-overlay h3 { font-family: "Playfair Display", serif; font-size: 24px; font-weight: 700; color: #fff; margin: 10px 0 8px; line-height: 1.3; }
.featured-main-overlay p { font-size: 14px; color: rgba(255,255,255,.72); margin-bottom: 12px; }
.featured-main-overlay a { text-decoration: none; color: inherit; }
.post-meta { font-family: "DM Sans", sans-serif; font-size: 12px; color: var(--muted); }
.featured-side { display: flex; flex-direction: column; gap: 20px; }
.side-card { display: flex; gap: 16px; background: var(--white); border-radius: 10px; overflow: hidden; border: 1px solid var(--border); transition: all .25s; text-decoration: none; color: inherit; }
.side-card:hover { border-color: var(--sage); transform: translateX(4px); }
.side-card-thumb { width: 110px; flex-shrink: 0; background: linear-gradient(135deg, #E8F4EC, #C8E6D0); display: flex; align-items: center; justify-content: center; font-size: 40px; }
.side-card-body { padding: 18px 18px 18px 0; }
.side-card-body h4 { font-family: "Playfair Display", serif; font-size: 17px; font-weight: 600; color: var(--dark); margin: 8px 0 6px; line-height: 1.3; }
.side-card-body p { font-size: 13px; color: var(--muted); line-height: 1.5; }
.blog-section { padding: 40px 0 60px; }
.layout-with-sidebar { display: grid; grid-template-columns: 1fr 300px; gap: 48px; align-items: start; }
.post-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.post-card { background: var(--white); border-radius: 10px; overflow: hidden; border: 1px solid var(--border); transition: all .25s; text-decoration: none; color: inherit; display: block; }
.post-card:hover { border-color: var(--sage); box-shadow: 0 8px 28px rgba(0,0,0,.08); transform: translateY(-4px); }
.post-card-thumb { width: 100%; height: 200px; background: linear-gradient(135deg, #E0F0E8, #B8D9C4); display: flex; align-items: center; justify-content: center; font-size: 64px; }
.post-card-thumb.orange { background: linear-gradient(135deg, #FDE8DC, #F5C4A8); }
.post-card-thumb.amber  { background: linear-gradient(135deg, #FDF3DC, #F5DDA8); }
.post-card-body { padding: 20px; }
.post-card-body h3 { font-family: "Playfair Display", serif; font-size: 19px; font-weight: 600; color: var(--dark); margin: 10px 0 10px; line-height: 1.35; }
.post-card-body p { font-size: 14px; color: var(--muted); line-height: 1.6; }
.read-more { display: inline-flex; align-items: center; gap: 6px; font-family: "DM Sans", sans-serif; font-size: 13px; font-weight: 600; color: var(--terra); text-decoration: none; margin-top: 14px; transition: gap .2s; }
.read-more:hover { gap: 10px; }
.sidebar { position: sticky; top: 80px; }
.sidebar-widget { background: var(--white); border-radius: 10px; border: 1px solid var(--border); padding: 24px; margin-bottom: 24px; }
.sidebar-widget h3 { font-family: "Playfair Display", serif; font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--border); }
.category-list { list-style: none; }
.category-list li { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid var(--border); font-family: "DM Sans", sans-serif; font-size: 14px; color: var(--body); }
.category-list li:last-child { border-bottom: none; }
.category-list li a { color: var(--body); text-decoration: none; transition: color .2s; }
.category-list li a:hover { color: var(--terra); }
.popular-post { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border); text-decoration: none; color: inherit; }
.popular-post:last-child { border-bottom: none; }
.popular-post-num { font-family: "Playfair Display", serif; font-size: 28px; font-weight: 700; color: var(--border); line-height: 1; flex-shrink: 0; }
.popular-post-title { font-family: "DM Sans", sans-serif; font-size: 13px; font-weight: 500; color: var(--dark); line-height: 1.45; transition: color .2s; }
.popular-post:hover .popular-post-title { color: var(--terra); }
.post-page { padding: 48px 0 80px; }
.post-header { margin-bottom: 36px; }
.post-header h1 { font-family: "Playfair Display", serif; font-size: clamp(28px, 4vw, 44px); font-weight: 700; color: var(--dark); line-height: 1.2; margin: 16px 0 18px; }
.post-header-meta { display: flex; align-items: center; gap: 24px; padding: 16px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); font-family: "DM Sans", sans-serif; font-size: 14px; color: var(--muted); flex-wrap: wrap; }
.author-chip { display: flex; align-items: center; gap: 8px; }
.author-avatar { width: 32px; height: 32px; background: linear-gradient(135deg, var(--sage), var(--forest)); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-family: "DM Sans", sans-serif; font-size: 13px; font-weight: 600; }
.post-hero-img { width: 100%; height: 420px; background: linear-gradient(160deg, #1E4D2B 0%, #4A7C59 100%); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 120px; margin-bottom: 36px; }
.post-content h2 { font-family: "Playfair Display", serif; font-size: 26px; font-weight: 700; color: var(--dark); margin: 40px 0 16px; padding-bottom: 10px; border-bottom: 2px solid var(--amber); display: inline-block; }
.post-content h3 { font-family: "Playfair Display", serif; font-size: 20px; font-weight: 600; color: var(--dark); margin: 30px 0 12px; }
.post-content p { margin-bottom: 20px; line-height: 1.85; }
.post-content ul, .post-content ol { margin: 16px 0 20px 24px; }
.post-content li { margin-bottom: 10px; line-height: 1.7; }
.callout { background: linear-gradient(135deg, #E8F4EC, #D4EBDA); border-left: 4px solid var(--forest); border-radius: 0 8px 8px 0; padding: 20px 24px; margin: 28px 0; }
.callout-title { font-family: "DM Sans", sans-serif; font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--forest); margin-bottom: 8px; }
.callout p { margin: 0; font-size: 15px; }
.warning-callout { background: linear-gradient(135deg, #FDE8DC, #FDD5C0); border-left-color: var(--terra); }
.warning-callout .callout-title { color: var(--terra); }
.table-wrap { overflow-x: auto; margin: 24px 0; }
table { width: 100%; border-collapse: collapse; font-size: 15px; }
th { background: var(--forest); color: #fff; font-family: "DM Sans", sans-serif; font-weight: 600; padding: 12px 16px; text-align: left; font-size: 13px; }
td { padding: 11px 16px; border-bottom: 1px solid var(--border); }
tr:nth-child(even) td { background: #F5F0E8; }
.back-btn { display: inline-flex; align-items: center; gap: 8px; font-family: "DM Sans", sans-serif; font-size: 14px; font-weight: 500; color: var(--forest); text-decoration: none; margin-bottom: 24px; transition: gap .2s; }
.back-btn:hover { gap: 12px; }
.related-posts { margin-top: 60px; }
.author-bio { background: linear-gradient(135deg, #E8F4EC, #D4EBDA); border-radius: 12px; padding: 28px; margin-top: 48px; display: flex; gap: 20px; align-items: flex-start; }
.author-bio-avatar { width: 60px; height: 60px; background: linear-gradient(135deg, var(--sage), var(--forest)); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-family: "DM Sans", sans-serif; font-size: 20px; font-weight: 700; flex-shrink: 0; }
.author-bio-content h4 { font-family: "Playfair Display", serif; font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.author-bio-content p { font-size: 14px; color: var(--body); margin: 0; line-height: 1.7; }
.faq-item { border: 1px solid var(--border); border-radius: 8px; margin-bottom: 12px; overflow: hidden; }
.faq-q { font-family: "DM Sans", sans-serif; font-size: 15px; font-weight: 600; color: var(--dark); padding: 16px 20px; background: var(--white); }
.faq-a { padding: 0 20px 16px; font-size: 15px; color: var(--body); line-height: 1.75; }
.about-page { padding: 60px 0; }
.about-hero { background: linear-gradient(135deg, var(--forest) 0%, var(--sage) 100%); border-radius: 16px; padding: 60px 48px; color: #fff; margin-bottom: 60px; position: relative; overflow: hidden; }
.about-hero::after { content: "❄️"; position: absolute; right: 40px; top: 50%; transform: translateY(-50%); font-size: 120px; opacity: .15; }
.about-hero h1 { font-family: "Playfair Display", serif; font-size: 40px; font-weight: 700; margin-bottom: 16px; }
.about-hero p { font-size: 17px; opacity: .85; max-width: 600px; }
.about-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 48px; }
.about-card { background: var(--white); border-radius: 10px; border: 1px solid var(--border); padding: 28px 24px; text-align: center; }
.about-card-icon { font-size: 40px; margin-bottom: 14px; }
.about-card h3 { font-family: "Playfair Display", serif; font-size: 20px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.about-card p { font-size: 14px; color: var(--muted); }
.about-content { background: var(--white); border-radius: 10px; border: 1px solid var(--border); padding: 40px; }
.about-content h2 { font-family: "Playfair Display", serif; font-size: 26px; font-weight: 700; color: var(--dark); margin: 0 0 20px; }
.about-content h2:not(:first-child) { margin-top: 32px; }
.about-content p { margin-bottom: 16px; }
.contact-page { padding: 60px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; margin-top: 40px; }
.contact-info h2 { font-family: "Playfair Display", serif; font-size: 28px; font-weight: 700; color: var(--dark); margin-bottom: 16px; }
.contact-info p { margin-bottom: 16px; }
.contact-detail { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; font-family: "DM Sans", sans-serif; font-size: 15px; }
.contact-detail span:first-child { font-size: 22px; }
.contact-form-wrap { background: var(--white); border-radius: 12px; border: 1px solid var(--border); padding: 36px; }
.contact-form-wrap h2 { font-family: "Playfair Display", serif; font-size: 22px; font-weight: 700; color: var(--dark); margin-bottom: 24px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-family: "DM Sans", sans-serif; font-size: 13px; font-weight: 600; color: var(--dark); margin-bottom: 6px; text-transform: uppercase; letter-spacing: .05em; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 11px 14px; border: 1px solid var(--border); border-radius: 6px; font-family: "DM Sans", sans-serif; font-size: 15px; background: var(--cream); color: var(--dark); outline: none; transition: border-color .2s; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--sage); }
.form-group textarea { resize: vertical; min-height: 130px; }
.btn-submit { width: 100%; padding: 13px; background: var(--forest); color: #fff; border: none; border-radius: 6px; font-family: "DM Sans", sans-serif; font-size: 15px; font-weight: 600; cursor: pointer; transition: background .2s; }
.btn-submit:hover { background: var(--sage); }
.policy-page { padding: 60px 0; }
.policy-hero { background: linear-gradient(135deg, var(--forest), var(--sage)); border-radius: 12px; padding: 48px; color: #fff; margin-bottom: 48px; }
.policy-hero h1 { font-family: "Playfair Display", serif; font-size: 36px; font-weight: 700; margin-bottom: 10px; }
.policy-hero p { opacity: .8; font-size: 15px; }
.policy-content { background: var(--white); border-radius: 10px; border: 1px solid var(--border); padding: 48px; max-width: 860px; }
.policy-content h2 { font-family: "Playfair Display", serif; font-size: 22px; font-weight: 700; color: var(--dark); margin: 32px 0 12px; }
.policy-content h2:first-child { margin-top: 0; }
.policy-content p, .policy-content li { font-size: 15px; line-height: 1.8; margin-bottom: 14px; color: var(--body); }
.policy-content ul, .policy-content ol { margin: 8px 0 16px 24px; }
.policy-content a { color: var(--terra); }
.disclaimer-bar { background: #1A1A1A; color: rgba(255,255,255,.6); font-family: "DM Sans", sans-serif; font-size: 12px; padding: 8px 0; text-align: center; }
.disclaimer-bar a { color: var(--amber); text-decoration: none; }
footer { background: var(--dark); color: rgba(255,255,255,.7); padding: 56px 0 28px; margin-top: 60px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand p { font-size: 14px; line-height: 1.7; margin-top: 14px; max-width: 260px; }
footer h4 { font-family: "DM Sans", sans-serif; font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--amber); margin-bottom: 16px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-family: "DM Sans", sans-serif; font-size: 14px; color: rgba(255,255,255,.6); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-family: "DM Sans", sans-serif; font-size: 13px; color: rgba(255,255,255,.4); flex-wrap: wrap; gap: 8px; }
.page-header-band { background: var(--forest); padding: 40px 0 32px; }
.page-header-band .eyebrow { font-family: "DM Sans", sans-serif; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--amber); margin-bottom: 10px; }
.page-header-band h1 { font-family: "Playfair Display", serif; font-size: 36px; color: #fff; font-weight: 700; }
.page-header-band p { color: rgba(255,255,255,.72); margin-top: 10px; font-size: 16px; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.hero-content { animation: fadeUp .5s ease forwards; }
.post-card { animation: fadeUp .5s ease forwards; }
@media(max-width: 900px) {
  .featured-grid { grid-template-columns: 1fr; }
  .layout-with-sidebar { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media(max-width: 640px) {
  .post-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .about-hero { padding: 40px 24px; }
  .policy-content { padding: 28px; }
}
