:root {
  --bg: #f7f4ef;
  --surface: rgba(255, 255, 255, 0.92);
  --surface-solid: #ffffff;
  --surface-soft: #fcfbf8;
  --text: #1f2933;
  --muted: #5e665f;
  --line: rgba(56, 67, 79, 0.10);
  --line-strong: rgba(56, 67, 79, 0.16);

  --accent-orange: #f06a45;
  --accent-turquoise: #4fe3e6;
  --accent-dark: #38434f;

  --shadow-soft: 0 10px 30px rgba(28, 25, 23, 0.05);
  --shadow-card: 0 16px 46px rgba(28, 25, 23, 0.06);
  --shadow-hero: 0 22px 68px rgba(28, 25, 23, 0.08);

  --radius-xl: 34px;
  --radius-lg: 28px;
  --radius-md: 22px;

  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top right, rgba(79, 227, 230, 0.08), transparent 18%),
    radial-gradient(circle at bottom left, rgba(240, 106, 69, 0.05), transparent 20%),
    var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

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

.main-flow {
  padding-top: 32px;
  padding-bottom: 56px;
}

/* =========================
   HEADER
========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(247, 244, 239, 0.84);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(56, 67, 79, 0.08);
}

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

.brand {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-kicker {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 4px;
}

.brand-name {
  font-family: "DM Sans", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.desktop-nav a {
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.95rem;
  color: rgba(31, 41, 51, 0.76);
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.desktop-nav a:hover {
  background: rgba(79, 227, 230, 0.14);
  color: var(--accent-dark);
}

.desktop-nav .nav-cta {
  background: var(--accent-orange);
  color: #fff;
  font-weight: 500;
  box-shadow: 0 10px 24px rgba(240, 106, 69, 0.24);
}

.desktop-nav .nav-cta:hover {
  background: #ea643f;
  color: #fff;
  transform: translateY(-1px);
}

.mobile-nav {
  display: none;
  gap: 10px;
  padding-bottom: 14px;
  overflow-x: auto;
  scrollbar-width: none;
}

.mobile-nav::-webkit-scrollbar {
  display: none;
}

.mobile-nav a {
  white-space: nowrap;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(56, 67, 79, 0.08);
  box-shadow: var(--shadow-soft);
  font-size: 0.93rem;
}

/* =========================
   TYPO
========================= */

.section-label,
.mini-label {
  font-size: 11px;
  line-height: 1.2;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent-dark);
  font-weight: 500;
}

.pill-label {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(56, 67, 79, 0.10);
  box-shadow: 0 8px 18px rgba(28, 25, 23, 0.04);
}

h1,
h2,
h3,
.card-title {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  color: #1d252d;
}

h1 {
  margin-top: 18px;
  max-width: 10ch;
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  font-weight: 600;
}

h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  font-weight: 600;
}

h3,
.card-title {
  font-size: 1.55rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 600;
}

/* =========================
   BUTTONS
========================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.96rem;
  font-weight: 500;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--accent-orange);
  color: #fff;
  box-shadow: 0 12px 24px rgba(240, 106, 69, 0.24);
}

.btn-primary:hover {
  background: #e6623e;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.8);
  color: rgba(31, 41, 51, 0.86);
  border-color: rgba(56, 67, 79, 0.14);
}

.btn-secondary:hover {
  background: rgba(79, 227, 230, 0.10);
  border-color: rgba(79, 227, 230, 0.22);
}

.btn-light {
  background: #fff;
  color: var(--accent-dark);
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* =========================
   LAYOUT / CARDS
========================= */

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 22px;
  align-items: stretch;
}

.hero-card,
.card,
.scroll-card,
.team-card,
.contact-card {
  backdrop-filter: blur(8px);
}

.hero-card {
  position: relative;
  overflow: hidden;
  padding: 44px 42px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,255,255,0.94));
  border: 1px solid rgba(56, 67, 79, 0.08);
  box-shadow: var(--shadow-hero);
}

