*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --rose: #C9536A;
  --blush: #F7E8EC;
  --cream: #FDF6F0;
  --ink: #1A1118;
  --muted: #7A6570;
  --border: #E8D5DB;
  --white: #ffffff;
}
body { font-family: 'Inter', sans-serif; background: var(--cream); color: var(--ink); font-size: 16px; line-height: 1.6; }

/* NAV */
nav {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.2rem 3rem; border-bottom: 1px solid var(--border);
  background: var(--white); position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.logo { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--rose); letter-spacing: -0.02em; text-decoration: none; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { text-decoration: none; color: var(--muted); font-size: 0.85rem; font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--rose); }
.nav-cta { background: var(--rose); color: white; border: none; padding: 0.6rem 1.4rem; border-radius: 2px; font-size: 0.82rem; font-weight: 600; cursor: pointer; font-family: 'Inter', sans-serif; text-decoration: none; transition: opacity 0.2s; }
.nav-cta:hover { opacity: 0.88; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: all 0.3s; }
.mobile-menu { display: none; position: fixed; inset: 0; top: 65px; background: white; z-index: 99; padding: 2rem; flex-direction: column; gap: 1.5rem; border-top: 1px solid var(--border); }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 1.1rem; color: var(--ink); text-decoration: none; font-weight: 500; padding: 0.5rem 0; border-bottom: 1px solid var(--border); }
.mobile-menu a:hover { color: var(--rose); }
.mobile-menu .nav-cta { text-align: center; margin-top: 0.5rem; display: block; }

/* SHARED */
.section-wrap { max-width: 1160px; margin: 0 auto; padding: 5rem 2rem; }
.section-label { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--rose); font-weight: 600; margin-bottom: 0.6rem; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--ink); line-height: 1.2; margin-bottom: 0.8rem; }
.section-sub { color: var(--muted); font-size: 0.95rem; font-weight: 300; max-width: 520px; line-height: 1.7; }

/* BUTTONS */
.btn-primary { background: var(--rose); color: white; border: none; padding: 0.9rem 2.2rem; font-size: 0.9rem; font-weight: 600; cursor: pointer; border-radius: 2px; font-family: 'Inter', sans-serif; transition: opacity 0.2s; text-decoration: none; display: inline-block; }
.btn-primary:hover { opacity: 0.88; }
.btn-outline { background: transparent; color: var(--ink); border: 1px solid var(--border); padding: 0.9rem 2.2rem; font-size: 0.9rem; font-weight: 500; cursor: pointer; border-radius: 2px; font-family: 'Inter', sans-serif; transition: border-color 0.2s; text-decoration: none; display: inline-block; }
.btn-outline:hover { border-color: var(--rose); color: var(--rose); }
.btn-outline-white { background: transparent; color: white; border: 1px solid rgba(255,255,255,0.4); padding: 0.9rem 2.2rem; font-size: 0.9rem; font-weight: 500; cursor: pointer; border-radius: 2px; font-family: 'Inter', sans-serif; transition: border-color 0.2s; text-decoration: none; display: inline-block; }
.btn-outline-white:hover { border-color: white; }

/* ARTICLE CARDS */
.article-card { border-radius: 4px; overflow: hidden; border: 1px solid var(--border); background: white; transition: transform 0.2s, box-shadow 0.2s; cursor: pointer; text-decoration: none; display: block; color: inherit; }
.article-card:hover { transform: translateY(-5px); box-shadow: 0 12px 32px rgba(201,83,106,0.12); }
.article-img { width: 100%; object-fit: cover; display: block; }
.article-img-main { height: 280px; }
.article-img-small { height: 180px; }
.article-body { padding: 1.5rem; }
.article-cat { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--rose); font-weight: 600; margin-bottom: 0.5rem; display: block; }
.article-card h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; line-height: 1.3; color: var(--ink); margin-bottom: 0.6rem; }
.article-card.main h3 { font-size: 1.6rem; }
.article-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; margin-bottom: 1rem; }
.article-meta { font-size: 0.75rem; color: var(--muted); }
.articles-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 2rem; margin-top: 3rem; }

/* TOPIC CARDS */
.topics-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3rem; }
.topic-card { background: white; border: 1px solid var(--border); border-radius: 4px; overflow: hidden; transition: transform 0.2s; text-decoration: none; display: block; color: inherit; }
.topic-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(201,83,106,0.1); }
.topic-card img { width: 100%; height: 160px; object-fit: cover; display: block; }
.topic-card-body { padding: 1.2rem; }
.topic-card-body h4 { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--ink); margin-bottom: 0.3rem; }
.topic-card-body p { font-size: 0.8rem; color: var(--muted); line-height: 1.5; }
.topic-count { font-size: 0.7rem; color: var(--rose); margin-top: 0.8rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; display: block; }

