@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Source+Serif+4:ital,wght@0,300;0,400;0,600;1,300;1,400&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --burgundy: #7B2D42;
  --burgundy-dark: #5C1F30;
  --burgundy-light: #A84560;
  --cream: #FAF7F2;
  --cream-dark: #F0EBE1;
  --warm-gray: #8A8178;
  --text-dark: #1E1A18;
  --text-mid: #4A4340;
  --text-light: #7A7370;
  --gold: #C9A84C;
  --gold-light: #E8CC7A;
  --white: #FFFFFF;
  --border: #E2DAD0;
  --shadow: rgba(123, 45, 66, 0.12);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Source Serif 4', Georgia, serif;
  background: var(--cream);
  color: var(--text-dark);
  font-size: 17px;
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { color: var(--burgundy); text-decoration: none; }
a:hover { color: var(--burgundy-light); }

/* ===== HEADER ===== */
header {
  background: var(--white);
  border-bottom: 3px solid var(--burgundy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px var(--shadow);
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.5px;
}
.logo span { color: var(--burgundy); }
.logo-tag {
  font-family: 'Source Serif 4', serif;
  font-size: 11px;
  font-weight: 300;
  color: var(--warm-gray);
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-top: -4px;
}
nav { display: flex; gap: 28px; align-items: center; }
nav a {
  font-family: 'Source Serif 4', serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-mid);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color 0.2s;
}
nav a:hover { color: var(--burgundy); }

/* ===== HERO BANNER ===== */
.hero {
  background: linear-gradient(135deg, var(--burgundy-dark) 0%, var(--burgundy) 60%, var(--burgundy-light) 100%);
  padding: 64px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner { max-width: 700px; margin: 0 auto; position: relative; }
.hero-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid var(--gold);
  padding: 5px 16px;
  border-radius: 2px;
  margin-bottom: 20px;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.82);
  font-weight: 300;
  max-width: 560px;
  margin: 0 auto;
}

/* ===== SECTION LABEL ===== */
.section-label {
  font-family: 'Source Serif 4', serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--burgundy);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ===== MAIN LAYOUT ===== */
.main-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 52px 24px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 52px;
}
@media (max-width: 768px) {
  .main-content { grid-template-columns: 1fr; gap: 36px; }
  nav { display: none; }
}

/* ===== ARTICLE CARDS ===== */
.articles-grid { display: flex; flex-direction: column; gap: 0; }
.article-card {
  display: grid;
  grid-template-columns: 1fr;
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
  transition: background 0.2s;
}
.article-card:first-child { padding-top: 0; }
.article-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.article-category {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--burgundy);
}
.article-date {
  font-size: 13px;
  color: var(--text-light);
}
.article-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.35;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.article-card h2 a:hover { color: var(--burgundy); }
.article-card p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 14px;
}
.read-more {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--burgundy);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.read-more::after { content: '→'; transition: transform 0.2s; }
.read-more:hover::after { transform: translateX(4px); }

/* ===== FEATURED CARD ===== */
.article-card.featured {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 28px;
  margin-bottom: 8px;
  box-shadow: 0 2px 16px var(--shadow);
}
.article-card.featured h2 { font-size: 26px; }
.featured-badge {
  display: inline-block;
  background: var(--burgundy);
  color: white;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: 12px;
}

/* ===== SIDEBAR ===== */
.sidebar { display: flex; flex-direction: column; gap: 32px; }
.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 24px;
  box-shadow: 0 2px 8px var(--shadow);
}
.sidebar-widget h3 {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--burgundy);
}
.sidebar-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.sidebar-links li { border-bottom: 1px solid var(--cream-dark); padding-bottom: 10px; }
.sidebar-links li:last-child { border-bottom: none; padding-bottom: 0; }
.sidebar-links a {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.4;
  display: block;
  transition: color 0.2s;
}
.sidebar-links a:hover { color: var(--burgundy); }
.sidebar-links .cat {
  font-size: 11px;
  color: var(--burgundy);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 3px;
}

.about-widget p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.65;
}
.about-widget .divider {
  height: 1px;
  background: var(--border);
  margin: 14px 0;
}
.about-widget .stat {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-light);
}
.about-widget .stat strong { color: var(--text-dark); }

/* ===== ARTICLE PAGE ===== */
.article-page { max-width: 1100px; margin: 0 auto; padding: 52px 24px; display: grid; grid-template-columns: 1fr 300px; gap: 52px; }
@media (max-width: 768px) { .article-page { grid-template-columns: 1fr; } }
.article-header { margin-bottom: 32px; }
.article-header .article-meta { margin-bottom: 16px; }
.article-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 16px;
}
.article-header .subtitle {
  font-size: 19px;
  color: var(--text-mid);
  font-weight: 300;
  font-style: italic;
  border-left: 3px solid var(--burgundy);
  padding-left: 16px;
  margin-bottom: 20px;
}
.author-line {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-light);
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}
.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--burgundy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}
.author-name { font-weight: 600; color: var(--text-dark); font-size: 14px; }
.article-body { font-size: 17px; line-height: 1.8; color: var(--text-dark); }
.article-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 36px 0 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.article-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--burgundy-dark);
  margin: 28px 0 10px;
}
.article-body p { margin-bottom: 20px; }
.article-body ul, .article-body ol { margin: 0 0 20px 24px; }
.article-body li { margin-bottom: 8px; }
.article-body blockquote {
  background: var(--cream-dark);
  border-left: 4px solid var(--burgundy);
  padding: 20px 24px;
  margin: 28px 0;
  border-radius: 0 4px 4px 0;
  font-style: italic;
  color: var(--text-mid);
}
.article-body strong { color: var(--text-dark); font-weight: 600; }
.highlight-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--burgundy);
  padding: 20px 24px;
  margin: 28px 0;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 2px 8px var(--shadow);
}
.highlight-box h4 {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--burgundy);
  margin-bottom: 10px;
}
.highlight-box ul { margin: 0 0 0 18px; }
.highlight-box li { font-size: 15px; color: var(--text-mid); margin-bottom: 6px; }

