/* =========================================================
   EaseUp — Landingpage Stylesheet
   Mobile-first. Breakpoints: 768px (tablet) / 1024px (desktop).
   ========================================================= */

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("/fonts/Inter-Light.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/Inter-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/fonts/Inter-Medium.woff2") format("woff2");
}
@font-face {
  font-family: "Permanent Marker";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/PermanentMarker-Regular.woff2") format("woff2");
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #555555;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #1a1a1a; text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }
button { font: inherit; cursor: pointer; }
ul, ol { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4 { color: #1a1a1a; font-weight: 500; line-height: 1.15; margin: 0; letter-spacing: -0.5px; }
p { margin: 0 0 1em; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.container-narrow { max-width: 760px; }

.section {
  padding: 4rem 0;
}
.section-tinted { background: #f5f3ee; }

@media (min-width: 768px) {
  .section { padding: 6rem 0; }
  .container { padding: 0 2rem; }
}

.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #999999;
  margin-bottom: 1rem;
}
.section-title {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.5px;
  color: #1a1a1a;
  margin: 0 0 1rem;
}
.section-lead {
  max-width: 640px;
  font-size: 16px;
  color: #555555;
  margin: 0 0 2.5rem;
}
@media (min-width: 768px) {
  .section-title { font-size: 36px; letter-spacing: -1px; }
}

.marker-title {
  font-family: "Permanent Marker", "Inter", cursive;
  font-weight: 400;
  font-size: 36px;
  letter-spacing: 0;
  line-height: 1.1;
}
@media (min-width: 768px) {
  .marker-title { font-size: 44px; }
}

.pill {
  display: inline-block;
  padding: 0.45rem 0.85rem;
  background: #f5f3ee;
  border: 0.5px solid rgba(0,0,0,0.06);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #555555;
}
.pill-eyebrow { margin-bottom: 1.5rem; }

.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 1.4rem;
  background: #1a1a1a;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.2px;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease;
}
.cta-primary:hover {
  background: #000000;
  text-decoration: none;
  transform: translateY(-1px);
}
.cta-primary .arrow { display: inline-block; transition: transform .2s ease; }
.cta-primary:hover .arrow { transform: translate(2px, -2px); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transition: border-color .25s ease, box-shadow .25s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  border-bottom-color: rgba(0,0,0,0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.brand-logo { max-height: 48px; width: auto; }

@media (min-width: 768px) {
  .header-inner { height: 132px; }
  .brand-logo { max-height: 100px; }
}

.nav-desktop { display: none; }
.nav-desktop ul { display: flex; gap: 1.75rem; }
.nav-desktop a {
  font-size: 14px;
  font-weight: 400;
  color: #555555;
  letter-spacing: -0.1px;
}
.nav-desktop a:hover { color: #1a1a1a; text-decoration: none; }

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 0;
  background: transparent;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #1a1a1a;
  margin: 0 auto;
  transition: transform .25s ease, opacity .25s ease;
}

@media (min-width: 768px) {
  .nav-desktop { display: block; }
  .nav-toggle { display: none; }
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: #ffffff;
  z-index: 200;
  padding: 5rem 2rem 2rem;
  transform: translateY(-100%);
  transition: transform .3s ease;
  display: flex;
  flex-direction: column;
  visibility: hidden;
}
.mobile-menu.open {
  transform: translateY(0);
  visibility: visible;
}
.mobile-menu nav ul { display: flex; flex-direction: column; gap: 1.5rem; }
.mobile-menu nav a {
  font-size: 24px;
  font-weight: 500;
  color: #1a1a1a;
  letter-spacing: -0.5px;
}
.mobile-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  font-size: 32px;
  background: transparent;
  border: none;
  color: #1a1a1a;
  line-height: 1;
}

.hero {
  padding: 3rem 0 4rem;
}
@media (min-width: 768px) {
  .hero { padding: 5rem 0 6rem; }
}

.hero-title {
  font-size: 44px;
  font-weight: 500;
  letter-spacing: -1px;
  line-height: 1.05;
  margin: 0 0 1.5rem;
  color: #1a1a1a;
}
.hero-title .line-1 { display: block; }
.hero-title .line-2 { display: block; }
@media (min-width: 1024px) {
  .hero-title { font-size: 64px; letter-spacing: -1.5px; }
}

.marker-word {
  position: relative;
  display: inline-block;
  font-family: "Permanent Marker", "Inter", cursive;
  font-weight: 400;
  letter-spacing: 0;
  color: #1a1a1a;
  padding-bottom: 0.2em;
}
.marker-underline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.05em;
  width: 100%;
  height: 0.4em;
}

.hero-sub {
  max-width: 620px;
  font-size: 16px;
  color: #555555;
  margin: 0 0 2rem;
}
@media (min-width: 768px) {
  .hero-sub { font-size: 17px; }
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.service-tags li {
  padding: 0.4rem 0.85rem;
  background: #fafaf7;
  border: 0.5px solid rgba(0,0,0,0.06);
  border-radius: 999px;
  font-size: 13px;
  color: #555555;
}

.hero-collage {
  margin-top: 3rem;
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(2, 1fr);
}
.hero-collage .tile {
  position: relative;
  margin: 0;
  background: #f5f3ee;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}
.hero-collage .tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.hero-collage .tile:hover img { transform: scale(1.03); }

/* 5 Bilder, mobile 2 Spalten: das 5. überspannt beide Spalten und wird breitformatig zugeschnitten */
.hero-collage .tile:nth-child(5) {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 9;
}

@media (min-width: 768px) {
  .hero-collage {
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
  }
  /* Auf Desktop alle 5 in einer Reihe, gleiches Hochformat */
  .hero-collage .tile:nth-child(5) {
    grid-column: auto;
    aspect-ratio: 3 / 4;
  }
  /* Leichte Versetzung für mehr Rhythmus */
  .hero-collage .tile:nth-child(2) { transform: translateY(1.5rem); }
  .hero-collage .tile:nth-child(4) { transform: translateY(1.5rem); }
}

.service-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 540px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .service-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; } }

.service-card {
  position: relative;
  padding: 1.25rem;
  border: 0.5px solid rgba(0,0,0,0.08);
  border-radius: 8px;
  background: #ffffff;
  transition: border-color .25s ease, transform .25s ease;
}
.service-card:hover { border-color: rgba(0,0,0,0.2); }
.service-card .num {
  display: block;
  font-size: 12px;
  color: #999999;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
}
.service-card h3 {
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 0.5rem;
  letter-spacing: -0.3px;
}
.service-card p {
  font-size: 13px;
  color: #999999;
  margin: 0;
  line-height: 1.55;
}
.card-arrow {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 16px;
  color: #999999;
  transition: transform .25s ease, color .25s ease;
}
.service-card:hover .card-arrow {
  transform: translate(2px, -2px);
  color: #1a1a1a;
}

.process-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}
.process-list li {
  display: grid;
  grid-template-columns: 70px 1fr;
  align-items: start;
  gap: 1rem;
  padding-bottom: 1.5rem;
  border-bottom: 0.5px solid rgba(0,0,0,0.08);
}
.process-list li:last-child { border-bottom: none; }
.step-letter {
  font-family: "Inter";
  font-weight: 300;
  font-size: 40px;
  color: #999999;
  line-height: 1;
  letter-spacing: -1px;
}
.process-list h3 {
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 0.35rem;
  color: #1a1a1a;
}
.process-list p {
  font-size: 14px;
  color: #999999;
  margin: 0;
}
@media (min-width: 768px) {
  .process-list li { grid-template-columns: 90px 1fr; gap: 1.5rem; }
  .step-letter { font-size: 48px; }
}

.stat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-top: 2rem;
}
@media (min-width: 768px) { .stat-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; } }
.stat-card {
  background: #f5f3ee;
  border-radius: 8px;
  padding: 1.25rem;
}
.stat-num {
  display: block;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -1px;
  color: #1a1a1a;
  margin-bottom: 0.25rem;
}
.stat-label {
  display: block;
  font-size: 13px;
  color: #999999;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}
@media (min-width: 768px) { .testimonial-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; } }
.testimonial {
  background: #fafaf7;
  border-radius: 8px;
  padding: 1.5rem;
  margin: 0;
}
.testimonial blockquote {
  font-size: 16px;
  font-weight: 400;
  color: #1a1a1a;
  line-height: 1.55;
  margin: 0 0 1rem;
  quotes: none;
}
.testimonial figcaption {
  font-size: 13px;
  color: #999999;
}

