:root {
  --bg: #ffffff;
  --bg-tint: #f4f8fb;
  --bg-mint: #eaf5f0;
  --ink: #0f1e2c;
  --ink-soft: #5a6b7a;
  --ink-faint: #8a98a6;
  --blue: #4a90c2;
  --blue-deep: #2d6a94;
  --mint: #6cb89a;
  --mint-soft: #c4e3d4;
  --line: rgba(15, 30, 44, 0.08);
  --line-strong: rgba(15, 30, 44, 0.14);
  --shadow: 0 4px 24px -8px rgba(45,106,148,.18);
  --shadow-lg: 0 20px 60px -20px rgba(45,106,148,.25);
  --radius: 16px;
  --radius-lg: 24px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', -apple-system, sans-serif;
  background: var(--bg); color: var(--ink);
  line-height: 1.65; -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-weight: 400; letter-spacing: -0.01em; line-height: 1.1;
}
a { color: inherit; text-decoration: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 640px) { .container { padding: 0 20px; } }

/* TOPBAR */
.topbar { background: var(--ink); color: #fff; font-size: 13px; padding: 10px 0; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.topbar a { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,.85); transition: color .2s; }
.topbar a:hover { color: var(--mint-soft); }
.topbar svg { opacity: .7; }

/* NAV */
.nav { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.88); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid var(--line); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 18px 32px; max-width: 1200px; margin: 0 auto; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark { width: 40px; height: 40px; border-radius: 12px; background: linear-gradient(135deg, var(--blue), var(--mint)); display: grid; place-items: center; color: #fff; font-family: 'Instrument Serif', serif; font-size: 22px; font-style: italic; }
.brand-name { font-family: 'Instrument Serif', serif; font-size: 19px; color: var(--ink); line-height: 1.2; }
.brand-sub { font-size: 11px; color: var(--ink-faint); text-transform: uppercase; letter-spacing: 0.1em; }
.nav-links { display: flex; gap: 36px; list-style: none; font-size: 14.5px; font-weight: 500; }
.nav-links a { color: var(--ink-soft); transition: color .2s; }
.nav-links a:hover { color: var(--blue-deep); }
.nav-cta { display: inline-flex; align-items: center; gap: 8px; background: var(--ink); color: #fff; padding: 11px 22px; border-radius: 999px; font-size: 14px; font-weight: 500; transition: transform .2s, background .2s; }
.nav-cta:hover { background: var(--blue-deep); transform: translateY(-1px); }
@media (max-width: 880px) { .nav-links { display: none; } }

/* HERO */
.hero { position: relative; padding: 80px 0 100px; overflow: hidden; background: radial-gradient(ellipse at top right, var(--bg-mint) 0%, transparent 50%), radial-gradient(ellipse at bottom left, var(--bg-tint) 0%, transparent 60%); }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 80px; align-items: center; }
@media (max-width: 960px) { .hero { padding: 56px 0 72px; } .hero-grid { grid-template-columns: 1fr; gap: 56px; } }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 12px; color: var(--blue-deep); text-transform: uppercase; letter-spacing: 0.18em; margin-bottom: 24px; font-weight: 600; }
.eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 4px rgba(108, 184, 154, .25); flex-shrink: 0; }
.hero h1 { font-size: clamp(44px, 6.4vw, 84px); margin-bottom: 28px; }
.hero h1 em { font-style: italic; color: var(--blue-deep); }
.hero-lead { font-size: 18px; color: var(--ink-soft); max-width: 540px; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.btn-primary { display: inline-flex; align-items: center; gap: 10px; background: var(--blue-deep); color: #fff; padding: 16px 30px; border-radius: 999px; font-size: 15px; font-weight: 600; transition: transform .2s, background .2s, box-shadow .2s; }
.btn-primary:hover { background: var(--ink); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-primary svg { transition: transform .2s; }
.btn-primary:hover svg { transform: translateX(3px); }
.btn-ghost { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); padding: 16px 24px; border-radius: 999px; font-size: 15px; font-weight: 500; border: 1px solid var(--line-strong); transition: border-color .2s, background .2s; }
.btn-ghost:hover { border-color: var(--ink); background: var(--bg-tint); }

/* HERO PHOTO */
.hero-photo-wrap { position: relative; aspect-ratio: 4 / 5; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.hero-photo, .team-photo { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-badge { position: absolute; bottom: 28px; left: 28px; background: rgba(255,255,255,.96); backdrop-filter: blur(8px); border-radius: 14px; padding: 16px 20px; box-shadow: var(--shadow); display: flex; align-items: center; gap: 14px; max-width: calc(100% - 56px); }
.hero-badge-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--bg-mint); color: var(--mint); display: grid; place-items: center; flex-shrink: 0; }
.hero-badge-text { font-size: 13px; line-height: 1.4; }
.hero-badge-text strong { display: block; color: var(--ink); font-weight: 600; font-size: 14px; margin-bottom: 2px; }
.hero-badge-text span { color: var(--ink-soft); }

/* STATS */
.stats { padding: 80px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
@media (max-width: 760px) { .stats-grid { grid-template-columns: 1fr; } .stats { padding: 56px 0; } }
.stat { padding: 8px 32px; border-right: 1px solid var(--line); }
.stat:last-child { border-right: none; }
@media (max-width: 760px) { .stat { border-right: none; border-bottom: 1px solid var(--line); padding: 24px 0; } .stat:last-child { border-bottom: none; } }
.stat-num { font-family: 'Instrument Serif', serif; font-size: clamp(56px, 7vw, 88px); line-height: 1; margin-bottom: 14px; letter-spacing: -0.02em; }
.stat-num em { font-style: italic; color: var(--blue); }
.stat-label { font-size: 15px; color: var(--ink-soft); max-width: 280px; }

/* TEAM */
.team { padding: 120px 0; background: var(--bg-tint); }
@media (max-width: 760px) { .team { padding: 80px 0; } }
.team-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center; }
@media (max-width: 960px) { .team-grid { grid-template-columns: 1fr; gap: 56px; } }
.team-photo-wrap { position: relative; aspect-ratio: 5 / 4; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.team-content h2 { font-size: clamp(36px, 4.4vw, 56px); margin-bottom: 24px; }
.team-content h2 em { font-style: italic; color: var(--blue-deep); }
.team-content p { font-size: 17px; color: var(--ink-soft); margin-bottom: 20px; }
.team-list { list-style: none; margin-top: 32px; display: grid; gap: 16px; }
.team-list li { display: flex; align-items: flex-start; gap: 14px; font-size: 15px; }
.team-list svg { flex-shrink: 0; color: var(--mint); margin-top: 3px; }

/* SERVICES */
.services { padding: 120px 0; }
@media (max-width: 760px) { .services { padding: 80px 0; } }
.services-head { max-width: 720px; margin-bottom: 64px; }
.services-head h2 { font-size: clamp(36px, 4.4vw, 56px); margin-bottom: 20px; }
.services-head h2 em { font-style: italic; color: var(--blue-deep); }
.services-head p { font-size: 17px; color: var(--ink-soft); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .service-grid { grid-template-columns: 1fr; } }
.service-card { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 28px; transition: transform .3s, box-shadow .3s, border-color .3s; position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--blue), var(--mint)); transform: scaleX(0); transform-origin: left; transition: transform .4s; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--bg-mint); color: var(--blue-deep); display: grid; place-items: center; margin-bottom: 22px; }
.service-card:nth-child(2n) .service-icon { background: var(--bg-tint); color: var(--blue); }
.service-card:nth-child(3n) .service-icon { background: var(--bg-mint); color: var(--mint); }
.service-card h3 { font-size: 24px; margin-bottom: 16px; }
.service-card ul { list-style: none; display: grid; gap: 8px; }
.service-card li { font-size: 14.5px; color: var(--ink-soft); padding-left: 18px; position: relative; }
.service-card li::before { content: ''; position: absolute; left: 0; top: 11px; width: 8px; height: 1px; background: var(--blue); }