/* QUOTE */
.quote-break { background: var(--rose); color: white; text-align: center; padding: 5rem 2rem; }
.quote-break blockquote { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 3vw, 2.4rem); font-style: italic; max-width: 780px; margin: 0 auto 1.5rem; line-height: 1.4; }
.quote-break cite { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.7; font-style: normal; }

/* NEWSLETTER */
.newsletter { background: var(--ink); color: white; padding: 5rem 2rem; text-align: center; }
.newsletter h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 0.8rem; }
.newsletter p { font-size: 0.95rem; opacity: 0.6; margin-bottom: 2.5rem; font-weight: 300; }
.email-row { display: flex; justify-content: center; gap: 0; max-width: 480px; margin: 0 auto; }
.email-input { flex: 1; padding: 0.9rem 1.5rem; border: none; border-radius: 2px 0 0 2px; font-size: 0.9rem; outline: none; font-family: 'Inter', sans-serif; }
.btn-subscribe { background: var(--rose); color: white; border: none; padding: 0.9rem 1.8rem; font-size: 0.9rem; font-weight: 600; cursor: pointer; border-radius: 0 2px 2px 0; font-family: 'Inter', sans-serif; white-space: nowrap; transition: opacity 0.2s; }
.btn-subscribe:hover { opacity: 0.88; }
.newsletter-success { display: none; color: #a8f0c8; font-size: 1rem; margin-top: 1rem; }

/* FOOTER */
footer { background: #110b0e; color: rgba(255,255,255,0.4); padding: 2rem 3rem; display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; flex-wrap: wrap; gap: 1rem; }
.footer-logo { font-family: 'Playfair Display', serif; color: var(--rose); font-size: 1.1rem; }
footer a { color: rgba(255,255,255,0.4); text-decoration: none; }
footer a:hover { color: var(--rose); }

/* BREADCRUMB */
.breadcrumb { padding: 1rem 3rem; background: var(--white); border-bottom: 1px solid var(--border); font-size: 0.8rem; color: var(--muted); }
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--rose); }
.breadcrumb span { margin: 0 0.4rem; }

