@font-face {
  font-family: "expansiva";
  src: url("../fonts/expansiva_bold-webfont.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Exo 2";
  src: url("../fonts/exo2-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Exo 2";
  src: url("../fonts/exo2-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Exo 2";
  src: url("../fonts/exo2-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --phz-primary: #2498af;
  --phz-accent: #ff6100;
  --phz-dark: #181d21;
  --phz-light: #f8f8f8;
  --phz-muted: #e7e7e7;
  --phz-content-width: 1100px;
  --phz-space-1: 4px;
  --phz-space-2: 8px;
  --phz-space-3: 12px;
  --phz-space-4: 16px;
  --phz-space-5: 20px;
  --phz-space-6: 24px;
  --phz-space-7: 32px;
  --phz-space-8: 40px;
  --phz-space-9: 48px;
  --phz-space-10: 60px;
  --phz-radius-sm: 4px;
  --phz-radius-md: 6px;
  --phz-radius-lg: 8px;
  --phz-shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.12);
  --phz-shadow-md: 0 6px 14px rgba(0, 0, 0, 0.2);
  --phz-shadow-lg: 0 8px 18px rgba(0, 0, 0, 0.18);
  --phz-shadow-soft: 0 3px 8px rgba(0, 0, 0, 0.12);
  --phz-shadow-card: 0 3px 8px rgba(0, 0, 0, 0.18);
  --phz-header-height: 67px;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Exo 2", sans-serif;
  -webkit-font-smoothing: antialiased;
  color: #2b2b2b;
  background: #ffffff;
  margin: 0;
  font-size: 1.008rem;
  font-weight:400;
  font-style: normal;
}

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

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

a {
  color: var(--phz-primary);
  text-decoration: none;
}

a:hover {
  color: var(--phz-accent);
}

h1, h2, h3, h4, h5, h6 {
  font-family: "expansiva", sans-serif;
  color: var(--phz-dark);
  margin: 0 0 16px;
}

p {
  line-height: 1.6;
}

.phz-site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.phz-main-nav-wrap {
  background: #fff;
  border-top: 1px solid rgba(190, 190, 190, 0.7);
  border-bottom: 1px solid rgba(190, 190, 190, 0.7);
}

.phz-main-nav-inner {
  max-width: var(--phz-content-width);
  margin: 0 auto;
  padding: 0 18px;
}

.phz-main-nav {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  background: #fff;
}

.phz-mobile-nav-toggle {
  display: none;
  align-items: center;
  justify-content: flex-start;
  height: 52px;
  padding: 0 18px;
  width: 100%;
  border: none;
  background: #fff;
  color: var(--phz-primary);
  font-size: 22px;
  cursor: pointer;
  border-bottom: 1px solid rgba(190, 190, 190, 0.7);
}

.phz-mobile-nav-toggle i {
  display: none;
}

body.phz-mobile-nav-open .phz-mobile-nav-toggle .fa-times {
  display: inline-block;
}

body:not(.phz-mobile-nav-open) .phz-mobile-nav-toggle .fa-bars {
  display: inline-block;
}

.phz-nav-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 65px;
  font-family: "Helvetica Neue","Helvetica",Helvetica,Arial,sans-serif;
  font-size: 0.84rem;
  font-style: normal;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--phz-primary);
  border-right: 1px solid rgba(190, 190, 190, 0.7);
}

.phz-icon {
  display: block;
  color: inherit;
}

.phz-nav-item:last-child {
  border-right: none;
}

.phz-nav-item:hover,
.phz-nav-item:focus-within {
  color: var(--phz-accent);
}

.phz-nav-item:focus-visible,
.phz-nav-item a:focus-visible {
  outline: 2px solid var(--phz-accent);
  outline-offset: -4px;
}

.phz-nav-home .phz-icon {
  width: 30px;
  height: 30px;
}

.phz-nav-home i {
  font-size: 24px;
  color: inherit;
}

.phz-nav-more {
  padding: 0;
}

.phz-nav-more-btn {
  all: unset;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.phz-nav-more-btn:focus-visible {
  outline: 2px solid var(--phz-accent);
  outline-offset: -4px;
}

.phz-dots {
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
}

.phz-dots span {
  width: 7px;
  height: 7px;
  background: var(--phz-primary);
  border-radius: 999px;
  display: block;
  transition: background 0.2s ease;
}

.phz-nav-more:hover .phz-dots span,
.phz-nav-more:focus-within .phz-dots span {
  background: var(--phz-accent);
}

.phz-nav-more.is-open .phz-dots span {
  background: var(--phz-accent);
}

.phz-nav-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 300px;
  background: #fff;
  border: 1px solid rgba(190, 190, 190, 0.7);
  box-shadow: var(--phz-shadow-lg);
  padding: 12px 0;
  margin-top: 8px;
  z-index: 10;
}

.phz-nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  font-family: "Exo 2", sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: var(--phz-primary);
  text-transform: uppercase;
}

