@font-face {
  font-family: 'Mont';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local('Mont Regular'), local('Mont-Regular'), url('/new/dist/fonts/Mont-Regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Mont';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: local('Mont SemiBold'), local('Mont-SemiBold'), url('/new/dist/fonts/Mont-SemiBold.woff2') format('woff2');
}
@font-face {
  font-family: 'Mont';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local('Mont Bold'), local('Mont-Bold'), url('/new/dist/fonts/Mont-Bold.woff2') format('woff2');
}

:root {
  --brand: #ffff00;
  --ink: #000000;
  --muted-60: #000000;
  --muted-70: #000000;
  --muted-80: #000000;
  --border-soft: #000000;
  --max-width: 64rem;
  font-size: 16px;
}

@property --sweep-angle {
  syntax: '<angle>';
  inherits: false;
  initial-value: 0deg;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Mont', 'Helvetica Neue', Arial, sans-serif;
  background-color: var(--brand);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

a:hover {
  color: inherit;
}

button {
  font: inherit;
  color: inherit;
}

.min-h-screen {
  min-height: 100vh;
}

.bg-white {
  background-color: #ffffff;
}

.bg-black\/70 {
  background-color: #000000;
}

.text-ink {
  color: var(--ink);
}

.text-white {
  color: #ffffff;
}

.text-black\/60 {
  color: var(--muted-60);
}

.text-black\/70 {
  color: var(--muted-70);
}

.text-black\/80 {
  color: var(--muted-80);
}

.font-sans {
  font-family: 'Mont', 'Helvetica Neue', Arial, sans-serif;
}

.font-semibold {
  font-weight: 600;
}

.text-xs {
  font-size: 0.75rem;
  line-height: 1.2;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.4;
}

.text-base {
  font-size: 1rem;
  line-height: 1.5;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.5;
}

.uppercase {
  text-transform: uppercase;
}

.tracking-\[0\.3em\] {
  letter-spacing: 0.3em;
}

.flex {
  display: flex;
}

.inline-flex {
  display: inline-flex;
}

.flex-col {
  flex-direction: column;
}

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

.items-center {
  align-items: center;
}

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

.justify-between {
  justify-content: space-between;
}

.grid {
  display: grid;
}

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

@media (min-width: 768px) {
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.gap-10 {
  gap: 2.5rem;
}

.gap-16 {
  gap: 4rem;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-8 {
  gap: 1rem;
}

.space-y-2 > * + * {
  margin-top: 0.5rem;
}

.space-y-6 > * + * {
  margin-top: 1.5rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mt-4 {
  margin-top: 1rem;
}

.hidden {
  display: none;
}

.relative {
  position: relative;
}

.fixed {
  position: fixed;
}

.z-50 {
  z-index: 50;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.border {
  border-width: 1px;
  border-style: solid;
}

.border-b {
  border-bottom-width: 1px;
  border-bottom-style: solid;
}

.border-t {
  border-top-width: 1px;
  border-top-style: solid;
}

.border-black {
  border-color: #000000;
}

.border-black\/10 {
  border-color: #000000;
}

.rounded {
  border-radius: 0.25rem;
}

.rounded-full {
  border-radius: 9999px;
}

.max-w-4xl {
  max-width: 56rem;
}

.max-w-2xl {
  max-width: 42rem;
}

.max-w-sm {
  max-width: 24rem;
}

.w-full {
  width: 100%;
}

.w-10 {
  width: 2.5rem;
}

.h-10 {
  height: 2.5rem;
}

.min-h-screen {
  min-height: 100vh;
}

.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.gap-10,
.gap-8,
.gap-4,
.gap-2,
.gap-16 {
  align-content: flex-start;
}

.text-center {
  text-align: center;
}

.inline-flex {
  display: inline-flex;
}

.hover\:bg-brand:hover {
  background-color: var(--brand);
}

.hover\:text-black:hover {
  color: #000000;
}

.transition {
  transition: all 0.2s ease;
}

.uppercase {
  text-transform: uppercase;
}

.underline {
  text-decoration: underline;
}

.aspect-video {
  aspect-ratio: 16 / 9;
}

.overflow-hidden {
  overflow: hidden;
}

.fixed.inset-0 {
  position: fixed;
}

section,
header,
footer {
  width: 100%;
}

.hero-logotype {
  font-size: 2rem;
  font-weight: 600;
}

.hero-subtitle {
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #000000;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.hero-copy p {
  font-size: 1.15rem;
  margin-top: 0.5rem;
}

.contact-button {
  border: 1px solid #000;
  border-radius: 9999px;
  padding: 0.75rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.contact-button:hover {
  background-color: var(--brand);
  color: #000;
}

.contact-button-dark {
  border-color: #fff;
  color: #fff;
}

.contact-button-dark:hover {
  background-color: #fff;
  color: #000;
}

#address-modal .rounded {
  border-radius: 0.5rem;
}

#address-modal .rounded {
  border-radius: 0.5rem;
}

.logo-animate {
  width: 5.44rem;
  height: 5.44rem;
  position: relative;
  margin-bottom: 1rem;
  margin-left: -5px;
}

@media (min-width: 768px) {
  .logo-animate {
    width: 6.66rem;
    height: 6.66rem;
  }
}

@media (min-width: 1400px) {
  .logo-animate {
    width: 7.5rem;
    height: 7.5rem;
  }
}

.logo-type {
  width: 65%;
}

.logo-layer {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-origin: 50% 50%;
  will-change: transform;
}

.logo-inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform;
}

.logo-fin {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transform-origin: 50% 50%;
  transform: scale(0.94) rotate(-35deg);
  transition: opacity 600ms ease-out, transform 600ms ease-out;
}

.logo-fin.no-transition {
  transition: none !important;
}

.logo-fin.is-visible {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.logo-inner.is-pulsing {
  animation: finPulse 5s ease-in-out infinite;
}

.logo-animate .logo-layer,
.logo-animate .logo-inner {
  width: 100%;
  height: 100%;
}

.logo-animate .logo-inner {
  justify-content: center;
  align-items: center;
}

@media (max-width: 640px) {
  .flex-wrap.gap-10 > * {
    flex: 1 1 100%;
  }
}

.split-shell {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

@media (min-width: 1024px) {
  .split-shell {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .panel {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 767px) {
  .panel {
    padding: 2rem 1.5rem;
  }
}

.panel {
  padding: 2.5rem 2rem;
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 1024px) {
  .panel {
    min-height: 100vh;
  }
}

.panel-left {
  background-color: var(--brand);
  color: var(--ink);
}

.panel-right {
  background-color: #000;
  color: #fff;
  display: flex;
  align-items: center;
}

@media (min-width: 1024px) {
  .panel-right {
    min-height: 100vh;
    padding-bottom: 6rem;
  }

  .panel-left {
    position: sticky;
    top: 0;
    height: 100vh;
  }
}

.panel-content {
  width: 100%;
  max-width: 28rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  min-height: 100%;
}

.panel-left .panel-content {
  gap: 1rem;
}

.panel-right .panel-content {
  max-width: 40rem;
  justify-content: center;
  margin: 0 auto;
}

.debug-box {
  width: 100%;
  padding: 3rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px dashed rgba(255, 255, 255, 0.4);
  border-radius: 1.5rem;
  font-size: 1.125rem;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.accordion-toggle {
  width: 100%;
  text-align: left;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  border-radius: 1.25rem;
  position: relative;
  color: inherit;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.accordion-toggle::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  padding: 2px;
  background: conic-gradient(from 0deg, var(--brand) 0deg, var(--brand) var(--sweep-angle), transparent var(--sweep-angle) 360deg);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  pointer-events: none;
}

.panel-right .accordion-toggle {
  text-align: left;
  justify-content: flex-start;
  border-color: rgba(255, 255, 255, 0.2);
}

.accordion-icon {
  width: 1.25rem;
  height: 1.25rem;
  position: relative;
  margin-left: auto;
}

.accordion-icon::before,
.accordion-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 2px;
  background: var(--icon-color, currentColor);
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease;
}

.accordion-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.accordion-item.is-open .accordion-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.accordion-item.is-open .accordion-toggle::before {
  animation: border-sweep 0.9s forwards;
  opacity: 1;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding: 0 1.5rem 0 1.5rem;
}

.accordion-item.is-open .accordion-content {
  padding-bottom: 1.5rem;
}

.accordion-item.is-open .accordion-toggle {
  text-align: left;
  justify-content: flex-start;
  border-color: var(--brand);
  color: var(--ink);
  --icon-color: var(--brand);
}

.panel-right .accordion-item.is-open .accordion-toggle {
  text-align: left;
  justify-content: flex-start;
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--brand);
  --icon-color: var(--brand);
}

.accordion-item {
  border: 2px solid #000000;
  border-radius: 1.25rem;
  background-color: rgba(255, 255, 255, 0.55);
  color: #000;
  backdrop-filter: blur(6px);
}

.panel-right .accordion-item {
  background-color: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

.panel-right .accordion-content {
  padding: 0 1.5rem 0 1.5rem;
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-list a,
.contact-list button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 500;
  border: none;
  background: none;
  cursor: pointer;
  text-align: left;
}

.contact-list img {
  width: 2.5rem;
  height: 2.5rem;
}

.contact-block-dark .contact-list a,
.contact-block-dark .contact-list button {
  color: #fff;
}

.address {
  font-size: 0.85rem;
  color: #000000;
  margin-bottom: 1.25rem;
}

.contact-block-dark .address {
  color: rgba(255, 255, 255, 0.7);
}

.contact-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.contact-grid-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.04);
}

.contact-grid-item img {
  width: 1.5rem;
  height: 1.5rem;
}

.contact-map iframe {
  border-radius: 1rem;
  overflow: hidden;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1rem;
}

.cta-pill {
  border: 2px solid #000;
  border-radius: 1.25rem;
  padding: 1rem 1.5rem;
  background: transparent;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
  position: relative;
  overflow: hidden;
}

.cta-pill::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  padding: 2px;
  background: conic-gradient(from 0deg, #000 0deg, #000 var(--sweep-angle, 0deg), transparent var(--sweep-angle, 0deg) 360deg);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  pointer-events: none;
}

.cta-pill.is-active::before {
  animation: border-sweep 0.9s forwards;
  opacity: 1;
  background: conic-gradient(from 0deg, #000 0deg, #000 var(--sweep-angle, 0deg), transparent var(--sweep-angle, 0deg) 360deg);
}

.cta-pill.is-active {
  background: #000;
  color: #fff;
  border-color: #000;
}

.cta-pill .cta-arrow {
  display: inline-block;
  animation: arrow-drift 1.6s ease-in-out infinite;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.service-list {
  list-style: none;
  padding: 0;
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  font-size: 1rem;
}

.service-list li,
.accordion-content ul li {
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.panel-right .service-list li,
.panel-right .accordion-content ul li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.service-list li:last-child,
.accordion-content ul li:last-child {
  border-bottom: none;
}

.cta-block {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.legal {
  margin-top: auto;
  font-size: 0.75rem;
  line-height: 1.4;
}

.text-white\/70 {
  color: rgba(255, 255, 255, 0.7);
}

.text-white\/60 {
  color: rgba(255, 255, 255, 0.6);
}

@keyframes border-sweep {
  from {
    --sweep-angle: 0deg;
  }
  to {
    --sweep-angle: 360deg;
  }
}

@keyframes arrow-drift {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(6px);
  }
  100% {
    transform: translateX(0);
  }
}

.partner-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  width: 100%;
}

@media (min-width: 768px) {
  .partner-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    width: 100%;
  }
}

.partner-grid div,
.partner-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 6rem;
  background: rgba(255, 255, 255, 0.03);
  width: 100%;
}

.partner-placeholder {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.partner-grid img {
  max-width: 100%;
  height: auto;
  max-height: 4rem;
  object-fit: contain;
}

.partner-grid a img {
  max-height: 6rem;
}

.impressum {
  margin-top: 2rem;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.4;
}

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