/* INFO BAND */
.info-band { background: var(--ink); color: #fff; padding: 80px 0; position: relative; overflow: hidden; }
.info-band::before { content: ''; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(108,184,154,.15), transparent 70%); border-radius: 50%; }
.info-band-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
@media (max-width: 760px) { .info-band { padding: 56px 0; } .info-band-inner { grid-template-columns: 1fr; gap: 32px; } }
.info-band h2 { font-size: clamp(32px, 4vw, 48px); color: #fff; }
.info-band h2 em { font-style: italic; color: var(--mint-soft); }
.info-band p { font-size: 17px; color: rgba(255,255,255,.78); line-height: 1.7; }

/* HOURS + CONTACT */
.info-grid { padding: 120px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
@media (max-width: 760px) { .info-grid { padding: 80px 0; grid-template-columns: 1fr; gap: 48px; } }
.info-card { padding: 40px; background: var(--bg-tint); border-radius: var(--radius-lg); border: 1px solid var(--line); }
.info-card h3 { font-size: 32px; margin-bottom: 28px; }
.info-card h3 em { font-style: italic; color: var(--blue-deep); }
.hours-list { list-style: none; }
.hours-list li { display: flex; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
.hours-list li:last-child { border-bottom: none; }
.hours-day { font-weight: 600; }
.hours-time { color: var(--ink-soft); font-variant-numeric: tabular-nums; }
.contact-list { list-style: none; display: grid; gap: 18px; }
.contact-list li { display: flex; align-items: center; gap: 16px; font-size: 15.5px; }
.contact-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--bg); color: var(--blue-deep); display: grid; place-items: center; flex-shrink: 0; border: 1px solid var(--line); }
.contact-list a { transition: color .2s; }
.contact-list a:hover { color: var(--blue-deep); }
.contact-list small { display: block; color: var(--ink-faint); font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 2px; }

/* DIRECTIONS CARD */
.map-section { padding: 0 0 120px; }
@media (max-width: 760px) { .map-section { padding: 0 0 80px; } }
.directions-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); background: linear-gradient(135deg, #2d6a94 0%, #1f4d6e 100%); color: #fff; padding: 56px; display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 48px; align-items: center; }
@media (max-width: 760px) { .directions-card { grid-template-columns: 1fr; padding: 40px 28px; gap: 32px; } }
.directions-card::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px); background-size: 40px 40px; pointer-events: none; }
.directions-card::after { content: ''; position: absolute; top: -100px; right: -100px; width: 360px; height: 360px; background: radial-gradient(circle, rgba(108,184,154,.25), transparent 70%); border-radius: 50%; pointer-events: none; }
.directions-content { position: relative; z-index: 1; }
.directions-content h3 { font-size: clamp(28px, 3.2vw, 40px); color: #fff; margin-bottom: 20px; }
.directions-content h3 em { font-style: italic; color: var(--mint-soft); }
.directions-address { font-size: 17px; color: rgba(255,255,255,.85); line-height: 1.6; margin-bottom: 28px; }
.directions-address strong { display: block; color: #fff; font-weight: 600; font-family: 'Manrope', sans-serif; margin-bottom: 4px; }
.directions-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.dir-btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 22px; border-radius: 999px; font-size: 14.5px; font-weight: 500; transition: transform .2s, background .2s, border-color .2s; }
.dir-btn-primary { background: #fff; color: var(--ink); }
.dir-btn-primary:hover { background: var(--mint-soft); transform: translateY(-1px); }
.dir-btn-ghost { background: rgba(255,255,255,.08); color: #fff; border: 1px solid rgba(255,255,255,.2); }
.dir-btn-ghost:hover { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.4); }
.directions-visual { position: relative; z-index: 1; aspect-ratio: 1; display: grid; place-items: center; }
@media (max-width: 760px) { .directions-visual { aspect-ratio: 16 / 9; } }
.pin-mark { position: relative; width: 80%; height: 80%; max-width: 280px; max-height: 280px; }
.pin-mark::before { content: ''; position: absolute; inset: 0; border: 2px dashed rgba(255,255,255,.25); border-radius: 50%; animation: spin 40s linear infinite; }
.pin-mark::after { content: ''; position: absolute; inset: 18%; border: 2px solid rgba(255,255,255,.15); border-radius: 50%; }
@keyframes spin { to { transform: rotate(360deg); } }
.pin-icon { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -55%); width: 64px; height: 64px; border-radius: 50%; background: var(--mint); display: grid; place-items: center; color: #fff; box-shadow: 0 0 0 8px rgba(108,184,154,.3), 0 0 0 16px rgba(108,184,154,.15); }
.pin-pulse { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -55%); width: 64px; height: 64px; border-radius: 50%; background: var(--mint); opacity: .4; animation: pulse 2.4s ease-out infinite; }
@keyframes pulse { 0% { transform: translate(-50%, -55%) scale(1); opacity: .4; } 100% { transform: translate(-50%, -55%) scale(2.4); opacity: 0; } }

/* LEGAL PAGES (Impressum, Haftungsausschluss, Datenschutz) */
.legal-hero { padding: 80px 0 40px; background: linear-gradient(180deg, var(--bg-mint) 0%, transparent 100%); }
@media (max-width: 760px) { .legal-hero { padding: 56px 0 32px; } }
.legal-hero .container { max-width: 820px; }
.legal-hero h1 { font-size: clamp(40px, 5.5vw, 64px); margin-bottom: 16px; }
.legal-hero h1 em { font-style: italic; color: var(--blue-deep); }
.legal-hero .lead { font-size: 17px; color: var(--ink-soft); }
.legal-content { padding: 40px 0 120px; }
@media (max-width: 760px) { .legal-content { padding: 24px 0 80px; } }
.legal-content .container { max-width: 820px; }
.legal-content h2 { font-size: clamp(26px, 3vw, 34px); margin: 56px 0 16px; color: var(--ink); }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { font-size: 19px; margin: 32px 0 8px; color: var(--ink); font-family: 'Manrope', sans-serif; font-weight: 600; letter-spacing: 0; }
.legal-content p { font-size: 16px; color: var(--ink-soft); margin-bottom: 16px; line-height: 1.75; }
.legal-content p strong { color: var(--ink); font-weight: 600; }
.legal-content ul { padding-left: 24px; margin-bottom: 16px; }
.legal-content ul li { font-size: 16px; color: var(--ink-soft); padding: 4px 0; line-height: 1.7; }
.legal-content a { color: var(--blue-deep); text-decoration: underline; text-underline-offset: 3px; transition: color .2s; }
.legal-content a:hover { color: var(--ink); }
.legal-info-box { padding: 28px 32px; background: var(--bg-tint); border-radius: var(--radius); border-left: 3px solid var(--mint); margin: 32px 0; }
.legal-info-box p { margin-bottom: 8px; }
.legal-info-box p:last-child { margin-bottom: 0; }
.back-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 48px; font-size: 14.5px; color: var(--ink-soft); padding: 10px 18px; border-radius: 999px; border: 1px solid var(--line-strong); transition: border-color .2s, color .2s, background .2s; }
.back-link:hover { color: var(--ink); border-color: var(--ink); background: var(--bg-tint); }

/* FOOTER */
footer { background: var(--ink); color: rgba(255,255,255,.65); padding: 56px 0 32px; font-size: 14px; }
.footer-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 24px; padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,.1); margin-bottom: 24px; }
.footer-inner a { transition: color .2s; }
.footer-inner a:hover { color: var(--mint-soft); }
.footer-links { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; color: rgba(255,255,255,.45); font-size: 13px; }

/* ENTRANCE ANIMATION */
@keyframes rise { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.hero .eyebrow, .hero h1, .hero-lead, .hero-actions, .hero-photo-wrap { animation: rise .9s cubic-bezier(.2,.8,.2,1) backwards; }
.hero .eyebrow { animation-delay: .05s; }
.hero h1 { animation-delay: .15s; }
.hero-lead { animation-delay: .3s; }
.hero-actions { animation-delay: .45s; }
.hero-photo-wrap { animation-delay: .35s; }