.phz-nav-dropdown-item img {
  width: 26px;
  height: auto;
  display: block;
  flex-shrink: 0;
}

.phz-nav-dropdown-item .phz-icon {
  width: 26px;
  text-align: center;
  font-size: 17px;
  flex-shrink: 0;
}

.phz-nav-dropdown-item:hover {
  background: rgba(36, 152, 175, 0.06);
  color: var(--phz-accent);
}

.phz-nav-dropdown-item:hover .phz-icon {
  color: var(--phz-accent);
}

@media (max-width: 900px) {
  .phz-mobile-nav-toggle {
    display: inline-flex;
  }

  .phz-main-nav {
    display: none;
    grid-template-columns: 1fr;
  }

  .phz-nav-item {
    justify-content: flex-start;
    height: 54px;
    padding: 0 18px;
    font-size: 10px;
    letter-spacing: 0.8px;
    border-right: none;
    border-bottom: 1px solid rgba(190, 190, 190, 0.7);
  }

  .phz-nav-home {
    justify-content: flex-start;
  }

  .phz-nav-more {
    height: 54px;
    border-bottom: 1px solid rgba(190, 190, 190, 0.7);
  }

  .phz-nav-more .phz-nav-more-btn {
    justify-content: flex-start;
    padding-right: 18px;
  }

  .phz-nav-more .phz-dots {
    margin-left: 0;
  }

  .phz-nav-more .phz-dots span {
    background: var(--phz-accent);
  }

  body.phz-mobile-nav-open .phz-main-nav {
    display: grid;
  }

  .phz-nav-dropdown {
    position: absolute;
    left: 18px;
    right: auto;
    top: 100%;
    min-width: 240px;
    margin-top: 12px;
  }
}

@media (max-width: 620px) {
  .phz-nav-item {
    font-size: 12px;
    letter-spacing: 0.6px;
  }
}

.phz-container {
  max-width: var(--phz-content-width);
  margin: 0 auto;
  padding: 0 18px;
}

.phz-hero-slider {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.phz-hero-track {
  display: flex;
  transition: transform 500ms ease;
  will-change: transform;
}

.phz-hero-slide {
  position: relative;
  min-width: 100%;
  flex: 0 0 100%;
  height: 440px;
  background-size: cover;
  background-position: center center;
}

.phz-hero-slider-extra-height .phz-hero-slide {
  height: 560px;
}

.phz-hero-slider-extreme-height .phz-hero-slide {
  height: calc(100vh - var(--phz-header-height));
  height: calc(100svh - var(--phz-header-height));
}

@media (min-width: 640px) {
  .phz-hero-slide {
    height: 520px;
  }

  .phz-hero-slider-extra-height .phz-hero-slide {
    height: 650px;
  }

  .phz-hero-slider-extreme-height .phz-hero-slide {
    height: calc(100vh - var(--phz-header-height));
    height: calc(100svh - var(--phz-header-height));
  }
}

.phz-hero-caption {
  position: absolute;
  z-index: 2;
  --phz-caption-x: 50%;
  --phz-caption-y: 55%;
  --phz-caption-shift-x: -50%;
  --phz-caption-shift-y: -50%;
  --phz-caption-align: center;
  top: var(--phz-caption-y);
  left: var(--phz-caption-x);
  transform: translate(var(--phz-caption-shift-x), var(--phz-caption-shift-y));
  text-align: var(--phz-caption-align);
}

.phz-hero-caption-title {
  margin: 0;
  font-family: "expansiva", sans-serif;
  font-size: 22x;
  letter-spacing: 2px;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.phz-hero-caption-link {
  display: inline-block;
  margin-top: 6px;
  font-family: "Exo 2", sans-serif;
  font-size: 22px;
  letter-spacing: 0.5px;
  color: #ffffff;
  text-decoration: none;
}

.phz-hero-caption-link:hover {
  color: #ffede0;
}


.phz-page-hero {
  position: relative;
  height: 300px;
  background-size: cover;
  background-position: center top;
}

.page-projekte .phz-page-hero {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #ffffff;
}

.phz-hero-news {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  background-color: #ffffff;
}

.page-impressum .phz-page-hero:not(.phz-hero-slider-legal-height),
.page-datenschutz .phz-page-hero:not(.phz-hero-slider-legal-height) {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #ffffff;
}

.phz-hero-slider-extra-height.phz-page-hero {
  height: 400px;
}

.phz-hero-slider-legal-height.phz-page-hero {
  height: 440px;
  background-size: cover;
  background-position: center center;
}

.phz-hero-slider-extreme-height.phz-page-hero {
  height: calc(100vh - var(--phz-header-height));
  height: calc(100svh - var(--phz-header-height));
}

@media (min-width: 640px) {
  .phz-page-hero {
    height: 420px;
  }

  .phz-hero-slider-extra-height.phz-page-hero {
    height: 520px;
  }

  .phz-hero-slider-legal-height.phz-page-hero {
    height: 560px;
  }

  .phz-hero-slider-extreme-height.phz-page-hero {
    height: calc(100vh - var(--phz-header-height));
    height: calc(100svh - var(--phz-header-height));
  }
}

@media (max-width: 640px) {
  .phz-hero-caption {
    width: 100%;
    padding: 0 18px;
  }

  .phz-hero-caption-title {
    font-size: 22px;
  }

  .phz-hero-caption-link {
    font-size: 13px;
  }
}

.phz-hero {
  padding: 60px 0 30px;
  text-align: center;
}

.phz-hero-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 1px solid rgba(190, 190, 190, 0.55);
  margin-bottom: 18px;
}

.phz-hero-logo img {
  width: 72px;
  height: auto;
}

.phz-hero-title {
  font-size: 48px;
  letter-spacing: 2px;
}

.phz-intro {
  padding: 28px 0 36px;
}

.phz-intro-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.phz-intro-card img {
  width: 110px;
  height: auto;
}

.phz-about-intro {
  padding: 40px 0 30px;
  border-bottom: 1px solid rgba(190, 190, 190, 0.55);
}

.phz-about-intro-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 60px;
}

