*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  --bg:#fafaf7;
  --bg-dark:#2c3e2d;
  --bg-card:#fff;
  --text:#2d2a26;
  --text-muted:#5c554d;
  --accent:#3d6b4f;
  --accent-hover:#2e5540;
  --accent-light:#e8f0eb;
  --border:#d4cfc7;
  --wood:#7a5c3a;
  --wood-light:#a67c52;
}
body{font-family:'Palatino Linotype','Book Antiqua',Palatino,serif;line-height:1.8;color:var(--text);background:var(--bg)}
a{color:var(--accent);text-decoration:none;transition:color 0.2s}
a:hover{color:var(--accent-hover)}
img{max-width:100%;height:auto;display:block;border-radius:6px}
.container{max-width:1080px;margin:0 auto;padding:0 1.5rem}

/* NAV */
header{background:var(--bg-dark);padding:1rem 0}
header nav{display:flex;justify-content:space-between;align-items:center;max-width:1080px;margin:0 auto;padding:0 1.5rem}
.brand {display: inline-flex;align-items:center;gap:0.6rem;font-weight:700;font-size:1.15rem;color:#f0ebe4;text-decoration:none}
.brand svg{width:36px;height:36px}
.nav-links{display:flex;gap:1.5rem;align-items:center}
.nav-links a{color:#c8c0b6;font-size:0.9rem;font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif}
.nav-links a:hover{color:#fff}

/* HERO */
.hero{padding:5rem 1.5rem;text-align:center;background:linear-gradient(180deg,var(--bg-dark) 0%,#3d5040 100%);color:#f0ebe4}
.hero h1{font-size:2.8rem;font-weight:700;margin-bottom:0.75rem;color:#f0ebe4}
.hero p{font-size:1.1rem;color:#c8c0b6;max-width:600px;margin:0 auto 2rem;font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif}
.btn{display:inline-block;padding:0.8rem 1.8rem;background:var(--wood-light);color:#fff;font-weight:600;border-radius:4px;font-size:0.9rem;font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;transition:background 0.2s,transform 0.2s}
.btn:hover{background:var(--wood);color:#fff;transform:translateY(-2px)}

/* SECTIONS */
section{padding:4rem 0}
section h2{font-size:1.9rem;color:var(--accent);margin-bottom:0.5rem}
section .subtitle{color:var(--text-muted);margin-bottom:2rem;font-size:1rem;font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif}

/* GRID */
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem}
.card{background:var(--bg-card);border:1px solid var(--border);border-radius:8px;overflow:hidden;transition:transform 0.2s,box-shadow 0.2s}
.card:hover{transform:translateY(-4px);box-shadow:0 8px 24px rgba(45,42,38,0.08)}
.card img{width:100%;height:230px;object-fit:cover;border-radius:0}
.card-body{padding:1.25rem}
.card-body h3{font-size:1.1rem;color:var(--wood);margin-bottom:0.4rem}
.card-body p{color:var(--text-muted);font-size:0.9rem;font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif}

/* ARTICLE */
.article-content{max-width:730px;margin:0 auto}
.article-content h1{font-size:2.2rem;color:var(--accent);margin-bottom:1rem}
.article-content h2{font-size:1.5rem;color:var(--wood);margin-top:2.5rem;margin-bottom:0.75rem}
.article-content p{color:var(--text-muted);margin-bottom:1.25rem;font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif}
.article-content ul,.article-content ol{margin:1rem 0 1.5rem 1.5rem;color:var(--text-muted);font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif}
.article-content li{margin-bottom:0.5rem}
.article-content img{margin:2rem 0;border-radius:8px}

/* ABOUT SPLIT */
.about-split{display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:center}
.about-split img{border-radius:8px}
.about-split h2{font-size:1.7rem;color:var(--accent);margin-bottom:0.75rem}
.about-split p{color:var(--text-muted);font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif}

/* BANNER */
.banner{background:var(--accent-light);border-top:1px solid var(--border);border-bottom:1px solid var(--border);padding:3rem 1.5rem;text-align:center}
.banner h2{color:var(--accent)}
.banner p{color:var(--text-muted);font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;max-width:600px;margin:0 auto 1.5rem}

/* FOOTER */
footer{background:var(--bg-dark);padding:2.5rem 0;text-align:center}
footer .footer-links{margin-bottom:0.75rem}
footer .footer-links a{margin:0 0.75rem;color:#c8c0b6;font-size:0.9rem;font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif}
footer .footer-links a:hover{color:#fff}
footer p{color:#8a8177;font-size:0.8rem;font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif}

/* MOBILE */
.mobile-toggle{display:none;background:none;border:none;color:#f0ebe4;font-size:1.5rem;cursor:pointer}
@media(max-width:768px){
  .grid-3{grid-template-columns:1fr}
  .about-split{grid-template-columns:1fr;gap:2rem}
  .hero h1{font-size:2rem}
  .hero{padding:3rem 1rem}
  .nav-links{display:none}
  .mobile-toggle{display:block}
  .nav-links.open{display:flex;flex-direction:column;position:absolute;top:100%;left:0;right:0;background:var(--bg-dark);padding:1.5rem;border-bottom:1px solid var(--border);z-index:99}
}

.brand-icon { width: 24px; height: 24px; flex-shrink: 0; vertical-align: middle; margin-right: 6px; }
