/* ============================================
   A. Trostel Umzugslogistik GmbH
   Helles, familiäres Design – nah am Logo
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  /* Logo-Farben */
  --color-red: #e73e33;
  --color-red-hover: #cf3228;
  --color-red-light: #fdecea;
  --color-red-soft: #f9d4d1;

  /* Warme, helle Palette */
  --color-bg: #ffffff;
  --color-bg-warm: #faf8f6;
  --color-bg-cream: #f5f0eb;
  --color-bg-light: #fefcfa;

  /* Text */
  --color-text: #3a3130;
  --color-text-secondary: #6b5e5c;
  --color-text-muted: #7d706e;

  /* Akzente */
  --color-dark: #2c2322;
  --color-border: #e8dfdb;
  --color-border-light: #f0ebe8;
  --color-success: #4caf50;
  --color-warm-gold: #c9953c;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(58, 49, 48, 0.04);
  --shadow-sm: 0 2px 8px rgba(58, 49, 48, 0.06);
  --shadow-md: 0 4px 20px rgba(58, 49, 48, 0.08);
  --shadow-lg: 0 8px 36px rgba(58, 49, 48, 0.1);
  --shadow-red: 0 4px 16px rgba(231, 62, 51, 0.2);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: Georgia, 'Times New Roman', serif;
  --font-body: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --max-width: 1140px;
}

/* ---------- Skip Link ---------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 10000;
  padding: 0.75rem 1.5rem;
  background: var(--color-red);
  color: #fff;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 1rem;
  color: #fff;
}

/* ---------- Reset ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  font-size: 16px;
  -webkit-tap-highlight-color: transparent;
}

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

:target {
  scroll-margin-top: 100px;
}

.skip-link {
  position: absolute;
  top: -48px;
  left: 1rem;
  z-index: 10000;
  padding: 0.6rem 1rem;
  background: var(--color-red);
  color: #fff;
  text-decoration: none;
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: top var(--transition);
}
.skip-link:focus {
  top: 1rem;
  color: #fff;
  outline: 3px solid #fff;
  outline-offset: 2px;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
}

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

a {
  color: var(--color-red);
  text-decoration: none;
  transition: color var(--transition);
  touch-action: manipulation;
}
a:hover { color: var(--color-red-hover); }

button, input, select, textarea {
  touch-action: manipulation;
}

/* Focus-visible styles for keyboard navigation */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--color-red);
  outline-offset: 2px;
}

ul { list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.25;
  color: var(--color-dark);
  text-wrap: balance;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.3rem); margin-bottom: 1.25rem; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.45rem); margin-bottom: 0.75rem; }

p {
  margin-bottom: 1rem;
  color: var(--color-text-secondary);
}

/* ---------- Utility ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section--warm {
  background: var(--color-bg-warm);
}

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

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  margin-bottom: 0.75rem;
}

.section-header .accent-line {
  width: 50px;
  height: 3px;
  background: var(--color-red);
  border-radius: 2px;
  margin: 0 auto 1rem;
}

.section-header p {
  max-width: 580px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border: none;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  text-decoration: none;
  letter-spacing: 0.01em;
  touch-action: manipulation;
}

.btn--red {
  background: var(--color-red);
  color: #fff;
}
.btn--red:hover {
  background: var(--color-red-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-red);
}

.btn--outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.7);
}
.btn--outline-white:hover {
  background: #fff;
  color: var(--color-red);
  border-color: #fff;
}

.btn--outline {
  background: transparent;
  color: var(--color-red);
  border: 2px solid var(--color-red);
}
.btn--outline:hover {
  background: var(--color-red);
  color: #fff;
}

.btn--white {
  background: #fff;
  color: var(--color-red);
  box-shadow: var(--shadow-sm);
}
.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--color-red-hover);
}

.btn--block {
  width: 100%;
  justify-content: center;
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.75rem 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
  background: transparent;
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: 0.5rem 0;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

.nav__logo img {
  height: 44px;
  width: auto;
  transition: height var(--transition);
}

.nav.scrolled .nav__logo img {
  height: 36px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.nav__links a {
  color: #fff;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition), background-color var(--transition);
}

.nav.scrolled .nav__links a {
  color: var(--color-text);
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--color-red);
  background: var(--color-red-light);
}

.nav__links a:not(.nav.scrolled .nav__links a):hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

.nav__cta {
  background: var(--color-red) !important;
  color: #fff !important;
  margin-left: 0.5rem;
}
.nav__cta:hover {
  background: var(--color-red-hover) !important;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.nav__toggle:focus-visible {
  outline: 2px solid var(--color-red);
  outline-offset: 2px;
  border-radius: 4px;
}

.nav__toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: background-color var(--transition), transform var(--transition), opacity var(--transition);
}

.nav.scrolled .nav__toggle span {
  background: var(--color-text);
}

/* ---------- Hero with Video ---------- */
.hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--color-dark);
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg,
      rgba(44, 35, 34, 0.45) 0%,
      rgba(44, 35, 34, 0.3) 40%,
      rgba(44, 35, 34, 0.55) 100%
    );
}

