:root {
  --ink: #17242d;
  --ink-soft: #42505a;
  --paper: #f3efe8;
  --paper-deep: #e7dfd4;
  --white: #fffdfa;
  --accent: #a56d43;
  --accent-dark: #784a2c;
  --line: rgba(23, 36, 45, 0.14);
  --shadow: 0 28px 70px rgba(26, 32, 36, 0.12);
  --radius-xl: 36px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --shell: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.24;
  background-image: radial-gradient(rgba(23, 36, 45, 0.12) 0.55px, transparent 0.55px);
  background-size: 8px 8px;
  z-index: -1;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  transform: translateY(-150%);
  background: var(--white);
  padding: 10px 14px;
  border-radius: 10px;
  z-index: 1000;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(243, 239, 232, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(23, 36, 45, 0.08);
}

.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
}

.brand-mark {
  width: 48px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: var(--ink);
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  letter-spacing: 0.08em;
}

.brand-copy {
  display: grid;
  line-height: 1.15;
}

.brand-copy strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-weight: 600;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--ink-soft);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  position: relative;
  text-decoration: none;
  font-size: 14px;
  font-weight: 650;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 2px;
  background: var(--accent);
  transition: right 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  right: 0;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 750;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.header-cta {
  min-height: 44px;
  padding-inline: 19px;
  background: var(--ink);
  color: var(--white);
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.hero {
  padding: 58px 0 78px;
}

.hero-grid {
  min-height: 590px;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr);
  gap: 54px;
  align-items: center;
}

.hero-copy {
  padding: 28px 0;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.eyebrow-light {
  color: #dcb58f;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.05;
}

h1 {
  max-width: 790px;
  margin-bottom: 28px;
  font-size: clamp(48px, 6.5vw, 82px);
  letter-spacing: -0.045em;
}

h1 span {
  color: var(--accent);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(36px, 4.4vw, 58px);
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.15;
}

.lead {
  max-width: 720px;
  margin-bottom: 34px;
  color: var(--ink-soft);
  font-size: clamp(18px, 2vw, 22px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.button-primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(23, 36, 45, 0.2);
}

.button-secondary {
  background: rgba(255, 253, 250, 0.72);
  border: 1px solid var(--line);
}

.button-light {
  background: var(--white);
  color: var(--ink);
}

.button-outline-light {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.38);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 650;
}

.trust-list li {
  position: relative;
  padding-left: 17px;
}

.trust-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--accent);
}

.appointment-card {
  position: relative;
  overflow: hidden;
  min-height: 510px;
  padding: 38px;
  border-radius: var(--radius-xl);
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.appointment-card::before,
.appointment-card::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.appointment-card::before {
  width: 290px;
  height: 290px;
  right: -110px;
  top: -110px;
}

.appointment-card::after {
  width: 170px;
  height: 170px;
  right: -62px;
  top: -62px;
}

.card-topline {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 76px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.status-dot {
  position: relative;
  padding-left: 15px;
  color: rgba(255, 255, 255, 0.68);
}

.status-dot::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 7px;
  height: 7px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: #d8a777;
  box-shadow: 0 0 0 5px rgba(216, 167, 119, 0.11);
}

.card-kicker {
  margin-bottom: 5px;
  color: #dcb58f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
}

.card-price {
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  line-height: 1;
}

.card-price span {
  font-size: 88px;
  letter-spacing: -0.06em;
}

.card-text {
  max-width: 380px;
  color: rgba(255, 255, 255, 0.72);
}

.card-rule {
  height: 1px;
  margin: 29px 0 24px;
  background: rgba(255, 255, 255, 0.13);
}

.card-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 0 0 28px;
}

.card-details div {
  display: grid;
  gap: 5px;
}

.card-details dt {
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.card-details dd {
  margin: 0;
  font-size: 14px;
}

.text-link {
  display: inline-flex;
  gap: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 750;
}

.intro-strip {
  border-block: 1px solid var(--line);
  background: rgba(255, 253, 250, 0.54);
}

.strip-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
  padding-block: 27px;
}

.strip-grid p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.5;
}

.strip-grid p:last-child {
  text-align: right;
}

.strip-grid span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.section {
  padding: 112px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 50px;
}

.section-heading > p {
  margin-bottom: 10px;
  color: var(--ink-soft);
  font-size: 17px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 250, 0.76);
}