/* HERO MIT HINTERGRUNDBILD */

.hero-card-image {
  min-height: 540px;
  padding: 0;
  background: #cfd5d8;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      180deg,
      rgba(56, 67, 79, 0.16) 0%,
      rgba(56, 67, 79, 0.30) 28%,
      rgba(56, 67, 79, 0.50) 68%,
      rgba(56, 67, 79, 0.72) 100%
    );
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 44px 42px;
  max-width: 680px;
}

.pill-label-light {
  align-self: flex-start;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: none;
  backdrop-filter: blur(6px);
}

.hero-title-light {
  color: #ffffff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.14);
}

.hero-copy {
  margin: 18px 0 0;
  max-width: 520px;
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(31, 41, 51, 0.72);
}

.hero-copy-light {
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.10);
}

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

.btn-secondary-light {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
}

.btn-secondary-light:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.24);
}

.hero-aside {
  display: grid;
  gap: 18px;
}

.card,
.scroll-card,
.team-card {
  border: 1px solid rgba(56, 67, 79, 0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(255,255,255,0.90));
  box-shadow: var(--shadow-card);
}

.card {
  padding: 28px;
  border-radius: var(--radius-lg);
}

.card p,
.copy-card p,
.format-card p,
.info-card p,
.contact-copy p {
  font-size: 1rem;
  line-height: 1.78;
  color: rgba(31, 41, 51, 0.72);
}

.mini-card p:last-child,
.format-card p:last-child,
.info-card p:last-child,
.single-copy:last-child {
  margin-bottom: 0;
}

.scroll-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 28px;
  border-radius: var(--radius-lg);
  color: rgba(31, 41, 51, 0.80);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.scroll-card:hover {
  transform: translateY(-2px);
  border-color: rgba(79, 227, 230, 0.20);
  box-shadow: 0 18px 42px rgba(28, 25, 23, 0.08);
}

.scroll-arrow {
  font-size: 1.1rem;
  color: var(--accent-dark);
}

.section-block {
  padding-top: 72px;
}

.section-heading {
  margin-bottom: 24px;
}

.section-heading.narrow {
  max-width: 760px;
}

.section-heading h2 {
  margin-top: 10px;
}

/* =========================
   TEAM
========================= */

.team-grid,
.cards-3up {
  display: grid;
  gap: 22px;
}

.team-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.team-card {
  display: block;
  overflow: hidden;
  border-radius: var(--radius-lg);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.team-card:hover {
  transform: translateY(-3px);
  border-color: rgba(79, 227, 230, 0.20);
  box-shadow: 0 20px 54px rgba(28, 25, 23, 0.09);
}

.team-photo-frame {
  aspect-ratio: 4 / 3;
  padding: 18px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.gradient-a {
  background:
    linear-gradient(145deg, rgba(240, 106, 69, 0.12), rgba(79, 227, 230, 0.18));
}

.gradient-b {
  background:
    linear-gradient(145deg, rgba(79, 227, 230, 0.18), rgba(56, 67, 79, 0.08));
}

.photo-placeholder {
  height: 100%;
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  color: rgba(56, 67, 79, 0.56);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.72), rgba(255,255,255,0.52));
  border: 1px solid rgba(255,255,255,0.5);
  font-size: 0.96rem;
  letter-spacing: 0.02em;
}

.team-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-md);
}

.team-content {
  padding: 24px 26px 26px;
}

.team-content h3 {
  margin-top: 8px;
}

.team-teaser {
  margin: 12px 0 0;
  color: var(--accent-orange);
  font-weight: 500;
}

/* =========================
   SPLIT SECTIONS
========================= */

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

.split-reverse {
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
}

.intro-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.intro-card h2,
.copy-card h2 {
  margin-top: 10px;
}

.stack-copy > * + * {
  margin-top: 16px;
}

.cards-3up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.format-card h3 {
  margin-top: 8px;
}

.single-copy {
  margin-top: 18px;
}

/* =========================
   ACCORDION
========================= */

