/* ============================================================
   findmyseidla.de — Stylesheet v1.0
   Rustic Bierkeller — Dark Wood & Amber
   ============================================================ */

/* Self-hosted fonts — no Google CDN, DSGVO-compliant */
@font-face {
  font-family: 'Fraunces';
  src: url('../fonts/fraunces-normal.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fraunces';
  src: url('../fonts/fraunces-italic.woff2') format('woff2');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Lora';
  src: url('../fonts/lora-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lora';
  src: url('../fonts/lora-400-italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Lora';
  src: url('../fonts/lora-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* ---- TOKENS ---- */
:root {
  --bg:           #130e08;
  --surface:      #1c1409;
  --surface-2:    #241b0c;
  --card:         #2a1f0f;
  --card-hover:   #321f08;
  --border:       #3e2c12;
  --border-light: #52390f;

  --amber:        #c8751a;
  --amber-bright: #e8982a;
  --amber-glow:   #f5b642;
  --amber-pale:   #f5dda8;

  --cream:        #f0deb8;
  --text:         #cdb891;
  --muted:        #7a6440;
  --faint:        #4a3c25;

  --green:        #243f21;
  --green-mid:    #2d5429;
  --green-light:  #3d7037;

  --ff-display: 'Fraunces', Georgia, serif;
  --ff-body:    'Lora', Georgia, serif;

  --radius: 4px;
  --radius-lg: 8px;
  --max-w: 1160px;
  --transition: 0.25s ease;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--ff-body);
  font-size: 17px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Grain texture overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.032;
  pointer-events: none;
  z-index: 9999;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--amber-bright); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--amber-glow); }
ul { list-style: none; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  font-family: var(--ff-display);
  color: var(--cream);
  line-height: 1.2;
  font-weight: 600;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1.1em; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  font-family: var(--ff-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  display: block;
  margin-bottom: 0.6rem;
}

.lead {
  font-size: 1.15rem;
  color: var(--cream);
  line-height: 1.7;
}

/* ---- LAYOUT ---- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.2rem, 4vw, 2.5rem);
}

.section { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.section--tight { padding: clamp(2rem, 5vw, 3.5rem) 0; }

/* ---- ORNAMENT ---- */
.ornament {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.2rem 0 1.8rem;
}
.ornament::before,
.ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border-light), transparent);
}
.ornament span {
  color: var(--amber);
  font-size: 1rem;
  opacity: 0.8;
}

hr.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2rem 0;
}

/* ---- NAVIGATION ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(19, 14, 8, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 1.5rem;
}

.nav__logo {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--cream) !important;
  font-weight: 400;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.nav__logo .seidla-icon { font-size: 1.1rem; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav__links a {
  color: var(--muted);
  font-family: var(--ff-display);
  font-size: 0.88rem;
  font-weight: 400;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  letter-spacing: 0.01em;
}
.nav__links a:hover {
  color: var(--cream);
  background: var(--surface-2);
}

.nav__lang {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.6rem;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--surface);
}
.nav__lang a {
  font-size: 0.8rem;
  font-family: var(--ff-display);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--muted);
  padding: 0.15rem 0.4rem;
  border-radius: 12px;
  transition: all var(--transition);
}
.nav__lang a.active,
.nav__lang a:hover {
  background: var(--amber);
  color: var(--bg);
}
.nav__lang span { color: var(--faint); font-size: 0.75rem; }

.nav__burger {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.4rem 0.6rem;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 1.1rem;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 5rem 0 4rem;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(180, 100, 20, 0.18) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 20% 30%, rgba(45, 84, 41, 0.12) 0%, transparent 60%),
    var(--bg);
  z-index: 0;
}

/* Decorative arc lines */
.hero__bg::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  border-radius: 50%;
  border: 1px solid rgba(200, 117, 26, 0.08);
  box-shadow:
    0 0 0 60px rgba(200, 117, 26, 0.03),
    0 0 0 120px rgba(200, 117, 26, 0.02),
    0 0 0 200px rgba(200, 117, 26, 0.01);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 0.3rem 1rem;
  font-family: var(--ff-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.6rem;
  animation: fadeUp 0.7s ease both;
}
.hero__kicker::before { content: '⚑'; font-size: 0.7rem; }

