/*
Theme Name: Hornissenschutz Braunschweig
Description: Custom theme for hornissenschutz-bs.de
Version: 1.0
*/

/* ── normalize.css v8.0.1 ── */
html { line-height: 1.15; -webkit-text-size-adjust: 100%; }
body { margin: 0; }
main { display: block; }
h1 { font-size: 2em; margin: 0.67em 0; }
hr { box-sizing: content-box; height: 0; overflow: visible; }
pre { font-family: monospace, monospace; font-size: 1em; }
a { background-color: transparent; }
abbr[title] { border-bottom: none; text-decoration: underline; text-decoration: underline dotted; }
b, strong { font-weight: bolder; }
code, kbd, samp { font-family: monospace, monospace; font-size: 1em; }
small { font-size: 80%; }
sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; }
sub { bottom: -0.25em; }
sup { top: -0.5em; }
img { border-style: none; }
button, input, optgroup, select, textarea { font-family: inherit; font-size: 100%; line-height: 1.15; margin: 0; }
button, input { overflow: visible; }
button, select { text-rendering: auto; }
button, [type="button"], [type="reset"], [type="submit"] { -webkit-appearance: button; }
button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner { border-style: none; padding: 0; }
fieldset { padding: 0.35em 0.75em 0.625em; }
legend { box-sizing: border-box; color: inherit; display: table; max-width: 100%; padding: 0; white-space: normal; }
progress { vertical-align: baseline; }
textarea { overflow: auto; }
[type="checkbox"], [type="radio"] { box-sizing: border-box; padding: 0; }
[type="number"]::-webkit-inner-spin-button, [type="number"]::-webkit-outer-spin-button { height: auto; }
[type="search"] { -webkit-appearance: textfield; outline-offset: -2px; }
[type="search"]::-webkit-search-decoration { -webkit-appearance: none; }
::-webkit-file-upload-button { -webkit-appearance: button; font: inherit; }
details { display: block; }
summary { display: list-item; }
template { display: none; }
[hidden] { display: none; }

