:root {
  --bg-dark: #120f10;
  --bg-dark-2: #1a1514;
  --bg-light: #f8f1ea;
  --bg-light-2: #fffaf6;

  --surface-dark: rgba(31, 24, 22, 0.76);
  --surface-dark-strong: rgba(36, 28, 25, 0.92);
  --surface-light: rgba(255, 255, 255, 0.78);
  --surface-light-strong: rgba(255, 255, 255, 0.94);

  --text-light: #f8f0e7;
  --text-dark: #241c18;
  --muted-light: #dbc8b8;
  --muted-dark: #6f6258;

  --line-light: rgba(255, 255, 255, 0.1);
  --line-dark: rgba(36, 28, 24, 0.08);

  --accent: #c79b6d;
  --accent-dark: #8e6748;
  --accent-soft: #ebdac8;

  --success: #25d366;
  --success-dark: #1da851;

  --shadow-soft: 0 14px 34px rgba(18, 15, 16, 0.08);
  --shadow-medium: 0 24px 60px rgba(18, 15, 16, 0.12);
  --shadow-strong: 0 42px 110px rgba(18, 15, 16, 0.2);

  --radius-sm: 16px;
  --radius: 28px;
  --radius-lg: 42px;
  --radius-xl: 56px;

  --container: 1260px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text-dark);
  line-height: 1.7;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.86), transparent 26%),
    radial-gradient(circle at bottom right, rgba(235, 218, 200, 0.24), transparent 28%),
    linear-gradient(180deg, var(--bg-light-2) 0%, var(--bg-light) 46%, #efe3d8 100%);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.container {
  width: min(100% - 44px, var(--container));
  margin: 0 auto;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: -0.02em;
}

/* ticker */

.top-ticker {
  position: relative;
  overflow: hidden;
  height: 42px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, #0f0c0c 0%, #191313 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-light);
  z-index: 140;
}

.ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  white-space: nowrap;
  min-width: max-content;
  padding-left: 100%;
  animation: tickerMove 28s linear infinite;
  font-size: 0.9rem;
  color: var(--muted-light);
}

.ticker-track span:nth-child(2n) {
  color: var(--accent);
}

@keyframes tickerMove {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 130;
  backdrop-filter: blur(16px);
  background: rgba(18, 15, 16, 0.76);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.22s ease, box-shadow 0.22s ease;
}

.nav-wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
}