/* PAGE HERO (categories & articles) */
.page-hero { background: linear-gradient(135deg, #1A1118 0%, #2d1a24 100%); color: white; padding: 5rem 3rem; }
.page-hero-inner { max-width: 1160px; margin: 0 auto; }
.page-hero .hero-tag { display: inline-block; background: var(--rose); color: white; font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; padding: 0.35rem 0.9rem; border-radius: 2px; margin-bottom: 1.2rem; }
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1.1; margin-bottom: 1rem; }
.page-hero h1 em { font-style: italic; color: #f4a0b0; }
.page-hero p { font-size: 1rem; opacity: 0.75; max-width: 560px; font-weight: 300; line-height: 1.7; }

/* ARTICLE LAYOUT */
.article-layout { max-width: 1160px; margin: 0 auto; padding: 4rem 2rem; display: grid; grid-template-columns: 1fr 320px; gap: 4rem; align-items: start; }
.article-content h2 {
  font-family: 'Playfair Display', serif; font-size: 1.7rem; color: var(--ink);
  margin: 3rem 0 1rem; padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--blush);
  position: relative;
}
.article-content h2::before {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 40px; height: 2px; background: var(--rose);
}
.article-content h3 { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: var(--rose); margin: 2rem 0 0.7rem; font-style: italic; }
.article-content p { font-size: 1.05rem; color: #2e1e28; line-height: 1.85; margin-bottom: 1.3rem; }
.article-content ul, .article-content ol { padding-left: 1.5rem; margin-bottom: 1.4rem; }
.article-content li { font-size: 1.05rem; color: #2e1e28; line-height: 1.85; margin-bottom: 0.6rem; }
.article-content strong { color: var(--ink); font-weight: 700; }
.article-content a { color: var(--rose); text-decoration: underline; text-decoration-color: rgba(201,83,106,0.3); transition: text-decoration-color 0.2s; }
.article-content a:hover { text-decoration-color: var(--rose); }
.article-content .callout {
  background: var(--blush); border-left: 4px solid var(--rose);
  padding: 1.4rem 1.6rem; border-radius: 0 6px 6px 0; margin: 2rem 0;
  box-shadow: 4px 0 0 0 rgba(201,83,106,0.08);
}
.article-content .callout p { margin: 0; font-size: 0.97rem; color: var(--ink); }
.article-intro {
  font-size: 1.15rem !important; color: var(--muted) !important;
  line-height: 1.85 !important; margin-bottom: 2.5rem !important;
  padding-bottom: 2rem; border-bottom: 1px solid var(--border);
  font-weight: 300;
}
.pull-quote {
  border-top: 2px solid var(--rose); border-bottom: 2px solid var(--rose);
  padding: 1.8rem 2rem; margin: 2.5rem 0; text-align: center;
}
.pull-quote p {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 1.3rem !important; color: var(--ink) !important;
  line-height: 1.5 !important; margin: 0 !important;
}
.stat-highlight {
  background: var(--ink); color: white;
  padding: 1.4rem 1.6rem; border-radius: 4px; margin: 2rem 0;
  display: flex; align-items: flex-start; gap: 1rem;
}
.stat-highlight-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.stat-highlight p { margin: 0 !important; font-size: 0.95rem !important; color: rgba(255,255,255,0.8) !important; line-height: 1.65 !important; }
.article-author {
  display: flex; align-items: center; gap: 1.2rem;
  padding: 1.5rem; background: var(--cream);
  border: 1px solid var(--border); border-radius: 4px;
  margin-top: 2.5rem;
}
.author-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--rose); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.author-avatar svg { width: 28px; height: 28px; }
.author-name { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--ink); font-weight: 700; }
.author-bio { font-size: 0.83rem; color: var(--muted); margin-top: 3px; line-height: 1.5; }

/* SIDEBAR */
.sidebar { position: sticky; top: 90px; display: flex; flex-direction: column; gap: 1.5rem; }
.sidebar-card { background: white; border: 1px solid var(--border); border-radius: 4px; overflow: hidden; }
.sidebar-card-header { background: var(--ink); color: white; padding: 1rem 1.2rem; }
.sidebar-card-header h4 { font-family: 'Playfair Display', serif; font-size: 1rem; }
.sidebar-card-header p { font-size: 0.75rem; opacity: 0.6; margin-top: 0.2rem; }
.app-list { padding: 0.5rem 0; }
.app-item { display: flex; align-items: center; justify-content: space-between; padding: 0.9rem 1.2rem; border-bottom: 1px solid var(--border); text-decoration: none; transition: background 0.15s; }
.app-item:last-child { border-bottom: none; }
.app-item:hover { background: var(--cream); }
.app-item-left { display: flex; align-items: center; gap: 0.8rem; }
.app-icon { width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.app-name { font-weight: 600; font-size: 0.88rem; color: var(--ink); display: block; }
.app-desc { font-size: 0.75rem; color: var(--muted); display: block; }
.app-btn { background: var(--rose); color: white; font-size: 0.72rem; font-weight: 600; padding: 0.35rem 0.8rem; border-radius: 2px; white-space: nowrap; }
.sidebar-newsletter { padding: 1.2rem; background: white; }
.sidebar-newsletter p { font-size: 0.85rem; color: var(--muted); margin-bottom: 1rem; line-height: 1.6; }
.sidebar-newsletter input { width: 100%; padding: 0.7rem 1rem; border: 1px solid var(--border); border-radius: 2px; font-size: 0.85rem; font-family: 'Inter', sans-serif; margin-bottom: 0.6rem; outline: none; }
.sidebar-newsletter input:focus { border-color: var(--rose); }
.sidebar-newsletter button { width: 100%; background: var(--rose); color: white; border: none; padding: 0.75rem; font-size: 0.85rem; font-weight: 600; cursor: pointer; border-radius: 2px; font-family: 'Inter', sans-serif; transition: opacity 0.2s; }
.sidebar-newsletter button:hover { opacity: 0.88; }

/* RELATED ARTICLES */
.related-section { background: var(--white); border-top: 1px solid var(--border); }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; }

/* CATEGORY PAGE */
.category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.coming-soon { opacity: 0.5; pointer-events: none; }
.coming-soon-badge { background: var(--blush); color: var(--rose); font-size: 0.65rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.2rem 0.6rem; border-radius: 2px; margin-left: 0.5rem; }

/* MOBILE */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .articles-grid { grid-template-columns: 1fr; }
  .topics-grid { grid-template-columns: 1fr 1fr; }
  .section-wrap { padding: 3.5rem 1.5rem; }
  .article-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .related-grid { grid-template-columns: 1fr 1fr; }
  .category-grid { grid-template-columns: 1fr 1fr; }
  .page-hero { padding: 3.5rem 1.5rem; }
  .breadcrumb { padding: 1rem 1.5rem; }
  footer { flex-direction: column; text-align: center; padding: 2rem 1.5rem; }
}
@media (max-width: 500px) {
  .topics-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .category-grid { grid-template-columns: 1fr; }
  .email-row { flex-direction: column; }
  .email-input { border-radius: 2px; }
  .btn-subscribe { border-radius: 2px; }
}
