*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --c1: #ea580c;
  --c2: #9a3412;
  --cl: #fff7ed;
  --text: #111827;
  --muted: #6b7280;
  --bg: #f9fafb;
  --white: #fff;
  --border: #e5e7eb;
  --r: 12px;
}
body { font-family: 'Raleway', sans-serif; color: var(--text); background: var(--bg); line-height: 1.65; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* Header */
.site-header { background: var(--white); border-bottom: 2px solid var(--cl); position: sticky; top: 0; z-index: 100; }
.header-wrap { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.logo { display: flex; align-items: center; gap: 8px; }
.logo-icon { font-size: 26px; }
.logo-name { font-size: 18px; font-weight: 800; color: var(--c2); }
.main-nav { display: flex; gap: 4px; }
.nav-item { padding: 8px 14px; border-radius: 8px; font-weight: 700; font-size: 14px; color: var(--muted); transition: all 0.2s; }
.nav-item:hover, .nav-item.active { background: var(--cl); color: var(--c2); }
.mob-btn { display: none; background: none; border: 1px solid var(--border); padding: 8px 12px; border-radius: 8px; cursor: pointer; font-size: 18px; }
.mob-nav { display: none; flex-direction: column; background: var(--white); border-top: 1px solid var(--border); }
.mob-nav a { padding: 12px 20px; font-weight: 700; border-bottom: 1px solid var(--border); }
.mob-nav.open { display: flex; }

/* Hero */
.hero { position: relative; min-height: 500px; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero-dim { position: absolute; inset: 0; background: linear-gradient(135deg, #9a3412e0 0%, #ea580c99 100%); }
.hero-inner { position: relative; z-index: 1; color: var(--white); padding: 80px 0; max-width: 640px; }
.hero-pill { display: inline-block; background: rgba(255,255,255,0.2); border: 1px solid rgba(255,255,255,0.3); padding: 5px 16px; border-radius: 20px; font-size: 12px; font-weight: 700; margin-bottom: 18px; }
.hero-inner h1 { font-family: 'Merriweather', serif; font-size: clamp(1.8rem, 4vw, 2.8rem); line-height: 1.25; margin-bottom: 16px; }
.hero-inner p { font-size: 16px; opacity: 0.9; margin-bottom: 28px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-main { background: var(--white); color: var(--c2); padding: 13px 26px; border-radius: 8px; font-weight: 800; font-size: 15px; transition: transform 0.2s; }
.btn-main:hover { transform: translateY(-2px); }
.btn-sec { border: 2px solid rgba(255,255,255,0.6); color: var(--white); padding: 13px 26px; border-radius: 8px; font-weight: 700; font-size: 15px; }
.btn-sec:hover { background: rgba(255,255,255,0.1); }

/* Features bar */
.features-bar { background: var(--c2); padding: 16px 0; }
.features-row { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; }
.feat-item { display: flex; align-items: center; gap: 8px; color: var(--white); font-size: 13px; font-weight: 700; }

/* Articles */
.articles-section, .more-articles { padding: 56px 0; }
.sec-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; }
.sec-head h2 { font-family: 'Merriweather', serif; font-size: 1.8rem; }
.see-more { color: var(--c1); font-weight: 700; font-size: 14px; }
.sec-title { font-family: 'Merriweather', serif; font-size: 1.8rem; margin-bottom: 28px; }
.art-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.art-card { background: var(--white); border-radius: var(--r); overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,0.07); transition: transform 0.2s; }
.art-card:hover { transform: translateY(-4px); }
.art-img { position: relative; height: 200px; overflow: hidden; }
.art-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.art-card:hover .art-img img { transform: scale(1.05); }
.art-cat { position: absolute; top: 12px; left: 12px; background: var(--c1); color: var(--white); padding: 3px 12px; border-radius: 20px; font-size: 11px; font-weight: 800; }
.art-body { padding: 20px; }
.art-body h3 { font-size: 14px; font-weight: 800; line-height: 1.4; margin-bottom: 10px; }
.art-body p { font-size: 13px; color: var(--muted); margin-bottom: 14px; line-height: 1.6; }
.art-link { color: var(--c1); font-weight: 700; font-size: 13px; }
.art-meta { font-size: 12px; color: var(--muted); }

/* CTA */
.cta-section { background: linear-gradient(135deg, var(--c2) 0%, var(--c1) 100%); padding: 56px 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-text h2 { font-family: 'Merriweather', serif; font-size: 1.8rem; color: var(--white); margin-bottom: 10px; }
.cta-text p { color: rgba(255,255,255,0.85); font-size: 15px; max-width: 480px; }
.cta-form { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-form input { padding: 13px 18px; border-radius: 8px; border: none; font-size: 14px; width: 260px; outline: none; font-family: inherit; }
.cta-form button { background: var(--white); color: var(--c2); padding: 13px 22px; border-radius: 8px; border: none; font-weight: 800; font-size: 14px; cursor: pointer; }

/* Page banner */
.page-banner { background: linear-gradient(135deg, var(--c2) 0%, var(--c1) 100%); padding: 56px 0; color: var(--white); text-align: center; }
.page-banner h1 { font-family: 'Merriweather', serif; font-size: 2.4rem; margin-bottom: 10px; }
.page-banner p { font-size: 15px; opacity: 0.85; }

/* About */
.about-section { padding: 64px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-img img { border-radius: var(--r); width: 100%; height: 380px; object-fit: cover; }
.about-text h2 { font-family: 'Merriweather', serif; font-size: 1.8rem; margin-bottom: 18px; }
.about-text p { color: var(--muted); margin-bottom: 14px; line-height: 1.8; }
.about-stats { display: flex; gap: 32px; margin-top: 28px; }
.astat strong { display: block; font-size: 1.8rem; font-weight: 800; color: var(--c1); }
.astat span { font-size: 13px; color: var(--muted); }

/* Contact */
.contact-section { padding: 64px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.contact-form-box { background: var(--white); padding: 40px; border-radius: var(--r); box-shadow: 0 2px 10px rgba(0,0,0,0.07); }
.contact-form-box h2 { font-family: 'Merriweather', serif; font-size: 1.6rem; margin-bottom: 24px; }
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-weight: 700; font-size: 13px; margin-bottom: 6px; }
.form-field input, .form-field textarea { width: 100%; padding: 11px 14px; border: 1px solid var(--border); border-radius: 8px; font-family: inherit; font-size: 14px; outline: none; }
.form-field input:focus, .form-field textarea:focus { border-color: var(--c1); }
.form-field textarea { height: 110px; resize: vertical; }
.submit-btn { background: var(--c1); color: var(--white); padding: 13px 28px; border: none; border-radius: 8px; font-weight: 800; font-size: 15px; cursor: pointer; width: 100%; }
.contact-info-box h2 { font-family: 'Merriweather', serif; font-size: 1.6rem; margin-bottom: 24px; }
.cinfo { display: flex; gap: 14px; margin-bottom: 22px; align-items: flex-start; }
.cinfo > span { font-size: 22px; }
.cinfo strong { display: block; font-weight: 700; margin-bottom: 4px; }
.cinfo p { font-size: 13px; color: var(--muted); }

/* Legal */
.legal-section { padding: 64px 0; }
.legal-content { max-width: 780px; margin: 0 auto; background: var(--white); padding: 48px; border-radius: var(--r); box-shadow: 0 2px 10px rgba(0,0,0,0.07); }
.legal-content h2 { font-family: 'Merriweather', serif; font-size: 1.4rem; color: var(--c2); margin: 28px 0 14px; }
.legal-content p { color: var(--muted); line-height: 1.8; margin-bottom: 14px; }

/* Footer */
.site-footer { background: #111827; color: #9ca3af; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; padding: 56px 0 40px; }
.footer-brand-col .logo-name { color: var(--white); }
.footer-brand-col p { margin-top: 14px; font-size: 13px; line-height: 1.7; }
.footer-nav-col h4 { color: var(--white); font-size: 14px; font-weight: 800; margin-bottom: 14px; }
.footer-nav-col { display: flex; flex-direction: column; gap: 10px; }
.footer-nav-col a { font-size: 13px; transition: color 0.2s; }
.footer-nav-col a:hover { color: var(--white); }
.footer-nav-col p { font-size: 13px; }
.footer-bottom { border-top: 1px solid #1f2937; padding: 18px 0; text-align: center; font-size: 12px; }

/* Cookie */
.cookie-bar { position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%); background: #1f2937; color: var(--white); padding: 16px 24px; border-radius: var(--r); display: flex; align-items: center; gap: 20px; box-shadow: 0 8px 32px rgba(0,0,0,0.3); z-index: 999; max-width: 540px; width: calc(100% - 40px); }
.cookie-bar p { font-size: 13px; }
.cookie-bar a { color: #ea580c; }
.cookie-bar button { background: var(--c1); color: var(--white); border: none; padding: 8px 18px; border-radius: 8px; font-weight: 800; cursor: pointer; white-space: nowrap; }
.cookie-bar.hidden { display: none; }

@media (max-width: 900px) {
  .art-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .features-row { gap: 24px; }
}
@media (max-width: 600px) {
  .main-nav { display: none; }
  .mob-btn { display: block; }
  .art-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; }
  .cta-form input { width: 100%; }
  .cookie-bar { flex-direction: column; text-align: center; }
  .about-stats { flex-direction: column; gap: 16px; }
}
