:root {
  /* Farben - zentral definiert */
  --color-main-bg: #1a1a1a;       /* Anthrazit */
  --color-text: #00bb00;          /* h1 = Grün */
  --color-text-secondary: #666666; /* p = Grau */
  --color-footer-bg: #666666;     /* Footer Hintergrund */
  --color-header-bg: #1a1a1a;     /* Header (Anthrazit) */
  --color-text-light: #e0e0e0;    /* Heller Text */
  --color-link: #00bb00;          /* Links */
  --color-link-hover: #00cc00;    /* Link hover */
  --color-frame: #00bb00;         /* Rahmen/Border */
  --color-lang-active-bg: #888888;
  --color-lang-text: #666666;
  --color-logo-bg: #666666;       /* Logo Icon BG */
  --color-orange: #ff6600;
  
  /* Layout - vertikale Verteilung mit vh (8% / 88% / 4%) */
  --header-height: 8vh;
  --footer-height: 4vh;
  --main-height: 88vh;
  
  /* Logo Größe - vmin fürproportionale Skalierung bei allen Seitenverhältnissen */
  --logo-height: clamp(3rem, 10vmin, 5.625rem);
  
  /* Schriftgrößen - clamp für flüssige Skalierung */
  --font-size-logo: clamp(1rem, 2.5vmin, 2.2rem);
  --font-size-nav: clamp(0.9rem, 1.5vmin, 1.2rem);
  --font-size-lang: clamp(0.75rem, 1vmin, 0.9rem);
  --font-size-footer: clamp(0.7rem, 1vmin, 0.9rem);
  
  /* Abstände - rem für relative Skalierung */
  --space-xs: clamp(0.25rem, 0.5vmin, 0.5rem);
  --space-sm: clamp(0.5rem, 1vmin, 0.75rem);
  --space-md: clamp(0.75rem, 2vmin, 1.5rem);
  --space-lg: clamp(1rem, 3vmin, 2rem);
  --space-xl: clamp(1.5rem, 4vmin, 3rem);
  
  /* Hamburger - vmin für proportionale Skalierung */
  --hamburger-width: clamp(1.25rem, 4vmin, 1.5rem);
  --hamburger-height: clamp(0.125rem, 0.4vmin, 0.2rem);
  --hamburger-gap: clamp(0.25rem, 0.6vmin, 0.35rem);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--color-text);
  line-height: 1.6;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}

header {
  height: var(--header-height);
  min-height: 3.75rem;
  background-color: var(--color-header-bg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--space-lg);
  position: relative;
  flex-shrink: 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: var(--logo-height);
  width: auto;
  background-color: var(--color-logo-bg);
  padding: var(--space-xs);
  border-radius: clamp(0.25rem, 1vw, 0.5rem);
  max-height: calc(var(--header-height) - var(--space-md));
}

.logo-text {
  font-size: var(--font-size-logo);
  font-weight: 700;
  color: var(--color-text);
  white-space: nowrap;
}