.phz-about-intro h3 {
  font-family: "expansiva", sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--phz-primary);
  margin-bottom: 14px;
}

.phz-about-intro p {
  color: #2f2f2f;
  font-size: 16px;
}

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

.phz-about-grid-item {
  min-height: 420px;
}

.phz-about-photo {
  background-size: cover;
  background-position: center;
}

.phz-about-panel {
  background: #203242;
  color: #fff;
  padding: 50px 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.phz-about-panel h4 {
  color: #fff;
  font-family: "expansiva", sans-serif;
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.phz-about-quote p {
  font-size: 15px;
  line-height: 1.7;
  color: #fff;
}

.phz-about-cv h4 {
  font-size: 15px;
  text-transform: none;
  letter-spacing: 0;
}

.phz-about-cv-label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 16px 0 12px;
  color: #fff;
}

.phz-about-cv-list {
  display: grid;
  gap: 10px;
  font-size: calc(18px * 0.75);
}

.phz-about-cv-item {
  display: grid;
  grid-template-columns: 4.5ch 1fr;
  gap: 16px;
  align-items: baseline;
}

.phz-about-cv-year {
  color: #fff;
  display: inline-block;
  min-width: 4ch;
  font-weight: 400;
  line-height: 1.45;
  font-variant-numeric: tabular-nums lining-nums;
  font-feature-settings: "tnum" 1, "lnum" 1;
}

.phz-about-cv-text {
  color: #fff;
  line-height: 1.45;
}

@media (max-width: 900px) {
  .phz-about-intro-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .phz-about-panel {
    padding: 36px 24px;
  }

  .phz-about-grid-item {
    min-height: 320px;
  }
}

.phz-tiles-section {
  background: #fff;
  padding: var(--phz-space-8) 0 var(--phz-space-10);
  border-top: 1px solid rgba(190, 190, 190, 0.55);
  border-bottom: 1px solid rgba(190, 190, 190, 0.55);
}

.phz-cube-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px;
}

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

.phz-cube-grid--compact {
  max-width: 640px;
  margin: 0 auto;
}

.phz-cube {
  position: relative;
  background: #f0f0f0;
  background-size: cover;
  background-position: center;
  aspect-ratio: 1 / 1;
  min-height: 220px;
  overflow: hidden;
  border: 1px solid rgba(190, 190, 190, 0.55);
  border-radius: var(--phz-radius-md);
  box-shadow: var(--phz-shadow-lg);
  isolation: isolate;
  contain: paint;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  perspective: 700px;
  -webkit-perspective: 700px;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}

.phz-cube-bg {
  display: none;
}

.phz-cube--about { background-image: url("../img/cubes/uns.jpg"); }
.phz-cube--services { background-image: url("../img/cubes/CubHand.jpg"); }
.phz-cube--projects { background-image: url("../img/cubes/cubP.jpg"); }
.phz-cube--team { background-image: url("../img/cubes/CubZiegl.jpg"); }

.phz-service-1 { background-image: url("../img/services/c1.jpg"); }
.phz-service-2 { background-image: url("../img/services/c2.jpg"); }
.phz-service-3 { background-image: url("../img/services/c3.jpg"); }
.phz-service-4 { background-image: url("../img/services/c4.jpg"); }
.phz-service-5 { background-image: url("../img/services/c5.jpg"); }
.phz-service-6 { background-image: url("../img/services/c6.jpg"); }
.phz-service-7 { background-image: url("../img/services/c7.jpg"); }
.phz-service-8 { background-image: url("../img/services/c8.jpg"); }
.phz-service-9 { background-image: url("../img/services/c9.jpg"); }
.phz-service-10 { background-image: url("../img/services/c10.jpg"); }