.accordion {
  display: grid;
  gap: 14px;
}

.accordion-item {
  border: 1px solid rgba(56, 67, 79, 0.10);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.55);
  overflow: hidden;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.accordion-item:hover {
  border-color: rgba(79, 227, 230, 0.24);
}

.accordion-item.is-open {
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 26px rgba(28, 25, 23, 0.04);
}

.accordion-trigger {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

.accordion-title {
  font-family: "DM Sans", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #1d252d;
}

.accordion-icon {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(79, 227, 230, 0.14);
  color: var(--accent-dark);
  font-size: 1.2rem;
  line-height: 1;
  transition: all 180ms ease;
}

.accordion-item.is-open .accordion-icon {
  background: rgba(240, 106, 69, 0.16);
  color: var(--accent-orange);
}

.accordion-panel {
  border-top: 1px solid rgba(56, 67, 79, 0.08);
}

.accordion-panel-inner {
  padding: 18px 22px 22px;
}

.accordion-panel-inner p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.78;
  color: rgba(31, 41, 51, 0.72);
}

/* =========================
   CONTACT
========================= */

.section-contact {
  padding-bottom: 28px;
}

.contact-panel {
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 28px;
  align-items: stretch;
  padding: 38px;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(56, 67, 79, 0.98), rgba(45, 54, 64, 0.98));
  box-shadow: 0 24px 70px rgba(28, 25, 23, 0.14);
}

.contact-copy h2,
.contact-copy p,
.contact-copy .contact-label {
  color: #f7f8f8;
}

.contact-copy h2 {
  margin-top: 10px;
  max-width: 12ch;
}

.contact-copy p:last-child {
  max-width: 560px;
  color: rgba(247, 248, 248, 0.78);
}

.contact-card {
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.contact-list.compact {
  gap: 12px;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(31, 41, 51, 0.78);
}

.contact-card .contact-list li {
  color: rgba(255, 255, 255, 0.92);
}

.contact-list a:hover {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.contact-icon {
  flex: 0 0 auto;
  width: 20px;
  display: inline-flex;
  justify-content: center;
  color: var(--accent-orange);
  font-weight: 600;
}

.contact-icon.light {
  color: #fff;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

/* =========================
   PROFILE PAGE
========================= */

.profile-top {
  padding-top: 12px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  color: rgba(31, 41, 51, 0.68);
  font-size: 0.96rem;
  transition: color 180ms ease, transform 180ms ease;
}

.back-link:hover {
  color: var(--accent-dark);
  transform: translateX(-1px);
}

.profile-hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 22px;
  align-items: stretch;
}

.profile-photo-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(56, 67, 79, 0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(255,255,255,0.90));
  box-shadow: var(--shadow-card);
}

.profile-photo-frame {
  aspect-ratio: 4 / 5;
  padding: 18px;
  height: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.profile-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-md);
}

.profile-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
}

.profile-title {
  margin-top: 12px;
  max-width: none;
  font-size: clamp(2.5rem, 4vw, 4.2rem);
  line-height: 1.03;
  letter-spacing: -0.04em;
}

.profile-subtitle {
  margin: 12px 0 0;
  font-size: 1rem;
  color: rgba(31, 41, 51, 0.64);
  font-weight: 500;
}

.profile-lead {
  margin: 22px 0 0;
  max-width: 640px;
  font-size: 1.06rem;
  line-height: 1.78;
  color: rgba(31, 41, 51, 0.72);
}

.profile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.profile-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
  gap: 22px;
}

.profile-main {
  display: grid;
  gap: 22px;
}

.profile-side {
  display: grid;
  gap: 18px;
  align-content: start;
}

.profile-card h2,
.side-card h2 {
  margin-top: 10px;
}

.profile-list {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.profile-list li {
  position: relative;
  padding-left: 18px;
  color: rgba(31, 41, 51, 0.74);
  line-height: 1.7;
}

.profile-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(79, 227, 230, 0.9);
  box-shadow: 0 0 0 4px rgba(79, 227, 230, 0.12);
}

