:root {
  --cream: #f7f1ea;
  --sand: #efe2d3;
  --clay: #c58b6c;
  --copper: #b06f4f;
  --olive: #6f7c5b;
  --ink: #2a2421;
  --mid: #5d5651;
  --sun: #e6c27a;
  --white: #fffaf5;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow: 0 24px 60px rgba(42, 36, 33, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Work Sans", "Segoe UI", sans-serif;
  color: var(--ink);
  background: radial-gradient(1200px 600px at 5% -10%, #fff4e9 10%, transparent 70%),
    radial-gradient(900px 500px at 85% 0%, #f1e2d4 15%, transparent 65%),
    linear-gradient(120deg, #f4ede5, #f9f5f0);
  min-height: 100vh;
}

body.nav-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: repeating-linear-gradient(
      120deg,
      rgba(42, 36, 33, 0.03),
      rgba(42, 36, 33, 0.03) 2px,
      transparent 2px,
      transparent 8px
    ),
    repeating-linear-gradient(
      -60deg,
      rgba(42, 36, 33, 0.02),
      rgba(42, 36, 33, 0.02) 3px,
      transparent 3px,
      transparent 9px
    );
  pointer-events: none;
  z-index: -1;
}

img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius-md);
}

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

.skip-link {
  position: absolute;
  top: -40px;
  left: 16px;
  background: var(--ink);
  color: var(--white);
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.9rem;
  z-index: 100;
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: min(1150px, 90vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 250, 245, 0.7);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(42, 36, 33, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 20px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
}

.logo img {
  height: 38px;
  width: auto;
  border-radius: 0;
}

.logo--text {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.nav-toggle {
  display: none;
  background: var(--ink);
  color: var(--white);
  border: none;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.95rem;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.95rem;
}

.primary-nav a {
  color: var(--mid);
}

.primary-nav a:hover {
  color: var(--ink);
}

.primary-nav a.is-active,
.primary-nav .nav-item.is-active > a {
  color: var(--ink);
  font-weight: 600;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 12px;
}

.sub-nav {
  position: absolute;
  top: calc(100% + 12px);
  left: -10px;
  width: fit-content;
  min-width: 280px;
  max-width: min(460px, 92vw);
  padding: 12px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid rgba(42, 36, 33, 0.08);
  box-shadow: 0 24px 60px rgba(42, 36, 33, 0.16), 0 10px 30px rgba(197, 139, 108, 0.18);
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 20;
}

.sub-nav a {
  display: grid;
  grid-template-columns: 1fr max-content;
  gap: 4px 16px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 0.92rem;
  color: var(--mid);
}

.sub-nav .nav-title {
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
}

.sub-nav .nav-sub {
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  color: var(--mid);
  justify-self: end;
  text-align: right;
}

.sub-nav a:hover {
  background: var(--sand);
  color: var(--ink);
}

.sub-nav a.is-active {
  background: var(--sand);
}

.nav-item:hover .sub-nav,
.nav-item:focus-within .sub-nav {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 500;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(42, 36, 33, 0.15);
}

.btn-primary {
  background: var(--ink);
  color: var(--white);
}

.primary-nav .btn {
  padding: 10px 18px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, var(--clay), var(--copper));
  color: var(--white);
  border-color: rgba(42, 36, 33, 0.12);
  box-shadow: 0 8px 18px rgba(42, 36, 33, 0.16);
}

.primary-nav .btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(42, 36, 33, 0.2), 0 0 0 2px rgba(230, 194, 122, 0.35);
}

.primary-nav .btn:focus-visible {
  outline: 2px solid var(--sun);
  outline-offset: 2px;
}