.service-card-featured {
  background: var(--paper-deep);
  border-color: transparent;
}

.service-label {
  margin-bottom: 50px;
  color: var(--accent-dark);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.service-card > p:not(.service-label):not(.service-price):not(.service-note) {
  color: var(--ink-soft);
}

.service-price,
.service-note {
  margin: auto 0 0;
  padding-top: 25px;
  font-weight: 800;
}

.service-price {
  font-size: 18px;
}

.service-note {
  color: var(--accent-dark);
  font-size: 13px;
}

.section-dark {
  background: var(--ink);
  color: var(--white);
}

.price-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1.3fr);
  gap: 75px;
  align-items: start;
}

.price-intro {
  position: sticky;
  top: 130px;
}

.price-intro p:not(.eyebrow) {
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.67);
}

.price-table-wrap {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--white);
  color: var(--ink);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
}

.price-table caption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.price-table th,
.price-table td {
  padding: 22px 24px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

.price-table thead th {
  background: #e9e1d7;
  color: var(--ink-soft);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.price-table tbody th {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
}

.price-table td {
  color: var(--ink-soft);
  font-size: 14px;
}

.price-table td:last-child {
  color: var(--ink);
  font-size: 18px;
  font-weight: 850;
  white-space: nowrap;
}

.table-note {
  margin: 0;
  padding: 22px 24px 25px;
  color: var(--ink-soft);
  font-size: 13px;
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);
  gap: 80px;
}

.process-heading {
  display: block;
  margin: 0;
}

.process-list {
  display: grid;
}

.process-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.process-list article:first-child {
  padding-top: 0;
}

.process-icon {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--paper-deep);
  color: var(--accent-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

.process-list h3 {
  font-size: 23px;
}

.process-list p {
  margin: 0;
  color: var(--ink-soft);
}

.faq-section {
  padding-top: 75px;
  background: rgba(255, 253, 250, 0.58);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1.38fr);
  gap: 80px;
}

.faq-intro {
  color: var(--ink-soft);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 25px 44px 25px 0;
  cursor: pointer;
  list-style: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-weight: 600;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-family: Arial, sans-serif;
  font-size: 26px;
  font-weight: 300;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 750px;
  padding: 0 45px 26px 0;
  color: var(--ink-soft);
}

.contact-band {
  padding: 70px 0;
  background: var(--accent-dark);
  color: var(--white);
}

.contact-band-inner {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  align-items: center;
}

.contact-band h2 {
  max-width: 760px;
  margin-bottom: 12px;
  font-size: clamp(34px, 4.2vw, 54px);
}

.contact-band p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.contact-actions {
  min-width: 210px;
  display: grid;
  gap: 11px;
}

.site-footer {
  padding: 70px 0 24px;
  background: #111b22;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.6fr;
  gap: 70px;
}

.brand-footer {
  margin-bottom: 24px;
}

.brand-footer .brand-mark {
  background: var(--accent);
}

.brand-footer .brand-copy small {
  color: rgba(255, 255, 255, 0.55);
}

.footer-grid > div:first-child > p {
  max-width: 500px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-grid h2 {
  margin-bottom: 18px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.footer-grid address {
  color: rgba(255, 255, 255, 0.66);
  font-style: normal;
}

.footer-grid address a,
.footer-grid nav a {
  color: inherit;
  text-decoration: none;
}

.footer-grid nav {
  display: grid;
  gap: 9px;
  color: rgba(255, 255, 255, 0.66);
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 55px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
}

.footer-bottom p {
  margin: 0;
}

.legal-page main {
  padding: 75px 0 110px;
}

.legal-card {
  max-width: 860px;
  padding: clamp(28px, 5vw, 64px);
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow);
}

.legal-card h1 {
  font-size: clamp(44px, 6vw, 70px);
}

.legal-card h2 {
  margin-top: 45px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
}

.legal-card h3 {
  margin-top: 30px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 18px;
}

.legal-card p,
.legal-card li {
  color: var(--ink-soft);
}

.legal-card a {
  color: var(--accent-dark);
}

@media (max-width: 980px) {
  .main-nav {
    display: none;
  }

  .hero-grid,
  .price-layout,
  .process-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: 0;
    gap: 35px;
  }

  .appointment-card {
    min-height: auto;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 250px;
  }

  .price-intro {
    position: static;
  }

  .faq-layout {
    gap: 25px;
  }

  .contact-band-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-actions {
    width: 100%;
    max-width: 420px;
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  .site-header {
    position: static;
  }

  .header-inner {
    min-height: 74px;
  }

  .brand-mark {
    width: 43px;
    border-radius: 13px;
  }

  .brand-copy strong {
    font-size: 17px;
  }

  .brand-copy small {
    font-size: 9px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding: 35px 0 52px;
  }

  .hero-copy {
    padding: 10px 0;
  }

  h1 {
    font-size: clamp(44px, 13vw, 62px);
  }

  h2 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .lead {
    font-size: 18px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .trust-list {
    display: grid;
  }

  .appointment-card {
    padding: 27px;
    border-radius: 27px;
  }

  .card-topline {
    margin-bottom: 55px;
  }

  .card-price span {
    font-size: 74px;
  }

  .card-details {
    grid-template-columns: 1fr;
  }

  .strip-grid {
    grid-template-columns: 1fr;
    gap: 17px;
  }

  .strip-grid span {
    display: none;
  }

  .strip-grid p:last-child {
    text-align: left;
  }

  .section {
    padding: 78px 0;
  }

  .service-card {
    min-height: auto;
    padding: 27px;
  }

  .service-label {
    margin-bottom: 35px;
  }

  .price-layout,
  .process-layout {
    gap: 45px;
  }

  .price-table-wrap {
    overflow-x: auto;
  }

  .price-table {
    min-width: 670px;
  }

  .process-list article {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .faq-list summary {
    font-size: 19px;
  }

  .contact-band {
    padding: 58px 0;
  }

  .contact-actions {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-grid > div:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

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

/* Erweiterungen für die ausführliche Startseite */
.hero-byline {
  margin: -12px 0 22px;
  color: var(--accent-dark);
  font-size: 16px;
  letter-spacing: 0.01em;
}

.section-soft {
  background: rgba(255, 253, 250, 0.58);
}

.orientation-section {
  padding-bottom: 90px;
}

.orientation-table-wrap {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 250, 0.82);
  box-shadow: 0 18px 50px rgba(23, 36, 45, 0.07);
}

.orientation-table {
  width: 100%;
  border-collapse: collapse;
}

.orientation-table caption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.orientation-table th,
.orientation-table td {
  padding: 19px 24px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

.orientation-table thead th {
  background: var(--paper-deep);
  color: var(--ink-soft);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.orientation-table tbody th {
  width: 43%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
}

.orientation-table tbody td {
  color: var(--ink-soft);
}

.orientation-table tbody tr:last-child th,
.orientation-table tbody tr:last-child td {
  border-bottom: 0;
}

.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.detail-section {
  border-bottom: 1px solid var(--line);
}

.detail-section-alt {
  background: rgba(255, 253, 250, 0.58);
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: 90px;
}

.detail-heading {
  position: sticky;
  top: 130px;
  align-self: start;
}

.detail-heading h2 {
  font-size: clamp(38px, 4.7vw, 58px);
}

.detail-content {
  font-size: 17px;
}

.detail-content > p {
  color: var(--ink-soft);
}

.check-list,
.request-list {
  display: grid;
  gap: 10px;
  margin: 25px 0 30px;
  padding: 0;
  list-style: none;
}

.check-list li,
.request-list li {
  position: relative;
  padding-left: 29px;
}

.check-list li::before,
.request-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.56em;
  width: 10px;
  height: 10px;
  border: 2px solid var(--accent);
  border-radius: 50%;
}

.detail-price {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 25px;
  margin: 30px 0 24px;
  padding: 22px 25px;
  border-radius: var(--radius-md);
  background: var(--ink);
  color: var(--white);
}

.detail-price span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.detail-price strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 29px;
  font-weight: 600;
}

.text-link-dark {
  color: var(--accent-dark);
}

.subtopic-card,
.notice-box,
.special-card,
.request-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 250, 0.82);
}

.subtopic-card {
  margin: 30px 0;
}

.subtopic-card .service-label,
.request-card .service-label {
  margin-bottom: 18px;
}

.subtopic-card p:last-child,
.notice-box p:last-child,
.special-card p:last-of-type {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.price-list {
  display: grid;
  margin: 28px 0 30px;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.price-list span {
  color: var(--ink-soft);
}

.price-list strong {
  white-space: nowrap;
}

.notice-box {
  margin: 28px 0 30px;
  border-left: 5px solid var(--accent);
}

.notice-box > strong {
  display: block;
  margin-bottom: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
}

.special-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.75fr);
  gap: 70px;
  align-items: center;
}

.lead-small {
  max-width: 700px;
  color: var(--ink-soft);
  font-size: 18px;
}

.special-card {
  padding: 38px;
  box-shadow: var(--shadow);
}

.special-card .button {
  margin-top: 12px;
}

.appointment-section {
  background: var(--paper-deep);
}

.appointment-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.75fr);
  gap: 70px;
  align-items: start;
}

.appointment-copy > p:not(.eyebrow):not(.contact-number):not(.payment-note) {
  max-width: 720px;
  color: var(--ink-soft);
  font-size: 18px;
}

.contact-number {
  display: grid;
  gap: 4px;
  margin: 30px 0;
}

.contact-number span {
  color: var(--accent-dark);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.contact-number a {
  width: fit-content;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(31px, 4vw, 45px);
  text-decoration: none;
}

.payment-note {
  max-width: 700px;
  margin: 25px 0 0;
  color: var(--ink-soft);
}

.request-card {
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.request-card .service-label {
  color: #dcb58f;
}

.request-card .request-list {
  color: rgba(255, 255, 255, 0.76);
}

.request-card address {
  margin-top: 29px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.72);
  font-style: normal;
}

.request-card address strong {
  color: var(--white);
}

.application-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.application-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 50px;
  align-items: center;
  padding: clamp(30px, 5vw, 55px);
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow);
}

