@font-face {
  font-family: "PorscheNextWLa";
  src: url("../fonts/PorscheNextWLa-bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "PorscheNextWLa";
  src: url("../fonts/PorscheNextWLa-regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "PorscheNextWLa";
  src: url("../fonts/PorscheNextWLa-thin.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  scroll-behavior: smooth;
  --white: #ffffff;
  --black: #000000;
  --porsche-dark: #1a1d21;
  --porsche-blue: #0099e6;
  --muted: #6b7280;
  --border: #e5e7eb;
  --white_img: brightness(0) saturate(100%) invert(99%) sepia(0%) saturate(7498%)
    hue-rotate(67deg) brightness(112%) contrast(100%);
  --primaryfont: "PorscheNextWLa", system-ui, -apple-system, sans-serif;
}

html {
  font-size: 62.5%;
}

body {
  font-family: var(--primaryfont);
  font-size: 1.6rem;
  line-height: 1.25;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: 200ms;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input,
textarea {
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: 128rem;
  margin: 0 auto;
  padding: 0 2.4rem;
}

/* Logo – centered, white on dark hero (from backup) */
.site-logo {
  position: absolute;
  top: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
}

.site-logo img {
  filter: var(--white_img);
}

/* Footer (from backup) */
footer {
  background: #eeeff2;
  padding: 6rem 0;
}

footer .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.copyrights {
  font-size: 1.6rem;
}

.copyrights.has-border {
  width: 100%;
  padding-bottom: 6rem;
  margin-bottom: 6rem;
  border-bottom: 0.1rem solid rgba(0, 0, 0, 0.3);
}

.footer-nav ul {
  display: flex;
  flex-wrap: wrap;
}

.footer-nav ul li {
  line-height: 1.4;
  margin-right: 6rem;
}

.footer-nav ul li a {
  color: #000;
  font-size: 1.6rem;
  font-weight: 700;
  text-decoration: underline !important;
}

.footer-nav ul li a:hover {
  text-decoration: none !important;
}

@media (max-width: 768px) {
  .footer-nav ul {
    flex-direction: column;
    gap: 1.5rem;
  }
}
