:root {
  --ink: #273238;
  --ink-soft: #49565b;
  --graphite: #313b40;
  --graphite-2: #1f292d;
  --gold: #e9d88d;
  --gold-deep: #b69a44;
  --cream: #fbf7ee;
  --sand: #eee4cf;
  --white: #ffffff;
  --line: rgba(39, 50, 56, .14);
  --shadow: 0 24px 60px rgba(20, 31, 36, .14);
  --shadow-soft: 0 14px 34px rgba(20, 31, 36, .10);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --max: 1160px;
  --header-h: 94px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  background:
    radial-gradient(circle at top left, rgba(233, 216, 141, .22), transparent 28rem),
    linear-gradient(180deg, #fffaf0 0%, #f6efe0 54%, #fffaf0 100%);
  min-width: 320px;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration-thickness: .08em; text-underline-offset: .18em; }
a:hover { color: var(--gold-deep); }

.container {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  top: -120px;
  left: 16px;
  z-index: 999;
  padding: 12px 16px;
  color: var(--white);
  background: var(--graphite);
  border-radius: 999px;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 247, 238, .93);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  min-width: 220px;
}
.logo-orb {
  width: 74px;
  height: 74px;
  flex: 0 0 74px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid rgba(39, 50, 56, .28);
  box-shadow: 0 10px 28px rgba(39, 50, 56, .14);
  object-fit: contain;
  padding: 3px;
}
.brand strong {
  display: block;
  color: var(--graphite-2);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  letter-spacing: .02em;
  line-height: 1.05;
}
.brand small {
  display: block;
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: .86rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  border-radius: 999px;
  padding: 10px 14px;
  font: inherit;
  cursor: pointer;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--ink-soft);
  text-decoration: none;
  font-size: .96rem;
  font-weight: 600;
}
.site-nav a:hover,
.site-nav a.is-active {
  color: var(--graphite-2);
  background: rgba(233, 216, 141, .32);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.phone-pill,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  line-height: 1.1;
}
.phone-pill {
  color: var(--graphite-2);
  background: var(--white);
  border: 1px solid var(--line);
}
.phone-pill:hover { background: #fff6cc; }
.btn-primary {
  color: var(--graphite-2);
  background: var(--gold);
  border: 1px solid rgba(182, 154, 68, .35);
  box-shadow: 0 12px 26px rgba(182, 154, 68, .24);
}
.btn-primary:hover { color: var(--graphite-2); transform: translateY(-1px); }
.btn-secondary {
  color: var(--white);
  background: var(--graphite);
  border: 1px solid rgba(255,255,255,.2);
}
.btn-secondary:hover { color: var(--gold); }
.btn-ghost {
  color: var(--graphite);
  background: rgba(255,255,255,.68);
  border: 1px solid var(--line);
}

main { overflow: hidden; }
.section { padding: clamp(54px, 7vw, 92px) 0; }
.section-tight { padding: clamp(38px, 5vw, 66px) 0; }
.kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-deep);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow::before,
.kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}
h1, h2, h3 {
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--graphite-2);
  line-height: 1.12;
}
h1 { font-size: clamp(2.25rem, 5.4vw, 5rem); letter-spacing: -.035em; }
h2 { font-size: clamp(1.9rem, 3.8vw, 3.15rem); letter-spacing: -.025em; }
h3 { font-size: clamp(1.22rem, 2vw, 1.55rem); }
p { margin: 0 0 18px; }
.lead { font-size: clamp(1.08rem, 1.6vw, 1.25rem); color: var(--ink-soft); max-width: 68ch; }
.muted { color: var(--ink-soft); }
.small { font-size: .93rem; }

.hero {
  padding: clamp(38px, 6vw, 82px) 0 clamp(70px, 8vw, 112px);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(330px, .96fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}
.hero-copy { position: relative; z-index: 1; }
.hero h1 { margin-top: 14px; }
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}
.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px;
}
.trust-item {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.6);
}
.trust-item strong { display: block; color: var(--graphite-2); }
.trust-item span { color: var(--ink-soft); font-size: .92rem; }

