/* ui muenchen 2.0 — static, lightweight, no external dependencies */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
:root {
  --color-bg: #f6f4f0;
  --color-surface: #ffffff;
  --color-surface-soft: #ebe6dc;
  --color-text: #1f2326;
  --color-muted: #5d6267;
  --color-subtle: #777f86;
  --color-accent: #1f4f7a;
  --color-accent-dark: #173b5c;
  --color-border: #d9d4cb;
  --color-card: #ffffff;
  --shadow-soft: 0 18px 50px rgba(23, 32, 40, 0.08);
  --radius: 18px;
  --radius-sm: 12px;
  --max-width: 1160px;
  --space-section: clamp(3.5rem, 7vw, 6.5rem);
  --font-base: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --text-sm: 0.92rem;
  --text-base: 1rem;
  --text-md: clamp(1.08rem, 1.4vw, 1.2rem);
  --text-lg: clamp(1.22rem, 2vw, 1.45rem);
  --text-xl: clamp(1.65rem, 3vw, 2.25rem);
  --text-hero: clamp(2.25rem, 6vw, 4.6rem);
  --line-base: 1.7;
  --line-tight: 1.15;
}
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-base); background: var(--color-bg); color: var(--color-text); line-height: var(--line-base); }
img { display: block; max-width: 100%; height: auto; }
a { color: var(--color-accent); text-decoration-thickness: 0.08em; text-underline-offset: 0.18em; }
a:hover { color: var(--color-accent-dark); }
:focus-visible { outline: 3px solid var(--color-accent); outline-offset: 3px; }
p { color: var(--color-muted); }
h1, h2, h3 { color: var(--color-text); line-height: var(--line-tight); letter-spacing: -0.025em; }
h1 { font-size: var(--text-hero); max-width: 860px; }
h2 { font-size: var(--text-xl); margin-bottom: 1rem; }
h3 { font-size: 1.15rem; margin-bottom: 0.65rem; }
ul, ol { padding-left: 1.2rem; }
li + li { margin-top: 0.45rem; }
.container { width: 100%; max-width: var(--max-width); margin-inline: auto; padding-inline: clamp(1.25rem, 5vw, 2.6rem); }
.narrow { max-width: 840px; }
.section { padding-block: var(--space-section); }
.section--white { background: var(--color-surface); }
.section--soft { background: var(--color-surface-soft); }
.skip-link { position: absolute; left: 1rem; top: 0.75rem; z-index: 999; transform: translateY(-160%); background: var(--color-text); color: white; padding: 0.7rem 1rem; border-radius: 999px; }
.skip-link:focus { transform: translateY(0); color: white; }
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); border-bottom: 1px solid var(--color-border); }
.header-inner { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.site-logo { color: var(--color-text); text-decoration: none; font-weight: 700; font-size: 1.2rem; letter-spacing: -0.02em; }
.site-logo span { color: var(--color-accent); }
.nav-primary { list-style: none; padding: 0; display: flex; gap: clamp(1rem, 2vw, 2rem); align-items: center; }
.nav-primary li { margin: 0; }
.nav-primary a { color: var(--color-muted); text-decoration: none; font-size: 0.9rem; font-weight: 650; letter-spacing: 0.03em; text-transform: uppercase; }
.nav-primary a:hover, .nav-primary a.active { color: var(--color-accent); }
.nav-toggle { display: none; border: 0; background: transparent; padding: 0.5rem; cursor: pointer; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--color-text); margin: 5px 0; transition: transform 0.2s ease, opacity 0.2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav { display: none; border-top: 1px solid var(--color-border); background: var(--color-surface); padding: 0.75rem clamp(1.25rem, 5vw, 2.6rem) 1rem; }
.mobile-nav a { display: block; padding: 0.8rem 0; color: var(--color-text); text-decoration: none; font-weight: 650; }
.mobile-nav a.active { color: var(--color-accent); }
.mobile-nav.is-open { display: block; }
.nav-primary a.language-switch { color: var(--color-accent); border-left: 1px solid var(--color-border); padding-left: clamp(0.8rem, 1.6vw, 1.3rem); }
.nav-primary a.language-switch:hover { color: var(--color-accent-dark); }
.mobile-nav a.language-switch { margin-top: 0.35rem; border-top: 1px solid var(--color-border); color: var(--color-accent); }

.hero { padding-block: clamp(3.75rem, 8vw, 7rem); background: linear-gradient(180deg, #fff 0%, #f6f4f0 100%); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.03fr) minmax(320px, 0.97fr); gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.hero-copy .lead, .page-hero .lead { font-size: var(--text-lg); max-width: 720px; margin-top: 1.25rem; }
.eyebrow, .section-label { color: var(--color-accent); text-transform: uppercase; letter-spacing: 0.11em; font-size: 0.82rem; font-weight: 800; margin-bottom: 0.8rem; }
.actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2rem; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0.82rem 1.15rem; border-radius: 999px; font-weight: 750; text-decoration: none; border: 1px solid transparent; }
.btn--primary { background: var(--color-accent); color: white; }
.btn--primary:hover { background: var(--color-accent-dark); color: white; }
.btn--secondary { border-color: var(--color-border); background: var(--color-surface); color: var(--color-text); }
.btn--secondary:hover { border-color: var(--color-accent); color: var(--color-accent); }
.hero-media, .image-card, .portrait-card { border-radius: var(--radius); overflow: hidden; background: var(--color-surface); box-shadow: var(--shadow-soft); border: 1px solid rgba(0,0,0,0.04); }
.hero-media img, .image-card img { width: 100%; height: 100%; object-fit: cover; }
.hero-media { min-height: 360px; }
.hero-media img { min-height: 360px; }
.page-hero { padding-block: clamp(3.5rem, 7vw, 5.5rem); background: var(--color-surface); border-bottom: 1px solid var(--color-border); }
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2rem; }
.cards-grid--two { grid-template-columns: repeat(2, 1fr); }
.card { background: var(--color-card); border: 1px solid var(--color-border); border-radius: var(--radius-sm); padding: clamp(1.25rem, 2vw, 1.75rem); }
.card-number { color: var(--color-accent); font-weight: 800; margin-bottom: 1rem; }
.split-layout, .image-text, .about-grid, .cta-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 0.82fr); gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.image-text { grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1fr); }
.image-text--reverse { grid-template-columns: minmax(0, 1fr) minmax(280px, 0.92fr); }
.image-text--reverse .image-card { order: 2; }
.info-box, .contact-card { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius); padding: clamp(1.35rem, 3vw, 2rem); box-shadow: var(--shadow-soft); }
.clean-list { list-style: none; padding: 0; }
.clean-list li { position: relative; padding-left: 1.25rem; }
.clean-list li::before { content: ""; width: 0.42rem; height: 0.42rem; border-radius: 50%; background: var(--color-accent); position: absolute; left: 0; top: 0.72em; }
.tag-list { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.4rem; }
.tag-list li { margin: 0; background: #eef2f7; color: var(--color-accent-dark); border: 1px solid #d8e1eb; border-radius: 999px; padding: 0.55rem 0.85rem; font-weight: 650; font-size: 0.93rem; }
.review-links { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.25rem; }
.review-links a { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: 999px; padding: 0.75rem 1rem; text-decoration: none; font-weight: 700; }
.steps-list { list-style: none; padding: 0; margin-top: 1.4rem; }
.steps-list li { display: grid; grid-template-columns: 42px 1fr; gap: 0.9rem; align-items: start; margin-top: 1rem; }
.steps-list span { width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; background: var(--color-accent); color: white; font-weight: 800; }
.feature-list { list-style: none; padding: 0; display: grid; gap: 0.8rem; }
.feature-list li { margin: 0; background: var(--color-surface); border: 1px solid var(--color-border); border-radius: 999px; padding: 0.75rem 1rem; font-weight: 650; }
.portrait-card { background: linear-gradient(180deg, #f8f7f4, #ebe6dc); padding: 1.5rem 1.5rem 0; text-align: center; }
.portrait-card img { margin-inline: auto; max-height: 520px; object-fit: contain; }
.portrait-card figcaption { padding: 0.9rem 0 1rem; color: var(--color-muted); font-size: 0.95rem; }
.contact-email { font-size: var(--text-lg); font-weight: 800; margin: 1rem 0 1.4rem; }
.cta-band { padding-block: clamp(2.5rem, 6vw, 4.5rem); background: var(--color-accent-dark); color: white; }
.cta-band h2, .cta-band p { color: white; }
.cta-band p { opacity: 0.88; }
.cta-grid { grid-template-columns: minmax(0, 1fr) auto; }
.legal-content { max-width: 850px; }
.legal-content h1 { margin-bottom: 1rem; }
.legal-content h2 { font-size: 1.35rem; margin-top: 2.2rem; }
.legal-content p, .legal-content li { color: var(--color-muted); }
.site-footer { background: #181d22; color: white; padding-block: 2.5rem 1.5rem; }
.site-footer a { color: white; }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: start; }
.footer-brand__name { color: white; font-weight: 800; font-size: 1.15rem; margin-bottom: 0.35rem; }
.footer-brand__tagline, .footer-brand p { color: rgba(255,255,255,0.78); }
.footer-nav { display: flex; flex-wrap: wrap; gap: 0.7rem 1rem; justify-content: flex-end; max-width: 470px; }
.footer-nav a { font-size: 0.95rem; text-decoration: none; color: rgba(255,255,255,0.82); }
.footer-nav a:hover { color: white; text-decoration: underline; }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; margin-top: 2rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.12); }
.footer-bottom p { color: rgba(255,255,255,0.62); font-size: 0.9rem; }
@media (max-width: 860px) {
  .nav-primary { display: none; }
  .nav-toggle { display: block; }
  .hero-grid, .split-layout, .image-text, .image-text--reverse, .about-grid, .cta-grid, .footer-grid { grid-template-columns: 1fr; }
  .image-text--reverse .image-card { order: 0; }
  .cards-grid, .cards-grid--two { grid-template-columns: 1fr; }
  .hero-media, .hero-media img { min-height: 240px; }
  .cta-grid { align-items: start; }
  .footer-nav { justify-content: flex-start; }
  .footer-bottom { flex-direction: column; }
}
@media (max-width: 520px) {
  .actions, .review-links { flex-direction: column; align-items: stretch; }
  .btn, .review-links a { width: 100%; }
  .container { padding-inline: 1.05rem; }
  .section { padding-block: 3rem; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