.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 2rem 1.5rem;
  max-width: 760px;
}

.hero__tagline {
  display: inline-block;
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  padding: 0.4rem 0;
  border-bottom: 2px solid var(--color-red);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero h1 {
  color: #fff;
  margin-bottom: 1rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.hero__subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.15rem;
  max-width: 540px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  text-align: center;
  animation: bobble 2s ease-in-out infinite;
}

.hero__scroll-hint svg {
  display: block;
  margin: 0.3rem auto 0;
}

@keyframes bobble {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ---------- Page Hero (Unterseiten) ---------- */
.page-hero {
  background: var(--color-bg-cream);
  padding: 8rem 0 4rem;
  text-align: center;
  border-bottom: 1px solid var(--color-border-light);
}

.page-hero h1 {
  color: var(--color-dark);
  margin-bottom: 0.75rem;
}

.page-hero p {
  color: var(--color-text-secondary);
  max-width: 580px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.page-hero .accent-line {
  background: var(--color-red);
  margin: 0 auto 1rem;
}

/* ---------- Motto ---------- */
.motto {
  background: var(--color-bg-cream);
  padding: 2.5rem 1.5rem;
  text-align: center;
  border-bottom: 1px solid var(--color-border-light);
}

.motto__text {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  line-height: 1.9;
  letter-spacing: 0.01em;
}

.motto__text span {
  display: block;
}

.motto__punchline {
  color: var(--color-red);
  font-weight: 700;
  margin-top: 0.2rem;
}

/* ---------- Family Values Bar ---------- */
.values-bar {
  background: var(--color-bg);
  padding: 3rem 0;
  border-bottom: 1px solid var(--color-border-light);
}

.values-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.values-bar__item {
  padding: 1rem 0.5rem;
}

.values-bar__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 0.85rem;
  background: var(--color-red-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-red);
}

.values-bar__item h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
  color: var(--color-dark);
}

.values-bar__item p {
  font-size: 0.85rem;
  margin-bottom: 0;
  color: var(--color-text-muted);
}

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

@media (min-width: 1025px) {
  .services-grid:has(> .service-card:nth-child(4):last-child) {
    grid-template-columns: repeat(2, 1fr);
    max-width: 880px;
    margin: 0 auto;
  }
}

.service-card {
  background: var(--color-bg);
  border-radius: var(--radius-md);
  padding: 2.25rem 2rem;
  border: 1px solid var(--color-border-light);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  text-align: center;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--color-red-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--color-red);
  transition: background-color var(--transition), color var(--transition);
}

.service-card:hover .service-card__icon {
  background: var(--color-red);
  color: #fff;
}

.service-card h3 {
  margin-bottom: 0.6rem;
}

.service-card p {
  font-size: 0.93rem;
  line-height: 1.65;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: auto;
  padding-top: 1rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-red);
}

.service-card__link svg {
  transition: transform var(--transition);
}

.service-card:hover .service-card__link svg {
  transform: translateX(4px);
}


/* ---------- About (erweitert, persönlich) ---------- */
.about-personal {
  padding: 5rem 0 3rem;
}

.about-personal__intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  margin-bottom: 4rem;
}

.about-personal__photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-personal__photo img {
  width: 100%;
  height: auto;
  display: block;
}

.about-personal__badge {
  position: absolute;
  bottom: -14px;
  right: -14px;
  background: var(--color-red);
  color: #fff;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  border: 4px solid #fff;
  z-index: 2;
}

.about-personal__badge-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  opacity: 0.9;
}