.faq-list { margin-top: 2rem; }
.faq-item {
  border-bottom: 0.5px solid rgba(0,0,0,0.08);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  font-size: 16px;
  font-weight: 500;
  color: #1a1a1a;
  letter-spacing: -0.2px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-plus {
  display: inline-block;
  font-size: 22px;
  font-weight: 300;
  line-height: 1;
  color: #999999;
  transition: transform .25s ease;
  flex-shrink: 0;
}
.faq-item[open] .faq-plus { transform: rotate(45deg); color: #1a1a1a; }
.faq-answer {
  padding: 0 0 1.25rem;
  font-size: 15px;
  color: #555555;
  max-width: 60ch;
  animation: faq-fade .25s ease both;
}
@keyframes faq-fade {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label {
  font-size: 13px;
  font-weight: 500;
  color: #555555;
}
.field input,
.field textarea {
  width: 100%;
  padding: 12px;
  font: inherit;
  font-size: 15px;
  color: #1a1a1a;
  background: #ffffff;
  border: 0.5px solid rgba(0,0,0,0.2);
  border-radius: 4px;
  transition: border-color .2s ease;
  -webkit-appearance: none;
  appearance: none;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: #1a1a1a;
}
.field textarea { resize: vertical; min-height: 120px; }

.field-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 13px;
  color: #555555;
}
.field-checkbox input { margin-top: 3px; }
.field-checkbox a { color: #1a1a1a; text-decoration: underline; }

.contact-form .cta-primary { align-self: flex-start; margin-top: 0.5rem; }

.hp {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-footer {
  background: #1a1a1a;
  color: rgba(255,255,255,0.6);
  padding: 3.5rem 0 2rem;
}
.footer-logo {
  max-height: 56px;
  width: auto;
  margin-bottom: 2rem;
  filter: invert(1);
}
.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.footer-contacts a {
  color: #ffffff;
  font-size: 15px;
  letter-spacing: -0.2px;
}
.footer-contacts a:hover { color: rgba(255,255,255,0.7); text-decoration: none; }

.footer-legal {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  font-size: 13px;
}
.footer-legal a { color: rgba(255,255,255,0.7); }
.footer-legal a:hover { color: #ffffff; }

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin: 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

@media (min-width: 768px) {
  .footer-contacts { flex-direction: row; gap: 2rem; }
}

.placeholder small { display: block; font-size: 10px; color: #bbb; margin-top: 4px; }

.legal-page {
  padding: 4rem 0 5rem;
  max-width: 760px;
}
.legal-page h1 { font-size: 32px; margin-bottom: 1.5rem; }
.legal-page h2 { font-size: 20px; margin: 2rem 0 0.75rem; }
.legal-page p { font-size: 15px; color: #555555; }

/* =========================================================
   ANIMATIONS & EFFECTS
   ========================================================= */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, #1a1a1a, #555);
  z-index: 300;
  transition: width .1s linear;
  pointer-events: none;
}

.hero { position: relative; overflow: hidden; }
.hero::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(circle at center, rgba(245,243,238,0.9), rgba(245,243,238,0) 70%);
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
  animation: blob-float 14s ease-in-out infinite alternate;
}
.hero::after {
  content: "";
  position: absolute;
  top: 10%;
  right: -15%;
  width: 55%;
  height: 70%;
  background: radial-gradient(circle at center, rgba(250,250,247,0.95), rgba(250,250,247,0) 70%);
  filter: blur(50px);
  z-index: 0;
  pointer-events: none;
  animation: blob-float 18s ease-in-out infinite alternate-reverse;
}
.hero > .container { position: relative; z-index: 1; }
@keyframes blob-float {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, 20px) scale(1.08); }
}

.hero .pill-eyebrow,
.hero .hero-title,
.hero .hero-sub,
.hero .hero-cta-row,
.hero .service-tags {
  opacity: 0;
  transform: translateY(16px);
  animation: hero-rise .8s cubic-bezier(.2,.7,.2,1) forwards;
}
.hero .pill-eyebrow { animation-delay: .05s; }
.hero .hero-title  { animation-delay: .15s; }
.hero .hero-sub    { animation-delay: .35s; }
.hero .hero-cta-row { animation-delay: .5s; }
.hero .service-tags { animation-delay: .65s; }
@keyframes hero-rise {
  to { opacity: 1; transform: translateY(0); }
}

.marker-underline path {
  stroke-dasharray: 700;
  stroke-dashoffset: 700;
  animation: marker-draw 1.4s cubic-bezier(.6,.1,.2,1) .9s forwards;
}
.marker-title.in-view .marker-underline path,
.reveal.in-view .marker-underline path {
  animation: marker-draw 1.4s cubic-bezier(.6,.1,.2,1) .2s forwards;
}
@keyframes marker-draw {
  to { stroke-dashoffset: 0; }
}

.hero-collage .tile {
  opacity: 0;
  transform: translateY(28px) scale(.98);
  animation: tile-rise .9s cubic-bezier(.2,.7,.2,1) forwards;
  will-change: transform;
}
.hero-collage .tile:nth-child(1) { animation-delay: .8s; }
.hero-collage .tile:nth-child(2) { animation-delay: .95s; }
.hero-collage .tile:nth-child(3) { animation-delay: 1.1s; }
.hero-collage .tile:nth-child(4) { animation-delay: 1.25s; }
.hero-collage .tile:nth-child(5) { animation-delay: 1.4s; }
@keyframes tile-rise {
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@media (min-width: 768px) {
  .hero-collage .tile:nth-child(2),
  .hero-collage .tile:nth-child(4) {
    animation-name: tile-rise-offset;
  }
  @keyframes tile-rise-offset {
    from { opacity: 0; transform: translateY(28px) scale(.98); }
    to   { opacity: 1; transform: translateY(1.5rem) scale(1); }
  }
}
.hero-collage .tile img { transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.hero-collage .tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(0,0,0,0.18));
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
}
.hero-collage .tile:hover::after { opacity: 1; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1);
}
.reveal-stagger.in-view > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.in-view > *:nth-child(1) { transition-delay: .05s; }
.reveal-stagger.in-view > *:nth-child(2) { transition-delay: .12s; }
.reveal-stagger.in-view > *:nth-child(3) { transition-delay: .19s; }
.reveal-stagger.in-view > *:nth-child(4) { transition-delay: .26s; }
.reveal-stagger.in-view > *:nth-child(5) { transition-delay: .33s; }
.reveal-stagger.in-view > *:nth-child(6) { transition-delay: .4s; }

.service-card {
  overflow: hidden;
  transition: border-color .3s ease, transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease;
}
.service-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -60%;
  width: 60%;
  height: 200%;
  background: linear-gradient(115deg, transparent 30%, rgba(26,26,26,0.04) 50%, transparent 70%);
  transform: translateX(0);
  transition: transform .9s cubic-bezier(.2,.7,.2,1);
  pointer-events: none;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,0,0,0.18);
  box-shadow: 0 12px 28px -16px rgba(0,0,0,0.18);
}
.service-card:hover::before { transform: translateX(280%); }
.service-card .num { transition: color .3s ease; }
.service-card:hover .num { color: #1a1a1a; }

.process-list li { transition: border-color .3s ease; }
.process-list .step-letter {
  display: inline-block;
  transition: color .4s ease, transform .5s cubic-bezier(.2,.7,.2,1);
}
.process-list li.in-view .step-letter {
  animation: letter-pop .7s cubic-bezier(.2,.7,.2,1) both;
  color: #1a1a1a;
}
@keyframes letter-pop {
  0%   { transform: scale(.6); opacity: 0; }
  60%  { transform: scale(1.08); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}

.stat-card {
  position: relative;
  overflow: hidden;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), background .35s ease;
}
.stat-card:hover { transform: translateY(-3px); background: #efece5; }
.stat-num { display: inline-block; transition: transform .4s ease; }
.stat-card.in-view .stat-num { animation: num-pop .7s cubic-bezier(.2,.7,.2,1); }
@keyframes num-pop {
  0%   { transform: translateY(8px); opacity: 0; }
  60%  { transform: translateY(-2px); opacity: 1; }
  100% { transform: translateY(0); opacity: 1; }
}

.testimonial {
  border: 0.5px solid transparent;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), border-color .3s ease, background .3s ease;
}
.testimonial:hover {
  transform: translateY(-3px);
  background: #ffffff;
  border-color: rgba(0,0,0,0.08);
}

.cta-primary {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.cta-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(115deg, transparent, rgba(255,255,255,0.18), transparent);
  transform: skewX(-20deg);
  transition: left .7s cubic-bezier(.2,.7,.2,1);
  z-index: -1;
}
.cta-primary:hover::before { left: 130%; }
.cta-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 24px -12px rgba(0,0,0,0.35); }