.application-card h2 {
  margin-bottom: 16px;
  font-size: clamp(36px, 4.5vw, 54px);
}

.application-card p:last-child {
  max-width: 790px;
  margin-bottom: 0;
  color: var(--ink-soft);
}

.application-card .button {
  white-space: nowrap;
}

@media (max-width: 980px) {
  .detail-grid,
  .special-layout,
  .appointment-layout,
  .application-card {
    grid-template-columns: 1fr;
  }

  .detail-heading {
    position: static;
  }

  .special-layout,
  .appointment-layout {
    gap: 38px;
  }

  .application-card .button {
    width: fit-content;
  }
}

@media (max-width: 680px) {
  .hero-byline {
    margin-top: -4px;
  }

  .orientation-table-wrap {
    overflow-x: auto;
  }

  .orientation-table {
    min-width: 680px;
  }

  .inline-actions {
    display: grid;
  }

  .detail-grid {
    gap: 25px;
  }

  .detail-content {
    font-size: 16px;
  }

  .detail-price,
  .price-list li {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .detail-price strong {
    font-size: 26px;
  }

  .subtopic-card,
  .notice-box,
  .special-card,
  .request-card {
    padding: 25px;
  }

  .application-card {
    gap: 30px;
    border-radius: 26px;
  }

  .application-card .button {
    width: 100%;
  }
}

/* Unterseite Nutzungsrechte */
.rights-page main {
  overflow: hidden;
}

.subpage-hero {
  padding: 72px 0 86px;
}

.subpage-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(330px, 0.72fr);
  gap: 68px;
  align-items: center;
}