/* ===== INNER PAGES ===== */
.page-hero {
  background: var(--burgundy-dark);
  padding: 44px 24px;
  text-align: center;
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 42px);
  color: var(--white);
  font-weight: 700;
}
.page-hero p { color: rgba(255,255,255,0.75); margin-top: 10px; font-size: 17px; }
.page-content { max-width: 800px; margin: 52px auto; padding: 0 24px; }
.page-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 32px 0 12px;
}
.page-content p { margin-bottom: 18px; color: var(--text-mid); font-size: 16px; line-height: 1.75; }

/* ===== TOPICS PAGE ===== */
.topics-grid {
  max-width: 1100px;
  margin: 52px auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.topic-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 28px;
  box-shadow: 0 2px 8px var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.topic-card:hover { transform: translateY(-3px); box-shadow: 0 6px 20px var(--shadow); }
.topic-icon {
  font-size: 32px;
  margin-bottom: 14px;
}
.topic-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.topic-card p { font-size: 14px; color: var(--text-mid); line-height: 1.6; margin-bottom: 14px; }
.topic-links { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.topic-links a { font-size: 13px; color: var(--burgundy); }
.topic-links a:hover { text-decoration: underline; }

/* ===== CONTACT PAGE ===== */
.contact-grid {
  max-width: 1100px;
  margin: 52px auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
}
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-dark);
}
.contact-info p { font-size: 15px; color: var(--text-mid); margin-bottom: 24px; line-height: 1.7; }
.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-item { display: flex; flex-direction: column; gap: 3px; }
.contact-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--burgundy);
}
.contact-value { font-size: 15px; color: var(--text-mid); }
.contact-form-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 32px;
  box-shadow: 0 2px 12px var(--shadow);
}
.contact-form-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-dark);
}
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text-mid); margin-bottom: 6px; letter-spacing: 0.5px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 3px;
  font-family: 'Source Serif 4', serif;
  font-size: 15px;
  color: var(--text-dark);
  background: var(--cream);
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--burgundy);
}
.form-group textarea { height: 110px; resize: vertical; }
.btn-submit {
  background: var(--burgundy);
  color: white;
  border: none;
  padding: 12px 28px;
  font-family: 'Source Serif 4', serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 3px;
  transition: background 0.2s;
}
.btn-submit:hover { background: var(--burgundy-dark); }

/* ===== ABOUT PAGE ===== */
.about-hero-content {
  max-width: 800px;
  margin: 52px auto;
  padding: 0 24px;
}
.about-hero-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.about-hero-content p { font-size: 16px; color: var(--text-mid); line-height: 1.75; margin-bottom: 18px; }
.team-grid {
  max-width: 1100px;
  margin: 0 auto 52px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 2px 8px var(--shadow);
}
.team-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--burgundy), var(--burgundy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  margin: 0 auto 14px;
}
.team-card h4 { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.team-card .title { font-size: 13px; color: var(--burgundy); font-weight: 600; margin-bottom: 8px; }
.team-card p { font-size: 13px; color: var(--text-light); line-height: 1.6; }

/* ===== FOOTER ===== */
footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.7);
  padding: 52px 24px 24px;
  margin-top: 52px;
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 28px;
}
@media (max-width: 768px) { .footer-top { grid-template-columns: 1fr 1fr; } }
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  display: block;
  margin-bottom: 12px;
}
.footer-logo span { color: var(--gold); }
.footer-desc { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.55); max-width: 260px; }
.footer-col h4 {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a { font-size: 13px; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-col ul a:hover { color: var(--gold); }
.footer-address {
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 18px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}
.footer-legal-links { display: flex; gap: 20px; }
.footer-legal-links a { font-size: 12px; color: rgba(255,255,255,0.35); }
.footer-legal-links a:hover { color: rgba(255,255,255,0.7); }

/* ===== COOKIE BANNER ===== */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--text-dark);
  border-top: 3px solid var(--burgundy);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}
#cookie-banner p { font-size: 13px; color: rgba(255,255,255,0.75); max-width: 700px; }
#cookie-banner a { color: var(--gold); }
#cookie-accept {
  background: var(--burgundy);
  color: white;
  border: none;
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 3px;
  white-space: nowrap;
  transition: background 0.2s;
}
#cookie-accept:hover { background: var(--burgundy-light); }

/* ===== LEGAL PAGES ===== */
.legal-content { max-width: 800px; margin: 52px auto; padding: 0 24px 52px; }
.legal-content h2 { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--text-dark); margin: 32px 0 12px; }
.legal-content h3 { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 600; color: var(--burgundy-dark); margin: 24px 0 10px; }
.legal-content p { font-size: 15px; color: var(--text-mid); line-height: 1.75; margin-bottom: 16px; }
.legal-content ul { margin: 0 0 16px 24px; }
.legal-content li { font-size: 15px; color: var(--text-mid); margin-bottom: 8px; }
