:root {
  color-scheme: light;
  --ink: #1f1f1c;
  --muted: #525c5b;
  --accent: #2d4c6a;
  --accent-soft: #d7e8e6;
  --highlight: #f3ede6;
  --section-alt: #eff4f3;
  --surface: #ffffff;
  --shadow: 0 25px 60px rgba(18, 24, 22, 0.12);
  --radius: 24px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top right, rgba(45, 106, 103, 0.12), transparent 55%),
    linear-gradient(120deg, #f7f1ea, #fdfaf6 55%, #eef6f5 100%);
  line-height: 1.6;
}

body.no-scroll {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.contact-details a,
.footer-address a {
  color: inherit;
}

.site-header {
  padding: 28px 6vw;
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  z-index: 10;
  border-bottom: 1px solid rgba(31, 31, 28, 0.08);
}

.site-header-inner {
  max-width: 1700px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  border: 1px solid rgba(31, 31, 28, 0.12);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  background: #fff;
}

.nav-toggle-label span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand-logo {
  width: 220px;
  height: 100px;
  object-fit: contain;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.brand-name {
  font-family: "Fraunces", "Times New Roman", serif;
  font-weight: 700;
  font-size: 1.25rem;
}

.brand-subtitle {
  font-size: 0.95rem;
  color: var(--muted);
}

.site-nav {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.site-nav a {
  padding: 8px 12px;
  border-radius: 999px;
  transition: all 0.3s ease;
}

.site-nav a:hover {
  background: var(--accent-soft);
  color: var(--accent);
}

.cta-link {
  background: var(--accent);
  color: #fff;
}

.cta-link:hover {
  background: #245c5a;
  color: #fff;
}

main {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
}

.section {
  padding: 80px 0;
  scroll-margin-top: 120px; 
}

.section-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 6vw;
}

main > section:nth-of-type(even) {
  background: var(--section-alt);
}

main > section:first-of-type {
  padding-top: 40px;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: fadeUp 0.9s ease both;
}

.hero-eyebrow {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  color: var(--accent);
  font-weight: 600;
}

h1,
h2,
h3 {
  font-family: "Fraunces", "Times New Roman", serif;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.3rem, 3vw + 1.4rem, 3.6rem);
}

h2{
  margin-bottom: 1.5rem;
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--muted);
}

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

.button {
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 12px 25px rgba(45, 106, 103, 0.2);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 35px rgba(45, 106, 103, 0.25);
}

.button.ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid rgba(45, 106, 103, 0.4);
  box-shadow: none;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.highlight-title {
  font-weight: 700;
  color: var(--accent);
}

.highlight-text {
  font-size: 0.95rem;
  color: var(--muted);
}

.hero-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  animation: fadeUp 1.2s ease both;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}

.hero-caption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 18px 22px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.7));
  color: #fff;
  font-size: 0.95rem;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
}

.card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 20px 45px rgba(15, 18, 17, 0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 260px;
}

.card.impressum-card {
  min-height: 0;
}

.list {
  list-style: none;
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.list li::before {
  content: "•";
  color: var(--accent);
  margin-right: 8px;
}

.list.no-point>li::before {
  content: none;
}

.list li {
  display: flex;
  align-items: baseline;
}

.list-item-block {
  flex-direction: column;
  align-items: flex-start;
  /* gap: 10px; */
  padding-top: 1rem;
}

.list-item-block::before {
  content: none;
}

.list-title {
  font-weight: 600;
  color: var(--ink);
}

.check-list {
  list-style: none;
  display: grid;
  gap: 3px;
  margin-top: 10px;
  margin-left: 1rem;
  color: var(--muted);
}

.check-list li {
  display: flex;
  align-items: baseline;
}

.check-list li::before {
  content: "✓";
  color: var(--accent);
  margin-right: 8px;
  font-weight: 600;
}

.note {
  color: var(--muted);
  font-size: 0.9rem;
}

.feature {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: start;
  /* background: var(--highlight); */
  border-radius: var(--radius);
  padding: 36px;
}

.feature-text {
  display: grid;
  gap: 16px;
}

.spectrum {
  display: grid;
  gap: 18px;
}

.spectrum-group {
  /* background: rgba(255, 255, 255, 0.75); */
  background: var(--highlight);
  border-radius: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(31, 31, 28, 0.08);
  display: grid;
  gap: 12px;
}

.spectrum-group h3 {
  font-size: 1.05rem;
  color: var(--accent);
}

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill-grid span {
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(31, 31, 28, 0.08);
  font-size: 0.9rem;
}

.feature-panel {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
}

.stamp {
  border-left: 3px solid var(--accent);
  padding-left: 12px;
  color: var(--muted);
  font-size: 0.92rem;
}

.profile {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  align-items: start;
}

.profile-highlight {
  background: #fff;
  padding: 26px;
  border-radius: var(--radius);
  box-shadow: 0 18px 45px rgba(15, 18, 17, 0.08);
  display: grid;
  gap: 14px;
}

.team {
  display: grid;
  gap: 24px;
}

.team-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.team-card {
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(15, 18, 17, 0.08);
}

.contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  align-items: start;
}