nav {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-menu a {
  font-size: var(--font-size-nav);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: var(--space-md);
}

.nav-menu a {
  text-decoration: none;
  color: var(--color-text);
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-menu a:hover {
  color: var(--color-link-hover);
}

.lang-switch {
  display: flex;
  gap: var(--space-xs);
  margin-left: var(--space-lg);
}

.lang-switch a,
.lang-switch-desktop a,
.lang-switch-mobile a {
  text-decoration: none;
  padding: var(--space-xs) var(--space-sm);
  border-radius: 0.25rem;
  font-weight: 600;
  font-size: var(--font-size-lang);
  color: var(--color-lang-text);
  text-decoration: none;
}

.lang-switch a.active,
.lang-switch-desktop a.active,
.lang-switch-mobile a.active {
  background-color: var(--color-lang-active-bg);
  color: var(--color-lang-text);
  text-decoration: none;
}

.lang-switch .inactive:hover,
.lang-switch-desktop .inactive:hover,
.lang-switch-mobile .inactive:hover {
  opacity: 1;
}

.lang-switch-desktop {
  display: flex;
  gap: var(--space-xs);
}

.lang-switch-mobile {
  display: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: var(--hamburger-gap);
  cursor: pointer;
  padding: var(--space-sm);
  z-index: 100;
}

.hamburger span {
  width: var(--hamburger-width);
  height: var(--hamburger-height);
  background-color: var(--color-text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

main {
  flex: 1;
  height: var(--main-height);
  min-height: var(--main-height);
  padding: var(--space-md);
  background-color: var(--color-main-bg);
  overflow-y: auto;
}

footer {
  height: var(--footer-height);
  min-height: 2.5rem;
  background-color: var(--color-footer-bg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--space-lg);
  flex-shrink: 0;
}

footer a {
  color: var(--color-text);
  text-decoration: none;
  font-weight: 700;
  font-size: var(--font-size-footer);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  font-size: 1.1rem;
}

.footer-company-name {
  color: var(--color-text);
  font-weight: 700;
  font-size: 1.1rem;
}

/* Startseite - Home Container */
.home-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--space-md);
  height: 100%;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--space-md);
}

/* Text-Frame mit orangenem Rahmen */
.home-text-frame {
  flex: 1 1 300px;
  max-width: 500px;
  text-align: center;
  padding: var(--space-lg);
  border: 4px solid var(--color-frame);
  border-radius: 1rem;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  order: 2;
}

.home-text-frame h1 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: white;
  margin-bottom: var(--space-sm);
  text-shadow: 
    -2px -2px 0 var(--color-frame),
    2px -2px 0 var(--color-frame),
    -2px 2px 0 var(--color-frame),
    2px 2px 0 var(--color-frame),
    3px 3px 3px rgba(0,0,0,0.5);
}

.home-text-frame p {
  font-size: clamp(0.9rem, 2vw, 1.25rem);
  color: white;
  font-weight: 500;
  text-shadow: 
    -1px -1px 0 var(--color-frame),
    1px -1px 0 var(--color-frame),
    -1px 1px 0 var(--color-frame),
    1px 1px 0 var(--color-frame),
    2px 2px 2px rgba(0,0,0,0.5);
}

/* Bilder */
.home-image {
  flex: 1 1 200px;
  min-width: 150px;
  max-width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 0.5rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  order: 1;
}

.home-image:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0,0,0,0.4);
}

.home-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Desktop: Bilder 3 und 4 nach unten */
@media (min-width: 769px) {
  /* Unterschiedliche Breiten für X-Überlappung */
  .image-1 {
    flex: 1 1 20%;
    min-width: 15%;
  }

  .image-2 {
    flex: 1 1 25%;
    min-width: 20%;
  }

  .image-3 {
    flex: 1 1 18%;
    min-width: 12%;
  }

  .image-4 {
    flex: 1 1 22%;
    min-width: 17%;
  }

  .image-3,
  .image-4 {
    order: 3;
  }
}

/* Tablet: 2 Bilder pro Reihe */
@media (min-width: 481px) and (max-width: 768px) {
  .home-image {
    flex: 1 1 40%;
    min-width: 120px;
  }
}

.hero {
  position: relative;
  width: 80%;
  height: 100%;
  min-height: var(--main-height);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.hero-background {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-image: url('../assets/collage_main.JPG');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 3rem 6rem;
  background-color: transparent;
  border: none;
  border-radius: 12px;
  margin-bottom: 21%;
  margin-top: 0;
  max-width: 100%;
}

.hero-content p {
  max-width: 100%;
}

.hero h1 {
  font-size: 4.5rem;
  margin-bottom: 1rem;
  color: white;
  text-shadow: 
    -3px -3px 0 var(--color-frame),
    3px -3px 0 var(--color-frame),
    -3px 3px 0 var(--color-frame),
    3px 3px 0 var(--color-frame),
    5px 5px 5px rgba(0,0,0,0.7);
}

.hero p {
  font-size: 2.5rem;
  color: white;
  max-width: 1200px;
  margin: 0 auto;
  text-shadow: 
    -2px -2px 0 var(--color-frame),
    2px -2px 0 var(--color-frame),
    -2px 2px 0 var(--color-frame),
    2px 2px 0 var(--color-frame),
    4px 4px 3px rgba(0,0,0,0.7);
  font-weight: bold;
}

.contact-form {
  max-width: 1000px;
  width: 90%;
  min-height: auto;
  height: auto;
  margin: var(--space-lg) auto;
  padding: var(--space-xl);
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 0.5rem;
  color: #333;
  display: flex;
  flex-direction: column;
}

.contact-form h1 {
  margin-bottom: 1.5rem;
  text-align: center;
  color: #000;
}

.contact-form label {
  color: #000;
}

.status-message {
  padding: 1rem;
  margin-bottom: 1.5rem;
  border-radius: 4px;
  text-align: center;
}

.status-message.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.status-message.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
}

