:root {
  --background: #fff8fc;
  --foreground: #39224b;
  --card: #fffafd;
  --card-foreground: #39224b;
  --primary: #7c4e9e;
  --primary-foreground: #ffffff;
  --accent: #b23ca5;
  --accent-foreground: #ffffff;
  --highlight: #fe6fc3;
  --muted: #f6eaf4;
  --muted-foreground: #634a5c;
  --border: #e4cce1;
  --destructive: #d92d20;
  --success: #2f7554;
  --ring: #9762bf;
  --radius: 0.45rem;
  --shadow-sm: 0 1px 2px rgb(57 34 75 / 8%);
  --shadow-md: 0 10px 30px rgb(57 34 75 / 13%);
  --wa-font-family-body: "Red Hat Display", sans-serif;
  --wa-font-family-heading: "Red Hat Display", sans-serif;
  --wa-color-brand-50: #fff4fb;
  --wa-color-brand-100: #fde5f5;
  --wa-color-brand-200: #facbe9;
  --wa-color-brand-300: #f4a4da;
  --wa-color-brand-400: #e078c9;
  --wa-color-brand-500: #b23ca5;
  --wa-color-brand-600: #96368e;
  --wa-color-brand-700: #7c4e9e;
  --wa-color-brand-800: #5f367c;
  --wa-color-brand-900: #39224b;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--background);
  color: var(--foreground);
  font-family: "Red Hat Display", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--ring) 55%, transparent);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 100000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-160%);
  border-radius: var(--radius);
  background: var(--foreground);
  color: #fff;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  width: 100%;
  padding: 5px 0;
  border-bottom: 1px solid transparent;
  background: rgb(255 255 255 / 98%);
  box-shadow: 0 10px 10px -7px rgb(24 24 24 / 24%);
  transition: padding 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.is-sticky {
  padding: 1px 0;
  border-color: rgb(124 78 158 / 15%);
  box-shadow: 0 8px 26px rgb(57 34 75 / 13%);
}

.navbar-wrapper {
  width: min(1100px, calc(100% - 40px));
  min-height: 64px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  transition: max-width 180ms ease;
}

.is-sticky .navbar-wrapper {
  max-width: 1300px;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-logo-crop {
  position: relative;
  display: block;
  width: 190px;
  height: 72px;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 8px;
}

.brand-logo-image {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 210px;
  max-width: none;
  height: auto;
  transform: translate(-50%, -50%);
}

.main-nav {
  margin-left: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3.4vw, 50px);
  margin: 0 30px 0 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  position: relative;
  display: block;
  padding: 12px 0;
  font-size: 18px;
  font-weight: 500;
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  background: var(--primary);
  transition: transform 160ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

wa-button::part(base) {
  border-radius: 3px;
  font-family: inherit;
  font-weight: 600;
  transition: transform 160ms ease, filter 160ms ease, box-shadow 160ms ease;
}

wa-button:hover::part(base) {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

wa-button[variant="brand"][appearance="filled"]::part(base),
wa-button[variant="brand"][appearance="accent"]::part(base) {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--primary-foreground);
}

wa-button.nav-cta::part(base) {
  min-height: 42px;
  padding-inline: 19px;
  border: 1px solid var(--primary);
  background: transparent;
  color: var(--foreground);
  box-shadow: none;
}

wa-button:not(:defined) {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border: 1px solid var(--primary);
  border-radius: 3px;
  background: var(--primary);
  color: white;
  font-weight: 600;
}

wa-button.nav-cta:not(:defined) {
  background: transparent;
  color: var(--foreground);
}

.burger {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: 14px;
  padding: 9px;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  cursor: pointer;
}

.burger span {
  display: block;
  width: 25px;
  height: 3px;
  margin: 4px 0;
  border-radius: 999px;
  background: var(--primary);
  transition: transform 180ms ease, opacity 180ms ease;
}

.burger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.is-active span:nth-child(2) {
  opacity: 0;
}

.burger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  min-height: 720px;
  padding: 84px 20px 0;
  background: linear-gradient(180deg, #fdf3fa 0%, var(--background) 100%);
}

.main-wrapper {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 76px 64px 62px;
  overflow: hidden;
  border-radius: 0 0 34px 34px;
  background:
    linear-gradient(105deg, rgb(57 34 75 / 86%) 0%, rgb(124 78 158 / 62%) 52%, rgb(178 60 165 / 43%) 100%),
    url("../assets/bild11.PNG") center 44% / cover no-repeat;
  box-shadow: 0 24px 70px rgb(57 34 75 / 20%);
}

.main-flex {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 400px);
  gap: 64px;
  align-items: center;
}