.about-personal__badge-year {
  font-family: var(--font-heading);
  font-size: 2rem;
  line-height: 1;
}

.about-personal__text h2 {
  margin-bottom: 1.25rem;
}

.about-personal__text p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.about-personal__signature {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border-light);
}

.about-personal__signature strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--color-dark);
  margin-bottom: 0.15rem;
}

.about-personal__signature span {
  font-size: 0.88rem;
  color: var(--color-text-muted);
}

.about-personal__highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.about-personal__highlight {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.6rem 0.85rem;
  background: var(--color-red-light);
  border-radius: var(--radius-sm);
}

.about-personal__highlight svg {
  flex-shrink: 0;
  color: var(--color-red);
}

.about-personal__highlight span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-dark);
}

/* Horizontal Timeline */
.timeline {
  display: flex;
  position: relative;
  justify-content: space-between;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: var(--color-border);
}

.timeline__item {
  flex: 1;
  text-align: center;
  position: relative;
  padding: 0 0.5rem;
}

.timeline__dot {
  width: 16px;
  height: 16px;
  background: var(--color-red);
  border: 3px solid var(--color-bg-warm);
  border-radius: 50%;
  margin: -7px auto 0.75rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 2px var(--color-red-soft);
  transition: transform var(--transition);
}

.timeline__item:hover .timeline__dot {
  transform: scale(1.3);
}

.timeline__year {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-red);
  margin-bottom: 0.35rem;
}

.timeline__item h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}

.timeline__item p {
  font-size: 0.82rem;
  margin-bottom: 0.6rem;
  max-width: 170px;
  margin-left: auto;
  margin-right: auto;
}

.timeline__img {
  width: 100%;
  max-width: 150px;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  margin: 0 auto;
}

/* Video Section */
.videos {
  margin-top: 4rem;
}

.videos__header {
  text-align: center;
  margin-bottom: 2rem;
}

.videos__header h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.videos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.videos__item {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-dark);
  box-shadow: var(--shadow-md);
}

.videos__item video {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}

.videos__item-label {
  padding: 0.85rem 1rem;
  text-align: center;
  color: #fff;
  font-weight: 600;
  font-size: 0.88rem;
  background: var(--color-dark);
}

/* Lagerung Fotos */
.storage__photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.storage__photo {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4/3;
}

.storage__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.storage__photo:hover img {
  transform: scale(1.04);
}

/* Partner Logos */
.partners {
  padding: 3rem 0;
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
}

.partners__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.5rem;
  flex-wrap: nowrap;
}

.partners__label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
  flex-shrink: 0;
}

.partners__logos {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: nowrap;
}

.partners__logos img {
  height: 45px;
  width: auto;
  opacity: 0.5;
  filter: grayscale(100%);
  transition: opacity var(--transition), filter var(--transition);
}

.partners__logos img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

@media (max-width: 768px) {
  .partners__inner {
    flex-wrap: wrap;
  }
  .partners__logos {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ---------- Areas ---------- */
.areas__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.areas__tag {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  padding: 0.45rem 1.15rem;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  transition: background-color var(--transition), border-color var(--transition), color var(--transition);
}

.areas__tag:hover {
  border-color: var(--color-red);
  color: var(--color-red);
  background: var(--color-red-light);
}

/* ---------- Storage ---------- */
.storage-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 860px;
  margin: 0 auto;
}

.storage-card {
  background: var(--color-bg);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  text-align: center;
  border: 2px solid var(--color-border-light);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.storage-card .btn {
  margin-top: auto;
}

.storage-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.storage-card--featured {
  border-color: var(--color-red);
}

.storage-card__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-red);
  color: #fff;
  padding: 0.3rem 1.2rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.storage-card__emoji {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.storage-card h3 {
  margin-bottom: 0.35rem;
}

.storage-card__dimensions {
  color: var(--color-text-muted);
  font-size: 0.88rem;
  margin-bottom: 1.25rem;
}

.storage-card__price {
  margin-bottom: 1.25rem;
}

.storage-card__amount {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--color-dark);
  display: block;
  font-variant-numeric: tabular-nums;
}

.storage-card__period {
  color: var(--color-text-muted);
  font-size: 0.85rem;
}

.storage-card__features {
  text-align: left;
  margin-bottom: 1.5rem;
}

.storage-card__features li {
  padding: 0.35rem 0;
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.storage-card__check {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--color-success);
}

.storage__advantages {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.storage__advantage {
  text-align: center;
  padding: 1.25rem 0.75rem;
}

.storage__advantage-icon {
  font-size: 1.8rem;
  margin-bottom: 0.6rem;
}

.storage__advantage h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.93rem;
  margin-bottom: 0.3rem;
}

.storage__advantage p {
  font-size: 0.82rem;
}

/* ---------- Equipment ---------- */
.equipment__table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}