.hero h1 {
  font-style: italic;
  font-weight: 300;
  margin-bottom: 1.4rem;
  animation: fadeUp 0.7s 0.1s ease both;
}
.hero h1 em {
  font-style: normal;
  font-weight: 700;
  color: var(--amber-bright);
  display: block;
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text);
  max-width: 560px;
  margin-bottom: 2.4rem;
  animation: fadeUp 0.7s 0.2s ease both;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  animation: fadeUp 0.7s 0.3s ease both;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--faint);
  font-size: 0.78rem;
  font-family: var(--ff-display);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  animation: pulse 2s 1s ease-in-out infinite;
}
.hero__scroll::after {
  content: '↓';
  font-size: 1rem;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--ff-display);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-decoration: none;
}

.btn--primary {
  background: var(--amber);
  color: var(--bg);
}
.btn--primary:hover {
  background: var(--amber-bright);
  color: var(--bg);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(200, 117, 26, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--border-light);
}
.btn--outline:hover {
  background: var(--surface-2);
  color: var(--cream);
  border-color: var(--amber);
}

.btn--sm {
  padding: 0.5rem 1.1rem;
  font-size: 0.82rem;
}

/* ---- STATS BAR ---- */
.stats-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}
.stats-bar__grid {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stats-bar__item {
  flex: 1;
  min-width: 160px;
  text-align: center;
  padding: 0.5rem 1.5rem;
  border-right: 1px solid var(--border);
}
.stats-bar__item:last-child { border-right: none; }
.stats-bar__num {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--amber-bright);
  line-height: 1;
  display: block;
}
.stats-bar__label {
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--ff-display);
  display: block;
  margin-top: 0.25rem;
}

/* ---- INTRO ---- */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.intro-text h2 { margin-bottom: 1rem; }
.intro-visual {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.intro-visual::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(200,117,26,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.intro-visual__stat {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.intro-visual__stat:last-child { border-bottom: none; padding-bottom: 0; }
.intro-visual__icon {
  font-size: 1.4rem;
  width: 40px;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.intro-visual__stat strong {
  color: var(--cream);
  font-family: var(--ff-display);
  font-size: 0.95rem;
  display: block;
}
.intro-visual__stat span {
  font-size: 0.82rem;
  color: var(--muted);
}

/* ---- PILLARS GRID ---- */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
}

.pillar-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: all var(--transition);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.pillar-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.pillar-card:hover {
  border-color: var(--border-light);
  background: var(--card-hover);
  transform: translateY(-2px);
  color: var(--text);
}
.pillar-card:hover::after { transform: scaleX(1); }
.pillar-card:hover .pillar-card__title { color: var(--amber-bright); }

.pillar-card--featured {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--green) 0%, var(--surface) 100%);
  border-color: var(--green-mid);
}
.pillar-card--featured:hover { border-color: var(--green-light); }

.pillar-card__icon { font-size: 1.8rem; }
.pillar-card__tag {
  font-family: var(--ff-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  padding: 0.2rem 0.6rem;
  background: rgba(200,117,26,0.12);
  border-radius: 12px;
  width: fit-content;
}
.pillar-card--featured .pillar-card__tag {
  color: var(--green-light);
  background: rgba(61, 112, 55, 0.2);
}
.pillar-card__title {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cream);
  transition: color var(--transition);
}
.pillar-card__desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.55;
}
.pillar-card__arrow {
  margin-top: auto;
  color: var(--amber);
  font-size: 0.85rem;
  font-family: var(--ff-display);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

/* ---- ARTICLES PREVIEW ---- */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.article-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: all var(--transition);
  text-decoration: none;
}
.article-card:hover {
  border-color: var(--border-light);
  background: var(--card-hover);
  transform: translateY(-2px);
  color: var(--text);
}
.article-card:hover .article-card__title { color: var(--amber-bright); }

.article-card__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.76rem;
  color: var(--muted);
  font-family: var(--ff-display);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.article-card__meta span:first-child {
  background: var(--surface-2);
  padding: 0.15rem 0.5rem;
  border-radius: 3px;
  color: var(--amber);
}
.article-card__title {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--cream);
  transition: color var(--transition);
  line-height: 1.3;
}
.article-card__excerpt {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
}
.article-card__read {
  margin-top: 0.5rem;
  font-size: 0.82rem;
  color: var(--amber);
  font-family: var(--ff-display);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* ---- ABOUT TEASER ---- */
.about-teaser {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3.5rem);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}
.about-teaser blockquote {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--cream);
  font-weight: 300;
  line-height: 1.5;
}
.about-teaser blockquote strong {
  font-weight: 700;
  font-style: normal;
  color: var(--amber-bright);
}

/* ---- AFFILIATE DISCLOSURE ---- */
.disclosure {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--amber);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.6;
}
.disclosure strong { color: var(--text); }

/* ---- FOOTER ---- */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer__brand {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--cream);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
}