/* ── base.css ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; background-color: #f5f0e8; color: #1a2e1a; line-height: 1.6; overflow-x: hidden; }
::selection { background-color: #e8a020; color: #1a2e1a; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
body .wrapper { width: 100%; overflow: hidden; }

/* ── nav.css ── */
body .wrapper header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; padding: 0 24px; transition: background 0.4s ease, box-shadow 0.4s ease; }
body .wrapper header.scrolled { background-color: rgba(26, 46, 26, 0.97); box-shadow: 0 2px 24px rgba(0, 0, 0, 0.3); }
body .wrapper header .header-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 72px; }
body .wrapper header .logo { display: flex; align-items: center; gap: 12px; }
body .wrapper header .logo .logo-mark { width: 40px; height: 40px; flex-shrink: 0; }
body .wrapper header .logo .logo-text { display: flex; flex-direction: column; }
body .wrapper header .logo .logo-text .logo-title { font-size: 15px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: #f5f0e8; line-height: 1; }
body .wrapper header .logo .logo-text .logo-sub { font-size: 10px; font-weight: 400; letter-spacing: 0.15em; text-transform: uppercase; color: #e8a020; line-height: 1; margin-top: 3px; }
body .wrapper header nav { display: none; }
body .wrapper header nav ul { display: flex; align-items: center; gap: 32px; }
body .wrapper header nav ul li a { font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(245, 240, 232, 0.8); transition: color 0.2s ease; }
body .wrapper header nav ul li a:hover { color: #e8a020; }
body .wrapper header nav ul li a.active { color: #e8a020; }
body .wrapper header nav ul li.current-menu-item a { color: #e8a020; }
body .wrapper header nav ul li.current-menu-parent a { color: #e8a020; }
body .wrapper header .nav-toggle { width: 32px; height: 32px; display: flex; flex-direction: column; justify-content: center; gap: 6px; cursor: pointer; }
body .wrapper header .nav-toggle span { display: block; width: 100%; height: 2px; background-color: #f5f0e8; transition: transform 0.3s ease, opacity 0.3s ease; }
body .wrapper header .nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
body .wrapper header .nav-toggle.open span:nth-child(2) { opacity: 0; }
body .wrapper header .nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
body .wrapper .mobile-menu { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background-color: #1a2e1a; z-index: 999; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 40px; transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1); }
body .wrapper .mobile-menu.open { transform: translateX(0); }
body .wrapper .mobile-menu ul { display: flex; flex-direction: column; align-items: center; gap: 32px; }
body .wrapper .mobile-menu ul li a { font-size: 24px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: #f5f0e8; transition: color 0.2s ease; }
body .wrapper .mobile-menu ul li a:hover { color: #e8a020; }
body .wrapper .mobile-menu ul li.current-menu-item a { color: #e8a020; }
@media (min-width: 1024px) {
  body .wrapper header { padding: 0 48px; }
  body .wrapper header nav { display: block; }
  body .wrapper header .nav-toggle { display: none; }
}

/* ── hero.css ── */
body .wrapper .hero { position: relative; min-height: 100vh; background-color: #1a2e1a; display: flex; align-items: center; overflow: hidden; }
body .wrapper .hero .hero-bg { position: absolute; inset: 0; z-index: 0; }
body .wrapper .hero .hero-bg .hex-grid { position: absolute; inset: 0; opacity: 0.07; }
body .wrapper .hero .hero-bg .gradient-overlay { position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 50%, rgba(232, 160, 32, 0.12) 0%, transparent 60%), radial-gradient(ellipse at 10% 80%, rgba(45, 74, 45, 0.8) 0%, transparent 50%); }
body .wrapper .hero .hero-bg .noise { position: absolute; inset: 0; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E"); opacity: 0.4; mix-blend-mode: overlay; }
body .wrapper .hero .hero-content { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; padding: 120px 24px 80px; width: 100%; }
body .wrapper .hero .hero-content .hero-label { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: #e8a020; border: 1px solid rgba(232, 160, 32, 0.4); padding: 6px 16px; margin-bottom: 32px; opacity: 0; animation: fadeSlideUp 0.6s ease 0.2s forwards; }
body .wrapper .hero .hero-content .hero-heading { font-size: 48px; font-weight: 900; line-height: 1.05; letter-spacing: -0.02em; color: #f5f0e8; margin-bottom: 24px; max-width: 700px; opacity: 0; animation: fadeSlideUp 0.6s ease 0.4s forwards; }
body .wrapper .hero .hero-content .hero-heading em { font-style: normal; color: #e8a020; display: block; }
body .wrapper .hero .hero-content .hero-text { font-size: 18px; font-weight: 400; line-height: 1.7; color: rgba(245, 240, 232, 0.72); max-width: 520px; margin-bottom: 48px; opacity: 0; animation: fadeSlideUp 0.6s ease 0.6s forwards; }
body .wrapper .hero .hero-content .hero-actions { display: flex; flex-wrap: wrap; gap: 16px; opacity: 0; animation: fadeSlideUp 0.6s ease 0.8s forwards; }
body .wrapper .hero .hero-content .hero-actions .btn-primary { display: inline-block; padding: 16px 36px; background-color: #e8a020; color: #1a2e1a; font-size: 13px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; transition: background 0.25s ease, transform 0.2s ease; }
body .wrapper .hero .hero-content .hero-actions .btn-primary:hover { background-color: #f5c842; transform: translateY(-2px); }
body .wrapper .hero .hero-content .hero-actions .btn-ghost { display: inline-block; padding: 15px 36px; border: 1px solid rgba(245, 240, 232, 0.3); color: rgba(245, 240, 232, 0.8); font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; transition: border-color 0.25s ease, color 0.25s ease; }
body .wrapper .hero .hero-content .hero-actions .btn-ghost:hover { border-color: #f5f0e8; color: #f5f0e8; }
body .wrapper .hero .hero-visual { position: absolute; right: 0; top: 0; width: 50%; height: 100%; z-index: 0; opacity: 0; animation: heroImageReveal 1.2s ease 0.3s forwards; }
body .wrapper .hero .hero-visual .hex-insect { position: absolute; right: -60px; top: 50%; transform: translateY(-50%); width: 520px; height: 520px; }
body .wrapper .hero .hero-stats { position: absolute; bottom: 48px; left: 24px; right: 24px; z-index: 1; display: flex; gap: 40px; opacity: 0; animation: fadeSlideUp 0.6s ease 1s forwards; }
body .wrapper .hero .hero-stats .stat { display: flex; flex-direction: column; }
body .wrapper .hero .hero-stats .stat .stat-num { font-size: 32px; font-weight: 900; color: #e8a020; line-height: 1; }
body .wrapper .hero .hero-stats .stat .stat-label { font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(245, 240, 232, 0.5); margin-top: 4px; }
@keyframes fadeSlideUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes heroImageReveal { from { opacity: 0; } to { opacity: 1; } }
@media (min-width: 768px) {
  body .wrapper .hero .hero-content .hero-heading { font-size: 64px; }
  body .wrapper .hero .hero-stats { left: 48px; right: 48px; }
}
@media (min-width: 1024px) {
  body .wrapper .hero .hero-content { padding: 140px 48px 120px; }
  body .wrapper .hero .hero-content .hero-heading { font-size: 80px; }
  body .wrapper .hero .hero-visual { display: block; }
  body .wrapper .hero .hero-stats { left: 48px; }
}

/* ── content.css ── */
body .wrapper .ticker-bar { background-color: #e8a020; padding: 10px 0; overflow: hidden; }
body .wrapper .ticker-bar .ticker-track { display: flex; gap: 0; animation: tickerScroll 30s linear infinite; white-space: nowrap; }
body .wrapper .ticker-bar .ticker-track .ticker-item { font-size: 11px; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; color: #1a2e1a; padding: 0 32px; }
body .wrapper .ticker-bar .ticker-track .ticker-sep { font-size: 11px; font-weight: 400; color: rgba(26, 46, 26, 0.4); padding: 0; }
@keyframes tickerScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
body .wrapper .intro-section { padding: 80px 24px; background-color: #f5f0e8; }
body .wrapper .intro-section .intro-inner { max-width: 1200px; margin: 0 auto; display: grid; gap: 48px; }
body .wrapper .intro-section .intro-text .section-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: #e8a020; margin-bottom: 16px; }
body .wrapper .intro-section .intro-text .section-title { font-size: 36px; font-weight: 900; line-height: 1.1; letter-spacing: -0.02em; color: #1a2e1a; margin-bottom: 20px; }
body .wrapper .intro-section .intro-text .section-body { font-size: 17px; line-height: 1.75; color: #3d4a3d; max-width: 560px; }
body .wrapper .intro-section .intro-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
body .wrapper .intro-section .intro-facts .fact-card { background-color: #1a2e1a; padding: 28px; position: relative; overflow: hidden; }
body .wrapper .intro-section .intro-facts .fact-card::before { content: ""; position: absolute; top: -20px; right: -20px; width: 80px; height: 80px; background-color: rgba(232, 160, 32, 0.1); clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%); }
body .wrapper .intro-section .intro-facts .fact-card .fact-num { font-size: 40px; font-weight: 900; color: #e8a020; line-height: 1; }
body .wrapper .intro-section .intro-facts .fact-card .fact-label { font-size: 13px; font-weight: 500; color: rgba(245, 240, 232, 0.7); margin-top: 8px; line-height: 1.4; }
body .wrapper .topics-section { padding: 80px 24px; background-color: #2d4a2d; }
body .wrapper .topics-section .topics-inner { max-width: 1200px; margin: 0 auto; }
body .wrapper .topics-section .topics-header { margin-bottom: 56px; }
body .wrapper .topics-section .topics-header .section-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: #e8a020; margin-bottom: 12px; }
body .wrapper .topics-section .topics-header .section-title { font-size: 36px; font-weight: 900; line-height: 1.1; letter-spacing: -0.02em; color: #f5f0e8; }
body .wrapper .topics-section .topics-grid { display: grid; gap: 24px; }
body .wrapper .topics-section .topics-grid .topic-card { background-color: rgba(245, 240, 232, 0.04); border: 1px solid rgba(245, 240, 232, 0.1); padding: 40px 32px; position: relative; overflow: hidden; transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s ease; cursor: pointer; }
body .wrapper .topics-section .topics-grid .topic-card:hover { background-color: rgba(232, 160, 32, 0.08); border-color: rgba(232, 160, 32, 0.4); transform: translateY(-4px); }
body .wrapper .topics-section .topics-grid .topic-card .card-icon { width: 56px; height: 56px; margin-bottom: 24px; }
body .wrapper .topics-section .topics-grid .topic-card .card-number { position: absolute; top: 28px; right: 28px; font-size: 64px; font-weight: 900; color: rgba(245, 240, 232, 0.05); line-height: 1; }
body .wrapper .topics-section .topics-grid .topic-card .card-title { font-size: 26px; font-weight: 800; color: #f5f0e8; letter-spacing: -0.01em; margin-bottom: 12px; }
body .wrapper .topics-section .topics-grid .topic-card .card-text { font-size: 15px; line-height: 1.65; color: rgba(245, 240, 232, 0.62); margin-bottom: 28px; }
body .wrapper .topics-section .topics-grid .topic-card .card-link { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: #f0a820; transition: gap 0.2s ease; }
body .wrapper .topics-section .topics-grid .topic-card:hover .card-link { gap: 14px; }
body .wrapper .topics-section .topics-grid .topic-card .card-link svg { width: 16px; height: 16px; flex-shrink: 0; }
body .wrapper .featured-section { padding: 80px 24px; background-color: #f5f0e8; }
body .wrapper .featured-section .featured-inner { max-width: 1200px; margin: 0 auto; }
body .wrapper .featured-section .featured-inner .section-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: #e8a020; margin-bottom: 12px; }
body .wrapper .featured-section .featured-inner .section-title { font-size: 32px; font-weight: 900; line-height: 1.1; letter-spacing: -0.02em; color: #1a2e1a; margin-bottom: 48px; }
body .wrapper .featured-section .featured-grid { display: grid; gap: 24px; }
body .wrapper .featured-section .featured-grid .feat-card { background-color: #1a2e1a; overflow: hidden; transition: transform 0.3s ease; }
body .wrapper .featured-section .featured-grid .feat-card:hover { transform: translateY(-4px); }
body .wrapper .featured-section .featured-grid .feat-card .feat-img { width: 100%; height: 220px; background-color: #2d4a2d; position: relative; overflow: hidden; }
body .wrapper .featured-section .featured-grid .feat-card .feat-img img { width: 100%; height: 100%; object-fit: cover; }
body .wrapper .featured-section .featured-grid .feat-card .feat-img svg { position: absolute; inset: 0; width: 100%; height: 100%; }
body .wrapper .featured-section .featured-grid .feat-card .feat-body { padding: 28px; }
body .wrapper .featured-section .featured-grid .feat-card .feat-tag { font-size: 10px; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; color: #e8a020; margin-bottom: 10px; }
body .wrapper .featured-section .featured-grid .feat-card .feat-title { font-size: 20px; font-weight: 800; color: #f5f0e8; line-height: 1.3; margin-bottom: 12px; letter-spacing: -0.01em; }
body .wrapper .featured-section .featured-grid .feat-card .feat-text { font-size: 14px; line-height: 1.65; color: rgba(245, 240, 232, 0.6); margin-bottom: 20px; }
body .wrapper .featured-section .featured-grid .feat-card .feat-link { font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #e8a020; display: inline-flex; align-items: center; gap: 6px; }
body .wrapper .featured-section .featured-grid .feat-card .feat-link svg { width: 14px; height: 14px; }
body .wrapper .featured-section .featured-grid .feat-card.feat-card-large .feat-img { height: 320px; }
body .wrapper .featured-section .featured-grid .feat-card.feat-card-large .feat-title { font-size: 26px; }
body .wrapper .faq-section { padding: 80px 24px; background-color: #1a2e1a; }
body .wrapper .faq-section .faq-inner { max-width: 800px; margin: 0 auto; }
body .wrapper .faq-section .faq-inner .section-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: #e8a020; margin-bottom: 12px; }
body .wrapper .faq-section .faq-inner .section-title { font-size: 36px; font-weight: 900; line-height: 1.1; letter-spacing: -0.02em; color: #f5f0e8; margin-bottom: 48px; }
body .wrapper .faq-section .faq-list { display: flex; flex-direction: column; }
body .wrapper .faq-section .faq-list .faq-item { border-top: 1px solid rgba(245, 240, 232, 0.12); }
body .wrapper .faq-section .faq-list .faq-item:last-child { border-bottom: 1px solid rgba(245, 240, 232, 0.12); }
body .wrapper .faq-section .faq-list .faq-item .faq-question { display: flex; justify-content: space-between; align-items: center; padding: 24px 0; cursor: pointer; gap: 16px; }
body .wrapper .faq-section .faq-list .faq-item .faq-question .faq-q-text { font-size: 16px; font-weight: 700; color: #f5f0e8; line-height: 1.4; }
body .wrapper .faq-section .faq-list .faq-item .faq-question .faq-icon { width: 28px; height: 28px; flex-shrink: 0; border: 1px solid rgba(245, 240, 232, 0.3); display: flex; align-items: center; justify-content: center; transition: background 0.2s, border-color 0.2s; }
body .wrapper .faq-section .faq-list .faq-item .faq-question:hover .faq-icon { border-color: #e8a020; background-color: #e8a020; }
body .wrapper .faq-section .faq-list .faq-item .faq-question .faq-icon svg { width: 14px; height: 14px; stroke: #f5f0e8; transition: transform 0.3s ease, stroke 0.2s; }
body .wrapper .faq-section .faq-list .faq-item .faq-question:hover .faq-icon svg { stroke: #1a2e1a; }
body .wrapper .faq-section .faq-list .faq-item.open .faq-question .faq-icon svg { transform: rotate(45deg); }
body .wrapper .faq-section .faq-list .faq-item .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
body .wrapper .faq-section .faq-list .faq-item.open .faq-answer { max-height: 300px; }
body .wrapper .faq-section .faq-list .faq-item .faq-answer .faq-a-text { font-size: 15px; line-height: 1.75; color: rgba(245, 240, 232, 0.65); padding-bottom: 24px; }
body .wrapper .join-section { padding: 80px 24px; background-color: #e8a020; position: relative; overflow: hidden; }
body .wrapper .join-section::before { content: ""; position: absolute; top: -80px; right: -80px; width: 400px; height: 400px; background-color: rgba(26, 46, 26, 0.08); clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%); }
body .wrapper .join-section .join-inner { max-width: 700px; margin: 0 auto; position: relative; z-index: 1; }
body .wrapper .join-section .join-inner .join-title { font-size: 40px; font-weight: 900; line-height: 1.1; letter-spacing: -0.02em; color: #1a2e1a; margin-bottom: 16px; }
body .wrapper .join-section .join-inner .join-text { font-size: 18px; line-height: 1.65; color: #1a2e1a; margin-bottom: 36px; }
body .wrapper .join-section .join-inner .btn-dark { display: inline-block; padding: 16px 40px; background-color: #1a2e1a; color: #f5f0e8; font-size: 13px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; transition: background 0.25s ease, transform 0.2s ease; }
body .wrapper .join-section .join-inner .btn-dark:hover { background-color: #2d4a2d; transform: translateY(-2px); }
body .wrapper .fact-src { color: rgba(232, 160, 32, 0.5); font-size: 10px; font-weight: 700; text-decoration: none; margin-left: 3px; vertical-align: super; transition: color 0.2s ease; }
body .wrapper .fact-src:hover { color: #e8a020; }
body .wrapper .faq-answer a { color: rgba(245, 240, 232, 0.55); text-decoration: underline; text-underline-offset: 2px; transition: color 0.2s ease; }
body .wrapper .faq-answer a:hover { color: #f5f0e8; }
body .wrapper .author-bar { background-color: #f5f0e8; border-top: 1px solid rgba(26, 46, 26, 0.08); padding: 24px; }
body .wrapper .author-bar .author-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
body .wrapper .author-bar .author-info { display: flex; align-items: center; gap: 14px; }
body .wrapper .author-bar .author-info .author-avatar { width: 40px; height: 40px; flex-shrink: 0; }
body .wrapper .author-bar .author-info .author-meta { display: flex; flex-direction: column; gap: 2px; }
body .wrapper .author-bar .author-info .author-name { font-size: 13px; font-weight: 700; color: #1a2e1a; }
body .wrapper .author-bar .author-info .author-role { font-size: 12px; color: rgba(26, 46, 26, 0.55); }
body .wrapper .author-bar .author-dates { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; }
body .wrapper .author-bar .author-dates time { font-size: 12px; color: rgba(26, 46, 26, 0.45); }
body .wrapper .author-bar .author-dates .author-updated { font-size: 11px; color: #e8a020; font-weight: 600; }
body .wrapper .reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.6s ease, transform 0.6s ease; }
body .wrapper .reveal.visible { opacity: 1; transform: translateY(0); }
@media (min-width: 768px) {
  body .wrapper .intro-section { padding: 100px 48px; }
  body .wrapper .intro-section .intro-inner { grid-template-columns: 1fr 1fr; align-items: start; }
  body .wrapper .intro-section .intro-text .section-title { font-size: 44px; }
  body .wrapper .topics-section { padding: 100px 48px; }
  body .wrapper .topics-section .topics-grid { grid-template-columns: 1fr 1fr; }
  body .wrapper .featured-section { padding: 100px 48px; }
  body .wrapper .featured-section .featured-grid { grid-template-columns: 1fr 1fr; }
  body .wrapper .faq-section { padding: 100px 48px; }
  body .wrapper .join-section { padding: 100px 48px; }
  body .wrapper .join-section .join-inner .join-title { font-size: 52px; }
}
@media (min-width: 1024px) {
  body .wrapper .topics-section .topics-grid { grid-template-columns: 1fr 1fr 1fr; }
  body .wrapper .featured-section .featured-grid { grid-template-columns: 1fr 1fr 1fr; }
  body .wrapper .featured-section .featured-grid .feat-card.feat-card-large { grid-column: span 2; }
}

/* ── article.css ── */
body .wrapper .article-hero { background-color: #1a2e1a; padding: 64px 24px 56px; }
body .wrapper .article-hero-figure { margin: 0; padding: 0; line-height: 0; }
body .wrapper .article-hero-figure img { width: 100%; height: 420px; object-fit: cover; object-position: center; display: block; }
body .wrapper .article-hero .article-hero-inner { max-width: 900px; margin: 0 auto; }
body .wrapper .article-hero .breadcrumb { margin-bottom: 28px; }
body .wrapper .article-hero .breadcrumb ol { display: flex; align-items: center; gap: 8px; list-style: none; padding: 0; margin: 0; flex-wrap: wrap; }
body .wrapper .article-hero .breadcrumb ol li { font-size: 12px; color: rgba(245, 240, 232, 0.4); }
body .wrapper .article-hero .breadcrumb ol li::after { content: "›"; margin-left: 8px; }
body .wrapper .article-hero .breadcrumb ol li:last-child::after { content: ""; }
body .wrapper .article-hero .breadcrumb ol li a { color: rgba(245, 240, 232, 0.55); text-decoration: none; transition: color 0.2s ease; }
body .wrapper .article-hero .breadcrumb ol li a:hover { color: #e8a020; }
body .wrapper .article-hero .article-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: #e8a020; margin-bottom: 16px; }
body .wrapper .article-hero .article-title { font-size: 34px; font-weight: 900; line-height: 1.1; letter-spacing: -0.02em; color: #f5f0e8; margin-bottom: 20px; }
body .wrapper .article-hero .article-intro { font-size: 17px; line-height: 1.75; color: rgba(245, 240, 232, 0.72); max-width: 720px; margin-bottom: 24px; }
body .wrapper .article-hero .article-meta { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
body .wrapper .article-hero .article-meta .article-date { font-size: 12px; color: rgba(245, 240, 232, 0.45); }
body .wrapper .article-hero .article-meta .article-reading { font-size: 12px; color: rgba(245, 240, 232, 0.35); }
body .wrapper .article-hero .article-meta .article-author { font-size: 12px; color: rgba(245, 240, 232, 0.6); }
body .wrapper .article-hero .article-meta .article-author a { color: rgba(245, 240, 232, 0.6); text-decoration: underline; }
body .wrapper .article-body { background-color: #f5f0e8; }
body .wrapper .article-body .article-layout { max-width: 1200px; margin: 0 auto; padding: 56px 24px; display: grid; gap: 56px; }
body .wrapper .article-body .article-layout .article-toc { background-color: #1a2e1a; padding: 28px 24px; align-self: start; }
body .wrapper .article-body .article-layout .article-toc .toc-title { font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: #e8a020; margin-bottom: 18px; }
body .wrapper .article-body .article-layout .article-toc nav ol { padding-left: 0; margin: 0; list-style: none; display: flex; flex-direction: column; gap: 4px; counter-reset: toc-counter; }
body .wrapper .article-body .article-layout .article-toc nav ol li { counter-increment: toc-counter; display: flex; gap: 10px; align-items: baseline; }
body .wrapper .article-body .article-layout .article-toc nav ol li::before { content: counter(toc-counter, decimal-leading-zero); font-size: 10px; font-weight: 700; color: rgba(232, 160, 32, 0.5); flex-shrink: 0; min-width: 22px; }
body .wrapper .article-body .article-layout .article-toc nav ol li a { font-size: 13px; line-height: 1.5; color: rgba(245, 240, 232, 0.65); text-decoration: none; transition: color 0.2s ease; }
body .wrapper .article-body .article-layout .article-toc nav ol li a:hover { color: #e8a020; }
body .wrapper .article-body .article-layout .article-content { min-width: 0; }
body .wrapper .article-body .article-layout .article-content h2 { font-size: 26px; font-weight: 900; color: #1a2e1a; letter-spacing: -0.01em; line-height: 1.2; margin-top: 56px; margin-bottom: 16px; padding-top: 8px; border-top: 2px solid #e8a020; }
body .wrapper .article-body .article-layout .article-content h2:first-child { margin-top: 0; }
body .wrapper .article-body .article-layout .article-content p { font-size: 16px; line-height: 1.8; color: #3d4a3d; margin-bottom: 18px; }
body .wrapper .article-body .article-layout .article-content p strong { font-weight: 700; color: #1a2e1a; }
body .wrapper .article-body .article-layout .article-content p a { color: #2d6a2d; text-decoration: underline; text-underline-offset: 2px; transition: color 0.2s ease; }
body .wrapper .article-body .article-layout .article-content p a:hover { color: #1a2e1a; }
body .wrapper .article-body .article-layout .article-content p em { font-style: italic; }
body .wrapper .article-body .article-layout .article-content ul { margin: 0 0 24px 0; padding-left: 20px; }
body .wrapper .article-body .article-layout .article-content ul li { font-size: 15px; line-height: 1.75; color: #3d4a3d; margin-bottom: 8px; }
body .wrapper .article-body .article-layout .article-content ul li a { color: #2d6a2d; text-decoration: underline; text-underline-offset: 2px; }
body .wrapper .article-body .article-layout .article-content ul li a:hover { color: #1a2e1a; }
body .wrapper .article-body .article-layout .article-content .answer-block { background-color: #1a2e1a; color: #f5f0e8; font-size: 16px; line-height: 1.75; padding: 20px 24px; margin-bottom: 20px; border-left: 3px solid #e8a020; }
body .wrapper .article-body .article-layout .article-content .answer-block a { color: #e8a020; }
body .wrapper .article-body .article-layout .article-content .answer-block a:hover { color: #f5f0e8; }
body .wrapper .article-body .article-layout .article-content .fact-box { border: 1px solid rgba(26, 46, 26, 0.15); background-color: #fff; margin-bottom: 40px; overflow: hidden; }
body .wrapper .article-body .article-layout .article-content .fact-box .fact-box-title { background-color: #2d4a2d; color: #f5f0e8; font-size: 12px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; padding: 12px 20px; }
body .wrapper .article-body .article-layout .article-content .fact-box .fact-table { width: 100%; border-collapse: collapse; }
body .wrapper .article-body .article-layout .article-content .fact-box .fact-table tr { border-bottom: 1px solid rgba(26, 46, 26, 0.08); }
body .wrapper .article-body .article-layout .article-content .fact-box .fact-table tr:last-child { border-bottom: none; }
body .wrapper .article-body .article-layout .article-content .fact-box .fact-table th { font-size: 12px; font-weight: 700; color: rgba(26, 46, 26, 0.55); text-align: left; padding: 10px 20px; width: 40%; background-color: rgba(26, 46, 26, 0.03); vertical-align: top; }
body .wrapper .article-body .article-layout .article-content .fact-box .fact-table td { font-size: 13px; color: #1a2e1a; padding: 10px 20px; vertical-align: top; }
body .wrapper .article-body .article-layout .article-content .data-table-wrap { overflow-x: auto; margin-bottom: 24px; }
body .wrapper .article-body .article-layout .article-content .data-table-wrap .data-table { width: 100%; border-collapse: collapse; font-size: 14px; }
body .wrapper .article-body .article-layout .article-content .data-table-wrap .data-table thead tr { background-color: #1a2e1a; }
body .wrapper .article-body .article-layout .article-content .data-table-wrap .data-table thead th { color: #f5f0e8; font-size: 12px; font-weight: 700; letter-spacing: 0.05em; text-align: left; padding: 12px 16px; }
body .wrapper .article-body .article-layout .article-content .data-table-wrap .data-table tbody tr { border-bottom: 1px solid rgba(26, 46, 26, 0.1); }
body .wrapper .article-body .article-layout .article-content .data-table-wrap .data-table tbody tr:nth-child(even) { background-color: rgba(26, 46, 26, 0.03); }
body .wrapper .article-body .article-layout .article-content .data-table-wrap .data-table tbody td { color: #3d4a3d; padding: 11px 16px; vertical-align: top; line-height: 1.5; }
body .wrapper .article-body .article-layout .article-content .content-link-box { border: 1px solid rgba(232, 160, 32, 0.4); background-color: rgba(232, 160, 32, 0.06); padding: 16px 20px; margin: 28px 0; display: flex; align-items: center; gap: 16px; }
body .wrapper .article-body .article-layout .article-content .content-link-box .content-link-box-label { font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: #e8a020; flex-shrink: 0; }
body .wrapper .article-body .article-layout .article-content .content-link-box a { font-size: 14px; font-weight: 600; color: #1a2e1a; text-decoration: none; transition: color 0.2s ease; }
body .wrapper .article-body .article-layout .article-content .content-link-box a:hover { color: #2d4a2d; text-decoration: underline; }
@media (min-width: 768px) {
  body .wrapper .article-hero { padding: 80px 48px 72px; }
  body .wrapper .article-hero .article-hero-inner { max-width: 860px; }
  body .wrapper .article-hero .article-title { font-size: 44px; }
  body .wrapper .article-body .article-layout { padding: 72px 48px; }
}
@media (min-width: 1024px) {
  body .wrapper .article-body .article-layout { grid-template-columns: 260px 1fr; align-items: start; }
  body .wrapper .article-body .article-layout .article-toc { position: sticky; top: 88px; }
}

/* ── page.css ── */
body .wrapper .page-hero { background-color: #1a2e1a; padding: 56px 24px 48px; }
body .wrapper .page-hero .page-hero-inner { max-width: 800px; margin: 0 auto; }
body .wrapper .page-hero .breadcrumb { margin-bottom: 24px; }
body .wrapper .page-hero .breadcrumb ol { display: flex; align-items: center; gap: 8px; list-style: none; padding: 0; margin: 0; flex-wrap: wrap; }
body .wrapper .page-hero .breadcrumb ol li { font-size: 12px; color: rgba(245, 240, 232, 0.4); }
body .wrapper .page-hero .breadcrumb ol li::after { content: "›"; margin-left: 8px; }
body .wrapper .page-hero .breadcrumb ol li:last-child::after { content: ""; }
body .wrapper .page-hero .breadcrumb ol li a { color: rgba(245, 240, 232, 0.55); text-decoration: none; transition: color 0.2s ease; }
body .wrapper .page-hero .breadcrumb ol li a:hover { color: #e8a020; }
body .wrapper .page-hero .page-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: #e8a020; margin-bottom: 14px; }
body .wrapper .page-hero .page-title { font-size: 32px; font-weight: 900; line-height: 1.1; letter-spacing: -0.02em; color: #f5f0e8; }
body .wrapper .page-body { background-color: #f5f0e8; padding: 56px 24px; }
body .wrapper .page-body .page-inner { max-width: 800px; margin: 0 auto; }
body .wrapper .page-body .page-inner h2 { font-size: 20px; font-weight: 800; color: #1a2e1a; margin-top: 40px; margin-bottom: 12px; letter-spacing: -0.01em; }
body .wrapper .page-body .page-inner h2:first-child { margin-top: 0; }
body .wrapper .page-body .page-inner h3 { font-size: 15px; font-weight: 700; color: #1a2e1a; margin-top: 24px; margin-bottom: 8px; }
body .wrapper .page-body .page-inner p { font-size: 15px; line-height: 1.8; color: #3d4a3d; margin-bottom: 16px; }
body .wrapper .page-body .page-inner p a { color: #2d6a2d; text-decoration: underline; text-underline-offset: 2px; transition: color 0.2s; }
body .wrapper .page-body .page-inner p a:hover { color: #1a2e1a; }
body .wrapper .page-body .page-inner ul { padding-left: 20px; margin-bottom: 16px; }
body .wrapper .page-body .page-inner ul li { font-size: 15px; line-height: 1.75; color: #3d4a3d; margin-bottom: 6px; }
body .wrapper .page-body .page-inner .page-address { font-style: normal; background-color: rgba(26, 46, 26, 0.05); border-left: 3px solid #e8a020; padding: 20px 24px; margin-bottom: 24px; font-size: 15px; line-height: 1.9; color: #1a2e1a; }
body .wrapper .page-body .page-inner .page-note { font-size: 13px; color: rgba(61, 74, 61, 0.65); border-top: 1px solid rgba(26, 46, 26, 0.1); margin-top: 40px; padding-top: 20px; }
@media (min-width: 768px) {
  body .wrapper .page-hero { padding: 72px 48px 64px; }
  body .wrapper .page-hero .page-title { font-size: 40px; }
  body .wrapper .page-body { padding: 72px 48px; }
}

/* ── footer.css ── */
body .wrapper footer { background-color: #111d11; padding: 64px 24px 32px; }
body .wrapper footer .footer-inner { max-width: 1200px; margin: 0 auto; }
body .wrapper footer .footer-inner .footer-top { display: grid; gap: 48px; margin-bottom: 56px; }
body .wrapper footer .footer-inner .footer-top .footer-brand .footer-logo-title { font-size: 18px; font-weight: 900; letter-spacing: 0.1em; text-transform: uppercase; color: #f5f0e8; margin-bottom: 6px; }
body .wrapper footer .footer-inner .footer-top .footer-brand .footer-logo-sub { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: #e8a020; margin-bottom: 16px; }
body .wrapper footer .footer-inner .footer-top .footer-brand .footer-tagline { font-size: 14px; line-height: 1.65; color: rgba(245, 240, 232, 0.45); max-width: 280px; }
body .wrapper footer .footer-inner .footer-top .footer-nav-group .footer-nav-title { font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: #e8a020; margin-bottom: 20px; }
body .wrapper footer .footer-inner .footer-top .footer-nav-group ul { display: flex; flex-direction: column; gap: 12px; }
body .wrapper footer .footer-inner .footer-top .footer-nav-group ul li a { font-size: 14px; color: rgba(245, 240, 232, 0.55); transition: color 0.2s ease; }
body .wrapper footer .footer-inner .footer-top .footer-nav-group ul li a:hover { color: #f5f0e8; }
body .wrapper footer .footer-inner .footer-bottom { border-top: 1px solid rgba(245, 240, 232, 0.08); padding-top: 32px; display: flex; flex-direction: column; gap: 16px; }
body .wrapper footer .footer-inner .footer-bottom .footer-copy { font-size: 12px; color: #909090; }
body .wrapper footer .footer-inner .footer-bottom .footer-links { display: flex; flex-wrap: wrap; gap: 20px; }
body .wrapper footer .footer-inner .footer-bottom .footer-links a { font-size: 12px; color: rgba(245, 240, 232, 0.35); transition: color 0.2s ease; }
body .wrapper footer .footer-inner .footer-bottom .footer-links a:hover { color: rgba(245, 240, 232, 0.7); }
body .wrapper footer .footer-inner .footer-bottom .footer-sponsored { font-size: 11px; color: rgba(245, 240, 232, 0.2); }
body .wrapper footer .footer-inner .footer-bottom .footer-sponsored a { color: rgba(245, 240, 232, 0.3); text-decoration: underline; text-underline-offset: 2px; }
body .wrapper footer .footer-inner .footer-bottom .footer-sponsored a:hover { color: rgba(245, 240, 232, 0.55); }
@media (min-width: 768px) {
  body .wrapper footer { padding: 80px 48px 40px; }
  body .wrapper footer .footer-inner .footer-top { grid-template-columns: 2fr 1fr 1fr 1fr; }
  body .wrapper footer .footer-inner .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}