.equipment-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-bg);
}

.equipment-table thead {
  background: var(--color-red);
}

.equipment-table th {
  padding: 0.9rem 1.2rem;
  text-align: left;
  color: #fff;
  font-weight: 600;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.equipment-table td {
  padding: 0.8rem 1.2rem;
  border-bottom: 1px solid var(--color-border-light);
  font-size: 0.93rem;
  color: var(--color-text-secondary);
  font-variant-numeric: tabular-nums;
}

.equipment-table tbody tr {
  transition: background var(--transition);
}

.equipment-table tbody tr:hover {
  background: var(--color-red-light);
}

.equipment-table tbody tr:last-child td {
  border-bottom: none;
}

.equip-name {
  position: relative;
}

.equip-hover-img {
  display: none;
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  margin-left: 0.75rem;
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  z-index: 10;
  pointer-events: none;
}

.equipment-table tbody tr:hover .equip-hover-img {
  display: block;
}

.equipment__note {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  background: var(--color-bg-cream);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--color-warm-gold);
  font-size: 0.88rem;
  color: var(--color-text-secondary);
}

/* ---------- Testimonials ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.testimonial-card {
  background: var(--color-bg);
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1px solid var(--color-border-light);
  transition: box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
}

.testimonial-card__stars {
  color: var(--color-warm-gold);
  font-size: 0.95rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.testimonial-card__text {
  font-style: italic;
  font-size: 0.93rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin-bottom: 1.25rem;
}

.testimonial-card__quote {
  display: block;
  color: var(--color-red-soft);
  font-family: Georgia, serif;
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.testimonial-card__author {
  font-weight: 600;
  color: var(--color-dark);
  font-size: 0.93rem;
  margin-top: auto;
}

.testimonial-card__role {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* ---------- CTA ---------- */
.cta {
  background: var(--color-red);
  padding: 4.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}

.cta::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}

.cta__content {
  position: relative;
  z-index: 2;
}

.cta h2 {
  color: #fff;
  margin-bottom: 0.75rem;
}

.cta p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 460px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
}

.cta__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Contact ---------- */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
}

.contact__info h2 {
  margin-bottom: 1rem;
}

.contact__info > p {
  margin-bottom: 2rem;
  font-size: 1.02rem;
}

.contact__detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact__detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-red-light);
  color: var(--color-red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact__detail h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.93rem;
  margin-bottom: 0.1rem;
  color: var(--color-dark);
}

.contact__detail p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

.contact__form-wrapper {
  background: var(--color-bg);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border-light);
}

.contact__form-wrapper h3 {
  margin-bottom: 1.5rem;
  font-size: 1.35rem;
}

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

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

.form-group--full {
  grid-column: 1 / -1;
}

.form-group label {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--color-text);
}

.form-group .required {
  color: var(--color-red);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.72rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--color-text);
  background: var(--color-bg-light);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus-visible,
.form-group select:focus-visible,
.form-group textarea:focus-visible {
  outline: none;
  border-color: var(--color-red);
  box-shadow: 0 0 0 3px var(--color-red-light);
}

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

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin: 1rem 0 1.5rem;
}

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--color-red);
}

.form-checkbox label {
  font-size: 0.83rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

.btn--submit {
  width: 100%;
  justify-content: center;
  padding: 1rem;
  font-size: 1rem;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--color-dark);
  color: rgba(255,255,255,0.7);
  padding: 3.5rem 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.3fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}

.footer__brand-logo {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  margin-bottom: 0.75rem;
}

.footer__brand p {
  color: rgba(255,255,255,0.45);
  font-size: 0.88rem;
  line-height: 1.6;
}

.footer h4 {
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 1.1rem;
}

.footer__links li {
  margin-bottom: 0.45rem;
}

.footer__links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  transition: color var(--transition);
}

.footer__links a:hover {
  color: #fff;
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.65rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
}

