/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #FCFAF8;
  color: #1A1A1A;
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ─── Utility ─── */
.container { max-width: 800px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.gold { color: #B8922C; }

/* ─── Top Accent Bar ─── */
.top-accent {
  position: fixed; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, #D4AF37, #F1D279, #CFA02E);
  z-index: 200;
}

/* ─── Navbar ─── */
.navbar {
  position: fixed; top: 4px; left: 0; right: 0; z-index: 100;
  background: rgba(252, 250, 248, 0.88); backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  padding: 0 24px; height: 64px;
  display: flex; align-items: center; justify-content: center;
}
.navbar-inner {
  max-width: 1100px; width: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
.navbar-logo {
  display: flex; align-items: center; gap: 12px;
  font-size: 22px; font-weight: 900; letter-spacing: -0.5px;
  color: #1A1A1A;
}
.navbar-logo img {
  width: 48px; height: 48px; border-radius: 10px;
}
.navbar-links {
  display: flex; align-items: center; gap: 24px;
}
.navbar-links a {
  font-size: 14px; font-weight: 600; color: #78716C;
  transition: color 0.2s;
}
.navbar-links a:hover { color: #D4AF37; }
.navbar-cta {
  background: linear-gradient(135deg, #D4AF37, #B8941F);
  color: #FFF; font-weight: 800; font-size: 13px;
  padding: 10px 24px; border-radius: 12px; border: none; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}
.navbar-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3); }

/* ─── Page Header ─── */
.page-header {
  padding: 120px 24px 48px;
  text-align: center;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(212, 175, 55, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(237, 245, 241, 0.5) 0%, transparent 50%);
}
.page-header h1 {
  font-size: clamp(28px, 4vw, 42px); font-weight: 900;
  line-height: 1.2; letter-spacing: -1px; margin-bottom: 12px;
  color: #1A1A1A;
}
.page-header p {
  font-size: 16px; color: #78716C; max-width: 540px; margin: 0 auto;
}

/* ─── Content Sections ─── */
.content-section {
  padding: 48px 24px 80px;
}
.content-section h2 {
  font-size: 24px; font-weight: 800; letter-spacing: -0.5px;
  color: #1A1A1A; margin: 32px 0 12px; padding-bottom: 8px;
  border-bottom: 2px solid rgba(212, 175, 55, 0.15);
}
.content-section h3 {
  font-size: 18px; font-weight: 700; color: #1A1A1A;
  margin: 24px 0 8px;
}
.content-section p {
  font-size: 15px; color: #44403C; line-height: 1.8; margin-bottom: 16px;
}
.content-section ul, .content-section ol {
  padding-left: 24px; margin-bottom: 16px;
}
.content-section li {
  font-size: 15px; color: #44403C; line-height: 1.8; margin-bottom: 8px;
}
.content-section strong { color: #1A1A1A; }

/* ─── Blog Card Grid ─── */
.blog-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px; margin-top: 32px;
}
.blog-card {
  background: #FFF; border: 1px solid #EAE5D9;
  border-radius: 20px; padding: 32px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}
.blog-card:hover {
  transform: translateY(-4px); border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 12px 32px rgba(212, 175, 55, 0.08);
}
.blog-card-tag {
  display: inline-block; font-size: 11px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 2px;
  color: #CFA02E; margin-bottom: 12px;
}
.blog-card h3 {
  font-size: 18px; font-weight: 800; margin-bottom: 8px;
  letter-spacing: -0.3px; color: #1A1A1A; line-height: 1.3;
}
.blog-card p {
  font-size: 14px; color: #78716C; line-height: 1.6; margin-bottom: 16px;
}
.blog-card-link {
  font-size: 13px; font-weight: 700; color: #D4AF37;
  display: inline-flex; align-items: center; gap: 4px;
  transition: gap 0.2s;
}
.blog-card-link:hover { gap: 8px; }

/* ─── FAQ Accordion ─── */
.faq-list { margin-top: 32px; }
.faq-item {
  border-bottom: 1px solid #EAE5D9;
}
.faq-question {
  width: 100%; background: none; border: none; cursor: pointer;
  padding: 20px 0; display: flex; justify-content: space-between;
  align-items: center; text-align: left;
  font-size: 16px; font-weight: 700; color: #1A1A1A;
  font-family: inherit;
}
.faq-question:hover { color: #B8922C; }
.faq-arrow {
  transition: transform 0.3s; font-size: 18px; color: #D4AF37;
  flex-shrink: 0; margin-left: 16px;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 0;
}
.faq-item.open .faq-answer {
  max-height: 500px; padding: 0 0 20px;
}
.faq-answer p {
  font-size: 15px; color: #57534E; line-height: 1.7;
}

/* ─── About Card ─── */
.about-card {
  background: #FFF; border: 1px solid #EAE5D9;
  border-radius: 24px; padding: 48px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.04);
  margin-bottom: 32px;
}
.about-card h2 { border-bottom: none; margin-top: 0; }

/* ─── Contact Card ─── */
.contact-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px; margin-top: 32px;
}
.contact-card {
  background: #FFF; border: 1px solid #EAE5D9; border-radius: 20px;
  padding: 32px; text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.contact-card:hover {
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.08);
}
.contact-icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: rgba(212, 175, 55, 0.08); border: 1px solid rgba(212, 175, 55, 0.12);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.contact-card h3 {
  font-size: 16px; font-weight: 800; margin-bottom: 4px; color: #1A1A1A;
}
.contact-card p {
  font-size: 14px; color: #78716C;
}
.contact-card a {
  color: #B8922C; font-weight: 600; text-decoration: underline;
  text-underline-offset: 2px;
}

/* ─── Article Meta ─── */
.article-meta {
  display: flex; align-items: center; gap: 16px;
  font-size: 13px; color: #78716C; margin-bottom: 32px;
  padding-bottom: 16px; border-bottom: 1px solid #EAE5D9;
}
.article-meta .dot { width: 4px; height: 4px; background: #D4AF37; border-radius: 50%; }

/* ─── Footer ─── */
footer {
  padding: 40px 24px;
  border-top: 1px solid #EAE5D9;
  background: #F8F5F0;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.footer-brand { font-size: 14px; font-weight: 800; color: #1A1A1A; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a {
  font-size: 13px; color: #78716C; font-weight: 600;
  transition: color 0.2s;
}
.footer-links a:hover { color: #D4AF37; }
.footer-copy { font-size: 12px; color: #A8A29E; }
.footer-disclaimer {
  max-width: 1100px; margin: 24px auto 0; padding-top: 20px;
  border-top: 1px solid #EAE5D9;
  font-size: 11px; color: #A8A29E; text-align: center; line-height: 1.6;
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .navbar { padding: 0 16px; height: 56px; }
  .navbar-logo { gap: 8px; font-size: 18px; }
  .navbar-logo img { width: 36px; height: 36px; border-radius: 8px; }
  .navbar-links { display: none; }
  .navbar-cta { font-size: 12px; padding: 8px 16px; border-radius: 10px; }

  .page-header { padding: 88px 20px 32px; }
  .page-header h1 { font-size: 28px; }
  .content-section { padding: 32px 20px 56px; }

  .blog-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }

  .about-card { padding: 28px; }

  .footer-inner { flex-direction: column; text-align: center; gap: 12px; }
  .footer-links { justify-content: center; gap: 16px; }
  .footer-disclaimer { font-size: 10px; padding: 16px 20px 0; }
}

/* ─── Cookie Consent Banner ─── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 300;
  background: rgba(26, 26, 26, 0.95); backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 20px 24px; display: none;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: 0 -8px 32px rgba(0,0,0,0.15);
}
.cookie-banner.show { display: block; }
.cookie-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
}
.cookie-text { flex: 1; min-width: 280px; }
.cookie-text p {
  font-size: 13px; color: #D6D3D1; line-height: 1.6; margin: 0;
}
.cookie-text a { color: #D4AF37; text-decoration: underline; text-underline-offset: 2px; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn {
  padding: 10px 20px; border-radius: 10px; font-size: 13px;
  font-weight: 700; cursor: pointer; border: none;
  font-family: inherit; transition: transform 0.2s, box-shadow 0.2s;
}
.cookie-btn-accept {
  background: linear-gradient(135deg, #D4AF37, #B8941F);
  color: #FFF; box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}
.cookie-btn-accept:hover { transform: translateY(-1px); }
.cookie-btn-reject {
  background: rgba(255,255,255,0.1); color: #D6D3D1;
  border: 1px solid rgba(255,255,255,0.15);
}
.cookie-btn-reject:hover { background: rgba(255,255,255,0.15); }

/* ─── Breadcrumb ─── */
.breadcrumb {
  max-width: 800px; margin: 0 auto; padding: 100px 24px 0;
  font-size: 13px; color: #A8A29E;
}
.breadcrumb a { color: #78716C; transition: color 0.2s; }
.breadcrumb a:hover { color: #D4AF37; }
.breadcrumb span { margin: 0 6px; }

/* ─── Author Card ─── */
.author-card {
  display: flex; align-items: center; gap: 20px;
  margin-top: 48px; padding: 28px; background: #FFF;
  border: 1px solid #EAE5D9; border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}
.author-avatar {
  width: 56px; height: 56px; border-radius: 16px;
  background: linear-gradient(135deg, rgba(212,175,55,0.15), rgba(212,175,55,0.05));
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; flex-shrink: 0;
}
.author-info h4 { font-size: 15px; font-weight: 800; color: #1A1A1A; margin-bottom: 2px; }
.author-info p { font-size: 13px; color: #78716C; line-height: 1.5; margin: 0; }

/* ─── Related Posts ─── */
.related-posts { margin-top: 56px; padding-top: 32px; border-top: 2px solid rgba(212,175,55,0.15); }
.related-posts h3 {
  font-size: 18px; font-weight: 800; color: #1A1A1A;
  margin-bottom: 20px; letter-spacing: -0.3px;
}
.related-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}
.related-card {
  background: #FFF; border: 1px solid #EAE5D9; border-radius: 16px;
  padding: 24px; transition: transform 0.3s, border-color 0.3s;
}
.related-card:hover { transform: translateY(-2px); border-color: rgba(212,175,55,0.3); }
.related-card h4 { font-size: 14px; font-weight: 700; color: #1A1A1A; margin-bottom: 6px; line-height: 1.4; }
.related-card p { font-size: 12px; color: #78716C; margin: 0; }

/* ─── Blog Category Filter ─── */
.blog-filters {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px;
}
.blog-filter-btn {
  padding: 8px 18px; border-radius: 100px; font-size: 13px;
  font-weight: 700; cursor: pointer; border: 1.5px solid #EAE5D9;
  background: #FFF; color: #78716C; font-family: inherit;
  transition: all 0.2s;
}
.blog-filter-btn:hover { border-color: rgba(212,175,55,0.3); color: #B8922C; }
.blog-filter-btn.active {
  background: linear-gradient(135deg, #D4AF37, #B8941F);
  color: #FFF; border-color: transparent;
}

@media (max-width: 768px) {
  .cookie-inner { flex-direction: column; text-align: center; }
  .cookie-actions { width: 100%; justify-content: center; }
  .breadcrumb { padding: 80px 20px 0; font-size: 12px; }
  .author-card { flex-direction: column; text-align: center; padding: 24px; }
  .related-grid { grid-template-columns: 1fr; }
}

/* ─── Animations ─── */
.fade-in {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