.footer__tagline {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 0;
}

.footer__heading {
  font-family: var(--ff-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
  display: block;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer__links a {
  font-size: 0.87rem;
  color: var(--muted);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--cream); }

.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.78rem;
  color: var(--faint);
}

.footer__bottom a {
  color: var(--faint);
  transition: color var(--transition);
}
.footer__bottom a:hover { color: var(--muted); }

/* ---- INNER PAGE HERO ---- */
.page-hero {
  padding: 4rem 0 3rem;
  border-bottom: 1px solid var(--border);
  background: radial-gradient(ellipse 70% 100% at 50% 100%, rgba(180,100,20,0.1) 0%, transparent 70%);
}
.page-hero .eyebrow { color: var(--amber); }
.page-hero h1 { margin-bottom: 0.75rem; }
.page-hero .lead { max-width: 620px; }

/* ---- ARTICLE PAGE ---- */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  align-items: start;
}
.article-body h2 { margin: 2rem 0 0.75rem; }
.article-body h3 { margin: 1.5rem 0 0.5rem; }
.article-body ul { list-style: disc; padding-left: 1.5rem; }
.article-body ul li { margin-bottom: 0.4rem; }
.article-body ol { padding-left: 1.5rem; }
.article-body ol li { margin-bottom: 0.4rem; }

.sidebar {
  position: sticky;
  top: 80px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.sidebar-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.sidebar-card h4 {
  margin-bottom: 0.75rem;
  color: var(--amber-bright);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Info / highlight box */
.info-box {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--amber);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}
.info-box h4 {
  color: var(--amber-bright);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}
.info-box ul { list-style: none; padding: 0; }
.info-box ul li {
  padding: 0.25rem 0;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--border);
}
.info-box ul li:last-child { border-bottom: none; }
.info-box ul li::before { content: '→ '; color: var(--amber); }

/* ---- BREADCRUMB ---- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--muted);
  font-family: var(--ff-display);
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--amber); }
.breadcrumb span { color: var(--faint); }

/* ---- TABLE ---- */
.table-wrapper { overflow-x: auto; margin: 1.5rem 0; }
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
th {
  background: var(--surface-2);
  color: var(--amber);
  font-family: var(--ff-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
tr:last-child td { border-bottom: none; }
tr:hover td { background: var(--surface); }

/* ---- FORM ---- */
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-family: var(--ff-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.4rem;
}
.form-input,
.form-textarea {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.7rem 1rem;
  color: var(--cream);
  font-family: var(--ff-body);
  font-size: 0.95rem;
  transition: border-color var(--transition);
}
.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--amber);
}
.form-textarea { resize: vertical; min-height: 120px; }

/* ---- LEGAL PAGES ---- */
.legal-content h2 {
  font-size: 1.3rem;
  margin: 2rem 0 0.6rem;
  color: var(--amber-bright);
}
.legal-content h3 {
  font-size: 1.05rem;
  margin: 1.2rem 0 0.4rem;
}
.legal-content p, .legal-content li { font-size: 0.9rem; }
.legal-content ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-content address { font-style: normal; font-size: 0.9rem; line-height: 1.8; }

/* ---- PLACEHOLDER / COMING SOON ---- */
.coming-soon {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--surface);
  border: 1px dashed var(--border);
  border-radius: var(--radius-lg);
}
.coming-soon__icon { font-size: 3rem; margin-bottom: 1rem; }
.coming-soon p { color: var(--muted); max-width: 400px; margin: 0 auto 1.5rem; }

/* ---- ANIMATIONS ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 0.9; }
}

/* ---- MOBILE NAV ---- */
.nav__mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}
.nav__mobile-menu.open { display: flex; }
.nav__mobile-menu a {
  padding: 0.7rem clamp(1.2rem, 4vw, 2.5rem);
  color: var(--text);
  font-family: var(--ff-display);
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border);
}
.nav__mobile-menu a:last-child { border-bottom: none; }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__burger { display: block; }
  .intro-grid { grid-template-columns: 1fr; gap: 2rem; }
  .intro-visual { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .about-teaser { grid-template-columns: 1fr; }
  .pillar-card--featured { grid-column: span 1; }
}

@media (max-width: 600px) {
  .stats-bar__grid { flex-direction: column; }
  .stats-bar__item { border-right: none; border-bottom: 1px solid var(--border); }
  .stats-bar__item:last-child { border-bottom: none; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__ctas { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .pillars-grid { grid-template-columns: 1fr; }
  .articles-grid { grid-template-columns: 1fr; }
}
