/* ============================================================
   motiviart – Stylesheet v2
   Brand Color: #8a2be2 (BlueViolet)
   ============================================================ */

/* Fonts werden per <link> im HTML geladen – kein @import hier */

:root {
  --bg:           #16161a;
  --surface:      #1f1f25;
  --surface2:     #28282f;
  --border:       #3a3a42;
  --border-light: #54545e;
  --accent:       #8a2be2;
  --accent-hover: #9d45f5;
  --accent-dim:   rgba(138,43,226,.15);
  --accent-glow:  rgba(138,43,226,.32);
  --text:         #f0f0f2;
  --text-muted:   #c4c4cf;
  --text-dim:     #7a7a88;
  --radius:       0px;
  --section:      clamp(5.5rem, 11vw, 10rem);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', 'Helvetica Neue', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.6;
  position: relative;
}

/* Subtile Grain-Textur über der ganzen Seite */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}
@media (prefers-reduced-motion: reduce) {
  body::before { display: none; }
  .about-seal-halo,
  .about-seal-spark,
  .about-seal-mark,
  .about-seal-draw-path,
  .about-seal-dot-appear,
  .about-seal-dot-breathe,
  .about-seal-ripple { animation: none !important; }
  .about-seal-mark { fill-opacity: 1; }
  .about-seal-draw-path { stroke-dashoffset: 0; }
  .about-seal-dot-appear { opacity: 1; transform: scale(1); }
  .about-seal-ripple { opacity: 0; }
}

/* ── Typography ── */
h1, h2, h3 {
  font-family: 'Clash Display', 'Inter', sans-serif;
  line-height: 1.04;
  letter-spacing: -0.02em;
  font-weight: 600;
}
h1 { font-size: clamp(3rem, 7.5vw, 7.5rem); font-weight: 600; }
h2 { font-size: clamp(2.2rem, 4.5vw, 4rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); font-weight: 600; }
p  { color: var(--text-muted); max-width: 58ch; line-height: 1.7; }
a  { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: min(100%, 1280px);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3.5rem);
}

/* ── Utilities ── */
.label {
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 500;
}
.accent-text { color: var(--accent); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .875rem 1.875rem;
  border-radius: 2px;
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .02em;
  cursor: pointer;
  transition: all .22s ease;
  border: 1.5px solid transparent;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.08);
  opacity: 0;
  transition: opacity .2s;
}
.btn-primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 8px 30px var(--accent-glow); }
.btn-primary:hover::after { opacity: 1; }
.btn-outline {
  background: transparent;
  color: var(--text-muted);
  border-color: var(--border-light);
}
.btn-outline:hover { border-color: var(--accent); color: var(--text); transform: translateY(-2px); }
.btn svg { width: 14px; height: 14px; transition: transform .2s; flex-shrink: 0; }
.btn:hover svg { transform: translateX(3px); }

/* ── Nav ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 1.375rem 0;
  transition: all .3s ease;
}
.nav.scrolled {
  background: rgba(9,9,11,.9);
  backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }

/* Logo SVG in nav */
.nav-logo {
  display: flex;
  align-items: center;
  height: 28px;
}
.nav-logo img,
.nav-logo svg {
  height: 100%;
  width: auto;
}
/* Logo-Farben kommen aus den inline fill-Attributen im SVG
   (motivi = weiss, art. = lila #8a2be2). Kein CSS-Override, sonst
   würde alles einfarbig überschrieben. */

.nav-links { display: flex; align-items: center; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-size: .825rem;
  font-weight: 500;
  color: var(--text-dim);
  letter-spacing: .01em;
  transition: color .2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -.25rem;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { margin-left: .75rem; }

/* Burger */
.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: .25rem; }
.burger span { display: block; width: 22px; height: 1.5px; background: var(--text); transition: all .3s; }
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.burger.open span:nth-child(2) { opacity: 0; transform: translateX(-6px); }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* Mobile menu — komplett neu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 300;
  flex-direction: column;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }

/* Header mit Logo + Close */
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 1.5rem;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.mobile-logo-text {
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: -.06em;
  color: var(--text);
}
.mobile-logo-text span { color: var(--accent); }
.mobile-close {
  background: none;
  border: 1px solid var(--border);
  color: var(--text-muted);
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s, color .2s;
}
.mobile-close:hover { border-color: var(--accent); color: var(--text); }

/* Nav-Links */
.mobile-nav {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.5rem;
}
.mobile-nav a {
  font-family: 'Clash Display', 'Inter', sans-serif;
  font-size: clamp(2.15rem, 8.2vw, 3.35rem);
  font-weight: 600;
  color: rgba(232,229,234,.72);
  letter-spacing: -.025em;
  line-height: 1.08;
  padding: .65rem 0;
  border-bottom: 1px solid var(--border);
  transition: color .2s, padding-left .25s;
  display: block;
}
.mobile-nav a:first-child { border-top: 1px solid var(--border); }
.mobile-nav a:hover, .mobile-nav a.active { color: var(--text); padding-left: .4rem; }

/* Footer-CTA */
.mobile-menu-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}
.mobile-menu-footer .btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  width: 100%;
  font-size: 1rem;
  padding: 1rem 1.5rem;
  font-weight: 700;
}

/* ── Hero ── */
.hero {
  min-height: 100svh;
  display: grid;
  grid-template-rows: 1fr auto;
  padding-top: 5rem;
  position: relative;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: end;
  padding-block: clamp(4rem, 8vw, 7rem) clamp(3rem, 5vw, 5rem);
}
.hero-left { padding-right: 2rem; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 2rem;
}
.hero-eyebrow-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent-glow);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 8px var(--accent-glow); transform: scale(1); }
  50%      { box-shadow: 0 0 20px var(--accent); transform: scale(1.15); }
}
.hero-eyebrow span { font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--text-dim); }

.hero h1 { margin-bottom: 1.5rem; }
.hero h1 em { font-style: italic; color: var(--accent); display: block; }
.hero-sub {
  font-size: clamp(.95rem, 1.4vw, 1.1rem);
  max-width: 48ch;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .875rem; align-items: center; }

/* Hero right: icon visual */
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-icon-wrap {
  position: relative;
  width: clamp(200px, 28vw, 380px);
  aspect-ratio: 1;
}
.hero-icon-wrap::before {
  content: '';
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle, rgba(138,43,226,.18) 0%, transparent 65%);
  animation: breathe 4s ease-in-out infinite;
}
.hero-icon-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 70%, rgba(138,43,226,.3) 100%);
  animation: spin 8s linear infinite;
}
.hero-icon-wrap img {
  width: 100%; height: 100%;
  position: absolute;
  top: 0; left: 0;
  z-index: 1;
  border-radius: 50%;
}
.hero-icon-wrap .icon-dark {
  animation: iconSwitch 9s ease-in-out infinite;
}
.hero-icon-wrap .icon-light {
  animation: iconSwitch 9s ease-in-out infinite reverse;
}
@keyframes iconSwitch {
  0%, 38%  { opacity: 1; }
  48%, 90% { opacity: 0; }
  100%     { opacity: 1; }
}
@keyframes breathe {
  0%,100% { transform: scale(.9); opacity: .7; }
  50%      { transform: scale(1.05); opacity: 1; }
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Hero ticker strip */
.hero-ticker-wrap {
  border-top: 1px solid var(--border);
  padding: 1.25rem 0;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.hero-ticker {
  display: flex;
  gap: 4rem;
  width: max-content;
  animation: ticker 24s linear infinite;
}
.hero-ticker-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-dim);
  white-space: nowrap;
  flex-shrink: 0;
}
.hero-ticker-item::before {
  content: '';
  display: block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
}
@keyframes ticker { to { transform: translateX(-50%); } }

/* ── Why Section ── */
.why {
  padding-block: var(--section);
  position: relative;
}
.why::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border) 20%, var(--border) 80%, transparent);
}
.why-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.why-item {
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  border-left: none;
  position: relative;
  transition: background .25s;
}
.why-item:first-child { border-left: 1px solid var(--border); }
.why-item:hover { background: var(--surface); }
.why-item::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 2px; height: 0;
  background: var(--accent);
  transition: height .3s ease;
}
.why-item:hover::after { height: 100%; }
.why-num {
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: -.05em;
  color: var(--border);
  line-height: 1;
  margin-bottom: 1.5rem;
  transition: color .3s;
}
.why-item:hover .why-num { color: var(--accent-dim); }
.why-item h3 { font-size: 1.05rem; margin-bottom: .6rem; font-weight: 700; }
.why-item p  { font-size: .875rem; max-width: none; }

/* ── Services ── */
.services { padding-block: var(--section); }
.services-header {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.services-header p { max-width: 40ch; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.service-card {
  background: var(--bg);
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  transition: background .25s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--accent), var(--accent-hover));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.service-card:hover { background: var(--surface); }
.service-card:hover::before { transform: scaleX(1); }
.service-num {
  font-size: 5rem;
  font-weight: 900;
  letter-spacing: -.06em;
  color: var(--surface2);
  line-height: .9;
  margin-bottom: 2rem;
  transition: color .3s;
}
.service-card:hover .service-num { color: var(--accent-dim); }
.service-card h3 { font-size: 1.5rem; margin-bottom: .875rem; }
.service-card p  { flex: 1; margin-bottom: 2rem; font-size: .9rem; max-width: none; }
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 2rem;
}
.tag {
  font-size: .65rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .75rem;
  border-radius: 1px;
  background: var(--accent-dim);
  color: var(--accent-hover);
  border: 1px solid rgba(138,43,226,.2);
  font-weight: 500;
}