.phz-cube-info {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(36, 152, 175, 0.82);
  padding: 18px;
  font-size: calc(20px * 0.9);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.4px;
  color: #ffffff;
  z-index: 2;
  opacity: 0;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
  pointer-events: none;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  will-change: transform, opacity;
}

.phz-cube a {
  position: absolute;
  inset: 0;
  z-index: 3;
}

body.phz-cubes-ready .phz-cube.is-hover .phz-cube-info {
  opacity: 1;
  transform: none;
}

body.phz-cubes-ready .phz-cube.in-top .phz-cube-info {
  transform-origin: 50% 0%;
  animation: phz-in-top 0.35s ease forwards;
}

body.phz-cubes-ready .phz-cube.in-right .phz-cube-info {
  transform-origin: 100% 50%;
  animation: phz-in-right 0.35s ease forwards;
}

body.phz-cubes-ready .phz-cube.in-bottom .phz-cube-info {
  transform-origin: 50% 100%;
  animation: phz-in-bottom 0.35s ease forwards;
}

body.phz-cubes-ready .phz-cube.in-left .phz-cube-info {
  transform-origin: 0 50%;
  animation: phz-in-left 0.35s ease forwards;
}

body.phz-cubes-ready .phz-cube.out-top .phz-cube-info {
  transform-origin: 50% 0%;
  animation: phz-out-top 0.35s ease forwards;
}

.phz-cube.out-top {
  perspective-origin: top !important;
}

.phz-cube.in-top {
  perspective-origin: top !important;
}

.phz-cube.out-bottom {
  perspective-origin: bottom !important;
}

.phz-cube.in-bottom {
  perspective-origin: bottom !important;
}

.phz-cube.out-left {
  perspective-origin: left !important;
}

.phz-cube.in-left {
  perspective-origin: left !important;
}

.phz-cube.out-right {
  perspective-origin: right !important;
}

.phz-cube.in-right {
  perspective-origin: right !important;
}


body.phz-cubes-ready .phz-cube.out-right .phz-cube-info {
  transform-origin: 100% 50%;
  animation: phz-out-right 0.35s ease forwards;
}

body.phz-cubes-ready .phz-cube.out-bottom .phz-cube-info {
  transform-origin: 50% 100%;
  animation: phz-out-bottom 0.35s ease forwards;
}

body.phz-cubes-ready .phz-cube.out-left .phz-cube-info {
  transform-origin: 0 50%;
  animation: phz-out-left 0.35s ease forwards;
}

body:not(.phz-cubes-ready) .phz-cube:hover .phz-cube-info,
body:not(.phz-cubes-ready) .phz-cube:focus-within .phz-cube-info {
  opacity: 1;
  transform: none;
}

@keyframes phz-in-top {
  from { transform: rotateX(-90deg); opacity: 1; }
  to { transform: rotateX(0deg); opacity: 1; }
}

@keyframes phz-in-right {
  from { transform: rotateY(-90deg); opacity: 1; }
  to { transform: rotateY(0deg); opacity: 1; }
}

@keyframes phz-in-bottom {
  from { transform: rotateX(90deg); opacity: 1; }
  to { transform: rotateX(0deg); opacity: 1; }
}

@keyframes phz-in-left {
  from { transform: rotateY(90deg); opacity: 1; }
  to { transform: rotateY(0deg); opacity: 1; }
}

@keyframes phz-out-top {
  from { transform: rotateX(0deg); opacity: 1; }
  to { transform: rotateX(-90deg); opacity: 1; }
}

@keyframes phz-out-right {
  from { transform: rotateY(0deg); opacity: 1; }
  to { transform: rotateY(-90deg); opacity: 1; }
}

@keyframes phz-out-bottom {
  from { transform: rotateX(0deg); opacity: 1; }
  to { transform: rotateX(90deg); opacity: 1; }
}

@keyframes phz-out-left {
  from { transform: rotateY(0deg); opacity: 1; }
  to { transform: rotateY(90deg); opacity: 1; }
}

@media (max-width: 900px) {
  .phz-cube-grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .phz-cube-grid--compact {
    max-width: none;
  }

  .phz-cube-grid {
    gap: 0.94rem;
  }

  .phz-tiles-section {
    background: var(--phz-primary);
    border: none;
    padding: 30px 0 40px;
  }

  .phz-cube {
    aspect-ratio: 16 / 10;
    box-shadow: var(--phz-shadow-md);
    border-radius: var(--phz-radius-sm);
  }

  .phz-cube-info {
    inset: auto 0 0 0;
    height: auto;
    padding: 16px 20px;
    font-size: calc(17px * 0.9);
    background: #ffffff;
    color: #1f1f1f;
    text-align: left;
    justify-content: flex-start;
    text-shadow: none;
    opacity: 1;
    transform: none;
    animation: none !important;
  }
}

