/* passbild.studio – statische Dreamweaver-Website
   Typografie: ausschließlich serifenlose Systemschriften, keine externen Webfonts. */
:root {
  --ink: #16181d;
  --ink-soft: #30343b;
  --muted: #686d76;
  --accent: #781d2b;
  --accent-dark: #4d101a;
  --accent-bright: #a52a3d;
  --accent-soft: #f7eaed;
  --surface: #ffffff;
  --surface-soft: #f4f5f7;
  --surface-warm: #faf6f3;
  --line: #dedfe3;
  --line-strong: #c7c9cf;
  --footer: #17181c;
  --shadow-sm: 0 8px 24px rgba(22, 24, 29, .07);
  --shadow-lg: 0 24px 70px rgba(22, 24, 29, .11);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 15px;
  --radius-sm: 10px;
  --max: 1220px;
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--surface-soft);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: var(--accent); text-decoration-thickness: 1px; text-underline-offset: 4px; }
a:hover { color: var(--accent-dark); }
img { max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; }
.skip-link {
  position: fixed;
  left: 1rem;
  top: -6rem;
  z-index: 1000;
  padding: .8rem 1rem;
  border-radius: var(--radius-sm);
  background: #fff;
  color: #111;
  box-shadow: var(--shadow-sm);
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(22, 24, 29, .09);
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(16px);
}
.header-inner {
  width: min(var(--max), calc(100% - 40px));
  min-height: 86px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  flex-direction: column;
  color: var(--ink);
  line-height: 1;
  text-decoration: none;
}
.brand-main {
  font-size: clamp(1.45rem, 3vw, 2.05rem);
  font-weight: 850;
  letter-spacing: -.055em;
}
.brand-main span { color: var(--accent); }
.brand-sub {
  margin-top: 8px;
  color: var(--muted);
  font-size: .69rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.site-nav { display: flex; align-items: center; gap: 3px; }
.site-nav a {
  padding: 10px 11px;
  border-radius: var(--radius-sm);
  color: #41454d;
  font-size: .84rem;
  font-weight: 750;
  text-decoration: none;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--accent-dark);
  background: var(--accent-soft);
}
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff;
  color: var(--ink);
  font-size: 1.25rem;
  cursor: pointer;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(60px, 8vw, 108px) 0 76px;
  background: #fff;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 8px;
  background: var(--accent);
}
.hero::after {
  content: "";
  position: absolute;
  right: -210px;
  top: 45px;
  width: 520px;
  height: 520px;
  border: 90px solid var(--accent-soft);
  border-radius: 50%;
  opacity: .65;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(290px, .65fr);
  gap: clamp(38px, 7vw, 92px);
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--accent);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
}
.hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(2.75rem, 6vw, 5.55rem);
  line-height: .98;
  letter-spacing: -.065em;
  font-weight: 850;
}
.hero-lead {
  max-width: 780px;
  margin: 28px 0 0;
  color: #555b64;
  font-size: clamp(1.06rem, 1.8vw, 1.3rem);
  line-height: 1.58;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 21px;
  border: 1px solid var(--accent);
  border-radius: 13px;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(120, 29, 43, .16);
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.button:hover {
  transform: translateY(-1px);
  border-color: var(--accent-dark);
  background: var(--accent-dark);
  color: #fff;
}
.button.secondary {
  border-color: var(--line-strong);
  background: #fff;
  color: var(--ink);
  box-shadow: none;
}
.button.secondary:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent-dark);
}
.hero-card {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  padding: 34px;
  border-radius: var(--radius-xl);
  background: var(--accent-dark);
  color: #fff;
  box-shadow: var(--shadow-lg);
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, .17);
  border-radius: 20px;
  pointer-events: none;
}
.hero-card::after {
  content: "";
  position: absolute;
  right: -44px;
  bottom: -72px;
  width: 205px;
  height: 205px;
  border: 32px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
}
.hero-card-label {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #efcfd5;
  font-size: .75rem;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.hero-price {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 28px;
  font-size: clamp(3rem, 5vw, 4.7rem);
  line-height: .92;
  letter-spacing: -.065em;
  font-weight: 900;
}
.hero-card p {
  position: relative;
  z-index: 1;
  max-width: 245px;
  margin: 24px 0 0;
  color: #f3dfe3;
  line-height: 1.5;
}

.service-strip {
  position: relative;
  z-index: 3;
  width: min(var(--max), calc(100% - 40px));
  margin: -30px auto 68px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.service-tile {
  position: relative;
  overflow: hidden;
  padding: 25px 24px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.service-tile::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--accent);
}
.service-tile:hover {
  transform: translateY(-3px);
  border-color: #d5bac0;
  box-shadow: 0 16px 38px rgba(22, 24, 29, .10);
}
.service-tile small {
  display: block;
  color: var(--accent);
  font-size: .73rem;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.service-tile strong {
  display: block;
  margin-top: 9px;
  color: var(--ink);
  font-size: 1.32rem;
  line-height: 1.2;
  font-weight: 850;
  letter-spacing: -.025em;
}
.service-tile span {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: .91rem;
  line-height: 1.55;
}

.main-wrap {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto 92px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 276px;
  gap: 38px;
  align-items: start;
}
.content-shell {
  min-width: 0;
  padding: clamp(28px, 4.8vw, 62px);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.content-shell > :first-child { margin-top: 0; }
.content-shell h2 {
  margin: 64px 0 18px;
  color: var(--ink);
  font-size: clamp(1.75rem, 3.25vw, 2.55rem);
  line-height: 1.12;
  letter-spacing: -.045em;
  font-weight: 850;
}
.content-shell h2 strong { font-weight: inherit; }
.content-shell h3 {
  margin: 36px 0 10px;
  color: var(--ink-soft);
  font-size: 1.18rem;
  line-height: 1.35;
  font-weight: 800;
}
.content-shell h3 strong { font-weight: inherit; }
.content-shell p { margin: 0 0 19px; }
.content-shell ul,
.content-shell ol { margin: 14px 0 25px; padding-left: 1.35rem; }
.content-shell li { margin: 8px 0; padding-left: .2rem; }
.content-shell li::marker { color: var(--accent); }
.content-shell hr {
  height: 1px;
  margin: 54px 0;
  border: 0;
  background: var(--line);
}
.content-shell strong { color: #22252a; }
.content-shell .accent-panel,
.content-shell .price-panel,
.content-shell .soft-panel,
.content-shell .warm-panel,
.content-shell .content-card {
  margin: 27px 0;
  padding: clamp(21px, 3vw, 31px);
  border-radius: var(--radius-lg);
}
.content-shell .accent-panel {
  border: 1px solid #e5cbd0;
  border-left: 6px solid var(--accent);
  background: #faf1f3;
}
.content-shell .price-panel {
  border: 1px solid #dfbcc3;
  border-left: 6px solid var(--accent-dark);
  background: var(--accent-soft);
}
.content-shell .soft-panel {
  border: 1px solid var(--line);
  background: var(--surface-soft);
}
.content-shell .warm-panel {
  border: 1px solid #ead9cd;
  background: var(--surface-warm);
}
.content-shell .content-card {
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 10px 28px rgba(22, 24, 29, .05);
}
.content-shell .accent-panel h2,
.content-shell .price-panel h2,
.content-shell .soft-panel h2,
.content-shell .warm-panel h2,
.content-shell .content-card h2 { margin-top: 0; }
.content-shell .card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 25px 0;
}
.content-shell .card-grid > div { margin: 0; }

.data-table-wrap {
  width: 100%;
  overflow-x: auto;
  margin: 25px 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
}
.data-table {
  width: 100%;
  min-width: 620px;
  margin: 0;
  border-collapse: collapse;
  background: #fff;
}
.data-table th,
.data-table td {
  padding: 16px 17px;
  border: 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.data-table th {
  color: var(--accent-dark);
  background: var(--accent-soft);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.data-table tbody tr:nth-child(even) { background: #fafafa; }
.data-table tr:last-child td { border-bottom: 0; }

.page-aside { position: sticky; top: 112px; }
.aside-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.aside-card + .aside-card { margin-top: 16px; }
.aside-card h2 {
  margin: 0 0 12px;
  font-size: 1.3rem;
  line-height: 1.2;
  font-weight: 850;
  letter-spacing: -.025em;
}
.aside-card h2 strong { font-weight: inherit; }
.aside-card p { margin: 0 0 17px; color: var(--muted); font-size: .92rem; }
.aside-card .button { width: 100%; }
.aside-links { display: grid; gap: 0; }
.aside-links a {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: .9rem;
  font-weight: 750;
  text-decoration: none;
}
.aside-links a:last-child { border-bottom: 0; }

.site-footer { background: var(--footer); color: #e5e6e8; }
.footer-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 58px 0 31px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 44px;
}
.footer-title {
  color: #fff;
  font-size: 1.65rem;
  line-height: 1.15;
  font-weight: 850;
  letter-spacing: -.04em;
}
.footer-inner h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.footer-inner p { margin: 0 0 12px; color: #bfc1c6; }
.footer-inner a { color: #f1d9de; }
.footer-links { display: grid; gap: 8px; }
.footer-bottom {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 22px 0 29px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: #92969e;
  font-size: .8rem;
}
.mobile-cta { display: none; }
.legal-note {
  padding: 17px 19px;
  border: 1px dashed #b98961;
  border-radius: var(--radius-md);
  background: #fff9ef;
  color: #5a4532;
}
:focus-visible { outline: 3px solid #d47c8b; outline-offset: 3px; }

@media (max-width: 1080px) {
  .site-nav {
    display: none;
    position: absolute;
    left: 20px;
    right: 20px;
    top: 77px;
    padding: 14px;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: var(--shadow-lg);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 12px 14px; }
  .nav-toggle { display: inline-grid; place-items: center; }
  .main-wrap { grid-template-columns: 1fr; }
  .page-aside {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
  .aside-card + .aside-card { margin-top: 0; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .header-inner,
  .hero-inner,
  .service-strip,
  .main-wrap,
  .footer-inner,
  .footer-bottom { width: min(100% - 28px, var(--max)); }
  .header-inner { min-height: 72px; }
  .brand-main { font-size: 1.6rem; }
  .brand-sub { display: none; }
  .hero { padding: 50px 0 53px; }
  .hero::after { right: -270px; top: 80px; }
  .hero-inner { grid-template-columns: 1fr; gap: 30px; }
  .hero h1 { font-size: clamp(2.45rem, 13vw, 4rem); line-height: 1; }
  .hero-lead { margin-top: 22px; }
  .hero-card { min-height: 225px; padding: 29px; }
  .hero-price { font-size: 3.7rem; }
  .service-strip { grid-template-columns: 1fr; margin-top: -18px; margin-bottom: 42px; }
  .main-wrap { gap: 25px; margin-bottom: 72px; }
  .content-shell { padding: 27px 20px; border-radius: 23px; }
  .content-shell h2 { margin-top: 48px; }
  .content-shell .card-grid,
  .page-aside,
  .footer-inner { grid-template-columns: 1fr; }
  .footer-inner { gap: 31px; }
  .mobile-cta {
    display: grid;
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 12px;
    z-index: 80;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 17px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 16px 45px rgba(22, 24, 29, .22);
    backdrop-filter: blur(12px);
  }
  .mobile-cta a {
    min-height: 44px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    background: var(--accent);
    color: #fff;
    font-weight: 800;
    text-decoration: none;
  }
  .mobile-cta a:last-child {
    border: 1px solid var(--accent);
    background: #fff;
    color: var(--accent);
  }
  .footer-bottom { padding-bottom: 95px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}

@media print {
  .site-header,
  .page-aside,
  .mobile-cta,
  .hero-actions,
  .site-footer,
  .service-strip { display: none !important; }
  body { background: #fff; }
  .hero { padding: 20px 0; }
  .hero::before, .hero::after { display: none; }
  .hero-inner, .main-wrap { width: 100%; display: block; }
  .hero-card { display: none; }
  .content-shell { border: 0; box-shadow: none; padding: 0; }
}
