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

:root {
  --primary: #1a4a5a;
  --primary-dark: #0f3541;
  --accent: #c2763a;
  --accent-light: rgba(194,118,58,0.1);
  --bg: #faf9f7;
  --white: #ffffff;
  --text: #2c2c2c;
  --text-light: #5a5a5a;
  --border: #e5e0da;
  --alt-bg: #f2efeb;
  --display: 'DM Serif Display', Georgia, serif;
  --body: 'Source Sans 3', 'Segoe UI', sans-serif;
  --max-w: 1200px;
  --pad: clamp(4rem, 8vw, 7rem);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

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

h1, h2, h3, h4 { font-family: var(--display); font-weight: 400; line-height: 1.2; }

.label {
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
  display: block;
}

.s-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 8px;
  font-family: var(--body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
}
.btn-p { background: var(--accent); color: var(--white); }
.btn-p:hover { background: #a8642e; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(194,118,58,0.3); }
.btn-o { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.5); }
.btn-o:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn-dark { background: var(--primary); color: var(--white); }
.btn-dark:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(26,74,90,0.25); }

/* NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}
.nav.solid {
  background: rgba(250,249,247,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-brand { display: flex; align-items: center; gap: 0.75rem; }
.nav-logo { height: 42px; width: auto; transition: filter 0.4s ease; }
.nav:not(.solid) .nav-logo { filter: brightness(0) invert(1); }
.nav-brand-text { display: flex; flex-direction: column; }
.nav-brand-name {
  font-family: var(--display); font-size: 1.15rem;
  color: var(--white);
  transition: color 0.4s ease;
  line-height: 1.2;
}
.nav-brand-sub {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.7);
  transition: color 0.4s ease;
  letter-spacing: 0.03em;
}
.nav.solid .nav-brand-name { color: var(--primary); }
.nav.solid .nav-brand-sub { color: var(--text-light); }
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a {
  font-size: 0.88rem; font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color 0.3s ease;
  position: relative;
}
.nav.solid .nav-links a { color: var(--text-light); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1.5px; background: var(--accent);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--white); }
.nav.solid .nav-links a:hover { color: var(--primary); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--accent) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.2rem;
  border-radius: 6px;
  font-weight: 600 !important;
  transition: background 0.2s ease, transform 0.15s ease !important;
}
.nav-cta:hover { background: #a8642e !important; transform: translateY(-1px); }
.nav-cta::after { display: none !important; }
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer; padding: 0.5rem;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--white); margin: 5px 0;
  transition: all 0.3s ease;
}
.nav.solid .nav-toggle span { background: var(--primary); }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* LANG TOGGLE */
.lang-toggle {
  background: none; border: 1.5px solid rgba(255,255,255,0.4);
  color: rgba(255,255,255,0.85); font-family: var(--body);
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.05em;
  padding: 0.25rem 0.6rem; border-radius: 4px; cursor: pointer;
  transition: all 0.3s ease;
}
.lang-toggle:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.nav.solid .lang-toggle { color: var(--text-light); border-color: var(--border); }
.nav.solid .lang-toggle:hover { color: var(--primary); border-color: var(--primary); }

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  max-height: 1000px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.55);
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to top,
    rgba(15,53,65,0.85) 0%,
    rgba(15,53,65,0.4) 40%,
    rgba(15,53,65,0.15) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  padding-top: 90px;
  padding-bottom: clamp(3rem, 8vh, 6rem);
  width: 100%;
}
.hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  color: var(--white);
  margin-bottom: 1.25rem;
  max-width: 700px;
}
.hero h1 em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }

.hero-bar {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-bar-item { display: flex; align-items: center; gap: 0.75rem; }
.hero-bar-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--accent); flex-shrink: 0;
}
.hero-bar-text { display: flex; flex-direction: column; }
.hero-bar-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.5); }
.hero-bar-value { font-size: 0.92rem; color: var(--white); font-weight: 500; }

/* NOTICE */
.notice {
  background: var(--accent-light);
  border-left: 3px solid var(--accent);
  padding: 1rem 1.5rem;
  margin: 2rem auto;
  max-width: var(--max-w);
  border-radius: 0 8px 8px 0;
  font-size: 0.92rem;
  color: var(--text);
}

/* PRAXIS-HINWEIS (Urlaub o.ä.) – nur sichtbar, wenn Text eingetragen ist */
.hinweis-wrap { padding-top: 1.75rem; }
.hinweis-wrap .notice { margin: 0; max-width: none; }

