/*
Theme Name: Lex Advocatus
Theme URI: https://example.com
Author: Kanzlei
Description: Professionelles WordPress-Theme für Rechtsanwalt mit Schwerpunkt Strafrecht und Opfervertretung.
Version: 2.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: lex-advocatus
Tags: law, legal, attorney, navy, gold
*/

/* ============================================================
   CSS VARIABLES & RESET
   ============================================================ */
:root {
  --navy:    #162040;
  --navy2:   #0d1528;
  --navylt:  #1e2d55;
  --gold:    #d4950a;
  --goldl:   #f0b030;
  --goldbg:  rgba(212,149,10,0.10);
  --lt:      #f7f6f2;
  --wh:      #ffffff;
  --txt:     #1a1a2e;
  --mut:     #636e83;
  --bdr:     #e2e8f0;

  --ff-display: 'Libre Baskerville', Georgia, serif;
  --ff-ui:      'Outfit', 'Helvetica Neue', sans-serif;

  --radius:    4px;
  --radius-md: 8px;
  --radius-lg: 10px;

  --shadow-card:  0 4px 24px rgba(22,32,64,0.09);
  --shadow-hover: 0 12px 40px rgba(22,32,64,0.15);

  --transition:      0.28s cubic-bezier(0.4,0,0.2,1);
  --transition-fast: 0.16s ease;

  --max-w:      1100px;
  --section-py: clamp(60px, 8vw, 100px);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-ui);
  background: var(--wh);
  color: var(--txt);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1,h2,h3,h4,h5 {
  font-family: var(--ff-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.01em;
}

.display-xl  { font-size: clamp(2.2rem, 4.5vw, 3.4rem); }
.display-lg  { font-size: clamp(1.8rem, 3vw, 2.6rem); }
.display-md  { font-size: clamp(1.5rem, 2.5vw, 2.1rem); }

.section-label {
  font-family: var(--ff-ui);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.lead {
  font-size: clamp(0.88rem, 1.2vw, 1rem);
  line-height: 1.82;
  color: var(--mut);
  font-weight: 300;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 52px);
}

.section        { padding: var(--section-py) 0; }
.section--wh    { background: var(--wh); }
.section--lt    { background: var(--lt); }
.section--navy  { background: var(--navy); }
.section--navy2 { background: var(--navy2); }
.section--navylt{ background: var(--navylt); }

/* ============================================================
   GOLD BAR ACCENT
   ============================================================ */
.gold-bar {
  display: block;
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
}
.gold-bar--center { margin: 0 auto; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-ui);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  padding: 13px 26px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy2);
}
.btn-primary:hover {
  background: var(--goldl);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--navy2);
}

.btn-ghost {
  background: transparent;
  color: var(--mut);
  padding: 0;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  gap: 6px;
}
.btn-ghost::after { content: '→'; transition: transform var(--transition-fast); }
.btn-ghost:hover::after { transform: translateX(5px); }
.btn-ghost:hover { color: var(--txt); }

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--navy2);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}

#site-header.scrolled {
  box-shadow: 0 2px 24px rgba(0,0,0,0.25);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 52px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.site-logo { display: flex; flex-direction: column; }
.logo-name {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--wh);
  letter-spacing: .02em;
  line-height: 1.2;
}
.logo-tagline {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--ff-ui);
  margin-top: 2px;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 36px;
}
.site-nav a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.62);
  font-weight: 400;
  letter-spacing: 0.03em;
  transition: color var(--transition-fast);
}
.site-nav a:hover,
.site-nav a.active { color: var(--wh); }

.nav-cta {
  background: transparent !important;
  color: var(--gold) !important;
  border: 1.5px solid var(--gold) !important;
  padding: 8px 20px;
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: var(--transition);
}
.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--navy2) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  width: 22px;
  height: 1.5px;
  background: var(--wh);
  transition: var(--transition);
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  background: var(--navy);
  min-height: 560px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
  padding-top: 68px; /* header offset */
}