.mobile-cta {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: calc(16px + env(safe-area-inset-bottom));
  z-index: 45;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 10px;
  border-radius: 999px;
  background: rgba(255, 250, 245, 0.92);
  border: 1px solid rgba(42, 36, 33, 0.12);
  box-shadow: 0 18px 40px rgba(42, 36, 33, 0.18);
  backdrop-filter: blur(10px);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-cta a {
  padding: 12px 14px;
  font-weight: 600;
  border-radius: 999px;
  text-align: center;
  font-size: 0.95rem;
}

.mobile-cta .cta-whatsapp {
  background: var(--sand);
  color: var(--ink);
  border: 1px solid rgba(42, 36, 33, 0.12);
}

.mobile-cta .cta-termin {
  background: linear-gradient(135deg, var(--clay), var(--copper));
  color: var(--white);
}

body.nav-open .mobile-cta {
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
}

body.consent-open {
  overflow: hidden;
}

.consent-banner {
  position: fixed;
  inset: 0;
  display: grid;
  align-items: end;
  justify-items: center;
  padding: 18px;
  background: rgba(42, 36, 33, 0.18);
  z-index: 200;
}

.consent-banner[hidden] {
  display: none;
}

.consent-card {
  width: min(980px, 94vw);
  background: var(--white);
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(42, 36, 33, 0.08);
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
  max-height: calc(100vh - 40px);
  overflow: auto;
}

.consent-card h3 {
  margin: 0;
  font-size: 1.2rem;
}

.consent-card p {
  margin: 0;
  color: var(--mid);
  line-height: 1.6;
}

.consent-list {
  margin: 0;
  padding-left: 18px;
  color: var(--mid);
  display: grid;
  gap: 6px;
}

.consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.consent-note {
  font-size: 0.85rem;
  color: var(--mid);
}

.consent-note a {
  color: var(--copper);
  text-decoration: underline;
}

.footer-bottom .consent-link {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

.btn-secondary {
  background: var(--sand);
  color: var(--ink);
  border-color: rgba(42, 36, 33, 0.1);
}

.btn-ghost {
  background: var(--white);
  border-color: rgba(42, 36, 33, 0.2);
  color: var(--ink);
}

.text-link {
  color: var(--copper);
  font-weight: 600;
}

.hero {
  padding: 90px 0 60px;
}

.page-hero {
  padding: 90px 0 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.hero-copy h1 {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: clamp(2.4rem, 3.5vw, 3.6rem);
  margin-bottom: 16px;
}

.lead {
  font-size: 1.1rem;
  color: var(--mid);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 24px;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}

.hero-visual img {
  filter: saturate(1.05) contrast(1.02);
  box-shadow: 0 24px 60px rgba(42, 36, 33, 0.18);
}

.stat {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--copper);
}

.stat-label {
  display: block;
  font-size: 0.85rem;
  color: var(--mid);
}

.hero-visual {
  position: relative;
  display: grid;
  gap: 18px;
  z-index: 0;
}

.hero-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  display: block;
}

.hero-visual--tight {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
}

.hero-visual--tight img {
  height: 100%;
  border-radius: 0;
  box-shadow: none;
  object-fit: cover;
  object-position: center;
  transform: scale(1.03);
}

.image-frame {
  background: var(--white);
  padding: 12px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
  box-shadow: none;
  transform: scale(1.08);
  transform-origin: center;
}

.hero-card {
  position: absolute;
  bottom: -24px;
  left: -20px;
  z-index: 2;
  max-width: 240px;
  background: var(--white);
  padding: 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  border: 1px solid rgba(42, 36, 33, 0.08);
}

.hero-card .tag {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--olive);
  margin-bottom: 8px;
}

.section {
  padding: 70px 0;
}

.section.alt {
  background: rgba(255, 250, 245, 0.75);
}

.section-title {
  max-width: 650px;
  margin-bottom: 38px;
}

.section-title h2,
.studio-copy h2,
.cta h2,
.kontakt h2 {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  margin: 12px 0;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.trust-list > div {
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: var(--white);
  border: 1px solid rgba(42, 36, 33, 0.08);
  box-shadow: 0 12px 30px rgba(42, 36, 33, 0.08);
}

.trust-title {
  display: block;
  font-weight: 600;
  color: var(--ink);
}

.trust-sub {
  display: block;
  font-size: 0.85rem;
  color: var(--mid);
  margin-top: 4px;
}

.review-carousel {
  display: grid;
  gap: 18px;
}

.review-track {
  position: relative;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 1fr);
  gap: 18px;
  overflow-x: auto;
  padding: 6px 12px 12px;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 12px;
  border-radius: var(--radius-lg);
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.review-track::-webkit-scrollbar {
  height: 0;
}

.review-card {
  background: var(--white);
  border: 1px solid rgba(42, 36, 33, 0.08);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: 0 18px 40px rgba(42, 36, 33, 0.12);
  scroll-snap-align: start;
}

.review-card.is-hidden {
  display: none;
}

.review-stars {
  color: var(--sun);
  font-size: 0.9rem;
  letter-spacing: 0.14em;
}

.review-quote {
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--ink);
}