.footer__contact-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--color-red);
}

.footer__contact-item a {
  color: rgba(255,255,255,0.5);
}
.footer__contact-item a:hover {
  color: #fff;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer__bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
  margin-bottom: 0;
}

.footer__bottom-links {
  display: flex;
  gap: 1.25rem;
}

.footer__bottom-links a {
  color: rgba(255,255,255,0.3);
  font-size: 0.82rem;
}

.footer__bottom-links a:hover {
  color: rgba(255,255,255,0.7);
}

/* ---------- Legal Pages ---------- */
.legal {
  padding: 7rem 0 4rem;
}

.legal h1 { margin-bottom: 2rem; }

.legal h2 {
  font-size: 1.35rem;
  margin-top: 2.5rem;
  margin-bottom: 0.85rem;
}

.legal h3 {
  font-size: 1.1rem;
  margin-top: 1.5rem;
  margin-bottom: 0.65rem;
}

.legal p, .legal li {
  font-size: 0.93rem;
  line-height: 1.8;
}

.legal ul {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.legal ul li {
  list-style: disc;
  margin-bottom: 0.35rem;
}

/* ---------- Scroll to Top ---------- */
.scroll-top {
  position: fixed;
  bottom: calc(2rem + env(safe-area-inset-bottom));
  right: calc(2rem + env(safe-area-inset-right));
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-red);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition), background-color var(--transition);
  box-shadow: var(--shadow-md);
  z-index: 999;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--color-red-hover);
  transform: translateY(-2px);
}

/* ---------- Storage Hint Banner ---------- */
.storage-hint {
  position: fixed;
  bottom: calc(5.5rem + env(safe-area-inset-bottom));
  left: calc(1.5rem + env(safe-area-inset-left));
  z-index: 998;
  display: flex;
  align-items: center;
  gap: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-20px);
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.storage-hint.visible {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.storage-hint__inner {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  padding: 0.6rem 1rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-lg);
  text-decoration: none;
  color: var(--color-text);
  font-size: 0.85rem;
  transition: border-color var(--transition), color var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}

.storage-hint__inner:hover {
  border-color: var(--color-red);
  box-shadow: var(--shadow-lg), 0 0 0 3px var(--color-red-light);
  color: var(--color-red);
}

.storage-hint__icon {
  font-size: 1.1rem;
  line-height: 1;
}

.storage-hint__text strong {
  color: var(--color-red);
}

.storage-hint__arrow {
  color: var(--color-text-muted);
  transition: transform var(--transition);
}

.storage-hint__inner:hover .storage-hint__arrow {
  transform: translateX(3px);
  color: var(--color-red);
}

.storage-hint__close {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: var(--color-bg);
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -6px;
  position: relative;
  z-index: 1;
  transition: background-color var(--transition), color var(--transition), border-color var(--transition);
  box-shadow: var(--shadow-sm);
}

.storage-hint__close:hover {
  background: var(--color-red-light);
  color: var(--color-red);
  border-color: var(--color-red);
}

@media (max-width: 480px) {
  .storage-hint {
    left: 0.75rem;
    right: 0.75rem;
    bottom: calc(5rem + env(safe-area-inset-bottom));
    justify-content: center;
  }
  .storage-hint__inner {
    flex: 1;
    min-width: 0;
    font-size: 0.8rem;
    padding: 0.7rem 0.9rem;
    white-space: normal;
    line-height: 1.3;
    justify-content: center;
  }
  .storage-hint__text {
    flex: 0 1 auto;
  }
}

