/* XALTHOS — Nach Mockup */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

:root {
  --cream: #FAF8F5;
  --cream2: #F2EDE6;
  --gold: #C89D43;
  --gold-light: rgba(200,157,67,0.2);
  --dark: #1C1A17;
  --mid: #6B6560;
  --light: #A8A29C;
  --border: rgba(200,157,67,0.2);
  --border-gray: rgba(28,26,23,0.1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--dark);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 24px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(250,248,245,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}
nav.scrolled { border-bottom-color: var(--border-gray); }

.nav-logo img {
  height: 176px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 48px;
  list-style: none;
}
.nav-links a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
  padding-bottom: 4px;
}
.nav-links a.active,
.nav-links a:hover { color: var(--dark); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--dark);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  color: var(--dark);
  text-decoration: none;
  letter-spacing: 0.04em;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-close {
  position: absolute;
  top: 28px; right: 48px;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--mid);
  font-family: 'Jost', sans-serif;
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 48px 80px;
  position: relative;
  overflow: hidden;
  background: var(--cream2);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #EDE8E0 0%, #F5F0E8 40%, #E8E0D4 100%);
  z-index: 0;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.35;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(64px, 12vw, 140px);
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 16px;
}

.hero-tagline {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.hero-divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 20px auto 28px;
}

.hero-text {
  font-size: 17px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dark);
  border: 1px solid var(--gold);
  padding: 16px 36px;
  text-decoration: none;
  transition: background 0.25s, color 0.25s;
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--cream);
}
.btn-outline .arrow { font-size: 14px; }

.btn-solid {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--gold);
  border: 1px solid var(--gold);
  padding: 16px 36px;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s;
}
.btn-solid:hover { opacity: 0.85; }

/* ─── SECTIONS ─── */
.section {
  padding: 100px 48px;
  max-width: 1140px;
  margin: 0 auto;
}

.section-label {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  text-align: center;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--dark);
  text-align: center;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 15px;
  color: var(--mid);
  text-align: center;
  max-width: 500px;
  margin: 0 auto 60px;
  line-height: 1.75;
}

/* ─── THEMEN CARDS (3 Icons) ─── */
.themen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.thema-card {
  background: #fff;
  border: 1px solid var(--border-gray);
  padding: 48px 36px 40px;
  text-align: center;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.thema-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  transform: translateY(-3px);
}

.thema-icon {
  width: 52px;
  height: 52px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.thema-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.thema-card h3 {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dark);
}

.thema-divider {
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.thema-card p {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.7;
}

.thema-link {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 8px;
}

/* ─── WISSEN DARK SECTION ─── */
.wissen-dark {
  background: var(--dark);
  padding: 100px 48px;
}
.wissen-dark-inner {
  max-width: 1140px;
  margin: 0 auto;
}
.wissen-dark .section-title {
  color: var(--cream);
}
.wissen-dark .section-label {
  color: var(--gold);
}
.wissen-dark .section-sub {
  color: rgba(250,248,245,0.6);
}

/* ─── ARTIKEL CARDS ─── */
.artikel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.artikel-card {
  background: var(--dark);
  text-decoration: none;
  display: flex;
  flex-direction: column;
}
.wissen-dark .artikel-card {
  border: 1px solid rgba(200,157,67,0.15);
}

.artikel-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  background: #2a2620;
}

.artikel-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #2a2620 0%, #3a342c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.artikel-img-placeholder span {
  font-size: 11px;
  letter-spacing: 0.15em;
  color: rgba(200,157,67,0.4);
  text-transform: uppercase;
}

.artikel-body {
  padding: 28px 28px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.artikel-cat {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.artikel-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--cream);
}

.artikel-card p {
  font-size: 13px;
  color: rgba(250,248,245,0.55);
  line-height: 1.65;
  flex: 1;
}

.artikel-read {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.alle-artikel {
  text-align: center;
  margin-top: 52px;
}

.wissen-dark .btn-outline {
  color: var(--cream);
  border-color: var(--gold);
}
.wissen-dark .btn-outline:hover {
  background: var(--gold);
  color: var(--dark);
}

/* ─── INNER PAGES ─── */
.page-hero {
  padding: 160px 48px 80px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 400;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 20px;
}
.page-hero-divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 24px auto;
}
.page-hero p {
  font-size: 16px;
  color: var(--mid);
  line-height: 1.8;
  max-width: 520px;
  margin: 0 auto;
}

/* ─── THEMEN LISTE ─── */
.themen-list {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 48px 80px;
}
.themen-item {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid var(--border-gray);
  text-decoration: none;
  transition: opacity 0.2s;
}
.themen-item:hover { opacity: 0.7; }
.themen-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.4;
}
.themen-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 6px;
}
.themen-item p {
  font-size: 14px;
  color: var(--mid);
}
.themen-arrow {
  font-size: 18px;
  color: var(--gold);
}