.hero-media {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--graphite);
  box-shadow: var(--shadow);
  min-height: 560px;
}
.hero-media picture,
.hero-media img { height: 100%; width: 100%; }
.hero-media img { object-fit: cover; }
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31,41,45,.05), rgba(31,41,45,.62));
}
.hero-badge {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  color: var(--white);
  background: rgba(31, 41, 45, .76);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 22px;
  backdrop-filter: blur(12px);
}
.hero-badge img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--white);
  padding: 3px;
}
.hero-badge strong { display: block; font-family: Georgia, "Times New Roman", serif; font-size: 1.12rem; }
.hero-badge span { display: block; color: rgba(255,255,255,.82); font-size: .92rem; }

.logo-showcase {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 22px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.logo-showcase img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 1px solid rgba(39, 50, 56, .2);
  padding: 4px;
}

.intro-band {
  margin-top: -42px;
  position: relative;
  z-index: 3;
}
.band-card {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 28px;
  align-items: center;
  padding: clamp(24px, 4vw, 38px);
  border-radius: var(--radius-xl);
  background: var(--graphite);
  color: var(--white);
  box-shadow: var(--shadow);
}
.band-card h2 { color: var(--white); font-size: clamp(1.65rem, 3vw, 2.5rem); }
.band-card p { color: rgba(255,255,255,.78); }
.band-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-end; }

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.cards.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card {
  position: relative;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.72);
  box-shadow: 0 10px 30px rgba(20,31,36,.06);
}
.card h3 { margin-bottom: 10px; }
.card p:last-child { margin-bottom: 0; }
.card .number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  margin-bottom: 18px;
  color: var(--graphite-2);
  background: var(--gold);
  font-weight: 900;
}
.card-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--gold-deep);
  font-weight: 900;
  text-decoration: none;
}
.card-link:hover { color: var(--graphite); }

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .86fr);
  gap: clamp(28px, 5vw, 62px);
  align-items: center;
}
.split.reverse { grid-template-columns: minmax(320px, .86fr) minmax(0, 1fr); }
.text-panel {
  padding: clamp(26px, 4vw, 42px);
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.73);
  box-shadow: var(--shadow-soft);
}
.image-panel {
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,.5);
  box-shadow: var(--shadow);
  background: var(--graphite);
}
.image-panel img { width: 100%; height: 100%; max-height: 650px; object-fit: cover; }

.page-hero {
  padding: clamp(48px, 7vw, 95px) 0 clamp(34px, 5vw, 62px);
}
.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 28px;
  align-items: end;
}
.page-logo-card {
  justify-self: end;
  width: 220px;
  padding: 16px;
  border-radius: var(--radius-xl);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.page-logo-card img { border-radius: 50%; }

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(280px, .9fr);
  gap: 24px;
  align-items: start;
}
.stack { display: grid; gap: 18px; }
.aside-card {
  position: sticky;
  top: calc(var(--header-h) + 22px);
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--graphite);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}
.aside-card h3 { color: var(--white); }
.aside-card p, .aside-card li { color: rgba(255,255,255,.79); }
.aside-card a { color: var(--gold); }
.aside-card .mini-logo {
  width: 94px;
  height: 94px;
  border-radius: 50%;
  background: var(--white);
  padding: 4px;
  margin-bottom: 18px;
}
.check-list,
.clean-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}
.check-list li,
.clean-list li {
  position: relative;
  padding-left: 28px;
  margin: 10px 0;
}
.check-list li::before,
.clean-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 13px;
  height: 2px;
  background: var(--gold-deep);
}
.notice {
  padding: 18px 20px;
  border-radius: var(--radius-md);
  background: rgba(233,216,141,.24);
  border: 1px solid rgba(182,154,68,.25);
}
.notice strong { color: var(--graphite-2); }

.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 24px;
  align-items: stretch;
}
.contact-card {
  padding: clamp(24px, 4vw, 38px);
  border-radius: var(--radius-xl);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}
.contact-method {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px;
  border-radius: var(--radius-md);
  background: var(--cream);
  text-decoration: none;
  border: 1px solid var(--line);
}
.contact-method strong { color: var(--graphite-2); }
.contact-method span { color: var(--ink-soft); }
.map-placeholder {
  min-height: 420px;
  display: grid;
  place-items: center;
  padding: 28px;
  text-align: center;
  color: var(--white);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(rgba(31,41,45,.58), rgba(31,41,45,.72)),
    url('../img/praxis-aussen.jpg') center/cover;
  box-shadow: var(--shadow);
}
.map-placeholder .logo-orb { margin: 0 auto 16px; }