.hero-copy h1 {
  max-width: 560px;
  margin: 0 0 18px;
  color: white;
  font-size: clamp(2.25rem, 4.8vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  text-wrap: balance;
  text-shadow: 0 2px 24px rgb(12 5 14 / 24%);
}

.hero-copy h1 span {
  display: block;
  color: var(--highlight);
}

.hero-eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-eyebrow {
  display: inline-flex;
  padding: 7px 12px;
  border: 1px solid rgb(255 255 255 / 28%);
  border-radius: 999px;
  background: rgb(255 255 255 / 13%);
  color: white;
  backdrop-filter: blur(6px);
}

.hero-intro {
  max-width: 530px;
  margin: 0 0 26px;
  color: white;
  font-size: 18px;
  font-weight: 500;
}

.benefits {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  color: white;
  list-style: none;
}

.benefits li {
  display: flex;
  align-items: center;
  width: fit-content;
  padding: 7px 12px 7px 8px;
  border-radius: 999px;
  background: rgb(255 255 255 / 10%);
  backdrop-filter: blur(5px);
  font-weight: 500;
}

.benefits img {
  width: 25px;
  height: 25px;
  margin-right: 18px;
  object-fit: contain;
}

.contact-form {
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 40%);
  border-radius: 20px;
  background: rgb(255 255 255 / 95%);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(8px);
}

.form-wrapper {
  padding: 24px;
}

.contact-form h2 {
  margin: 0 0 18px;
  color: var(--primary);
  font-size: 1.35rem;
  letter-spacing: -0.015em;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
}

.field {
  min-width: 0;
}

.field-wide {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  margin-bottom: 5px;
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 600;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgb(255 255 255 / 91%);
  color: var(--foreground);
  box-shadow: var(--shadow-sm);
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.field input {
  height: 39px;
  padding: 7px 10px;
}

.field textarea {
  min-height: 86px;
  padding: 8px 10px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--ring);
  outline: none;
  box-shadow: 0 0 0 3px rgb(151 98 191 / 18%);
}

.field input.input-error,
.field textarea.input-error {
  border-color: var(--destructive);
  box-shadow: 0 0 0 3px rgb(217 45 32 / 11%);
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
}

.form-submit {
  display: grid;
  gap: 8px;
}

.submit-button {
  width: 100%;
}

.submit-button::part(base) {
  width: 100%;
  min-height: 48px;
  justify-content: center;
  background: var(--primary);
  color: white;
  font-size: 1rem;
}

.toast-region {
  position: fixed;
  z-index: 1100;
  top: 92px;
  right: 20px;
  width: min(390px, calc(100% - 40px));
  pointer-events: none;
}

.toast {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr) 32px;
  gap: 12px;
  align-items: start;
  padding: 16px;
  border: 1px solid var(--border);
  border-left: 4px solid var(--destructive);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 16px 38px rgb(57 34 75 / 22%);
  animation: toast-in 220ms ease-out;
  pointer-events: auto;
}

.toast.is-success {
  border-left-color: var(--success);
}

.toast.is-hiding {
  animation: toast-out 180ms ease-in forwards;
}

.toast-icon {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: color-mix(in srgb, var(--destructive) 12%, white);
  color: var(--destructive);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
}

.toast.is-success .toast-icon {
  background: color-mix(in srgb, var(--success) 12%, white);
  color: var(--success);
}