.subpage-hero h1 {
  max-width: 820px;
  margin-bottom: 26px;
  font-size: clamp(46px, 6vw, 76px);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 34px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
}

.breadcrumb a {
  color: var(--accent-dark);
  text-decoration: none;
}

.rights-key-card {
  padding: clamp(30px, 4.5vw, 46px);
  border-radius: var(--radius-xl);
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.rights-key-card .service-label {
  margin-bottom: 25px;
  color: #dcb58f;
}

.rights-key-card h2 {
  margin-bottom: 24px;
  font-size: clamp(31px, 3.7vw, 44px);
  line-height: 1.08;
}

.rights-key-card p:last-child {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.rights-key-card strong {
  color: var(--white);
}

.rights-jump-nav {
  position: sticky;
  top: 86px;
  z-index: 70;
  border-block: 1px solid var(--line);
  background: rgba(255, 253, 250, 0.92);
  backdrop-filter: blur(16px);
}

.rights-jump-inner {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  padding-block: 17px;
  scrollbar-width: thin;
}

.rights-jump-inner a {
  flex: 0 0 auto;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}

.rights-jump-inner a:hover,
.rights-jump-inner a:focus-visible {
  color: var(--accent-dark);
}

.rights-intro-section {
  padding-top: 92px;
  padding-bottom: 80px;
}

.rights-overview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.74fr);
  gap: 75px;
  align-items: end;
}