.legal-content {
  max-width: 900px;
  padding: clamp(24px, 4vw, 42px);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.82);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.legal-content h2 { margin-top: 28px; font-size: clamp(1.35rem, 2.3vw, 2rem); }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li { color: var(--ink-soft); }
.legal-content ul { padding-left: 1.2rem; }

.site-footer {
  padding: 48px 0 28px;
  color: rgba(255,255,255,.78);
  background: var(--graphite-2);
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.1fr) repeat(3, minmax(160px, .65fr));
  gap: 26px;
  align-items: start;
}
.footer-brand { display: grid; grid-template-columns: 92px minmax(0,1fr); gap: 16px; align-items: center; }
.footer-logo {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: var(--white);
  padding: 4px;
  border: 1px solid rgba(255,255,255,.25);
}
.footer-brand strong {
  display: block;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 1.15;
}
.footer-brand span { display: block; color: rgba(255,255,255,.7); margin-top: 4px; }
.site-footer h3 {
  color: var(--gold);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: .9rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.site-footer a { color: rgba(255,255,255,.86); text-decoration: none; }
.site-footer a:hover { color: var(--gold); }
.footer-links { display: grid; gap: 8px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: .9rem;
}

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1060px) {
  .header-actions .phone-pill { display: none; }
  .site-nav a { padding-inline: 9px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { min-height: 460px; }
}
@media (max-width: 880px) {
  :root { --header-h: 86px; }
  .header-inner { min-height: 86px; }
  .brand { min-width: auto; }
  .brand strong { font-size: 1.22rem; }
  .brand small { display: none; }
  .logo-orb { width: 64px; height: 64px; flex-basis: 64px; }
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border-radius: 22px;
    background: rgba(255,255,255,.98);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { justify-content: center; }
  .header-actions .btn { display: none; }
  .trust-row,
  .cards,
  .cards.two,
  .band-card,
  .split,
  .split.reverse,
  .page-hero-grid,
  .content-grid,
  .contact-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .band-actions { justify-content: flex-start; }
  .page-logo-card { justify-self: start; width: 160px; }
  .aside-card { position: static; }
  .footer-bottom { flex-direction: column; }
}
@media (max-width: 560px) {
  .container { width: min(100% - 28px, var(--max)); }
  .brand { gap: 10px; }
  .brand strong { font-size: 1.05rem; }
  .logo-orb { width: 58px; height: 58px; flex-basis: 58px; }
  .hero-media { min-height: 360px; border-radius: 24px; }
  .hero-badge { left: 12px; right: 12px; bottom: 12px; padding: 12px; }
  .hero-badge img { width: 60px; height: 60px; }
  .cta-row .btn, .phone-pill { width: 100%; }
  .logo-showcase { grid-template-columns: 1fr; }
  .contact-method { display: block; }
}


/* Revised content styles */
.site-nav a { white-space: nowrap; }
.cards.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.article-card {
  padding: clamp(24px, 4vw, 42px);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.82);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.article-card h2 { font-size: clamp(1.55rem, 3vw, 2.45rem); }
.article-card p { color: var(--ink-soft); }
.article-card p:last-child { margin-bottom: 0; }
.article-card .notice { margin-top: 22px; }
.strong-list li { color: var(--ink); font-weight: 700; }
.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}
.pill-list li {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(233,216,141,.28);
  border: 1px solid rgba(182,154,68,.25);
  font-weight: 800;
  color: var(--graphite-2);
}
.source-note {
  margin-top: 18px;
  font-size: .92rem;
}
.full { width: 100%; margin-top: 12px; }
.btn-ghost.light {
  color: var(--white);
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.18);
}
.timeline {
  margin: 18px 0 24px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 16px;
}
.timeline li {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}
.timeline strong {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
}
.timeline span { color: rgba(255,255,255,.82); }
.contact-notice { margin-top: 24px; }
.map-placeholder a { color: var(--gold); font-weight: 800; }
.logo-orb, .footer-logo, .page-logo-card img, .mini-logo, .hero-badge img, .logo-showcase img {
  object-fit: contain;
}
@media (max-width: 880px) {
  .cards.three { grid-template-columns: 1fr; }
}