@media (max-width: 640px) {
  .phz-cube-grid {
    grid-template-columns: 1fr;
  }

  .phz-cube-info {
    font-size: calc(16px * 0.9);
  }
}

@media (prefers-reduced-motion: reduce) {
  .phz-cube-info {
    animation: none !important;
  }
}

.phz-section-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}

.phz-section-link {
  border: 1px solid rgba(190, 190, 190, 0.55);
  padding: 18px;
  text-transform: uppercase;
  font-family: "expansiva", sans-serif;
  text-align: center;
  transition: background 0.3s ease, color 0.3s ease;
}

.phz-section-link:hover {
  background: var(--phz-accent);
  color: #fff;
}

.phz-btn {
  display: inline-block;
  border: 1px solid rgba(190, 190, 190, 0.55);
  padding: 12px 24px;
  font-family: "expansiva", sans-serif;
  text-transform: uppercase;
  background: #fff;
  transition: background 0.3s ease, color 0.3s ease;
}

.phz-btn:hover {
  background: var(--phz-accent);
  color: #fff;
}

.phz-map-wrap {
  max-width: var(--phz-content-width);
  margin: var(--phz-space-8) auto var(--phz-space-10);
  padding: 0 18px;
  border: 1px solid rgba(190, 190, 190, 0.55);
  box-shadow: var(--phz-shadow-soft);
}

.phz-map {
  width: 100%;
  height: 420px;
}

.phz-map-overlay {
  padding: 12px 16px;
  font-family: "expansiva", sans-serif;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(190, 190, 190, 0.55);
  background: #fff;
}

.phz-map-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(190, 190, 190, 0.55);
  background: #fff;
}

.phz-map-item {
  appearance: none;
  border: 1px solid rgba(190, 190, 190, 0.55);
  background: #fff;
  padding: 8px 10px;
  font-family: "Exo 2", sans-serif;
  font-size: 12px;
  text-align: left;
  cursor: pointer;
}

.phz-map-item:hover {
  border-color: var(--phz-accent);
  color: var(--phz-accent);
}

.phz-map-popup-link {
  color: var(--phz-primary);
  text-decoration: underline;
  font-family: "Exo 2", sans-serif;
  font-size: 14px;
}

.phz-map-popup-link:hover {
  color: var(--phz-accent);
}

.phz-map-wrap--minimal .phz-map-overlay,
.phz-map-wrap--minimal .phz-map-list {
  display: none;
}

.phz-projects-intro {
  padding: 34px 0 24px;
  border-bottom: 1px solid rgba(190, 190, 190, 0.55);
}

.phz-projects-header {
  display: grid;
  grid-template-columns: 351px 1fr;
  gap: 26px;
  align-items: center;
}

.phz-projects-logo {
  width: 322px;
  height: auto;
}

.phz-projects-header h1 {
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  margin-bottom: 8px;
}

.phz-projects-copy p {
  margin: 0;
  color: #3a3a3a;
  font-size: 16px;
  line-height: 1.7;
}

.phz-projects-copy p + p {
  margin-top: 10px;
}

@media (max-width: 720px) {
  .phz-projects-header {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .phz-projects-logo {
    margin: 0 auto;
  }
}

.phz-project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: var(--phz-space-7);
}

.phz-project-card {
  position: relative;
  aspect-ratio: 4 / 3;
  min-height: 220px;
  border: 1px solid rgba(190, 190, 190, 0.55);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  box-shadow: var(--phz-shadow-sm);
}

.phz-project-card::after {
  display: none;
}

