* {
  box-sizing: border-box;
}

:root {
  --bg: #f9f5f7;
  --bg-elevated: #ffffff;
  --bg-soft: #f4eaf3;
  --surface-alt: #f8edf5;
  --text: #1f2430;
  --text-muted: #404a5a;
  --accent: #e73ea8;
  --accent-soft: #8f4baf;
  --accent-deep: #5a2c7a;
  --line: rgba(31, 36, 48, 0.12);
  --shadow: 0 18px 40px rgba(90, 44, 122, 0.08);
}

html {
  scroll-behavior: smooth;
}

body {
  width: 100%;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(231, 62, 168, 0.08), transparent 26%),
    radial-gradient(circle at 85% 12%, rgba(143, 75, 175, 0.08), transparent 20%),
    linear-gradient(180deg, #ffffff 0%, #f9f5f7 42%, #f4eaf3 100%);
  font-family: "Avenir Next", "Segoe UI", "Trebuchet MS", sans-serif;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.page-shell {
  width: min(1120px, calc(100% - 2rem));
  margin: 1rem auto 2rem;
}

.site-header,
.section,
.site-footer {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.site-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  border-radius: 1.4rem 1.4rem 0.9rem 0.9rem;
}

.footer-links {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.96);
}

.footer-copyright {
  margin-top: 0.4rem;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.92rem;
}

.footer-links a {
  text-decoration: none;
  color: #a0ede4;
  border-bottom: 1px solid rgba(160, 237, 228, 0.5);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #d0f7f3;
  border-bottom-color: #a0ede4;
  outline: none;
}

.site-footer {
  margin-top: 1rem;
  padding: 1.2rem 1.4rem;
  border-radius: 1rem 1rem 1.4rem 1.4rem;
  background: linear-gradient(135deg, rgba(143, 75, 175, 0.9), rgba(90, 44, 122, 0.92));
  border-color: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.96);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1rem;
}

.site-footer > * {
  flex: 1 1 0;
}

.site-footer p {
  color: inherit;
  margin: 0;
}

.site-footer .footer-copyright {
  text-align: center;
}

.site-footer .footer-links {
  text-align: right;
}

.footer-location {
  margin-top: 0.15rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: none;
  color: rgba(255, 255, 255, 0.8);
}

.legal-page {
  padding: 1.4rem;
}

.legal-page .content-shell {
  display: grid;
  gap: 1.25rem;
}

.legal-page .legal-card {
  padding: 1.2rem;
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(245, 240, 249, 0.95));
}

.legal-page .legal-card h2 {
  margin-bottom: 0.65rem;
}

.legal-page .legal-card p:last-child {
  margin-bottom: 0;
}

.legal-page .site-header,
.legal-page .site-footer {
  margin-left: 0;
  margin-right: 0;
}

.brand {
  display: inline-flex;
  align-self: flex-start;
  text-decoration: none;
}

.brand-logo {
  width: min(460px, 92vw);
  height: auto;
}

.header-banner {
  display: block;
  width: 100%;
  height: auto;
}

.brand-block {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
}

.header-location {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-deep);
  padding-left: 0.9rem;
  border-left: 2px solid var(--accent-deep);
  line-height: 1.4;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.site-nav a {
  text-decoration: none;
  padding: 0.68rem 0.95rem;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--text-muted);
  background: rgba(90, 44, 122, 0.04);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--accent-deep);
  border-color: rgba(90, 44, 122, 0.25);
  outline: none;
}

.site-nav a.current-page,
.site-nav a[aria-current="page"] {
  color: #ffffff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  box-shadow: 0 10px 22px rgba(90, 44, 122, 0.18);
}

.site-nav a.current-page:hover,
.site-nav a.current-page:focus-visible,
.site-nav a[aria-current="page"]:hover,
.site-nav a[aria-current="page"]:focus-visible {
  color: #ffffff;
  border-color: transparent;
}

.nav-cta {
  color: #ffffff !important;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep)) !important;
}

.menu-toggle,
.menu-button {
  display: none;
}

main {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.hero,
.showcase {
  display: grid;
  gap: 1.5rem;
  padding: 1.4rem;
}

.hero {
  align-items: center;
  grid-template-columns: 1fr;
  border-radius: 1.5rem;
  background:
    linear-gradient(135deg, rgba(231, 62, 168, 0.08), rgba(143, 75, 175, 0.06)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(248, 237, 245, 0.98));
}

.hero#start {
  position: relative;
  overflow: hidden;
  padding: 1.4rem;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.95), rgba(248, 237, 245, 0.9));
}