/* AUSZEICHNUNGEN / URKUNDEN */
.awards-header { text-align: center; max-width: 640px; margin: 0 auto 2.5rem; }
.awards-header p { color: var(--text-light); margin-top: -0.25rem; }
.awards-img {
  display: block; max-width: 760px; margin: 0 auto;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 14px; padding: 0.6rem;
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.awards-img:hover { transform: translateY(-4px); box-shadow: 0 20px 48px rgba(0,0,0,0.12); }
.awards-img img { width: 100%; border-radius: 8px; }
.awards-caption { text-align: center; font-size: 0.85rem; color: var(--text-light); margin-top: 1rem; }

/* SECTIONS */
.section { padding: var(--pad) 0; }
.section-alt { background: var(--alt-bg); }
.section-dark { background: var(--primary); color: var(--white); }

/* WELCOME */
.welcome-grid {
  display: grid; grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem; align-items: center;
}
.welcome-text p { margin-bottom: 1.25rem; color: var(--text-light); }
.welcome-portrait {
  position: relative;
}
.welcome-portrait-img {
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 24px 48px rgba(0,0,0,0.12);
}
.welcome-portrait-img img { width: 100%; object-fit: cover; }
.welcome-portrait-accent {
  position: absolute;
  bottom: -16px; right: -16px;
  width: 120px; height: 120px;
  border: 3px solid var(--accent);
  border-radius: 12px;
  z-index: -1;
}

/* SERVICES */
.services-header { text-align: center; max-width: 640px; margin: 0 auto 3.5rem; }
.services-header p { color: var(--text-light); margin-top: -0.5rem; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.s-card {
  background: var(--white); border-radius: 12px; padding: 2.25rem 1.75rem;
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative; overflow: hidden;
}
.s-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.s-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); }
.s-card:hover::after { transform: scaleX(1); }
.s-card-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--accent-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem; font-size: 1.4rem;
  color: var(--accent);
}
.s-card h3 { font-size: 1.15rem; color: var(--primary); margin-bottom: 0.75rem; }
.s-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.65; }
.s-card-link {
  display: inline-flex; align-items: center; gap: 0.35rem;
  margin-top: 1.25rem; font-size: 0.85rem; font-weight: 600;
  color: var(--accent); transition: gap 0.2s ease;
}
.s-card-link:hover { gap: 0.65rem; }

/* DETAIL SECTIONS */
.detail-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.detail-text h2 { font-size: clamp(1.5rem, 3vw, 2rem); color: var(--primary); margin-bottom: 1.25rem; }
.detail-text p { color: var(--text-light); margin-bottom: 1rem; }
.detail-list { margin-top: 1.5rem; }
.detail-list li {
  padding: 0.55rem 0 0.55rem 1.5rem; position: relative;
  color: var(--text-light); font-size: 0.95rem;
  border-bottom: 1px solid var(--border);
}
.detail-list li:last-child { border-bottom: none; }
.detail-list li::before {
  content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
}
.detail-img {
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}
.detail-img img { width: 100%; object-fit: cover; aspect-ratio: 4/3; }

/* CTA BANNER */
.cta-banner {
  padding: clamp(3rem, 6vw, 5rem) 0;
  text-align: center;
}
.cta-banner h2 {
  color: var(--white);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  margin-bottom: 1rem;
}
.cta-banner p {
  color: rgba(255,255,255,0.75);
  max-width: 500px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
}