.faq-item summary { transition: color .25s ease; }
.faq-item:hover summary { color: #000; }
.faq-item[open] summary { color: #000; }

.service-tags li {
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.service-tags li:hover {
  transform: translateY(-2px);
  background: #ffffff;
  border-color: rgba(0,0,0,0.18);
}

.field input,
.field textarea {
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.field input:focus,
.field textarea:focus {
  box-shadow: 0 0 0 4px rgba(26,26,26,0.06);
  background: #fffefb;
}

.footer-contacts a,
.footer-legal a {
  position: relative;
  transition: color .25s ease;
}
.footer-contacts a::after,
.footer-legal a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
.footer-contacts a:hover,
.footer-legal a:hover { text-decoration: none; }
.footer-contacts a:hover::after,
.footer-legal a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.brand { display: inline-flex; align-items: center; }
.brand-logo { transition: transform .35s cubic-bezier(.2,.7,.2,1); }
.brand:hover .brand-logo { transform: scale(1.04); }

/* =========================================================
   DECK-ALIGNMENT: Marker-Headlines uppercase, Up-Arrow,
   Über-mich, Warum-EaseUp, Nummern-Kreise im Prozess
   ========================================================= */

.marker-title { text-transform: uppercase; }

.hero-arrow {
  position: absolute;
  top: 6%;
  right: -10%;
  width: 280px;
  height: 280px;
  z-index: 0;
  opacity: 0.07;
  pointer-events: none;
  color: #1a1a1a;
}
@media (min-width: 768px) {
  .hero-arrow { width: 460px; height: 460px; right: -6%; top: 10%; }
}

.about-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 768px) {
  .about-grid { grid-template-columns: 1.05fr 0.95fr; gap: 3rem; }
}

.about-content { order: 2; }
.about-photo { order: 1; margin: 0; }
@media (min-width: 768px) {
  .about-content { order: 1; }
  .about-photo { order: 2; }
}

.about-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: 1.5rem;
}
.about-list li {
  display: grid;
  grid-template-columns: 32px 1fr;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 0.5px solid rgba(0,0,0,0.08);
}
.about-list li:last-child { border-bottom: none; }
.about-list svg { width: 22px; height: 22px; color: #1a1a1a; }
.about-list span { font-size: 15px; color: #1a1a1a; line-height: 1.4; }

.about-photo img,
.about-photo .photo-placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 12px;
  object-fit: cover;
  display: block;
}
.about-photo .photo-placeholder {
  background: linear-gradient(135deg, #f0ece2 0%, #e0d9c8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.value-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  margin: 2rem 0 0;
}
@media (min-width: 540px) { .value-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .value-grid { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; } }

.value-card {
  position: relative;
  padding: 1.5rem 1.25rem;
  border: 0.5px solid rgba(0,0,0,0.08);
  border-radius: 8px;
  background: #ffffff;
  transition: border-color .25s ease, transform .25s cubic-bezier(.2,.7,.2,1), box-shadow .25s ease;
  text-align: left;
}
.value-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0,0,0,0.18);
  box-shadow: 0 12px 28px -16px rgba(0,0,0,0.14);
}
.value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #1a1a1a;
  color: #ffffff;
  margin-bottom: 1rem;
}
.value-icon svg { width: 22px; height: 22px; }
.value-card h3 {
  font-size: 15px;
  font-weight: 500;
  margin: 0;
  letter-spacing: -0.2px;
  color: #1a1a1a;
}

.value-claim {
  margin: 2.5rem 0 0;
  font-family: "Permanent Marker", "Inter", cursive;
  font-size: 28px;
  text-transform: uppercase;
  color: #1a1a1a;
  text-align: center;
  line-height: 1.15;
}
@media (min-width: 768px) { .value-claim { font-size: 36px; } }

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #1a1a1a;
  color: #ffffff;
  font-family: "Inter";
  font-weight: 500;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0;
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
}
@media (min-width: 768px) {
  .step-number { width: 56px; height: 56px; font-size: 20px; }
}
.process-list li.in-view .step-number {
  animation: letter-pop .7s cubic-bezier(.2,.7,.2,1) both;
}
.process-list li { grid-template-columns: 60px 1fr; }
@media (min-width: 768px) {
  .process-list li { grid-template-columns: 80px 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  html { scroll-behavior: auto; }
  .reveal, .reveal-stagger > * { opacity: 1 !important; transform: none !important; }
  .hero .pill-eyebrow,
  .hero .hero-title,
  .hero .hero-sub,
  .hero .hero-cta-row,
  .hero .service-tags,
  .hero-collage .tile { opacity: 1 !important; transform: none !important; }
  .marker-underline path { stroke-dashoffset: 0 !important; }
}

::selection { background: #1a1a1a; color: #fff; }