.hero#start::before {
  content: "";
  position: absolute;
  inset: 2% 6% -10% 18%;
  background: url("assets/Pflanze2.png") right center / contain no-repeat;
  opacity: 0.96;
  filter: saturate(0.9) contrast(1.04);
  z-index: 0;
  pointer-events: none;
  transform: scale(1.18) translateX(2%);
}

.hero#start::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(248, 237, 245, 0.995) 0%,
    rgba(248, 237, 245, 0.99) 22%,
    rgba(248, 237, 245, 0.985) 34%,
    rgba(248, 237, 245, 0.97) 48%,
    rgba(248, 237, 245, 0.88) 62%,
    rgba(248, 237, 245, 0.46) 76%,
    rgba(248, 237, 245, 0.12) 88%,
    rgba(248, 237, 245, 0) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.hero#start .hero-copy {
  position: relative;
  z-index: 2;
  max-width: min(70%, 760px);
}

.hero.about-page {
  position: relative;
  overflow: hidden;
  padding: 1.4rem;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.95), rgba(248, 237, 245, 0.9));
}

.hero.about-page::before {
  content: "";
  position: absolute;
  inset: -8% 6% -10% 18%;
  background: url("assets/Pflanze3.png") right center / contain no-repeat;
  opacity: 0.96;
  filter: saturate(0.9) contrast(1.04);
  z-index: 0;
  pointer-events: none;
  transform: scale(1.18) translateX(2%);
}

.hero.about-page::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(248, 237, 245, 0.98) 0%,
    rgba(248, 237, 245, 0.97) 16%,
    rgba(248, 237, 245, 0.94) 28%,
    rgba(248, 237, 245, 0.84) 38%,
    rgba(248, 237, 245, 0.52) 54%,
    rgba(248, 237, 245, 0.18) 72%,
    rgba(248, 237, 245, 0) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.hero.about-page .hero-copy {
  position: relative;
  z-index: 2;
  max-width: min(70%, 760px);
}

.hero-copy {
  width: 100%;
}

.mobile-plant-card {
  display: none;
}

.hero h1 {
  max-width: 18ch;
}

.hero .lead {
  max-width: 75ch;
}

.eyebrow,
.section-label {
  margin: 0 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  color: var(--accent-deep);
}

.hero.about-page .eyebrow {
  line-height: 1.4;
}

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

h1 {
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  max-width: 12ch;
  margin-bottom: 1rem;
  color: var(--accent-deep);
}

.hero.about-page h1 {
  line-height: 1.08;
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  color: var(--accent-deep);
}

h3 {
  margin-bottom: 0.6rem;
  font-size: 1.1rem;
}

.lead {
  max-width: 60ch;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.4rem 0 1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.15rem;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
  font-weight: 700;
}

.button-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  color: #ffffff;
}

.button-secondary {
  border-color: rgba(32, 38, 79, 0.16);
  color: var(--text);
  background: rgba(32, 38, 79, 0.03);
}

.project-menu {
  position: relative;
  display: inline-block;
  z-index: 30;
}

.project-menu-toggle {
  cursor: pointer;
  font: inherit;
}

.project-menu-list {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  display: none;
  flex-direction: column;
  min-width: 16rem;
  padding: 0.45rem;
  border: 1px solid rgba(32, 38, 79, 0.12);
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 16px 38px rgba(32, 38, 79, 0.12);
  z-index: 10;
}

.project-menu.open .project-menu-list {
  display: flex;
}

.project-menu-list a {
  padding: 0.7rem 0.8rem;
  border-radius: 0.7rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
}

.project-menu-list a:hover,
.project-menu-list a:focus-visible {
  background: rgba(32, 38, 79, 0.04);
  outline: none;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  padding: 0;
  margin: 1.25rem 0 0;
  list-style: none;
  color: var(--text-muted);
}

.trust-list li {
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(26, 171, 155, 0.3);
  background: rgba(26, 171, 155, 0.06);
  color: #0e6b62;
}

.hero-visual,
.showcase-media {
  margin: 0;
}

.hero-image,
.showcase-media img {
  width: 100%;
  border-radius: 1.2rem;
  object-fit: cover;
  box-shadow: var(--shadow);
  filter: saturate(0.92) contrast(1.02);
}

.hero-image {
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(90, 44, 122, 0.24);
}

.showcase-media img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center top;
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  border: 1px solid rgba(90, 44, 122, 0.24);
}

.showcase-wide-text {
  margin-bottom: 0;
}