.review-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
  font-size: 0.82rem;
  color: var(--mid);
}

  .review-author {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--ink);
  }

  .review-avatar {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    overflow: hidden;
    border: 1px solid rgba(42, 36, 33, 0.12);
    box-shadow: 0 6px 12px rgba(42, 36, 33, 0.12);
    background: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
  }

  .review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .review-avatar.is-hidden {
    display: none;
  }

  .review-date {
    white-space: nowrap;
  }

.review-link {
  margin-top: 12px;
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--copper);
}

.review-link.is-hidden {
  display: none;
}

.review-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.review-controls .text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border: 1px solid rgba(42, 36, 33, 0.12);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.review-controls .text-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(42, 36, 33, 0.12);
}

.review-control {
  border: 1px solid rgba(42, 36, 33, 0.12);
  border-radius: 999px;
  padding: 8px 16px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.review-control:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(42, 36, 33, 0.12);
}

.before-after-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.before-after-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(42, 36, 33, 0.08);
  box-shadow: 0 18px 40px rgba(42, 36, 33, 0.12);
  overflow: hidden;
  display: grid;
  gap: 12px;
}

.before-after-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.before-after-images > div {
  position: relative;
}

.before-after-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
  border-radius: 0;
}

.before-after-label {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(255, 250, 245, 0.9);
  border: 1px solid rgba(42, 36, 33, 0.12);
  color: var(--ink);
}

.before-after-card figcaption {
  padding: 0 16px 16px;
  color: var(--mid);
  font-size: 0.92rem;
}

.before-after-card--slider {
  padding-bottom: 16px;
}

.before-after-slider {
  display: grid;
  gap: 12px;
}

.before-after-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 4 / 5;
  background: rgba(255, 250, 245, 0.6);
  --pos: 50%;
}

.before-after-frame::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos);
  width: 2px;
  background: var(--white);
  box-shadow: 0 0 0 1px rgba(42, 36, 33, 0.15);
  transform: translateX(-1px);
}

.before-after-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.before-after-image.after {
  clip-path: inset(0 calc(100% - var(--pos)) 0 0);
}

.before-after-range {
  width: 100%;
  accent-color: var(--copper);
}

.before-after-label {
  pointer-events: none;
}

.before-after-label--before {
  left: 12px;
}

.before-after-label--after {
  left: auto;
  right: 12px;
}

.brand-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 22px;
  align-items: center;
  margin-top: 24px;
}

.brand-logos img {
  width: 100%;
  max-height: 52px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.75;
  transition: opacity 0.2s ease, filter 0.2s ease;
}

.brand-logos img:hover {
  filter: grayscale(0);
  opacity: 1;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--olive);
  font-weight: 600;
}

.services,
.studio,
.gallery,
.preise,
.testimonials,
.cta,
.kontakt {
  padding: 70px 0;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.card {
  background: var(--white);
  padding: 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  border: 1px solid rgba(42, 36, 33, 0.06);
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-finder {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(42, 36, 33, 0.08);
  box-shadow: var(--shadow);
  padding: 28px;
  display: grid;
  gap: 24px;
}

.service-progress {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  gap: 8px;
}

.service-progress span {
  height: 6px;
  border-radius: 999px;
  background: rgba(42, 36, 33, 0.12);
}

.service-progress span.is-active,
.service-progress span.is-complete {
  background: linear-gradient(135deg, var(--clay), var(--copper));
}

.service-steps {
  display: grid;
  gap: 24px;
}

.service-step {
  display: none;
}

.service-step.is-active {
  display: block;
}

.service-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.service-note {
  margin: 6px 0 0;
  font-size: 0.9rem;
  color: var(--mid);
}

.service-option {
  text-align: left;
  border: 1px solid rgba(42, 36, 33, 0.12);
  background: rgba(255, 250, 245, 0.9);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  cursor: pointer;
  font: inherit;
  color: var(--ink);
  display: grid;
  gap: 6px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-option:hover {
  transform: translateY(-2px);
  border-color: rgba(197, 139, 108, 0.45);
  box-shadow: 0 14px 30px rgba(42, 36, 33, 0.15);
}

.service-option.is-selected {
  border-color: var(--copper);
  background: var(--white);
  box-shadow: 0 16px 34px rgba(42, 36, 33, 0.18);
}

.service-option span {
  font-weight: 600;
}

.service-option small {
  color: var(--mid);
  font-size: 0.85rem;
}

.service-result {
  background: rgba(255, 250, 245, 0.95);
  border-radius: var(--radius-md);
  border: 1px solid rgba(42, 36, 33, 0.1);
  padding: 20px;
  display: grid;
  gap: 12px;
}

.service-result .text-link {
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  text-align: left;
}

.media-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(42, 36, 33, 0.06);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.media-card img {
  border-radius: 0;
  height: 200px;
  width: 100%;
  object-fit: cover;
}

.media-card .card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}

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

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

.faq-group + .faq-group {
  margin-top: 32px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(42, 36, 33, 0.08);
  box-shadow: 0 16px 36px rgba(42, 36, 33, 0.1);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 18px;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.1rem;
  color: var(--copper);
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  padding: 0 18px 16px;
  margin: 0;
  color: var(--mid);
  line-height: 1.6;
}

.info-card {
  background: var(--white);
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(42, 36, 33, 0.06);
  box-shadow: var(--shadow);
}

.brand-card {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.brand-card:hover,
.brand-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(197, 139, 108, 0.45);
  box-shadow: 0 14px 30px rgba(42, 36, 33, 0.15);
}

.brand-card:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 3px;
}

.split-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 36px;
  align-items: center;
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  align-items: center;
}