/* Ornament rings */
.hero-ornament {
  position: absolute;
  right: -60px; top: -60px;
  width: 560px; height: 560px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.04);
  pointer-events: none;
}
.hero-ornament2 {
  position: absolute;
  right: 40px; top: 30px;
  width: 420px; height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(212,149,10,0.07);
  pointer-events: none;
}

.hero-left {
  padding: 72px clamp(20px,4vw,48px) 60px clamp(20px,5vw,52px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.hero-eyebrow-line {
  width: 30px; height: 2px;
  background: var(--gold);
  border-radius: 1px;
  flex-shrink: 0;
}
.hero-eyebrow-txt {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  font-family: var(--ff-ui);
}

.hero-h1 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  font-weight: 700;
  color: var(--wh);
  line-height: 1.14;
  max-width: 440px;
  margin-bottom: 10px;
}
.hero-h1 em { color: var(--goldl); font-style: italic; }

.hero-accent-bar {
  width: 48px; height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 14px 0 22px;
}

.hero-desc {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.82;
  max-width: 380px;
  margin-bottom: 32px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

/* Hero right: photo column */
.hero-right {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-photo-col {
  width: 80%;
  max-width: 320px;
  height: 100%;
  position: relative;
  margin-top: 40px;
}

.hero-photo-bg {
  position: absolute;
  bottom: 0;
  left: 50%; transform: translateX(-50%);
  width: 80%;
  height: 88%;
  background: var(--navylt);
  border-radius: 120px 120px 0 0;
}

.hero-photo {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 92%;
  object-fit: cover;
  object-position: center top;
  border-radius: 120px 120px 0 0;
  display: block;
}

/* Floating badge card */
.hero-badge-card {
  position: absolute;
  bottom: 32px;
  left: -20px;
  z-index: 5;
  background: var(--wh);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: 0 12px 40px rgba(0,0,0,.25);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 175px;
}
.badge-card-icon {
  width: 38px; height: 38px;
  background: var(--goldbg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 18px;
  flex-shrink: 0;
}
.badge-card-num {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--txt);
  line-height: 1;
}
.badge-card-lbl {
  font-size: 0.68rem;
  color: var(--mut);
  margin-top: 2px;
  font-family: var(--ff-ui);
}

/* Vertical text */
.hero-vert {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.14);
  white-space: nowrap;
  font-family: var(--ff-ui);
}

/* ============================================================
   ANGEBOT / OFFER SECTION
   ============================================================ */
#angebot {}

.angebot-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}

.angebot-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 340px;
  position: relative;
}

.angebot-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.angebot-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #c8d8e8, #90aec8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: rgba(255,255,255,0.4);
}

.angebot-text .section-label { margin-bottom: 8px; }
.angebot-text h2 { margin-bottom: 14px; color: var(--txt); }
.angebot-text p {
  font-size: 0.84rem;
  color: var(--mut);
  line-height: 1.82;
  margin-bottom: 16px;
  font-weight: 300;
}

/* ============================================================
   LEISTUNGEN (3-column cards)
   ============================================================ */
#leistungen {}

.leistungen-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 36px;
}
.leistungen-header-right {
  font-size: 0.8rem;
  color: var(--mut);
  font-weight: 500;
  cursor: pointer;
  transition: color var(--transition-fast);
}
.leistungen-header-right:hover { color: var(--gold); }

.leistungen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--bdr);
  border: 1px solid var(--bdr);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.leistung-card {
  background: var(--wh);
  padding: 32px 28px;
  position: relative;
  transition: background var(--transition-fast);
  cursor: default;
}
.leistung-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 28px; right: 28px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.leistung-card:hover { background: #fafbfd; }
.leistung-card:hover::after { transform: scaleX(1); }

.leistung-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  background: var(--goldbg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 18px;
}

.leistung-title {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--txt);
  margin-bottom: 12px;
}
.leistung-title--gold { color: var(--gold); }