.brand-text {
  color: var(--text-light);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  font-size: 0.9rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.main-nav a {
  color: rgba(248, 240, 231, 0.82);
  transition: color 0.18s ease, opacity 0.18s ease;
}

.main-nav a:hover {
  color: #fff;
}

.nav-cta,
.mobile-menu-cta {
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
  transition: transform 0.18s ease;
}

.nav-cta:hover,
.mobile-menu-cta:hover {
  transform: translateY(-1px);
}

.mobile-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-toggle.open span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  padding: 0 22px 20px;
  background: rgba(18, 15, 16, 0.96);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-menu.open {
  display: grid;
  gap: 12px;
}

.mobile-menu a {
  color: var(--text-light);
}

/* social dock */

.social-dock {
  position: fixed;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 125;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.social-dock-toggle {
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  box-shadow: var(--shadow-medium);
  transition: transform 0.18s ease;
}

.social-dock-toggle:hover {
  transform: scale(1.05);
}

.social-dock-links {
  display: grid;
  gap: 10px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.social-dock-links.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.social-link {
  min-width: 58px;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.social-whatsapp {
  background: linear-gradient(180deg, var(--success) 0%, var(--success-dark) 100%);
}

.social-instagram {
  background: linear-gradient(180deg, #d946ef 0%, #9333ea 100%);
}

.social-tiktok {
  background: linear-gradient(180deg, #111111 0%, #2d2d2d 100%);
}

.social-facebook {
  background: linear-gradient(180deg, #3b82f6 0%, #1d4ed8 100%);
}

/* whatsapp float */

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, var(--success) 0%, var(--success-dark) 100%);
  color: #fff;
  font-size: 1.35rem;
  box-shadow: 0 18px 34px rgba(37, 211, 102, 0.28);
  z-index: 126;
  animation: whatsappPulse 3.2s ease-in-out infinite;
}

@keyframes whatsappPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}

/* shared */

.eyebrow,
.section-tag,
.hero-card-kicker,
.contact-panel-kicker {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow,
.hero-card-kicker {
  color: var(--muted-light);
}

.section-tag,
.contact-panel-kicker {
  color: var(--accent-dark);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 600;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-dark) 100%);
  box-shadow: var(--shadow-medium);
}

.btn-secondary {
  color: var(--text-light);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.section-head {
  margin-bottom: 34px;
}

.section-head.center {
  text-align: center;
}

.section-head h2 {
  max-width: 860px;
}

.section-head.center h2,
.section-head.center .section-text {
  margin-left: auto;
  margin-right: auto;
}

.section-head h2,
.highlight-copy h2,
.social-section-copy h2,
.contact-copy h2 {
  font-size: clamp(2rem, 3vw, 3.15rem);
  line-height: 1.04;
}

.section-text {
  max-width: 760px;
  margin: 12px 0 0;
  color: var(--muted-dark);
}

/* hero */

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 116px 0 96px;
  background:
    linear-gradient(180deg, rgba(11, 9, 9, 0.34), rgba(11, 9, 9, 0.58)),
    linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-2) 100%);
  color: var(--text-light);
}

.hero-blur {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(60px);
  opacity: 0.34;
}

.hero-blur-a {
  width: 320px;
  height: 320px;
  top: -40px;
  right: 6%;
  background: rgba(199, 155, 109, 0.32);
}

.hero-blur-b {
  width: 260px;
  height: 260px;
  bottom: 8%;
  left: -60px;
  background: rgba(255, 255, 255, 0.12);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 44px;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(3rem, 6vw, 5.9rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
  max-width: 760px;
}

.hero-text {
  margin: 22px 0 34px;
  max-width: 670px;
  color: var(--muted-light);
  font-size: 1.08rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-features {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-features span {
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--muted-light);
}

.hero-visual {
  position: relative;
  min-height: 740px;
}

.hero-frame {
  position: absolute;
  inset: 0;
  padding: 18px;
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(199, 155, 109, 0.16));
  box-shadow: var(--shadow-strong);
}

.hero-image-main {
  width: 100%;
  height: 100%;
  border-radius: calc(var(--radius-xl) - 8px);
  background:
    linear-gradient(rgba(18, 15, 16, 0.2), rgba(18, 15, 16, 0.16)),
    url("https://images.unsplash.com/photo-1515377905703-c4788e51af15?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
}

.hero-card {
  position: absolute;
  max-width: 250px;
  padding: 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.2);
}

.hero-card strong {
  display: block;
  line-height: 1.35;
}

.hero-card-a {
  top: 24px;
  left: -16px;
}

.hero-card-b {
  right: 12px;
  bottom: 24px;
}

/* brand strip */

.brand-strip {
  padding: 24px 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03)),
    #171211;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.brand-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.brand-pill {
  min-height: 56px;
  padding: 0 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--muted-light);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* services */

.services-section {
  padding: 104px 0;
}

.services-layout {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr 0.92fr;
  gap: 20px;
  grid-template-areas:
    "large small1 imageA"
    "large small2 imageB";
}

.service-panel,
.service-image {
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
}

.service-panel {
  position: relative;
  overflow: hidden;
  padding: 32px 28px;
  background: linear-gradient(180deg, var(--surface-light-strong), var(--surface-light));
  border: 1px solid var(--line-dark);
}

.service-panel::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--accent-dark), var(--accent), transparent);
}

.service-panel-large {
  grid-area: large;
  min-height: 100%;
}

.service-panel:nth-child(2) {
  grid-area: small1;
}

.service-panel:nth-child(3) {
  grid-area: small2;
}

.service-number {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: #fff;
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-dark) 100%);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.service-body h3 {
  font-size: 1.36rem;
  margin-bottom: 12px;
}

.service-body p {
  margin: 0;
  color: var(--muted-dark);
}

.service-image {
  min-height: 260px;
  background-size: cover;
  background-position: center;
}

.service-image-a {
  grid-area: imageA;
  background:
    linear-gradient(rgba(36, 28, 24, 0.12), rgba(36, 28, 24, 0.06)),
    url("https://images.unsplash.com/photo-1522335789203-aabd1fc54bc9?auto=format&fit=crop&w=1400&q=80") center/cover no-repeat;
}

.service-image-b {
  grid-area: imageB;
  background:
    linear-gradient(rgba(36, 28, 24, 0.12), rgba(36, 28, 24, 0.06)),
    url("https://images.unsplash.com/photo-1519823551278-64ac92734fb1?auto=format&fit=crop&w=1400&q=80") center/cover no-repeat;
}

/* highlight */

.highlight-section {
  padding: 104px 0;
  background:
    radial-gradient(circle at left center, rgba(235, 218, 200, 0.18), transparent 26%),
    linear-gradient(180deg, #fffaf6 0%, #f7efe7 100%);
}

.highlight-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: center;
}

.highlight-copy p {
  color: var(--muted-dark);
}

.highlight-copy .section-tag {
  color: var(--accent-dark);
}