.contact-card {
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius);
  padding: 30px;
  display: grid;
  gap: 16px;
  box-shadow: 0 25px 60px rgba(26, 56, 55, 0.35);
}

.contact-card .button {
  background: #fff;
  color: var(--accent);
  box-shadow: none;
}

.contact-card .button.ghost {
  border-color: rgba(255, 255, 255, 0.6);
  background: transparent;
  color: #fff;
}

.contact-details {
  display: grid;
  gap: 12px;
  font-size: 0.95rem;
}

.contact-info {
  background: #fff;
  padding: 26px;
  border-radius: var(--radius);
  box-shadow: 0 18px 40px rgba(15, 18, 17, 0.08);
  display: grid;
  gap: 16px;
}

.map-placeholder {
  background: linear-gradient(140deg, rgba(45, 106, 103, 0.15), rgba(45, 106, 103, 0.05));
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  font-weight: 600;
  color: var(--accent);
}

.site-footer {
  padding: 40px 6vw 60px;
  border-top: 1px solid rgba(31, 31, 28, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  color: var(--muted);
}

.lightbox {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 20;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
}

.lightbox-content {
  position: relative;
  width: min(960px, 92vw);
  height: min(720px, 85vh);
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.35);
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  z-index: 1;
}

.lightbox-close {
  justify-self: end;
  margin: 12px 12px 0;
  border: 0;
  background: rgba(15, 23, 42, 0.08);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.lightbox-frame {
  border: 0;
  width: 100%;
  height: 100%;
}

.footer-title {
  font-family: "Fraunces", "Times New Roman", serif;
  font-weight: 700;
  color: var(--ink);
}

.footer-note {
  font-size: 0.85rem;
}

.footer-link {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-hours {
  text-align: right;
}

.footer-address {
  text-align: right;
}

.footer-list {
  list-style: none;
  display: grid;
  gap: 6px;
  margin-top: 8px;
  color: var(--muted);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .site-header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .site-nav {
    flex-wrap: wrap;
  }

  .hero-media img {
    min-height: 320px;
  }
}

@media (max-width: 640px) {
  .site-header-inner {
    flex-direction: row;
    align-items: center;
  }

  .nav-toggle {
    position: absolute;
    opacity: 0;
  }

  .nav-toggle-label {
    display: inline-flex;
    margin-left: auto;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(14px);
    padding: 18px 6vw 24px;
    display: grid;
    gap: 10px;
    border-bottom: 1px solid rgba(31, 31, 28, 0.08);
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .site-nav a {
    width: 100%;
    border-radius: 14px;
    background: rgba(31, 31, 28, 0.04);
    padding: 12px 14px;
  }

  .site-nav .cta-link {
    background: var(--accent);
    color: #fff;
  }

  .nav-toggle:checked ~ .site-nav {
    transform: scaleY(1);
    opacity: 1;
  }

  .nav-toggle:checked + .nav-toggle-label span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

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

  .nav-toggle:checked + .nav-toggle-label span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  main {
    gap: 0;
  }

  .section {
    padding: 60px 0;
  }

  .brand-logo {
    width:200px;
    height: 110px;
  }

  .brand {
    gap: 12px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .team-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-hours {
    text-align: left;
  }

  .footer-address {
    text-align: left;
  }

  .lightbox-content {
    width: 92vw;
    height: 82vh;
  }
}