.leistung-item {
  font-size: 0.76rem;
  color: var(--mut);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 6px;
  line-height: 1.5;
  font-weight: 300;
}
.leistung-item::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 5px;
}

/* ============================================================
   STATS BAR
   ============================================================ */
#stats {
  background: var(--navylt);
  padding: 40px 0;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-number {
  font-family: var(--ff-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--goldl);
  line-height: 1;
}
.stat-label {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 6px;
  font-family: var(--ff-ui);
}

/* ============================================================
   ZUR PERSON / ABOUT
   ============================================================ */
#zur-person {}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.about-img-wrap { position: relative; }
.about-frame {
  position: absolute;
  inset: -12px -12px 12px 12px;
  border: 1px solid rgba(212,149,10,0.2);
  border-radius: var(--radius-lg);
  z-index: 0;
}
.about-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  position: relative;
  z-index: 1;
  display: block;
}
.about-badge {
  position: absolute;
  bottom: 24px; left: -22px;
  z-index: 2;
  background: var(--gold);
  color: var(--navy2);
  padding: 14px 20px;
  border-radius: var(--radius-md);
  font-family: var(--ff-ui);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 6px 24px rgba(212,149,10,0.4);
}
.about-badge span {
  display: block;
  font-family: var(--ff-display);
  font-size: 1.6rem;
  letter-spacing: -.02em;
  line-height: 1;
  margin-bottom: 3px;
}

.about-text .section-label { margin-bottom: 8px; }
.about-text h2 { color: var(--wh); margin-bottom: 18px; }
.about-text p {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.60);
  line-height: 1.85;
  margin-bottom: 14px;
  font-weight: 300;
}

.about-quote {
  padding: 18px 22px;
  background: rgba(212,149,10,0.08);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm,4px) var(--radius-sm,4px) 0;
  margin: 22px 0;
}
.about-quote p {
  font-family: var(--ff-display);
  font-size: 0.96rem;
  font-style: italic;
  color: rgba(255,255,255,0.82) !important;
  margin: 0 !important;
}

.about-quals { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.qual-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.62);
  font-weight: 300;
}
.qual-dot {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--goldbg);
  border: 1px solid rgba(212,149,10,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 9px;
  flex-shrink: 0;
}

/* ============================================================
   PHILOSOPHIE
   ============================================================ */
#philosophie {}

.phil-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.phil-points { display: flex; flex-direction: column; gap: 28px; }
.phil-point  { display: flex; gap: 18px; }
.phil-num {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 700;
  color: rgba(212,149,10,0.18);
  line-height: 1;
  flex-shrink: 0;
  width: 36px;
}
.phil-point h4 {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  color: var(--txt);
  margin-bottom: 6px;
}
.phil-point p {
  font-size: 0.8rem;
  color: var(--mut);
  line-height: 1.78;
  font-weight: 300;
}

.therapy-box {
  background: var(--wh);
  border: 1px solid var(--bdr);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-card);
}
.therapy-box h3 {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  color: var(--txt);
  margin-bottom: 14px;
}
.therapy-box p {
  font-size: 0.8rem;
  color: var(--mut);
  line-height: 1.82;
  margin-bottom: 10px;
  font-weight: 300;
}
.therapy-feats { display: flex; flex-direction: column; gap: 8px; margin-top: 20px; }
.therapy-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.76rem;
  color: var(--mut);
  font-weight: 300;
}
.therapy-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ============================================================
   VERFAHREN / PROCESS
   ============================================================ */
#verfahren {}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--bdr);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 44px;
}
.process-step {
  background: var(--wh);
  padding: 30px 24px;
  transition: background var(--transition-fast);
}
.process-step:hover { background: #fafbfd; }
.step-num {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 14px;
  font-family: var(--ff-ui);
}
.process-step h4 {
  font-family: var(--ff-display);
  font-size: 1rem;
  color: var(--txt);
  margin-bottom: 8px;
}
.process-step p {
  font-size: 0.76rem;
  color: var(--mut);
  line-height: 1.72;
  font-weight: 300;
}

/* ============================================================
   FAQ
   ============================================================ */
#faq {}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: start;
}