.highlight-list {
  margin-top: 22px;
  display: grid;
  gap: 14px;
}

.highlight-item {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line-dark);
  box-shadow: var(--shadow-soft);
}

.highlight-item strong {
  display: block;
  margin-bottom: 6px;
  font-family: Georgia, "Times New Roman", serif;
}

.highlight-item span {
  color: var(--muted-dark);
}

.highlight-visual {
  display: grid;
  gap: 18px;
}

.highlight-card-main {
  min-height: 440px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-strong);
  background:
    linear-gradient(rgba(36, 28, 24, 0.12), rgba(36, 28, 24, 0.06)),
    url("https://images.unsplash.com/photo-1519415943484-9fa1873496d4?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
}

.highlight-quote {
  padding: 24px 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, var(--surface-light-strong), var(--surface-light));
  border: 1px solid var(--line-dark);
  box-shadow: var(--shadow-soft);
}

.highlight-quote p {
  margin: 0;
  color: var(--text-dark);
  font-size: 1.08rem;
  font-family: Georgia, "Times New Roman", serif;
}

/* experience */

.experience-section {
  padding: 104px 0;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.experience-card {
  padding: 30px 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, var(--surface-light-strong), var(--surface-light));
  border: 1px solid var(--line-dark);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.experience-step {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  background: rgba(199, 155, 109, 0.14);
  color: var(--accent-dark);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.experience-card h3 {
  margin-bottom: 10px;
  font-size: 1.22rem;
}

.experience-card p {
  margin: 0;
  color: var(--muted-dark);
}

/* social section */

.social-section {
  padding: 104px 0;
  background:
    linear-gradient(180deg, #fffaf6 0%, #f7efe7 100%);
}

.social-section-box {
  display: grid;
  grid-template-columns: 1fr 0.96fr;
  gap: 28px;
  align-items: center;
  padding: 34px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(235, 218, 200, 0.34) 0%, transparent 28%),
    linear-gradient(180deg, var(--surface-light-strong), rgba(255, 255, 255, 0.82));
  border: 1px solid var(--line-dark);
  box-shadow: var(--shadow-strong);
}

.social-section-copy p {
  margin-top: 14px;
  color: var(--muted-dark);
  max-width: 620px;
}

.social-section-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.social-tile {
  min-height: 88px;
  padding: 0 18px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line-dark);
  box-shadow: var(--shadow-soft);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.social-tile:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

/* contact */

.contact-section {
  padding: 104px 0;
  background:
    linear-gradient(180deg, rgba(23, 18, 17, 0.96), rgba(23, 18, 17, 1));
  color: var(--text-light);
}

.contact-shell {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 28px;
  align-items: center;
}

.contact-copy p {
  margin: 14px 0 22px;
  max-width: 580px;
  color: var(--muted-light);
}

.contact-panel {
  padding: 28px 26px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.contact-panel ul {
  margin: 0;
  padding-left: 20px;
}

.contact-panel li {
  margin-bottom: 10px;
  color: var(--muted-light);
}

/* reveal */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

/* responsive */

@media (max-width: 1180px) {
  .hero-grid,
  .highlight-grid,
  .social-section-box,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .brand-strip-grid,
  .experience-grid {
    grid-template-columns: 1fr 1fr;
  }

  .services-layout {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "large large"
      "small1 imageA"
      "small2 imageB";
  }

  .social-section-links {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 760px) {
  .top-ticker {
    height: 38px;
  }

  .ticker-track {
    font-size: 0.82rem;
    animation-duration: 22s;
  }

  .site-header {
    position: relative;
  }

  .nav-wrap {
    min-height: auto;
    padding: 18px 0;
  }

  .main-nav,
  .nav-cta {
    display: none;
  }

  .mobile-toggle {
    display: inline-block;
  }

  .hero-section,
  .services-section,
  .highlight-section,
  .experience-section,
  .social-section,
  .contact-section {
    padding: 76px 0;
  }

  .hero-copy h1 {
    font-size: clamp(2.25rem, 10vw, 3.9rem);
  }

  .hero-visual {
    min-height: 430px;
  }

  .hero-frame {
    padding: 12px;
    border-radius: 30px;
  }

  .hero-image-main {
    border-radius: 22px;
  }

  .hero-card {
    position: static;
    max-width: none;
    margin-top: 14px;
  }

  .brand-strip-grid,
  .services-layout,
  .experience-grid,
  .social-section-links {
    grid-template-columns: 1fr;
  }

  .services-layout {
    grid-template-areas: none;
  }

  .service-panel,
  .service-image,
  .service-panel-large {
    grid-area: auto;
    min-height: auto;
  }

  .service-image {
    min-height: 220px;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .btn,
  .mobile-menu-cta {
    width: 100%;
  }

  .social-dock {
    right: 10px;
    top: auto;
    bottom: 92px;
    transform: none;
  }

  .whatsapp-float {
    right: 12px;
    bottom: 12px;
  }

  .social-section-box {
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .ticker-track,
  .whatsapp-float {
    animation: none !important;
  }

  .reveal,
  .reveal.reveal-visible {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  * {
    transition: none !important;
  }
}

/* =========================
   TEST14 MOBILE HOTFIX
   ========================= */

/* Wichtig: Inhalte bleiben sichtbar, falls JS ausfällt */
.reveal {
  opacity: 1;
  transform: none;
}

/* Nur wenn JS sauber geladen wurde, werden Reveal-Effekte aktiviert */
.js-reveal-ready .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.js-reveal-ready .reveal.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 760px) {
  .top-ticker {
    height: 36px;
  }

  .ticker-track {
    font-size: 0.78rem;
    gap: 12px;
    animation-duration: 20s;
  }

  .site-header {
    position: relative;
  }

  .nav-wrap {
    min-height: auto;
    padding: 14px 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .brand {
    max-width: calc(100% - 60px);
  }

  .brand-text {
    font-size: 0.74rem;
    line-height: 1.1;
    white-space: normal;
  }

  .main-nav,
  .nav-cta {
    display: none !important;
  }

  .mobile-toggle {
    display: inline-block;
    flex: 0 0 auto;
  }

  .mobile-menu {
    padding: 14px 0 18px;
  }

  .mobile-menu.open {
    display: grid;
    gap: 10px;
  }

  .mobile-menu a {
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.05);
  }

  .mobile-menu-cta {
    width: 100%;
  }

  .hero-section,
  .services-section,
  .highlight-section,
  .experience-section,
  .social-section,
  .contact-section {
    padding: 68px 0;
  }

  .hero-grid,
  .highlight-grid,
  .social-section-box,
  .contact-shell {
    grid-template-columns: 1fr !important;
  }

  .hero-copy h1 {
    font-size: clamp(2.2rem, 10vw, 3.7rem);
  }

  .hero-visual {
    min-height: 420px;
  }

  .hero-frame {
    padding: 12px;
    border-radius: 30px;
  }

  .hero-image-main {
    border-radius: 22px;
  }

  .hero-card {
    position: static;
    max-width: none;
    margin-top: 14px;
  }

  .brand-strip-grid,
  .experience-grid,
  .social-section-links {
    grid-template-columns: 1fr;
  }

  .services-layout {
    grid-template-columns: 1fr !important;
    grid-template-areas: none !important;
  }

  .service-panel,
  .service-panel-large,
  .service-image {
    grid-area: auto !important;
    min-height: auto;
  }

  .service-image {
    min-height: 220px;
  }

  .social-section-box {
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 28px;
  }

  /* Auf dem Handy Social-Buttons direkt sichtbar statt kaputtes Plus-Menü */
  .social-dock {
    left: 12px;
    right: 12px;
    top: auto;
    bottom: 82px;
    transform: none;
    display: block;
  }

  .social-dock-toggle {
    display: none;
  }

  .social-dock-links {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: none !important;
  }

  .social-link {
    min-width: 0;
    width: 100%;
    min-height: 44px;
    padding: 0 8px;
    font-size: 0.72rem;
  }

  .whatsapp-float {
    right: 12px;
    bottom: 12px;
    width: 54px;
    height: 54px;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}

/* =========================
   TEST14 MOBILE CLEAN FIX
   ========================= */

@media (max-width: 760px) {
  .social-dock,
  .whatsapp-float {
    display: none !important;
  }

  .top-ticker {
    height: 34px;
  }

  .ticker-track {
    font-size: 0.74rem;
    gap: 10px;
    animation-duration: 18s;
  }

  .hero-section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .hero-copy h1 {
    font-size: clamp(2rem, 9vw, 3.2rem);
    line-height: 0.96;
  }

  .hero-text {
    font-size: 1rem;
    line-height: 1.55;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-features {
    margin-top: 18px;
  }

  .hero-features span {
    font-size: 0.82rem;
    padding: 8px 12px;
  }

  .brand-strip-grid,
  .experience-grid,
  .social-section-links {
    grid-template-columns: 1fr !important;
  }

  .services-layout {
    grid-template-columns: 1fr !important;
    grid-template-areas: none !important;
  }

  .service-panel,
  .service-panel-large,
  .service-image {
    grid-area: auto !important;
  }

  .service-image {
    min-height: 220px;
  }

  .social-section-box,
  .contact-shell {
    grid-template-columns: 1fr !important;
  }
}