/* =====================================================
   inso-lutz.de – Rechtsanwaltskanzlei Lutz
   Design: Elegant, seriös – Dunkelblau + Gold
   ===================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #0f1f3d;
  --navy-mid:   #1a3260;
  --navy-light: #eef2f8;
  --gold:       #b8973e;
  --gold-light: #f9f4e8;
  --gold-d:     #9a7c2e;
  --text:       #1a2332;
  --muted:      #5a6a7e;
  --border:     #dde4ed;
  --bg:         #f7f8fb;
  --white:      #ffffff;
  --radius-sm:  0.3rem;
  --radius:     0.6rem;
  --radius-lg:  1rem;
  --shadow-sm:  0 1px 4px rgba(15,31,61,0.07);
  --shadow:     0 4px 20px rgba(15,31,61,0.1);
  --shadow-lg:  0 12px 48px rgba(15,31,61,0.15);
  --transition: 0.22s ease;
  --max-w:      1100px;
  --font:       Georgia, 'Times New Roman', serif;
  --font-sans:  'Segoe UI', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); color: var(--text); background: var(--bg); line-height: 1.75; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
section { padding: 5.5rem 0; }

/* ===== TOPBAR ===== */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.45);
  font-size: 0.76rem;
  padding: 0.4rem 0;
  letter-spacing: 0.03em;
  font-family: var(--font-sans);
}
.topbar-inner { display: flex; justify-content: space-between; align-items: center; }
.topbar a { color: rgba(255,255,255,0.45); transition: color var(--transition); }
.topbar a:hover { color: var(--gold); }
.topbar-right { display: flex; gap: 1.5rem; }

/* ===== HEADER ===== */
header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 200;
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between; height: 74px;
}
.logo {
  display: flex; align-items: center; gap: 0.75rem;
  font-family: var(--font);
}
.logo-seal {
  width: 44px; height: 44px;
  background: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  border: 2px solid var(--gold);
}
.logo-seal span { color: var(--gold); font-size: 1rem; font-weight: 900; font-family: var(--font); }
.logo-text { line-height: 1.2; }
.logo-text .name { font-size: 1.15rem; font-weight: 700; color: var(--navy); letter-spacing: 0.01em; }
.logo-text .sub { font-size: 0.72rem; color: var(--gold); font-family: var(--font-sans); letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; }

.nav-links { display: flex; gap: 0.1rem; list-style: none; }
.nav-links a {
  color: var(--muted); font-size: 0.88rem; font-weight: 600;
  padding: 0.45rem 0.85rem; border-radius: var(--radius-sm);
  transition: all var(--transition); font-family: var(--font-sans);
}
.nav-links a:hover, .nav-links a.active { color: var(--navy); background: var(--navy-light); }
.nav-cta {
  background: var(--navy) !important; color: var(--white) !important;
  padding: 0.45rem 1.1rem !important; border-radius: var(--radius-sm) !important;
}
.nav-cta:hover { background: var(--navy-mid) !important; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--transition); }

/* ===== HERO ===== */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: 7rem 0 6rem;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(184,151,62,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 70%);
}
.hero-inner {
  display: grid; grid-template-columns: 1.2fr 0.8fr;
  gap: 5rem; align-items: center; position: relative;
}
.hero-kanzlei {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.25rem;
  font-family: var(--font-sans);
  display: flex; align-items: center; gap: 0.75rem;
}
.hero-kanzlei::before {
  content: '';
  display: block; width: 32px; height: 1px;
  background: var(--gold);
}
.hero h1 {
  font-family: var(--font);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700; line-height: 1.2;
  letter-spacing: -0.01em; margin-bottom: 1.5rem;
}
.hero h1 em { font-style: normal; color: var(--gold); }
.hero p {
  color: rgba(255,255,255,0.6);
  font-size: 1.03rem; max-width: 500px;
  margin-bottom: 2.5rem; line-height: 1.8;
  font-family: var(--font-sans);
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-aside {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(184,151,62,0.25);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.hero-aside-title {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.5rem;
  font-family: var(--font-sans);
}
.hero-rechtsgebiet {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.9rem; color: rgba(255,255,255,0.75);
  font-family: var(--font-sans);
}
.hero-rechtsgebiet:last-child { border-bottom: none; }
.hero-rechtsgebiet .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.8rem 1.9rem;
  border-radius: var(--radius-sm);
  font-weight: 700; font-size: 0.92rem;
  cursor: pointer; border: 2px solid transparent;
  transition: all var(--transition);
  font-family: var(--font-sans);
}
.btn-primary { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn-primary:hover {
  background: var(--gold-d); border-color: var(--gold-d);
  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(184,151,62,0.35);
}
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.3); }
.btn-outline-white:hover { border-color: var(--gold); color: var(--gold); }
.btn-navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-2px); box-shadow: var(--shadow); }