.side-card {
  padding-top: 24px;
  padding-bottom: 24px;
}

/* =========================
   IMAGE SYSTEM
========================= */

.hero-card,
.team-photo-frame,
.profile-photo-frame,
.hero-image-wrap {
  overflow: hidden;
}

.hero-image-wrap {
  margin-top: 28px;
  border-radius: 24px;
  border: 1px solid rgba(56, 67, 79, 0.08);
}

.hero-image {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  border-radius: 22px;
}

.section-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 22px;
}

img.rounded {
  border-radius: 22px;
}

/* =========================
   FORMAT SLIDER
========================= */

.format-slider-shell {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
}

.format-slider {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 2px 10px;
  scrollbar-width: none;
}

.format-slider::-webkit-scrollbar {
  display: none;
}

.format-slide {
  flex: 0 0 85%;
  max-width: 420px;
  min-width: 0;
  scroll-snap-align: start;
  padding: 18px;
}

.format-media {
  position: relative;
  aspect-ratio: 16 / 10;
  padding: 14px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 18px;
}

.format-media::after {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: var(--radius-md);
  pointer-events: none;
  background: linear-gradient(180deg, rgba(56,67,79,0.00) 25%, rgba(56,67,79,0.08) 100%);
}

.format-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-md);
  transition: transform 400ms ease;
}

.format-slide:hover .format-image {
  transform: scale(1.04);
}

.format-content {
  padding: 2px 6px 6px;
}

.format-content h3 {
  margin-top: 8px;
}

.format-nav {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(56,67,79,0.10);
  border-radius: 999px;
  background: rgba(255,255,255,0.84);
  color: var(--accent-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, opacity 180ms ease;
}

.format-nav:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,0.96);
  border-color: rgba(79,227,230,0.18);
}

.format-nav:disabled {
  opacity: 0.45;
  cursor: default;
  transform: none;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1080px) {
  .hero-grid,
  .split-grid,
  .split-reverse,
  .contact-panel,
  .profile-hero,
  .profile-grid {
    grid-template-columns: 1fr;
  }

  .cards-3up {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-copy h2 {
    max-width: none;
  }

  .profile-photo-frame {
    aspect-ratio: 4 / 3;
  }

  .format-slider {
    gap: 18px;
  }

  .format-slide {
    flex: 0 0 78%;
    max-width: 520px;
  }
}

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

  .mobile-nav {
    display: flex;
  }

  .main-flow {
    padding-top: 22px;
  }

  .hero-card {
    padding: 34px 26px;
  }

  .hero-card.hero-card-image {
    min-height: 460px;
    padding: 0;
  }

  .hero-content {
    padding: 34px 26px;
  }

  .card,
  .scroll-card,
  .contact-card {
    padding-left: 22px;
    padding-right: 22px;
  }

  .team-grid,
  .cards-3up {
    grid-template-columns: 1fr;
  }

  .section-block {
    padding-top: 56px;
  }

  .contact-panel {
    padding: 26px;
    border-radius: 28px;
  }

  .format-slider-shell {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .format-nav {
    display: none;
  }

  .format-slider {
    gap: 16px;
    padding-bottom: 6px;
  }

  .format-slide {
    flex: 0 0 84%;
    max-width: none;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 22px), var(--container));
  }

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

  .brand-name {
    font-size: 1.08rem;
  }

  h1 {
    font-size: clamp(2.2rem, 10vw, 2.8rem);
    line-height: 1.04;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-card.hero-card-image {
    min-height: 400px;
    padding: 0;
  }

  .hero-content {
    padding: 22px;
  }

  .btn {
    width: 100%;
  }

  .hero-actions,
  .contact-actions,
  .profile-actions {
    flex-direction: column;
  }

  .team-content,
  .card,
  .contact-card {
    padding: 22px;
  }

  .team-photo-frame,
  .profile-photo-frame {
    padding: 14px;
  }

  .photo-placeholder,
  .team-image,
  .profile-image,
  .hero-image,
  .section-image {
    border-radius: 18px;
  }

  .scroll-card {
    align-items: flex-start;
  }

  .profile-title {
    font-size: clamp(2.1rem, 10vw, 2.8rem);
  }

  .hero-image {
    height: 220px;
  }

  .format-slider {
    gap: 14px;
  }

  .format-slide {
    flex: 0 0 88%;
    padding: 14px;
  }

  .format-media {
    padding: 10px;
    margin-bottom: 14px;
  }

  .format-media::after {
    inset: 10px;
  }

  .format-image {
    border-radius: 18px;
  }
}

