:root {
  --orange: #fb7c24;
  --gold: #ffba00;
  --cream: #f9f8ef;
  --dark: #1a1a1a;
  --ink: #2b2b2b;
  --muted: #666666;
  --footer: #242424;
  --white: #ffffff;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Poppins", "Roboto", Arial, sans-serif;
  background: #ffffff;
}

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

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

.topbar {
  background: #242424;
  color: #ffffff;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 16px;
}

.topbar__inner,
.nav__inner,
.section__inner,
.footer__inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 38px;
}

.topbar__contact {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.socials {
  display: flex;
  gap: 14px;
  align-items: center;
  font-weight: 600;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
}

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

.logo {
  width: 164px;
}

.cert {
  width: 54px;
}

.nav__right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.menu {
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 0;
  margin: 0;
  list-style: none;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
}

.menu a {
  position: relative;
  padding: 10px 0;
}

.menu a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.menu a:hover,
.menu a.is-active {
  color: var(--orange);
}

.menu a:hover::after,
.menu a.is-active::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid #dddddd;
  background: #ffffff;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: #222222;
}

.hero {
  min-height: 80vh;
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.22)),
    url("../2023/12/Design-ohne-Titel12.png") center / cover no-repeat;
}

.hero__content {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 90px 0;
}

.hero h1,
.page-hero h1 {
  margin: 0 0 28px;
  color: #ffffff;
  font-family: "Roboto", Arial, sans-serif;
  font-size: clamp(38px, 6vw, 78px);
  font-weight: 400;
  line-height: 1.05;
  text-shadow: 1px 0 5px rgba(85, 84, 84, 0.78);
}

.hero h2 {
  margin: 50px 0 0;
  color: var(--gold);
  font-family: "Raleway", Arial, sans-serif;
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.15;
  text-shadow: 1px 0 2px rgba(97, 89, 89, 0.85);
}

.hero__list {
  margin: 0 0 0 18px;
  padding: 0;
  color: #ffffff;
  font-family: "Roboto", Arial, sans-serif;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
  text-shadow: 1px 0 5px rgba(85, 84, 84, 0.78);
}

.hero__list li::marker {
  color: var(--gold);
}

.section {
  padding: 100px 0;
}

.section--cream {
  background: var(--cream);
}

.section--dark {
  color: #ffffff;
  background:
    linear-gradient(rgba(26, 26, 26, 0.89), rgba(26, 26, 26, 0.89)),
    url("../2023/12/20160428_083945-1400x788-1.jpg") top left / cover no-repeat;
}

.section--charcoal {
  color: #ffffff;
  background: #242424;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 2.1fr;
  gap: 80px;
  align-items: center;
}

.split--even {
  grid-template-columns: 1fr 1fr;
}

.eyebrow {
  margin: 0 0 -8px;
  color: var(--ink);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 18px;
}

.section h2,
.section h1 {
  margin: 0;
  color: var(--ink);
  font-family: "Raleway", Arial, sans-serif;
  font-size: clamp(30px, 4vw, 45px);
  font-weight: 600;
  line-height: 1.3;
}

.section--dark h2,
.section--charcoal h2,
.section--charcoal h1 {
  color: #ffffff;
}

.divider {
  width: 100px;
  height: 1px;
  margin: 16px 0 24px;
  background: var(--orange);
}

.divider--center {
  margin-right: auto;
  margin-left: auto;
}

.copy {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0;
}

.copy p {
  margin: 0 0 18px;
}

.copy ul {
  margin: 0 0 22px 20px;
  padding: 0;
}

.copy li {
  margin: 0 0 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 24px;
  color: #ffffff;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 18px;
  font-weight: 500;
  background: var(--gold);
  border: 0;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.button:hover {
  background: var(--orange);
  transform: translateY(-1px);
}

.van {
  width: 100%;
  min-width: 420px;
  transform: translateX(-22%);
}

.center {
  text-align: center;
}

.why {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 50px;
  align-items: end;
}

.check-list {
  display: grid;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-family: "Raleway", Arial, sans-serif;
  font-size: 19px;
}

.check-list li {
  display: flex;
  gap: 12px;
}

.check-list li::before {
  color: var(--gold);
  content: "✓";
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 45px;
}

.stat {
  padding: 25px 10px;
  text-align: center;
  background: rgba(0, 0, 0, 0.24);
}

.stat strong {
  display: block;
  color: var(--gold);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 50px;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 12px;
  font-family: "Raleway", Arial, sans-serif;
  font-size: 22px;
  font-weight: 600;
}

.team-grid,
.service-grid,
.reference-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
}

.team-grid {
  margin-top: 70px;
}

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