.policy-card {
  background: var(--white);
  padding: 18px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(42, 36, 33, 0.06);
  box-shadow: var(--shadow);
}

.policy-card img {
  border-radius: var(--radius-md);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.team-card {
  background: var(--white);
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(42, 36, 33, 0.06);
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
  align-content: start;
}

.team-card__photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.team-card .role {
  display: block;
  color: var(--copper);
  font-weight: 600;
  margin-top: 6px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 0;
}

.tag-list span {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(111, 124, 91, 0.15);
  font-size: 0.85rem;
  color: var(--olive);
}

.pill {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(198, 145, 112, 0.12);
  font-size: 0.8rem;
  color: var(--copper);
  align-self: flex-start;
}

.studio-grid,
.kontakt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 36px;
  align-items: center;
}

.studio-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 28px;
}

.check-list li {
  margin-bottom: 14px;
  padding-left: 28px;
  position: relative;
  color: var(--mid);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--copper);
}

ol {
  padding-left: 20px;
  color: var(--mid);
  margin: 16px 0 0;
}

ol li {
  margin-bottom: 10px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.05);
}

.gallery-carousel {
  display: grid;
  gap: 16px;
}

.gallery-track {
  position: relative;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 78%);
  gap: 18px;
  overflow-x: auto;
  padding: 6px 12px 12px;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 12px;
  border-radius: var(--radius-lg);
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.gallery-track::-webkit-scrollbar {
  height: 0;
}

.gallery-slide {
  margin: 0;
  scroll-snap-align: center;
}

.gallery-slide img {
  width: 100%;
  height: clamp(220px, 30vw, 380px);
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.gallery-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.gallery-control {
  border: 1px solid rgba(42, 36, 33, 0.12);
  border-radius: 999px;
  padding: 8px 16px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-control:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(42, 36, 33, 0.12);
}

@media (min-width: 900px) {
  .gallery-track {
    grid-auto-columns: minmax(320px, 45%);
  }
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 26px;
}

.filter-btn {
  border: 1px solid rgba(42, 36, 33, 0.12);
  border-radius: 999px;
  padding: 8px 16px;
  background: var(--white);
  color: var(--mid);
  font-weight: 600;
  cursor: pointer;
}

.filter-btn.is-active {
  background: linear-gradient(135deg, var(--clay), var(--copper));
  color: var(--white);
  border-color: rgba(42, 36, 33, 0.12);
}

.lookbook-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
}

.lookbook-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(42, 36, 33, 0.06);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: grid;
}

.lookbook-card.is-hidden {
  display: none;
}