.faq-left .section-label { margin-bottom: 8px; }
.faq-left h2 { color: var(--txt); margin-bottom: 10px; }
.faq-left .lead { margin-bottom: 28px; }

.faq-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 240px;
  background: linear-gradient(135deg, #c0d4e8, #8aacc8);
}

.faq-items { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  border: 1px solid var(--bdr);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-question {
  padding: 14px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--txt);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-family: var(--ff-ui);
}
.faq-arrow {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-arrow--closed { background: var(--bdr); color: var(--mut); }
.faq-answer {
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  font-size: 0.82rem;
  color: var(--mut);
  line-height: 1.78;
  font-weight: 300;
}
.faq-item.open .faq-answer {
  max-height: 200px;
  padding: 0 18px 16px;
}

/* ============================================================
   STIMMEN / TESTIMONIALS
   ============================================================ */
#stimmen {}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  margin-top: 44px;
}
.testi-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform var(--transition), border-color var(--transition);
}
.testi-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212,149,10,0.25);
}
.quote-mark {
  font-family: var(--ff-display);
  font-size: 3.5rem;
  color: var(--gold);
  opacity: 0.22;
  line-height: 0.8;
  margin-bottom: 12px;
}
.testi-text {
  font-family: var(--ff-display);
  font-size: 0.88rem;
  font-style: italic;
  color: rgba(255,255,255,0.76);
  line-height: 1.72;
  margin-bottom: 20px;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.author-av {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8a6e2e, #d4950a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-weight: 700;
  color: var(--navy2);
  font-size: 0.74rem;
}
.author-name { font-size: 0.78rem; font-weight: 600; color: var(--wh); }
.author-role { font-size: 0.68rem; color: rgba(255,255,255,0.36); }

/* ============================================================
   BLOG
   ============================================================ */
#blog {}

.blog-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px;
}
.blog-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--bdr);
  background: var(--wh);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.blog-img {
  height: 160px;
  overflow: hidden;
  background: linear-gradient(135deg,#c4d4e8,#8aaccb);
}
.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-img img { transform: scale(1.04); }
.blog-body { padding: 20px 20px 22px; }
.blog-meta { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.blog-cat {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  font-family: var(--ff-ui);
}
.blog-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--mut); }
.blog-date { font-size: 0.62rem; color: var(--mut); }
.blog-title {
  font-family: var(--ff-display);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--txt);
  line-height: 1.36;
  margin-bottom: 12px;
}
.blog-bar { width: 36px; height: 2px; background: var(--gold); border-radius: 1px; }

/* ============================================================
   KONTAKT
   ============================================================ */
#kontakt {}

.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.kontakt-info .section-label { margin-bottom: 8px; }
.kontakt-info h2 { color: var(--wh); margin-bottom: 12px; }
.kontakt-info .lead { color: rgba(255,255,255,0.52); margin-bottom: 36px; }

.contact-details { display: flex; flex-direction: column; gap: 18px; }
.contact-detail { display: flex; gap: 14px; align-items: flex-start; }
.detail-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(212,149,10,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  font-size: 14px;
}
.detail-label {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--ff-ui);
  margin-bottom: 3px;
}
.detail-value { font-size: 0.84rem; color: var(--wh); font-weight: 300; }
.detail-value a { color: var(--wh); }

.contact-form-wrap {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
  font-family: var(--ff-ui);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 11px 14px;
  color: var(--wh);
  font-family: var(--ff-ui);
  font-size: 0.84rem;
  outline: none;
  transition: border-color var(--transition-fast);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(212,149,10,0.05);
}
.form-group select option { background: var(--navy2); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-submit {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
}
.form-privacy {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.32);
  line-height: 1.6;
  margin-top: 14px;
  font-weight: 300;
}
.form-privacy a { color: var(--gold); }