/* ===== DIVIDER ===== */
.gold-divider {
  width: 48px; height: 3px;
  background: var(--gold); margin: 1.25rem 0;
}
.gold-divider.center { margin: 1.25rem auto; }

/* ===== SECTION LABELS ===== */
.section-label {
  display: inline-block; color: var(--gold);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 0.5rem; font-family: var(--font-sans);
}
.section-title {
  font-family: var(--font);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700; letter-spacing: -0.01em;
  line-height: 1.2; margin-bottom: 1rem; color: var(--navy);
}
.section-sub { color: var(--muted); max-width: 560px; font-size: 1rem; line-height: 1.8; }
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* ===== LEISTUNGSKARTEN ===== */
.leistung-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.leistung-card {
  background: var(--white); border-radius: var(--radius);
  padding: 2rem; box-shadow: var(--shadow);
  border: 1px solid var(--border);
  border-top: 3px solid transparent;
  transition: all var(--transition);
}
.leistung-card:hover {
  border-top-color: var(--gold);
  transform: translateY(-4px); box-shadow: var(--shadow-lg);
}
.leistung-icon {
  width: 48px; height: 48px;
  background: var(--gold-light);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 1.2rem;
}
.leistung-card h3 {
  font-family: var(--font);
  font-size: 1.1rem; font-weight: 700;
  color: var(--navy); margin-bottom: 0.5rem;
}
.leistung-card p { color: var(--muted); font-size: 0.92rem; line-height: 1.7; }
.leistung-card .mehr {
  display: inline-flex; align-items: center; gap: 0.3rem;
  color: var(--gold); font-size: 0.83rem; font-weight: 700;
  margin-top: 1rem; transition: gap var(--transition);
}
.leistung-card:hover .mehr { gap: 0.6rem; }

/* ===== ANWALT PROFIL ===== */
.profil-wrap {
  display: grid; grid-template-columns: 0.8fr 1.2fr;
  gap: 4rem; align-items: center;
}
.profil-visual {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 3rem; text-align: center;
  font-size: 5rem; min-height: 280px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.profil-visual::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 4px; background: var(--gold);
}
.profil-content .section-label { margin-bottom: 0.4rem; }
.profil-content h2 {
  font-family: var(--font);
  font-size: 2rem; font-weight: 700;
  color: var(--navy); margin-bottom: 0.25rem;
}
.profil-content .titel {
  color: var(--gold); font-size: 0.85rem;
  font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 1.25rem;
  font-family: var(--font-sans);
}
.profil-content p { color: var(--muted); font-size: 0.97rem; line-height: 1.85; margin-bottom: 0.75rem; }
.profil-list { list-style: none; padding: 0; margin: 1.25rem 0; }
.profil-list li {
  padding: 0.35rem 0 0.35rem 1.4rem;
  position: relative; font-size: 0.92rem; color: var(--text);
  border-bottom: 1px solid var(--border);
}
.profil-list li:last-child { border-bottom: none; }
.profil-list li::before { content: '—'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

/* ===== REFERENZEN / ZITATE ===== */
.zitat-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.zitat-card {
  background: var(--white); border-radius: var(--radius);
  padding: 2rem; box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.zitat-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 0.75rem; }
.zitat-text { font-size: 0.95rem; color: var(--muted); line-height: 1.8; margin-bottom: 1.25rem; font-style: italic; }
.zitat-author strong { display: block; font-size: 0.88rem; font-weight: 800; color: var(--navy); }
.zitat-author span { font-size: 0.8rem; color: var(--muted); }

/* ===== ABLAUF ===== */
.ablauf-list { margin-top: 3rem; display: flex; flex-direction: column; gap: 0; }
.ablauf-step {
  display: flex; gap: 2rem; align-items: flex-start;
  padding: 1.75rem 0; border-bottom: 1px solid var(--border);
  position: relative;
}
.ablauf-step:last-child { border-bottom: none; }
.ablauf-num {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--navy); color: var(--gold);
  border-radius: 50%; font-size: 1.1rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font);
}
.ablauf-content h3 { font-size: 1.05rem; font-weight: 800; color: var(--navy); margin-bottom: 0.35rem; font-family: var(--font); }
.ablauf-content p { font-size: 0.92rem; color: var(--muted); line-height: 1.75; }