/* ---------- Animations ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .fade-in {
    opacity: 1;
    transform: none;
  }

  .hero__scroll-hint {
    animation: none;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
  .storage__advantages { grid-template-columns: repeat(2, 1fr); }
  .values-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .timeline { flex-wrap: wrap; justify-content: center; gap: 1.5rem; }
  .timeline::before { display: none; }
  .timeline__item { flex: 0 0 30%; }
  .videos__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 1rem;
    gap: 0;
    box-shadow: var(--shadow-md);
    max-height: 80vh;
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .nav__links.open { display: flex; }

  /* Nav solid halten, während Mobile-Menü offen ist (sonst sind die X-Striche auf Hero-Video sichtbar, das Menü darunter aber weiß) */
  .nav:has(.nav__links.open) {
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
  }
  .nav:has(.nav__links.open) .nav__logo img {
    filter: none;
  }
  .nav:has(.nav__links.open) .nav__toggle span {
    background: var(--color-text);
  }

  .nav__links a {
    color: var(--color-text) !important;
    padding: 0.85rem 1rem;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
    font-size: 1rem;
    min-height: 48px;
    display: flex;
    align-items: center;
  }

  .nav__links a.nav__cta {
    background: var(--color-red) !important;
    color: #fff !important;
    border-radius: var(--radius-full);
    margin-top: 0.5rem;
    border-bottom: none;
    text-align: center;
    justify-content: center;
  }

  .nav__logo img {
    height: 36px;
  }

  .nav.scrolled .nav__logo img {
    height: 30px;
  }

  .nav__toggle {
    display: flex;
    min-width: 48px;
    min-height: 48px;
    align-items: center;
    justify-content: center;
  }

  .nav__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .nav__toggle.active span:nth-child(2) { opacity: 0; }
  .nav__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero {
    min-height: 100vh;
    min-height: 100svh;
  }

  .hero__content {
    padding: 5rem 1.25rem 3rem;
  }

  .hero__tagline {
    font-size: 0.78rem;
    margin-bottom: 1.25rem;
  }

  .hero__subtitle {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }

  .hero__scroll-hint {
    bottom: 1.5rem;
  }

  .services-grid,
  .testimonials-grid,
  .storage-cards { grid-template-columns: 1fr; }

  .service-card { padding: 1.75rem 1.5rem; }

  .about-personal__intro { grid-template-columns: 1fr; gap: 2rem; }
  .contact__grid { grid-template-columns: 1fr; }

  .about-personal__badge {
    bottom: -10px;
    right: 10px;
    width: 85px;
    height: 85px;
  }
  .about-personal__badge-year { font-size: 1.6rem; }

  .about-personal__highlights { grid-template-columns: 1fr; }

  .timeline__item { flex: 0 0 45%; }

  .videos__grid { grid-template-columns: 1fr; }
  .storage__photos { grid-template-columns: 1fr; }

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

  .contact__form-wrapper { padding: 1.5rem; }

  .storage-card { padding: 2rem 1.5rem; }

  .storage-card__amount { font-size: 2rem; }

  /* Hide hover images on mobile */
  .equip-hover-img { display: none !important; }

  /* Equipment table → card layout on mobile */
  .equipment-table thead { display: none; }
  .equipment-table,
  .equipment-table tbody,
  .equipment-table tr,
  .equipment-table td {
    display: block;
    width: 100%;
  }
  .equipment-table tr {
    padding: 1rem 1.2rem;
    border-bottom: 1px solid var(--color-border-light);
  }
  .equipment-table td {
    padding: 0.25rem 0;
    border-bottom: none;
    font-size: 0.9rem;
  }
  .equipment-table td::before {
    content: attr(data-label);
    font-weight: 600;
    color: var(--color-dark);
    display: inline-block;
    min-width: 140px;
    margin-right: 0.5rem;
  }
  .equipment-table td:first-child {
    font-weight: 600;
    color: var(--color-dark);
    font-size: 0.95rem;
    padding-bottom: 0.35rem;
  }
  .equipment-table td:first-child::before { display: none; }

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

  .footer__bottom { flex-direction: column; text-align: center; }

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

  .values-bar__grid { grid-template-columns: 1fr 1fr; gap: 1rem; }

  /* Buttons: bessere Touch-Targets */
  .btn { padding: 0.95rem 2rem; min-height: 48px; }

  .cta { padding: 3.5rem 0; }

  .page-hero { padding: 6.5rem 0 3rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .section { padding: 3rem 0; }
  .motto__text { font-size: 1rem; }
  .hero { min-height: 100vh; min-height: 100svh; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { justify-content: center; }
  .cta__actions { flex-direction: column; align-items: stretch; }
  .cta__actions .btn { justify-content: center; }
  .values-bar__grid { grid-template-columns: 1fr; }
  .timeline__item { flex: 0 0 100%; }
  .storage__advantages { grid-template-columns: 1fr; }
  .page-hero { padding: 5.5rem 0 2.5rem; }
  .page-hero h1 { font-size: 1.6rem; }
  .contact__form-wrapper { padding: 1.25rem; }
  .section-header { margin-bottom: 2rem; }
}