.toast-content strong {
  display: block;
  margin-bottom: 2px;
  color: var(--foreground);
  font-size: 0.98rem;
}

.toast-content p {
  margin: 0;
  color: var(--muted-foreground);
  font-size: 0.9rem;
  line-height: 1.4;
}

.toast-close {
  display: grid;
  width: 32px;
  height: 32px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--muted-foreground);
  cursor: pointer;
  font-size: 1.45rem;
  line-height: 1;
}

.toast-close:hover {
  background: var(--muted);
  color: var(--foreground);
}

@keyframes toast-in {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes toast-out {
  to { opacity: 0; transform: translateY(-8px); }
}

.section {
  padding-top: 78px;
}

.section-wrapper {
  width: min(1000px, calc(100% - 40px));
  margin: 0 auto;
}

.section h2,
.work > h2 {
  margin: 0 0 40px;
  text-align: center;
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  letter-spacing: -0.035em;
}

.section-kicker {
  text-align: center;
}

.review-panel {
  padding: 46px 54px 34px;
  border: 1px solid #ecd7e9;
  border-radius: 28px;
  background: linear-gradient(145deg, #fbf1f9 0%, var(--card) 70%);
  box-shadow: 0 18px 55px rgb(57 34 75 / 9%);
}

.testimonial-slider {
  position: relative;
  min-height: 225px;
}

.slides {
  position: relative;
  min-height: 170px;
}

.testimonial {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  padding: 18px 30px;
  text-align: center;
  animation: testimonial-in 320ms ease both;
}

.testimonial[hidden] {
  display: none;
}

.testimonial-person {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.customer-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-person > div {
  margin-left: 18px;
  text-align: left;
}

.testimonial h3 {
  margin: 0 0 4px;
  font-size: 1rem;
  font-weight: 500;
}

.stars {
  width: 100px;
  height: auto;
}

.testimonial > p {
  margin: 0;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.slider-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.slider-dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 1px solid var(--primary);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.slider-dot.is-active {
  background: var(--primary);
  box-shadow: 0 0 0 4px rgb(124 78 158 / 14%);
}

.slider-arrow {
  width: 36px;
  height: 36px;
  padding: 0 0 4px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: white;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  font-size: 1.7rem;
  line-height: 1;
}

.transformations {
  overflow: hidden;
}

.transformations-wrapper {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.transformations-intro {
  width: min(710px, 100%);
  margin: 0 auto 42px;
  text-align: center;
}

.transformations-intro h2 {
  margin-bottom: 14px;
}

.transformations-intro > p:last-child {
  margin: 0;
  color: var(--muted-foreground);
  font-size: 1.05rem;
}

.transformations-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.transformation-card {
  overflow: hidden;
  border: 1px solid #ead6e7;
  border-radius: 22px;
  background: var(--card);
  box-shadow: 0 14px 38px rgb(57 34 75 / 8%);
}

.transformation-image {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  padding: 0;
  border: 0;
  background: var(--muted);
  cursor: zoom-in;
  aspect-ratio: 8 / 5;
}

.transformation-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 360ms ease;
}

.transformation-image:hover img,
.transformation-image:focus-visible img {
  transform: scale(1.018);
}

.transformation-labels {
  position: absolute;
  inset: 14px 14px auto;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.transformation-labels span {
  padding: 6px 11px;
  border: 1px solid rgb(255 255 255 / 70%);
  border-radius: 999px;
  background: rgb(57 34 75 / 78%);
  color: white;
  box-shadow: 0 4px 16px rgb(0 0 0 / 15%);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}

.transformation-labels span:last-child {
  background: rgb(124 78 158 / 88%);
}

.transformation-copy {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 22px 24px 25px;
  text-align: left;
}

.transformation-number {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--muted);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
}

.transformation-copy h3 {
  margin: 0 0 6px;
  font-size: 1.12rem;
  line-height: 1.3;
}

.transformation-copy p {
  margin: 0;
  color: var(--muted-foreground);
  font-size: 0.94rem;
  line-height: 1.5;
}

.transformations-grid .reveal:nth-child(odd) {
  transform: translateX(-70px);
}

.transformations-grid .reveal:nth-child(even) {
  transform: translateX(70px);
}

.transformations-grid .reveal.is-visible {
  transform: translateX(0);
  opacity: 1;
}

.contact-band {
  width: min(1100px, calc(100% - 40px));
  margin: 94px auto 0;
  border-radius: 22px;
  background: linear-gradient(115deg, var(--foreground) 0%, var(--primary) 55%, var(--accent) 100%);
  box-shadow: 0 16px 44px rgb(57 34 75 / 20%);
}

.contact-band-inner {
  width: min(1000px, calc(100% - 40px));
  min-height: 105px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 20px 0;
  color: white;
}

.contact-band p {
  margin: 0;
}

.contact-band wa-button::part(base) {
  min-height: 42px;
  padding-inline: 28px;
  border-color: var(--accent);
  background: var(--accent);
  color: var(--accent-foreground);
  white-space: nowrap;
}

.work {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
  overflow: hidden;
  padding-top: 94px;
  text-align: center;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
}

.project-item {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  block-size: auto;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  padding: 0;
  border: 0;
  background: var(--muted);
  cursor: zoom-in;
  aspect-ratio: 1.48 / 1;
  border-radius: 18px;
}

.project-item::after {
  content: "Vergrößern";
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 6px 10px;
  transform: translateY(8px);
  border-radius: 999px;
  background: rgb(255 255 255 / 90%);
  color: var(--foreground);
  opacity: 0;
  font-size: 0.78rem;
  font-weight: 600;
  transition: opacity 180ms ease, transform 180ms ease;
}

.project-item:hover::after,
.project-item:focus-visible::after {
  transform: translateY(0);
  opacity: 1;
}

.project-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
}

.project-item:hover img {
  transform: scale(1.025);
}

.reveal {
  opacity: 0;
  transition: opacity 600ms ease, transform 600ms ease;
  will-change: opacity, transform;
}

.work-grid .reveal:nth-child(odd) {
  transform: translateX(-70px);
}

.work-grid .reveal:nth-child(even) {
  transform: translateX(70px);
}

.work-grid .reveal.is-visible {
  transform: translateX(0);
  opacity: 1;
}

.faq {
  padding-top: 94px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
}

.faq-card {
  min-height: 100%;
  padding: 26px;
  border: 1px solid #e6cfe3;
  border-radius: 20px;
  background: #fff7fc;
  text-align: left;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.faq-card:hover {
  transform: translateY(-2px);
  border-color: var(--border);
  box-shadow: var(--shadow-md);
}

.faq-number {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.faq-card h3 {
  margin: 0 0 12px;
  font-size: 1.05rem;
  line-height: 1.35;
}

.faq-card p {
  margin: 0;
  color: #503b4b;
}

.site-footer {
  width: 100%;
  margin-top: 96px;
  background: var(--foreground);
  color: white;
}

.footer-wrapper {
  width: min(1000px, calc(100% - 40px));
  margin: 0 auto;
  padding-top: 48px;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(200px, 1fr);
  gap: 80px;
}

.brand-logo-footer {
  width: 230px;
  height: 88px;
}

.brand-logo-footer .brand-logo-image {
  width: 252px;
}

.footer-company address {
  margin-top: 14px;
  font-style: normal;
}

.footer-company a,
.quicklinks a,
.footer-bottom a {
  color: white;
}

.footer-company a:hover,
.quicklinks a:hover,
.footer-bottom a:hover {
  text-decoration: underline;
}

.quicklinks h2 {
  margin: 0;
  color: var(--highlight);
  font-size: 1.15rem;
  text-align: left;
}

.quicklinks ul {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.quicklinks li + li {
  margin-top: 8px;
}

.footer-bottom {
  min-height: 68px;
  margin-top: 38px;
  display: flex;
  align-items: center;
  gap: 24px;
  border-top: 1px solid rgb(255 255 255 / 72%);
  font-size: 0.93rem;
}

.law {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 20px;
}

.cookie-settings {
  padding: 0;
  border: 0;
  background: transparent;
  color: white;
  cursor: pointer;
}

.cookie-settings:hover {
  text-decoration: underline;
}

.whatsapp-button {
  position: fixed;
  z-index: 900;
  bottom: 20px;
  left: 20px;
  display: flex;
  width: 60px;
  height: 60px;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 4px 10px rgb(0 0 0 / 30%);
  transition: transform 180ms ease;
}

.whatsapp-button:hover {
  transform: scale(1.08);
}

.whatsapp-button img {
  width: 100%;
  height: auto;
}

.lightbox {
  width: min(1000px, calc(100% - 32px));
  max-height: calc(100vh - 32px);
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  box-shadow: 0 24px 80px rgb(0 0 0 / 42%);
}

.lightbox::backdrop {
  background: rgb(7 24 25 / 88%);
  backdrop-filter: blur(4px);
}

.lightbox img {
  width: 100%;
  max-height: calc(100vh - 32px);
  border-radius: var(--radius);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  z-index: 2;
  top: -14px;
  right: -14px;
  width: 38px;
  height: 38px;
  padding: 0 0 2px;
  border: 1px solid rgb(255 255 255 / 40%);
  border-radius: 50%;
  background: white;
  color: var(--foreground);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
}

.legal-main {
  min-height: 60vh;
  padding: 118px 0 0;
}

.legal-wrapper {
  width: min(1000px, calc(100% - 40px));
  margin: 0 auto;
}

.legal-wrapper h1 {
  margin: 0 0 24px;
  color: var(--primary);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.04em;
}

.legal-wrapper h2 {
  margin: 34px 0 10px;
  color: var(--primary);
  font-size: 1.25rem;
  text-align: left;
}

.legal-wrapper h3 {
  margin: 26px 0 8px;
  font-size: 1.05rem;
}

.legal-wrapper a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.imprint-identity {
  margin: 0 0 1em;
  line-height: inherit;
}

.imprint-identity img {
  display: block;
  width: 214px;
  max-width: 100%;
  height: auto;
  margin: 0;
  filter: brightness(0) saturate(100%) invert(17%) sepia(18%) saturate(1971%) hue-rotate(235deg) brightness(91%) contrast(94%);
}

.legal-wrapper img {
  max-width: 200px;
}

.legal-content {
  overflow-wrap: anywhere;
}

@keyframes testimonial-in {
  from { opacity: 0; transform: translateX(14px); }
  to { opacity: 1; transform: translateX(0); }
}

@media (max-width: 900px) {
  .main-flex {
    gap: 36px;
  }

  .nav-links {
    gap: 22px;
    margin-right: 20px;
  }

  .nav-links a {
    font-size: 16px;
  }

  .faq-grid {
    gap: 14px;
  }
}

@media (max-width: 790px) {
  .site-header {
    padding: 5px 0;
  }

  .navbar-wrapper {
    width: min(100% - 28px, 1100px);
  }

  .logo .brand-logo-crop {
    width: 154px;
    height: 58px;
  }

  .logo .brand-logo-image {
    width: 168px;
  }

  .burger {
    display: block;
    margin-left: auto;
  }

  .main-nav {
    position: absolute;
    top: 70px;
    right: 0;
    left: 0;
    pointer-events: none;
  }

  .nav-links {
    position: absolute;
    top: 0;
    right: 0;
    display: grid;
    width: min(330px, 82vw);
    min-height: calc(100vh - 70px);
    align-content: start;
    gap: 6px;
    margin: 0;
    padding: 28px;
    transform: translateX(104%);
    border-top: 1px solid var(--border);
    background: white;
    box-shadow: -16px 26px 50px rgb(57 34 75 / 16%);
    transition: transform 250ms ease;
  }

  .nav-links.is-open {
    pointer-events: auto;
    transform: translateX(0);
  }

  .main-nav:has(.nav-links.is-open) {
    pointer-events: auto;
  }

  .nav-links a {
    padding: 16px 10px;
    font-size: 1.05rem;
  }

  .nav-cta {
    margin-left: auto;
  }

  .main-wrapper {
    padding: 50px 24px 32px;
    border-radius: 0 0 26px 26px;
  }

  .main-flex {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy h1 {
    margin: 0 auto 14px;
    font-size: clamp(2rem, 8.8vw, 3rem);
    line-height: 1.03;
  }

  .benefits {
    justify-items: center;
  }

  .benefits li {
    width: auto;
  }

  .contact-form {
    max-width: 640px;
    margin: 0 auto;
  }

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

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

  .project-item {
    aspect-ratio: auto;
  }

  .project-item img {
    height: auto;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .faq-card {
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
  }

  .review-panel {
    padding: 36px 24px 28px;
  }
}

@media (max-width: 600px) {
  html {
    scroll-padding-top: 72px;
  }

  .nav-cta {
    display: none;
  }

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

  .field-wide {
    grid-column: 1;
  }

  .main-wrapper,
  .section-wrapper,
  .footer-wrapper,
  .legal-wrapper {
    width: min(100% - 30px, 1000px);
  }

  .hero {
    min-height: auto;
    padding: 72px 0 0;
  }

  .main-wrapper {
    width: min(100% - 20px, 1000px);
    padding: 44px 20px 28px;
  }

  .hero-eyebrow {
    padding: 6px 10px;
    font-size: 0.67rem;
  }

  .hero-copy h1 {
    font-size: clamp(1.9rem, 9vw, 2.55rem);
  }

  .hero-intro {
    margin-bottom: 20px;
    font-size: 0.98rem;
    line-height: 1.5;
  }

  .benefits {
    gap: 9px;
  }

  .benefits li {
    padding: 6px 10px 6px 7px;
    font-size: 0.9rem;
    line-height: 1.35;
  }

  .benefits img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
  }

  .form-wrapper {
    padding: 20px;
  }

  .contact-form h2 {
    font-size: 1.2rem;
  }

  .section h2,
  .work > h2 {
    margin-bottom: 30px;
    font-size: 1.65rem;
    line-height: 1.15;
  }

  .section-kicker {
    margin-bottom: 8px;
    font-size: 0.68rem;
  }

  .contact-band p {
    font-size: 0.94rem;
    line-height: 1.45;
  }

  .faq-card {
    padding: 22px 18px;
  }

  .faq-card h3 {
    font-size: 1rem;
  }

  .faq-card p {
    font-size: 0.94rem;
  }

  .work,
  .transformations-wrapper,
  .contact-band {
    width: min(100% - 20px, 1100px);
  }

  .transformations-intro {
    margin-bottom: 28px;
  }

  .transformations-intro > p:last-child {
    font-size: 0.96rem;
  }

  .transformations-grid {
    gap: 16px;
  }

  .transformation-card {
    border-radius: 17px;
  }

  .transformation-image {
    aspect-ratio: 3 / 2;
  }

  .transformation-labels {
    inset: 10px 10px auto;
  }

  .transformation-labels span {
    padding: 5px 8px;
    font-size: 0.62rem;
  }

  .transformation-copy {
    gap: 12px;
    padding: 18px;
  }

  .transformation-number {
    width: 34px;
    height: 34px;
  }

  .contact-band-inner {
    flex-direction: column;
    gap: 16px;
    padding: 25px 0;
    text-align: center;
  }

  .testimonial {
    padding-inline: 4px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
    padding: 19px 0;
  }

  .law {
    margin-left: 0;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 10px 18px;
  }

  .whatsapp-button {
    bottom: 14px;
    left: 14px;
    width: 54px;
    height: 54px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .work-grid .reveal,
  .transformations-grid .reveal {
    transform: none;
    opacity: 1;
  }
}