/* ===== CTA ===== */
.cta-section {
  background: var(--navy); color: var(--white);
  text-align: center; padding: 5.5rem 0; position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(184,151,62,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.cta-section h2 {
  font-family: var(--font);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 700; margin-bottom: 1rem; letter-spacing: -0.01em;
  position: relative;
}
.cta-section p { color: rgba(255,255,255,0.6); max-width: 520px; margin: 0 auto 2rem; position: relative; }

/* ===== KONTAKT ===== */
.contact-wrap {
  display: grid; grid-template-columns: 1fr 1.6fr;
  gap: 3rem; align-items: start; margin-top: 3rem;
}
.contact-info h3 {
  font-family: var(--font);
  font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-bottom: 1rem;
}
.contact-info p { color: var(--muted); font-size: 0.95rem; line-height: 1.8; margin-bottom: 1.5rem; }
.contact-detail { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1rem; font-size: 0.92rem; }
.contact-detail-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  background: var(--gold-light); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.contact-detail strong { display: block; font-weight: 700; font-size: 0.8rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }
.contact-form-box {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2.5rem; box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 700; margin-bottom: 0.4rem; color: var(--navy); font-family: var(--font-sans); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 0.7rem 1rem;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-family: var(--font-sans); font-size: 0.95rem;
  color: var(--text); background: var(--bg);
  transition: border-color var(--transition); outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--gold); background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-check { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.82rem; color: var(--muted); }
.form-check input { width: auto; margin-top: 3px; }
.form-check a { color: var(--gold); text-decoration: underline; }

.hinweis-box {
  background: var(--gold-light); border: 1px solid #e8d8a0;
  border-radius: var(--radius-sm); padding: 1rem 1.25rem;
  font-size: 0.85rem; color: #7a5c1e; margin-bottom: 1.5rem;
  line-height: 1.65;
}

/* ===== PAGE HERO ===== */
.page-hero {
  background: var(--navy); color: var(--white);
  padding: 4rem 0 3.5rem;
  border-bottom: 3px solid var(--gold);
}
.page-hero-inner { max-width: 720px; }
.breadcrumb { display: flex; gap: 0.5rem; align-items: center; font-size: 0.78rem; color: rgba(255,255,255,0.3); margin-bottom: 1.2rem; font-family: var(--font-sans); }
.breadcrumb a { color: rgba(255,255,255,0.3); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.18); }
.page-hero h1 {
  font-family: var(--font);
  font-size: clamp(1.9rem, 4vw, 2.9rem); font-weight: 700;
  letter-spacing: -0.01em; margin-bottom: 0.75rem;
}
.page-hero p { color: rgba(255,255,255,0.55); font-size: 1.02rem; font-family: var(--font-sans); }

/* ===== PROSE ===== */
.prose { max-width: 800px; margin: 0 auto; }
.prose h2 { font-family: var(--font); font-size: 1.3rem; font-weight: 700; margin: 2.5rem 0 0.75rem; color: var(--navy); }
.prose h3 { font-size: 1.05rem; font-weight: 700; margin: 1.75rem 0 0.5rem; color: var(--navy); }
.prose p, .prose ul, .prose ol { color: var(--muted); font-size: 0.97rem; line-height: 1.85; margin-bottom: 0.75rem; }
.prose ul, .prose ol { padding-left: 1.5rem; }
.prose li { margin-bottom: 0.3rem; }
.prose a { color: var(--gold); text-decoration: underline; }

/* ===== FOOTER ===== */
footer { background: var(--navy); color: rgba(255,255,255,0.45); padding: 4rem 0 1.5rem; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand p { font-size: 0.87rem; line-height: 1.8; max-width: 280px; margin-top: 0.75rem; }
.footer-col h4 { color: var(--gold); font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 1.1rem; font-family: var(--font-sans); }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.55rem; }
.footer-col ul a { color: rgba(255,255,255,0.4); font-size: 0.87rem; transition: color var(--transition); }
.footer-col ul a:hover { color: var(--gold); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 1.5rem; font-size: 0.78rem; flex-wrap: wrap; gap: 0.5rem; }
.footer-bottom a { color: rgba(255,255,255,0.3); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--gold); }

/* ===== 404 ===== */
.error-page { min-height: 68vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 4rem 1.5rem; }
.error-code { font-size: 7rem; font-weight: 900; color: var(--gold); line-height: 1; margin-bottom: 0.75rem; letter-spacing: -0.05em; font-family: var(--font); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-aside { display: none; }
  .profil-wrap { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  .topbar-right { display: none; }
  .nav-links {
    display: none; flex-direction: column; gap: 0;
    position: absolute; top: 74px; left: 0; right: 0;
    background: var(--white); border-top: 3px solid var(--gold);
    padding: 0.75rem 1.5rem 1.25rem; box-shadow: var(--shadow-lg);
  }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid var(--border); }
  .nav-links a { display: block; padding: 0.7rem 0; border-radius: 0; }
  .nav-toggle { display: flex; }
  header { position: relative; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  section { padding: 3.5rem 0; }
}