/* TEAM */
.team-header { text-align: center; max-width: 640px; margin: 0 auto 3.5rem; }
.team-lead { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-bottom: 3.5rem; }
.t-card {
  background: var(--white); border-radius: 14px; overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.t-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
.t-card-img { aspect-ratio: 3/4; overflow: hidden; }
.t-card-img img {
  width: 100%; height: 100%; object-fit: cover; object-position: top;
  transition: transform 0.5s ease;
}
.t-card-img img.brighten { filter: brightness(1.15); }
.t-card:hover .t-card-img img { transform: scale(1.03); }
.t-card-body { padding: 1.5rem; }
.t-card-body h3 { font-size: 1.1rem; color: var(--primary); margin-bottom: 0.2rem; }
.t-card-role { font-size: 0.82rem; color: var(--accent); font-weight: 600; margin-bottom: 0.75rem; display: block; }
.t-card-meta { font-size: 0.82rem; color: var(--text-light); line-height: 1.6; }
.t-card-meta summary {
  cursor: pointer; font-weight: 600; color: var(--primary);
  font-size: 0.82rem; margin-top: 0.5rem;
  list-style: none;
}
.t-card-meta summary::-webkit-details-marker { display: none; }
.t-card-meta summary::before { content: '+ '; color: var(--accent); }
.t-card-meta details[open] summary::before { content: '- '; }
.t-card-meta summary:hover { color: var(--accent); }
.t-card-cv { margin-top: 0.75rem; font-size: 0.78rem; line-height: 1.7; }
.t-card-cv li { padding: 0.12rem 0; }

.team-staff { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.75rem; }
.staff {text-align: center; }
.staff-img {
  width: 110px; height: 110px; border-radius: 50%; overflow: hidden;
  margin: 0 auto 0.9rem; border: 3px solid var(--border);
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.staff:hover .staff-img { border-color: var(--accent); transform: scale(1.05); }
.staff-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.staff h4 { font-size: 0.92rem; color: var(--primary); margin-bottom: 0.1rem; }
.staff-role { font-size: 0.78rem; color: var(--text-light); }

/* GALLERY */
.gallery-header { text-align: center; max-width: 600px; margin: 0 auto 3rem; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 200px;
  gap: 0.75rem;
}
.g-item {
  border-radius: 10px; overflow: hidden; cursor: pointer;
  position: relative;
}
.g-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.g-item:hover img { transform: scale(1.05); }
.g-item:nth-child(1) { grid-column: span 7; grid-row: span 2; }
.g-item:nth-child(2) { grid-column: span 5; }
.g-item:nth-child(3) { grid-column: span 5; }
.g-item:nth-child(4) { grid-column: span 4; }
.g-item:nth-child(5) { grid-column: span 4; }
.g-item:nth-child(6) { grid-column: span 4; }

/* DOWNLOADS */
.dl-header { text-align: center; max-width: 600px; margin: 0 auto 2.5rem; }
.dl-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
.dl-item {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.9rem 1.1rem; background: var(--white);
  border: 1px solid var(--border); border-radius: 8px;
  font-size: 0.85rem; color: var(--text);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.dl-item:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.04); }
.dl-icon {
  flex-shrink: 0; width: 34px; height: 34px; border-radius: 8px;
  background: var(--accent-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 0.85rem;
}

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.contact-cards { display: flex; flex-direction: column; gap: 1.25rem; }
.c-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 12px; padding: 1.5rem;
}
.c-card h4 { font-size: 1rem; color: var(--primary); margin-bottom: 0.75rem; }
.c-card p, .c-card a { font-size: 0.92rem; color: var(--text-light); line-height: 1.7; }
.c-card a:hover { color: var(--accent); }
.hours-tbl { width: 100%; font-size: 0.9rem; }
.hours-tbl td { padding: 0.35rem 0; color: var(--text-light); }
.hours-tbl td:first-child { font-weight: 500; color: var(--text); width: 55%; }

.c-form {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 14px; padding: 2rem;
}
.c-form h3 { font-size: 1.25rem; color: var(--primary); margin-bottom: 1.5rem; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.f-group { margin-bottom: 0.9rem; }
.f-group label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--text); margin-bottom: 0.3rem; }
.f-group input, .f-group select, .f-group textarea {
  width: 100%; padding: 0.65rem 0.85rem;
  border: 1.5px solid var(--border); border-radius: 6px;
  font-family: var(--body); font-size: 0.88rem;
  background: var(--bg); color: var(--text);
  transition: border-color 0.2s ease;
}
.f-group input:focus, .f-group select:focus, .f-group textarea:focus {
  outline: none; border-color: var(--primary); background: var(--white);
}
.f-group textarea { resize: vertical; min-height: 90px; }
.f-privacy { font-size: 0.76rem; color: var(--text-light); margin-bottom: 1rem; line-height: 1.6; }
.f-privacy a { color: var(--accent); }

/* Directions */
.dir-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3rem; }
.map-wrap {
  border-radius: 14px; overflow: hidden; aspect-ratio: 16/10;
  border: 1px solid var(--border);
}
.map-wrap iframe { width: 100%; height: 100%; border: none; }
.dir-info h4 { color: var(--primary); margin-bottom: 0.75rem; }
.dir-info p { color: var(--text-light); font-size: 0.92rem; margin-bottom: 1rem; line-height: 1.7; }

/* FOOTER */
.footer { background: var(--primary-dark); color: rgba(255,255,255,0.65); padding: 3.5rem 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem; margin-bottom: 2.5rem; }
.footer h4 { color: var(--white); font-size: 1rem; margin-bottom: 1rem; }
.footer p, .footer a { font-size: 0.88rem; line-height: 1.8; }
.footer a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; font-size: 0.8rem;
}
.footer-bottom a { margin-left: 1.5rem; }