.rights-overview h2 {
  margin-bottom: 0;
}

.rights-overview > p {
  margin-bottom: 8px;
  color: var(--ink-soft);
  font-size: 18px;
}

.rights-content-section {
  padding-top: 88px;
  padding-bottom: 88px;
  border-top: 1px solid var(--line);
}

.rights-content-alt {
  background: rgba(255, 253, 250, 0.54);
}

.rights-section-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1.35fr);
  gap: 75px;
  align-items: start;
}

.rights-section-heading {
  position: sticky;
  top: 165px;
}

.rights-section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(36px, 4.5vw, 55px);
}

.rights-card,
.rights-rule-card {
  border: 1px solid var(--line);
  background: rgba(255, 253, 250, 0.84);
}

.rights-card {
  padding: clamp(28px, 4.5vw, 48px);
  border-radius: var(--radius-xl);
  box-shadow: 0 22px 55px rgba(26, 32, 36, 0.08);
  color: var(--ink-soft);
  font-size: 17px;
}

.rights-card > :last-child {
  margin-bottom: 0;
}

.rights-card-featured {
  border-color: transparent;
  background: var(--paper-deep);
}

.rights-warning {
  margin-top: 30px;
  padding: 22px 24px;
  border-left: 5px solid var(--accent-dark);
  border-radius: var(--radius-md);
  background: #f8eeee;
}

.rights-warning > strong {
  display: block;
  margin-bottom: 7px;
  color: #6f2929;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
}

.rights-warning p {
  margin: 0;
  color: #5f4545;
}

.rights-use-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 28px 0;
}

.rights-use-grid span {
  position: relative;
  padding: 14px 16px 14px 40px;
  border-radius: 13px;
  background: var(--paper);
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.rights-use-grid span::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 50%;
  width: 7px;
  height: 7px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--accent);
}

.rights-price-row {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: start;
  margin-bottom: 28px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.rights-price-row .service-label {
  margin-bottom: 12px;
}

.rights-price-row h3 {
  margin-bottom: 0;
}

.rights-price-row > strong {
  flex: 0 0 auto;
  color: var(--accent-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
  font-weight: 600;
}

.rights-rules-section {
  background: var(--ink);
  color: var(--white);
}

.rights-rules-heading > p {
  color: rgba(255, 255, 255, 0.64);
}

.rights-rules-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.rights-rule-card {
  min-height: 350px;
  display: flex;
  flex-direction: column;
  padding: 32px;
  border-color: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.055);
}

.rights-rule-card .service-label {
  margin-bottom: 44px;
  color: #dcb58f;
}

.rights-rule-card h3 {
  color: var(--white);
}

.rights-rule-card p:not(.service-label) {
  color: rgba(255, 255, 255, 0.66);
}

.rights-rule-card p:last-child {
  margin-bottom: 0;
}

.rights-rule-card strong {
  color: var(--white);
}

.rights-faq {
  padding-top: 105px;
}

@media (max-width: 980px) {
  .subpage-hero-grid,
  .rights-overview,
  .rights-section-grid {
    grid-template-columns: 1fr;
  }

  .subpage-hero-grid,
  .rights-overview,
  .rights-section-grid {
    gap: 36px;
  }

  .rights-section-heading {
    position: static;
  }

  .rights-rules-grid {
    grid-template-columns: 1fr;
  }

  .rights-rule-card {
    min-height: 0;
  }
}

@media (max-width: 680px) {
  .subpage-hero {
    padding: 48px 0 62px;
  }

  .breadcrumb {
    margin-bottom: 26px;
  }

  .rights-jump-nav {
    top: 76px;
  }

  .rights-jump-inner {
    gap: 22px;
  }

  .rights-intro-section,
  .rights-content-section,
  .rights-faq {
    padding-top: 66px;
    padding-bottom: 66px;
  }

  .rights-use-grid {
    grid-template-columns: 1fr;
  }

  .rights-price-row {
    flex-direction: column;
    gap: 12px;
  }

  .rights-card,
  .rights-key-card,
  .rights-rule-card {
    border-radius: 25px;
  }
}