/* ─── CTA DARK BAND ─── */
.cta-band {
  background: var(--dark);
  padding: 64px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-band-inner {
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-band p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 300;
  color: var(--cream);
  max-width: 520px;
  line-height: 1.4;
}
.cta-band span {
  font-size: 13px;
  color: rgba(250,248,245,0.5);
  display: block;
  margin-top: 8px;
  font-family: 'Jost', sans-serif;
}

/* ─── KONTAKT FORM ─── */
.kontakt-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 48px 100px;
}
.kontakt-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 16px;
}
.kontakt-info p {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 12px;
}
.kontakt-field {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--mid);
  margin-bottom: 10px;
}
.kontakt-field svg {
  width: 16px; height: 16px;
  stroke: var(--gold); fill: none; stroke-width: 1.5;
  flex-shrink: 0;
}
.kontakt-info a { color: var(--gold); text-decoration: none; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 24px;
}
.form-group label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--light);
}
.form-group input,
.form-group textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border-gray);
  padding: 10px 0;
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: var(--dark);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus { border-bottom-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 100px; line-height: 1.6; }
.form-note { font-size: 12px; color: var(--light); line-height: 1.6; margin-bottom: 24px; }
.form-note a { color: var(--gold); text-decoration: none; }
.form-success {
  display: none;
  padding: 16px 20px;
  background: rgba(200,157,67,0.1);
  border-left: 2px solid var(--gold);
  font-size: 14px;
  color: var(--dark);
  margin-bottom: 16px;
}

/* ─── WISSEN FILTER ─── */
.wissen-filter {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border-gray);
  margin-bottom: 48px;
}
.filter-btn {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--light);
  background: none;
  border: none;
  padding: 14px 24px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.2s, border-color 0.2s;
}
.filter-btn.active,
.filter-btn:hover { color: var(--dark); border-bottom-color: var(--gold); }

/* ─── ARTIKEL SEITE ─── */
.artikel-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 48px 100px;
}
.artikel-page-img {
  width: 100%;
  aspect-ratio: 16/7;
  object-fit: cover;
  margin-bottom: 48px;
  background: var(--cream2);
}
.artikel-page-img-placeholder {
  width: 100%;
  aspect-ratio: 16/7;
  background: linear-gradient(135deg, #E8E0D4 0%, #D4C8B8 100%);
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.artikel-page-img-placeholder span {
  font-size: 11px;
  letter-spacing: 0.15em;
  color: rgba(200,157,67,0.5);
  text-transform: uppercase;
}
.artikel-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--light);
  margin-bottom: 24px;
}
.artikel-meta .cat { color: var(--gold); }
.artikel-page h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 32px;
}
.artikel-page p {
  font-size: 17px;
  color: var(--mid);
  line-height: 1.85;
  margin-bottom: 28px;
}
.artikel-page h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 400;
  color: var(--dark);
  margin: 52px 0 20px;
}
.artikel-page blockquote {
  border-left: 2px solid var(--gold);
  padding: 20px 32px;
  background: var(--cream2);
  margin: 36px 0;
}
.artikel-page blockquote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-style: italic;
  color: var(--dark);
  margin: 0;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  margin-bottom: 40px;
  transition: color 0.2s;
}
.back-link:hover { color: var(--gold); }
.share-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 40px;
  border-top: 1px solid var(--border-gray);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--light);
}
.share-btn {
  width: 36px; height: 36px;
  border: 1px solid var(--border-gray);
  display: flex; align-items: center; justify-content: center;
  color: var(--mid);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
  font-size: 13px;
}
.share-btn:hover { border-color: var(--gold); color: var(--gold); }

/* ─── LEGAL ─── */
.legal-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 48px 100px;
}
.legal-page h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--dark);
  margin: 44px 0 14px;
}
.legal-page h2:first-child { margin-top: 0; }
.legal-page p, .legal-page address {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.8;
  font-style: normal;
  margin-bottom: 10px;
}
.legal-page a { color: var(--gold); text-decoration: none; }

/* ─── FOOTER ─── */
footer {
  background: var(--cream2);
  border-top: 1px solid var(--border-gray);
  padding: 64px 48px 40px;
}
.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo img { height: 200px; width: auto; margin-bottom: 12px; }
.footer-logo p {
  font-size: 15px;
  color: var(--light);
  line-height: 1.6;
}
.footer-col h4 {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  font-size: 14px;
  color: var(--mid);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }
.footer-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--mid);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-contact a:hover { color: var(--gold); }
.footer-contact svg {
  width: 15px; height: 15px;
  stroke: var(--gold); fill: none; stroke-width: 1.5;
  flex-shrink: 0;
}
.footer-bottom {
  max-width: 1140px;
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid var(--border-gray);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p {
  font-size: 12px;
  color: var(--light);
}
.footer-bottom a {
  font-size: 12px;
  color: var(--light);
  text-decoration: none;
}
.footer-bottom a:hover { color: var(--gold); }

/* ─── FADE IN ─── */
.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: none; }

/* ─── MOBILE ─── */
@media (max-width: 900px) {
  nav { padding: 20px 28px; }
  .nav-links, nav > a.btn-outline { display: none; }
  .nav-toggle { display: flex; }
  .mobile-close { right: 28px; }
  .hero { padding: 120px 28px 72px; }
  .section { padding: 72px 28px; }
  .themen-grid, .artikel-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  footer { padding: 52px 28px 32px; }
  .kontakt-wrap { grid-template-columns: 1fr; gap: 48px; padding: 0 28px 80px; }
  .themen-list { padding: 0 28px 72px; }
  .artikel-page, .legal-page { padding: 0 28px 80px; }
  .page-hero { padding: 140px 28px 64px; }
  .cta-band { padding: 52px 28px; }
  .wissen-dark { padding: 72px 28px; }
}