#form-success,
#form-error { border-radius: var(--radius-md); margin-bottom: 16px; font-size: 0.84rem; }

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: var(--navy2);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 52px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 24px;
}
.footer-brand p {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.36);
  line-height: 1.75;
  margin-top: 12px;
  max-width: 220px;
  font-weight: 300;
}
.footer-col-title {
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  font-family: var(--ff-ui);
  margin-bottom: 14px;
}
.footer-link {
  display: block;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.42);
  margin-bottom: 8px;
  font-weight: 300;
  transition: color var(--transition-fast);
}
.footer-link:hover { color: var(--goldl); }

.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-row { display: flex; align-items: flex-start; gap: 10px; }
.footer-contact-ico { color: var(--gold); font-size: 13px; margin-top: 2px; flex-shrink: 0; }
.footer-contact-txt { font-size: 0.76rem; color: rgba(255,255,255,0.42); line-height: 1.5; font-weight: 300; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 0.7rem; color: rgba(255,255,255,0.2); font-weight: 300; }
.footer-legal { display: flex; gap: 18px; }
.footer-legal a {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.2);
  font-weight: 300;
  transition: color var(--transition-fast);
}
.footer-legal a:hover { color: var(--goldl); }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ============================================================
   MOBILE MENU
   ============================================================ */
.mobile-menu {
  position: fixed; inset: 0;
  background: rgba(13,21,40,0.97);
  backdrop-filter: blur(18px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: var(--ff-display);
  font-size: 2.2rem;
  color: var(--wh);
  font-weight: 700;
  transition: color var(--transition-fast);
}
.mobile-menu a:hover { color: var(--goldl); }
.menu-close {
  position: absolute; top: 24px; right: 24px;
  background: none; border: none;
  color: var(--wh); font-size: 1.4rem; cursor: pointer;
}

/* ============================================================
   PAGE / INNER TEMPLATES
   ============================================================ */
.page-hero {
  padding: 140px 0 72px;
  background: var(--navy);
}
.page-hero h1 { font-size: clamp(2rem,4vw,3.5rem); color: var(--wh); margin-bottom: 14px; }
.page-hero p  { color: rgba(255,255,255,0.55); max-width: 540px; font-size: 0.9rem; }

.breadcrumb {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.76rem;
  color: rgba(255,255,255,0.38);
  margin-bottom: 22px;
  font-family: var(--ff-ui);
}
.breadcrumb a { color: var(--gold); }

.entry-content {
  max-width: 740px;
  margin: 0 auto;
  padding: var(--section-py) clamp(20px,5vw,52px);
  color: var(--mut);
  line-height: 1.85;
  font-weight: 300;
}
.entry-content h2,.entry-content h3 { color: var(--txt); margin: 2em 0 0.8em; }
.entry-content p { margin-bottom: 1.4em; font-size: 0.92rem; }
.entry-content a { color: var(--gold); text-decoration: underline; }
.entry-content ul,.entry-content ol { padding-left: 1.5em; margin-bottom: 1.4em; }
.entry-content li { margin-bottom: 0.5em; font-size: 0.92rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  #hero                { grid-template-columns: 1fr; min-height: auto; }
  .hero-right          { display: none; }
  .angebot-grid,
  .about-grid,
  .phil-grid,
  .faq-grid,
  .kontakt-grid        { grid-template-columns: 1fr; gap: 40px; }
  .process-grid        { grid-template-columns: repeat(2,1fr); }
  .stats-inner         { grid-template-columns: repeat(2,1fr); }
  .leistungen-grid     { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .site-nav      { display: none; }
  .hamburger     { display: flex; }
  .testi-grid,
  .blog-grid     { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr; gap: 28px; }
  .form-row      { grid-template-columns: 1fr; }
  .leistungen-grid { grid-template-columns: 1fr; }
  .process-grid  { grid-template-columns: 1fr; }
}