/* =========================
   TEAM ACCORDION
========================= */

.team-intro-copy {
  margin: 14px 0 0;
  max-width: 760px;
  font-size: 1rem;
  line-height: 1.78;
  color: rgba(31, 41, 51, 0.68);
}

.team-grid-accordion {
  align-items: start;
}

.team-card-expanded {
  display: block;
  overflow: hidden;
}

.team-card-expanded:hover {
  transform: translateY(-2px);
}

.team-accordion {
  margin-top: 20px;
  display: grid;
  gap: 12px;
}

.team-accordion-item {
  border: 1px solid rgba(56, 67, 79, 0.10);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.44);
  overflow: hidden;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.team-accordion-item:hover {
  border-color: rgba(79, 227, 230, 0.22);
}

.team-accordion-item.is-open {
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 8px 22px rgba(28, 25, 23, 0.035);
}

.team-accordion-trigger {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
}

.team-accordion-title {
  font-family: "DM Sans", sans-serif;
  font-size: 1.04rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #1d252d;
}

.team-accordion-icon {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(79, 227, 230, 0.12);
  color: var(--accent-dark);
  font-size: 1.1rem;
  line-height: 1;
  transition: all 180ms ease;
}

.team-accordion-item.is-open .team-accordion-icon {
  background: rgba(240, 106, 69, 0.15);
  color: var(--accent-orange);
}

.team-accordion-panel {
  border-top: 1px solid rgba(56, 67, 79, 0.08);
}

.team-accordion-panel-inner {
  padding: 16px 18px 18px;
}

.team-accordion-panel-inner p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.72;
  color: rgba(31, 41, 51, 0.72);
}

@media (max-width: 560px) {
  .team-accordion {
    margin-top: 18px;
    gap: 10px;
  }

  .team-accordion-trigger {
    padding: 15px 16px;
  }

  .team-accordion-panel-inner {
    padding: 14px 16px 16px;
  }
}


/* =========================
   MAP CARD
========================= */

.contact-stack {
  display: grid;
  gap: 18px;
}

.map-card {
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.map-embed-wrap {
  border-radius: 22px;
  overflow: hidden;
  min-height: 320px;
  background: rgba(255, 255, 255, 0.08);
}

.map-embed {
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
}

.map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

@media (max-width: 820px) {
  .contact-stack {
    gap: 16px;
  }
}

@media (max-width: 560px) {
  .map-card {
    padding: 22px;
  }

  .map-embed-wrap,
  .map-embed {
    min-height: 260px;
    height: 260px;
  }

  .map-actions {
    flex-direction: column;
  }
}

/* =========================
   TEAM LIST (QUALIFIKATIONEN)
========================= */

.team-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.team-list li {
  position: relative;
  padding-left: 18px;
  font-size: 0.98rem;
  line-height: 1.7;
  color: rgba(31, 41, 51, 0.74);
}

/* dezente Punkte (passend zum Rest) */
.team-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(79, 227, 230, 0.9);
  box-shadow: 0 0 0 4px rgba(79, 227, 230, 0.12);
}

/* =========================
   WORDPRESS MENU SUPPORT
========================= */
.desktop-nav ul,
.mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.desktop-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
}

.mobile-nav ul {
  display: flex;
  gap: 10px;
}

.desktop-nav li,
.mobile-nav li {
  margin: 0;
  padding: 0;
}
