@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Source+Sans+3:wght@300;400;600&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #2d3436;
  --accent: #c0392b;
  --accent-light: #e74c3c;
  --gold: #f39c12;
  --bg: #f8f6f3;
  --white: #ffffff;
  --text: #4a4a4a;
  --text-light: #888;
  --border: #e8e4df;
  --max-width: 1100px;
}

html { scroll-behavior: smooth; }
body { font-family: 'Source Sans 3', sans-serif; background: var(--bg); color: var(--text); line-height: 1.7; font-size: 17px; }

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-light); }
img { max-width: 100%; height: auto; display: block; }

/* ── HEADER ── */
header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo { font-family: 'Playfair Display', serif; font-size: 1.7rem; font-weight: 700; color: var(--primary); letter-spacing: -.5px; }
.logo span { color: var(--accent); }
nav ul { list-style: none; display: flex; gap: 32px; }
nav a { font-size: .95rem; font-weight: 600; color: var(--primary); letter-spacing: .3px; transition: color .2s; }
nav a:hover, nav a.active { color: var(--accent); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--primary); transition: .3s; }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, #2d3436 0%, #636e72 100%);
  color: var(--white);
  text-align: center;
  padding: 90px 24px 80px;
}
.hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 700; line-height: 1.2; margin-bottom: 20px; }
.hero h1 em { color: #fdcb6e; font-style: normal; }
.hero p { font-size: 1.15rem; max-width: 560px; margin: 0 auto 34px; opacity: .88; }
.btn { display: inline-block; padding: 13px 32px; border-radius: 4px; font-weight: 600; font-size: .95rem; transition: .2s; }
.btn-primary { background: var(--accent); color: var(--white); }
.btn-primary:hover { background: var(--accent-light); color: var(--white); }
.btn-outline { border: 2px solid var(--white); color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--primary); }

/* ── SECTIONS ── */
.section { padding: 72px 24px; }
.section-alt { background: var(--white); }
.container { max-width: var(--max-width); margin: 0 auto; }
.section-title { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.section-sub { color: var(--text-light); margin-bottom: 44px; font-size: 1rem; }
.section-header { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 12px; margin-bottom: 44px; }
.view-all { font-size: .9rem; font-weight: 600; color: var(--accent); border-bottom: 1px solid var(--accent); padding-bottom: 2px; }

/* ── CARDS ── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }

.card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow .25s, transform .25s;
}
.card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.1); transform: translateY(-3px); }
.card-img { width: 100%; height: 210px; object-fit: cover; }
.card-img-placeholder {
  width: 100%; height: 210px;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
}
.card-body { padding: 22px; }
.card-cat { font-size: .78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--accent); margin-bottom: 8px; }
.card-title { font-family: 'Playfair Display', serif; font-size: 1.18rem; font-weight: 700; color: var(--primary); line-height: 1.4; margin-bottom: 10px; }
.card-title a { color: inherit; }
.card-title a:hover { color: var(--accent); }
.card-excerpt { font-size: .93rem; color: var(--text-light); line-height: 1.65; margin-bottom: 16px; }
.card-meta { font-size: .82rem; color: var(--text-light); display: flex; gap: 14px; align-items: center; }
.card-meta span::before { content: '·'; margin-right: 14px; }
.card-meta span:first-child::before { content: ''; margin: 0; }

/* ── FEATURED ── */
.featured-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 28px; }
.featured-card { background: var(--white); border-radius: 8px; overflow: hidden; border: 1px solid var(--border); transition: box-shadow .25s; }
.featured-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.1); }
.featured-img-placeholder { width: 100%; height: 340px; display: flex; align-items: center; justify-content: center; font-size: 5rem; }
.featured-body { padding: 28px 30px; }
.featured-body .card-title { font-size: 1.6rem; margin-bottom: 14px; }
.featured-body .card-excerpt { font-size: 1rem; margin-bottom: 20px; }
.side-cards { display: flex; flex-direction: column; gap: 28px; }
.side-cards .card-img-placeholder { height: 145px; font-size: 2.5rem; }

/* ── CATEGORIES STRIP ── */
.categories-strip { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 48px; }
.cat-pill {
  padding: 7px 20px; border-radius: 24px; border: 1.5px solid var(--border);
  font-size: .88rem; font-weight: 600; color: var(--text); transition: .2s;
  cursor: pointer;
}
.cat-pill:hover, .cat-pill.active { background: var(--accent); color: var(--white); border-color: var(--accent); }