.showcase-visible-text,
.showcase-desktop-text {
  display: block;
  margin-bottom: 0;
  color: var(--text-muted);
}

.showcase-tablet-text {
  display: block;
  margin-top: 1rem;
  margin-bottom: 0;
  color: var(--text-muted);
}

.showcase-copy > p:not(.section-label) {
  margin-bottom: 1rem;
}

.showcase-copy > p:last-child {
  margin-bottom: 0;
}

.showcase-copy p:not(.section-label),
.showcase-tablet-text {
  color: #4d5561;
}

.section {
  padding: 1.4rem;
  border-radius: 1.25rem;
}

.card-grid,
.about-grid {
  display: grid;
  gap: 1rem;
}

.card h3 {
  color: var(--accent-soft);
}

.card {
  padding: 1.2rem;
  border-radius: 1rem;
  border: 1px solid rgba(26, 171, 155, 0.28);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(245, 240, 249, 0.95));
}

.card p,
.about-grid p,
.showcase-copy p:not(.section-label),
.contact-box p {
  color: var(--text-muted);
}

.showcase-copy .section-label {
  color: var(--accent-soft);
}

.showcase-project-link {
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.site-footer p {
  color: var(--bg-soft);
}

.footer-location {
  margin-top: 0.15rem;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: none;
  color: rgba(255, 255, 255, 0.8);
}

.footer-location-highlight {
  color: #ffd2f5;
  text-shadow: 0 0 10px rgba(255, 210, 245, 0.28);
}

.showcase {
  overflow: hidden;
  background: linear-gradient(180deg, rgba(246, 228, 230, 0.98), rgba(255, 247, 247, 0.97));
}

.showcase-media {
  position: relative;
  z-index: 0;
  align-self: stretch;
  min-height: 100%;
}

.showcase-copy {
  position: relative;
  z-index: 1;
}

.showcase-media img {
  width: auto;
  height: auto;
  max-width: 100%;
  border: 0;
  border-radius: 1.2rem;
  box-shadow: none;
  mask-image: linear-gradient(90deg, #000 0%, #000 16%, rgba(0, 0, 0, 0.9) 34%, rgba(0, 0, 0, 0.58) 62%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 16%, rgba(0, 0, 0, 0.9) 34%, rgba(0, 0, 0, 0.58) 62%, transparent 100%);
}

@media (max-width: 759px) {
  .showcase-media {
    display: none;
  }
}

.contact-box {
  padding: 1.2rem;
  border-radius: 1rem;
  border: 1px solid rgba(26, 171, 155, 0.22);
  background: linear-gradient(135deg, rgba(231, 47, 152, 0.06), rgba(26, 171, 155, 0.05));
}

.contact-form {
  display: grid;
  gap: 0.75rem;
  margin-top: 0;
}

.contact-form label {
  font-weight: 700;
  color: var(--accent-deep);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(32, 38, 79, 0.16);
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
  min-height: 9rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(231, 47, 152, 0.28);
  border-color: rgba(231, 47, 152, 0.45);
}

.contact-form .button {
  justify-self: start;
}

.contact-note {
  margin-top: 0.9rem;
  margin-bottom: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.site-footer {
  margin-top: 1rem;
  padding: 1rem 1.4rem;
  border-radius: 0.9rem 0.9rem 1.4rem 1.4rem;
}

.site-footer p:last-child {
  margin-bottom: 0;
}

.current-page {
  color: #ffffff !important;
  background: linear-gradient(135deg, var(--accent-deep), var(--accent-soft)) !important;
}

@media (max-width: 759px) {
  .hero#start {
    overflow: visible;
  }

  .project-menu-list {
    position: static;
    width: min(14rem, 48vw);
    min-width: 0;
    flex: 0 1 auto;
    transform: none;
    z-index: 20;
  }

  .project-menu {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: auto;
  }

  .project-menu-toggle {
    width: auto;
  }

  .project-menu-list a {
    white-space: normal;
  }

  .site-header {
    position: relative;
    z-index: 2000;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .menu-button {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 2001;
    display: flex;
    width: 2.8rem;
    height: 2.8rem;
    margin-left: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.28rem;
    border: 1px solid rgba(90, 44, 122, 0.18);
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 24px rgba(90, 44, 122, 0.12);
    cursor: pointer;
  }

  .menu-button span {
    display: block;
    width: 1.25rem;
    height: 2px;
    background: var(--accent-deep);
    transition: transform 160ms ease, opacity 160ms ease;
  }

  .menu-toggle:checked + .menu-button span:nth-child(1) {
    transform: translateY(0.4rem) rotate(45deg);
  }

  .menu-toggle:checked + .menu-button span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle:checked + .menu-button span:nth-child(3) {
    transform: translateY(-0.4rem) rotate(-45deg);
  }

  .menu-toggle:checked ~ .site-nav {
    display: flex !important;
  }

  .site-header.menu-open .site-nav {
    position: fixed;
    top: 4.5rem;
    right: 1rem;
    z-index: 2001;
    display: flex !important;
    width: min(17rem, calc(100vw - 2rem));
    padding: 0.75rem;
    border: 1px solid var(--line);
    border-radius: 0.9rem;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
  }

  .site-nav {
    display: none !important;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    margin-top: 0.75rem;
  }

  .site-nav a {
    text-align: center;
  }

  .hero#start {
    text-align: center;
  }

  .hero#start .hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
    margin-inline: auto;
    text-align: center;
  }

  .hero#start .hero-copy h1,
  .hero#start .hero-copy .lead {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .hero#start .hero-actions {
    justify-content: center;
  }

  .hero.about-page {
    text-align: center;
  }

  .hero.about-page .hero-copy {
    max-width: 100%;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero.about-page .eyebrow,
  .hero.about-page h1,
  .hero.about-page .lead {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .hero.about-page .hero-actions {
    justify-content: center;
  }

  .hero#start::before,
  .hero#start::after,
  .hero.about-page::before,
  .hero.about-page::after {
    display: none;
  }

  .mobile-plant-card {
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(90, 44, 122, 0.12);
    border-radius: 1.25rem;
    background: linear-gradient(180deg, rgba(255, 247, 247, 0.96), rgba(246, 228, 230, 0.98));
  }

  .mobile-plant {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0;
    object-fit: contain;
    object-position: center;
    filter: saturate(0.9) contrast(1.02);
    transform: scale(1.08);
    transform-origin: center center;
  }

  .hero#start + .mobile-plant-card .mobile-plant {
    transform: scale(1.08);
  }

  .hero.about-page + .mobile-plant-card .mobile-plant {
    transform: scale(1.08);
    object-position: center;
  }

  .legal-page .legal-card {
    text-align: center;
  }

  .legal-page .legal-card h1,
  .legal-page .legal-card h2,
  .legal-page .legal-card p,
  .legal-page .legal-card .section-label {
    text-align: center;
  }

  .site-footer {
    display: block;
    text-align: center;
  }

  .site-footer > * {
    flex: none;
  }

  .site-footer p {
    text-align: center;
  }

  .site-footer .footer-copyright,
  .site-footer .footer-links {
    text-align: center;
  }
}

@media (min-width: 760px) {
  .site-header {
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
  }

  .brand-block {
    width: 100%;
  }

  .site-nav {
    justify-content: center;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 2rem;
  }

  .hero#start,
  .hero.about-page {
    min-height: 34rem;
  }

  .hero.about-page .hero-copy {
    max-width: min(70%, 760px);
  }

  .section-grid,
  .showcase,
  .about {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .showcase-wide-text {
    grid-column: 1 / -1;
  }

  .showcase-media {
    order: -1;
    margin: -2rem -3rem -2rem -2rem;
    min-height: calc(100% + 4rem);
  }

  .showcase-copy {
    padding-left: 1rem;
  }

  .showcase-media img {
    mask-image: linear-gradient(180deg, #000 0%, #000 58%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 58%, transparent 100%);
  }

  .card-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-column: 1 / -1;
  }

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

  .contact {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

@media (min-width: 760px) and (max-width: 1100px) {
  .showcase {
    grid-template-columns: 1fr;
  }

  .showcase-copy {
    padding-left: 0;
  }

  .showcase-media {
    order: 0;
    margin: 0;
    min-height: 0;
  }

  .showcase-media img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    object-position: 45% top;
    mask-image: none;
    -webkit-mask-image: none;
  }

  .showcase-media::after {
    display: none;
  }

  .showcase-link-wrap {
    margin: 0;
  }

  .hero.about-page .hero-copy {
    padding: 1rem 1.25rem;
    border-radius: 1rem;
    background: radial-gradient(
      ellipse at center,
      rgba(255, 255, 255, 0.78) 0%,
      rgba(255, 255, 255, 0.54) 42%,
      rgba(255, 255, 255, 0.24) 72%,
      rgba(255, 255, 255, 0) 100%
    );
    box-shadow: none;
  }

  .showcase-copy .showcase-desktop-text {
    display: none;
  }

  .showcase-tablet-text {
    display: block;
    grid-column: 1 / -1;
  }

  .showcase-desktop-text {
    margin-bottom: 0;
  }

}

@media (min-width: 1101px) {
  .showcase {
    grid-template-rows: auto auto auto;
    align-items: stretch;
  }

  .showcase-copy {
    grid-column: 2;
    grid-row: 1;
  }

  .showcase-media {
    grid-column: 1;
    grid-row: 1 / 4;
    align-self: stretch;
  }

  .showcase-tablet-text {
    display: block;
    grid-column: 2;
    grid-row: 2;
    margin: 0 0 1rem;
  }

  .showcase-link-wrap {
    grid-column: 2;
    grid-row: 3;
    align-self: start;
    margin: 0;
  }

  .showcase-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 45% top;
    mask-image: linear-gradient(
      90deg,
      #000 0%,
      rgba(0, 0, 0, 0.96) 22%,
      rgba(0, 0, 0, 0.72) 40%,
      rgba(0, 0, 0, 0.2) 58%,
      transparent 88%
    );
    -webkit-mask-image: linear-gradient(
      90deg,
      #000 0%,
      rgba(0, 0, 0, 0.96) 22%,
      rgba(0, 0, 0, 0.72) 40%,
      rgba(0, 0, 0, 0.2) 58%,
      transparent 88%
    );
  }
}

/* Visitenkarte */
.visitenkarte-body {
  margin: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at top left, rgba(231, 62, 168, 0.08), transparent 28%),
    radial-gradient(circle at bottom right, rgba(143, 75, 175, 0.09), transparent 25%),
    linear-gradient(135deg, #f7eff4 0%, #f4eaf3 100%);
  font-family: "Avenir Next", "Segoe UI", sans-serif;
}

.visitenkarte-page {
  width: min(96vw, 980px);
  padding: 1.5rem;
}

.business-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 560px;
  border-radius: 28px;
  padding: 2rem 2rem 1.8rem;
  background: linear-gradient(135deg, rgba(255,255,255,0.96), rgba(249,240,247,0.98));
  border: 1px solid rgba(90, 44, 122, 0.14);
  box-shadow: 0 28px 60px rgba(90, 44, 122, 0.14);
}

.business-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(231, 62, 168, 0.08), transparent 30%, rgba(143, 75, 175, 0.08));
  pointer-events: none;
}