.form-group textarea {
  min-height: 9.375rem;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-link);
  box-shadow: 0 0 0 2px rgba(46, 125, 50, 0.2);
}

button[type="submit"] {
  background-color: var(--color-link);
  color: white;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

button[type="submit"]:hover {
  background-color: var(--color-link-hover);
}

.impressum {
  max-width: 800px;
  width: 90%;
  margin: var(--space-lg) auto;
  padding: var(--space-md);
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 0.5rem;
  color: #333;
}

.impressum h1 {
  margin-bottom: var(--space-md);
  text-align: center;
  color: #333;
}

.impressum-content {
  color: #333;
  padding: var(--space-md) 0;
}

.impressum h2 {
  margin-top: var(--space-md);
  margin-bottom: var(--space-sm);
  color: #333;
}

.impressum h3 {
  margin-top: var(--space-sm);
  margin-bottom: var(--space-xs);
  font-size: 1.1rem;
  color: #333;
}

.impressum p {
  color: #333;
}

.impressum address {
  color: #333;
}

.impressum p {
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.impressum .company-name {
  font-size: 1.3rem;
  font-weight: 700;
}

.impressum address {
  font-style: normal;
  margin: 1rem 0;
}

.impressum .contact-info,
.impressum .vat-info {
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: #fff;
  border-radius: 0.25rem;
}

/* Klein-Desktop / Groß-Tablet: 769px - 1199px */
@media (min-width: 769px) and (max-width: 1199px) {
  :root {
    --logo-height: clamp(2.5rem, 6vmin, 4rem);
    --header-height: auto;
    --footer-height: auto;
  }

  body {
    min-height: 100vh;
    height: auto;
  }

  header {
    padding: var(--space-sm) var(--space-md);
    height: auto;
    min-height: 4rem;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }

  .logo {
    flex: 1;
    min-width: 60%;
  }

  .logo-text {
    font-size: clamp(0.8rem, 2.5vmin, 1.2rem);
    font-weight: 700;
    color: var(--color-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .logo img {
    height: var(--logo-height);
  }

  /* Hamburger auch auf Tablet */
  .hamburger {
    display: flex;
    flex-direction: column;
    gap: var(--hamburger-gap);
    cursor: pointer;
    padding: var(--space-xs);
    z-index: 100;
    background: none;
    border: none;
  }

  .hamburger span {
    width: var(--hamburger-width);
    height: var(--hamburger-height);
    background-color: var(--color-text);
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 50%;
    max-width: 20rem;
    height: auto;
    max-height: 100vh;
    overflow-y: auto;
    background-color: var(--color-header-bg);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    transition: right 0.3s ease;
    z-index: 99;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
    padding-top: var(--header-height);
    padding-bottom: var(--space-lg);
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu li {
    margin: var(--space-sm) 0;
  }

  .nav-menu a {
    font-size: 1.1rem;
    color: var(--color-text);
    text-decoration: none;
  }

  .lang-switch-desktop {
    display: none;
  }

  .lang-switch-mobile {
    display: flex;
    gap: var(--space-xs);
    margin-top: var(--space-sm);
  }

  main {
    height: auto;
    min-height: auto;
    overflow-y: auto;
  }

  footer {
    height: auto;
    min-height: 3rem;
    padding: var(--space-sm) var(--space-md);
  }

  /* Kontaktformular und Impressum anpassen */
  .contact-form {
    width: 85%;
    padding: var(--space-lg);
  }

  .impressum {
    width: 85%;
  }
}

/* Tablet: 481px - 768px */
@media (min-width: 481px) and (max-width: 768px) {
  :root {
    --logo-height: clamp(2.5rem, 8vmin, 3.5rem);
    --header-height: auto;
    --footer-height: auto;
  }

  body {
    min-height: 100vh;
    height: auto;
  }

  header {
    padding: 0 var(--space-md);
    height: auto;
    min-height: 3.5rem;
    padding-top: var(--space-sm);
    padding-bottom: var(--space-sm);
  }

  .logo {
    gap: var(--space-xs);
  }

  .logo a {
    display: flex;
    align-items: center;
  }

  .logo img {
    height: var(--logo-height);
    max-height: calc(var(--header-height) - var(--space-sm));
    padding: 2px;
  }

  .logo-text {
    font-size: clamp(0.7rem, 2.5vmin, 1rem);
    font-weight: 700;
    color: var(--color-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    gap: var(--hamburger-gap);
    cursor: pointer;
    padding: var(--space-xs);
    z-index: 100;
    background: none;
    border: none;
  }

  .hamburger span {
    width: var(--hamburger-width);
    height: var(--hamburger-height);
    background-color: var(--color-text);
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 17.5rem;
    height: auto;
    max-height: 100vh;
    overflow-y: auto;
    background-color: var(--color-header-bg);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    transition: right 0.3s ease;
    z-index: 99;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
    padding-top: var(--header-height);
    padding-bottom: var(--space-lg);
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu li {
    margin: var(--space-sm) 0;
  }

  .nav-menu a {
    font-size: 1.1rem;
    color: var(--color-text);
    text-decoration: none;
  }

  .lang-switch-desktop {
    display: none;
  }

  .lang-switch-mobile {
    display: flex;
    gap: var(--space-xs);
    margin-top: var(--space-sm);
  }

  /* Kontaktformular - passt sich an */
  .contact-form {
    width: 95%;
    max-width: 100%;
    min-height: auto;
    padding: var(--space-md);
    margin: var(--space-sm) auto;
  }

  .contact-form h1 {
    font-size: clamp(1.25rem, 4vw, 1.75rem);
    margin-bottom: var(--space-sm);
  }

  .form-group {
    margin-bottom: var(--space-sm);
  }

  .form-group label {
    font-size: 0.95rem;
  }

  .form-group input,
  .form-group textarea {
    padding: 0.5rem;
    font-size: 1rem;
  }

  .form-group textarea {
    min-height: 100px;
  }

  button[type="submit"] {
    padding: 0.6rem 1.5rem;
    font-size: 0.95rem;
  }

  main {
    height: auto;
    min-height: auto;
    overflow-y: auto;
  }

  /* Home-Layout Tablet - Flexbox */
  .home-container {
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-sm);
  }

  .home-text-frame {
    flex: 1 1 60%;
    max-width: 60%;
    order: 2;
    padding: var(--space-md);
  }

  /* Unterschiedliche Breiten für X-Überlappung */
  .image-1 {
    flex: 1 1 30%;
    min-width: 25%;
    min-height: 100px;
    order: 1;
  }

  .image-2 {
    flex: 1 1 40%;
    min-width: 35%;
    min-height: 100px;
    order: 1;
  }

  .image-3 {
    flex: 1 1 35%;
    min-width: 30%;
    min-height: 100px;
    order: 3;
  }

  .image-4 {
    flex: 1 1 45%;
    min-width: 40%;
    min-height: 100px;
    order: 3;
  }

  footer {
    height: auto;
    min-height: 2.5rem;
    padding: var(--space-sm) var(--space-md);
  }
}

/* Mobile: alle bis 767px */
@media (max-width: 767px) {
  :root {
    --logo-height: 2.625rem;
    --hamburger-width: 1.25rem;
    --hamburger-height: 0.125rem;
    --header-height: auto;
    --footer-height: auto;
  }

  body {
    min-height: 100vh;
    height: auto;
  }

  header {
    padding: var(--space-xs) var(--space-sm);
    height: auto;
    min-height: 3rem;
    padding-top: var(--space-xs);
    padding-bottom: var(--space-xs);
  }

  .logo {
    gap: var(--space-xs);
  }

  .logo a {
    display: flex;
    align-items: center;
  }

  .logo img {
    height: var(--logo-height);
    padding: 2px;
  }

  .logo-text {
    font-size: clamp(0.6rem, 2.5vmin, 0.85rem);
    font-weight: 700;
    color: var(--color-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* Main und Footer */
  main {
    height: auto;
    min-height: auto;
    overflow-y: auto;
  }

  /* Home-Layout Mobile - Flexbox */
  .home-container {
    flex-direction: column;
    gap: var(--space-sm);
    padding: var(--space-sm);
  }

  /* Unterschiedliche Breiten für X-Überlappung */
  .image-1 {
    flex: 1 1 35%;
    min-width: 30%;
    min-height: 80px;
    order: 1;
  }

  .image-2 {
    flex: 1 1 55%;
    min-width: 50%;
    min-height: 80px;
    order: 1;
  }

  .image-3 {
    flex: 1 1 40%;
    min-width: 35%;
    min-height: 80px;
    order: 3;
  }

  .image-4 {
    flex: 1 1 50%;
    min-width: 45%;
    min-height: 80px;
    order: 3;
  }

  .home-text-frame {
    flex: 1 1 70%;
    order: 2;
    padding: var(--space-md);
  }

  footer {
    height: auto;
    min-height: 2.5rem;
    padding: var(--space-sm) var(--space-md);
  }

  /* Kontaktformular */
  .contact-form {
    width: 95%;
    padding: var(--space-md);
  }

  /* Impressum */
  .impressum {
    width: 95%;
    padding: var(--space-sm);
  }
}

/* Mobile Landscape: max 767px und Querformat */
@media (max-width: 767px) and (orientation: landscape) {
  :root {
    --logo-height: 2.625rem;
    --hamburger-width: 1.25rem;
    --hamburger-height: 0.125rem;
    --header-height: auto;
    --footer-height: auto;
  }

  body {
    min-height: 100vh;
    height: auto;
  }

  header {
    padding: var(--space-xs) var(--space-sm);
    height: auto;
    min-height: 3rem;
    padding-top: var(--space-xs);
    padding-bottom: var(--space-xs);
  }

  .logo {
    gap: var(--space-xs);
  }

  .logo a {
    display: flex;
    align-items: center;
  }

  .logo img {
    height: var(--logo-height);
    padding: 2px;
  }

  .logo-text {
    font-size: clamp(0.6rem, 2.5vmin, 0.85rem);
    font-weight: 700;
    color: var(--color-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  main {
    height: auto;
    min-height: auto;
    overflow-y: auto;
  }

  /* Home-Layout Landscape - 2x2 Grid */
  .home-container {
    flex-direction: column;
    gap: var(--space-sm);
    padding: var(--space-sm);
  }

  /* 2x2 Grid - beide Zeilen */
  .image-1,
  .image-2 {
    flex: 1 1 45%;
    min-width: 40%;
    min-height: 80px;
    order: 1;
  }

  .image-3,
  .image-4 {
    flex: 1 1 45%;
    min-width: 40%;
    min-height: 80px;
    order: 3;
  }

  .home-text-frame {
    flex: 1 1 70%;
    order: 2;
    padding: var(--space-md);
  }

  footer {
    height: auto;
    min-height: 2.5rem;
    padding: var(--space-sm) var(--space-md);
  }

  /* Kontaktformular */
  .contact-form {
    width: 95%;
    padding: var(--space-md);
  }

  /* Impressum */
  .impressum {
    width: 95%;
    padding: var(--space-sm);
  }
}

/* Große Bildschirme: 1200px+ */
@media (min-width: 1200px) {
  :root {
    --logo-height: clamp(4rem, 8vh, 5.625rem);
  }

  header {
    padding: 0 var(--space-xl);
  }

  .nav-menu {
    gap: var(--space-lg);
  }

  .lang-switch {
    margin-left: var(--space-xl);
  }
}

/* Sehr kleine Bildschirme: max 320px */
@media (max-width: 320px) {
  :root {
    --logo-height: 2.25rem;
    --hamburger-width: 1.125rem;
  }

  header {
    padding: 0 var(--space-xs);
  }

  .logo img {
    height: var(--logo-height);
  }

  .logo-text {
    display: none;
  }

  .hamburger span {
    width: var(--hamburger-width);
    height: 2px;
  }

  .nav-menu {
    width: 85%;
  }
}