/* ── Divider ticker ── */
.divider-ticker {
  border-block: 1px solid var(--border);
  padding: 1.125rem 0;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  background: var(--surface);
}
.divider-ticker .hero-ticker { animation-duration: 20s; }

/* ── Process ── */
.process { padding-block: var(--section); position: relative; }
.process::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border) 20%, var(--border) 80%, transparent);
}
.process-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.process-step {
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  border-left: none;
  position: relative;
  transition: background .25s;
}
.process-step:first-child { border-left: 1px solid var(--border); }
.process-step:hover { background: var(--surface); }
.process-step-num {
  font-size: 5rem;
  font-weight: 900;
  letter-spacing: -.06em;
  color: var(--surface2);
  line-height: .9;
  margin-bottom: 2rem;
  display: block;
  transition: color .3s;
}
.process-step:hover .process-step-num { color: var(--accent-dim); }
.process-step h3 { font-size: 1.1rem; margin-bottom: .6rem; font-weight: 700; }
.process-step p  { font-size: .875rem; max-width: none; }
.process-step-line {
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width .35s ease;
}
.process-step:hover .process-step-line { width: 100%; }

/* ── References (Video-Background) ── */
.references {
  position: relative;
  overflow: hidden;
  min-height: clamp(520px, 65vw, 780px);
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* Iframe 300% — YT-Title/Channel/Controls an den Rändern abgeschnitten */
.references-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.references-video-bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  /* Für 16:9-Video: mindestens 177.78% Breite für Höhe 100%.
     300% stellt sicher, dass YT-UI komplett rausgeschnitten wird */
  width: 300%;
  height: 300%;
  transform: translate(-50%, -50%);
  border: none;
  pointer-events: none;
}

/* Overlay — center dunkel genug um YT-Play-Button zu verdecken, */
/* Ränder heller damit Video sichtbar bleibt */
.references-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 55% 60% at 50% 50%, rgba(10,10,14,.72) 0%, transparent 100%),
    linear-gradient(to bottom, rgba(10,10,14,.55) 0%, rgba(10,10,14,.35) 50%, rgba(10,10,14,.65) 100%);
}

/* Initial-Cover: versteckt YT-Thumbnail+PlayButton bis Video läuft */
.references-cover {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(10,10,14,.85);
  transition: opacity .8s ease;
}
.references-cover.fade-out { opacity: 0; pointer-events: none; }

/* Content über dem Video */
.references-content {
  position: relative;
  z-index: 3;
  width: 100%;
}
.references-inner {
  padding: clamp(5rem, 10vw, 9rem) 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}
.references-text { max-width: 700px; }
.references-text .label { margin-bottom: 1.25rem; }
.references-text h2 { margin-bottom: 1.25rem; }
.references-text p  { max-width: 46ch; font-size: 1.05rem; margin: 0 auto 2.5rem; }
.references-aside {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}

/* ── About ── */
.about { padding-block: var(--section); position: relative; }
.about::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border) 20%, var(--border) 80%, transparent);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
.about-visual {
  position: relative;
  aspect-ratio: 1;
  max-width: 420px;
}
.about-icon {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  overflow: visible;
  filter: drop-shadow(0 0 40px var(--accent-glow));
}

/* Animiertes Signet: zeichnet sich, füllt sich, pulsiert, verblasst, wiederholt sich */
.about-seal-halo {
  position: absolute;
  inset: -15%;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--accent) 0%, transparent 24%, #c13bd6 50%, transparent 76%, var(--accent) 100%);
  filter: blur(48px);
  opacity: .38;
  animation: seal-halo-spin 22s linear infinite;
}
@keyframes seal-halo-spin { to { transform: rotate(360deg); } }

.about-seal-spark {
  position: absolute;
  z-index: 1;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #c13bd6;
  opacity: 0;
  animation: seal-spark-rise 6s ease-in infinite;
}
@keyframes seal-spark-rise {
  0%   { opacity: 0;  transform: translateY(0) scale(.6); }
  15%  { opacity: .9; }
  85%  { opacity: 0; }
  100% { opacity: 0;  transform: translateY(-70px) scale(.3); }
}

.about-seal-disc { fill: var(--surface2); }
.about-seal-rim  { fill: none; stroke: var(--border); stroke-width: 3; }

.about-seal-mark {
  fill: var(--text);
}
.about-seal-draw-path {
  fill: none;
  stroke: #fff;
  stroke-width: 118;
  stroke-linecap: square;
  stroke-linejoin: round;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: seal-cycle 14s cubic-bezier(.65,0,.35,1) infinite;
}
@keyframes seal-cycle {
  0%, 2% { stroke-dashoffset: 1000; }
  22%, 88% { stroke-dashoffset: 0; }
  98%, 100% { stroke-dashoffset: -1000; }
}

.about-seal-dot { fill: var(--accent); }
.about-seal-dot-appear {
  transform-origin: 749px 588px;
  opacity: 0;
  animation: seal-dot-appear 14s cubic-bezier(.65,0,.35,1) infinite;
}
@keyframes seal-dot-appear {
  0%, 29% { opacity: 0; transform: scale(0); }
  31%     { opacity: 1; transform: scale(1.35); }
  34%     { transform: scale(1); }
  88%     { opacity: 1; transform: scale(1); }
  94%     { opacity: 0; transform: scale(0); }
  100%    { opacity: 0; transform: scale(0); }
}
.about-seal-dot-breathe {
  transform-origin: 749px 588px;
  animation: seal-dot-breathe 2.6s ease-in-out infinite;
}
@keyframes seal-dot-breathe {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.08); }
}
.about-seal-ripple {
  fill: none;
  stroke: var(--accent);
  stroke-width: 6;
  transform-origin: 749px 588px;
  opacity: 0;
  animation: seal-ripple 3s ease-out infinite;
}
.about-seal-ripple.r2 { animation-delay: 1.5s; }
@keyframes seal-ripple {
  0%   { opacity: .55; transform: scale(1); }
  100% { opacity: 0;   transform: scale(3.4); }
}
.about-label { display: block; margin-bottom: 1rem; }
.about-content h2 { margin-bottom: 1.25rem; }
.about-content p  { margin-bottom: 1rem; max-width: none; font-size: .95rem; }
.about-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 2.5rem;
}
.about-fact {
  padding: 1.5rem 1.25rem;
  background: var(--bg);
  text-align: center;
}
.about-fact strong {
  display: block;
  font-size: 2.25rem;
  font-weight: 900;
  letter-spacing: -.04em;
  color: var(--accent);
  line-height: 1;
  margin-bottom: .25rem;
}
.about-fact span { font-size: .75rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: .08em; }
.about-actions { margin-top: 2rem; display: flex; gap: .875rem; flex-wrap: wrap; }

/* ── Contact CTA ── */
.contact-cta {
  padding-block: var(--section);
  background: var(--surface);
  position: relative;
  overflow: hidden;
  border-block: 1px solid var(--border);
}
.contact-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(138,43,226,.07) 0%, transparent 60%);
}
.contact-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative; z-index: 1;
}
.contact-cta-inner .label { margin-bottom: 1.5rem; }
.contact-cta-headline {
  font-size: clamp(2.6rem, 6.5vw, 6rem);
  margin-bottom: 2.5rem;
  line-height: 1.02;
}
.contact-cta-headline em {
  font-style: normal;
  color: var(--accent);
}
/* wenn ein Untertitel folgt, kleinerer Abstand zur Headline */
.contact-cta-headline:has(+ .contact-cta-sub) { margin-bottom: 1.5rem; }
.contact-cta-sub {
  max-width: 52ch;
  margin: 0 auto 2.75rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-muted);
}
/* grosse Mail als Fokuspunkt */
.contact-cta-mail {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(1.3rem, 3vw, 2.2rem);
  font-weight: 500;
  color: var(--text);
  padding-bottom: .35rem;
  margin-bottom: 3rem;
  border-bottom: 2px solid var(--border-light);
  transition: color .25s, border-color .25s, gap .25s;
}
.contact-cta-mail svg {
  width: clamp(20px, 2.5vw, 30px);
  height: clamp(20px, 2.5vw, 30px);
  transition: transform .25s;
}
.contact-cta-mail:hover {
  color: var(--accent);
  border-color: var(--accent);
  gap: 1.25rem;
}
.contact-cta-mail:hover svg { transform: translateX(4px); }
.contact-cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

/* ── Contact Page ── */
.contact-page { padding-block: var(--section); }
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(2rem, 7vw, 6rem);
  align-items: start;
}
.contact-info h2 { margin-bottom: 1rem; }
.contact-info p  { max-width: none; margin-bottom: 2.5rem; font-size: .95rem; }
.contact-details { display: flex; flex-direction: column; gap: 1px; background: var(--border); border: 1px solid var(--border); }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--bg);
  font-size: .875rem;
  transition: background .2s;
}
.contact-detail:hover { background: var(--surface); }
.contact-detail-icon {
  width: 2.25rem; height: 2.25rem;
  background: var(--accent-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: .8rem;
  color: var(--accent-hover);
}
.contact-detail a { color: var(--text-muted); transition: color .2s; }
.contact-detail a:hover { color: var(--accent); }

/* ── iPad Device Frame ── */
.ipad-device {
  border-radius: 2.25rem;
  border: 7px solid #212128;
  box-shadow:
    0 0 0 1.5px rgba(255,255,255,.07),
    0 0 0 2.5px rgba(0,0,0,.4),
    0 40px 90px rgba(0,0,0,.55),
    inset 0 1px 0 rgba(255,255,255,.1);
  overflow: hidden;
  background: var(--surface);
}
.ipad-statusbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .6rem 1.5rem;
  background: var(--bg);
  border-bottom: 1px solid rgba(255,255,255,.05);
  font-size: .68rem;
  letter-spacing: .06em;
  color: rgba(255,255,255,.28);
  font-family: 'Inter', sans-serif;
}
.ipad-statusbar-url {
  display: flex;
  align-items: center;
  gap: .4rem;
}
.ipad-statusbar-icons {
  display: flex;
  gap: .6rem;
  align-items: center;
}
.ipad-home-bar-wrap {
  display: flex;
  justify-content: center;
  padding: .875rem;
  background: var(--surface);
}
.ipad-home-bar {
  width: 100px;
  height: 4px;
  border-radius: 4px;
  background: rgba(255,255,255,.16);
}

