/* ===== CSS RESET & BASE ===== */
html {
  box-sizing: border-box;
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  background: #F4F4F4;
  color: #212224;
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.01em;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #212224;
  text-decoration: none;
  transition: color 0.2s;
}
ul, ol {
  padding-left: 24px;
}
li {
  margin-bottom: 8px;
}
button, input, textarea, select {
  font: inherit;
  background: none;
  border: none;
  outline: none;
}
button {
  cursor: pointer;
}
:focus-visible {
  outline: 2px solid #FFD028;
  outline-offset: 1px !important;
}
/* ===== BRAND FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;600;700&family=Roboto:wght@400;500;700&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', Arial, sans-serif;
  color: #212224;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1.125rem;
  font-weight: 600;
}
p {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 16px;
  color: #212224;
}
strong, b {
  font-weight: 700;
}

/* ===== LAYOUT CONTAINERS ===== */
.container {
  width: 100%;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(33, 34, 36, 0.05);
}
.text-section {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
}
.feature-grid > div {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1px 8px rgba(33,34,36,0.07);
  padding: 28px 20px;
  flex: 1 1 220px;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: transform .15s, box-shadow .2s;
}
.feature-grid > div:hover, .feature-grid > div:focus-visible {
  box-shadow: 0 6px 28px rgba(33,34,36,0.12);
  transform: translateY(-3px) scale(1.01);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(33,34,36,0.08);
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px 22px;
  min-width: 220px;
  transition: box-shadow 0.18s, transform .12s;
}
.card:hover, .card:focus-visible {
  box-shadow: 0 8px 32px rgba(33,34,36,0.13);
  transform: translateY(-2px) scale(1.01);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.team-section {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.team-section > div {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 8px rgba(33,34,36,0.06);
  padding: 20px 16px;
  flex: 1 1 240px;
  min-width: 180px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ===== HERO SECTION ===== */
.hero {
  background: #fff;
  padding-top: 30px;
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-radius: 0 0 22px 22px;
  box-shadow: 0 4px 32px rgba(33,34,36,0.07);
}
.hero h1, .hero h2 {
  color: #212224;
}
.hero p {
  font-size: 1.15rem;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .hero {
    padding: 24px 0 28px 0;
    border-radius: 0 0 12px 12px;
  }
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }
}

/* ===== NAVIGATION ===== */
header {
  background: #fff;
  box-shadow: 0 1px 24px rgba(33, 34, 36, 0.05);
  position: sticky;
  top: 0;
  z-index: 90;
}
nav {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 20px;
  height: 70px;
  background: none;
  box-shadow: none;
}
nav ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  list-style: none;
}
nav ul li {
  margin-bottom: 0;
}
nav ul li a {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #212224;
  padding: 6px 12px;
  border-radius: 5px;
  transition: background-color 0.16s, color 0.16s;
}
nav ul li a:hover, nav ul li a:focus-visible {
  background: #FFD02811;
  color: #FFD028;
}
nav a.cta.primary {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  padding: 11px 28px;
  background: #FFD028;
  color: #212224;
  border: none;
  border-radius: 26px;
  box-shadow: 0 2px 8px rgba(33,34,36,0.06);
  letter-spacing: 0.02em;
  margin-left: 30px;
  transition: background .17s, box-shadow .18s;
}
nav a.cta.primary:hover, nav a.cta.primary:focus-visible {
  background: #212224;
  color: #FFD028;
  box-shadow: 0 4px 20px rgba(33,34,36,0.13);
}
nav > a > img {
  max-height: 38px;
  width: auto;
}
.mobile-menu-toggle {
  display: none;
  background: #FFD028;
  color: #212224;
  font-size: 2.15rem;
  line-height: 1;
  border-radius: 6px;
  padding: 6px 14px;
  margin-left: 18px;
  border: none;
  transition: background .16s, box-shadow 0.14s;
  box-shadow: 0 1px 8px rgba(33,34,36,0.10);
  z-index: 101;
}
.mobile-menu-toggle:focus-visible {
  background: #FFED9F;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 4px 40px rgba(33,34,36,0.16);
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(.5,.05,.21,1); 
  z-index: 200;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 38px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: #FFD028;
  color: #212224;
  border: none;
  border-radius: 5px;
  font-size: 2rem;
  padding: 4px 14px;
  box-shadow: 0 1px 8px rgba(33,34,36,0.10);
  transition: background .14s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus-visible {
  background: #FFED9F;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  margin-top: 30px;
  align-items: flex-start;
  padding-left: 34px;
}
.mobile-nav a {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.34rem;
  color: #212224;
  padding: 8px 9px;
  border-radius: 4px;
  transition: background .13s, color .13s;
  min-width: 220px;
}
.mobile-nav a:hover, .mobile-nav a:focus-visible {
  color: #FFD028;
  background: #FFD02811;
}
@media (max-width: 1060px) {
  nav ul {
    gap: 11px;
  }
  nav a.cta.primary {
    margin-left: 18px;
  }
}
@media (max-width: 900px) {
  nav {
    padding: 0 12px;
  }
  .container {
    max-width: 97vw;
  }
}
@media (max-width: 790px) {
  nav ul,
  nav a.cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ===== FOOTER ===== */
footer {
  background: #fff;
  padding: 38px 0 18px 0;
  margin-top: 48px;
  box-shadow: 0 -2px 24px rgba(33,34,36,0.05);
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  border-bottom: 1px solid #F4F4F4;
  padding-bottom: 15px;
  margin-bottom: 16px;
}
.footer-top img {
  height: 44px;
  width: auto;
}
.footer-menu {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-menu a {
  color: #212224;
  font-size: 1rem;
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 500;
  transition: color .14s;
}
.footer-menu a:hover, .footer-menu a:focus-visible {
  color: #FFD028;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 8px;
}
@media (max-width: 800px) {
  .footer-top {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .footer-menu {
    gap: 18px;
  }
}

/* ===== BUTTONS & CTAs ===== */
.cta.primary,
.button,
button, .modal-actions button {
  font-family: 'Oswald', Arial, sans-serif;
  background: #FFD028;
  color: #212224;
  padding: 10px 28px;
  border-radius: 25px;
  font-size: 1rem;
  border: none;
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(33,34,36,0.08);
  letter-spacing: .02em;
  transition: box-shadow 0.14s, background 0.15s, color 0.12s, transform .12s;
  margin-top: 6px;
  margin-bottom: 7px;
  cursor: pointer;
}
.cta.primary:hover, .cta.primary:focus-visible,
.button:hover, .button:focus-visible,
button:hover, button:focus-visible, .modal-actions button:hover, .modal-actions button:focus-visible {
  background: #212224;
  color: #FFD028;
  box-shadow: 0 5px 20px rgba(33,34,36,0.17);
  transform: translateY(-1px) scale(1.03);
}
.cta.secondary {
  background: transparent;
  color: #212224;
  border: 2px solid #FFD028;
}
.cta.secondary:hover, .cta.secondary:focus-visible {
  background: #FFD02811;
  color: #212224;
}

/* ===== TESTIMONIAL CARDS ===== */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 12px rgba(33,34,36,0.09);
  transition: box-shadow 0.14s, transform 0.14s;
  color: #212224;
}
.testimonial-card blockquote {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.18rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.5;
  color: #212224;
  margin-bottom: 8px;
  quotes: "\201E" "\201C";
}
.testimonial-card blockquote:before { content: open-quote; color: #FFD028; font-size: 1.5em; vertical-align: bottom; }
.testimonial-card blockquote:after { content: close-quote; color: #FFD028; font-size: 1.5em; vertical-align: bottom; }
.testimonial-card p strong { font-family: 'Roboto', Arial, sans-serif; font-weight: 600; font-size: 1.02em; }
.testimonial-card:hover, .testimonial-card:focus-visible {
  box-shadow: 0 6px 24px rgba(33,34,36,0.16);
  transform: scale(1.02);
}

/* ===== MODALS ===== */
.modal {
  position: fixed;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(33,34,36,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9990;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s;
}
.modal.open {
  opacity: 1;
  pointer-events: all;
}
.modal-content {
  background: #fff;
  border-radius: 14px;
  padding: 38px 26px 22px 26px;
  box-shadow: 0 4px 30px rgba(33,34,36,0.18);
  min-width: 290px;
  max-width: 92vw;
  min-height: 0;
  position: relative;
  animation: modalIn .38s cubic-bezier(0.56,0.1,0.47,1.13);
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(18px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-content h2 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}
.modal-content label {
  font-size: 1rem;
  margin-right: 10px;
}
.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
  margin-top: 26px;
}
.btn-ghost {
  background: transparent;
  border: 2px solid #FFD028;
  color: #212224;
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: #FFD02811;
  color: #212224;
}
.modal-close {
  position: absolute;
  top: 12px;
  right: 18px;
  background: #FFD028;
  color: #212224;
  border-radius: 4px;
  font-size: 1.47rem;
  padding: 2px 10px;
  border: none;
  transition: background .13s;
  z-index: 2;
}
.modal-close:hover, .modal-close:focus-visible {
  background: #FFED9F;
}
/* Cookie modal settings block */
.modal-category-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 12px 0;
}
.modal-category-row .toggle-switch {
  width: 36px;
  height: 22px;
  background: #F4F4F4;
  border-radius: 13px;
  position: relative;
  transition: background .15s;
}
.toggle-switch input[type='checkbox'] {
  display: none;
}
.toggle-switch .slider {
  position: absolute;
  left: 2px; top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #FFD028;
  transition: transform .16s, background .18s;
  transform: translateX(0);
}
.toggle-switch input[type='checkbox']:checked + .slider {
  transform: translateX(14px);
  background: #212224;
}

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100vw;
  background: #212224;
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 20px 16px;
  gap: 28px;
  z-index: 3333;
  box-shadow: 0 -2px 16px rgba(33,34,36,0.10);
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s;
}
.cookie-banner.active {
  opacity: 1;
  pointer-events: all;
}
.cookie-banner__text {
  flex: 2 1 230px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #fff;
  margin-right: 12px;
}
.cookie-banner__actions {
  flex: 0 1 auto;
  display: flex;
  gap: 15px;
  align-items: center;
}
.cookie-banner__actions .cta.primary {
  padding: 8px 24px;
  border-radius: 20px;
  font-size: 1rem;
}
.cookie-banner__actions .cta.secondary, .cookie-banner__actions .cookie-settings-btn {
  background: transparent;
  color: #FFD028;
  border: 2px solid #FFD028;
  font-size: 1rem;
  padding: 8px 22px;
  border-radius: 20px;
  transition: background .12s, color .12s;
}
.cookie-banner__actions .cta.secondary:hover, .cookie-banner__actions .cookie-settings-btn:hover {
  background: #FFD02811;
}
@media (max-width: 650px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    font-size: .99rem;
    padding: 18px 6px;
  }
  .cookie-banner__actions {
    gap: 8px;
    flex-wrap: wrap;
  }
}

/* ===== MISCELLANEOUS ===== */
::-webkit-input-placeholder { color: #b2b2b2; }
::-moz-placeholder { color: #b2b2b2; }
:-ms-input-placeholder { color: #b2b2b2; }
::placeholder { color: #b2b2b2; }

hr {
  border: none;
  border-bottom: 1px solid #F4F4F4;
  margin: 32px 0 22px 0;
}

/* ===== UTILITY SPACING CLASSES ===== */
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }

/* ===== MEDIA QUERIES: MOBILE-FIRST ===== */
@media (max-width: 768px) {
  body {
    font-size: 15px;
  }
  h1 {
    font-size: 2rem;
    margin-bottom: 18px;
  }
  h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }
  .section {
    padding: 26px 8px;
    margin-bottom: 40px;
    border-radius: 8px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 15px;
  }
  .feature-grid {
    gap: 14px;
  }
  .feature-grid > div {
    min-width: 80vw;
    padding: 18px 10px;
  }
  .team-section {
    flex-direction: column;
    gap: 14px;
  }
  .content-grid {
    gap: 12px;
    flex-direction: column;
    align-items: stretch;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}
@media (max-width: 480px) {
  h1 {
    font-size: 1.35rem;
  }
  h2 {
    font-size: 1.05rem;
  }
  .section {
    margin-bottom: 28px;
    padding: 12px 3px;
  }
}

/* ===== VISUAL SEPARATORS (Optional, subtle) ===== */
.divider {
  border-bottom: 1px solid #F4F4F4;
  margin: 28px 0;
}

/* ===== FORMS (for Kontakt, future expansion) ===== */
input, textarea, select {
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  padding: 9px 12px;
  margin-bottom: 14px;
  background: #F7F7F7;
  width: 100%;
  font-size: 1rem;
  color: #212224;
  transition: border-color 0.12s;
}
input:focus, textarea:focus, select:focus {
  border-color: #FFD028;
  background: #fff;
}
label {
  display: block;
  margin-bottom: 6px;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1rem;
}

/* ===== ACCESSIBILITY ===== */
.sr-only {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}

/* === Glow Hammer Fitness: End of CSS === */