.card-top,
.card-mid,
.card-bottom {
  position: relative;
  z-index: 1;
}

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.card-brand {
  display: flex;
  align-items: center;
  flex: 1 1 0;
}

.card-logo {
  width: min(260px, 46vw);
  height: auto;
}

.profile-image-wrap {
  width: min(420px, 52vw);
  height: min(420px, 52vw);
  border-radius: 28px;
  overflow: hidden;
  border: 2px solid rgba(90, 44, 122, 0.15);
  box-shadow: 0 16px 28px rgba(90, 44, 122, 0.12);
  background: #fff;
  margin-left: auto;
}

.card-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 40% top;
}

.card-mid {
  margin-top: 0.8rem;
  display: grid;
  gap: 0.2rem;
  padding-top: 0.4rem;
}

.card-kicker {
  margin: 0;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #7a3d8c;
  font-weight: 700;
}

.card-mid h1 {
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
  color: #3d2f5f;
}

.card-location {
  margin: 0;
  color: #5a4e6d;
  font-size: 1.08rem;
  font-weight: 700;
}

.card-bottom {
  margin-top: 0.8rem;
  display: flex;
  align-items: baseline;
  gap: 1rem;
  border-top: 1px solid rgba(90, 44, 122, 0.14);
  padding-top: 0.9rem;
}

.phone-label {
  margin: 0;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  color: #7a3d8c;
}

.phone-number {
  margin: 0;
  font-size: clamp(1.5rem, 2.8vw, 2.3rem);
  font-weight: 800;
  letter-spacing: 0.03em;
  color: #2d2340;
}

@media (max-width: 620px) {
  .business-card {
    padding: 1.2rem 1rem 1rem;
  }

  .card-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .card-logo {
    width: min(220px, 52vw);
  }

  .profile-image-wrap {
    width: min(220px, 52vw);
    height: min(220px, 52vw);
    margin-left: 0;
  }

  .card-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
  }
}

@media (max-width: 759px) {
  .page-shell {
    width: min(1120px, calc(100% - 1rem));
    margin: 0.5rem auto 1rem;
  }

  h1 {
    max-width: none;
  }

  .hero-actions,
  .site-nav,
  .trust-list {
    gap: 0.6rem;
  }
}