.team-card img {
  width: 300px;
  height: 300px;
  margin: 0 auto 18px;
  object-fit: cover;
}

.team-card h3,
.service-card h3 {
  margin: 0 0 5px;
  color: var(--ink);
  font-family: "Raleway", Arial, sans-serif;
  font-size: 25px;
  font-weight: 600;
}

.team-card p,
.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.service-band {
  position: relative;
  background: var(--cream);
}

.service-grid {
  width: min(1080px, calc(100% - 40px));
  margin: 60px auto 0;
}

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

.service-card img {
  height: 120px;
  margin: 0 auto 18px;
  object-fit: contain;
}

.service-card ul {
  display: inline-block;
  margin: 18px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
  text-align: left;
  list-style: none;
}

.service-card li::before {
  margin-right: 7px;
  color: var(--gold);
  content: "•";
}

.cta {
  padding: 115px 0;
  text-align: center;
  background: #ffffff;
}

.cta h2 {
  color: var(--ink);
}

.page-hero {
  min-height: 420px;
  display: grid;
  align-items: center;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(26, 26, 26, 0.74), rgba(26, 26, 26, 0.2)),
    url("../2023/04/pv-2698074_1920-1024x768.jpg") center / cover no-repeat;
}

.page-hero--about {
  background:
    linear-gradient(90deg, rgba(26, 26, 26, 0.72), rgba(26, 26, 26, 0.08)),
    url("../2023/12/auto-1024x711.png") center / cover no-repeat;
}

.page-hero--contact {
  background:
    linear-gradient(90deg, rgba(26, 26, 26, 0.75), rgba(26, 26, 26, 0.15)),
    url("../2023/04/pic-9.jpg") center / cover no-repeat;
}

.page-hero__inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.page-hero p {
  max-width: 680px;
  margin: 0;
  color: #f1f1f1;
  font-size: 20px;
  line-height: 1.5;
}

.references-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
}

.filter-bar {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin: 35px 0;
}

.filter-bar button {
  padding: 6px 14px;
  color: #7a7a7a;
  font: 400 15px Helvetica, Arial, sans-serif;
  border: 0;
  border-radius: 3px;
  background: transparent;
  cursor: pointer;
}

.filter-bar button.is-active,
.filter-bar button:hover {
  color: #ffffff;
  background: var(--gold);
}

.reference-grid {
  gap: 24px;
}

.reference-card {
  position: relative;
  min-height: 245px;
  overflow: hidden;
  background: #111111;
}

.reference-card img {
  width: 100%;
  height: 100%;
  min-height: 245px;
  object-fit: cover;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.reference-card span {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 18px;
  color: #ffffff;
  font-weight: 600;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.78));
}

.reference-card:hover img {
  opacity: 0.72;
  transform: scale(1.04);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 70px;
  align-items: start;
}

.contact-box h2 {
  margin-bottom: 14px;
}

.contact-list {
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 14px;
}

.form .wide {
  grid-column: 1 / -1;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  min-height: 45px;
  padding: 11px 12px;
  font: inherit;
  color: var(--ink);
  border: 1px solid #dddddd;
  background: #ffffff;
}

.form textarea {
  min-height: 150px;
  resize: vertical;
}

.form .check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
}

.form .check input {
  width: auto;
  min-height: auto;
  margin-top: 3px;
}