/* Form */
.contact-form-wrap {
  background: var(--surface);
  padding: clamp(2rem, 4vw, 3.5rem);
}
.ipad-device .contact-form-wrap {
  border: none;
}
.form-group { margin-bottom: 1.625rem; }
.form-group label {
  display: block;
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: .625rem;
  font-weight: 500;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: .9375rem 1.125rem;
  color: var(--text);
  font-size: .9rem;
  font-family: inherit;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2352525b' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.125rem center;
  padding-right: 2.75rem;
}
.form-error { font-size: .76rem; color: #f87171; margin-top: .375rem; display: none; }
.form-error.visible { display: block; }
.form-submit-area { margin-top: .5rem; }
.form-hint { font-size: .76rem; color: var(--text-dim); max-width: none; margin-top: 1rem; }
.form-success {
  display: none;
  align-items: center;
  gap: .875rem;
  padding: 1.125rem 1.375rem;
  background: rgba(138,43,226,.08);
  border: 1px solid rgba(138,43,226,.25);
  border-radius: 2px;
  color: var(--accent-hover);
  font-size: .9rem;
  font-weight: 500;
  margin-top: 1.25rem;
}
.form-success.visible { display: flex; }

/* ── Page Header ── */
.page-header {
  padding-top: calc(5rem + 5vw);
  padding-bottom: clamp(3.5rem, 7vw, 6rem);
  position: relative;
  overflow: hidden;
}
.page-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border) 20%, var(--border) 80%, transparent);
}
.page-header-inner { max-width: 800px; }
.page-header .label { display: block; margin-bottom: 1.25rem; }
.page-header h1 { margin-bottom: 1.25rem; }
.page-header p { font-size: clamp(1rem, 1.5vw, 1.2rem); max-width: 55ch; }
.page-header-bg {
  position: absolute;
  top: -30%; right: -10%;
  width: 40vw; height: 80vh;
  background: radial-gradient(circle, rgba(138,43,226,.08) 0%, transparent 65%);
  pointer-events: none;
}

/* ── Dienstleistungen ── */
.service-detail { padding-block: var(--section); }
.service-detail + .service-detail {
  border-top: 1px solid var(--border);
}
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
.service-detail-grid.reverse { direction: rtl; }
.service-detail-grid.reverse > * { direction: ltr; }
.service-detail-visual {
  background: linear-gradient(145deg, var(--surface) 0%, var(--surface2) 100%);
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1.5rem, 4vw, 3rem);
  position: relative;
  overflow: hidden;
}
.service-detail-visual::before {
  content: '';
  position: absolute;
  bottom: -30%; right: -20%;
  width: 80%; height: 80%;
  background: radial-gradient(circle, rgba(138,43,226,.18) 0%, transparent 65%);
}
.service-detail-visual svg {
  width: 100%;
  height: auto;
  max-height: 100%;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.4));
}
.service-detail-content .label { display: block; margin-bottom: .875rem; }
.service-detail-content h2 { margin-bottom: 1.125rem; }
.service-detail-content p  { margin-bottom: 1rem; max-width: none; font-size: .95rem; }
.service-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 2.5rem;
}
.service-list li {
  font-size: .875rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: .875rem;
  padding: .875rem 0;
  border-top: 1px solid var(--border);
  transition: color .2s;
}
.service-list li:hover { color: var(--text); }
.service-list li::before {
  content: '';
  width: 18px;
  height: 1.5px;
  background: var(--accent);
  flex-shrink: 0;
  opacity: .75;
}
@media (max-width: 600px) {
  .service-list { grid-template-columns: 1fr; }
}

/* Final homepage responsive overrides (kept after shared page rules). */
@media (max-width: 900px) {
  .home .hero-right { display: flex; }
}