/* ── NEWSLETTER ── */
.newsletter { background: linear-gradient(135deg, #2d3436, #636e72); color: var(--white); text-align: center; padding: 72px 24px; }
.newsletter h2 { font-family: 'Playfair Display', serif; font-size: 2rem; margin-bottom: 12px; }
.newsletter p { margin-bottom: 32px; opacity: .88; max-width: 480px; margin-left: auto; margin-right: auto; }
.newsletter-form { display: flex; gap: 12px; max-width: 460px; margin: 0 auto; flex-wrap: wrap; justify-content: center; }
.newsletter-form input { flex: 1; min-width: 220px; padding: 13px 18px; border: none; border-radius: 4px; font-size: 1rem; }
.newsletter-form input:focus { outline: 2px solid var(--gold); }

/* ── ABOUT PAGE ── */
.about-hero { background: linear-gradient(135deg, #f8f6f3, #ece8e1); padding: 80px 24px; }
.about-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 60px; align-items: center; }
.about-photo-placeholder { background: linear-gradient(135deg, #dfe6e9, #b2bec3); border-radius: 12px; height: 380px; display: flex; align-items: center; justify-content: center; font-size: 5rem; }
.about-text h1 { font-family: 'Playfair Display', serif; font-size: 2.6rem; color: var(--primary); margin-bottom: 18px; }
.about-text p { margin-bottom: 16px; color: var(--text); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.value-card { text-align: center; padding: 32px 20px; background: var(--white); border-radius: 8px; border: 1px solid var(--border); }
.value-icon { font-size: 2.4rem; margin-bottom: 14px; }
.value-card h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--primary); margin-bottom: 8px; }
.value-card p { font-size: .92rem; color: var(--text-light); }

/* ── CONTACT PAGE ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: start; }
.contact-info h2 { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--primary); margin-bottom: 16px; }
.contact-info p { color: var(--text-light); margin-bottom: 32px; }
.contact-item { display: flex; gap: 14px; margin-bottom: 24px; align-items: flex-start; }
.contact-icon { font-size: 1.4rem; }
.contact-item strong { display: block; color: var(--primary); font-size: .95rem; }
.contact-item span { font-size: .9rem; color: var(--text-light); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; font-size: .9rem; color: var(--primary); margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--border);
  border-radius: 4px; font-size: .97rem; font-family: inherit;
  transition: border-color .2s; background: var(--white);
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--accent); }
.form-group textarea { height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── ARTICLE / POST ── */
.post-hero { background: var(--primary); color: var(--white); padding: 72px 24px 60px; }
.post-hero .card-cat { color: #fdcb6e; font-size: .85rem; margin-bottom: 16px; }
.post-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(1.9rem, 4vw, 3rem); line-height: 1.25; max-width: 760px; margin-bottom: 22px; }
.post-hero-meta { opacity: .75; font-size: .92rem; display: flex; gap: 20px; }
.post-layout { display: grid; grid-template-columns: 1fr 320px; gap: 56px; max-width: var(--max-width); margin: 0 auto; padding: 60px 24px; align-items: start; }
.post-content { min-width: 0; }
.post-content h2 { font-family: 'Playfair Display', serif; font-size: 1.65rem; color: var(--primary); margin: 42px 0 16px; }
.post-content h3 { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: var(--primary); margin: 30px 0 12px; }
.post-content p { margin-bottom: 20px; line-height: 1.8; }
.post-content ul, .post-content ol { margin: 0 0 20px 24px; line-height: 1.8; }
.post-content li { margin-bottom: 8px; }
.post-content blockquote { border-left: 4px solid var(--accent); padding: 16px 24px; margin: 28px 0; background: #fff5f5; border-radius: 0 4px 4px 0; font-style: italic; color: var(--text); }
.post-content strong { color: var(--primary); font-weight: 600; }
.post-cover-placeholder { width: 100%; height: 360px; display: flex; align-items: center; justify-content: center; font-size: 5rem; border-radius: 8px; margin-bottom: 36px; }

/* Sidebar */
.sidebar { position: sticky; top: 88px; }
.sidebar-widget { background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 24px; margin-bottom: 24px; }
.sidebar-widget h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--primary); margin-bottom: 18px; border-bottom: 2px solid var(--accent); padding-bottom: 10px; }
.sidebar-post { display: flex; gap: 12px; margin-bottom: 16px; align-items: flex-start; }
.sidebar-post-num { font-size: 1.4rem; font-weight: 700; color: var(--border); min-width: 28px; }
.sidebar-post-title { font-size: .9rem; font-weight: 600; color: var(--primary); line-height: 1.4; }
.sidebar-post-title a { color: inherit; }
.sidebar-post-title a:hover { color: var(--accent); }
.tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag { padding: 5px 13px; background: var(--bg); border: 1px solid var(--border); border-radius: 20px; font-size: .82rem; color: var(--text); transition: .2s; }
.tag:hover { background: var(--accent); color: var(--white); border-color: var(--accent); }

/* Share */
.share-box { display: flex; gap: 12px; align-items: center; margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--border); flex-wrap: wrap; }
.share-box span { font-weight: 600; color: var(--primary); }
.share-btn { padding: 8px 20px; border-radius: 4px; font-size: .88rem; font-weight: 600; color: var(--white); }
.share-btn.twitter { background: #1da1f2; }
.share-btn.facebook { background: #3b5998; }
.share-btn.pinterest { background: #e60023; }

/* Related posts */
.related-posts { padding: 56px 24px; background: var(--white); border-top: 1px solid var(--border); }
.related-posts .container { max-width: var(--max-width); }

/* ── BLOG LISTING ── */
.blog-header { background: var(--primary); color: var(--white); text-align: center; padding: 72px 24px; }
.blog-header h1 { font-family: 'Playfair Display', serif; font-size: 2.8rem; margin-bottom: 12px; }
.blog-header p { opacity: .8; font-size: 1.1rem; }

/* ── POLICY PAGES ── */
.policy-content { max-width: 760px; margin: 0 auto; padding: 64px 24px; }
.policy-content h1 { font-family: 'Playfair Display', serif; font-size: 2.2rem; color: var(--primary); margin-bottom: 8px; }
.policy-content .last-updated { color: var(--text-light); font-size: .9rem; margin-bottom: 40px; }
.policy-content h2 { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--primary); margin: 36px 0 12px; }
.policy-content p, .policy-content li { margin-bottom: 14px; line-height: 1.8; }
.policy-content ul { margin-left: 22px; }
.policy-content a { color: var(--accent); }

/* ── FOOTER ── */
footer { background: #1a1a2e; color: #a0a0b0; }
.footer-top { padding: 56px 24px 40px; }
.footer-grid { max-width: var(--max-width); margin: 0 auto; display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand .logo { color: var(--white); font-size: 1.5rem; margin-bottom: 14px; }
.footer-brand p { font-size: .9rem; line-height: 1.7; }
.footer-col h4 { color: var(--white); font-size: .95rem; font-weight: 600; margin-bottom: 18px; letter-spacing: .5px; text-transform: uppercase; font-size: .82rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: #a0a0b0; font-size: .9rem; transition: color .2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid #2d2d44; padding: 20px 24px; text-align: center; font-size: .85rem; }
.footer-bottom .container { max-width: var(--max-width); margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }

/* ── BREADCRUMB ── */
.breadcrumb { font-size: .85rem; color: var(--text-light); padding: 14px 24px; max-width: var(--max-width); margin: 0 auto; }
.breadcrumb a { color: var(--text-light); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { margin: 0 6px; }

/* ── UTILITIES ── */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mb-0 { margin-bottom: 0; }
.divider { height: 1px; background: var(--border); margin: 48px 0; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .featured-grid, .grid-3, .about-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .post-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
}
@media (max-width: 640px) {
  .featured-grid, .grid-3, .grid-2, .about-grid, .contact-grid, .footer-grid, .values-grid { grid-template-columns: 1fr; }
  .hero { padding: 60px 20px; }
  .section { padding: 52px 20px; }
  nav ul { display: none; flex-direction: column; gap: 0; position: absolute; top: 68px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); padding: 12px 0; box-shadow: 0 8px 24px rgba(0,0,0,.08); }
  nav ul.open { display: flex; }
  nav ul li a { display: block; padding: 11px 28px; }
  .nav-toggle { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .post-hero h1 { font-size: 1.7rem; }
}