.legal {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.legal h2,
.legal h3,
.legal h4 {
  margin-top: 34px;
  color: var(--ink);
  font-family: "Raleway", Arial, sans-serif;
}

.footer {
  color: #e9e9e9;
}

.footer__main {
  padding: 50px 0;
  background:
    linear-gradient(174deg, rgba(36, 36, 36, 0.98) 48%, rgba(36, 36, 36, 0.82) 100%),
    url("../2023/04/pv-2698074_1920-1024x768.jpg") top left / cover no-repeat;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.7fr;
  gap: 42px;
}

.footer-logo {
  width: 170px;
  margin-bottom: 22px;
}

.footer h2 {
  margin: 0 0 22px;
  color: var(--gold);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 30px;
  font-weight: 500;
}

.footer p {
  margin: 0 0 12px;
  line-height: 1.6;
}

.footer a {
  color: #e9e9e9;
}

.footer__bottom {
  padding: 12px 0;
  color: #ffffff;
  font: 400 14px "Roboto", Arial, sans-serif;
  background: #111111;
}

.cookie {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 20;
  display: none;
  background: var(--orange);
  color: #ffffff;
  font-family: Arial, sans-serif;
}

.cookie.is-visible {
  display: block;
}

.cookie__inner {
  width: min(1280px, 90%);
  margin: 0 auto;
  padding: 25px 0;
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}

.cookie p {
  margin: 0;
  line-height: 1.45;
}

.cookie__actions {
  display: flex;
  flex-shrink: 0;
  gap: 12px;
  align-items: center;
}

.cookie button {
  padding: 10px 16px;
  color: #ffffff;
  border: 0;
  background: #3dc63f;
  cursor: pointer;
}

.cookie a {
  color: #ffffff;
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .topbar__inner {
    align-items: flex-start;
    padding: 10px 0;
    flex-direction: column;
  }

  .menu-toggle {
    display: block;
  }

  .menu {
    position: absolute;
    right: 20px;
    left: 20px;
    top: 100%;
    display: none;
    padding: 18px 20px;
    background: #ffffff;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
    flex-direction: column;
    align-items: flex-start;
  }

  .menu.is-open {
    display: flex;
  }

  .split,
  .split--even,
  .why,
  .references-intro,
  .contact-layout,
  .footer__inner {
    grid-template-columns: 1fr;
  }

  .van {
    min-width: 0;
    transform: none;
  }

  .stats,
  .team-grid,
  .service-grid,
  .reference-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__main {
    padding-bottom: 140px;
  }
}

@media (max-width: 700px) {
  .topbar__inner,
  .nav__inner,
  .section__inner,
  .footer__inner,
  .hero__content,
  .page-hero__inner {
    width: min(100% - 30px, var(--max));
  }

  .nav__inner {
    min-height: 82px;
  }

  .logo {
    width: 124px;
  }

  .cert {
    width: 42px;
  }

  .section {
    padding: 70px 0;
  }

  .hero {
    min-height: 640px;
    background-position: center right 24%;
  }

  .hero h1 {
    color: #ffffff;
    font-size: 40px;
  }

  .hero h2 {
    margin-top: 36px;
    font-size: 38px;
  }

  .hero__list {
    font-size: 18px;
  }

  .stats,
  .team-grid,
  .service-grid,
  .reference-grid {
    grid-template-columns: 1fr;
  }

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

  .cookie__inner,
  .cookie__actions {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Compact sticky header */
.topbar__inner {
  min-height: 28px;
}

.topbar {
  font-size: 13px;
}

.topbar__contact {
  gap: 6px 14px;
}

.nav__inner {
  min-height: 66px;
  gap: 18px;
}

.logo {
  width: 116px;
}

.cert {
  width: 40px;
}

.nav__right {
  gap: 14px;
}

.menu {
  gap: 18px;
  font-size: 15px;
}

.menu a {
  padding: 7px 0;
}

@media (max-width: 1024px) {
  .topbar__inner {
    min-height: 0;
    padding: 6px 0;
    gap: 6px;
  }

  .nav__inner {
    min-height: 64px;
  }

  .logo {
    width: 108px;
  }

  .cert {
    width: 38px;
  }

  .menu-toggle {
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 700px) {
  .topbar {
    font-size: 12px;
  }

  .topbar__contact span:nth-of-type(2),
  .topbar__contact span:nth-of-type(3) {
    display: none;
  }

  .nav__inner {
    min-height: 58px;
  }

  .logo {
    width: 96px;
  }

  .cert {
    width: 34px;
  }
}

/* Definitive compact header */
.topbar {
  background: #1f1f1f;
  border-bottom: 0;
  font-size: 12px;
  line-height: 1.25;
}

.topbar__inner {
  min-height: 30px;
  gap: 18px;
  padding: 0;
}

.topbar__contact {
  flex: 1 1 auto;
  min-width: 0;
  gap: 6px 16px;
}

.topbar__contact strong {
  color: var(--gold);
  font-weight: 700;
}

.topbar__contact span {
  white-space: nowrap;
}

.socials {
  flex: 0 0 auto;
  gap: 12px;
  font-size: 12px;
}

@media (min-width: 1025px) {
  .topbar__contact {
    flex-wrap: nowrap;
  }
}

.nav {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(16px);
}

.nav__inner {
  min-height: 68px;
  gap: 18px;
}

.logo {
  width: auto;
  height: 54px;
  max-width: none;
  object-fit: contain;
}

.cert {
  width: auto;
  height: 34px;
  object-fit: contain;
}

.nav__right {
  gap: 18px;
}

.menu {
  align-items: center;
  gap: 18px;
  font-size: 15px;
  line-height: 1;
}

.menu a {
  padding: 12px 0;
}

.menu a::after {
  bottom: 5px;
}

@media (max-width: 1100px) {
  .menu {
    gap: 14px;
    font-size: 14px;
  }

  .nav__right {
    gap: 14px;
  }
}

@media (max-width: 1024px) {
  .topbar__inner {
    min-height: 0;
    padding: 6px 0;
  }

  .nav__inner {
    min-height: 62px;
  }

  .logo {
    height: 48px;
  }

  .cert {
    height: 32px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .menu {
    top: calc(100% + 8px);
  }
}

@media (max-width: 700px) {
  .topbar {
    font-size: 11px;
  }

  .topbar__inner {
    min-height: 0;
    justify-content: center;
    padding: 5px 0;
  }

  .topbar__contact {
    justify-content: center;
  }

  .topbar__contact strong,
  .topbar__contact span:first-of-type,
  .socials {
    display: none;
  }

  .nav__inner {
    min-height: 56px;
    gap: 10px;
  }

  .logo {
    height: 42px;
  }

  .cert {
    height: 28px;
  }
}

/* Quick contact panel */
.quick-contact {
  position: fixed;
  right: 0;
  top: 50%;
  z-index: 90;
  display: grid;
  gap: 8px;
  transform: translateY(-50%);
}

#kontaktformular {
  scroll-margin-top: 120px;
}

.quick-contact__item {
  display: grid;
  grid-template-columns: 46px max-content;
  align-items: center;
  min-height: 48px;
  color: #ffffff;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  background: #242424;
  border-radius: 6px 0 0 6px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
  transform: translateX(calc(100% - 46px));
  transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
  overflow: hidden;
}

.quick-contact__item:hover,
.quick-contact__item:focus-visible {
  background: var(--orange);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
  transform: translateX(0);
}

.quick-contact__item--whatsapp {
  background: #1f8f4d;
}

.quick-contact__item--phone {
  background: var(--gold);
  color: #1a1a1a;
}

.quick-contact__item--phone:hover,
.quick-contact__item--phone:focus-visible {
  color: #ffffff;
}

.quick-contact__icon {
  display: grid;
  width: 46px;
  height: 48px;
  place-items: center;
  font-size: 13px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.quick-contact__text {
  padding: 0 18px 0 4px;
  white-space: nowrap;
}

@media (max-width: 700px) {
  .quick-contact {
    right: 12px;
    bottom: 12px;
    left: 12px;
    top: auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    transform: none;
  }

  .quick-contact__item {
    grid-template-columns: 1fr;
    justify-items: center;
    min-height: 46px;
    border-radius: 6px;
    transform: none;
  }

  .quick-contact__icon {
    display: none;
  }

  .quick-contact__text {
    max-width: 100%;
    padding: 0 8px;
    font-size: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

/* Homepage vehicle highlight */
.intro-split {
  grid-template-columns: minmax(440px, 1.15fr) minmax(0, 1.45fr);
  gap: clamp(42px, 6vw, 84px);
}

.van-showcase {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: clamp(330px, 34vw, 470px);
  padding: 0;
  place-items: center;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
}

.van-showcase::before {
  display: none;
}

.van-showcase::after {
  position: absolute;
  right: 4%;
  bottom: 13%;
  left: 4%;
  z-index: -1;
  height: 20px;
  background: rgba(26, 26, 26, 0.16);
  border-radius: 50%;
  filter: blur(14px);
  content: "";
}

.van-showcase .van {
  width: min(920px, 148%);
  min-width: 0;
  max-width: none;
  transform: translateX(-8%) scale(1.1);
  filter: drop-shadow(0 22px 24px rgba(0, 0, 0, 0.22));
}

@media (max-width: 1024px) {
  .intro-split {
    grid-template-columns: 1fr;
  }

  .van-showcase {
    min-height: clamp(280px, 50vw, 390px);
  }

  .van-showcase .van {
    width: min(860px, 128%);
    transform: translateX(-4%) scale(1.05);
  }
}

@media (max-width: 700px) {
  .van-showcase {
    min-height: 230px;
  }

  .van-showcase::after {
    right: 2%;
    bottom: 14%;
    left: 2%;
  }

  .van-showcase .van {
    width: 140%;
    transform: translateX(-10%) scale(1.04);
  }
}

/* Definitive header layout */
header {
  position: relative;
  z-index: 60;
}

.topbar {
  font-size: 12px;
  line-height: 1.25;
  border-bottom: 0;
  background: #1c1c1c;
}

.topbar__inner {
  width: min(1320px, calc(100% - 32px));
  min-height: 30px;
  gap: 18px;
}

.topbar__contact {
  gap: 6px 16px;
}

.topbar__contact strong {
  color: var(--gold);
  font-weight: 700;
}

.socials {
  gap: 12px;
  font-size: 12px;
}

.nav {
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.nav__inner {
  width: min(1320px, calc(100% - 32px));
  min-height: 68px;
  gap: 18px;
}

.logo {
  width: auto;
  height: 54px;
  object-fit: contain;
}

.cert {
  width: auto;
  height: 34px;
  object-fit: contain;
}

.nav__right {
  gap: 18px;
}

.menu {
  gap: 18px;
  font-size: 15px;
  line-height: 1;
}

.menu a {
  padding: 12px 0;
}

.menu a::after {
  bottom: 5px;
}

@media (max-width: 1100px) {
  .menu {
    gap: 14px;
    font-size: 14px;
  }
}

@media (max-width: 1024px) {
  .topbar__inner {
    width: min(100% - 28px, var(--max));
    min-height: 0;
    padding: 6px 0;
    flex-direction: row;
    align-items: center;
  }

  .topbar__contact {
    gap: 5px 12px;
  }

  .topbar__contact span:nth-of-type(2),
  .topbar__contact span:nth-of-type(3) {
    display: none;
  }

  .nav__inner {
    width: min(100% - 28px, var(--max));
    min-height: 62px;
  }

  .logo {
    height: 48px;
  }

  .cert {
    height: 32px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .menu {
    right: 14px;
    left: 14px;
    padding: 18px;
    font-size: 15px;
  }
}

@media (max-width: 700px) {
  .topbar__inner {
    justify-content: center;
  }

  .topbar__contact {
    justify-content: center;
  }

  .topbar__contact strong,
  .topbar__contact span:first-of-type,
  .socials {
    display: none;
  }

  .nav__inner {
    min-height: 56px;
  }

  .logo {
    height: 42px;
  }

  .cert {
    height: 28px;
  }

  .nav__right {
    gap: 10px;
  }
}

/* Header redesign: controlled logo height and cleaner sticky navigation */
header {
  position: relative;
  z-index: 60;
}

.topbar {
  font-size: 12px;
  line-height: 1.25;
  border-bottom: 0;
  background: #1c1c1c;
}

.topbar__inner {
  width: min(1320px, calc(100% - 32px));
  min-height: 30px;
  gap: 18px;
}

.topbar__contact {
  gap: 6px 16px;
}

.topbar__contact strong {
  color: var(--gold);
  font-weight: 700;
}

.socials {
  gap: 12px;
  font-size: 12px;
}

.nav {
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.nav__inner {
  width: min(1320px, calc(100% - 32px));
  min-height: 68px;
  gap: 18px;
}

.logo {
  width: auto;
  height: 54px;
  object-fit: contain;
}

.cert {
  width: auto;
  height: 34px;
  object-fit: contain;
}

.nav__right {
  gap: 18px;
}

.menu {
  gap: 18px;
  font-size: 15px;
  line-height: 1;
}

.menu a {
  padding: 12px 0;
}

.menu a::after {
  bottom: 5px;
}

@media (max-width: 1100px) {
  .menu {
    gap: 14px;
    font-size: 14px;
  }
}

@media (max-width: 1024px) {
  .topbar__inner {
    width: min(100% - 28px, var(--max));
    min-height: 0;
    padding: 6px 0;
    flex-direction: row;
    align-items: center;
  }

  .topbar__contact {
    gap: 5px 12px;
  }

  .topbar__contact span:nth-of-type(2),
  .topbar__contact span:nth-of-type(3) {
    display: none;
  }

  .nav__inner {
    width: min(100% - 28px, var(--max));
    min-height: 62px;
  }

  .logo {
    height: 48px;
  }

  .cert {
    height: 32px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .menu {
    right: 14px;
    left: 14px;
    padding: 18px;
    font-size: 15px;
  }
}

@media (max-width: 700px) {
  .topbar__inner {
    justify-content: center;
  }

  .topbar__contact {
    justify-content: center;
  }

  .topbar__contact strong,
  .topbar__contact span:first-of-type,
  .socials {
    display: none;
  }

  .nav__inner {
    min-height: 56px;
  }

  .logo {
    height: 42px;
  }

  .cert {
    height: 28px;
  }

  .nav__right {
    gap: 10px;
  }
}

/* Motion layer */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroBackgroundDrift {
  from {
    background-position: center center;
  }

  to {
    background-position: center 46%;
  }
}

@keyframes softPulse {
  0%,
  100% {
    box-shadow: 0 12px 24px rgba(251, 124, 36, 0.24);
  }

  50% {
    box-shadow: 0 18px 36px rgba(255, 186, 0, 0.3);
  }
}

.hero {
  animation: heroBackgroundDrift 10s ease-out both;
}

.hero__kicker,
.hero h1,
.hero__list,
.hero__actions {
  opacity: 0;
  animation: heroFadeUp 0.7s ease forwards;
}

.hero__kicker {
  animation-delay: 0.08s;
}

.hero h1 {
  animation-delay: 0.2s;
}

.hero__list {
  animation-delay: 0.34s;
}

.hero__actions {
  animation-delay: 0.48s;
}

.button {
  position: relative;
  overflow: hidden;
}

.button::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -45%;
  width: 35%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-18deg);
  transition: left 0.55s ease;
}

.button:hover::after {
  left: 115%;
}

.cta .button {
  animation: softPulse 3.8s ease-in-out infinite;
}

.reveal {
  transform: translateY(24px) scale(0.985);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  transform: translateY(0) scale(1);
}

.team-card img,
.service-card img,
.reference-card img {
  transition: transform 0.45s ease, opacity 0.35s ease;
}

.team-card:hover img {
  transform: scale(1.035);
}

.service-card:hover img {
  transform: translateY(-4px) scale(1.04);
}

.reference-card::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(135deg, rgba(255, 186, 0, 0.2), transparent 42%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.reference-card:hover::after {
  opacity: 1;
}

.stat strong {
  min-height: 1em;
}

.lightbox.is-open .lightbox__figure {
  animation: heroFadeUp 0.24s ease both;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

/* Left-align service detail lists */
.service-card ul {
  display: grid;
  width: 100%;
  gap: 7px;
  margin: 20px 0 0;
  padding: 0;
  text-align: left;
}

.service-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.service-card ul li::before {
  flex: 0 0 auto;
  margin-right: 0;
}

/* Visual refinement layer */
:root {
  --line: rgba(26, 26, 26, 0.11);
  --shadow: 0 18px 48px rgba(20, 20, 20, 0.12);
  --soft-shadow: 0 10px 28px rgba(20, 20, 20, 0.08);
}

body {
  background: linear-gradient(180deg, rgba(255, 186, 0, 0.04), rgba(255, 255, 255, 0) 280px), #ffffff;
}

.topbar {
  background: linear-gradient(90deg, #202020, #303030);
  border-bottom: 3px solid var(--orange);
  font-size: 15px;
}

.topbar__contact {
  gap: 10px 18px;
}

.socials a,
.footer a,
.menu a {
  transition: color 0.2s ease, opacity 0.2s ease;
}

.socials a {
  opacity: 0.88;
}

.socials a:hover,
.footer a:hover {
  color: var(--gold);
  opacity: 1;
}

.nav {
  background: rgba(255, 255, 255, 0.91);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(14px);
}

.logo {
  transition: transform 0.25s ease;
}

.logo:hover {
  transform: translateY(-2px);
}

.cert {
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.1));
}

.menu-toggle {
  border-color: var(--line);
  border-radius: 6px;
}

.hero {
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.78), rgba(17, 17, 17, 0.32) 48%, rgba(17, 17, 17, 0.04)),
    url("../2023/12/Design-ohne-Titel12.png") center / cover no-repeat;
}

.hero h1,
.page-hero h1 {
  font-family: "Raleway", "Roboto", Arial, sans-serif;
  font-size: clamp(42px, 5.8vw, 76px);
  font-weight: 700;
  line-height: 1.02;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.42);
}

.hero h1 {
  max-width: 780px;
}

.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--gold);
  font: 700 15px "Poppins", Arial, sans-serif;
  text-transform: uppercase;
}

.hero__kicker::before {
  width: 46px;
  height: 2px;
  content: "";
  background: var(--gold);
}

.hero__list {
  max-width: 720px;
  margin-left: 0;
  list-style: none;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.52);
}

.hero__list li {
  display: flex;
  gap: 10px;
  align-items: baseline;
}

.hero__list > li {
  flex-wrap: wrap;
}

.hero__list li::before,
.check-list li::before,
.service-card li::before {
  color: var(--gold);
  content: "+";
  font-weight: 700;
}

.hero__sublist {
  display: grid;
  width: 100%;
  gap: 3px;
  margin: 4px 0 6px 28px;
  padding: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.86em;
  line-height: 1.35;
  list-style: none;
}

.hero__sublist li {
  display: flex;
  gap: 8px;
}

.hero__sublist li::before {
  color: var(--gold);
  content: "-";
  font-weight: 700;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.section--cream {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.45), rgba(249, 248, 239, 0)), var(--cream);
}

.section--dark {
  background:
    linear-gradient(110deg, rgba(16, 16, 16, 0.94), rgba(26, 26, 26, 0.78)),
    url("../2023/12/20160428_083945-1400x788-1.jpg") top left / cover no-repeat;
}

.split {
  gap: clamp(42px, 7vw, 90px);
}

.eyebrow {
  margin-bottom: 4px;
  color: var(--orange);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
}

.divider {
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--gold));
}

.copy,
.section h2,
.section h1,
.stat strong,
.stat span,
.team-card h3,
.service-card h3,
.team-card p,
.service-card p {
  letter-spacing: 0;
}

.button {
  background: linear-gradient(135deg, var(--gold), var(--orange));
  border-radius: 6px;
  box-shadow: 0 12px 24px rgba(251, 124, 36, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.button:hover {
  filter: saturate(1.08);
  box-shadow: 0 16px 32px rgba(251, 124, 36, 0.3);
  transform: translateY(-2px);
}

.button--ghost {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: none;
  backdrop-filter: blur(8px);
}

.button--ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  box-shadow: none;
}

.stat {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  transition: transform 0.25s ease, background 0.25s ease;
}

.stat:hover {
  background: rgba(255, 186, 0, 0.13);
  transform: translateY(-4px);
}

.team-card,
.service-card {
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 6px;
  background: #ffffff;
  box-shadow: var(--soft-shadow);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.team-card {
  padding-bottom: 26px;
}

.service-card {
  padding: 36px 28px;
}

.team-card:hover,
.service-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.team-card img {
  width: 100%;
  height: 320px;
  margin-bottom: 22px;
  object-fit: cover;
}

.service-band {
  background: linear-gradient(180deg, #ffffff 0, var(--cream) 100%);
}

.cta {
  background:
    linear-gradient(180deg, rgba(255, 186, 0, 0.12), rgba(255, 255, 255, 0) 38%),
    #ffffff;
}

.page-hero {
  background:
    linear-gradient(90deg, rgba(18, 18, 18, 0.82), rgba(26, 26, 26, 0.22)),
    url("../2023/04/pv-2698074_1920-1024x768.jpg") center / cover no-repeat;
}

.page-hero--about {
  background:
    linear-gradient(90deg, rgba(18, 18, 18, 0.78), rgba(26, 26, 26, 0.18)),
    url("../2023/12/auto-1024x711.png") center / cover no-repeat;
}

.page-hero--contact {
  background:
    linear-gradient(90deg, rgba(18, 18, 18, 0.78), rgba(26, 26, 26, 0.18)),
    url("../2023/04/pic-9.jpg") center / cover no-repeat;
}

.page-hero--career {
  background:
    linear-gradient(90deg, rgba(18, 18, 18, 0.82), rgba(26, 26, 26, 0.18)),
    url("../2023/12/Design-ohne-Titel12.png") center / cover no-repeat;
}

.filter-bar button {
  border: 1px solid transparent;
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.filter-bar button.is-active,
.filter-bar button:hover {
  transform: translateY(-1px);
}

.reference-card {
  border-radius: 6px;
  box-shadow: var(--soft-shadow);
}

.reference-card span {
  padding: 42px 18px 18px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.82));
}

.form input,
.form select,
.form textarea {
  border-color: #d9d5ca;
  border-radius: 6px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(251, 124, 36, 0.13);
}

.legal {
  max-width: 920px;
}

.footer__main {
  padding-top: 64px;
  padding-bottom: 64px;
}

.cookie {
  background: linear-gradient(90deg, var(--orange), #f28a25);
  box-shadow: 0 -18px 42px rgba(0, 0, 0, 0.18);
}

.cookie button {
  border-radius: 6px;
}

.button--light {
  color: var(--ink);
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: var(--soft-shadow);
}

.button--light:hover {
  color: #ffffff;
}

.career-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 54px;
  text-align: left;
}

.career-card {
  display: flex;
  min-height: 100%;
  padding: 30px;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(255, 186, 0, 0.08), rgba(255, 255, 255, 0) 45%), #ffffff;
  box-shadow: var(--soft-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.career-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.career-card span {
  width: fit-content;
  margin-bottom: 18px;
  padding: 6px 10px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--gold), var(--orange));
}

.career-card h3,
.process-grid h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-family: "Raleway", Arial, sans-serif;
  font-size: 24px;
  line-height: 1.25;
}

.career-card p,
.process-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.career-card ul {
  display: grid;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.career-card li,
.benefit-list li {
  display: flex;
  gap: 10px;
}

.career-card li::before,
.benefit-list li::before {
  color: var(--gold);
  content: "+";
  font-weight: 700;
}

.career-benefits {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.career-benefits .eyebrow {
  color: var(--gold);
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.benefit-list li {
  min-height: 84px;
  padding: 20px;
  align-items: center;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.process-head {
  max-width: 760px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 42px;
}

.process-grid article {
  padding: 34px 28px 30px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 6px;
  background: #ffffff;
  box-shadow: var(--soft-shadow);
}

.process-grid strong {
  display: block;
  margin-bottom: 20px;
  color: var(--gold);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 44px;
  line-height: 1;
}

.application-panel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  padding: 44px;
  text-align: left;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 6px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.application-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.is-lightbox-open {
  overflow: hidden;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 34px 88px;
  background: rgba(0, 0, 0, 0.86);
  backdrop-filter: blur(10px);
}

.lightbox.is-open {
  display: grid;
}

.lightbox__figure {
  width: min(1120px, 100%);
  max-height: calc(100vh - 92px);
  margin: 0;
  display: grid;
  gap: 14px;
  justify-items: center;
}

.lightbox__figure img {
  max-width: 100%;
  max-height: calc(100vh - 150px);
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.44);
}

.lightbox__figure figcaption {
  color: #ffffff;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}

.lightbox__close,
.lightbox__nav {
  position: fixed;
  display: grid;
  place-items: center;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.lightbox__close:hover,
.lightbox__nav:hover {
  background: var(--orange);
  transform: translateY(-1px);
}

.lightbox__close {
  top: 22px;
  right: 22px;
  width: 46px;
  height: 46px;
  font-size: 30px;
  line-height: 1;
}

.lightbox__nav {
  top: 50%;
  width: 58px;
  height: 76px;
  font-size: 56px;
  line-height: 1;
  transform: translateY(-50%);
}

.lightbox__nav:hover {
  transform: translateY(calc(-50% - 1px));
}

.lightbox__nav--prev {
  left: 22px;
}

.lightbox__nav--next {
  right: 22px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .menu {
    border: 1px solid var(--line);
  }

  .career-grid,
  .process-grid,
  .career-benefits,
  .application-panel {
    grid-template-columns: 1fr;
  }

  .benefit-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .application-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 700px) {
  .hero {
    background:
      linear-gradient(180deg, rgba(17, 17, 17, 0.84), rgba(17, 17, 17, 0.54)),
      url("../2023/12/Design-ohne-Titel12.png") center right 24% / cover no-repeat;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .career-grid,
  .process-grid,
  .benefit-list {
    grid-template-columns: 1fr;
  }

  .career-card,
  .process-grid article,
  .application-panel {
    padding: 26px 22px;
  }

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

  .lightbox {
    padding: 70px 16px 84px;
  }

  .lightbox__figure img {
    max-height: calc(100vh - 190px);
  }

  .lightbox__nav {
    top: auto;
    bottom: 16px;
    width: 48%;
    height: 52px;
    font-size: 38px;
    transform: none;
  }

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

  .lightbox__nav--prev {
    left: 16px;
  }

  .lightbox__nav--next {
    right: 16px;
  }
}

/* Definitive compact header - final cascade */
.topbar {
  background: #1f1f1f;
  border-bottom: 0;
  font-size: 12px;
  line-height: 1.25;
}

.topbar__inner {
  min-height: 30px;
  gap: 18px;
  padding: 0;
}

.topbar__contact {
  flex: 1 1 auto;
  min-width: 0;
  gap: 6px 16px;
}

.topbar__contact strong {
  color: var(--gold);
  font-weight: 700;
}

.topbar__contact span {
  white-space: nowrap;
}

.socials {
  flex: 0 0 auto;
  gap: 12px;
  font-size: 12px;
}

@media (min-width: 1025px) {
  .topbar__contact {
    flex-wrap: nowrap;
  }
}

.nav {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(16px);
}

.nav__inner {
  min-height: 68px;
  gap: 18px;
}

.logo {
  width: auto;
  height: 54px;
  max-width: none;
  object-fit: contain;
}

.cert {
  width: auto;
  height: 34px;
  object-fit: contain;
}

.nav__right {
  gap: 18px;
}

.menu {
  align-items: center;
  gap: 18px;
  font-size: 15px;
  line-height: 1;
}

.menu a {
  padding: 12px 0;
}

.menu a::after {
  bottom: 5px;
}

@media (max-width: 1100px) {
  .menu {
    gap: 14px;
    font-size: 14px;
  }

  .nav__right {
    gap: 14px;
  }
}

@media (max-width: 1024px) {
  .topbar__inner {
    min-height: 0;
    padding: 6px 0;
  }

  .nav__inner {
    min-height: 62px;
  }

  .logo {
    height: 48px;
  }

  .cert {
    height: 32px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .menu {
    top: calc(100% + 8px);
  }
}

@media (max-width: 700px) {
  .topbar {
    font-size: 11px;
  }

  .topbar__inner {
    min-height: 0;
    justify-content: center;
    padding: 5px 0;
  }

  .topbar__contact {
    justify-content: center;
  }

  .topbar__contact strong,
  .topbar__contact span:first-of-type,
  .socials {
    display: none;
  }

  .nav__inner {
    min-height: 56px;
    gap: 10px;
  }

  .logo {
    height: 42px;
  }

  .cert {
    height: 28px;
  }
}