/* v3 cascade lock: these homepage rules intentionally come last. */
.home .hero { min-height: 860px; padding-top: 5.5rem; }
.home .hero-inner {
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, .82fr);
  gap: clamp(2rem, 5vw, 5rem);
  min-height: 720px;
  padding-block: clamp(4rem, 8vw, 6.5rem);
  align-items: center;
}
.home .hero-left { min-width: 0; padding-right: 0; }
.home .hero h1 {
  max-width: none;
  margin: 0 0 2rem;
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  font-size: clamp(3.8rem, 5.8vw, 6rem);
  font-weight: 800;
  line-height: .92;
  letter-spacing: -.065em;
  word-spacing: .05em;
}
.home .hero h1 > span { display: block; }
.home .hero h1 em {
  display: inline;
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  font-style: italic;
  letter-spacing: -.055em;
}
.home .hero-sub { max-width: 46ch; color: #c8c8d0; }
.hero-artboard { width: min(36vw, 470px); transform: rotate(1.5deg); }
.home .hero-ticker-wrap { transform: none; }

.home .why { padding-block: clamp(5rem, 9vw, 8rem); background: var(--surface); color: var(--text); }
.home .why p { color: #b9b9c3; }
.home .why-header { grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr); }
.home .why h2 {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.055em;
}
.home .why-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-block: 1px solid var(--border);
}
.home .why-item,
.home .why-item:nth-child(2),
.home .why-item:nth-child(4) {
  min-height: 300px;
  padding: 2.25rem;
  border: 0;
  border-right: 1px solid var(--border);
  background: transparent;
  transform: none;
}
.home .why-item:last-child { border-right: 0; }
.home .why-item:hover,
.home .why-item:nth-child(2):hover,
.home .why-item:nth-child(4):hover { color: var(--text); background: var(--bg); transform: none; }
.home .why-item p, .home .why-item:hover p { color: #aaaab5; }
.home .why-item::after { display: none; }
.home .why-num {
  color: #5d5d68;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: .08em;
}
.home .services-grid { gap: 1rem; align-items: stretch; }
.home .service-card,
.home .service-card:nth-child(2),
.home .service-card:nth-child(3) { min-height: 500px; margin-top: 0; }
.home .service-num { font-family: 'Inter', sans-serif; font-style: normal; font-weight: 700; }

@media (max-width: 1024px) {
  .home .hero { min-height: auto; }
  .home .hero-inner { grid-template-columns: minmax(0, 1fr) 300px; min-height: 660px; }
  .home .hero h1 { font-size: clamp(3.7rem, 6.2vw, 4.3rem); }
  .hero-artboard { width: 290px; }
  .home .why-header { grid-template-columns: 1fr; }
  .home .service-card,
  .home .service-card:nth-child(2),
  .home .service-card:nth-child(3) { min-height: 0; }
}
@media (max-width: 760px) {
  .home .hero { min-height: auto; padding-top: 4.5rem; }
  .home .hero::before { display: none; }
  .home .hero-inner { display: block; min-height: 0; padding-block: 4.25rem 3.5rem; }
  .home .hero-right { display: none; }
  .home .hero h1 { font-size: clamp(3.25rem, 14.2vw, 5rem); line-height: .94; }
  .home .why-grid { grid-template-columns: 1fr; }
  .home .why-item,
  .home .why-item:nth-child(2),
  .home .why-item:nth-child(4) {
    min-height: 0;
    padding: 2rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }
  .home .why-item:last-child { border-bottom: 0; }
  .home .why-num { margin-bottom: 2.5rem; }
}
@media (max-width: 430px) {
  .home .hero h1 { font-size: clamp(2.9rem, 13.4vw, 3.7rem); }
  .home .hero-actions { align-items: stretch; }
  .home .hero-actions .btn { width: 100%; justify-content: center; }
}

/* Helpful, indexable FAQ content on the services page. */
.faq-section {
  padding-block: var(--section);
  border-top: 1px solid var(--border);
}
.faq-header {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.faq-header h2 {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 1;
  letter-spacing: -.05em;
}
.faq-list {
  border-top: 1px solid var(--border-light);
}
.faq-list details {
  border-bottom: 1px solid var(--border-light);
}
.faq-list summary {
  position: relative;
  padding: 1.5rem 3.5rem 1.5rem 0;
  color: var(--text);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '+';
  position: absolute;
  right: .5rem;
  top: 50%;
  color: var(--accent);
  font-size: 1.5rem;
  font-weight: 400;
  transform: translateY(-50%);
}
.faq-list details[open] summary::after { content: '−'; }
.faq-list details p {
  max-width: 64ch;
  padding: 0 3.5rem 1.5rem 0;
}
@media (max-width: 760px) {
  .faq-header { grid-template-columns: 1fr; }
  .faq-list summary { padding-right: 2.5rem; }
}

/* One readable type system across every page. */
h1, h2, h3, .acc-name, .acc-heading {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
}

/* Shared editorial signature for the main inner pages. */
.inner-page .page-header {
  min-height: 76svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
    var(--bg);
  background-size: 72px 72px;
}
.inner-page .page-header::before {
  content: 'CHUR / 46.8508° N';
  position: absolute;
  right: clamp(1.25rem, 5vw, 4rem);
  top: 8rem;
  font-size: .62rem;
  letter-spacing: .16em;
  color: var(--text-dim);
  writing-mode: vertical-rl;
}
.inner-page .page-header::after {
  content: '';
  position: absolute;
  right: -8vw;
  bottom: -16vw;
  width: min(52vw, 660px);
  aspect-ratio: 1;
  height: auto;
  border: clamp(2rem, 5vw, 5rem) solid var(--accent);
  border-radius: 50%;
  opacity: .9;
  background: none;
}
.inner-page .page-header-inner {
  position: relative;
  z-index: 2;
  max-width: 1080px;
  padding-bottom: clamp(4rem, 8vw, 7rem);
}
.inner-page .page-header h1 {
  max-width: 11ch;
  font-size: clamp(4rem, 9.5vw, 9rem);
  line-height: .86;
  letter-spacing: -.065em;
}
.inner-page .page-header h1 em {
  color: var(--accent);
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  font-style: italic;
}
.inner-page .page-header .label::before {
  content: '+ ';
  color: var(--accent);
}
.inner-page .page-header-bg { display: none; }

@media (max-width: 600px) {
  .inner-page .page-header { min-height: 70svh; }
  .inner-page .page-header h1 { font-size: clamp(3.4rem, 17vw, 5.2rem); }
  .inner-page .page-header::after { width: 75vw; right: -35vw; bottom: -15vw; }
}

/* ============================================================
   Revision v3 — clarity, readable type and robust breakpoints
   ============================================================ */
body {
  font-size: 16px;
  line-height: 1.65;
}
p { color: #b9b9c3; line-height: 1.7; }
h1, h2, h3,
.acc-name, .acc-heading {
  text-wrap: balance;
}
.container {
  width: min(100%, 1320px);
  padding-inline: clamp(1.25rem, 4vw, 3.25rem);
}
.label { color: #9595a2; }

/* Home hero */
.home .hero {
  min-height: 860px;
  padding-top: 5.5rem;
}
.home .hero::before { opacity: .45; }
.home .hero-inner {
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, .82fr);
  gap: clamp(2rem, 5vw, 5rem);
  min-height: 720px;
  padding-block: clamp(4rem, 8vw, 6.5rem);
  align-items: center;
}
.home .hero-left {
  min-width: 0;
  padding-right: 0;
}
.home .hero h1 {
  max-width: none;
  margin: 0 0 2rem;
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  font-size: clamp(4.1rem, 7.1vw, 7.2rem);
  font-weight: 800;
  line-height: .92;
  letter-spacing: -.065em;
  word-spacing: .05em;
}
.home .hero h1 > span,
.inner-page .page-header h1 > span {
  display: block;
}
.home .hero h1 em {
  display: inline;
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  font-style: italic;
  letter-spacing: -.055em;
}
.home .hero-sub {
  max-width: 46ch;
  margin-bottom: 2.25rem;
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  color: #c8c8d0;
}
.home .hero-actions { gap: .75rem; }
.home .hero-actions .btn { min-height: 52px; }
.hero-footnote { color: #8e8e9b; }
.hero-artboard {
  width: min(36vw, 470px);
  transform: rotate(1.5deg);
  box-shadow: 1.25rem 1.25rem 0 rgba(255,255,255,.035);
}
.home .hero-ticker-wrap { transform: none; }

/* A calm value section instead of the anti-baukasten. */
.home .why {
  padding-block: clamp(5rem, 9vw, 8rem);
  background: var(--surface);
  color: var(--text);
}
.home .why p { color: #b9b9c3; }
.home .why .label { color: #92929f; }
.home .why-header {
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  gap: clamp(2rem, 6vw, 6rem);
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.home .why h2 {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.055em;
}
.home .why h2 em {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
}
.home .why-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.home .why-item,
.home .why-item:nth-child(2),
.home .why-item:nth-child(4) {
  min-height: 300px;
  padding: 2.25rem;
  border: 0;
  border-right: 1px solid var(--border);
  background: transparent;
  transform: none;
}
.home .why-item:last-child { border-right: 0; }
.home .why-item:hover,
.home .why-item:nth-child(2):hover,
.home .why-item:nth-child(4):hover {
  color: var(--text);
  background: var(--bg);
  transform: none;
}
.home .why-item p,
.home .why-item:hover p { color: #aaaab5; }
.home .why-item::after { display: none; }
.home .why-num {
  color: #5d5d68;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: .08em;
}
.home .why-item h3 {
  margin-bottom: .75rem;
  font-size: 1.2rem;
}

/* Services keep a strong rhythm without stepped cards. */
.home .services-grid { gap: 1rem; align-items: stretch; }
.home .service-card,
.home .service-card:nth-child(2),
.home .service-card:nth-child(3) {
  min-height: 500px;
  margin-top: 0;
}
.home .service-num {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 700;
}

/* Inner page headers: large, but never behind decoration. */
.inner-page .page-header {
  min-height: 680px;
  padding-top: 6rem;
  align-items: center;
}
.inner-page .page-header::before { top: 7.5rem; }
.inner-page .page-header::after {
  right: clamp(1.25rem, 5vw, 5rem);
  bottom: auto;
  top: 50%;
  width: clamp(160px, 24vw, 340px);
  height: clamp(160px, 24vw, 340px);
  border: 1px solid rgba(155,77,255,.55);
  background: rgba(155,77,255,.035);
  transform: translateY(-50%);
  opacity: 1;
}
.inner-page .page-header-inner {
  max-width: min(72vw, 980px);
  padding-block: clamp(4rem, 8vw, 7rem);
}
.inner-page .page-header h1 {
  max-width: none;
  margin-bottom: 1.5rem;
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  font-size: clamp(4.2rem, 8vw, 7.8rem);
  font-weight: 800;
  line-height: .92;
  letter-spacing: -.065em;
}
.inner-page .page-header h1 em {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
}
.inner-page .page-header p {
  max-width: 48ch;
  color: #c5c5ce;
  font-size: clamp(1rem, 1.35vw, 1.15rem);
}
.about-page .page-header::after {
  border-color: var(--accent);
  box-shadow: inset 0 0 0 clamp(18px, 3.2vw, 46px) var(--bg);
  background: var(--accent);
}
.story-content p,
.team-card p,
.value-item p { color: #b9b9c3; }

/* Tablet */
@media (max-width: 1024px) {
  .home .hero { min-height: auto; }
  .home .hero-inner {
    grid-template-columns: minmax(0, 1fr) 300px;
    min-height: 660px;
  }
  .home .hero h1 { font-size: clamp(3.8rem, 7.7vw, 5.2rem); }
  .hero-artboard { width: 290px; }
  .home .why-header { grid-template-columns: 1fr; }
  .home .service-card,
  .home .service-card:nth-child(2),
  .home .service-card:nth-child(3) { min-height: 0; }
  .inner-page .page-header-inner { max-width: 78vw; }
  .inner-page .page-header h1 { font-size: clamp(4rem, 9vw, 6rem); }
}

/* Mobile and small tablet */
@media (max-width: 760px) {
  :root { --section: clamp(4.5rem, 16vw, 6rem); }
  .nav { padding: 1rem 0; }
  .nav-logo { height: 24px; max-width: 170px; }
  .home .hero { padding-top: 4.5rem; }
  .home .hero::before { display: none; }
  .home .hero-inner {
    display: block;
    min-height: 0;
    padding-block: 4.25rem 3.5rem;
  }
  .home .hero-right { display: none; }
  .home .hero-eyebrow { margin-bottom: 1.5rem; }
  .home .hero h1 {
    font-size: clamp(3.25rem, 14.2vw, 5rem);
    line-height: .94;
    letter-spacing: -.06em;
  }
  .home .hero-sub { font-size: 1rem; }
  .hero-footnote { margin-top: 1.5rem; }
  .home .hero-ticker-wrap { padding-block: .9rem; }
  .home .why-grid { grid-template-columns: 1fr; }
  .home .why-item,
  .home .why-item:nth-child(2),
  .home .why-item:nth-child(4) {
    min-height: 0;
    padding: 2rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }
  .home .why-item:last-child { border-bottom: 0; }
  .home .why-num { margin-bottom: 2.5rem; }
  .manifest-band { padding-block: 4.5rem; }
  .manifest-band p { font-size: clamp(2rem, 9vw, 3rem); }
  .home .service-card { padding: 2.25rem 1.5rem; }

  .inner-page .page-header {
    min-height: 560px;
    padding-top: 4.5rem;
    align-items: center;
  }
  .inner-page .page-header::before { display: none; }
  .inner-page .page-header::after {
    width: 140px;
    height: 140px;
    right: -55px;
    top: auto;
    bottom: 1.5rem;
    transform: none;
  }
  .inner-page .page-header-inner {
    max-width: 100%;
    padding-block: 4.5rem;
  }
  .inner-page .page-header h1 {
    max-width: 100%;
    font-size: clamp(3.25rem, 14vw, 5rem);
    line-height: .95;
    letter-spacing: -.06em;
  }
  .inner-page .page-header p {
    max-width: min(82%, 38ch);
    font-size: 1rem;
  }
  .contact-info-row { grid-template-columns: 1fr 1fr; }
  .acc-item { padding-left: .5rem; }
  .acc-trigger { grid-template-columns: 2.5rem minmax(0, 1fr) 34px; }
  .acc-name { overflow-wrap: anywhere; }
}

@media (max-width: 430px) {
  .home .hero h1,
  .inner-page .page-header h1 {
    font-size: clamp(2.9rem, 13.4vw, 3.7rem);
    letter-spacing: -.055em;
  }
  .home .hero-actions { align-items: stretch; }
  .home .hero-actions .btn { width: 100%; justify-content: center; }
  .contact-cta-actions { width: 100%; }
  .contact-cta-actions .btn { width: 100%; justify-content: center; }
  .contact-info-row { grid-template-columns: 1fr; }
  .footer-bottom { align-items: flex-start; }
}

/* ── Über uns ── */
.team-section { padding-block: var(--section); }
.team-section-header { margin-bottom: clamp(2.5rem, 5vw, 4.5rem); }
.team-section-header .label { display: block; margin-bottom: 1rem; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.team-card {
  background: var(--bg);
  padding: 3rem 2.5rem;
  transition: background .25s;
  position: relative;
  overflow: hidden;
}
.team-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--accent);
  transition: height .35s ease;
}
.team-card:hover { background: var(--surface); }
.team-card:hover::before { height: 100%; }
.team-avatar {
  width: 3.75rem; height: 3.75rem;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 2px solid rgba(138,43,226,.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.375rem; font-weight: 800; color: var(--accent-hover);
  margin-bottom: 1.5rem;
}
.team-card h3 { font-size: 1.3rem; margin-bottom: .25rem; }
.team-role { font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); margin-bottom: 1rem; font-weight: 500; }
.team-card p { font-size: .9rem; max-width: none; }

/* Subtle role distinction, derived from the service colour system. */
.about-page .team-card {
  --team-colour: 155, 77, 255;
  --team-fill-opacity: .16;
  --team-hover-opacity: .21;
  background: linear-gradient(rgba(var(--team-colour), var(--team-fill-opacity)), rgba(var(--team-colour), var(--team-fill-opacity))), var(--bg);
  box-shadow: inset 0 0 0 1px rgba(var(--team-colour), .08);
}
.about-page .team-card:first-child {
  --team-colour: 235, 72, 139;
  --team-fill-opacity: .17;
  --team-hover-opacity: .22;
}
.about-page .team-card:last-child {
  --team-colour: 88, 118, 255;
  --team-fill-opacity: .16;
  --team-hover-opacity: .21;
}
.about-page .team-card::before { background: rgb(var(--team-colour)); }
.about-page .team-card:hover {
  background: linear-gradient(rgba(var(--team-colour), var(--team-hover-opacity)), rgba(var(--team-colour), var(--team-hover-opacity))), var(--surface);
}
.about-page .team-avatar {
  color: rgb(var(--team-colour));
  border-color: rgba(var(--team-colour), .42);
  background: rgba(var(--team-colour), .11);
}
.about-page .team-role { color: rgb(var(--team-colour)); }

.values-section {
  padding-block: var(--section);
  border-top: 1px solid var(--border);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.value-item {
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  border-left: none;
  transition: background .25s;
}
.value-item:first-child { border-left: 1px solid var(--border); }
.value-item:hover { background: var(--surface); }
.value-num {
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -.05em;
  color: var(--surface2);
  line-height: 1;
  margin-bottom: 1.25rem;
  transition: color .3s;
}
.value-item:hover .value-num { color: var(--accent-dim); }
.value-item h3 { font-size: 1rem; margin-bottom: .5rem; font-weight: 700; }
.value-item p  { font-size: .875rem; max-width: none; }

/* ── Footer ── */
.footer {
  border-top: 1px solid var(--border);
  padding-block: 4rem 2.5rem;
  background: var(--surface);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer-logo {
  height: 24px;
  width: auto;
  margin-bottom: 1.25rem;
  display: block;
}
/* Footer-Logo: Farben aus inline fill-Attributen (kein Override) */
.footer-brand p { font-size: .875rem; max-width: 26ch; line-height: 1.65; }
.footer-col h4 {
  font-size: .68rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--text-dim);
  margin-bottom: 1.5rem; font-weight: 500;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: .75rem; }
.footer-links a { font-size: .875rem; color: var(--text-muted); transition: color .2s; }
.footer-links a:hover { color: var(--text); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 2.5rem; border-top: 1px solid var(--border);
  font-size: .78rem; color: var(--text-dim); flex-wrap: wrap; gap: 1rem;
}
.footer-social { display: flex; gap: .75rem; }
.footer-social a {
  width: 2rem; height: 2rem;
  border: 1px solid var(--border-light);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-dim);
  transition: all .2s;
}
.footer-social a:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-dim); }

/* ── Legal ── */
.legal-page {
  padding-top: calc(6rem + var(--section));
  padding-bottom: var(--section);
}
.legal-page h1 { margin-bottom: 3rem; font-size: clamp(2rem, 4vw, 3rem); }
.legal-page h2 { font-size: 1.2rem; margin-top: 2.5rem; margin-bottom: .75rem; font-weight: 700; letter-spacing: -.01em; }
.legal-page p, .legal-page li { font-size: .9rem; color: var(--text-muted); max-width: 68ch; line-height: 1.75; }
.legal-page ul, .legal-page ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-page li { margin-bottom: .5rem; }
.legal-page a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 900px) {
  .references-inner { grid-template-columns: 1fr; }
}

/* ── Contact page – iPad layout ── */
.contact-page-centered {
  max-width: 720px;
  margin-inline: auto;
}
.contact-info-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 3rem;
}
.contact-info-item {
  background: var(--surface);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .35rem;
  transition: background .2s;
  position: relative;
  overflow: hidden;
}
a.contact-info-item:hover { background: var(--surface2); }
a.contact-info-item:hover .contact-info-icon {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
a.contact-info-item:hover .contact-info-value { color: var(--text); }
.contact-info-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-light);
  color: var(--accent);
  margin-bottom: .75rem;
  transition: background .25s, color .25s, border-color .25s;
}
.contact-info-icon svg { width: 20px; height: 20px; }
.contact-info-label {
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 600;
}
.contact-info-value {
  font-size: .92rem;
  color: var(--text-muted);
  font-weight: 500;
  transition: color .2s;
  word-break: break-word;
}
@media (max-width: 760px) {
  .contact-info-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 440px) {
  .contact-info-row { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .form-name-email-grid { grid-template-columns: 1fr !important; }
}

/* ============================================================
   Homepage art direction — editorial, local, deliberately uneven
   ============================================================ */
.home {
  --accent: #9b4dff;
  --accent-hover: #b277ff;
}

.home .hero {
  min-height: 100svh;
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
    var(--bg);
  background-size: 72px 72px;
}
.home .hero::before {
  content: 'MOTIVIART';
  position: absolute;
  right: -1.5vw;
  top: 12vh;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.05);
  font: 600 clamp(5rem, 15vw, 14rem)/.8 'Clash Display', sans-serif;
  letter-spacing: -.07em;
  writing-mode: vertical-rl;
  pointer-events: none;
}
.home .hero-inner {
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, .88fr);
  align-items: center;
  padding-block: clamp(5rem, 11vh, 8rem) clamp(3rem, 7vh, 5rem);
}
.home .hero-left { position: relative; z-index: 2; }
.home .hero h1 {
  max-width: 9ch;
  font-size: clamp(4rem, 8.3vw, 8.25rem);
  line-height: .84;
  letter-spacing: -.065em;
  margin-bottom: 2rem;
}
.home .hero h1 em {
  display: inline;
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  letter-spacing: -.08em;
}
.home .hero-sub { max-width: 42ch; font-size: clamp(1rem, 1.35vw, 1.15rem); }
.hero-footnote {
  margin-top: 2rem;
  padding-left: 2.5rem;
  position: relative;
  max-width: 42ch;
  color: var(--text-dim);
  font-size: .72rem;
  letter-spacing: .04em;
}
.hero-footnote::before {
  content: '';
  position: absolute;
  left: 0;
  top: .7em;
  width: 1.75rem;
  border-top: 1px solid var(--accent);
}
.home .hero-right { min-height: 530px; }
.hero-artboard {
  width: min(39vw, 500px);
  aspect-ratio: .82;
  position: relative;
  border: 1px solid rgba(255,255,255,.18);
  background: #8a2be2;
  transform: rotate(3.5deg);
  box-shadow: 2rem 2rem 0 rgba(255,255,255,.035);
  overflow: hidden;
}
.hero-artboard::before {
  content: '';
  position: absolute;
  inset: 10%;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%;
}
.hero-artboard::after {
  content: '';
  position: absolute;
  width: 130%;
  height: 1px;
  background: rgba(255,255,255,.35);
  left: -15%;
  top: 50%;
  transform: rotate(-38deg);
}
.home .hero-icon-wrap {
  position: absolute;
  width: 62%;
  left: 19%;
  top: 20%;
  z-index: 2;
}
.home .hero-icon-wrap::before,
.home .hero-icon-wrap::after { display: none; }
.home .hero-icon-wrap img {
  animation: none;
  filter: none;
  transform: rotate(-3.5deg);
}
.artboard-label,
.art-note {
  position: absolute;
  z-index: 3;
  color: rgba(255,255,255,.82);
  font-size: .58rem;
  line-height: 1.35;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.artboard-label { top: 1.25rem; left: 1.25rem; }
.art-note-one { left: 1.25rem; bottom: 1.25rem; }
.art-note-two { right: 1.25rem; bottom: 1.25rem; text-align: right; }
.art-cross { position: absolute; z-index: 3; color: #fff; font: 300 1.5rem/1 monospace; }
.art-cross-one { right: 1.25rem; top: 1.1rem; }
.art-cross-two { left: 8%; top: 48%; }

.home .hero-ticker-wrap {
  background: #f0eadf;
  border: 0;
  mask-image: none;
  transform: rotate(-1.2deg) scale(1.03);
  transform-origin: center;
  position: relative;
  z-index: 4;
}
.home .hero-ticker-item { color: #19171e; font-weight: 700; }
.home .hero-ticker-item::before { border-radius: 0; transform: rotate(45deg); }

.home .why { background: #f0eadf; color: #17151b; padding-top: calc(var(--section) + 1.5rem); }
.home .why p { color: #5b5660; }
.home .why .label { color: #716a75; }
.home .why h2 em { color: var(--accent); font-family: Georgia, serif; font-weight: 400; }
.home .why::before { display: none; }
.home .why-grid { gap: 1rem; align-items: stretch; }
.home .why-item {
  border: 1px solid rgba(23,21,27,.2);
  padding: 2rem;
  background: transparent;
  min-height: 310px;
  display: flex;
  flex-direction: column;
}
.home .why-item:nth-child(2),
.home .why-item:nth-child(4) { transform: translateY(1.5rem); }
.home .why-item:hover { background: #17151b; color: #f0eadf; transform: translateY(-.4rem) rotate(-.6deg); }
.home .why-item:nth-child(2):hover,
.home .why-item:nth-child(4):hover { transform: translateY(1rem) rotate(.6deg); }
.home .why-item:hover p { color: #b9b2bd; }
.home .why-num {
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: rgba(23,21,27,.2);
  margin-bottom: auto;
}
.home .why-item::after { width: 100%; height: 4px; top: auto; bottom: 0; }

.manifest-band {
  position: relative;
  display: grid;
  grid-template-columns: 1fr minmax(0, 3fr) auto;
  gap: 2rem;
  align-items: start;
  padding: clamp(4rem, 8vw, 8rem) max(5vw, calc((100vw - 1280px)/2 + 3.5rem));
  background: var(--accent);
  color: #fff;
  overflow: hidden;
}
.manifest-band::before {
  content: '';
  position: absolute;
  width: 36vw;
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%;
  right: -10vw;
  bottom: -22vw;
}
.manifest-index { font-size: .65rem; letter-spacing: .16em; text-transform: uppercase; }
.manifest-band p {
  color: #fff;
  max-width: 24ch;
  font: 500 clamp(2rem, 4.5vw, 4.6rem)/1.02 'Clash Display', sans-serif;
  letter-spacing: -.045em;
}
.manifest-band em { font-family: Georgia, serif; font-weight: 400; }
.manifest-mark { font: 400 clamp(5rem, 11vw, 10rem)/.6 Georgia, serif; }

.home .services { position: relative; overflow: hidden; }
.home .services::before {
  display: none;
  position: absolute;
  left: -1rem;
  bottom: -2rem;
  color: rgba(255,255,255,.018);
  font: 600 clamp(8rem, 24vw, 22rem)/.75 'Clash Display', sans-serif;
  letter-spacing: -.08em;
}
.home .services-grid { gap: 1rem; background: transparent; border: 0; align-items: start; }
.home .service-card {
  border: 1px solid var(--border);
  min-height: 520px;
}
.home .service-card:nth-child(2) { margin-top: 4rem; }
.home .service-card:nth-child(3) { margin-top: 8rem; }
.home .service-card::before { height: 100%; width: 4px; transform: scaleY(0); transform-origin: bottom; }
.home .service-card:hover::before { transform: scaleY(1); }
.home .service-num { font-family: Georgia, serif; font-style: italic; font-weight: 400; }
.home .tag { border-radius: 100px; background: transparent; }

@media (max-width: 1024px) {
  .home .services-grid { grid-template-columns: 1fr; }
  .home .service-card { min-height: 0; }
  .home .service-card:nth-child(2), .home .service-card:nth-child(3) { margin-top: 0; }
}
@media (max-width: 900px) {
  .home .hero-inner { grid-template-columns: 1fr; }
  .home .hero-right { display: flex; min-height: 480px; justify-content: flex-start; }
  .hero-artboard { width: min(82vw, 430px); margin: 2rem 0 0 8vw; }
  .home .hero-left { padding-right: 0; }
  .home .why-item:nth-child(2), .home .why-item:nth-child(4) { transform: none; }
  .manifest-band { grid-template-columns: 1fr; }
  .manifest-mark { position: absolute; right: 1.5rem; top: 2rem; }
}
@media (max-width: 600px) {
  .home .hero { min-height: auto; }
  .home .hero-inner { padding-top: 6.5rem; }
  .home .hero h1 { font-size: clamp(3.6rem, 18vw, 5.4rem); }
  .home .hero-right { min-height: 390px; }
  .hero-artboard { width: min(78vw, 320px); margin-left: 4vw; }
  .home .why-grid { gap: 0; }
  .home .why-item { min-height: 245px; border-top: 0; }
  .home .why-item:first-child { border-top: 1px solid rgba(23,21,27,.2); }
  .manifest-band { padding-inline: 1.25rem; }
  .manifest-band p { font-size: clamp(2rem, 10vw, 3rem); }
}

/* ── Marquee Band ── */
.marquee-band {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-block: 1.1rem;
  background: var(--surface);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 22s linear infinite;
}
.marquee-band:hover .marquee-track {
  animation-play-state: paused;
}
.marquee-items {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-right: 2rem;
  white-space: nowrap;
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(.78rem, 1.1vw, .92rem);
  font-weight: 600;
  letter-spacing: .2em;
  color: var(--text-dim);
  text-transform: uppercase;
}
.marquee-sep {
  color: var(--accent);
  font-size: 1.1em;
  opacity: .8;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Brand Statement Section (Über uns) ── */
.brand-statement-section {
  padding-block: clamp(4rem, 10vw, 8rem);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, var(--surface) 0%, transparent 100%);
}
.brand-statement-inner {
  max-width: 900px;
}
.brand-statement-quote {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(1.75rem, 4.5vw, 3.75rem);
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: 1.1;
  color: var(--text);
  margin: 0 0 1.75rem;
  padding: 0;
}
.brand-statement-quote em {
  font-style: normal;
  color: var(--accent);
}
.brand-statement-sig {
  font-size: .9rem;
  color: var(--text-dim);
  letter-spacing: .06em;
}
.brand-statement-sig strong {
  color: var(--text-muted);
}

/* ── Brand text helpers ── */
.text-art { color: var(--accent); }

/* ── Scroll Reveal ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.stagger-1 { transition-delay: .1s; }
.stagger-2 { transition-delay: .2s; }
.stagger-3 { transition-delay: .3s; }
.stagger-4 { transition-delay: .4s; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .values-grid { grid-template-columns: repeat(2,1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .services-header { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .references-inner { grid-template-columns: 1fr; }
  .references-aside { align-items: flex-start; }
}
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .why-header { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { max-width: 280px; }
  .process-header { grid-template-columns: 1fr; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .service-detail-grid.reverse { direction: ltr; }
  .contact-page-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .why-grid { grid-template-columns: 1fr; }
  .why-item { border-left: 1px solid var(--border); border-top: none; }
  .why-item:first-child { border-top: 1px solid var(--border); }
  .process-grid { grid-template-columns: 1fr; }
  .process-step { border-left: 1px solid var(--border); border-top: none; }
  .process-step:first-child { border-top: 1px solid var(--border); }
  .values-grid { grid-template-columns: 1fr; }
  .value-item { border-left: 1px solid var(--border); border-top: none; }
  .value-item:first-child { border-top: 1px solid var(--border); }
  .footer-grid { grid-template-columns: 1fr; }
  .about-facts { grid-template-columns: 1fr; }

  /* References Video-Section Mobile */
  .references {
    min-height: 480px;
  }
  /* Auf Hochkant-Mobile ist der Iframe 300% breit aber nur ~169% hoch,
     was zu wenig ist. Deshalb extra hoch skalieren */
  .references-video-bg iframe {
    width: 560%;
    height: 560%;
  }
  .references-inner {
    padding: 4rem 0;
  }
  .references-text h2 { font-size: clamp(2rem, 8vw, 3rem); }
  .references-aside { flex-direction: column; align-items: center; }
}

/* ── Services Accordion (Leistungen page) ── */
.services-accordion {
  padding-block: var(--section);
}
.services-accordion .container {
  padding-inline: clamp(2rem, 7vw, 6rem);
}
.acc-item {
  border-top: 1px solid var(--border);
  position: relative;
  padding-left: 1.75rem;
}
.acc-item:last-child {
  border-bottom: 1px solid var(--border);
}
.acc-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 0;
  background: var(--accent);
  transition: height .5s cubic-bezier(0.4,0,0.2,1);
}
.acc-item.open::before {
  height: 100%;
}

.acc-trigger {
  width: 100%;
  display: grid;
  grid-template-columns: 5rem 1fr auto auto;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem 0;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  text-align: left;
}
.acc-trigger:hover .acc-name {
  color: var(--accent);
}

.acc-num {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -.06em;
  color: var(--surface2);
  line-height: 1;
  transition: color .3s;
  user-select: none;
}
.acc-item.open .acc-num {
  color: var(--accent);
}

.acc-name {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -.03em;
  line-height: 1.1;
  transition: color .25s;
}

.acc-tags {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.acc-tags .tag {
  padding: .3rem .75rem;
  border: 1px solid var(--border);
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-dim);
  background: none;
  white-space: nowrap;
}

.acc-toggle {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: border-color .25s, background .25s;
}
.acc-item.open .acc-toggle {
  border-color: var(--accent);
  background: var(--accent-dim);
}
.acc-toggle::before,
.acc-toggle::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 1.5px;
  background: var(--text-muted);
  transition: transform .3s ease, opacity .3s;
}
.acc-item.open .acc-toggle::before,
.acc-item.open .acc-toggle::after {
  background: var(--accent);
}
.acc-toggle::after {
  transform: rotate(90deg);
}
.acc-item.open .acc-toggle::after {
  transform: rotate(0);
  opacity: 0;
}

.acc-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height .6s cubic-bezier(0.4,0,0.2,1);
}
.acc-item.open .acc-body {
  max-height: 1400px;
}

.acc-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  padding-bottom: 4rem;
  align-items: center;
}

.acc-heading {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -.03em;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.acc-desc {
  font-size: .95rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  max-width: none;
}

.acc-visual {
  background: linear-gradient(145deg, var(--surface) 0%, var(--surface2) 100%);
  border: 1px solid var(--border);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1.5rem, 4vw, 3rem);
  position: relative;
  overflow: hidden;
}
.acc-visual::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -20%;
  width: 70%;
  height: 70%;
  background: radial-gradient(circle, rgba(138,43,226,.2) 0%, transparent 65%);
  pointer-events: none;
}
.acc-visual svg {
  width: 100%;
  height: auto;
  max-height: 100%;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 16px 36px rgba(0,0,0,.45));
}

@media (max-width: 900px) {
  .acc-trigger {
    grid-template-columns: 3.5rem 1fr auto;
    gap: 1rem;
  }
  .acc-tags { display: none; }
  .acc-inner { grid-template-columns: 1fr; }
  .acc-visual { max-width: 440px; margin: 0 auto; width: 100%; }
}
@media (max-width: 600px) {
  .acc-trigger {
    padding: 1.25rem 0;
    grid-template-columns: 2.75rem 1fr auto;
    gap: .75rem;
  }
  .acc-num { font-size: 1.5rem; }
  .acc-name { font-size: 1.25rem; }
  .acc-toggle { width: 32px; height: 32px; }
}

@media (max-width: 900px) {
  .home .hero-right { display: flex; }
}

/* Final responsive corrections — must remain last in this file. */
:root { color-scheme: dark; }
.inner-page .page-header::after,
.about-page .page-header::after {
  display: none;
}
.manifest-band p > span,
.manifest-band p > em,
.manifest-band p > small {
  display: block;
}
.manifest-band p > em {
  margin-top: .22em;
}
.manifest-band p > small {
  margin-top: 1.5rem;
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  font-size: .24em;
  font-style: normal;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.story-animated-icon {
  width: 100%;
  height: 100%;
}
.skip-link {
  position: fixed;
  top: .75rem;
  left: .75rem;
  z-index: 20000;
  padding: .75rem 1rem;
  background: var(--text);
  color: var(--bg);
  font-size: .875rem;
  font-weight: 700;
  transform: translateY(-180%);
  transition: transform .2s ease;
}
.skip-link:focus-visible { transform: translateY(0); }
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--accent-hover);
  outline-offset: 4px;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
}
h1, h2, h3, .acc-name, .acc-heading {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
}
.home .hero { min-height: 860px; padding-top: 5.5rem; }
.home .hero-inner {
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, .82fr);
  gap: clamp(2rem, 5vw, 5rem);
  min-height: 720px;
  padding-block: clamp(4rem, 8vw, 6.5rem);
  align-items: center;
}
.home .hero-left { min-width: 0; padding-right: 0; }
.home .hero h1 {
  max-width: none;
  margin: 0 0 2rem;
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  font-size: clamp(3.8rem, 5.8vw, 6rem);
  font-weight: 800;
  line-height: .92;
  letter-spacing: -.065em;
  word-spacing: .05em;
}
.home .hero h1 > span { display: block; }
.home .hero h1 em {
  display: inline;
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  font-style: italic;
  letter-spacing: -.055em;
}
.home .hero-sub { max-width: 46ch; color: #c8c8d0; }
.hero-artboard { width: min(36vw, 470px); transform: rotate(1.5deg); }
.home .hero-ticker-wrap { transform: none; }
.home .why { padding-block: clamp(5rem, 9vw, 8rem); background: var(--surface); color: var(--text); }
.home .why p { color: #b9b9c3; }
.home .why-header { grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr); }
.home .why h2 {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.055em;
}
.home .why-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; border-block: 1px solid var(--border); }
.home .why-item,
.home .why-item:nth-child(2),
.home .why-item:nth-child(4) {
  min-height: 300px;
  padding: 2.25rem;
  border: 0;
  border-right: 1px solid var(--border);
  background: transparent;
  transform: none;
}
.home .why-item:last-child { border-right: 0; }
.home .why-item:hover,
.home .why-item:nth-child(2):hover,
.home .why-item:nth-child(4):hover { color: var(--text); background: var(--bg); transform: none; }
.home .why-item p, .home .why-item:hover p { color: #aaaab5; }
.home .why-item::after { display: none; }
.home .why-num {
  color: #5d5d68;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: .08em;
}
.home .services-grid { gap: 1rem; align-items: stretch; }
.home .service-card,
.home .service-card:nth-child(2),
.home .service-card:nth-child(3) { min-height: 500px; margin-top: 0; }
.home .service-num { font-family: 'Inter', sans-serif; font-style: normal; font-weight: 700; }
@media (max-width: 1024px) {
  .home .hero { min-height: auto; }
  .home .hero-inner { grid-template-columns: minmax(0, 1fr) 300px; min-height: 660px; }
  .home .hero h1 { font-size: clamp(3.7rem, 6.2vw, 4.3rem); }
  .hero-artboard { width: 290px; }
  .home .why-header { grid-template-columns: 1fr; }
  .home .service-card,
  .home .service-card:nth-child(2),
  .home .service-card:nth-child(3) { min-height: 0; }
}
@media (max-width: 760px) {
  .home .hero { min-height: auto; padding-top: 4.5rem; }
  .home .hero::before { display: none; }
  .home .hero-inner { display: block; min-height: 0; padding-block: 4.25rem 3.5rem; }
  .home .hero-right { display: none; }
  .home .hero h1 { font-size: clamp(2.8rem, 11vw, 4rem); line-height: .98; }
  .home .why-grid { grid-template-columns: 1fr; }
  .home .why-item,
  .home .why-item:nth-child(2),
  .home .why-item:nth-child(4) {
    min-height: 0;
    padding: 2rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }
  .home .why-item:last-child { border-bottom: 0; }
  .home .why-num { margin-bottom: 2.5rem; }
}
@media (max-width: 430px) {
  .home .hero h1 { font-size: clamp(2.65rem, 10.8vw, 3.15rem); }
  .home .hero-actions { align-items: stretch; }
  .home .hero-actions .btn { width: 100%; justify-content: center; }
}
\n\n/* Targeted content refresh */
.art-invert-toggle {
  border: 1px solid rgba(255,255,255,.42); border-radius: 50%;
  background: rgba(20,16,26,.2); backdrop-filter: blur(5px); cursor: pointer;
  width: 2.65rem; height: 2.65rem; display:grid; place-items:center;
  box-shadow: 0 8px 22px rgba(24,9,39,.18);
  transition: transform .3s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.art-invert-toggle svg { width: 1.25rem; height: 1.25rem; transition: transform .45s cubic-bezier(.2,.8,.2,1); }
.art-invert-toggle:hover { transform: none; background: rgba(255,255,255,.17); border-color: rgba(255,255,255,.8); box-shadow: 0 10px 26px rgba(24,9,39,.28); }
.art-invert-toggle:hover svg { transform: rotate(180deg); }
.hero-artboard, .hero-artboard * { transition: background .45s ease, color .45s ease, border-color .45s ease, filter .45s ease; }
.hero-artboard.is-inverted { background:#fff; border-color:#111; box-shadow:2rem 2rem 0 rgba(138,43,226,.16); }
.hero-artboard.is-inverted::before { border-color:rgba(0,0,0,.22); }
.hero-artboard.is-inverted::after { background:rgba(0,0,0,.24); }
.hero-artboard.is-inverted .hero-icon-wrap img { filter: none; }
.hero-artboard.is-inverted .artboard-label, .hero-artboard.is-inverted .art-note, .hero-artboard.is-inverted .art-cross { color:#111; }
.hero-artboard.is-inverted .art-invert-toggle { background:rgba(255,255,255,.72); border-color:rgba(0,0,0,.28); box-shadow:0 8px 22px rgba(0,0,0,.1); }
.hero-artboard.is-inverted .art-invert-toggle:hover { background:#fff; border-color:rgba(0,0,0,.6); }

.home .services { background:linear-gradient(145deg,#17131d 0%,#24162f 48%,#111015 100%); }
.home .service-card:nth-child(1) { background:linear-gradient(145deg,rgba(138,43,226,.25),rgba(255,255,255,.025)); }
.home .service-card:nth-child(2) { background:linear-gradient(145deg,rgba(235,72,139,.17),rgba(255,255,255,.025)); }
.home .service-card:nth-child(3) { background:linear-gradient(145deg,rgba(88,118,255,.16),rgba(255,255,255,.025)); }
.home .service-card { border-color:rgba(255,255,255,.18); }

.references { position:relative; overflow:hidden; background:#0f0e12; }
.references-grid-bg { position:absolute; inset:0; opacity:.42; background-image:linear-gradient(rgba(255,255,255,.06) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.06) 1px,transparent 1px); background-size:54px 54px; mask-image:linear-gradient(to right,transparent,#000 25%,#000 75%,transparent); }
.references-status { display:inline-flex; align-items:center; gap:.65rem; font-size:.78rem; letter-spacing:.1em; text-transform:uppercase; color:var(--text-muted); }
.references-status i { width:.65rem; height:.65rem; border-radius:50%; background:var(--accent); box-shadow:0 0 0 .4rem rgba(138,43,226,.14); }
.references-aside { gap:1.5rem; }

.contact-page-centered { display:flex; flex-direction:column; gap:clamp(1.75rem,3vw,2.75rem); }
.contact-info-row { margin-top:0 !important; }
.ipad-device { margin-inline:auto; }


/* Targeted visual polish */
.home .hero h1 { letter-spacing: -.052em; }
.home .hero h1 em { letter-spacing: -.045em; }
.home .hero-icon-wrap .hero-logo-front,
.home .hero-icon-wrap .hero-logo-back { transition: opacity .35s ease; }
.home .hero-icon-wrap .hero-logo-front { opacity: 1; }
.home .hero-icon-wrap .hero-logo-back { opacity: 0; }
.hero-artboard.is-inverted .hero-logo-front { opacity: 0; }
.hero-artboard.is-inverted .hero-logo-back { opacity: 1; }
.artboard-label { max-width: calc(100% - 5.5rem); }

.home .service-card { border-color: rgba(255,255,255,.24); }
.home .service-num { color: #a9a2b1; }
.home .service-card:hover .service-num { color: #d0a8ff; }
.home .service-card h3 { color: #f1edf5; }
.home .service-card p { color: #c3bdc9; }
.home .service-card .tag { color: #c9c2d0; border-color: rgba(255,255,255,.24); }
.home .service-card .btn-outline { color: #e3dfe7; border-color: rgba(255,255,255,.32); }
.home .service-card .btn-outline:hover { border-color: var(--accent); }

.home .process-header { grid-template-columns: minmax(0, 1fr); max-width: 840px; }
.home .process-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.home .process-step-num { color: #4a4852; }
.home .process-step:hover .process-step-num { color: #a970f5; }
.home .service-num,
.home .process-step-num,
.acc-num {
  min-width: 2.15ch;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
  letter-spacing: -.045em;
}

.contact-page-art .page-header { min-height: auto; padding-top: calc(5rem + 3vw); padding-bottom: clamp(2.5rem, 4vw, 4rem); }
.contact-page-art .page-header-inner { padding-block: clamp(3rem, 5vw, 4.5rem); }
.contact-page-art .contact-page { padding-top: clamp(1.5rem, 3vw, 2.5rem); }
.contact-page-art .contact-info-row { margin-bottom: 0; }

.wireframe-visual {
  width: 100%; min-height: 320px; padding: clamp(1rem,3vw,2rem);
  display: flex; flex-direction: column; justify-content: center; gap: 1rem;
  background: radial-gradient(circle at 75% 25%,rgba(155,77,255,.22),transparent 36%),#111015;
}

.responsive-devices {
  width: 100%; height: 100%; min-height: 320px; display: grid; place-items: center;
  background: radial-gradient(circle at 54% 48%,rgba(155,77,255,.12),transparent 48%),#111015;
}
.acc-visual-full { padding: 0; }
.acc-visual-full > div { width: 100%; height: 100%; }
.responsive-devices svg { width: min(100%,560px); height: auto; overflow: visible; filter: none; }
.responsive-devices .device { fill: none; stroke: #b5afbd; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.responsive-devices .device rect:not(.device-accent) { fill: rgba(255,255,255,.025); }
.responsive-devices .device circle { fill: #77717e; stroke: none; }
.responsive-devices .device .device-accent { fill: rgba(155,77,255,.36); stroke: #9b4dff; }
.responsive-devices .desktop-device { stroke: #8d8795; }
.responsive-devices .tablet-device { stroke: #b4adba; }
.responsive-devices .phone-device { stroke: #d1cad7; }
.wireframe-browser {
  width: min(100%,430px); aspect-ratio: 1.45; margin: 0 auto; position: relative;
  overflow: hidden; border: 1px solid rgba(255,255,255,.22); border-radius: 10px;
  background: #19161f; box-shadow: 0 24px 60px rgba(0,0,0,.45),10px 10px 0 rgba(155,77,255,.09);
}
.wireframe-top { height: 30px; display:flex; align-items:center; gap:6px; padding:0 11px; border-bottom:1px solid rgba(255,255,255,.12); }
.wireframe-top span { width:6px; height:6px; border-radius:50%; background:#6a6470; }
.wireframe-top i { width:42%; height:7px; margin-left:10px; border-radius:10px; background:#292530; }
.wireframe-nav { height:42px; padding:0 14px; display:flex; align-items:center; justify-content:space-between; border-bottom:1px solid rgba(255,255,255,.08); }
.wireframe-nav b { color:var(--accent-hover); font-size:.9rem; }
.wireframe-nav div { display:flex; gap:8px; }
.wireframe-nav div i { width:25px; height:3px; background:#6d6773; }
.wireframe-nav > span { width:38px; height:13px; border:1px solid var(--accent); }
.wireframe-hero { height:48%; padding:16px 14px; display:grid; grid-template-columns:1.15fr .85fr; gap:14px; }
.wireframe-hero > div { display:flex; flex-direction:column; gap:8px; justify-content:center; }
.wireframe-hero strong { height:10px; width:88%; background:#eeeaf2; display:block; }
.wireframe-hero strong + strong { width:62%; }
.wireframe-hero em { width:52px; height:15px; margin-top:3px; background:var(--accent); }
.wireframe-hero aside { border:1px solid rgba(155,77,255,.65); background:linear-gradient(135deg,rgba(155,77,255,.2),rgba(255,255,255,.025)); }
.wireframe-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:8px; padding:0 14px 14px; }
.wireframe-grid span { height:45px; border:1px solid rgba(255,255,255,.16); background:#211e27; }
.wireframe-cursor { position:absolute; right:16%; top:51%; width:28px; filter:drop-shadow(0 5px 6px rgba(0,0,0,.45)); }
.wireframe-visual p { margin:0 auto; text-align:center; font-size:.72rem; letter-spacing:.08em; text-transform:uppercase; color:#a9a2b1; }

.social-platforms {
  width:100%; min-height:340px; position:relative; isolation:isolate;
  background:radial-gradient(circle at 52% 45%,rgba(155,77,255,.3),transparent 42%),linear-gradient(145deg,#18131f,#0c0b0e);
}
.social-platforms::before { content:''; position:absolute; inset:12%; border:1px solid rgba(155,77,255,.15); transform:rotate(-7deg); z-index:-1; }
.platform {
  position:absolute; width:86px; height:86px; border-radius:21px; display:grid; place-items:center;
  color:#fff; box-shadow:0 18px 34px rgba(0,0,0,.42),inset 0 1px 0 rgba(255,255,255,.18);
  border:1px solid rgba(255,255,255,.16);
}
.platform svg { width:52%; height:52%; filter:none; }
.platform-instagram { left:11%; top:17%; background:linear-gradient(135deg,#7537d8 4%,#d92f7f 52%,#f7a43b); transform:rotate(-8deg); }
.platform-linkedin { right:14%; top:11%; background:#0a66c2; transform:rotate(7deg); }
.platform-tiktok { left:39%; top:39%; background:#08080a; width:96px; height:96px; transform:rotate(-2deg); z-index:2; }
.platform-facebook { left:16%; bottom:16%; background:#1877f2; transform:rotate(6deg); }
.platform-youtube { right:13%; bottom:17%; background:#ff0033; transform:rotate(-7deg); }
.tiktok-shadow-cyan { fill:#25f4ee; transform:translate(-.8px,.5px); }
.tiktok-shadow-pink { fill:#fe2c55; transform:translate(.8px,-.5px); }
.social-platforms p { position:absolute; left:50%; bottom:4%; width:min(82%,310px); transform:translateX(-50%); text-align:center; margin:0; font-size:.7rem; color:#aaa3b0; }

@media (max-width: 760px) {
  .home .process-grid { grid-template-columns: 1fr; }
  .home .process-step { border-left: 1px solid var(--border); border-top: 0; }
  .home .process-step:first-child { border-top: 1px solid var(--border); }
  .contact-page-art .page-header { padding-top: 4.5rem; }
  .contact-page-art .page-header-inner { padding-block: 3rem 2rem; }
  .contact-page-art .contact-info-row { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .platform { width:72px; height:72px; border-radius:18px; }
  .platform-tiktok { width:82px; height:82px; }
}
@media (max-width: 440px) {
  .contact-page-art .contact-info-row { grid-template-columns: 1fr; }
  .wireframe-hero { padding:12px 10px; gap:9px; }
  .wireframe-grid { padding-inline:10px; }
}

/* iOS/iPadOS safe areas and mobile navigation layering. */
@media (max-width: 900px) {
  .nav,
  .nav.scrolled {
    padding-top: calc(1rem + env(safe-area-inset-top));
    padding-bottom: 1rem;
    background: rgba(9,9,11,.96);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    backdrop-filter: blur(16px) saturate(180%);
  }
  .mobile-menu-header {
    position: sticky;
    top: 0;
    z-index: 2;
    padding-top: calc(1.1rem + env(safe-area-inset-top));
    background: var(--bg);
  }
  .mobile-menu-footer {
    padding-bottom: calc(1.5rem + env(safe-area-inset-bottom));
  }
}

/* Touch devices never expose the keyboard-only skip link. */
@media (hover: none) and (pointer: coarse) {
  .skip-link { display: none; }
}

/* The longer positioning statement keeps the established hero rhythm. */
.home .hero h1.hero-heading-statement {
  font-size: clamp(2.75rem, 4.2vw, 3.9rem);
  line-height: .97;
}
.home .why-header {
  grid-template-columns: minmax(0, 1fr);
  max-width: 900px;
}
.home .why-intro {
  max-width: 58ch;
  margin-top: 1.25rem;
}
.home .service-card .service-tags { margin-bottom: 0; }
.home .services-header {
  grid-template-columns: minmax(0, 1fr);
  max-width: 820px;
}
.home .services-header .services-intro {
  max-width: 48ch;
  margin-top: 1.25rem;
}
@media (max-width: 760px) {
  .home .hero h1.hero-heading-statement {
    font-size: clamp(2.1rem, 8.7vw, 3rem);
    line-height: 1;
  }
}