.phz-project-card h3 {
  position: absolute;
  top: 50%;
  left: 16px;
  right: 16px;
  margin: 0;
  padding: 12px 14px;
  font-size: 15px;
  font-family: "Exo 2", sans-serif;
  font-weight: 400;
  color: #1b1b1b;
  background: rgba(255, 255, 255, 0.88);
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.phz-project-card a {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.phz-project-card:hover h3,
.phz-project-card:focus-within h3 {
  opacity: 1;
}

.phz-project-card:not([style]) h3 {
  opacity: 1;
  transform: none;
  top: auto;
  bottom: 0;
  background: #fff;
}

@media (max-width: 980px) {
  .phz-project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .phz-project-grid {
    grid-template-columns: 1fr;
  }
}

.phz-project-detail {
  padding: var(--phz-space-7) 0 var(--phz-space-9);
}

.phz-project-detail--single {
  padding: 60px 0 80px;
}

.phz-project-detail--single .phz-project-header {
  max-width: 760px;
  margin: 0 auto 18px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.phz-project-detail--single .phz-project-title {
  margin: 0;
  font-size: 24px;
  font-weight: 500;
  color: #1b1b1b;
}

.phz-project-detail--single .phz-project-back {
  margin: 0;
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.phz-project-detail--single .phz-project-back .phz-btn {
  white-space: nowrap;
  padding: 9px 16px;
  font-size: 13px;
}

.phz-project-detail--single .phz-project-comment-link {
  margin-left: auto;
}

.phz-project-detail--single .phz-project-hero {
  max-width: 760px;
  margin: 0 auto 22px;
}

.phz-project-detail--single .phz-project-hero-image {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid rgba(190, 190, 190, 0.6);
}

.phz-project-viewer-main {
  display: block;
}

.phz-project-detail--single .phz-project-meta {
  max-width: 760px;
  margin: 0 auto;
}

.phz-project-detail--single .phz-project-subtitle {
  font-family: "Exo 2", sans-serif;
  text-transform: uppercase;
  color: #1b1b1b;
  font-size: 12px;
  letter-spacing: 0.6px;
  margin-bottom: 10px;
}

.phz-project-detail--single .phz-project-description {
  font-size: 13px;
  line-height: 1.6;
  color: #4a4a4a;
  margin-bottom: 12px;
}

.phz-project-detail--single .phz-project-description p {
  margin: 0 0 10px;
}

.phz-project-detail--single .phz-project-description p:last-child {
  margin-bottom: 0;
}

.phz-project-detail--single .phz-project-services {
  font-style: italic;
  color: #4a4a4a;
  font-size: 12px;
  margin: 0;
}

.phz-project-detail--single .phz-project-divider {
  height: 1px;
  background: rgba(190, 190, 190, 0.6);
  max-width: 760px;
  margin: 26px auto 16px;
}

.phz-project-detail--single .phz-project-divider--meta {
  margin: 16px auto 18px;
}

.phz-project-detail--single .phz-project-gallery-title {
  max-width: 760px;
  margin: 0 auto 12px;
  font-size: 16px;
  font-weight: 500;
  color: #1b1b1b;
}

.phz-project-detail--single .phz-gallery {
  max-width: 760px;
  margin: 0 auto 24px;
  gap: 12px;
}

.phz-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.phz-gallery img {
  width: 100%;
  height: auto;
  border: 1px solid rgba(190, 190, 190, 0.55);
}

.phz-project-thumb {
  display: block;
}

.phz-project-thumb img {
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.phz-project-thumb.is-active img {
  border-color: var(--phz-primary);
  box-shadow: 0 0 0 1px rgba(36, 152, 175, 0.4);
}

.phz-comments {
  max-width: 760px;
  margin: 34px auto 0;
  padding: 22px 18px 0;
  border-top: 1px solid rgba(190, 190, 190, 0.6);
}

.phz-comments-title {
  margin: 0 0 16px;
  font-size: 20px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.phz-comment-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.phz-comment-list .comment {
  padding: 14px 0;
  border-bottom: 1px solid rgba(190, 190, 190, 0.45);
}

.phz-comment-list .comment:last-child {
  border-bottom: none;
}

.phz-comment-list .children {
  list-style: none;
  margin: 12px 0 0;
  padding-left: 18px;
  border-left: 1px solid rgba(190, 190, 190, 0.4);
}

.phz-comment-list .comment-author .says {
  display: none;
}

.phz-comment-list .comment-author .fn {
  font-style: normal;
  font-weight: 500;
  color: #1b1b1b;
}

.phz-comment-list .comment-metadata {
  margin-top: 2px;
}

.phz-comment-list .comment-metadata a {
  color: #666;
  font-size: 12px;
}

.phz-comment-list .comment-content p {
  margin: 8px 0 0;
  color: #3d3d3d;
  line-height: 1.6;
  font-size: 14px;
}

.phz-comments-empty {
  margin: 0 0 14px;
  color: #555;
}

.phz-comments-form-title {
  margin: 18px 0 14px;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.phz-comments .comment-form {
  margin: 0;
}

.phz-comments .comment-form p {
  margin: 0 0 12px;
}

.phz-comments .comment-form label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  color: #222;
}

.phz-comments .comment-form input[type="text"],
.phz-comments .comment-form input[type="email"],
.phz-comments .comment-form textarea {
  width: 100%;
  border: 1px solid rgba(190, 190, 190, 0.75);
  padding: 10px 11px;
  font-family: "Exo 2", sans-serif;
  font-size: 14px;
  color: #1f1f1f;
  background: #fff;
}

.phz-comments .comment-form textarea {
  resize: vertical;
  min-height: 132px;
}

.phz-comments .form-submit {
  margin-top: 8px;
}

.phz-comments .comment-reply-title small {
  margin-left: 8px;
  font-size: 13px;
}

.phz-contact-intro {
  background-image: url('../img/contact/contact-background');
  background-size: cover;
  background-position: center center;
  position: relative;
  z-index: 2;
  box-shadow: 4px 8px 3px 0 rgba(0, 0, 0, 0.48);
  padding: 134px 0 122px;
}

.phz-contact-intro .phz-container {
  display: flex;
  justify-content: center;
}

.phz-contact-intro-card {
  display: inline-block;
  background: #f2f2f2;
  border: 1px solid rgba(190, 190, 190, 0.6);
  padding: 22px 28px;
  max-width: 820px;
}

.phz-contact-intro-card h2 {
  font-size: 18px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.phz-contact-intro-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: #4a4a4a;
}

.phz-legal-intro {
  background-image: url('../img/contact/contact-background');
  background-size: cover;
  background-position: center center;
  position: relative;
  z-index: 2;
  box-shadow: 4px 8px 3px 0 rgba(0, 0, 0, 0.48);
  padding: 86px 0 90px;
}

.phz-legal-card {
  background: #f2f2f2;
  border: 1px solid rgba(190, 190, 190, 0.6);
  max-width: 860px;
  margin: 0 auto;
}

.phz-legal-card--wide {
  max-width: 980px;
}

.phz-legal-card-text {
  padding: 24px 32px;
  border-top: 1px solid rgba(190, 190, 190, 0.6);
  border-bottom: 1px solid rgba(190, 190, 190, 0.6);
  text-align: center;
}

.phz-legal-card-text--left {
  text-align: left;
}

.phz-legal-card-text h2 {
  font-size: 28px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.phz-legal-text p {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.55;
  color: #3d3d3d;
}

.phz-legal-back {
  margin-top: 18px;
}

.phz-legal-intro--impressum .phz-legal-text p {
  text-align: center;
}

.phz-legal-intro--datenschutz .phz-legal-text p {
  text-align: justify;
}

.phz-legal-files {
  padding: 14px 24px 18px;
}

.phz-legal-file {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #1b1b1b;
  font-size: 13px;
}

.phz-legal-file i {
  font-size: 20px;
}

.phz-legal-contact {
  padding: 12px 0 56px;
  border-top: 1px solid rgba(190, 190, 190, 0.45);
  background: #ffffff;
  font-family: "expansiva", sans-serif;
}

.phz-legal-contact .phz-container {
  max-width: 980px;
}

.phz-legal-contact-row {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 56px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(190, 190, 190, 0.35);
}

.phz-legal-contact-row::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 10px;
  bottom: 10px;
  width: 1px;
  background: rgba(190, 190, 190, 0.35);
}

.phz-legal-contact-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.phz-legal-contact-item {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 10px;
  align-items: start;
  color: #3d3d3d;
  font-size: 13px;
  line-height: 1.45;
  font-family: "expansiva", sans-serif;
}

.phz-legal-contact-icon {
  color: var(--phz-primary);
  font-size: 19px;
  margin-top: 2px;
}

.phz-legal-contact-label {
  display: block;
  font-family: "expansiva", sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.6px;
  margin-bottom: 2px;
  color: #2f2f2f;
  text-transform: uppercase;
}

.phz-legal-contact-value {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "expansiva", sans-serif;
}

.phz-legal-contact-value::before {
  content: "▸";
  font-size: 16px;
  line-height: 1;
  color: #2f2f2f;
}

.phz-legal-contact-stack {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: "expansiva", sans-serif;
}

.phz-team-section {
  background: var(--phz-primary);
  color: #fff;
  padding: 34px 0 48px;
}

.phz-team-section h2 {
  color: #fff;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.phz-team-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  margin: 0 0 24px;
}

.phz-team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.phz-team-card {
  background: #fff;
  border: 1px solid rgba(190, 190, 190, 0.6);
  padding: 12px;
  box-shadow: var(--phz-shadow-card);
}

.phz-team-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #f5f5f5;
}

.phz-team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phz-team-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
  font-size: 72px;
  background-color: #f7f7f7;
  background-image:
    linear-gradient(45deg, rgba(200, 200, 200, 0.4) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(200, 200, 200, 0.4) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(200, 200, 200, 0.4) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(200, 200, 200, 0.4) 75%);
  background-size: 22px 22px;
  background-position: 0 0, 0 11px, 11px -11px, -11px 0;
}

.phz-team-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 14px 16px;
  font-size: 13px;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.phz-team-overlay h4 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 14px;
  font-family: "Exo 2", sans-serif;
  font-weight: 500;
}

.phz-team-overlay p {
  margin: 0;
}

.phz-team-card:hover .phz-team-overlay,
.phz-team-card:focus-within .phz-team-overlay {
  opacity: 1;
  transform: translateY(0);
}

.phz-contact-details {
  padding: 34px 0 50px;
  border-top: 1px solid rgba(190, 190, 190, 0.55);
}

.phz-contact-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px 40px;
}

.phz-contact-item {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 14px;
  align-items: start;
  padding: 10px 0;
  border-bottom: 1px solid rgba(190, 190, 190, 0.45);
}

.phz-contact-item:last-child,
.phz-contact-item:nth-last-child(-n+2) {
  border-bottom: none;
}

.phz-contact-icon {
  color: var(--phz-primary);
  font-size: 18px;
  margin-top: 3px;
}

.phz-contact-label {
  display: block;
  font-family: "expansiva", sans-serif;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.6px;
  margin-bottom: 4px;
  color: var(--phz-dark);
}

.phz-media {
  padding: 34px 0 60px;
}

.phz-media-inner {
  max-width: 900px;
  margin: 0 auto;
}

.phz-media h1 {
  font-family: "expansiva", sans-serif;
  font-size: 27px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 18px;
}

.phz-news-list {
  border-top: 1px solid rgba(190, 190, 190, 0.5);
}

.phz-news-item {
  display: flex;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(190, 190, 190, 0.5);
}

.phz-news-text {
  flex: 1;
  min-width: 0;
}

.phz-news-title {
  margin: 0 0 6px;
  color: #1b1b1b;
  font-family: "expansiva", sans-serif;
  font-size: 27px;
  line-height: 1.3;
}

.phz-news-subtitle {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 8px;
  color: #1b1b1b;
}

.phz-news-text p {
  margin: 0 0 8px;
  color: #3d3d3d;
  line-height: 1.55;
}

.phz-news-link a,
.phz-news-download a {
  color: var(--phz-primary);
  text-decoration: none;
}

.phz-news-link,
.phz-news-download {
  word-break: break-word;
}

.phz-news-link a:hover,
.phz-news-download a:hover {
  text-decoration: underline;
}

.phz-news-download {
  margin-top: 6px;
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 13px;
}

.phz-news-download span {
  font-family: "expansiva", sans-serif;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.6px;
  color: #1b1b1b;
}

.phz-news-audio {
  margin-top: 10px;
}

.phz-news-audio audio {
  width: 100%;
  max-width: 520px;
}

.phz-news-media {
  flex: 0 0 220px;
  display: flex;
  justify-content: flex-end;
}

.phz-news-lightbox {
  display: block;
}

.phz-news-lightbox img {
  display: block;
  width: 100%;
  height: auto;
}

.phz-news-media--framed .phz-news-lightbox img {
  background: #3c3c3c;
  border: 1px solid #3c3c3c;
}

@media (max-width: 900px) {
  .phz-team-grid {
    grid-template-columns: 1fr;
  }

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

  .phz-legal-contact-row {
    grid-template-columns: 1fr;
    row-gap: 16px;
  }

  .phz-legal-contact-row::before {
    display: none;
  }

  .phz-news-item {
    flex-direction: column;
  }

  .phz-news-media {
    width: 100%;
    max-width: 320px;
  }
}

@media (max-width: 640px) {
  .phz-team-overlay {
    opacity: 1;
    transform: none;
  }

  .phz-contact-intro-card {
    width: 100%;
  }

  .phz-legal-intro {
    padding: 64px 0 68px;
  }

  .phz-legal-card {
    margin: 0 16px;
  }

  .phz-legal-card-text {
    padding: 20px 22px;
  }

  .phz-legal-files {
    padding: 12px 20px 16px;
  }

  .phz-project-detail--single .phz-project-header,
  .phz-project-detail--single .phz-project-hero,
  .phz-project-detail--single .phz-project-meta,
  .phz-project-detail--single .phz-project-divider,
  .phz-project-detail--single .phz-project-gallery-title,
  .phz-project-detail--single .phz-gallery {
    max-width: 100%;
  }

  .phz-project-detail--single .phz-project-title {
    font-size: 20px;
  }

  .phz-project-detail--single .phz-project-description {
    font-size: 14px;
  }
}

.phz-about {
  padding: 40px 0 60px;
}

.phz-quote {
  font-size: 20px;
  font-style: italic;
  color: var(--phz-primary);
  border-left: 3px solid var(--phz-accent);
  padding-left: 16px;
  margin-bottom: 30px;
}

.phz-timeline {
  display: grid;
  gap: 12px;
}

.phz-timeline-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 12px;
  align-items: start;
}

.phz-year {
  font-family: "expansiva", sans-serif;
  color: var(--phz-accent);
}

.phz-footer {
  border-top: 1px solid rgba(190, 190, 190, 0.6);
  padding: 18px 0;
  text-align: center;
  font-size: 12px;
  color: #7b7b7b;
}

@media (max-width: 720px) {
  .phz-intro-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .phz-topbar .phz-container {
    flex-direction: column;
  }
}
