* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: Verdana, sans-serif; color: #3a3a3a; background: #f9fafb; line-height: 1.7; font-size: 15px; }
h1, h2, h3, h4 { font-family: 'Merriweather', serif; font-weight: 700; line-height: 1.3; }
a { color: #c45b28; text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 940px; margin: 0 auto; padding: 0 20px; }
.article-content { max-width: 660px; margin: 0 auto; }

/* Hero */
.hero { width:100vw; margin-left:calc(-50vw + 50%); min-height:500px; background-size:cover; background-position:center center; background-repeat:no-repeat; display:flex; align-items:center; justify-content:center; }
.hero-overlay { width:100%; min-height:500px; background:rgba(0,0,0,0.45); display:flex; flex-direction:column; align-items:center; justify-content:center; padding:80px 24px; text-align:center !important; }
.hero h1 { font-family:'Merriweather',serif; font-size:clamp(38px,7vw,60px); font-weight:700; color:#fff !important; margin-bottom:16px; line-height:1.1; letter-spacing:-0.01em; text-shadow:0 2px 16px rgba(0,0,0,0.4); text-align:center !important; }
.hero p { font-size:19px; color:rgba(255,255,255,0.92) !important; letter-spacing:0.03em; text-shadow:0 1px 8px rgba(0,0,0,0.4); text-align:center !important; }
.hero p em { font-style:italic; }

/* Header */
header { padding: 18px 0; border-bottom: 1px dashed #e2e2e2; }
.header-inner { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.site-brand { display: flex; align-items: center; justify-content: center; }
.site-logo { height: 156px; overflow: hidden; }
.site-logo img { height: 100%; width: auto; }
.site-title { display: none; }
.site-tagline { display: none; }
.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: #3a3a3a; transition: all .3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
.hamburger span { width: 22px; height: 2px; background: #3a3a3a; }
nav ul { display: flex; gap: 22px; list-style: none; }
nav ul li a { color: #3a3a3a; font-size: 14px; }
nav ul li a:hover { color: #c45b28; }

/* Featured Post */
.featured { display: flex; gap: 30px; margin: 40px 0; align-items: center; }
.featured img { width: 50%; border-radius: 6px; }
.featured-text { width: 50%; }
.featured-text .cat { font-size: 12px; color: #c45b28; margin-bottom: 6px; }
.featured-text h2 { font-size: 22px; margin-bottom: 10px; }
.featured-text .date { font-size: 12px; color: #888; margin-bottom: 10px; }
.featured-text p { font-size: 14px; }

/* Post Grid */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 40px 0; }
.card { border: 1px solid #e2e2e2; border-radius: 6px; overflow: hidden; background: #fff; }
.card img { width: 100%; height: 180px; object-fit: cover; }
.card-body { padding: 16px; }
.card-body .cat { font-size: 11px; color: #c45b28; margin-bottom: 4px; }
.card-body h3 { font-size: 16px; margin-bottom: 6px; }
.card-body h3 a { color: #3a3a3a; }
.card-body h3 a:hover { color: #c45b28; }
.card-body .date { font-size: 11px; color: #888; }

/* Single Post */
.post-header { text-align: center; padding: 40px 0 20px; }
.post-header .cat { font-size: 12px; color: #c45b28; margin-bottom: 8px; }
.post-header h1 { font-size: 28px; margin-bottom: 10px; }
.post-header .meta { font-size: 13px; color: #888; }
.post-featured-img { margin: 20px auto 30px; max-width: 660px; border-radius: 6px; }
.article-content p { margin-bottom: 18px; font-size: 15px; }
.article-content h2 { font-size: 20px; margin: 30px 0 12px; }

/* Related */
.related { border-top: 1px dashed #e2e2e2; margin-top: 40px; padding-top: 30px; max-width: 660px; margin-left: auto; margin-right: auto; }
.related h3 { font-size: 18px; margin-bottom: 16px; }
.related-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* Category page */
.page-title { padding: 36px 0 20px; }
.page-title h1 { font-size: 26px; }

/* Static pages */
.static-page { padding: 40px 0; }
.static-page h1 { font-size: 26px; margin-bottom: 20px; }
.static-page h2 { font-size: 20px; margin: 28px 0 10px; }
.static-page p { margin-bottom: 16px; }
.contact-centered { text-align: center; max-width: 500px; margin: 0 auto; }

/* Footer */
footer { border-top: 1px dashed #e2e2e2; margin-top: 50px; padding: 30px 0; font-size: 13px; color: #888; }
.footer-inner { display: flex; justify-content: space-between; }
.footer-inner a { color: #888; }
.footer-inner a:hover { color: #c45b28; }

/* Responsive */
@media (max-width: 768px) {
  .hamburger { display: flex; position: absolute; left: 24px; top: 26px; }
  nav { display: none; width: 100%; }
  nav.open { display: block; }
  nav.open ul { display: flex; flex-direction: column; gap: 0; }
  nav.open ul li { border-bottom: 1px solid #e2e2e2; }
  nav.open ul li a { display: block; padding: 10px 0; }
  header { position: relative; }
  .featured { flex-direction: column; }
  .featured img, .featured-text { width: 100%; }
  .post-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 10px; }
}