.lookbook-trigger {
  border: none;
  padding: 0;
  background: none;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

.lookbook-card img {
  width: 100%;
  height: 220px;
  border-radius: 0;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.lookbook-trigger:hover img {
  transform: scale(1.05);
}

.lookbook-card figcaption {
  padding: 12px 14px;
  font-size: 0.9rem;
  color: var(--mid);
}

body.lightbox-open {
  overflow: hidden;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(42, 36, 33, 0.82);
  display: grid;
  place-items: center;
  padding: 24px;
  z-index: 100;
}

.lightbox[hidden] {
  display: none;
}

.lightbox-content {
  width: min(960px, 92vw);
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px;
  display: grid;
  gap: 12px;
  box-shadow: var(--shadow);
}

.lightbox-close {
  justify-self: end;
  border: 1px solid rgba(42, 36, 33, 0.12);
  background: var(--sand);
  color: var(--ink);
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 600;
  cursor: pointer;
}

.lightbox-image {
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: var(--radius-md);
}

.lightbox-caption {
  color: var(--mid);
  font-size: 0.95rem;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.price-card {
  background: var(--white);
  padding: 22px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(42, 36, 33, 0.06);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.price-card h3 {
  margin: 0 0 12px;
  line-height: 1.2;
  min-height: 2.6em;
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 12px;
}

.price-card li {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 6px 16px;
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(42, 36, 33, 0.12);
  color: var(--mid);
  line-height: 1.5;
}

.price-card li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.price-card li span:first-child {
  flex: 1 1 60%;
  min-width: 0;
}

.price-card li span:last-child {
  margin-left: auto;
  white-space: nowrap;
  text-align: right;
  font-weight: 600;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}

.testimonials {
  background: rgba(255, 250, 245, 0.8);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.quote {
  background: var(--white);
  padding: 22px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(42, 36, 33, 0.06);
  box-shadow: var(--shadow);
}

.quote blockquote {
  margin: 0 0 14px;
  font-style: italic;
  color: var(--mid);
  line-height: 1.6;
}

.cta {
  background: linear-gradient(120deg, rgba(198, 145, 112, 0.16), rgba(239, 226, 211, 0.6));
}

.cta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  align-items: center;
}

.cta-card {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.cta-card ol {
  padding-left: 20px;
  color: var(--mid);
  margin: 16px 0 0;
  display: grid;
  gap: 10px;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 18px;
}

.kontakt-details {
  display: grid;
  gap: 18px;
  margin: 24px 0;
  color: var(--mid);
}

.kontakt-details h3 {
  margin-bottom: 6px;
  font-size: 1rem;
  color: var(--ink);
}

.kontakt-map .map-card {
  background: var(--white);
  padding: 26px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(42, 36, 33, 0.06);
  box-shadow: var(--shadow);
}

.map-preview {
  display: block;
  margin-top: 20px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  background: var(--white);
  border: 1px solid rgba(42, 36, 33, 0.08);
  box-shadow: 0 18px 40px rgba(42, 36, 33, 0.12);
}

.map-preview img {
  width: 100%;
  height: auto;
  border-radius: 0;
  transition: transform 0.35s ease;
}

.map-preview:hover img {
  transform: scale(1.02);
}

.map-preview:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 4px;
}

.map-preview__cta {
  position: absolute;
  right: 14px;
  bottom: 14px;
  background: var(--ink);
  color: var(--white);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: var(--shadow);
}

.form-card {
  background: var(--white);
  padding: 26px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(42, 36, 33, 0.06);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.form-grid label {
  font-size: 0.85rem;
  color: var(--mid);
  display: block;
  margin-bottom: 6px;
}

.form-grid label a {
  color: var(--copper);
  text-decoration: underline;
}

.form-grid input,
.form-grid textarea,
.form-grid select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(42, 36, 33, 0.18);
  background: var(--white);
  font-family: inherit;
  font-size: 0.95rem;
}

.form-grid textarea {
  min-height: 130px;
  resize: vertical;
}

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

.form-note {
  font-size: 0.85rem;
  color: var(--mid);
}

.voucher-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 36px;
  align-items: start;
}

.voucher-preview {
  display: grid;
  gap: 16px;
}

.voucher-card {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(42, 36, 33, 0.06);
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
}

.voucher-title {
  margin: 0;
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: 1.4rem;
}

.voucher-amount {
  margin: 4px 0 0;
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
  color: var(--copper);
}

.voucher-message {
  margin: 0;
  color: var(--mid);
  line-height: 1.6;
}

.voucher-meta {
  display: grid;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--mid);
}

.voucher-meta strong {
  color: var(--ink);
  font-weight: 600;
}

.legal-content {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(42, 36, 33, 0.06);
  box-shadow: var(--shadow);
  line-height: 1.7;
  color: var(--mid);
}

.legal-section {
  padding-top: 0px;
}

.legal-impressum {
  line-height: 1.55;
}

.legal-impressum .legal-grid {
  display: grid;
  gap: 18px;
}

.legal-impressum .legal-block {
  padding-bottom: 14px;
  border-bottom: 1px dashed rgba(42, 36, 33, 0.12);
}

.legal-impressum .legal-block:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.legal-impressum h2,
.legal-impressum h3 {
  margin: 0 0 8px;
  color: var(--ink);
}

.legal-impressum p {
  margin: 0 0 8px;
}

.legal-impressum p:last-child {
  margin-bottom: 0;
}

.legal-impressum strong {
  color: var(--ink);
}

.legal-content:not(.legal-impressum) h2,
.legal-content:not(.legal-impressum) h3 {
  color: var(--ink);
  margin-top: 28px;
}

.legal-content a {
  color: var(--copper);
}

.site-footer {
  padding: 50px 0 20px;
  background: var(--ink);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  margin-bottom: 24px;
  align-items: start;
}

.footer-grid h3 {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-brand-title {
  text-transform: none;
  letter-spacing: 0.04em;
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: 1rem;
}

.footer-text {
  margin: 0;
  line-height: 1.5;
  color: rgba(255, 250, 245, 0.85);
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-list li {
  line-height: 1.5;
}

.footer-list a {
  color: inherit;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  justify-content: flex-start;
  text-align: left;
  border-top: 1px solid rgba(255, 250, 245, 0.2);
  padding-top: 18px;
  font-size: 0.85rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  body {
    padding-bottom: 96px;
  }

  .nav-wrap {
    flex-wrap: wrap;
    row-gap: 12px;
    padding: 14px 0;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    font-weight: 600;
  }

  .primary-nav {
    width: 100%;
    position: static;
    flex-direction: column;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: max-height 0.25s ease, opacity 0.2s ease, transform 0.2s ease;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid rgba(42, 36, 33, 0.08);
    box-shadow: var(--shadow);
    align-items: flex-start;
    gap: 8px;
  }

  body.nav-open .primary-nav {
    max-height: 80vh;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    padding: 16px;
    overflow-y: auto;
  }

  .primary-nav a {
    display: flex;
    width: 100%;
    padding: 12px 10px;
    border-radius: 12px;
    font-size: 1rem;
    color: var(--ink);
  }

  .primary-nav a:hover {
    background: var(--sand);
  }

  .primary-nav a.is-active,
  .primary-nav .nav-item.is-active > a {
    background: var(--sand);
    font-weight: 600;
  }

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

  .nav-item {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .nav-item::after {
    display: none;
  }

  .nav-item--has-subnav > a {
    justify-content: space-between;
    align-items: center;
  }

  .nav-item--has-subnav > a::after {
    content: "";
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--mid);
    border-bottom: 2px solid var(--mid);
    transform: rotate(-45deg);
    transition: transform 0.2s ease;
    margin-left: 10px;
    flex: 0 0 auto;
  }

  .nav-item.is-open > a::after {
    transform: rotate(45deg);
  }

  .sub-nav {
    width: 100%;
    min-width: 0;
    max-width: none;
    position: static;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    padding: 0 0 0 14px;
    margin-left: 0;
    box-shadow: none;
    border: none;
    background: transparent;
    border-left: 1px solid rgba(42, 36, 33, 0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease;
  }

  .nav-item.is-open .sub-nav {
    max-height: 400px;
    padding-top: 6px;
    padding-bottom: 2px;
  }

  .sub-nav a {
    display: grid;
    grid-template-columns: 1fr max-content;
    column-gap: 12px;
    row-gap: 2px;
    align-items: center;
    padding: 8px 0;
    font-size: 0.95rem;
    color: var(--mid);
  }

  .sub-nav .nav-title {
    font-size: 0.95rem;
  }

  .sub-nav .nav-sub {
    font-size: 0.8rem;
    text-align: right;
    justify-self: end;
  }

  .mobile-cta {
    display: grid;
  }

  .hero-card {
    position: static;
    max-width: none;
  }
}

@media (max-width: 700px) {
  .hero {
    padding-top: 70px;
  }

  .page-hero {
    padding-top: 70px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-actions {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .logo img {
    height: 32px;
  }

  .price-card li {
    align-items: flex-start;
  }

  .price-card li span:last-child {
    margin-left: 0;
    text-align: left;
    width: 100%;
  }

  .consent-card {
    padding: 18px;
  }

  .consent-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .consent-actions .btn {
    width: 100%;
  }

  .review-controls {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .review-controls .review-control {
    display: none;
  }

  .review-controls .text-link {
    text-align: center;
    width: 100%;
  }

  .before-after-images {
    grid-template-columns: 1fr;
  }
}

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

  * {
    transition: none !important;
  }
}