/* ANIMATIONS */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.vis { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .services-grid, .dl-grid { grid-template-columns: repeat(2, 1fr); }
  .team-lead { grid-template-columns: repeat(2, 1fr); }
  .team-staff { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-auto-rows: 160px; }
  .g-item:nth-child(1) { grid-column: span 6; grid-row: span 2; }
  .g-item:nth-child(2) { grid-column: span 6; }
  .g-item:nth-child(3) { grid-column: span 6; }
  .g-item:nth-child(4) { grid-column: span 4; }
  .g-item:nth-child(5) { grid-column: span 4; }
  .g-item:nth-child(6) { grid-column: span 4; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none; position: absolute; top: 72px; left: 0; right: 0;
    background: var(--bg); flex-direction: column;
    padding: 1.5rem; gap: 1rem;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .nav-links.open { display: flex; }
  .nav-links a { color: var(--text-light) !important; }
  .nav-toggle { display: block; }
  .hero { min-height: 500px; }
  .hero h1 { font-size: clamp(1.8rem, 7vw, 2.5rem); }
  .hero-bar { grid-template-columns: 1fr; gap: 1rem; }
  .welcome-grid, .detail-grid, .contact-grid, .dir-grid { grid-template-columns: 1fr; gap: 2rem; }
  .services-grid, .dl-grid { grid-template-columns: 1fr; }
  .team-lead { grid-template-columns: 1fr; }
  .team-staff { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  .g-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .g-item:nth-child(n+2) { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; }
  .footer-bottom a { margin-left: 0; margin-right: 1rem; }
  .f-row { grid-template-columns: 1fr; }
  .detail-img-left { order: -1; }
  .lang-toggle { color: var(--text-light); border-color: var(--border); }
  .lang-toggle:hover { color: var(--primary); border-color: var(--primary); }
}

@media (max-width: 480px) {
  .team-staff { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
  .staff-img { width: 80px; height: 80px; }
}


/* ═══════════════════════════════════════════════════════════════════════
   RECHTSSEITEN  (impressum.html, datenschutz.html  →  <body class="legal">)
   Alles unter body.legal gekapselt, damit die Startseite unberührt bleibt.
   ═══════════════════════════════════════════════════════════════════════ */
body.legal { line-height: 1.75; }
body.legal a { color: var(--accent); }
body.legal a:hover { text-decoration: underline; }
body.legal .container { max-width: 860px; margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.5rem); }
body.legal .topbar { background: rgba(250,249,247,0.96); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 10; }
body.legal .topbar-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; max-width: 1200px; margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.5rem); }
body.legal .brand { display: flex; align-items: center; gap: 0.75rem; }
body.legal .brand img { height: 40px; width: auto; }
body.legal .brand-name { font-family: var(--display); font-size: 1.1rem; color: var(--primary); line-height: 1.1; }
body.legal .brand-sub { font-size: 0.66rem; color: var(--text-light); }
body.legal .back { font-size: 0.9rem; font-weight: 600; color: var(--primary); }
body.legal main { padding: clamp(2.5rem, 6vw, 4.5rem) 0 4rem; }
body.legal h1 { font-family: var(--display); font-weight: 400; color: var(--primary); font-size: clamp(1.9rem, 4vw, 2.6rem); margin-bottom: 1.75rem; line-height: 1.15; }
body.legal h2 { font-family: var(--display); font-weight: 400; color: var(--primary); font-size: 1.4rem; margin: 2.25rem 0 0.85rem; }
body.legal h3, body.legal h4 { font-family: var(--body); font-weight: 700; color: var(--primary); font-size: 1.05rem; margin: 1.5rem 0 0.5rem; }
body.legal p { margin-bottom: 1rem; color: var(--text-light); }
body.legal ul { margin: 0 0 1rem 1.25rem; color: var(--text-light); list-style: disc; }
body.legal ol { margin: 0 0 1rem 1.25rem; color: var(--text-light); list-style: decimal; }
body.legal li { margin-bottom: 0.4rem; }
body.legal ul[style*="list-style: none"] { margin-left: 0; list-style: none; }
body.legal strong { color: var(--text); }
body.legal .footer { background: var(--primary-dark); color: rgba(255,255,255,0.65); padding: 2.5rem 0; font-size: 0.88rem; }
body.legal .footer .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; max-width: 1200px; }
body.legal .footer a { color: rgba(255,255,255,0.75); margin-left: 1.25rem; }
body.legal .footer a:first-child { margin-left: 0; }
@media (max-width: 600px) { body.legal .brand-sub { display: none; } }
